linfo2172-databases/P1/mondial_missions/mondial_missions.rel

10845 lines
1.1 MiB
Plaintext
Raw Normal View History

2024-04-24 10:41:39 +02:00
/*
Script Rel to create and populate the database mondial for the course LINGI2172, given by Prof. Siegfried Nijssen at UCL, Belgium, 2017-2018.
Original version of the database can be found at https://www.dbis.informatik.uni-goettingen.de/Mondial/
Author : Benoît Duhoux
Date : 23/01/2018
To generate the binary file, use this script in the RelDB editor
*/
/* CREATE : Country */
VAR Country BASE RELATION {
code CHAR,
name CHAR,
capital CHAR,
area RATIONAL,
population INT
} KEY {code};
/* CREATE : Borders */
VAR Borders BASE RELATION {
country1 CHAR,
country2 CHAR,
length RATIONAL
} KEY {country1, country2};
/* CREATE : Language */
VAR Language BASE RELATION {
name CHAR,
country CHAR,
percentage RATIONAL
} KEY {name, country};
/* CREATE : EthnicGroup */
VAR EthnicGroup BASE RELATION {
name CHAR,
country CHAR,
percentage RATIONAL
} KEY {name, country};
/* CREATE : Independence */
VAR Independence BASE RELATION {
country CHAR,
independence CHAR
} KEY {country};
/* CREATE : Continent */
VAR Continent BASE RELATION {
name CHAR,
area RATIONAL
} KEY {name};
/* CREATE : Encompasses*/
VAR Encompasses BASE RELATION {
country CHAR,
continent CHAR,
percentage RATIONAL
} KEY {country, continent};
/* CREATE : Province */
VAR Province BASE RELATION {
name CHAR,
country CHAR,
population INT,
area RATIONAL,
capital CHAR
} KEY {name, country};
/* CREATE : Mountain */
VAR Mountain BASE RELATION {
name CHAR,
mountains CHAR,
height RATIONAL
} KEY {name};
/* CREATE : GeoMountain */
VAR GeoMountain BASE RELATION {
mountain CHAR,
country CHAR,
province CHAR
} KEY {ALL BUT};
/* CREATE : CountryCovid */
VAR CountryCovid BASE RELATION {
country CHAR,
year INT,
month INT,
total_cases INT,
total_deaths INT
} KEY {country, year, month};
/* INSERTIONS TO POPULATE RELATIONS */
/* INSERT : Country */
INSERT Country RELATION { TUPLE { code 'AL', name 'Albania', capital 'Tirane', area 28750.0, population 3249136 } };
INSERT Country RELATION { TUPLE { code 'GR', name 'Greece', capital 'Athens', area 131940.0, population 10538594 } };
INSERT Country RELATION { TUPLE { code 'MK', name 'Macedonia', capital 'Skopje', area 25333.0, population 2104035 } };
INSERT Country RELATION { TUPLE { code 'SRB', name 'Serbia', capital 'Belgrade', area 77474.0, population 7379339 } };
INSERT Country RELATION { TUPLE { code 'MNE', name 'Montenegro', capital 'Podgorica', area 14026.0, population 672180 } };
INSERT Country RELATION { TUPLE { code 'KOS', name 'Kosovo', capital 'Pristina', area 10887.0, population 1804838 } };
INSERT Country RELATION { TUPLE { code 'AND', name 'Andorra', capital 'Andorra la Vella', area 450.0, population 72766 } };
INSERT Country RELATION { TUPLE { code 'F', name 'France', capital 'Paris', area 547030.0, population 58317450 } };
INSERT Country RELATION { TUPLE { code 'E', name 'Spain', capital 'Madrid', area 504750.0, population 39181114 } };
INSERT Country RELATION { TUPLE { code 'A', name 'Austria', capital 'Vienna', area 83850.0, population 8023244 } };
INSERT Country RELATION { TUPLE { code 'CZ', name 'Czech Republic', capital 'Prague', area 78703.0, population 10321120 } };
INSERT Country RELATION { TUPLE { code 'D', name 'Germany', capital 'Berlin', area 356910.0, population 83536115 } };
INSERT Country RELATION { TUPLE { code 'H', name 'Hungary', capital 'Budapest', area 93030.0, population 10002541 } };
INSERT Country RELATION { TUPLE { code 'I', name 'Italy', capital 'Rome', area 301230.0, population 57460274 } };
INSERT Country RELATION { TUPLE { code 'FL', name 'Liechtenstein', capital 'Vaduz', area 160.0, population 31122 } };
INSERT Country RELATION { TUPLE { code 'SK', name 'Slovakia', capital 'Bratislava', area 48845.0, population 5374362 } };
INSERT Country RELATION { TUPLE { code 'SLO', name 'Slovenia', capital 'Ljubljana', area 20256.0, population 1951443 } };
INSERT Country RELATION { TUPLE { code 'CH', name 'Switzerland', capital 'Bern', area 41290.0, population 7207060 } };
INSERT Country RELATION { TUPLE { code 'BY', name 'Belarus', capital 'Minsk', area 207600.0, population 10415973 } };
INSERT Country RELATION { TUPLE { code 'LV', name 'Latvia', capital 'Riga', area 64100.0, population 2468982 } };
INSERT Country RELATION { TUPLE { code 'LT', name 'Lithuania', capital 'Vilnius', area 65200.0, population 3646041 } };
INSERT Country RELATION { TUPLE { code 'PL', name 'Poland', capital 'Warsaw', area 312683.0, population 38642565 } };
INSERT Country RELATION { TUPLE { code 'UA', name 'Ukraine', capital 'Kiev', area 603700.0, population 50864009 } };
INSERT Country RELATION { TUPLE { code 'R', name 'Russia', capital 'Moscow', area 17075200.0, population 148178487 } };
INSERT Country RELATION { TUPLE { code 'B', name 'Belgium', capital 'Brussels', area 30510.0, population 10170241 } };
INSERT Country RELATION { TUPLE { code 'L', name 'Luxembourg', capital 'Luxembourg', area 2586.0, population 415870 } };
INSERT Country RELATION { TUPLE { code 'NL', name 'Netherlands', capital 'Amsterdam', area 37330.0, population 15568034 } };
INSERT Country RELATION { TUPLE { code 'BIH', name 'Bosnia and Herzegovina', capital 'Sarajevo', area 51233.0, population 2656240 } };
INSERT Country RELATION { TUPLE { code 'HR', name 'Croatia', capital 'Zagreb', area 56538.0, population 5004112 } };
INSERT Country RELATION { TUPLE { code 'BG', name 'Bulgaria', capital 'Sofia', area 110910.0, population 8612757 } };
INSERT Country RELATION { TUPLE { code 'RO', name 'Romania', capital 'Bucharest', area 237500.0, population 21657162 } };
INSERT Country RELATION { TUPLE { code 'TR', name 'Turkey', capital 'Ankara', area 780580.0, population 62484478 } };
INSERT Country RELATION { TUPLE { code 'DK', name 'Denmark', capital 'Copenhagen', area 43070.0, population 5249632 } };
INSERT Country RELATION { TUPLE { code 'EW', name 'Estonia', capital 'Tallinn', area 45100.0, population 1459428 } };
INSERT Country RELATION { TUPLE { code 'FARX', name 'Faroe Islands', capital 'Torshavn', area 1400.0, population 43857 } };
INSERT Country RELATION { TUPLE { code 'SF', name 'Finland', capital 'Helsinki', area 337030.0, population 5105230 } };
INSERT Country RELATION { TUPLE { code 'N', name 'Norway', capital 'Oslo', area 324220.0, population 4383807 } };
INSERT Country RELATION { TUPLE { code 'S', name 'Sweden', capital 'Stockholm', area 449964.0, population 8900954 } };
INSERT Country RELATION { TUPLE { code 'MC', name 'Monaco', capital 'Monaco', area 1.9, population 31719 } };
INSERT Country RELATION { TUPLE { code 'GBZ', name 'Gibraltar', capital 'Gibraltar', area 6.5, population 28765 } };
INSERT Country RELATION { TUPLE { code 'GBG', name 'Guernsey', capital 'Saint Peter Port', area 194.0, population 62920 } };
INSERT Country RELATION { TUPLE { code 'V', name 'Holy See', capital 'Vatican City', area 0.44, population 840 } };
INSERT Country RELATION { TUPLE { code 'IS', name 'Iceland', capital 'Reykjavik', area 103000.0, population 270292 } };
INSERT Country RELATION { TUPLE { code 'IRL', name 'Ireland', capital 'Dublin', area 70280.0, population 3566833 } };
INSERT Country RELATION { TUPLE { code 'RSM', name 'San Marino', capital 'San Marino', area 60.0, population 24521 } };
INSERT Country RELATION { TUPLE { code 'GBJ', name 'Jersey', capital 'Saint Helier', area 117.0, population 87848 } };
INSERT Country RELATION { TUPLE { code 'M', name 'Malta', capital 'Valletta', area 320.0, population 375576 } };
INSERT Country RELATION { TUPLE { code 'GBM', name 'Man', capital 'Douglas', area 588.0, population 73837 } };
INSERT Country RELATION { TUPLE { code 'MD', name 'Moldova', capital 'Chisinau', area 33700.0, population 4463847 } };
INSERT Country RELATION { TUPLE { code 'P', name 'Portugal', capital 'Lisbon', area 92080.0, population 9865114 } };
INSERT Country RELATION { TUPLE { code 'SVAX', name 'Svalbard', capital 'Longyearbyen', area 62049.0, population 2116 } };
INSERT Country RELATION { TUPLE { code 'GB', name 'United Kingdom', capital 'London', area 244820.0, population 58489975 } };
INSERT Country RELATION { TUPLE { code 'AFG', name 'Afghanistan', capital 'Kabul', area 647500.0, population 22664136 } };
INSERT Country RELATION { TUPLE { code 'TJ', name 'China', capital 'Beijing', area 9596960.0, population 1210004956 } };
INSERT Country RELATION { TUPLE { code 'IR', name 'Iran', capital 'Tehran', area 1648000.0, population 66094264 } };
INSERT Country RELATION { TUPLE { code 'PK', name 'Pakistan', capital 'Islamabad', area 803940.0, population 129275660 } };
INSERT Country RELATION { TUPLE { code 'TAD', name 'Tajikistan', capital 'Dushanbe', area 143100.0, population 5916373 } };
INSERT Country RELATION { TUPLE { code 'TM', name 'Turkmenistan', capital 'Ashgabat', area 488100.0, population 4149283 } };
INSERT Country RELATION { TUPLE { code 'UZB', name 'Uzbekistan', capital 'Tashkent', area 447400.0, population 23418381 } };
INSERT Country RELATION { TUPLE { code 'ARM', name 'Armenia', capital 'Yerevan', area 29800.0, population 3463574 } };
INSERT Country RELATION { TUPLE { code 'GE', name 'Georgia', capital 'Tbilisi', area 69700.0, population 5219810 } };
INSERT Country RELATION { TUPLE { code 'AZ', name 'Azerbaijan', capital 'Baku', area 86600.0, population 7676953 } };
INSERT Country RELATION { TUPLE { code 'BRN', name 'Bahrain', capital 'Manama', area 620.0, population 590042 } };
INSERT Country RELATION { TUPLE { code 'BD', name 'Bangladesh', capital 'Dhaka', area 144000.0, population 123062800 } };
INSERT Country RELATION { TUPLE { code 'MYA', name 'Myanmar', capital 'Rangoon', area 678500.0, population 45975625 } };
INSERT Country RELATION { TUPLE { code 'IND', name 'India', capital 'New Delhi', area 3287590.0, population 952107694 } };
INSERT Country RELATION { TUPLE { code 'BHT', name 'Bhutan', capital 'Thimphu', area 47000.0, population 1822625 } };
INSERT Country RELATION { TUPLE { code 'BRU', name 'Brunei', capital 'Bandar Seri Begawan', area 5770.0, population 299939 } };
INSERT Country RELATION { TUPLE { code 'MAL', name 'Malaysia', capital 'Kuala Lumpur', area 329750.0, population 19962893 } };
INSERT Country RELATION { TUPLE { code 'LAO', name 'Laos', capital 'Vientiane', area 236800.0, population 4975772 } };
INSERT Country RELATION { TUPLE { code 'THA', name 'Thailand', capital 'Bangkok', area 514000.0, population 58851357 } };
INSERT Country RELATION { TUPLE { code 'K', name 'Cambodia', capital 'Phnom Penh', area 181040.0, population 10861218 } };
INSERT Country RELATION { TUPLE { code 'VN', name 'Vietnam', capital 'Hanoi', area 329560.0, population 73976973 } };
INSERT Country RELATION { TUPLE { code 'KAZ', name 'Kazakstan', capital 'Almaty', area 2717300.0, population 16916463 } };
INSERT Country RELATION { TUPLE { code 'NOK', name 'North Korea', capital 'Pyongyang', area 120540.0, population 23904124 } };
INSERT Country RELATION { TUPLE { code 'KGZ', name 'Kyrgyzstan', capital 'Bishkek', area 198500.0, population 4529648 } };
INSERT Country RELATION { TUPLE { code 'HONX', name 'Hong Kong', capital 'Hong Kong', area 1092.0, population 7055071 } };
INSERT Country RELATION { TUPLE { code 'MACX', name 'Macau', capital 'Macau', area 16.0, population 496837 } };
INSERT Country RELATION { TUPLE { code 'MNG', name 'Mongolia', capital 'Ulaanbaatar', area 1565000.0, population 2496617 } };
INSERT Country RELATION { TUPLE { code 'NEP', name 'Nepal', capital 'Kathmandu', area 140800.0, population 22094033 } };
INSERT Country RELATION { TUPLE { code 'XMAS', name 'Christmas Island', capital 'Flying Fish Cove', area 135.0, population 1402 } };
INSERT Country RELATION { TUPLE { code 'COCO', name 'Cocos Islands', capital 'West Island', area 14.0, population 596 } };
INSERT Country RELATION { TUPLE { code 'CY', name 'Cyprus', capital 'Nicosia', area 9251.0, population 744609 } };
INSERT Country RELATION { TUPLE { code 'IL', name 'Israel', capital 'Jerusalem', area 20770.0, population 5421995 } };
INSERT Country RELATION { TUPLE { code 'ET', name 'Egypt', capital 'Cairo', area 1001450.0, population 63575107 } };
INSERT Country RELATION { TUPLE { code 'RI', name 'Indonesia', capital 'Jakarta', area 1919440.0, population 206611600 } };
INSERT Country RELATION { TUPLE { code 'TL', name 'Timor-Leste', capital 'Dili', area 15007.0, population 1131612 } };
INSERT Country RELATION { TUPLE { code 'PNG', name 'Papua New Guinea', capital 'Port Moresby', area 461690.0, population 4394537 } };
INSERT Country RELATION { TUPLE { code 'IRQ', name 'Iraq', capital 'Baghdad', area 437072.0, population 21422292 } };
INSERT Country RELATION { TUPLE { code 'JOR', name 'Jordan', capital 'Amman', area 89213.0, population 4212152 } };
INSERT Country RELATION { TUPLE { code 'KWT', name 'Kuwait', capital 'Kuwait', area 17820.0, population 1950047 } };
INSERT Country RELATION { TUPLE { code 'SA', name 'Saudi Arabia', capital 'Riyadh', area 1960582.0, population 19409058 } };
INSERT Country RELATION { TUPLE { code 'SYR', name 'Syria', capital 'Damascus', area 185180.0, population 15608648 } };
INSERT Country RELATION { TUPLE { code 'RL', name 'Lebanon', capital 'Beirut', area 10400.0, population 3776317 } };
INSERT Country RELATION { TUPLE { code 'J', name 'Japan', capital 'Tokyo', area 377835.0, population 125449703 } };
INSERT Country RELATION { TUPLE { code 'ROK', name 'South Korea', capital 'Seoul', area 98480.0, population 45482291 } };
INSERT Country RELATION { TUPLE { code 'MV', name 'Maldives', capital 'Male', area 300.0, population 270758 } };
INSERT Country RELATION { TUPLE { code 'OM', name 'Oman', capital 'Muscat', area 212460.0, population 2186548 } };
INSERT Country RELATION { TUPLE { code 'UAE', name 'United Arab Emirates', capital 'Abu Dhabi', area 75581.0, population 3057337 } };
INSERT Country RELATION { TUPLE { code 'YE', name 'Yemen', capital 'Sanaa', area 527970.0, population 13483178 } };
INSERT Country RELATION { TUPLE { code 'RP', name 'Philippines', capital 'Manila', area 299764.0, population 74480848 } };
INSERT Country RELATION { TUPLE { code 'Q', name 'Qatar', capital 'Doha', area 11000.0, population 547761 } };
INSERT Country RELATION { TUPLE { code 'SGP', name 'Singapore', capital 'Singapore', area 632.6, population 3396924 } };
INSERT Country RELATION { TUPLE { code 'CL', name 'Sri Lanka', capital 'Colombo', area 65610.0, population 18553074 } };
INSERT Country RELATION { TUPLE { code 'RC', name 'Taiwan', capital 'Taipei', area 36179.0, population 21465881 } };
INSERT Country RELATION { TUPLE { code 'AXA', name 'Anguilla', capital 'The Valley', area 102.0, population 14436 } };
INSERT Country RELATION { TUPLE { code 'AG', name 'Antigua and Barbuda', capital 'Saint Johns', area 442.0, population 65647 } };
INSERT Country RELATION { TUPLE { code 'ARU', name 'Aruba', capital 'Oranjestad', area 193.0, population 103065 } };
INSERT Country RELATION { TUPLE { code 'BS', name 'Bahamas', capital 'Nassau', area 13940.0, population 259367 } };
INSERT Country RELATION { TUPLE { code 'BDS', name 'Barbados', capital 'Bridgetown', area 430.0, population 257030 } };
INSERT Country RELATION { TUPLE { code 'BZ', name 'Belize', capital 'Belmopan', area 22960.0, population 219296 } };
INSERT Country RELATION { TUPLE { code 'GCA', name 'Guatemala', capital 'Guatemala City', area 108890.0, population 11277614 } };
INSERT Country RELATION { TUPLE { code 'MEX', name 'Mexico', capital 'Mexico City', area 1972550.0, population 95772462 } };
INSERT Country RELATION { TUPLE { code 'BERM', name 'Bermuda', capital 'Hamilton', area 53.3, population 67837 } };
INSERT Country RELATION { TUPLE { code 'BVIR', name 'British Virgin Islands', capital 'Road Town', area 153.0, population 24491 } };
INSERT Country RELATION { TUPLE { code 'CDN', name 'Canada', capital 'Ottawa', area 9976140.0, population 28820671 } };
INSERT Country RELATION { TUPLE { code 'USA', name 'United States', capital 'Washington', area 9372610.0, population 266476278 } };
INSERT Country RELATION { TUPLE { code 'CAYM', name 'Cayman Islands', capital 'George Town', area 262.0, population 49035 } };
INSERT Country RELATION { TUPLE { code 'CR', name 'Costa Rica', capital 'San Jose', area 51100.0, population 3463083 } };
INSERT Country RELATION { TUPLE { code 'NIC', name 'Nicaragua', capital 'Managua', area 129494.0, population 4272352 } };
INSERT Country RELATION { TUPLE { code 'PA', name 'Panama', capital 'Panama City', area 78200.0, population 2655094 } };
INSERT Country RELATION { TUPLE { code 'C', name 'Cuba', capital 'Havana', area 110860.0, population 10951334 } };
INSERT Country RELATION { TUPLE { code 'WD', name 'Dominica', capital 'Roseau', area 746.0, population 82926 } };
INSERT Country RELATION { TUPLE { code 'DOM', name 'Dominican Republic', capital 'Santo Domingo', area 48730.0, population 8088881 } };
INSERT Country RELATION { TUPLE { code 'RH', name 'Haiti', capital 'Port-au-Prince', area 27750.0, population 6731539 } };
INSERT Country RELATION { TUPLE { code 'ES', name 'El Salvador', capital 'San Salvador', area 21040.0, population 5828987 } };
INSERT Country RELATION { TUPLE { code 'HCA', name 'Honduras', capital 'Tegucigalpa', area 112090.0, population 5605193 } };
INSERT Country RELATION { TUPLE { code 'GROX', name 'Greenland', capital 'Nuuk', area 2175600.0, population 58203 } };
INSERT Country RELATION { TUPLE { code 'WG', name 'Grenada', capital 'Saint Georges', area 344.0, population 94961 } };
INSERT Country RELATION { TUPLE { code 'GUAD', name 'Guadeloupe', capital 'Basse-Terre', area 1780.0, population 407768 } };
INSERT Country RELATION { TUPLE { code 'JA', name 'Jamaica', capital 'Kingston', area 10991.0, population 2595275 } };
INSERT Country RELATION { TUPLE { code 'MART', name 'Martinique', capital 'Fort-de-France', area 1128.0, population 399151 } };
INSERT Country RELATION { TUPLE { code 'MNTS', name 'Montserrat', capital 'Plymouth', area 102.0, population 5097 } };
INSERT Country RELATION { TUPLE { code 'NA', name 'Netherlands Antilles', capital 'Willemstad', area 960.0, population 227049 } };
INSERT Country RELATION { TUPLE { code 'SMAR', name 'Saint Martin', capital 'Marigot', area 54.0, population 29820 } };
INSERT Country RELATION { TUPLE { code 'CO', name 'Colombia', capital 'Bogota', area 1138910.0, population 36813161 } };
INSERT Country RELATION { TUPLE { code 'PR', name 'Puerto Rico', capital 'San Juan', area 8870.0, population 3971020 } };
INSERT Country RELATION { TUPLE { code 'KN', name 'Saint Kitts and Nevis', capital 'Basseterre', area 269.0, population 41369 } };
INSERT Country RELATION { TUPLE { code 'WL', name 'Saint Lucia', capital 'Castries', area 620.0, population 157862 } };
INSERT Country RELATION { TUPLE { code 'SPMI', name 'Saint Pierre and Miquelon', capital 'Saint-Pierre', area 242.0, population 6809 } };
INSERT Country RELATION { TUPLE { code 'WV', name 'Saint Vincent and the Grenadines', capital 'Kingstown', area 389.0, population 118344 } };
INSERT Country RELATION { TUPLE { code 'TT', name 'Trinidad and Tobago', capital 'Port-of-Spain', area 5130.0, population 1272385 } };
INSERT Country RELATION { TUPLE { code 'TUCA', name 'Turks and Caicos Islands', capital 'Grand Turk', area 430.0, population 22942 } };
INSERT Country RELATION { TUPLE { code 'VIRG', name 'Virgin Islands', capital 'Charlotte Amalie', area 352.0, population 97120 } };
INSERT Country RELATION { TUPLE { code 'AMSA', name 'American Samoa', capital 'Pago Pago', area 199.0, population 65628 } };
INSERT Country RELATION { TUPLE { code 'AUS', name 'Australia', capital 'Canberra', area 7686850.0, population 18260863 } };
INSERT Country RELATION { TUPLE { code 'COOK', name 'Cook Islands', capital 'Avarua', area 240.0, population 11870 } };
INSERT Country RELATION { TUPLE { code 'FJI', name 'Fiji', capital 'Suva', area 18270.0, population 782381 } };
INSERT Country RELATION { TUPLE { code 'FPOL', name 'French Polynesia', capital 'Papeete', area 4167.0, population 287032 } };
INSERT Country RELATION { TUPLE { code 'GUAM', name 'Guam', capital 'Agana', area 541.3, population 178430 } };
INSERT Country RELATION { TUPLE { code 'KIR', name 'Kiribati', capital 'Tarawa', area 717.0, population 80919 } };
INSERT Country RELATION { TUPLE { code 'MH', name 'Marshall Islands', capital 'Majuro', area 181.3, population 58363 } };
INSERT Country RELATION { TUPLE { code 'FSM', name 'Micronesia', capital 'Palikir', area 702.0, population 125377 } };
INSERT Country RELATION { TUPLE { code 'NAU', name 'Nauru', capital 'Yaren', area 21.0, population 10273 } };
INSERT Country RELATION { TUPLE { code 'NCA', name 'New Caledonia', capital 'Noumea', area 19060.0, population 227436 } };
INSERT Country RELATION { TUPLE { code 'NZ', name 'New Zealand', capital 'Wellington', area 268680.0, population 3547983 } };
INSERT Country RELATION { TUPLE { code 'NIUE', name 'Niue', capital 'Alofi', area 260.0, population 1398 } };
INSERT Country RELATION { TUPLE { code 'NORF', name 'Norfolk Island', capital 'Kingston', area 34.6, population 2209 } };
INSERT Country RELATION { TUPLE { code 'NMIS', name 'Northern Mariana Islands', capital 'Saipan', area 477.0, population 88662 } };
INSERT Country RELATION { TUPLE { code 'PAL', name 'Palau', capital 'Melekeok', area 458.0, population 16952 } };
INSERT Country RELATION { TUPLE { code 'PITC', name 'Pitcairn Islands', capital 'Adamstown', area 47.0, population 48 } };
INSERT Country RELATION { TUPLE { code 'SLB', name 'Solomon Islands', capital 'Honiara', area 28450.0, population 412902 } };
INSERT Country RELATION { TUPLE { code 'TO', name 'Tonga', capital 'Nukualofa', area 748.0, population 106466 } };
INSERT Country RELATION { TUPLE { code 'TUV', name 'Tuvalu', capital 'Funafuti', area 26.0, population 10146 } };
INSERT Country RELATION { TUPLE { code 'VU', name 'Vanuatu', capital 'Port-Vila', area 14760.0, population 177504 } };
INSERT Country RELATION { TUPLE { code 'WAFU', name 'Wallis and Futuna', capital 'Mata-Utu', area 274.0, population 15289 } };
INSERT Country RELATION { TUPLE { code 'WS', name 'Samoa', capital 'Apia', area 2860.0, population 214384 } };
INSERT Country RELATION { TUPLE { code 'RA', name 'Argentina', capital 'Buenos Aires', area 2766890.0, population 34672997 } };
INSERT Country RELATION { TUPLE { code 'BOL', name 'Bolivia', capital 'La Paz', area 1098580.0, population 7165257 } };
INSERT Country RELATION { TUPLE { code 'BR', name 'Brazil', capital 'Brasilia', area 8511965.0, population 162661214 } };
INSERT Country RELATION { TUPLE { code 'RCH', name 'Chile', capital 'Santiago', area 756950.0, population 14333258 } };
INSERT Country RELATION { TUPLE { code 'PY', name 'Paraguay', capital 'Asuncion', area 406750.0, population 5504146 } };
INSERT Country RELATION { TUPLE { code 'ROU', name 'Uruguay', capital 'Montevideo', area 176220.0, population 3238952 } };
INSERT Country RELATION { TUPLE { code 'PE', name 'Peru', capital 'Lima', area 1285220.0, population 24523408 } };
INSERT Country RELATION { TUPLE { code 'FGU', name 'French Guiana', capital 'Cayenne', area 91000.0, population 151187 } };
INSERT Country RELATION { TUPLE { code 'GUY', name 'Guyana', capital 'Georgetown', area 214970.0, population 712091 } };
INSERT Country RELATION { TUPLE { code 'SME', name 'Suriname', capital 'Paramaribo', area 163270.0, population 436418 } };
INSERT Country RELATION { TUPLE { code 'YV', name 'Venezuela', capital 'Caracas', area 912050.0, population 21983188 } };
INSERT Country RELATION { TUPLE { code 'EC', name 'Ecuador', capital 'Quito', area 283560.0, population 11466291 } };
INSERT Country RELATION { TUPLE { code 'FALK', name 'Falkland Islands', capital 'Stanley', area 12173.0, population 3140 } };
INSERT Country RELATION { TUPLE { code 'DZ', name 'Algeria', capital 'Algier', area 2381740.0, population 29183032 } };
INSERT Country RELATION { TUPLE { code 'LAR', name 'Libya', capital 'Tripoli', area 1759540.0, population 5445436 } };
INSERT Country RELATION { TUPLE { code 'RMM', name 'Mali', capital 'Bamako', area 1240000.0, population 9653261 } };
INSERT Country RELATION { TUPLE { code 'RIM', name 'Mauritania', capital 'Nouakchott', area 1030700.0, population 2336048 } };
INSERT Country RELATION { TUPLE { code 'MA', name 'Morocco', capital 'Rabat', area 446550.0, population 29779156 } };
INSERT Country RELATION { TUPLE { code 'RN', name 'Niger', capital 'Niamey', area 1267000.0, population 9113001 } };
INSERT Country RELATION { TUPLE { code 'TN', name 'Tunisia', capital 'Tunis', area 163610.0, population 9019687 } };
INSERT Country RELATION { TUPLE { code 'WSA', name 'Western Sahara', capital 'El Aaiun', area 266000.0, population 222631 } };
INSERT Country RELATION { TUPLE { code 'ANG', name 'Angola', capital 'Luanda', area 1246700.0, population 10342899 } };
INSERT Country RELATION { TUPLE { code 'RCB', name 'Congo', capital 'Brazzaville', area 342000.0, population 2527841 } };
INSERT Country RELATION { TUPLE { code 'NAM', name 'Namibia', capital 'Windhoek', area 825418.0, population 1677243 } };
INSERT Country RELATION { TUPLE { code 'ZRE', name 'Zaire', capital 'Kinshasa', area 2345410.0, population 46498539 } };
INSERT Country RELATION { TUPLE { code 'Z', name 'Zambia', capital 'Lusaka', area 752610.0, population 9159072 } };
INSERT Country RELATION { TUPLE { code 'BEN', name 'Benin', capital 'Porto-Novo', area 112620.0, population 5709529 } };
INSERT Country RELATION { TUPLE { code 'BF', name 'Burkina Faso', capital 'Ouagadougou', area 274200.0, population 10623323 } };
INSERT Country RELATION { TUPLE { code 'WAN', name 'Nigeria', capital 'Abuja', area 923770.0, population 103912489 } };
INSERT Country RELATION { TUPLE { code 'RT', name 'Togo', capital 'Lome', area 56790.0, population 4570530 } };
INSERT Country RELATION { TUPLE { code 'RB', name 'Botswana', capital 'Gaborone', area 600370.0, population 1477630 } };
INSERT Country RELATION { TUPLE { code 'RSA', name 'South Africa', capital 'Pretoria', area 1219912.0, population 41743459 } };
INSERT Country RELATION { TUPLE { code 'ZW', name 'Zimbabwe', capital 'Harare', area 390580.0, population 11271314 } };
INSERT Country RELATION { TUPLE { code 'CI', name 'Cote dIvoire', capital 'Yamoussoukro', area 322460.0, population 14762445 } };
INSERT Country RELATION { TUPLE { code 'GH', name 'Ghana', capital 'Accra', area 238540.0, population 17698271 } };
INSERT Country RELATION { TUPLE { code 'BI', name 'Burundi', capital 'Bujumbura', area 27830.0, population 5943057 } };
INSERT Country RELATION { TUPLE { code 'RWA', name 'Rwanda', capital 'Kigali', area 26340.0, population 6853359 } };
INSERT Country RELATION { TUPLE { code 'EAT', name 'Tanzania', capital 'Dar es Salaam', area 945090.0, population 29058470 } };
INSERT Country RELATION { TUPLE { code 'CAM', name 'Cameroon', capital 'Yaounde', area 475440.0, population 14261557 } };
INSERT Country RELATION { TUPLE { code 'RCA', name 'Central African Republic', capital 'Bangui', area 622980.0, population 3274426 } };
INSERT Country RELATION { TUPLE { code 'TCH', name 'Chad', capital 'NDjamena', area 1284000.0, population 6976845 } };
INSERT Country RELATION { TUPLE { code 'GQ', name 'Equatorial Guinea', capital 'Malabo', area 28050.0, population 431282 } };
INSERT Country RELATION { TUPLE { code 'G', name 'Gabon', capital 'Libreville', area 267670.0, population 1172798 } };
INSERT Country RELATION { TUPLE { code 'CV', name 'Cape Verde', capital 'Praia', area 4030.0, population 449066 } };
INSERT Country RELATION { TUPLE { code 'SUD', name 'Sudan', capital 'Khartoum', area 2505810.0, population 31547543 } };
INSERT Country RELATION { TUPLE { code 'COM', name 'Comoros', capital 'Moroni', area 2170.0, population 569237 } };
INSERT Country RELATION { TUPLE { code 'RG', name 'Guinea', capital 'Conakry', area 245860.0, population 7411981 } };
INSERT Country RELATION { TUPLE { code 'LB', name 'Liberia', capital 'Monrovia', area 111370.0, population 2109789 } };
INSERT Country RELATION { TUPLE { code 'DJI', name 'Djibouti', capital 'Djibouti', area 22000.0, population 427642 } };
INSERT Country RELATION { TUPLE { code 'ER', name 'Eritrea', capital 'Asmara', area 121320.0, population 3427883 } };
INSERT Country RELATION { TUPLE { code 'ETH', name 'Ethiopia', capital 'Addis Ababa', area 1127127.0, population 57171662 } };
INSERT Country RELATION { TUPLE { code 'SP', name 'Somalia', capital 'Mogadishu', area 637660.0, population 9639151 } };
INSERT Country RELATION { TUPLE { code 'EAK', name 'Kenya', capital 'Nairobi', area 582650.0, population 28176686 } };
INSERT Country RELATION { TUPLE { code 'WAG', name 'Gambia', capital 'Banjul', area 11300.0, population 1204984 } };
INSERT Country RELATION { TUPLE { code 'SN', name 'Senegal', capital 'Dakar', area 196190.0, population 9092749 } };
INSERT Country RELATION { TUPLE { code 'GNB', name 'Guinea-Bissau', capital 'Bissau', area 36120.0, population 1151330 } };
INSERT Country RELATION { TUPLE { code 'WAL', name 'Sierra Leone', capital 'Freetown', area 71740.0, population 4793121 } };
INSERT Country RELATION { TUPLE { code 'EAU', name 'Uganda', capital 'Kampala', area 236040.0, population 20158176 } };
INSERT Country RELATION { TUPLE { code 'LS', name 'Lesotho', capital 'Maseru', area 30350.0, population 1970781 } };
INSERT Country RELATION { TUPLE { code 'RM', name 'Madagascar', capital 'Antananarivo', area 587041.0, population 13670507 } };
INSERT Country RELATION { TUPLE { code 'MW', name 'Malawi', capital 'Lilongwe', area 118480.0, population 9452844 } };
INSERT Country RELATION { TUPLE { code 'MOC', name 'Mozambique', capital 'Maputo', area 801590.0, population 17877927 } };
INSERT Country RELATION { TUPLE { code 'MS', name 'Mauritius', capital 'Port Louis', area 2040.0, population 1140256 } };
INSERT Country RELATION { TUPLE { code 'MAYO', name 'Mayotte', capital 'Mamoutzou', area 374.0, population 223765 } };
INSERT Country RELATION { TUPLE { code 'SD', name 'Swaziland', capital 'Mbabane', area 17360.0, population 998730 } };
INSERT Country RELATION { TUPLE { code 'REUN', name 'Reunion', capital 'Saint-Denis', area 2510.0, population 679198 } };
INSERT Country RELATION { TUPLE { code 'HELX', name 'Saint Helena', capital 'Jamestown', area 413.0, population 7637 } };
INSERT Country RELATION { TUPLE { code 'STP', name 'Sao Tome and Principe', capital 'Sao Tome', area 1001.0, population 144128 } };
INSERT Country RELATION { TUPLE { code 'SY', name 'Seychelles', capital 'Victoria', area 455.0, population 77575 } };
/* INSERT : Borders */
INSERT Borders RELATION { TUPLE { country1 'AL', country2 'GR', length 282.0 } };
INSERT Borders RELATION { TUPLE { country1 'AL', country2 'MK', length 151.0 } };
INSERT Borders RELATION { TUPLE { country1 'AL', country2 'MNE', length 172.0 } };
INSERT Borders RELATION { TUPLE { country1 'AL', country2 'KOS', length 112.0 } };
INSERT Borders RELATION { TUPLE { country1 'GR', country2 'MK', length 228.0 } };
INSERT Borders RELATION { TUPLE { country1 'GR', country2 'TR', length 206.0 } };
INSERT Borders RELATION { TUPLE { country1 'MK', country2 'SRB', length 62.0 } };
INSERT Borders RELATION { TUPLE { country1 'MNE', country2 'SRB', length 124.0 } };
INSERT Borders RELATION { TUPLE { country1 'KOS', country2 'MNE', length 79.0 } };
INSERT Borders RELATION { TUPLE { country1 'KOS', country2 'SRB', length 352.0 } };
INSERT Borders RELATION { TUPLE { country1 'KOS', country2 'MK', length 159.0 } };
INSERT Borders RELATION { TUPLE { country1 'AND', country2 'F', length 60.0 } };
INSERT Borders RELATION { TUPLE { country1 'AND', country2 'E', length 65.0 } };
INSERT Borders RELATION { TUPLE { country1 'F', country2 'I', length 488.0 } };
INSERT Borders RELATION { TUPLE { country1 'F', country2 'L', length 73.0 } };
INSERT Borders RELATION { TUPLE { country1 'F', country2 'MC', length 4.4 } };
INSERT Borders RELATION { TUPLE { country1 'E', country2 'F', length 623.0 } };
INSERT Borders RELATION { TUPLE { country1 'E', country2 'GBZ', length 1.2 } };
INSERT Borders RELATION { TUPLE { country1 'E', country2 'P', length 1214.0 } };
INSERT Borders RELATION { TUPLE { country1 'A', country2 'CZ', length 362.0 } };
INSERT Borders RELATION { TUPLE { country1 'A', country2 'D', length 784.0 } };
INSERT Borders RELATION { TUPLE { country1 'A', country2 'H', length 366.0 } };
INSERT Borders RELATION { TUPLE { country1 'A', country2 'I', length 430.0 } };
INSERT Borders RELATION { TUPLE { country1 'A', country2 'FL', length 37.0 } };
INSERT Borders RELATION { TUPLE { country1 'A', country2 'SK', length 91.0 } };
INSERT Borders RELATION { TUPLE { country1 'A', country2 'SLO', length 324.0 } };
INSERT Borders RELATION { TUPLE { country1 'A', country2 'CH', length 164.0 } };
INSERT Borders RELATION { TUPLE { country1 'CZ', country2 'D', length 646.0 } };
INSERT Borders RELATION { TUPLE { country1 'CZ', country2 'SK', length 215.0 } };
INSERT Borders RELATION { TUPLE { country1 'CZ', country2 'PL', length 658.0 } };
INSERT Borders RELATION { TUPLE { country1 'D', country2 'F', length 451.0 } };
INSERT Borders RELATION { TUPLE { country1 'D', country2 'PL', length 456.0 } };
INSERT Borders RELATION { TUPLE { country1 'D', country2 'L', length 138.0 } };
INSERT Borders RELATION { TUPLE { country1 'D', country2 'NL', length 577.0 } };
INSERT Borders RELATION { TUPLE { country1 'D', country2 'DK', length 68.0 } };
INSERT Borders RELATION { TUPLE { country1 'H', country2 'SRB', length 151.0 } };
INSERT Borders RELATION { TUPLE { country1 'H', country2 'SK', length 515.0 } };
INSERT Borders RELATION { TUPLE { country1 'H', country2 'SLO', length 102.0 } };
INSERT Borders RELATION { TUPLE { country1 'H', country2 'UA', length 103.0 } };
INSERT Borders RELATION { TUPLE { country1 'H', country2 'HR', length 329.0 } };
INSERT Borders RELATION { TUPLE { country1 'H', country2 'RO', length 443.0 } };
INSERT Borders RELATION { TUPLE { country1 'I', country2 'SLO', length 235.0 } };
INSERT Borders RELATION { TUPLE { country1 'I', country2 'V', length 3.2 } };
INSERT Borders RELATION { TUPLE { country1 'I', country2 'RSM', length 39.0 } };
INSERT Borders RELATION { TUPLE { country1 'SK', country2 'UA', length 90.0 } };
INSERT Borders RELATION { TUPLE { country1 'CH', country2 'F', length 573.0 } };
INSERT Borders RELATION { TUPLE { country1 'CH', country2 'D', length 334.0 } };
INSERT Borders RELATION { TUPLE { country1 'CH', country2 'I', length 740.0 } };
INSERT Borders RELATION { TUPLE { country1 'CH', country2 'FL', length 41.0 } };
INSERT Borders RELATION { TUPLE { country1 'BY', country2 'LV', length 141.0 } };
INSERT Borders RELATION { TUPLE { country1 'BY', country2 'LT', length 502.0 } };
INSERT Borders RELATION { TUPLE { country1 'BY', country2 'PL', length 605.0 } };
INSERT Borders RELATION { TUPLE { country1 'BY', country2 'UA', length 891.0 } };
INSERT Borders RELATION { TUPLE { country1 'BY', country2 'R', length 959.0 } };
INSERT Borders RELATION { TUPLE { country1 'LV', country2 'R', length 217.0 } };
INSERT Borders RELATION { TUPLE { country1 'LT', country2 'LV', length 453.0 } };
INSERT Borders RELATION { TUPLE { country1 'LT', country2 'PL', length 91.0 } };
INSERT Borders RELATION { TUPLE { country1 'LT', country2 'R', length 227.0 } };
INSERT Borders RELATION { TUPLE { country1 'PL', country2 'SK', length 444.0 } };
INSERT Borders RELATION { TUPLE { country1 'PL', country2 'UA', length 428.0 } };
INSERT Borders RELATION { TUPLE { country1 'PL', country2 'R', length 206.0 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'UA', length 1576.0 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'SF', length 1313.0 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'TJ', length 3645.0 } };
INSERT Borders RELATION { TUPLE { country1 'B', country2 'F', length 620.0 } };
INSERT Borders RELATION { TUPLE { country1 'B', country2 'D', length 167.0 } };
INSERT Borders RELATION { TUPLE { country1 'B', country2 'L', length 148.0 } };
INSERT Borders RELATION { TUPLE { country1 'B', country2 'NL', length 450.0 } };
INSERT Borders RELATION { TUPLE { country1 'BIH', country2 'SRB', length 302.0 } };
INSERT Borders RELATION { TUPLE { country1 'BIH', country2 'KOS', length 225.0 } };
INSERT Borders RELATION { TUPLE { country1 'BIH', country2 'HR', length 932.0 } };
INSERT Borders RELATION { TUPLE { country1 'HR', country2 'SRB', length 241.0 } };
INSERT Borders RELATION { TUPLE { country1 'HR', country2 'MNE', length 25.0 } };
INSERT Borders RELATION { TUPLE { country1 'HR', country2 'SLO', length 546.0 } };
INSERT Borders RELATION { TUPLE { country1 'BG', country2 'GR', length 494.0 } };
INSERT Borders RELATION { TUPLE { country1 'BG', country2 'MK', length 148.0 } };
INSERT Borders RELATION { TUPLE { country1 'BG', country2 'SRB', length 318.0 } };
INSERT Borders RELATION { TUPLE { country1 'BG', country2 'RO', length 608.0 } };
INSERT Borders RELATION { TUPLE { country1 'BG', country2 'TR', length 240.0 } };
INSERT Borders RELATION { TUPLE { country1 'RO', country2 'SRB', length 476.0 } };
INSERT Borders RELATION { TUPLE { country1 'RO', country2 'UA', length 531.0 } };
INSERT Borders RELATION { TUPLE { country1 'EW', country2 'LV', length 267.0 } };
INSERT Borders RELATION { TUPLE { country1 'EW', country2 'R', length 290.0 } };
INSERT Borders RELATION { TUPLE { country1 'N', country2 'R', length 167.0 } };
INSERT Borders RELATION { TUPLE { country1 'N', country2 'SF', length 729.0 } };
INSERT Borders RELATION { TUPLE { country1 'N', country2 'S', length 1619.0 } };
INSERT Borders RELATION { TUPLE { country1 'S', country2 'SF', length 586.0 } };
INSERT Borders RELATION { TUPLE { country1 'MD', country2 'UA', length 939.0 } };
INSERT Borders RELATION { TUPLE { country1 'MD', country2 'RO', length 450.0 } };
INSERT Borders RELATION { TUPLE { country1 'GB', country2 'IRL', length 360.0 } };
INSERT Borders RELATION { TUPLE { country1 'AFG', country2 'TJ', length 76.0 } };
INSERT Borders RELATION { TUPLE { country1 'AFG', country2 'IR', length 936.0 } };
INSERT Borders RELATION { TUPLE { country1 'AFG', country2 'PK', length 2430.0 } };
INSERT Borders RELATION { TUPLE { country1 'AFG', country2 'TAD', length 1206.0 } };
INSERT Borders RELATION { TUPLE { country1 'AFG', country2 'TM', length 744.0 } };
INSERT Borders RELATION { TUPLE { country1 'AFG', country2 'UZB', length 137.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'VN', length 1281.0 } };
INSERT Borders RELATION { TUPLE { country1 'IR', country2 'TR', length 499.0 } };
INSERT Borders RELATION { TUPLE { country1 'IR', country2 'PK', length 909.0 } };
INSERT Borders RELATION { TUPLE { country1 'IR', country2 'TM', length 992.0 } };
INSERT Borders RELATION { TUPLE { country1 'IR', country2 'IRQ', length 1458.0 } };
INSERT Borders RELATION { TUPLE { country1 'PK', country2 'TJ', length 523.0 } };
INSERT Borders RELATION { TUPLE { country1 'TAD', country2 'TJ', length 414.0 } };
INSERT Borders RELATION { TUPLE { country1 'TAD', country2 'UZB', length 1161.0 } };
INSERT Borders RELATION { TUPLE { country1 'TM', country2 'UZB', length 1621.0 } };
INSERT Borders RELATION { TUPLE { country1 'ARM', country2 'TR', length 268.0 } };
INSERT Borders RELATION { TUPLE { country1 'ARM', country2 'IR', length 35.0 } };
INSERT Borders RELATION { TUPLE { country1 'ARM', country2 'GE', length 164.0 } };
INSERT Borders RELATION { TUPLE { country1 'ARM', country2 'AZ', length 787.0 } };
INSERT Borders RELATION { TUPLE { country1 'GE', country2 'R', length 723.0 } };
INSERT Borders RELATION { TUPLE { country1 'GE', country2 'TR', length 252.0 } };
INSERT Borders RELATION { TUPLE { country1 'AZ', country2 'R', length 284.0 } };
INSERT Borders RELATION { TUPLE { country1 'AZ', country2 'TR', length 9.0 } };
INSERT Borders RELATION { TUPLE { country1 'AZ', country2 'IR', length 611.0 } };
INSERT Borders RELATION { TUPLE { country1 'AZ', country2 'GE', length 322.0 } };
INSERT Borders RELATION { TUPLE { country1 'BD', country2 'MYA', length 193.0 } };
INSERT Borders RELATION { TUPLE { country1 'BD', country2 'IND', length 4053.0 } };
INSERT Borders RELATION { TUPLE { country1 'MYA', country2 'TJ', length 2185.0 } };
INSERT Borders RELATION { TUPLE { country1 'MYA', country2 'THA', length 1800.0 } };
INSERT Borders RELATION { TUPLE { country1 'IND', country2 'TJ', length 3380.0 } };
INSERT Borders RELATION { TUPLE { country1 'IND', country2 'PK', length 2912.0 } };
INSERT Borders RELATION { TUPLE { country1 'IND', country2 'MYA', length 1463.0 } };
INSERT Borders RELATION { TUPLE { country1 'IND', country2 'NEP', length 1690.0 } };
INSERT Borders RELATION { TUPLE { country1 'BHT', country2 'TJ', length 470.0 } };
INSERT Borders RELATION { TUPLE { country1 'BHT', country2 'IND', length 605.0 } };
INSERT Borders RELATION { TUPLE { country1 'BRU', country2 'MAL', length 381.0 } };
INSERT Borders RELATION { TUPLE { country1 'MAL', country2 'THA', length 506.0 } };
INSERT Borders RELATION { TUPLE { country1 'MAL', country2 'RI', length 1782.0 } };
INSERT Borders RELATION { TUPLE { country1 'LAO', country2 'TJ', length 423.0 } };
INSERT Borders RELATION { TUPLE { country1 'LAO', country2 'MYA', length 235.0 } };
INSERT Borders RELATION { TUPLE { country1 'LAO', country2 'THA', length 1754.0 } };
INSERT Borders RELATION { TUPLE { country1 'LAO', country2 'VN', length 2130.0 } };
INSERT Borders RELATION { TUPLE { country1 'K', country2 'LAO', length 541.0 } };
INSERT Borders RELATION { TUPLE { country1 'K', country2 'THA', length 803.0 } };
INSERT Borders RELATION { TUPLE { country1 'K', country2 'VN', length 1228.0 } };
INSERT Borders RELATION { TUPLE { country1 'KAZ', country2 'R', length 6846.0 } };
INSERT Borders RELATION { TUPLE { country1 'KAZ', country2 'TJ', length 1533.0 } };
INSERT Borders RELATION { TUPLE { country1 'KAZ', country2 'TM', length 379.0 } };
INSERT Borders RELATION { TUPLE { country1 'KAZ', country2 'UZB', length 2203.0 } };
INSERT Borders RELATION { TUPLE { country1 'KAZ', country2 'KGZ', length 1051.0 } };
INSERT Borders RELATION { TUPLE { country1 'NOK', country2 'R', length 19.0 } };
INSERT Borders RELATION { TUPLE { country1 'NOK', country2 'TJ', length 1416.0 } };
INSERT Borders RELATION { TUPLE { country1 'NOK', country2 'ROK', length 238.0 } };
INSERT Borders RELATION { TUPLE { country1 'KGZ', country2 'TJ', length 858.0 } };
INSERT Borders RELATION { TUPLE { country1 'KGZ', country2 'TAD', length 870.0 } };
INSERT Borders RELATION { TUPLE { country1 'KGZ', country2 'UZB', length 1099.0 } };
INSERT Borders RELATION { TUPLE { country1 'HONX', country2 'TJ', length 30.0 } };
INSERT Borders RELATION { TUPLE { country1 'MACX', country2 'TJ', length 0.34 } };
INSERT Borders RELATION { TUPLE { country1 'MNG', country2 'R', length 3441.0 } };
INSERT Borders RELATION { TUPLE { country1 'MNG', country2 'TJ', length 4673.0 } };
INSERT Borders RELATION { TUPLE { country1 'NEP', country2 'TJ', length 1236.0 } };
INSERT Borders RELATION { TUPLE { country1 'IL', country2 'JOR', length 238.0 } };
INSERT Borders RELATION { TUPLE { country1 'IL', country2 'SYR', length 76.0 } };
INSERT Borders RELATION { TUPLE { country1 'IL', country2 'RL', length 79.0 } };
INSERT Borders RELATION { TUPLE { country1 'ET', country2 'IL', length 255.0 } };
INSERT Borders RELATION { TUPLE { country1 'ET', country2 'LAR', length 1150.0 } };
INSERT Borders RELATION { TUPLE { country1 'ET', country2 'SUD', length 1273.0 } };
INSERT Borders RELATION { TUPLE { country1 'RI', country2 'TL', length 228.0 } };
INSERT Borders RELATION { TUPLE { country1 'PNG', country2 'RI', length 820.0 } };
INSERT Borders RELATION { TUPLE { country1 'IRQ', country2 'TR', length 331.0 } };
INSERT Borders RELATION { TUPLE { country1 'IRQ', country2 'JOR', length 181.0 } };
INSERT Borders RELATION { TUPLE { country1 'IRQ', country2 'KWT', length 242.0 } };
INSERT Borders RELATION { TUPLE { country1 'IRQ', country2 'SA', length 814.0 } };
INSERT Borders RELATION { TUPLE { country1 'IRQ', country2 'SYR', length 605.0 } };
INSERT Borders RELATION { TUPLE { country1 'JOR', country2 'SA', length 728.0 } };
INSERT Borders RELATION { TUPLE { country1 'JOR', country2 'SYR', length 375.0 } };
INSERT Borders RELATION { TUPLE { country1 'KWT', country2 'SA', length 222.0 } };
INSERT Borders RELATION { TUPLE { country1 'SA', country2 'UAE', length 457.0 } };
INSERT Borders RELATION { TUPLE { country1 'SA', country2 'YE', length 1458.0 } };
INSERT Borders RELATION { TUPLE { country1 'SYR', country2 'TR', length 822.0 } };
INSERT Borders RELATION { TUPLE { country1 'RL', country2 'SYR', length 375.0 } };
INSERT Borders RELATION { TUPLE { country1 'OM', country2 'SA', length 676.0 } };
INSERT Borders RELATION { TUPLE { country1 'OM', country2 'UAE', length 410.0 } };
INSERT Borders RELATION { TUPLE { country1 'OM', country2 'YE', length 288.0 } };
INSERT Borders RELATION { TUPLE { country1 'Q', country2 'SA', length 60.0 } };
INSERT Borders RELATION { TUPLE { country1 'BZ', country2 'GCA', length 266.0 } };
INSERT Borders RELATION { TUPLE { country1 'BZ', country2 'MEX', length 250.0 } };
INSERT Borders RELATION { TUPLE { country1 'GCA', country2 'MEX', length 962.0 } };
INSERT Borders RELATION { TUPLE { country1 'GCA', country2 'HCA', length 256.0 } };
INSERT Borders RELATION { TUPLE { country1 'MEX', country2 'USA', length 3326.0 } };
INSERT Borders RELATION { TUPLE { country1 'CDN', country2 'USA', length 8893.0 } };
INSERT Borders RELATION { TUPLE { country1 'CR', country2 'NIC', length 309.0 } };
INSERT Borders RELATION { TUPLE { country1 'CR', country2 'PA', length 330.0 } };
INSERT Borders RELATION { TUPLE { country1 'DOM', country2 'RH', length 275.0 } };
INSERT Borders RELATION { TUPLE { country1 'ES', country2 'GCA', length 203.0 } };
INSERT Borders RELATION { TUPLE { country1 'ES', country2 'HCA', length 342.0 } };
INSERT Borders RELATION { TUPLE { country1 'HCA', country2 'NIC', length 922.0 } };
INSERT Borders RELATION { TUPLE { country1 'NA', country2 'SMAR', length 15.0 } };
INSERT Borders RELATION { TUPLE { country1 'CO', country2 'PA', length 225.0 } };
INSERT Borders RELATION { TUPLE { country1 'CO', country2 'PE', length 2900.0 } };
INSERT Borders RELATION { TUPLE { country1 'CO', country2 'YV', length 2050.0 } };
INSERT Borders RELATION { TUPLE { country1 'CO', country2 'EC', length 590.0 } };
INSERT Borders RELATION { TUPLE { country1 'RA', country2 'RCH', length 5150.0 } };
INSERT Borders RELATION { TUPLE { country1 'RA', country2 'ROU', length 579.0 } };
INSERT Borders RELATION { TUPLE { country1 'BOL', country2 'RA', length 832.0 } };
INSERT Borders RELATION { TUPLE { country1 'BOL', country2 'BR', length 3400.0 } };
INSERT Borders RELATION { TUPLE { country1 'BOL', country2 'RCH', length 861.0 } };
INSERT Borders RELATION { TUPLE { country1 'BOL', country2 'PY', length 750.0 } };
INSERT Borders RELATION { TUPLE { country1 'BOL', country2 'PE', length 900.0 } };
INSERT Borders RELATION { TUPLE { country1 'BR', country2 'CO', length 1643.0 } };
INSERT Borders RELATION { TUPLE { country1 'BR', country2 'RA', length 1224.0 } };
INSERT Borders RELATION { TUPLE { country1 'BR', country2 'PY', length 1290.0 } };
INSERT Borders RELATION { TUPLE { country1 'BR', country2 'ROU', length 985.0 } };
INSERT Borders RELATION { TUPLE { country1 'BR', country2 'PE', length 1560.0 } };
INSERT Borders RELATION { TUPLE { country1 'BR', country2 'FGU', length 673.0 } };
INSERT Borders RELATION { TUPLE { country1 'BR', country2 'GUY', length 1119.0 } };
INSERT Borders RELATION { TUPLE { country1 'BR', country2 'SME', length 597.0 } };
INSERT Borders RELATION { TUPLE { country1 'BR', country2 'YV', length 2200.0 } };
INSERT Borders RELATION { TUPLE { country1 'PY', country2 'RA', length 1880.0 } };
INSERT Borders RELATION { TUPLE { country1 'PE', country2 'RCH', length 160.0 } };
INSERT Borders RELATION { TUPLE { country1 'FGU', country2 'SME', length 510.0 } };
INSERT Borders RELATION { TUPLE { country1 'GUY', country2 'SME', length 600.0 } };
INSERT Borders RELATION { TUPLE { country1 'GUY', country2 'YV', length 743.0 } };
INSERT Borders RELATION { TUPLE { country1 'EC', country2 'PE', length 1420.0 } };
INSERT Borders RELATION { TUPLE { country1 'DZ', country2 'LAR', length 982.0 } };
INSERT Borders RELATION { TUPLE { country1 'DZ', country2 'RMM', length 1376.0 } };
INSERT Borders RELATION { TUPLE { country1 'DZ', country2 'RIM', length 463.0 } };
INSERT Borders RELATION { TUPLE { country1 'DZ', country2 'MA', length 1559.0 } };
INSERT Borders RELATION { TUPLE { country1 'DZ', country2 'RN', length 956.0 } };
INSERT Borders RELATION { TUPLE { country1 'DZ', country2 'TN', length 965.0 } };
INSERT Borders RELATION { TUPLE { country1 'DZ', country2 'WSA', length 42.0 } };
INSERT Borders RELATION { TUPLE { country1 'LAR', country2 'RN', length 354.0 } };
INSERT Borders RELATION { TUPLE { country1 'LAR', country2 'TN', length 459.0 } };
INSERT Borders RELATION { TUPLE { country1 'LAR', country2 'TCH', length 1055.0 } };
INSERT Borders RELATION { TUPLE { country1 'LAR', country2 'SUD', length 383.0 } };
INSERT Borders RELATION { TUPLE { country1 'RMM', country2 'RN', length 821.0 } };
INSERT Borders RELATION { TUPLE { country1 'RMM', country2 'SN', length 419.0 } };
INSERT Borders RELATION { TUPLE { country1 'RIM', country2 'RMM', length 2237.0 } };
INSERT Borders RELATION { TUPLE { country1 'RIM', country2 'WSA', length 1561.0 } };
INSERT Borders RELATION { TUPLE { country1 'RIM', country2 'SN', length 813.0 } };
INSERT Borders RELATION { TUPLE { country1 'MA', country2 'WSA', length 443.0 } };
INSERT Borders RELATION { TUPLE { country1 'RN', country2 'WAN', length 1497.0 } };
INSERT Borders RELATION { TUPLE { country1 'RN', country2 'TCH', length 1175.0 } };
INSERT Borders RELATION { TUPLE { country1 'ANG', country2 'RCB', length 201.0 } };
INSERT Borders RELATION { TUPLE { country1 'ANG', country2 'NAM', length 1376.0 } };
INSERT Borders RELATION { TUPLE { country1 'ANG', country2 'ZRE', length 2511.0 } };
INSERT Borders RELATION { TUPLE { country1 'ANG', country2 'Z', length 1110.0 } };
INSERT Borders RELATION { TUPLE { country1 'RCB', country2 'ZRE', length 2410.0 } };
INSERT Borders RELATION { TUPLE { country1 'NAM', country2 'Z', length 233.0 } };
INSERT Borders RELATION { TUPLE { country1 'NAM', country2 'RB', length 1360.0 } };
INSERT Borders RELATION { TUPLE { country1 'NAM', country2 'RSA', length 855.0 } };
INSERT Borders RELATION { TUPLE { country1 'Z', country2 'ZRE', length 1930.0 } };
INSERT Borders RELATION { TUPLE { country1 'Z', country2 'ZW', length 797.0 } };
INSERT Borders RELATION { TUPLE { country1 'BEN', country2 'RN', length 266.0 } };
INSERT Borders RELATION { TUPLE { country1 'BEN', country2 'BF', length 306.0 } };
INSERT Borders RELATION { TUPLE { country1 'BEN', country2 'WAN', length 773.0 } };
INSERT Borders RELATION { TUPLE { country1 'BEN', country2 'RT', length 644.0 } };
INSERT Borders RELATION { TUPLE { country1 'BF', country2 'RMM', length 1000.0 } };
INSERT Borders RELATION { TUPLE { country1 'BF', country2 'RN', length 628.0 } };
INSERT Borders RELATION { TUPLE { country1 'BF', country2 'RT', length 126.0 } };
INSERT Borders RELATION { TUPLE { country1 'BF', country2 'CI', length 584.0 } };
INSERT Borders RELATION { TUPLE { country1 'BF', country2 'GH', length 548.0 } };
INSERT Borders RELATION { TUPLE { country1 'RB', country2 'RSA', length 1840.0 } };
INSERT Borders RELATION { TUPLE { country1 'RB', country2 'ZW', length 813.0 } };
INSERT Borders RELATION { TUPLE { country1 'RSA', country2 'ZW', length 225.0 } };
INSERT Borders RELATION { TUPLE { country1 'RSA', country2 'SD', length 430.0 } };
INSERT Borders RELATION { TUPLE { country1 'CI', country2 'RMM', length 532.0 } };
INSERT Borders RELATION { TUPLE { country1 'CI', country2 'GH', length 668.0 } };
INSERT Borders RELATION { TUPLE { country1 'CI', country2 'RG', length 610.0 } };
INSERT Borders RELATION { TUPLE { country1 'CI', country2 'LB', length 716.0 } };
INSERT Borders RELATION { TUPLE { country1 'GH', country2 'RT', length 877.0 } };
INSERT Borders RELATION { TUPLE { country1 'BI', country2 'ZRE', length 233.0 } };
INSERT Borders RELATION { TUPLE { country1 'BI', country2 'RWA', length 290.0 } };
INSERT Borders RELATION { TUPLE { country1 'BI', country2 'EAT', length 451.0 } };
INSERT Borders RELATION { TUPLE { country1 'RWA', country2 'ZRE', length 217.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAT', country2 'ZRE', length 459.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAT', country2 'Z', length 338.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAT', country2 'RWA', length 217.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAT', country2 'EAU', length 396.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAT', country2 'MW', length 475.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAT', country2 'MOC', length 756.0 } };
INSERT Borders RELATION { TUPLE { country1 'CAM', country2 'RCB', length 523.0 } };
INSERT Borders RELATION { TUPLE { country1 'CAM', country2 'WAN', length 1690.0 } };
INSERT Borders RELATION { TUPLE { country1 'CAM', country2 'RCA', length 797.0 } };
INSERT Borders RELATION { TUPLE { country1 'CAM', country2 'TCH', length 1094.0 } };
INSERT Borders RELATION { TUPLE { country1 'CAM', country2 'GQ', length 189.0 } };
INSERT Borders RELATION { TUPLE { country1 'CAM', country2 'G', length 298.0 } };
INSERT Borders RELATION { TUPLE { country1 'RCA', country2 'RCB', length 467.0 } };
INSERT Borders RELATION { TUPLE { country1 'RCA', country2 'ZRE', length 1577.0 } };
INSERT Borders RELATION { TUPLE { country1 'RCA', country2 'TCH', length 1197.0 } };
INSERT Borders RELATION { TUPLE { country1 'RCA', country2 'SUD', length 1165.0 } };
INSERT Borders RELATION { TUPLE { country1 'TCH', country2 'WAN', length 87.0 } };
INSERT Borders RELATION { TUPLE { country1 'G', country2 'RCB', length 1903.0 } };
INSERT Borders RELATION { TUPLE { country1 'G', country2 'GQ', length 350.0 } };
INSERT Borders RELATION { TUPLE { country1 'SUD', country2 'ZRE', length 628.0 } };
INSERT Borders RELATION { TUPLE { country1 'SUD', country2 'TCH', length 1360.0 } };
INSERT Borders RELATION { TUPLE { country1 'RG', country2 'RMM', length 858.0 } };
INSERT Borders RELATION { TUPLE { country1 'RG', country2 'SN', length 330.0 } };
INSERT Borders RELATION { TUPLE { country1 'RG', country2 'WAL', length 652.0 } };
INSERT Borders RELATION { TUPLE { country1 'LB', country2 'RG', length 563.0 } };
INSERT Borders RELATION { TUPLE { country1 'LB', country2 'WAL', length 306.0 } };
INSERT Borders RELATION { TUPLE { country1 'DJI', country2 'ER', length 113.0 } };
INSERT Borders RELATION { TUPLE { country1 'DJI', country2 'ETH', length 337.0 } };
INSERT Borders RELATION { TUPLE { country1 'DJI', country2 'SP', length 58.0 } };
INSERT Borders RELATION { TUPLE { country1 'ER', country2 'SUD', length 605.0 } };
INSERT Borders RELATION { TUPLE { country1 'ER', country2 'ETH', length 912.0 } };
INSERT Borders RELATION { TUPLE { country1 'ETH', country2 'SUD', length 1606.0 } };
INSERT Borders RELATION { TUPLE { country1 'ETH', country2 'SP', length 1626.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAK', country2 'EAT', length 769.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAK', country2 'SUD', length 232.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAK', country2 'ETH', length 830.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAK', country2 'SP', length 682.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAK', country2 'EAU', length 933.0 } };
INSERT Borders RELATION { TUPLE { country1 'SN', country2 'WAG', length 740.0 } };
INSERT Borders RELATION { TUPLE { country1 'GNB', country2 'RG', length 386.0 } };
INSERT Borders RELATION { TUPLE { country1 'GNB', country2 'SN', length 338.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAU', country2 'ZRE', length 765.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAU', country2 'RWA', length 169.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAU', country2 'SUD', length 435.0 } };
INSERT Borders RELATION { TUPLE { country1 'LS', country2 'RSA', length 909.0 } };
INSERT Borders RELATION { TUPLE { country1 'MW', country2 'Z', length 837.0 } };
INSERT Borders RELATION { TUPLE { country1 'MOC', country2 'Z', length 419.0 } };
INSERT Borders RELATION { TUPLE { country1 'MOC', country2 'RSA', length 491.0 } };
INSERT Borders RELATION { TUPLE { country1 'MOC', country2 'ZW', length 1231.0 } };
INSERT Borders RELATION { TUPLE { country1 'MOC', country2 'MW', length 1569.0 } };
INSERT Borders RELATION { TUPLE { country1 'MOC', country2 'SD', length 105.0 } };
INSERT Borders RELATION { TUPLE { country1 'GR', country2 'AL', length 282.0 } };
INSERT Borders RELATION { TUPLE { country1 'MK', country2 'AL', length 151.0 } };
INSERT Borders RELATION { TUPLE { country1 'MNE', country2 'AL', length 172.0 } };
INSERT Borders RELATION { TUPLE { country1 'KOS', country2 'AL', length 112.0 } };
INSERT Borders RELATION { TUPLE { country1 'MK', country2 'GR', length 228.0 } };
INSERT Borders RELATION { TUPLE { country1 'TR', country2 'GR', length 206.0 } };
INSERT Borders RELATION { TUPLE { country1 'SRB', country2 'MK', length 62.0 } };
INSERT Borders RELATION { TUPLE { country1 'SRB', country2 'MNE', length 124.0 } };
INSERT Borders RELATION { TUPLE { country1 'MNE', country2 'KOS', length 79.0 } };
INSERT Borders RELATION { TUPLE { country1 'SRB', country2 'KOS', length 352.0 } };
INSERT Borders RELATION { TUPLE { country1 'MK', country2 'KOS', length 159.0 } };
INSERT Borders RELATION { TUPLE { country1 'F', country2 'AND', length 60.0 } };
INSERT Borders RELATION { TUPLE { country1 'E', country2 'AND', length 65.0 } };
INSERT Borders RELATION { TUPLE { country1 'I', country2 'F', length 488.0 } };
INSERT Borders RELATION { TUPLE { country1 'L', country2 'F', length 73.0 } };
INSERT Borders RELATION { TUPLE { country1 'MC', country2 'F', length 4.4 } };
INSERT Borders RELATION { TUPLE { country1 'F', country2 'E', length 623.0 } };
INSERT Borders RELATION { TUPLE { country1 'GBZ', country2 'E', length 1.2 } };
INSERT Borders RELATION { TUPLE { country1 'P', country2 'E', length 1214.0 } };
INSERT Borders RELATION { TUPLE { country1 'CZ', country2 'A', length 362.0 } };
INSERT Borders RELATION { TUPLE { country1 'D', country2 'A', length 784.0 } };
INSERT Borders RELATION { TUPLE { country1 'H', country2 'A', length 366.0 } };
INSERT Borders RELATION { TUPLE { country1 'I', country2 'A', length 430.0 } };
INSERT Borders RELATION { TUPLE { country1 'FL', country2 'A', length 37.0 } };
INSERT Borders RELATION { TUPLE { country1 'SK', country2 'A', length 91.0 } };
INSERT Borders RELATION { TUPLE { country1 'SLO', country2 'A', length 324.0 } };
INSERT Borders RELATION { TUPLE { country1 'CH', country2 'A', length 164.0 } };
INSERT Borders RELATION { TUPLE { country1 'D', country2 'CZ', length 646.0 } };
INSERT Borders RELATION { TUPLE { country1 'SK', country2 'CZ', length 215.0 } };
INSERT Borders RELATION { TUPLE { country1 'PL', country2 'CZ', length 658.0 } };
INSERT Borders RELATION { TUPLE { country1 'F', country2 'D', length 451.0 } };
INSERT Borders RELATION { TUPLE { country1 'PL', country2 'D', length 456.0 } };
INSERT Borders RELATION { TUPLE { country1 'L', country2 'D', length 138.0 } };
INSERT Borders RELATION { TUPLE { country1 'NL', country2 'D', length 577.0 } };
INSERT Borders RELATION { TUPLE { country1 'DK', country2 'D', length 68.0 } };
INSERT Borders RELATION { TUPLE { country1 'SRB', country2 'H', length 151.0 } };
INSERT Borders RELATION { TUPLE { country1 'SK', country2 'H', length 515.0 } };
INSERT Borders RELATION { TUPLE { country1 'SLO', country2 'H', length 102.0 } };
INSERT Borders RELATION { TUPLE { country1 'UA', country2 'H', length 103.0 } };
INSERT Borders RELATION { TUPLE { country1 'HR', country2 'H', length 329.0 } };
INSERT Borders RELATION { TUPLE { country1 'RO', country2 'H', length 443.0 } };
INSERT Borders RELATION { TUPLE { country1 'SLO', country2 'I', length 235.0 } };
INSERT Borders RELATION { TUPLE { country1 'V', country2 'I', length 3.2 } };
INSERT Borders RELATION { TUPLE { country1 'RSM', country2 'I', length 39.0 } };
INSERT Borders RELATION { TUPLE { country1 'UA', country2 'SK', length 90.0 } };
INSERT Borders RELATION { TUPLE { country1 'F', country2 'CH', length 573.0 } };
INSERT Borders RELATION { TUPLE { country1 'D', country2 'CH', length 334.0 } };
INSERT Borders RELATION { TUPLE { country1 'I', country2 'CH', length 740.0 } };
INSERT Borders RELATION { TUPLE { country1 'FL', country2 'CH', length 41.0 } };
INSERT Borders RELATION { TUPLE { country1 'LV', country2 'BY', length 141.0 } };
INSERT Borders RELATION { TUPLE { country1 'LT', country2 'BY', length 502.0 } };
INSERT Borders RELATION { TUPLE { country1 'PL', country2 'BY', length 605.0 } };
INSERT Borders RELATION { TUPLE { country1 'UA', country2 'BY', length 891.0 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'BY', length 959.0 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'LV', length 217.0 } };
INSERT Borders RELATION { TUPLE { country1 'LV', country2 'LT', length 453.0 } };
INSERT Borders RELATION { TUPLE { country1 'PL', country2 'LT', length 91.0 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'LT', length 227.0 } };
INSERT Borders RELATION { TUPLE { country1 'SK', country2 'PL', length 444.0 } };
INSERT Borders RELATION { TUPLE { country1 'UA', country2 'PL', length 428.0 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'PL', length 206.0 } };
INSERT Borders RELATION { TUPLE { country1 'UA', country2 'R', length 1576.0 } };
INSERT Borders RELATION { TUPLE { country1 'SF', country2 'R', length 1313.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'R', length 3645.0 } };
INSERT Borders RELATION { TUPLE { country1 'F', country2 'B', length 620.0 } };
INSERT Borders RELATION { TUPLE { country1 'D', country2 'B', length 167.0 } };
INSERT Borders RELATION { TUPLE { country1 'L', country2 'B', length 148.0 } };
INSERT Borders RELATION { TUPLE { country1 'NL', country2 'B', length 450.0 } };
INSERT Borders RELATION { TUPLE { country1 'SRB', country2 'BIH', length 302.0 } };
INSERT Borders RELATION { TUPLE { country1 'KOS', country2 'BIH', length 225.0 } };
INSERT Borders RELATION { TUPLE { country1 'HR', country2 'BIH', length 932.0 } };
INSERT Borders RELATION { TUPLE { country1 'SRB', country2 'HR', length 241.0 } };
INSERT Borders RELATION { TUPLE { country1 'MNE', country2 'HR', length 25.0 } };
INSERT Borders RELATION { TUPLE { country1 'SLO', country2 'HR', length 546.0 } };
INSERT Borders RELATION { TUPLE { country1 'GR', country2 'BG', length 494.0 } };
INSERT Borders RELATION { TUPLE { country1 'MK', country2 'BG', length 148.0 } };
INSERT Borders RELATION { TUPLE { country1 'SRB', country2 'BG', length 318.0 } };
INSERT Borders RELATION { TUPLE { country1 'RO', country2 'BG', length 608.0 } };
INSERT Borders RELATION { TUPLE { country1 'TR', country2 'BG', length 240.0 } };
INSERT Borders RELATION { TUPLE { country1 'SRB', country2 'RO', length 476.0 } };
INSERT Borders RELATION { TUPLE { country1 'UA', country2 'RO', length 531.0 } };
INSERT Borders RELATION { TUPLE { country1 'LV', country2 'EW', length 267.0 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'EW', length 290.0 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'N', length 167.0 } };
INSERT Borders RELATION { TUPLE { country1 'SF', country2 'N', length 729.0 } };
INSERT Borders RELATION { TUPLE { country1 'S', country2 'N', length 1619.0 } };
INSERT Borders RELATION { TUPLE { country1 'SF', country2 'S', length 586.0 } };
INSERT Borders RELATION { TUPLE { country1 'UA', country2 'MD', length 939.0 } };
INSERT Borders RELATION { TUPLE { country1 'RO', country2 'MD', length 450.0 } };
INSERT Borders RELATION { TUPLE { country1 'IRL', country2 'GB', length 360.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'AFG', length 76.0 } };
INSERT Borders RELATION { TUPLE { country1 'IR', country2 'AFG', length 936.0 } };
INSERT Borders RELATION { TUPLE { country1 'PK', country2 'AFG', length 2430.0 } };
INSERT Borders RELATION { TUPLE { country1 'TAD', country2 'AFG', length 1206.0 } };
INSERT Borders RELATION { TUPLE { country1 'TM', country2 'AFG', length 744.0 } };
INSERT Borders RELATION { TUPLE { country1 'UZB', country2 'AFG', length 137.0 } };
INSERT Borders RELATION { TUPLE { country1 'VN', country2 'TJ', length 1281.0 } };
INSERT Borders RELATION { TUPLE { country1 'TR', country2 'IR', length 499.0 } };
INSERT Borders RELATION { TUPLE { country1 'PK', country2 'IR', length 909.0 } };
INSERT Borders RELATION { TUPLE { country1 'TM', country2 'IR', length 992.0 } };
INSERT Borders RELATION { TUPLE { country1 'IRQ', country2 'IR', length 1458.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'PK', length 523.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'TAD', length 414.0 } };
INSERT Borders RELATION { TUPLE { country1 'UZB', country2 'TAD', length 1161.0 } };
INSERT Borders RELATION { TUPLE { country1 'UZB', country2 'TM', length 1621.0 } };
INSERT Borders RELATION { TUPLE { country1 'TR', country2 'ARM', length 268.0 } };
INSERT Borders RELATION { TUPLE { country1 'IR', country2 'ARM', length 35.0 } };
INSERT Borders RELATION { TUPLE { country1 'GE', country2 'ARM', length 164.0 } };
INSERT Borders RELATION { TUPLE { country1 'AZ', country2 'ARM', length 787.0 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'GE', length 723.0 } };
INSERT Borders RELATION { TUPLE { country1 'TR', country2 'GE', length 252.0 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'AZ', length 284.0 } };
INSERT Borders RELATION { TUPLE { country1 'TR', country2 'AZ', length 9.0 } };
INSERT Borders RELATION { TUPLE { country1 'IR', country2 'AZ', length 611.0 } };
INSERT Borders RELATION { TUPLE { country1 'GE', country2 'AZ', length 322.0 } };
INSERT Borders RELATION { TUPLE { country1 'MYA', country2 'BD', length 193.0 } };
INSERT Borders RELATION { TUPLE { country1 'IND', country2 'BD', length 4053.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'MYA', length 2185.0 } };
INSERT Borders RELATION { TUPLE { country1 'THA', country2 'MYA', length 1800.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'IND', length 3380.0 } };
INSERT Borders RELATION { TUPLE { country1 'PK', country2 'IND', length 2912.0 } };
INSERT Borders RELATION { TUPLE { country1 'MYA', country2 'IND', length 1463.0 } };
INSERT Borders RELATION { TUPLE { country1 'NEP', country2 'IND', length 1690.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'BHT', length 470.0 } };
INSERT Borders RELATION { TUPLE { country1 'IND', country2 'BHT', length 605.0 } };
INSERT Borders RELATION { TUPLE { country1 'MAL', country2 'BRU', length 381.0 } };
INSERT Borders RELATION { TUPLE { country1 'THA', country2 'MAL', length 506.0 } };
INSERT Borders RELATION { TUPLE { country1 'RI', country2 'MAL', length 1782.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'LAO', length 423.0 } };
INSERT Borders RELATION { TUPLE { country1 'MYA', country2 'LAO', length 235.0 } };
INSERT Borders RELATION { TUPLE { country1 'THA', country2 'LAO', length 1754.0 } };
INSERT Borders RELATION { TUPLE { country1 'VN', country2 'LAO', length 2130.0 } };
INSERT Borders RELATION { TUPLE { country1 'LAO', country2 'K', length 541.0 } };
INSERT Borders RELATION { TUPLE { country1 'THA', country2 'K', length 803.0 } };
INSERT Borders RELATION { TUPLE { country1 'VN', country2 'K', length 1228.0 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'KAZ', length 6846.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'KAZ', length 1533.0 } };
INSERT Borders RELATION { TUPLE { country1 'TM', country2 'KAZ', length 379.0 } };
INSERT Borders RELATION { TUPLE { country1 'UZB', country2 'KAZ', length 2203.0 } };
INSERT Borders RELATION { TUPLE { country1 'KGZ', country2 'KAZ', length 1051.0 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'NOK', length 19.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'NOK', length 1416.0 } };
INSERT Borders RELATION { TUPLE { country1 'ROK', country2 'NOK', length 238.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'KGZ', length 858.0 } };
INSERT Borders RELATION { TUPLE { country1 'TAD', country2 'KGZ', length 870.0 } };
INSERT Borders RELATION { TUPLE { country1 'UZB', country2 'KGZ', length 1099.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'HONX', length 30.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'MACX', length 0.34 } };
INSERT Borders RELATION { TUPLE { country1 'R', country2 'MNG', length 3441.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'MNG', length 4673.0 } };
INSERT Borders RELATION { TUPLE { country1 'TJ', country2 'NEP', length 1236.0 } };
INSERT Borders RELATION { TUPLE { country1 'JOR', country2 'IL', length 238.0 } };
INSERT Borders RELATION { TUPLE { country1 'SYR', country2 'IL', length 76.0 } };
INSERT Borders RELATION { TUPLE { country1 'RL', country2 'IL', length 79.0 } };
INSERT Borders RELATION { TUPLE { country1 'IL', country2 'ET', length 255.0 } };
INSERT Borders RELATION { TUPLE { country1 'LAR', country2 'ET', length 1150.0 } };
INSERT Borders RELATION { TUPLE { country1 'SUD', country2 'ET', length 1273.0 } };
INSERT Borders RELATION { TUPLE { country1 'TL', country2 'RI', length 228.0 } };
INSERT Borders RELATION { TUPLE { country1 'RI', country2 'PNG', length 820.0 } };
INSERT Borders RELATION { TUPLE { country1 'TR', country2 'IRQ', length 331.0 } };
INSERT Borders RELATION { TUPLE { country1 'JOR', country2 'IRQ', length 181.0 } };
INSERT Borders RELATION { TUPLE { country1 'KWT', country2 'IRQ', length 242.0 } };
INSERT Borders RELATION { TUPLE { country1 'SA', country2 'IRQ', length 814.0 } };
INSERT Borders RELATION { TUPLE { country1 'SYR', country2 'IRQ', length 605.0 } };
INSERT Borders RELATION { TUPLE { country1 'SA', country2 'JOR', length 728.0 } };
INSERT Borders RELATION { TUPLE { country1 'SYR', country2 'JOR', length 375.0 } };
INSERT Borders RELATION { TUPLE { country1 'SA', country2 'KWT', length 222.0 } };
INSERT Borders RELATION { TUPLE { country1 'UAE', country2 'SA', length 457.0 } };
INSERT Borders RELATION { TUPLE { country1 'YE', country2 'SA', length 1458.0 } };
INSERT Borders RELATION { TUPLE { country1 'TR', country2 'SYR', length 822.0 } };
INSERT Borders RELATION { TUPLE { country1 'SYR', country2 'RL', length 375.0 } };
INSERT Borders RELATION { TUPLE { country1 'SA', country2 'OM', length 676.0 } };
INSERT Borders RELATION { TUPLE { country1 'UAE', country2 'OM', length 410.0 } };
INSERT Borders RELATION { TUPLE { country1 'YE', country2 'OM', length 288.0 } };
INSERT Borders RELATION { TUPLE { country1 'SA', country2 'Q', length 60.0 } };
INSERT Borders RELATION { TUPLE { country1 'GCA', country2 'BZ', length 266.0 } };
INSERT Borders RELATION { TUPLE { country1 'MEX', country2 'BZ', length 250.0 } };
INSERT Borders RELATION { TUPLE { country1 'MEX', country2 'GCA', length 962.0 } };
INSERT Borders RELATION { TUPLE { country1 'HCA', country2 'GCA', length 256.0 } };
INSERT Borders RELATION { TUPLE { country1 'USA', country2 'MEX', length 3326.0 } };
INSERT Borders RELATION { TUPLE { country1 'USA', country2 'CDN', length 8893.0 } };
INSERT Borders RELATION { TUPLE { country1 'NIC', country2 'CR', length 309.0 } };
INSERT Borders RELATION { TUPLE { country1 'PA', country2 'CR', length 330.0 } };
INSERT Borders RELATION { TUPLE { country1 'RH', country2 'DOM', length 275.0 } };
INSERT Borders RELATION { TUPLE { country1 'GCA', country2 'ES', length 203.0 } };
INSERT Borders RELATION { TUPLE { country1 'HCA', country2 'ES', length 342.0 } };
INSERT Borders RELATION { TUPLE { country1 'NIC', country2 'HCA', length 922.0 } };
INSERT Borders RELATION { TUPLE { country1 'SMAR', country2 'NA', length 15.0 } };
INSERT Borders RELATION { TUPLE { country1 'PA', country2 'CO', length 225.0 } };
INSERT Borders RELATION { TUPLE { country1 'PE', country2 'CO', length 2900.0 } };
INSERT Borders RELATION { TUPLE { country1 'YV', country2 'CO', length 2050.0 } };
INSERT Borders RELATION { TUPLE { country1 'EC', country2 'CO', length 590.0 } };
INSERT Borders RELATION { TUPLE { country1 'RCH', country2 'RA', length 5150.0 } };
INSERT Borders RELATION { TUPLE { country1 'ROU', country2 'RA', length 579.0 } };
INSERT Borders RELATION { TUPLE { country1 'RA', country2 'BOL', length 832.0 } };
INSERT Borders RELATION { TUPLE { country1 'BR', country2 'BOL', length 3400.0 } };
INSERT Borders RELATION { TUPLE { country1 'RCH', country2 'BOL', length 861.0 } };
INSERT Borders RELATION { TUPLE { country1 'PY', country2 'BOL', length 750.0 } };
INSERT Borders RELATION { TUPLE { country1 'PE', country2 'BOL', length 900.0 } };
INSERT Borders RELATION { TUPLE { country1 'CO', country2 'BR', length 1643.0 } };
INSERT Borders RELATION { TUPLE { country1 'RA', country2 'BR', length 1224.0 } };
INSERT Borders RELATION { TUPLE { country1 'PY', country2 'BR', length 1290.0 } };
INSERT Borders RELATION { TUPLE { country1 'ROU', country2 'BR', length 985.0 } };
INSERT Borders RELATION { TUPLE { country1 'PE', country2 'BR', length 1560.0 } };
INSERT Borders RELATION { TUPLE { country1 'FGU', country2 'BR', length 673.0 } };
INSERT Borders RELATION { TUPLE { country1 'GUY', country2 'BR', length 1119.0 } };
INSERT Borders RELATION { TUPLE { country1 'SME', country2 'BR', length 597.0 } };
INSERT Borders RELATION { TUPLE { country1 'YV', country2 'BR', length 2200.0 } };
INSERT Borders RELATION { TUPLE { country1 'RA', country2 'PY', length 1880.0 } };
INSERT Borders RELATION { TUPLE { country1 'RCH', country2 'PE', length 160.0 } };
INSERT Borders RELATION { TUPLE { country1 'SME', country2 'FGU', length 510.0 } };
INSERT Borders RELATION { TUPLE { country1 'SME', country2 'GUY', length 600.0 } };
INSERT Borders RELATION { TUPLE { country1 'YV', country2 'GUY', length 743.0 } };
INSERT Borders RELATION { TUPLE { country1 'PE', country2 'EC', length 1420.0 } };
INSERT Borders RELATION { TUPLE { country1 'LAR', country2 'DZ', length 982.0 } };
INSERT Borders RELATION { TUPLE { country1 'RMM', country2 'DZ', length 1376.0 } };
INSERT Borders RELATION { TUPLE { country1 'RIM', country2 'DZ', length 463.0 } };
INSERT Borders RELATION { TUPLE { country1 'MA', country2 'DZ', length 1559.0 } };
INSERT Borders RELATION { TUPLE { country1 'RN', country2 'DZ', length 956.0 } };
INSERT Borders RELATION { TUPLE { country1 'TN', country2 'DZ', length 965.0 } };
INSERT Borders RELATION { TUPLE { country1 'WSA', country2 'DZ', length 42.0 } };
INSERT Borders RELATION { TUPLE { country1 'RN', country2 'LAR', length 354.0 } };
INSERT Borders RELATION { TUPLE { country1 'TN', country2 'LAR', length 459.0 } };
INSERT Borders RELATION { TUPLE { country1 'TCH', country2 'LAR', length 1055.0 } };
INSERT Borders RELATION { TUPLE { country1 'SUD', country2 'LAR', length 383.0 } };
INSERT Borders RELATION { TUPLE { country1 'RN', country2 'RMM', length 821.0 } };
INSERT Borders RELATION { TUPLE { country1 'SN', country2 'RMM', length 419.0 } };
INSERT Borders RELATION { TUPLE { country1 'RMM', country2 'RIM', length 2237.0 } };
INSERT Borders RELATION { TUPLE { country1 'WSA', country2 'RIM', length 1561.0 } };
INSERT Borders RELATION { TUPLE { country1 'SN', country2 'RIM', length 813.0 } };
INSERT Borders RELATION { TUPLE { country1 'WSA', country2 'MA', length 443.0 } };
INSERT Borders RELATION { TUPLE { country1 'WAN', country2 'RN', length 1497.0 } };
INSERT Borders RELATION { TUPLE { country1 'TCH', country2 'RN', length 1175.0 } };
INSERT Borders RELATION { TUPLE { country1 'RCB', country2 'ANG', length 201.0 } };
INSERT Borders RELATION { TUPLE { country1 'NAM', country2 'ANG', length 1376.0 } };
INSERT Borders RELATION { TUPLE { country1 'ZRE', country2 'ANG', length 2511.0 } };
INSERT Borders RELATION { TUPLE { country1 'Z', country2 'ANG', length 1110.0 } };
INSERT Borders RELATION { TUPLE { country1 'ZRE', country2 'RCB', length 2410.0 } };
INSERT Borders RELATION { TUPLE { country1 'Z', country2 'NAM', length 233.0 } };
INSERT Borders RELATION { TUPLE { country1 'RB', country2 'NAM', length 1360.0 } };
INSERT Borders RELATION { TUPLE { country1 'RSA', country2 'NAM', length 855.0 } };
INSERT Borders RELATION { TUPLE { country1 'ZRE', country2 'Z', length 1930.0 } };
INSERT Borders RELATION { TUPLE { country1 'ZW', country2 'Z', length 797.0 } };
INSERT Borders RELATION { TUPLE { country1 'RN', country2 'BEN', length 266.0 } };
INSERT Borders RELATION { TUPLE { country1 'BF', country2 'BEN', length 306.0 } };
INSERT Borders RELATION { TUPLE { country1 'WAN', country2 'BEN', length 773.0 } };
INSERT Borders RELATION { TUPLE { country1 'RT', country2 'BEN', length 644.0 } };
INSERT Borders RELATION { TUPLE { country1 'RMM', country2 'BF', length 1000.0 } };
INSERT Borders RELATION { TUPLE { country1 'RN', country2 'BF', length 628.0 } };
INSERT Borders RELATION { TUPLE { country1 'RT', country2 'BF', length 126.0 } };
INSERT Borders RELATION { TUPLE { country1 'CI', country2 'BF', length 584.0 } };
INSERT Borders RELATION { TUPLE { country1 'GH', country2 'BF', length 548.0 } };
INSERT Borders RELATION { TUPLE { country1 'RSA', country2 'RB', length 1840.0 } };
INSERT Borders RELATION { TUPLE { country1 'ZW', country2 'RB', length 813.0 } };
INSERT Borders RELATION { TUPLE { country1 'ZW', country2 'RSA', length 225.0 } };
INSERT Borders RELATION { TUPLE { country1 'SD', country2 'RSA', length 430.0 } };
INSERT Borders RELATION { TUPLE { country1 'RMM', country2 'CI', length 532.0 } };
INSERT Borders RELATION { TUPLE { country1 'GH', country2 'CI', length 668.0 } };
INSERT Borders RELATION { TUPLE { country1 'RG', country2 'CI', length 610.0 } };
INSERT Borders RELATION { TUPLE { country1 'LB', country2 'CI', length 716.0 } };
INSERT Borders RELATION { TUPLE { country1 'RT', country2 'GH', length 877.0 } };
INSERT Borders RELATION { TUPLE { country1 'ZRE', country2 'BI', length 233.0 } };
INSERT Borders RELATION { TUPLE { country1 'RWA', country2 'BI', length 290.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAT', country2 'BI', length 451.0 } };
INSERT Borders RELATION { TUPLE { country1 'ZRE', country2 'RWA', length 217.0 } };
INSERT Borders RELATION { TUPLE { country1 'ZRE', country2 'EAT', length 459.0 } };
INSERT Borders RELATION { TUPLE { country1 'Z', country2 'EAT', length 338.0 } };
INSERT Borders RELATION { TUPLE { country1 'RWA', country2 'EAT', length 217.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAU', country2 'EAT', length 396.0 } };
INSERT Borders RELATION { TUPLE { country1 'MW', country2 'EAT', length 475.0 } };
INSERT Borders RELATION { TUPLE { country1 'MOC', country2 'EAT', length 756.0 } };
INSERT Borders RELATION { TUPLE { country1 'RCB', country2 'CAM', length 523.0 } };
INSERT Borders RELATION { TUPLE { country1 'WAN', country2 'CAM', length 1690.0 } };
INSERT Borders RELATION { TUPLE { country1 'RCA', country2 'CAM', length 797.0 } };
INSERT Borders RELATION { TUPLE { country1 'TCH', country2 'CAM', length 1094.0 } };
INSERT Borders RELATION { TUPLE { country1 'GQ', country2 'CAM', length 189.0 } };
INSERT Borders RELATION { TUPLE { country1 'G', country2 'CAM', length 298.0 } };
INSERT Borders RELATION { TUPLE { country1 'RCB', country2 'RCA', length 467.0 } };
INSERT Borders RELATION { TUPLE { country1 'ZRE', country2 'RCA', length 1577.0 } };
INSERT Borders RELATION { TUPLE { country1 'TCH', country2 'RCA', length 1197.0 } };
INSERT Borders RELATION { TUPLE { country1 'SUD', country2 'RCA', length 1165.0 } };
INSERT Borders RELATION { TUPLE { country1 'WAN', country2 'TCH', length 87.0 } };
INSERT Borders RELATION { TUPLE { country1 'RCB', country2 'G', length 1903.0 } };
INSERT Borders RELATION { TUPLE { country1 'GQ', country2 'G', length 350.0 } };
INSERT Borders RELATION { TUPLE { country1 'ZRE', country2 'SUD', length 628.0 } };
INSERT Borders RELATION { TUPLE { country1 'TCH', country2 'SUD', length 1360.0 } };
INSERT Borders RELATION { TUPLE { country1 'RMM', country2 'RG', length 858.0 } };
INSERT Borders RELATION { TUPLE { country1 'SN', country2 'RG', length 330.0 } };
INSERT Borders RELATION { TUPLE { country1 'WAL', country2 'RG', length 652.0 } };
INSERT Borders RELATION { TUPLE { country1 'RG', country2 'LB', length 563.0 } };
INSERT Borders RELATION { TUPLE { country1 'WAL', country2 'LB', length 306.0 } };
INSERT Borders RELATION { TUPLE { country1 'ER', country2 'DJI', length 113.0 } };
INSERT Borders RELATION { TUPLE { country1 'ETH', country2 'DJI', length 337.0 } };
INSERT Borders RELATION { TUPLE { country1 'SP', country2 'DJI', length 58.0 } };
INSERT Borders RELATION { TUPLE { country1 'SUD', country2 'ER', length 605.0 } };
INSERT Borders RELATION { TUPLE { country1 'ETH', country2 'ER', length 912.0 } };
INSERT Borders RELATION { TUPLE { country1 'SUD', country2 'ETH', length 1606.0 } };
INSERT Borders RELATION { TUPLE { country1 'SP', country2 'ETH', length 1626.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAT', country2 'EAK', length 769.0 } };
INSERT Borders RELATION { TUPLE { country1 'SUD', country2 'EAK', length 232.0 } };
INSERT Borders RELATION { TUPLE { country1 'ETH', country2 'EAK', length 830.0 } };
INSERT Borders RELATION { TUPLE { country1 'SP', country2 'EAK', length 682.0 } };
INSERT Borders RELATION { TUPLE { country1 'EAU', country2 'EAK', length 933.0 } };
INSERT Borders RELATION { TUPLE { country1 'WAG', country2 'SN', length 740.0 } };
INSERT Borders RELATION { TUPLE { country1 'RG', country2 'GNB', length 386.0 } };
INSERT Borders RELATION { TUPLE { country1 'SN', country2 'GNB', length 338.0 } };
INSERT Borders RELATION { TUPLE { country1 'ZRE', country2 'EAU', length 765.0 } };
INSERT Borders RELATION { TUPLE { country1 'RWA', country2 'EAU', length 169.0 } };
INSERT Borders RELATION { TUPLE { country1 'SUD', country2 'EAU', length 435.0 } };
INSERT Borders RELATION { TUPLE { country1 'RSA', country2 'LS', length 909.0 } };
INSERT Borders RELATION { TUPLE { country1 'Z', country2 'MW', length 837.0 } };
INSERT Borders RELATION { TUPLE { country1 'Z', country2 'MOC', length 419.0 } };
INSERT Borders RELATION { TUPLE { country1 'RSA', country2 'MOC', length 491.0 } };
INSERT Borders RELATION { TUPLE { country1 'ZW', country2 'MOC', length 1231.0 } };
INSERT Borders RELATION { TUPLE { country1 'MW', country2 'MOC', length 1569.0 } };
INSERT Borders RELATION { TUPLE { country1 'SD', country2 'MOC', length 105.0 } };
/* INSERT : Language */
INSERT Language RELATION { TUPLE { country 'MK', name 'Albanian', percentage 21.0 } };
INSERT Language RELATION { TUPLE { country 'MK', name 'Macedonian', percentage 70.0 } };
INSERT Language RELATION { TUPLE { country 'MK', name 'Turkish', percentage 3.0 } };
INSERT Language RELATION { TUPLE { country 'MK', name 'Serbian', percentage 3.0 } };
INSERT Language RELATION { TUPLE { country 'SRB', name 'Serbian', percentage 88.3 } };
INSERT Language RELATION { TUPLE { country 'SRB', name 'Hungarian', percentage 3.8 } };
INSERT Language RELATION { TUPLE { country 'SRB', name 'Bosnian', percentage 1.8 } };
INSERT Language RELATION { TUPLE { country 'SRB', name 'Roma', percentage 1.1 } };
INSERT Language RELATION { TUPLE { country 'MNE', name 'Serbian', percentage 63.6 } };
INSERT Language RELATION { TUPLE { country 'MNE', name 'Montenegrin', percentage 22.0 } };
INSERT Language RELATION { TUPLE { country 'MNE', name 'Bosnian', percentage 5.5 } };
INSERT Language RELATION { TUPLE { country 'MNE', name 'Albanian', percentage 5.3 } };
INSERT Language RELATION { TUPLE { country 'F', name 'French', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'E', name 'Catalan', percentage 17.0 } };
INSERT Language RELATION { TUPLE { country 'E', name 'Galician', percentage 7.0 } };
INSERT Language RELATION { TUPLE { country 'E', name 'Basque', percentage 2.0 } };
INSERT Language RELATION { TUPLE { country 'A', name 'German', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'D', name 'German', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'H', name 'Hungarian', percentage 98.2 } };
INSERT Language RELATION { TUPLE { country 'SLO', name 'Slovenian', percentage 91.0 } };
INSERT Language RELATION { TUPLE { country 'SLO', name 'Croatian', percentage 7.0 } };
INSERT Language RELATION { TUPLE { country 'CH', name 'French', percentage 18.0 } };
INSERT Language RELATION { TUPLE { country 'CH', name 'German', percentage 65.0 } };
INSERT Language RELATION { TUPLE { country 'CH', name 'Italian', percentage 12.0 } };
INSERT Language RELATION { TUPLE { country 'CH', name 'Romansch', percentage 1.0 } };
INSERT Language RELATION { TUPLE { country 'PL', name 'Polish', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'R', name 'Russian', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'B', name 'French', percentage 32.0 } };
INSERT Language RELATION { TUPLE { country 'B', name 'German', percentage 1.0 } };
INSERT Language RELATION { TUPLE { country 'B', name 'Dutch', percentage 56.0 } };
INSERT Language RELATION { TUPLE { country 'NL', name 'Dutch', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'BIH', name 'Serbo-Croatian', percentage 99.0 } };
INSERT Language RELATION { TUPLE { country 'HR', name 'Serbo-Croatian', percentage 96.0 } };
INSERT Language RELATION { TUPLE { country 'BG', name 'Bulgarian', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'SF', name 'Swedish', percentage 6.3 } };
INSERT Language RELATION { TUPLE { country 'SF', name 'Finnish', percentage 93.5 } };
INSERT Language RELATION { TUPLE { country 'N', name 'Norwegian', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'S', name 'Swedish', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'IS', name 'Icelandic', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'RSM', name 'Italian', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'P', name 'Portuguese', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'AFG', name 'Turkic', percentage 11.0 } };
INSERT Language RELATION { TUPLE { country 'AFG', name 'Pashtu', percentage 35.0 } };
INSERT Language RELATION { TUPLE { country 'AFG', name 'Afghan Persian', percentage 50.0 } };
INSERT Language RELATION { TUPLE { country 'IR', name 'Turkish', percentage 1.0 } };
INSERT Language RELATION { TUPLE { country 'IR', name 'Kurdish', percentage 9.0 } };
INSERT Language RELATION { TUPLE { country 'IR', name 'Balochi', percentage 1.0 } };
INSERT Language RELATION { TUPLE { country 'IR', name 'Arabic', percentage 1.0 } };
INSERT Language RELATION { TUPLE { country 'IR', name 'Luri', percentage 2.0 } };
INSERT Language RELATION { TUPLE { country 'IR', name 'Persian', percentage 58.0 } };
INSERT Language RELATION { TUPLE { country 'IR', name 'Turkic', percentage 26.0 } };
INSERT Language RELATION { TUPLE { country 'PK', name 'Pashtu', percentage 8.0 } };
INSERT Language RELATION { TUPLE { country 'PK', name 'Urdu', percentage 8.0 } };
INSERT Language RELATION { TUPLE { country 'PK', name 'Punjabi', percentage 48.0 } };
INSERT Language RELATION { TUPLE { country 'PK', name 'Sindhi', percentage 12.0 } };
INSERT Language RELATION { TUPLE { country 'PK', name 'Balochi', percentage 3.0 } };
INSERT Language RELATION { TUPLE { country 'PK', name 'Hindko', percentage 2.0 } };
INSERT Language RELATION { TUPLE { country 'PK', name 'Brahui', percentage 1.0 } };
INSERT Language RELATION { TUPLE { country 'PK', name 'Siraiki', percentage 10.0 } };
INSERT Language RELATION { TUPLE { country 'TM', name 'Russian', percentage 12.0 } };
INSERT Language RELATION { TUPLE { country 'TM', name 'Uzbek', percentage 9.0 } };
INSERT Language RELATION { TUPLE { country 'TM', name 'Turkmen', percentage 72.0 } };
INSERT Language RELATION { TUPLE { country 'UZB', name 'Russian', percentage 14.2 } };
INSERT Language RELATION { TUPLE { country 'UZB', name 'Tajik', percentage 4.4 } };
INSERT Language RELATION { TUPLE { country 'UZB', name 'Uzbek', percentage 74.3 } };
INSERT Language RELATION { TUPLE { country 'ARM', name 'Russian', percentage 2.0 } };
INSERT Language RELATION { TUPLE { country 'ARM', name 'Armenian', percentage 96.0 } };
INSERT Language RELATION { TUPLE { country 'GE', name 'Russian', percentage 9.0 } };
INSERT Language RELATION { TUPLE { country 'GE', name 'Armenian', percentage 7.0 } };
INSERT Language RELATION { TUPLE { country 'GE', name 'Azeri', percentage 6.0 } };
INSERT Language RELATION { TUPLE { country 'GE', name 'Georgian', percentage 71.0 } };
INSERT Language RELATION { TUPLE { country 'AZ', name 'Russian', percentage 3.0 } };
INSERT Language RELATION { TUPLE { country 'AZ', name 'Armenian', percentage 2.0 } };
INSERT Language RELATION { TUPLE { country 'AZ', name 'Azeri', percentage 89.0 } };
INSERT Language RELATION { TUPLE { country 'MYA', name 'Burmese', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'IND', name 'Hindi', percentage 30.0 } };
INSERT Language RELATION { TUPLE { country 'KAZ', name 'Kazak', percentage 40.0 } };
INSERT Language RELATION { TUPLE { country 'NOK', name 'Korean', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'HONX', name 'Chinese', percentage 95.6 } };
INSERT Language RELATION { TUPLE { country 'HONX', name 'English', percentage 3.2 } };
INSERT Language RELATION { TUPLE { country 'MACX', name 'Portuguese', percentage 4.0 } };
INSERT Language RELATION { TUPLE { country 'MNG', name 'Khalkha Mongol', percentage 90.0 } };
INSERT Language RELATION { TUPLE { country 'NEP', name 'Nepali', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'PNG', name 'English', percentage 1.0 } };
INSERT Language RELATION { TUPLE { country 'SA', name 'Arabic', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'J', name 'Japanese', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'YE', name 'Arabic', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'CL', name 'Tamil', percentage 18.0 } };
INSERT Language RELATION { TUPLE { country 'CL', name 'Sinhala', percentage 74.0 } };
INSERT Language RELATION { TUPLE { country 'AXA', name 'English', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'AG', name 'English', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'BDS', name 'English', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'GCA', name 'Spanish', percentage 60.0 } };
INSERT Language RELATION { TUPLE { country 'GCA', name 'Indian', percentage 40.0 } };
INSERT Language RELATION { TUPLE { country 'BVIR', name 'English', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'CAYM', name 'English', percentage 95.0 } };
INSERT Language RELATION { TUPLE { country 'CAYM', name 'Spanish', percentage 3.2 } };
INSERT Language RELATION { TUPLE { country 'NIC', name 'Spanish', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'PA', name 'English', percentage 14.0 } };
INSERT Language RELATION { TUPLE { country 'C', name 'Spanish', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'DOM', name 'Spanish', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'RH', name 'French', percentage 10.0 } };
INSERT Language RELATION { TUPLE { country 'GUAD', name 'French', percentage 99.0 } };
INSERT Language RELATION { TUPLE { country 'MNTS', name 'English', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'NA', name 'Papiamento', percentage 65.4 } };
INSERT Language RELATION { TUPLE { country 'NA', name 'English', percentage 15.9 } };
INSERT Language RELATION { TUPLE { country 'NA', name 'Dutch', percentage 7.3 } };
INSERT Language RELATION { TUPLE { country 'NA', name 'Spanish', percentage 6.1 } };
INSERT Language RELATION { TUPLE { country 'NA', name 'Creole', percentage 1.6 } };
INSERT Language RELATION { TUPLE { country 'CO', name 'Spanish', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'KN', name 'English', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'SPMI', name 'French', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'TUCA', name 'English', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'AMSA', name 'Samoan', percentage 90.6 } };
INSERT Language RELATION { TUPLE { country 'AMSA', name 'English', percentage 2.9 } };
INSERT Language RELATION { TUPLE { country 'AMSA', name 'Tongan', percentage 2.4 } };
INSERT Language RELATION { TUPLE { country 'AUS', name 'English', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'FPOL', name 'French', percentage 61.1 } };
INSERT Language RELATION { TUPLE { country 'FPOL', name 'Polynesian', percentage 31.4 } };
INSERT Language RELATION { TUPLE { country 'GUAM', name 'English', percentage 38.3 } };
INSERT Language RELATION { TUPLE { country 'GUAM', name 'Chamorro', percentage 22.2 } };
INSERT Language RELATION { TUPLE { country 'GUAM', name 'Phillipine Languages', percentage 22.2 } };
INSERT Language RELATION { TUPLE { country 'NMIS', name 'Phillipine Languages', percentage 24.4 } };
INSERT Language RELATION { TUPLE { country 'NMIS', name 'Chinese Languages', percentage 23.4 } };
INSERT Language RELATION { TUPLE { country 'NMIS', name 'Chamorro', percentage 22.4 } };
INSERT Language RELATION { TUPLE { country 'NMIS', name 'English', percentage 10.8 } };
INSERT Language RELATION { TUPLE { country 'NMIS', name 'Other Pacific Island Languages', percentage 9.5 } };
INSERT Language RELATION { TUPLE { country 'PITC', name 'Pitkern', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'SLB', name 'English', percentage 1.0 } };
INSERT Language RELATION { TUPLE { country 'WAFU', name 'Wallisian', percentage 58.9 } };
INSERT Language RELATION { TUPLE { country 'WAFU', name 'Futunian', percentage 30.1 } };
INSERT Language RELATION { TUPLE { country 'WAFU', name 'French', percentage 10.8 } };
INSERT Language RELATION { TUPLE { country 'RCH', name 'Spanish', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'FGU', name 'French', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'FALK', name 'English', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'RMM', name 'Bambara', percentage 80.0 } };
INSERT Language RELATION { TUPLE { country 'NAM', name 'German', percentage 32.0 } };
INSERT Language RELATION { TUPLE { country 'NAM', name 'English', percentage 7.0 } };
INSERT Language RELATION { TUPLE { country 'NAM', name 'Afrikaans', percentage 60.0 } };
INSERT Language RELATION { TUPLE { country 'RG', name 'French', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'LB', name 'English', percentage 20.0 } };
INSERT Language RELATION { TUPLE { country 'MOC', name 'Portuguese', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'HELX', name 'English', percentage 100.0 } };
INSERT Language RELATION { TUPLE { country 'STP', name 'Portuguese', percentage 100.0 } };
/* INSERT : EthnicGroup */
INSERT EthnicGroup RELATION { TUPLE { name 'Greeks', country 'AL', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Albanian', country 'AL', percentage 95.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Greek', country 'GR', percentage 98.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Albanian', country 'MK', percentage 22.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Serb', country 'MK', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Macedonian', country 'MK', percentage 65.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Turkish', country 'MK', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Gypsy', country 'MK', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Serb', country 'SRB', percentage 82.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Montenegrin', country 'SRB', percentage 0.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Hungarian', country 'SRB', percentage 3.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Roma', country 'SRB', percentage 1.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Bosniak', country 'SRB', percentage 1.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Croat', country 'SRB', percentage 1.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Montenegrin', country 'MNE', percentage 43.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Serb', country 'MNE', percentage 32.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Bosniak', country 'MNE', percentage 8.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Albanian', country 'MNE', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Albanian', country 'KOS', percentage 88.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Serb', country 'KOS', percentage 7.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'French', country 'AND', percentage 6.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Spanish', country 'AND', percentage 61.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Andorran', country 'AND', percentage 30.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mediterranean Nordic', country 'E', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'German', country 'A', percentage 99.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Slovene', country 'A', percentage 0.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Croat', country 'A', percentage 0.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'German', country 'CZ', percentage 0.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polish', country 'CZ', percentage 0.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Roma', country 'CZ', percentage 0.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Hungarian', country 'CZ', percentage 0.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Czech', country 'CZ', percentage 94.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Slovak', country 'CZ', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Greek', country 'D', percentage 0.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Turkish', country 'D', percentage 2.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'German', country 'D', percentage 95.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Italian', country 'D', percentage 0.7 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polish', country 'D', percentage 0.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Serb', country 'H', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'German', country 'H', percentage 2.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Roma', country 'H', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Hungarian', country 'H', percentage 89.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Slovak', country 'H', percentage 0.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Romanian', country 'H', percentage 0.7 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Italian', country 'FL', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Alemannic', country 'FL', percentage 95.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'German', country 'SK', percentage 0.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polish', country 'SK', percentage 0.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Roma', country 'SK', percentage 1.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Hungarian', country 'SK', percentage 10.7 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Czech', country 'SK', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Slovak', country 'SK', percentage 85.7 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ukrainian', country 'SK', percentage 0.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ruthenian', country 'SK', percentage 0.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Serb', country 'SLO', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Slovene', country 'SLO', percentage 91.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Muslim', country 'SLO', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Croat', country 'SLO', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polish', country 'BY', percentage 4.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ukrainian', country 'BY', percentage 2.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'BY', percentage 13.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Byelorussian', country 'BY', percentage 77.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polish', country 'LV', percentage 2.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ukrainian', country 'LV', percentage 3.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'LV', percentage 33.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Byelorussian', country 'LV', percentage 4.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Latvian', country 'LV', percentage 51.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polish', country 'LT', percentage 7.7 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'LT', percentage 8.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Byelorussian', country 'LT', percentage 1.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Lithuanian', country 'LT', percentage 80.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'German', country 'PL', percentage 1.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polish', country 'PL', percentage 97.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ukrainian', country 'PL', percentage 0.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Byelorussian', country 'PL', percentage 0.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ukrainian', country 'UA', percentage 73.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'UA', percentage 22.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Jewish', country 'UA', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ukrainian', country 'R', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'R', percentage 81.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Byelorussian', country 'R', percentage 0.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Tatar', country 'R', percentage 3.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chuvash', country 'R', percentage 1.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Bashkir', country 'R', percentage 0.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Moldavian', country 'R', percentage 0.7 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Fleming', country 'B', percentage 55.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Walloon', country 'B', percentage 33.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Dutch', country 'NL', percentage 96.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Serb', country 'BIH', percentage 40.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Muslim', country 'BIH', percentage 38.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Croat', country 'BIH', percentage 22.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Serb', country 'HR', percentage 12.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Hungarian', country 'HR', percentage 0.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Muslim', country 'HR', percentage 0.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Croat', country 'HR', percentage 78.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Slovene', country 'HR', percentage 0.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Macedonian', country 'BG', percentage 2.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Roma', country 'BG', percentage 2.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'BG', percentage 0.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Turk', country 'BG', percentage 8.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Bulgarian', country 'BG', percentage 85.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Armenian', country 'BG', percentage 0.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'German', country 'RO', percentage 0.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Roma', country 'RO', percentage 1.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Hungarian', country 'RO', percentage 8.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Romanian', country 'RO', percentage 89.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Turkish', country 'TR', percentage 80.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kurdish', country 'TR', percentage 20.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ukrainian', country 'EW', percentage 3.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'EW', percentage 30.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Byelorussian', country 'EW', percentage 1.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Finn', country 'EW', percentage 1.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Estonian', country 'EW', percentage 61.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Scandinavian', country 'FARX', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'foreign-born first-generation', country 'S', percentage 12.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'French', country 'MC', percentage 47.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Italian', country 'MC', percentage 16.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Monegasque', country 'MC', percentage 16.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Norman-French', country 'GBG', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Celt', country 'IS', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Norman-French', country 'GBJ', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ukrainian', country 'MD', percentage 13.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'MD', percentage 13.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Jewish', country 'MD', percentage 1.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Bulgarian', country 'MD', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Gagauz', country 'MD', percentage 3.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Moldavian/Romanian', country 'MD', percentage 64.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Norwegian', country 'SVAX', percentage 55.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian Ukrainian', country 'SVAX', percentage 44.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'English', country 'GB', percentage 81.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Irish', country 'GB', percentage 2.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Welsh', country 'GB', percentage 1.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Scottish', country 'GB', percentage 9.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ulster', country 'GB', percentage 1.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Tajik', country 'AFG', percentage 25.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Pashtun', country 'AFG', percentage 38.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Uzbek', country 'AFG', percentage 6.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Hazara', country 'AFG', percentage 19.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Han Chinese', country 'TJ', percentage 91.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab', country 'IR', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Persian', country 'IR', percentage 51.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Baloch', country 'IR', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Azerbaijani', country 'IR', percentage 24.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kurd', country 'IR', percentage 7.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Lur', country 'IR', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Turkmen', country 'IR', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Gilaki Mazandarani', country 'IR', percentage 8.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'TAD', percentage 3.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Tajik', country 'TAD', percentage 64.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Uzbek', country 'TAD', percentage 25.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'TM', percentage 9.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Uzbek', country 'TM', percentage 9.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Turkmen', country 'TM', percentage 73.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kazak', country 'TM', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'UZB', percentage 8.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Tatar', country 'UZB', percentage 2.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Tajik', country 'UZB', percentage 4.7 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Uzbek', country 'UZB', percentage 71.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kazak', country 'UZB', percentage 4.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Karakalpak', country 'UZB', percentage 2.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'ARM', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Armenian', country 'ARM', percentage 93.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Azeri', country 'ARM', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'GE', percentage 6.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Armenian', country 'GE', percentage 8.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Azeri', country 'GE', percentage 5.7 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Georgian', country 'GE', percentage 70.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ossetian', country 'GE', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Abkhaz', country 'GE', percentage 1.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'AZ', percentage 2.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Armenian', country 'AZ', percentage 2.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Azeri', country 'AZ', percentage 90.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Dagestani Peoples', country 'AZ', percentage 3.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab', country 'BRN', percentage 10.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Asian', country 'BRN', percentage 13.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Bahraini', country 'BRN', percentage 63.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Iranian', country 'BRN', percentage 8.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Bengali', country 'BD', percentage 98.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'MYA', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'MYA', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Burman', country 'MYA', percentage 68.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Shan', country 'MYA', percentage 9.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Karen', country 'MYA', percentage 7.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Rakhine', country 'MYA', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mon', country 'MYA', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Dravidian', country 'IND', percentage 25.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indo-Aryan', country 'IND', percentage 72.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mongol', country 'IND', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Bhote', country 'BHT', percentage 50.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Nepalese', country 'BHT', percentage 35.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'BRU', percentage 20.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Malay', country 'BRU', percentage 64.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'MAL', percentage 9.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'MAL', percentage 32.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Malay', country 'MAL', percentage 59.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Lao Loum', country 'LAO', percentage 68.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Lao Theung', country 'LAO', percentage 22.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Lao Soung Hmong Yao', country 'LAO', percentage 9.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Vietnamese/Chinese', country 'LAO', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'THA', percentage 14.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Thai', country 'THA', percentage 75.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'K', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Khmer', country 'K', percentage 90.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Vietnamese', country 'K', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'VN', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Vietnamese', country 'VN', percentage 85.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'German', country 'KAZ', percentage 4.7 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ukrainian', country 'KAZ', percentage 5.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'KAZ', percentage 37.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Tatar', country 'KAZ', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Uzbek', country 'KAZ', percentage 2.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kazak', country 'KAZ', percentage 41.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'German', country 'KGZ', percentage 2.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ukrainian', country 'KGZ', percentage 2.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'KGZ', percentage 21.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Uzbek', country 'KGZ', percentage 12.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kirghiz', country 'KGZ', percentage 52.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'HONX', percentage 95.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Filipino', country 'HONX', percentage 1.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indonesian', country 'HONX', percentage 1.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'MACX', percentage 95.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Portuguese', country 'MACX', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Russian', country 'MNG', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kazak', country 'MNG', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'MNG', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mongol', country 'MNG', percentage 90.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'XMAS', percentage 70.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Malay', country 'XMAS', percentage 10.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'XMAS', percentage 20.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Jewish', country 'IL', percentage 82.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'ET', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Eastern Hamitic', country 'ET', percentage 99.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Javanese', country 'RI', percentage 45.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Sundanese', country 'RI', percentage 14.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Madurese', country 'RI', percentage 7.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Malay', country 'RI', percentage 7.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kurdish', country 'IRQ', percentage 15.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab', country 'IRQ', percentage 75.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Assyrian', country 'IRQ', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Armenian', country 'JOR', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab', country 'JOR', percentage 98.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Circassian', country 'JOR', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab', country 'KWT', percentage 35.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Iranian', country 'KWT', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'South Asian', country 'KWT', percentage 9.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kuwaiti', country 'KWT', percentage 45.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab', country 'SA', percentage 90.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Afro-Asian', country 'SA', percentage 10.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab', country 'SYR', percentage 90.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Armenian', country 'RL', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab', country 'RL', percentage 95.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Japanese', country 'J', percentage 99.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'South Asian', country 'UAE', percentage 50.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Emiri', country 'UAE', percentage 19.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab Iranian', country 'UAE', percentage 23.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'RP', percentage 1.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Malay', country 'RP', percentage 95.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'Q', percentage 18.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Pakistani', country 'Q', percentage 18.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab', country 'Q', percentage 40.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Iranian', country 'Q', percentage 10.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'SGP', percentage 6.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'SGP', percentage 76.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Malay', country 'SGP', percentage 14.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Sinhalese', country 'CL', percentage 74.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Tamil', country 'CL', percentage 18.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab', country 'CL', percentage 7.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Vedda', country 'CL', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'RC', percentage 14.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Taiwanese', country 'RC', percentage 84.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Black', country 'AXA', percentage 90.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mulatto', country 'AXA', percentage 4.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'White', country 'AXA', percentage 3.7 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European/Caribbean Indian', country 'ARU', percentage 80.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'BDS', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'BDS', percentage 80.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Creole', country 'BZ', percentage 30.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Garifuna', country 'BZ', percentage 7.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Maya', country 'BZ', percentage 11.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mestizo - Amerindian-Spanish', country 'GCA', percentage 56.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Amerindian Amerindian', country 'GCA', percentage 44.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Amerindian', country 'MEX', percentage 30.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Caucasian', country 'MEX', percentage 9.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Black', country 'BERM', percentage 54.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'White', country 'BERM', percentage 34.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mixed', country 'BERM', percentage 6.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Black', country 'BVIR', percentage 83.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'White', country 'BVIR', percentage 7.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'BVIR', percentage 3.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mixed', country 'BVIR', percentage 5.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'French', country 'CDN', percentage 27.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Asian', country 'CDN', percentage 11.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'CDN', percentage 20.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'British Isles', country 'CDN', percentage 40.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Inuit', country 'CDN', percentage 1.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Asian', country 'USA', percentage 3.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Native American', country 'USA', percentage 0.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Black', country 'CAYM', percentage 20.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'White', country 'CAYM', percentage 20.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mixed', country 'CAYM', percentage 40.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'CR', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'CR', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'NIC', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'West Indian', country 'PA', percentage 14.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'PA', percentage 6.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'C', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Carib Indians', country 'WD', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'RH', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'ES', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'HCA', percentage 7.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Danish', country 'GROX', percentage 14.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Greenlander', country 'GROX', percentage 86.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'WG', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'GUAD', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'JA', percentage 76.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Afro-European', country 'JA', percentage 15.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Afro-East Indian', country 'JA', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Afro-Chinese', country 'JA', percentage 1.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'MART', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African-white-Indian', country 'MART', percentage 90.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mixed Black', country 'NA', percentage 85.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'CO', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'black-Indian', country 'CO', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'White', country 'PR', percentage 80.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Black', country 'PR', percentage 8.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Amerindian', country 'PR', percentage 0.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Asian', country 'PR', percentage 0.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'KN', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'WL', percentage 90.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'East Indian', country 'WL', percentage 3.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Basques Bretons', country 'SPMI', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'TT', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'East Indian', country 'TT', percentage 40.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'TUCA', percentage 90.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Caucasian', country 'AMSA', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Tongan', country 'AMSA', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Samoan', country 'AMSA', percentage 89.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Asian', country 'AUS', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Caucasian', country 'AUS', percentage 95.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polynesian', country 'COOK', percentage 93.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'FJI', percentage 46.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Fijian', country 'FJI', percentage 49.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'French', country 'FPOL', percentage 10.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'FPOL', percentage 12.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polynesian', country 'FPOL', percentage 78.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chamorro', country 'GUAM', percentage 37.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Filipino', country 'GUAM', percentage 26.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Micronesian', country 'KIR', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Micronesian', country 'MH', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polynesian', country 'FSM', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'NAU', percentage 8.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'NAU', percentage 8.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Nauruan', country 'NAU', percentage 58.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Pacific Islander', country 'NAU', percentage 26.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Vietnamese', country 'NCA', percentage 1.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'NCA', percentage 34.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Melanesian', country 'NCA', percentage 44.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Wallisian', country 'NCA', percentage 9.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indonesian', country 'NCA', percentage 2.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'NZ', percentage 88.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Pacific Islander', country 'NZ', percentage 2.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Maori', country 'NZ', percentage 8.9 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polynesian', country 'NIUE', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Asian', country 'NMIS', percentage 56.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Pacific Islander', country 'NMIS', percentage 36.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Caucasian', country 'NMIS', percentage 1.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Bounty', country 'PITC', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'SLB', percentage 0.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'SLB', percentage 0.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polynesian', country 'SLB', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Micronesian', country 'SLB', percentage 1.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Melanesian', country 'SLB', percentage 93.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polynesian', country 'TUV', percentage 96.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'French', country 'VU', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Melanesian', country 'VU', percentage 94.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Polynesian', country 'WAFU', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Europeans', country 'WS', percentage 0.4 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Samoan', country 'WS', percentage 92.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Euronesians', country 'WS', percentage 7.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'RA', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'BOL', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Quechua', country 'BOL', percentage 30.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Aymara', country 'BOL', percentage 25.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'BR', percentage 44.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'RCH', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European European-Indian', country 'RCH', percentage 95.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Amerindians', country 'PY', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'PE', percentage 45.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Amerindian', country 'FGU', percentage 12.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'East Indian', country 'GUY', percentage 51.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Amerindian', country 'GUY', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European Chinese', country 'GUY', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'SME', percentage 1.7 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Javanese', country 'SME', percentage 15.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Creole', country 'SME', percentage 31.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Europeans', country 'SME', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Amerindian', country 'SME', percentage 2.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Hindustani', country 'SME', percentage 37.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Amerindian', country 'YV', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Spanish', country 'EC', percentage 10.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'EC', percentage 25.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Christian', country 'FALK', percentage 67.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'None', country 'FALK', percentage 31.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'DZ', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab-Berber', country 'DZ', percentage 99.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Berber Arab', country 'LAR', percentage 97.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mande', country 'RMM', percentage 50.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Peuhl', country 'RMM', percentage 17.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Voltaic', country 'RMM', percentage 12.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Songhai', country 'RMM', percentage 6.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Tuareg', country 'RMM', percentage 10.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Maur', country 'RIM', percentage 30.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Black Maur', country 'RIM', percentage 40.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Jewish', country 'MA', percentage 0.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab-Berber', country 'MA', percentage 99.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Fula', country 'RN', percentage 8.5 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Hausa', country 'RN', percentage 56.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Djerma', country 'RN', percentage 22.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Tuareg', country 'RN', percentage 8.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Beri Beri', country 'RN', percentage 4.3 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Gourmantche', country 'RN', percentage 1.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Jewish', country 'TN', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'TN', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab-Berber', country 'TN', percentage 98.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'ANG', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Ovimbundu', country 'ANG', percentage 37.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kimbundu', country 'ANG', percentage 25.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Bakongo', country 'ANG', percentage 13.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mangbetu-Azande', country 'ZRE', percentage 45.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'Z', percentage 1.1 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'Z', percentage 98.7 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'BEN', percentage 99.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mossi', country 'BF', percentage 24.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'WAN', percentage 99.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'RT', percentage 99.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European Syrian-Lebanese', country 'RT', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Batswana', country 'RB', percentage 95.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kgalagadi', country 'RB', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'RSA', percentage 2.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Colored', country 'RSA', percentage 8.6 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Asian', country 'ZW', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'ZW', percentage 98.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Malinke', country 'CI', percentage 11.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Baoule', country 'CI', percentage 23.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Bete', country 'CI', percentage 18.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Senoufou', country 'CI', percentage 15.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'GH', percentage 0.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'GH', percentage 99.8 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Hutu', country 'RWA', percentage 80.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Tutsi', country 'RWA', percentage 19.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Twa', country 'RWA', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'CAM', percentage 13.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Fulani', country 'CAM', percentage 10.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Cameroon Highlanders', country 'CAM', percentage 31.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Equatorial Bantu', country 'CAM', percentage 19.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kirdi', country 'CAM', percentage 11.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Northwestern Bantu', country 'CAM', percentage 8.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Eastern Nigritic', country 'CAM', percentage 7.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Baya', country 'RCA', percentage 34.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Banda', country 'RCA', percentage 27.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Sara', country 'RCA', percentage 10.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mandjia', country 'RCA', percentage 21.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mboum', country 'RCA', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'MBaka', country 'RCA', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'CV', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'CV', percentage 28.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Creole', country 'CV', percentage 71.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab', country 'SUD', percentage 39.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Beja', country 'SUD', percentage 6.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Malinke', country 'RG', percentage 30.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Peuhl', country 'RG', percentage 40.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Soussou', country 'RG', percentage 20.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'LB', percentage 95.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Americo-Liberians', country 'LB', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Italian', country 'DJI', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Afar', country 'DJI', percentage 35.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Somali', country 'DJI', percentage 60.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Afar', country 'ER', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Tigrinya', country 'ER', percentage 50.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Tigre Kunama', country 'ER', percentage 40.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Saho', country 'ER', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Afar', country 'ETH', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Somali', country 'ETH', percentage 6.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Oromo', country 'ETH', percentage 40.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Sidamo', country 'ETH', percentage 9.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Shankella', country 'ETH', percentage 6.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Gurage', country 'ETH', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Amhara Tigrean', country 'ETH', percentage 32.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Somali', country 'SP', percentage 85.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab', country 'EAK', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kikuyu', country 'EAK', percentage 22.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Luhya', country 'EAK', percentage 14.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Luo', country 'EAK', percentage 13.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kalenjin', country 'EAK', percentage 12.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kamba', country 'EAK', percentage 11.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Kisii', country 'EAK', percentage 6.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Meru', country 'EAK', percentage 6.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'WAG', percentage 99.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Fulani', country 'SN', percentage 17.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Wolof', country 'SN', percentage 36.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Diola', country 'SN', percentage 9.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Mandingo', country 'SN', percentage 9.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Serer', country 'SN', percentage 17.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Toucouleur', country 'SN', percentage 9.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European Lebanese', country 'SN', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'GNB', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'GNB', percentage 99.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Asian', country 'WAL', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'WAL', percentage 99.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Rwanda', country 'EAU', percentage 6.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Arab', country 'EAU', percentage 1.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Baganda', country 'EAU', percentage 17.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Karamojong', country 'EAU', percentage 12.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Basogo', country 'EAU', percentage 8.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Iteso', country 'EAU', percentage 8.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Langi', country 'EAU', percentage 6.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Bagisu', country 'EAU', percentage 5.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Acholi', country 'EAU', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Lugbara', country 'EAU', percentage 4.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Bunyoro', country 'EAU', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Batobo', country 'EAU', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Sotho', country 'LS', percentage 99.7 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'MOC', percentage 0.06 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indian', country 'MOC', percentage 0.08 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Euro-African', country 'MOC', percentage 0.2 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Creole', country 'MS', percentage 27.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Indo-Mauritian', country 'MS', percentage 68.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Sino-Mauritian', country 'MS', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Franco-Mauritian', country 'MS', percentage 2.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'European', country 'SD', percentage 3.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African', country 'SD', percentage 97.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'African descent', country 'HELX', percentage 50.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'White', country 'HELX', percentage 25.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Chinese', country 'HELX', percentage 25.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Europeans', country 'STP', percentage 100.0 } };
INSERT EthnicGroup RELATION { TUPLE { name 'Seychellois', country 'SY', percentage 100.0 } };
/* INSERT : Independence */
INSERT Independence RELATION { TUPLE { country 'AL', independence '1912-11-28' } };
INSERT Independence RELATION { TUPLE { country 'GR', independence '1829-01-01' } };
INSERT Independence RELATION { TUPLE { country 'MK', independence '1991-09-17' } };
INSERT Independence RELATION { TUPLE { country 'SRB', independence '2006-06-05' } };
INSERT Independence RELATION { TUPLE { country 'MNE', independence '2006-06-03' } };
INSERT Independence RELATION { TUPLE { country 'KOS', independence '2008-02-17' } };
INSERT Independence RELATION { TUPLE { country 'E', independence '1492-01-01' } };
INSERT Independence RELATION { TUPLE { country 'A', independence '1918-11-12' } };
INSERT Independence RELATION { TUPLE { country 'CZ', independence '1993-01-01' } };
INSERT Independence RELATION { TUPLE { country 'D', independence '1871-01-18' } };
INSERT Independence RELATION { TUPLE { country 'H', independence '1001-01-01' } };
INSERT Independence RELATION { TUPLE { country 'I', independence '1861-03-17' } };
INSERT Independence RELATION { TUPLE { country 'FL', independence '1719-01-23' } };
INSERT Independence RELATION { TUPLE { country 'SK', independence '1993-01-01' } };
INSERT Independence RELATION { TUPLE { country 'SLO', independence '1991-06-25' } };
INSERT Independence RELATION { TUPLE { country 'BY', independence '1991-08-25' } };
INSERT Independence RELATION { TUPLE { country 'LV', independence '1991-09-06' } };
INSERT Independence RELATION { TUPLE { country 'LT', independence '1991-09-06' } };
INSERT Independence RELATION { TUPLE { country 'PL', independence '1918-11-11' } };
INSERT Independence RELATION { TUPLE { country 'UA', independence '1991-12-01' } };
INSERT Independence RELATION { TUPLE { country 'R', independence '1991-08-24' } };
INSERT Independence RELATION { TUPLE { country 'B', independence '1830-10-04' } };
INSERT Independence RELATION { TUPLE { country 'NL', independence '1579-01-01' } };
INSERT Independence RELATION { TUPLE { country 'BIH', independence '1992-04-01' } };
INSERT Independence RELATION { TUPLE { country 'HR', independence '1991-06-25' } };
INSERT Independence RELATION { TUPLE { country 'BG', independence '1908-09-22' } };
INSERT Independence RELATION { TUPLE { country 'RO', independence '1881-01-01' } };
INSERT Independence RELATION { TUPLE { country 'TR', independence '1923-10-29' } };
INSERT Independence RELATION { TUPLE { country 'EW', independence '1991-09-06' } };
INSERT Independence RELATION { TUPLE { country 'SF', independence '1917-12-06' } };
INSERT Independence RELATION { TUPLE { country 'N', independence '1905-10-26' } };
INSERT Independence RELATION { TUPLE { country 'MC', independence '1419-01-01' } };
INSERT Independence RELATION { TUPLE { country 'V', independence '1929-02-11' } };
INSERT Independence RELATION { TUPLE { country 'IS', independence '1944-06-17' } };
INSERT Independence RELATION { TUPLE { country 'IRL', independence '1921-12-06' } };
INSERT Independence RELATION { TUPLE { country 'RSM', independence '0301-01-01' } };
INSERT Independence RELATION { TUPLE { country 'M', independence '1964-09-21' } };
INSERT Independence RELATION { TUPLE { country 'MD', independence '1991-08-27' } };
INSERT Independence RELATION { TUPLE { country 'P', independence '1140-01-01' } };
INSERT Independence RELATION { TUPLE { country 'GB', independence '1801-01-01' } };
INSERT Independence RELATION { TUPLE { country 'AFG', independence '1919-08-19' } };
INSERT Independence RELATION { TUPLE { country 'IR', independence '1979-04-01' } };
INSERT Independence RELATION { TUPLE { country 'PK', independence '1947-08-14' } };
INSERT Independence RELATION { TUPLE { country 'TAD', independence '1991-09-09' } };
INSERT Independence RELATION { TUPLE { country 'TM', independence '1991-10-27' } };
INSERT Independence RELATION { TUPLE { country 'UZB', independence '1991-08-31' } };
INSERT Independence RELATION { TUPLE { country 'ARM', independence '1918-05-28' } };
INSERT Independence RELATION { TUPLE { country 'GE', independence '1991-04-09' } };
INSERT Independence RELATION { TUPLE { country 'AZ', independence '1991-08-30' } };
INSERT Independence RELATION { TUPLE { country 'BRN', independence '1971-08-15' } };
INSERT Independence RELATION { TUPLE { country 'BD', independence '1971-12-16' } };
INSERT Independence RELATION { TUPLE { country 'MYA', independence '1948-01-04' } };
INSERT Independence RELATION { TUPLE { country 'IND', independence '1947-08-15' } };
INSERT Independence RELATION { TUPLE { country 'BHT', independence '1949-08-08' } };
INSERT Independence RELATION { TUPLE { country 'BRU', independence '1984-01-01' } };
INSERT Independence RELATION { TUPLE { country 'MAL', independence '1957-08-31' } };
INSERT Independence RELATION { TUPLE { country 'LAO', independence '1949-07-19' } };
INSERT Independence RELATION { TUPLE { country 'THA', independence '1238-01-01' } };
INSERT Independence RELATION { TUPLE { country 'K', independence '1949-11-09' } };
INSERT Independence RELATION { TUPLE { country 'VN', independence '1945-09-02' } };
INSERT Independence RELATION { TUPLE { country 'KAZ', independence '1991-12-16' } };
INSERT Independence RELATION { TUPLE { country 'KGZ', independence '1991-08-31' } };
INSERT Independence RELATION { TUPLE { country 'MNG', independence '1921-03-13' } };
INSERT Independence RELATION { TUPLE { country 'NEP', independence '1768-01-01' } };
INSERT Independence RELATION { TUPLE { country 'CY', independence '1960-08-16' } };
INSERT Independence RELATION { TUPLE { country 'IL', independence '1948-05-14' } };
INSERT Independence RELATION { TUPLE { country 'ET', independence '1922-02-28' } };
INSERT Independence RELATION { TUPLE { country 'RI', independence '1945-08-17' } };
INSERT Independence RELATION { TUPLE { country 'TL', independence '2002-05-20' } };
INSERT Independence RELATION { TUPLE { country 'PNG', independence '1975-09-16' } };
INSERT Independence RELATION { TUPLE { country 'IRQ', independence '1932-10-03' } };
INSERT Independence RELATION { TUPLE { country 'JOR', independence '1946-05-25' } };
INSERT Independence RELATION { TUPLE { country 'KWT', independence '1961-06-19' } };
INSERT Independence RELATION { TUPLE { country 'SA', independence '1932-09-23' } };
INSERT Independence RELATION { TUPLE { country 'SYR', independence '1946-04-17' } };
INSERT Independence RELATION { TUPLE { country 'RL', independence '1943-11-22' } };
INSERT Independence RELATION { TUPLE { country 'MV', independence '1965-07-26' } };
INSERT Independence RELATION { TUPLE { country 'OM', independence '1650-01-01' } };
INSERT Independence RELATION { TUPLE { country 'UAE', independence '1971-12-02' } };
INSERT Independence RELATION { TUPLE { country 'YE', independence '1990-05-22' } };
INSERT Independence RELATION { TUPLE { country 'RP', independence '1946-07-04' } };
INSERT Independence RELATION { TUPLE { country 'Q', independence '1971-09-03' } };
INSERT Independence RELATION { TUPLE { country 'SGP', independence '1965-08-09' } };
INSERT Independence RELATION { TUPLE { country 'CL', independence '1948-02-04' } };
INSERT Independence RELATION { TUPLE { country 'AG', independence '1981-11-01' } };
INSERT Independence RELATION { TUPLE { country 'BS', independence '1973-07-10' } };
INSERT Independence RELATION { TUPLE { country 'BDS', independence '1966-11-30' } };
INSERT Independence RELATION { TUPLE { country 'BZ', independence '1981-09-21' } };
INSERT Independence RELATION { TUPLE { country 'GCA', independence '1821-09-15' } };
INSERT Independence RELATION { TUPLE { country 'MEX', independence '1810-09-16' } };
INSERT Independence RELATION { TUPLE { country 'CDN', independence '1867-07-01' } };
INSERT Independence RELATION { TUPLE { country 'USA', independence '1776-07-04' } };
INSERT Independence RELATION { TUPLE { country 'CR', independence '1821-09-15' } };
INSERT Independence RELATION { TUPLE { country 'NIC', independence '1821-09-15' } };
INSERT Independence RELATION { TUPLE { country 'PA', independence '1903-11-03' } };
INSERT Independence RELATION { TUPLE { country 'C', independence '1902-05-20' } };
INSERT Independence RELATION { TUPLE { country 'WD', independence '1978-11-03' } };
INSERT Independence RELATION { TUPLE { country 'DOM', independence '1844-02-27' } };
INSERT Independence RELATION { TUPLE { country 'RH', independence '1804-01-01' } };
INSERT Independence RELATION { TUPLE { country 'ES', independence '1821-09-15' } };
INSERT Independence RELATION { TUPLE { country 'HCA', independence '1821-09-15' } };
INSERT Independence RELATION { TUPLE { country 'WG', independence '1974-02-07' } };
INSERT Independence RELATION { TUPLE { country 'JA', independence '1962-08-06' } };
INSERT Independence RELATION { TUPLE { country 'CO', independence '1810-07-20' } };
INSERT Independence RELATION { TUPLE { country 'KN', independence '1983-09-19' } };
INSERT Independence RELATION { TUPLE { country 'WL', independence '1979-02-22' } };
INSERT Independence RELATION { TUPLE { country 'WV', independence '1979-10-27' } };
INSERT Independence RELATION { TUPLE { country 'TT', independence '1962-08-31' } };
INSERT Independence RELATION { TUPLE { country 'AUS', independence '1901-01-01' } };
INSERT Independence RELATION { TUPLE { country 'FJI', independence '1970-10-10' } };
INSERT Independence RELATION { TUPLE { country 'KIR', independence '1979-07-12' } };
INSERT Independence RELATION { TUPLE { country 'MH', independence '1986-10-21' } };
INSERT Independence RELATION { TUPLE { country 'FSM', independence '1986-11-03' } };
INSERT Independence RELATION { TUPLE { country 'NAU', independence '1968-01-31' } };
INSERT Independence RELATION { TUPLE { country 'NZ', independence '1907-09-26' } };
INSERT Independence RELATION { TUPLE { country 'NIUE', independence '1974-10-19' } };
INSERT Independence RELATION { TUPLE { country 'PAL', independence '1994-10-01' } };
INSERT Independence RELATION { TUPLE { country 'SLB', independence '1978-07-07' } };
INSERT Independence RELATION { TUPLE { country 'TO', independence '1970-06-04' } };
INSERT Independence RELATION { TUPLE { country 'TUV', independence '1978-10-01' } };
INSERT Independence RELATION { TUPLE { country 'VU', independence '1980-07-30' } };
INSERT Independence RELATION { TUPLE { country 'WS', independence '1962-01-01' } };
INSERT Independence RELATION { TUPLE { country 'RA', independence '1816-07-09' } };
INSERT Independence RELATION { TUPLE { country 'BOL', independence '1825-08-06' } };
INSERT Independence RELATION { TUPLE { country 'BR', independence '1822-09-07' } };
INSERT Independence RELATION { TUPLE { country 'RCH', independence '1810-09-18' } };
INSERT Independence RELATION { TUPLE { country 'PY', independence '1811-05-14' } };
INSERT Independence RELATION { TUPLE { country 'ROU', independence '1828-08-25' } };
INSERT Independence RELATION { TUPLE { country 'PE', independence '1821-07-28' } };
INSERT Independence RELATION { TUPLE { country 'GUY', independence '1966-05-26' } };
INSERT Independence RELATION { TUPLE { country 'SME', independence '1975-11-25' } };
INSERT Independence RELATION { TUPLE { country 'YV', independence '1811-07-05' } };
INSERT Independence RELATION { TUPLE { country 'EC', independence '1822-05-24' } };
INSERT Independence RELATION { TUPLE { country 'DZ', independence '1962-07-05' } };
INSERT Independence RELATION { TUPLE { country 'LAR', independence '1951-12-24' } };
INSERT Independence RELATION { TUPLE { country 'RMM', independence '1960-09-22' } };
INSERT Independence RELATION { TUPLE { country 'RIM', independence '1960-11-28' } };
INSERT Independence RELATION { TUPLE { country 'MA', independence '1956-03-02' } };
INSERT Independence RELATION { TUPLE { country 'RN', independence '1960-08-03' } };
INSERT Independence RELATION { TUPLE { country 'TN', independence '1956-03-20' } };
INSERT Independence RELATION { TUPLE { country 'ANG', independence '1975-11-11' } };
INSERT Independence RELATION { TUPLE { country 'RCB', independence '1960-08-15' } };
INSERT Independence RELATION { TUPLE { country 'NAM', independence '1990-03-21' } };
INSERT Independence RELATION { TUPLE { country 'ZRE', independence '1960-06-30' } };
INSERT Independence RELATION { TUPLE { country 'Z', independence '1964-10-24' } };
INSERT Independence RELATION { TUPLE { country 'BEN', independence '1960-08-01' } };
INSERT Independence RELATION { TUPLE { country 'BF', independence '1960-08-05' } };
INSERT Independence RELATION { TUPLE { country 'WAN', independence '1960-10-01' } };
INSERT Independence RELATION { TUPLE { country 'RT', independence '1960-04-27' } };
INSERT Independence RELATION { TUPLE { country 'RB', independence '1966-09-30' } };
INSERT Independence RELATION { TUPLE { country 'RSA', independence '1910-05-31' } };
INSERT Independence RELATION { TUPLE { country 'ZW', independence '1980-04-18' } };
INSERT Independence RELATION { TUPLE { country 'CI', independence '1960-08-07' } };
INSERT Independence RELATION { TUPLE { country 'GH', independence '1957-03-06' } };
INSERT Independence RELATION { TUPLE { country 'BI', independence '1962-07-01' } };
INSERT Independence RELATION { TUPLE { country 'RWA', independence '1962-07-01' } };
INSERT Independence RELATION { TUPLE { country 'EAT', independence '1964-04-26' } };
INSERT Independence RELATION { TUPLE { country 'CAM', independence '1960-01-01' } };
INSERT Independence RELATION { TUPLE { country 'RCA', independence '1960-08-13' } };
INSERT Independence RELATION { TUPLE { country 'TCH', independence '1960-08-11' } };
INSERT Independence RELATION { TUPLE { country 'GQ', independence '1968-10-12' } };
INSERT Independence RELATION { TUPLE { country 'G', independence '1960-08-17' } };
INSERT Independence RELATION { TUPLE { country 'CV', independence '1975-07-05' } };
INSERT Independence RELATION { TUPLE { country 'SUD', independence '1956-01-01' } };
INSERT Independence RELATION { TUPLE { country 'COM', independence '1975-07-06' } };
INSERT Independence RELATION { TUPLE { country 'RG', independence '1958-10-02' } };
INSERT Independence RELATION { TUPLE { country 'DJI', independence '1977-06-27' } };
INSERT Independence RELATION { TUPLE { country 'ER', independence '1993-05-27' } };
INSERT Independence RELATION { TUPLE { country 'SP', independence '1960-07-01' } };
INSERT Independence RELATION { TUPLE { country 'EAK', independence '1963-12-12' } };
INSERT Independence RELATION { TUPLE { country 'WAG', independence '1965-02-18' } };
INSERT Independence RELATION { TUPLE { country 'SN', independence '1960-08-20' } };
INSERT Independence RELATION { TUPLE { country 'GNB', independence '1974-09-10' } };
INSERT Independence RELATION { TUPLE { country 'WAL', independence '1961-04-27' } };
INSERT Independence RELATION { TUPLE { country 'EAU', independence '1962-10-09' } };
INSERT Independence RELATION { TUPLE { country 'LS', independence '1966-10-04' } };
INSERT Independence RELATION { TUPLE { country 'RM', independence '1960-06-26' } };
INSERT Independence RELATION { TUPLE { country 'MW', independence '1964-07-06' } };
INSERT Independence RELATION { TUPLE { country 'MOC', independence '1975-06-25' } };
INSERT Independence RELATION { TUPLE { country 'MS', independence '1968-03-12' } };
INSERT Independence RELATION { TUPLE { country 'SD', independence '1968-09-06' } };
INSERT Independence RELATION { TUPLE { country 'STP', independence '1975-07-12' } };
INSERT Independence RELATION { TUPLE { country 'SY', independence '1976-06-29' } };
/* INSERT : Continent */
INSERT Continent RELATION { TUPLE { name 'Europe', area 9562488.0 } };
INSERT Continent RELATION { TUPLE { name 'Asia', area 45095292.0 } };
INSERT Continent RELATION { TUPLE { name 'Australia/Oceania', area 8503474.0 } };
INSERT Continent RELATION { TUPLE { name 'Africa', area 30254708.0 } };
INSERT Continent RELATION { TUPLE { name 'America', area 39872000.0 } };
/* INSERT : Encompasses */
INSERT Encompasses RELATION { TUPLE { country 'AL', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GR', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MK', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SRB', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MNE', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'KOS', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'AND', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'F', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'E', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'A', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'CZ', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'D', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'H', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'I', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'FL', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SK', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SLO', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'CH', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BY', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'LV', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'LT', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'PL', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'UA', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'R', continent 'Europe', percentage 20.0 } };
INSERT Encompasses RELATION { TUPLE { country 'R', continent 'Asia', percentage 80.0 } };
INSERT Encompasses RELATION { TUPLE { country 'B', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'L', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'NL', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BIH', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'HR', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BG', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RO', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'TR', continent 'Europe', percentage 5.0 } };
INSERT Encompasses RELATION { TUPLE { country 'TR', continent 'Asia', percentage 95.0 } };
INSERT Encompasses RELATION { TUPLE { country 'DK', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'EW', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'FARX', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SF', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'N', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'S', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MC', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GBZ', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GBG', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'V', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'IS', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'IRL', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RSM', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GBJ', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'M', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GBM', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MD', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'P', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SVAX', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GB', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'AFG', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'TJ', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'IR', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'PK', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'TAD', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'TM', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'UZB', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'ARM', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GE', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'AZ', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BRN', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BD', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MYA', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'IND', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BHT', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BRU', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MAL', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'LAO', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'THA', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'K', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'VN', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'KAZ', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'NOK', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'KGZ', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'HONX', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MACX', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MNG', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'NEP', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'XMAS', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'COCO', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'CY', continent 'Europe', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'IL', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'ET', continent 'Asia', percentage 10.0 } };
INSERT Encompasses RELATION { TUPLE { country 'ET', continent 'Africa', percentage 90.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RI', continent 'Asia', percentage 80.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RI', continent 'Australia/Oceania', percentage 20.0 } };
INSERT Encompasses RELATION { TUPLE { country 'TL', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'PNG', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'IRQ', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'JOR', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'KWT', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SA', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SYR', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RL', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'J', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'ROK', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MV', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'OM', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'UAE', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'YE', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RP', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'Q', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SGP', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'CL', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RC', continent 'Asia', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'AXA', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'AG', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'ARU', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BS', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BDS', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BZ', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GCA', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MEX', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BERM', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BVIR', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'CDN', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'USA', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'CAYM', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'CR', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'NIC', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'PA', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'C', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'WD', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'DOM', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RH', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'ES', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'HCA', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GROX', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'WG', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GUAD', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'JA', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MART', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MNTS', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'NA', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SMAR', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'CO', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'PR', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'KN', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'WL', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SPMI', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'WV', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'TT', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'TUCA', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'VIRG', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'AMSA', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'AUS', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'COOK', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'FJI', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'FPOL', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GUAM', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'KIR', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MH', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'FSM', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'NAU', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'NCA', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'NZ', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'NIUE', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'NORF', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'NMIS', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'PAL', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'PITC', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SLB', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'TO', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'TUV', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'VU', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'WAFU', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'WS', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RA', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BOL', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BR', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RCH', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'PY', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'ROU', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'PE', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'FGU', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GUY', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SME', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'YV', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'EC', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'FALK', continent 'America', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'DZ', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'LAR', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RMM', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RIM', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MA', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RN', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'TN', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'WSA', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'ANG', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RCB', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'NAM', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'ZRE', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'Z', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BEN', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BF', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'WAN', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RT', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RB', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RSA', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'ZW', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'CI', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GH', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'BI', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RWA', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'EAT', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'CAM', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RCA', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'TCH', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GQ', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'G', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'CV', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SUD', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'COM', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RG', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'LB', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'DJI', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'ER', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'ETH', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SP', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'EAK', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'WAG', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SN', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'GNB', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'WAL', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'EAU', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'LS', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'RM', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MW', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MOC', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MS', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'MAYO', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SD', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'REUN', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'HELX', continent 'Australia/Oceania', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'STP', continent 'Africa', percentage 100.0 } };
INSERT Encompasses RELATION { TUPLE { country 'SY', continent 'Africa', percentage 100.0 } };
/* INSERT : Province */
INSERT Province RELATION { TUPLE { name 'Anatoliki Makedhonia kai Thraki', country 'GR', population 574308, area 14157.0, capital 'Komotini' } };
INSERT Province RELATION { TUPLE { name 'Attiki', country 'GR', population 3522769, area 3808.0, capital 'Athens' } };
INSERT Province RELATION { TUPLE { name 'Dhytiki Ellas', country 'GR', population 702027, area 11350.0, capital 'Patrai' } };
INSERT Province RELATION { TUPLE { name 'Dhytiki Makedhonia', country 'GR', population 292751, area 9451.0, capital 'Kozani' } };
INSERT Province RELATION { TUPLE { name 'Ionioi Nisoi', country 'GR', population 191003, area 2307.0, capital 'Korfu' } };
INSERT Province RELATION { TUPLE { name 'Ipiros', country 'GR', population 339210, area 9203.0, capital 'Ioannina' } };
INSERT Province RELATION { TUPLE { name 'Kedriki Makedhonia', country 'GR', population 1729581, area 19147.0, capital 'Thessaloniki' } };
INSERT Province RELATION { TUPLE { name 'Kriti', country 'GR', population 537183, area 8336.0, capital 'Iraklion' } };
INSERT Province RELATION { TUPLE { name 'Notion Aiyaion', country 'GR', population 262522, area 5286.0, capital 'Ermoupoli' } };
INSERT Province RELATION { TUPLE { name 'Peloponnisos', country 'GR', population 605663, area 15490.0, capital 'Tripoli' } };
INSERT Province RELATION { TUPLE { name 'Sterea Ellas', country 'GR', population 578876, area 15549.0, capital 'Lamia' } };
INSERT Province RELATION { TUPLE { name 'Thessalia', country 'GR', population 731030, area 14037.0, capital 'Larisa' } };
INSERT Province RELATION { TUPLE { name 'Voreion Aiyaion', country 'GR', population 189541, area 3836.0, capital 'Mytilini' } };
INSERT Province RELATION { TUPLE { name 'Alsace', country 'F', population 1624000, area 8280.0, capital 'Strasbourg' } };
INSERT Province RELATION { TUPLE { name 'Aquitaine', country 'F', population 2796000, area 41309.0, capital 'Bordeaux' } };
INSERT Province RELATION { TUPLE { name 'Auvergne', country 'F', population 1321000, area 26013.0, capital 'Clermont Ferrand' } };
INSERT Province RELATION { TUPLE { name 'Basse Normandie', country 'F', population 1391000, area 17589.0, capital 'Caen' } };
INSERT Province RELATION { TUPLE { name 'Bretagne', country 'F', population 2796000, area 27209.0, capital 'Rennes' } };
INSERT Province RELATION { TUPLE { name 'Bourgogne', country 'F', population 1609000, area 31582.0, capital 'Dijon' } };
INSERT Province RELATION { TUPLE { name 'Centre', country 'F', population 2371000, area 39151.0, capital 'Orleans' } };
INSERT Province RELATION { TUPLE { name 'Champagne Ardenne', country 'F', population 1348000, area 25606.0, capital 'Chalons en Champagne' } };
INSERT Province RELATION { TUPLE { name 'Corse', country 'F', population 250000, area 8680.0, capital 'Ajaccio' } };
INSERT Province RELATION { TUPLE { name 'Franche Comte', country 'F', population 1097000, area 16202.0, capital 'Besancon' } };
INSERT Province RELATION { TUPLE { name 'Haute Normandie', country 'F', population 1737000, area 12318.0, capital 'Rouen' } };
INSERT Province RELATION { TUPLE { name 'Ile de France', country 'F', population 10660000, area 12011.0, capital 'Paris' } };
INSERT Province RELATION { TUPLE { name 'Languedoc Roussillon', country 'F', population 2115000, area 27376.0, capital 'Montpellier' } };
INSERT Province RELATION { TUPLE { name 'Limousin', country 'F', population 723000, area 16942.0, capital 'Limoges' } };
INSERT Province RELATION { TUPLE { name 'Lorraine', country 'F', population 2306000, area 23547.0, capital 'Metz' } };
INSERT Province RELATION { TUPLE { name 'Midi Pyrenees', country 'F', population 2431000, area 45349.0, capital 'Toulouse' } };
INSERT Province RELATION { TUPLE { name 'Nord Pas de Calais', country 'F', population 3965000, area 12413.0, capital 'Lille' } };
INSERT Province RELATION { TUPLE { name 'Pays de la Loire', country 'F', population 3059000, area 32082.0, capital 'Nantes' } };
INSERT Province RELATION { TUPLE { name 'Picardie', country 'F', population 1811000, area 19399.0, capital 'Amiens' } };
INSERT Province RELATION { TUPLE { name 'Poitou Charentes', country 'F', population 1595000, area 25809.0, capital 'Poitiers' } };
INSERT Province RELATION { TUPLE { name 'Provence Cote dAzur', country 'F', population 4258000, area 31400.0, capital 'Marseille' } };
INSERT Province RELATION { TUPLE { name 'Rhone Alpes', country 'F', population 5351000, area 43698.0, capital 'Lyon' } };
INSERT Province RELATION { TUPLE { name 'Andalusia', country 'E', population 7053043, area 87600.0, capital 'Sevilla' } };
INSERT Province RELATION { TUPLE { name 'Aragon', country 'E', population 1183576, area 47720.0, capital 'Zaragoza' } };
INSERT Province RELATION { TUPLE { name 'Asturias', country 'E', population 1083388, area 10604.0, capital 'Oviedo' } };
INSERT Province RELATION { TUPLE { name 'Balearic Islands', country 'E', population 736865, area 4992.0, capital 'Palma de Mallorca' } };
INSERT Province RELATION { TUPLE { name 'Basque Country', country 'E', population 2075561, area 7235.0, capital 'Vitoria Gasteiz' } };
INSERT Province RELATION { TUPLE { name 'Canary Islands', country 'E', population 1534897, area 7447.0, capital 'Santa Cruz de Tenerife' } };
INSERT Province RELATION { TUPLE { name 'Cantabria', country 'E', population 526090, area 5321.0, capital 'Santander' } };
INSERT Province RELATION { TUPLE { name 'Castile and Leon', country 'E', population 2504371, area 94224.0, capital 'Valladolid' } };
INSERT Province RELATION { TUPLE { name 'Castile La Mancha', country 'E', population 1656179, area 79462.0, capital 'Toledo' } };
INSERT Province RELATION { TUPLE { name 'Catalonia', country 'E', population 6090107, area 32113.0, capital 'Barcelona' } };
INSERT Province RELATION { TUPLE { name 'Estremadura', country 'E', population 1050590, area 41635.0, capital 'Merida' } };
INSERT Province RELATION { TUPLE { name 'Galicia', country 'E', population 2720761, area 29574.0, capital 'Santiago de Compostella' } };
INSERT Province RELATION { TUPLE { name 'Madrid', country 'E', population 5034548, area 8028.0, capital 'Madrid' } };
INSERT Province RELATION { TUPLE { name 'Murcia', country 'E', population 1070401, area 11314.0, capital 'Murcia' } };
INSERT Province RELATION { TUPLE { name 'Navarre', country 'E', population 523614, area 10391.0, capital 'Pamplona' } };
INSERT Province RELATION { TUPLE { name 'Rioja', country 'E', population 263437, area 5045.0, capital 'Logrono' } };
INSERT Province RELATION { TUPLE { name 'Valencia', country 'E', population 3909047, area 23255.0, capital 'Valencia' } };
INSERT Province RELATION { TUPLE { name 'Burgenland', country 'A', population 273000, area 3965.0, capital 'Eisenstadt' } };
INSERT Province RELATION { TUPLE { name 'Carinthia', country 'A', population 559000, area 9533.0, capital 'Klagenfurt' } };
INSERT Province RELATION { TUPLE { name 'Vorarlberg', country 'A', population 341000, area 2601.0, capital 'Bregenz' } };
INSERT Province RELATION { TUPLE { name 'Vienna', country 'A', population 1583000, area 415.0, capital 'Vienna' } };
INSERT Province RELATION { TUPLE { name 'Upper Austria', country 'A', population 1373000, area 11979.0, capital 'Linz' } };
INSERT Province RELATION { TUPLE { name 'Tyrol', country 'A', population 649000, area 12647.0, capital 'Innsbruck' } };
INSERT Province RELATION { TUPLE { name 'Styria', country 'A', population 1203000, area 16386.0, capital 'Graz' } };
INSERT Province RELATION { TUPLE { name 'Salzburg', country 'A', population 501000, area 7154.0, capital 'Salzburg' } };
INSERT Province RELATION { TUPLE { name 'Lower Austria', country 'A', population 1507000, area 19170.0, capital 'St. Polten' } };
INSERT Province RELATION { TUPLE { name 'Jihocesky', country 'CZ', population 702000, area 11345.0, capital 'Ceske Budejovice' } };
INSERT Province RELATION { TUPLE { name 'Jihomoravsky', country 'CZ', population 2059000, area 15028.0, capital 'Brno' } };
INSERT Province RELATION { TUPLE { name 'Severocesky', country 'CZ', population 1190000, area 7819.0, capital 'Usti nad Labem' } };
INSERT Province RELATION { TUPLE { name 'Severomoravsky', country 'CZ', population 1976000, area 11067.0, capital 'Ostrava' } };
INSERT Province RELATION { TUPLE { name 'Praha', country 'CZ', population 2329000, area 11490.0, capital 'Prague' } };
INSERT Province RELATION { TUPLE { name 'Vychodocesky', country 'CZ', population 1240000, area 11240.0, capital 'Hradec Kralove' } };
INSERT Province RELATION { TUPLE { name 'Zapadocesky', country 'CZ', population 869000, area 10875.0, capital 'Plzen' } };
INSERT Province RELATION { TUPLE { name 'Baden Wurttemberg', country 'D', population 10272069, area 35742.0, capital 'Stuttgart' } };
INSERT Province RELATION { TUPLE { name 'Bayern', country 'D', population 11921944, area 70546.0, capital 'Munich' } };
INSERT Province RELATION { TUPLE { name 'Berlin', country 'D', population 3472009, area 889.0, capital 'Berlin' } };
INSERT Province RELATION { TUPLE { name 'Brandenburg', country 'D', population 2536747, area 29480.0, capital 'Potsdam' } };
INSERT Province RELATION { TUPLE { name 'Bremen', country 'D', population 680000, area 404.0, capital 'Bremen' } };
INSERT Province RELATION { TUPLE { name 'Hamburg', country 'D', population 1705872, area 755.0, capital 'Hamburg' } };
INSERT Province RELATION { TUPLE { name 'Hessen', country 'D', population 5980693, area 21115.0, capital 'Wiesbaden' } };
INSERT Province RELATION { TUPLE { name 'Mecklenburg Vorpommern', country 'D', population 1832298, area 23170.0, capital 'Schwerin' } };
INSERT Province RELATION { TUPLE { name 'Niedersachsen', country 'D', population 7715363, area 47609.0, capital 'Hannover' } };
INSERT Province RELATION { TUPLE { name 'Nordrhein Westfalen', country 'D', population 17816079, area 34077.0, capital 'Dusseldorf' } };
INSERT Province RELATION { TUPLE { name 'Rheinland Pfalz', country 'D', population 3951573, area 19851.0, capital 'Mainz' } };
INSERT Province RELATION { TUPLE { name 'Saarland', country 'D', population 1084201, area 2570.0, capital 'Saarbrucken' } };
INSERT Province RELATION { TUPLE { name 'Sachsen', country 'D', population 4584345, area 18412.0, capital 'Dresden' } };
INSERT Province RELATION { TUPLE { name 'Sachsen Anhalt', country 'D', population 2759213, area 20446.0, capital 'Magdeburg' } };
INSERT Province RELATION { TUPLE { name 'Schleswig Holstein', country 'D', population 2708392, area 15738.0, capital 'Kiel' } };
INSERT Province RELATION { TUPLE { name 'Thuringen', country 'D', population 2517776, area 16171.0, capital 'Erfurt' } };
INSERT Province RELATION { TUPLE { name 'Baranya', country 'H', population 417100, area 4487.0, capital 'Pecs' } };
INSERT Province RELATION { TUPLE { name 'Bacs Kiskun', country 'H', population 540800, area 8363.0, capital 'Kecskemet' } };
INSERT Province RELATION { TUPLE { name 'Bekes', country 'H', population 404000, area 5632.0, capital 'Bekescaba' } };
INSERT Province RELATION { TUPLE { name 'Borsod Abauj Zemplen', country 'H', population 749100, area 7248.0, capital 'Miskolc' } };
INSERT Province RELATION { TUPLE { name 'Csongrad', country 'H', population 437600, area 4263.0, capital 'Hodmezovasarhely' } };
INSERT Province RELATION { TUPLE { name 'Fejer', country 'H', population 422500, area 4374.0, capital 'Szekesfehervar' } };
INSERT Province RELATION { TUPLE { name 'Gyor Sopron', country 'H', population 426800, area 4012.0, capital 'Gyor' } };
INSERT Province RELATION { TUPLE { name 'Hajdu Bihar', country 'H', population 549700, area 6212.0, capital 'Debrecen' } };
INSERT Province RELATION { TUPLE { name 'Heves', country 'H', population 330200, area 3637.0, capital 'Eger' } };
INSERT Province RELATION { TUPLE { name 'Komarom Esztergom', country 'H', population 312900, area 2250.0, capital 'Tatabanya' } };
INSERT Province RELATION { TUPLE { name 'Nograd', country 'H', population 222700, area 2544.0, capital 'Salgotarjan' } };
INSERT Province RELATION { TUPLE { name 'Pest', country 'H', population 957900, area 6394.0, capital 'Budapest' } };
INSERT Province RELATION { TUPLE { name 'Somogy', country 'H', population 340000, area 6035.0, capital 'Kaposvar' } };
INSERT Province RELATION { TUPLE { name 'Szabolcs Szatmar', country 'H', population 563500, area 5938.0, capital 'Nyiregyhaza' } };
INSERT Province RELATION { TUPLE { name 'Szolnok', country 'H', population 420900, area 5608.0, capital 'Szolnok' } };
INSERT Province RELATION { TUPLE { name 'Tolna', country 'H', population 251000, area 3702.0, capital 'Szekszard' } };
INSERT Province RELATION { TUPLE { name 'Vas', country 'H', population 273900, area 3337.0, capital 'Szombathely' } };
INSERT Province RELATION { TUPLE { name 'Veszprem', country 'H', population 378300, area 4689.0, capital 'Veszprem' } };
INSERT Province RELATION { TUPLE { name 'Zala', country 'H', population 302600, area 3786.0, capital 'Zalaegerszeg' } };
INSERT Province RELATION { TUPLE { name 'Budapest (munic.)', country 'H', population 2008500, area 525.0, capital 'Budapest' } };
INSERT Province RELATION { TUPLE { name 'Debrecen (munic.)', country 'H', population 217300, area 446.0, capital 'Debrecen' } };
INSERT Province RELATION { TUPLE { name 'Gyor (munic.)', country 'H', population 130600, area 175.0, capital 'Gyor' } };
INSERT Province RELATION { TUPLE { name 'Miskolc (munic.)', country 'H', population 191000, area 224.0, capital 'Miskolc' } };
INSERT Province RELATION { TUPLE { name 'Pecs (munic.)', country 'H', population 171600, area 113.0, capital 'Pecs' } };
INSERT Province RELATION { TUPLE { name 'Szeged (munic.)', country 'H', population 178500, area 145.0, capital 'Szeged' } };
INSERT Province RELATION { TUPLE { name 'Piemonte', country 'I', population 4307000, area 25399.0, capital 'Turin' } };
INSERT Province RELATION { TUPLE { name 'Valle dAosta', country 'I', population 118000, area 3262.0, capital 'Aosta' } };
INSERT Province RELATION { TUPLE { name 'Lombardia', country 'I', population 8901000, area 23857.0, capital 'Milan' } };
INSERT Province RELATION { TUPLE { name 'Trentino Alto Adige', country 'I', population 904000, area 13618.0, capital 'Bolzano' } };
INSERT Province RELATION { TUPLE { name 'Veneto', country 'I', population 4415000, area 18364.0, capital 'Venice' } };
INSERT Province RELATION { TUPLE { name 'Friuli Venezia Giulia', country 'I', population 1193000, area 7845.0, capital 'Trieste' } };
INSERT Province RELATION { TUPLE { name 'Liguria', country 'I', population 1663000, area 5418.0, capital 'Genua' } };
INSERT Province RELATION { TUPLE { name 'Emilia Romagna', country 'I', population 3924000, area 22123.0, capital 'Bologna' } };
INSERT Province RELATION { TUPLE { name 'Toscana', country 'I', population 3528000, area 22992.0, capital 'Firenze' } };
INSERT Province RELATION { TUPLE { name 'Umbria', country 'I', population 819000, area 8456.0, capital 'Perugia' } };
INSERT Province RELATION { TUPLE { name 'Marche', country 'I', population 1438000, area 9693.0, capital 'Ancona' } };
INSERT Province RELATION { TUPLE { name 'Lazio', country 'I', population 5185000, area 17203.0, capital 'Rome' } };
INSERT Province RELATION { TUPLE { name 'Abruzzo', country 'I', population 1263000, area 10794.0, capital 'LAquila' } };
INSERT Province RELATION { TUPLE { name 'Molise', country 'I', population 332000, area 4438.0, capital 'Campobasso' } };
INSERT Province RELATION { TUPLE { name 'Campania', country 'I', population 5709000, area 13595.0, capital 'Napoli' } };
INSERT Province RELATION { TUPLE { name 'Puglia', country 'I', population 4066000, area 19348.0, capital 'Bari' } };
INSERT Province RELATION { TUPLE { name 'Basilicata', country 'I', population 611000, area 9992.0, capital 'Potenza' } };
INSERT Province RELATION { TUPLE { name 'Calabria', country 'I', population 2080000, area 15080.0, capital 'Catanzaro' } };
INSERT Province RELATION { TUPLE { name 'Sicilia', country 'I', population 5025000, area 25709.0, capital 'Palermo' } };
INSERT Province RELATION { TUPLE { name 'Sardegna', country 'I', population 1657000, area 24090.0, capital 'Cagliari' } };
INSERT Province RELATION { TUPLE { name 'AG', country 'CH', population 528887, area 1403.0, capital 'Aarau' } };
INSERT Province RELATION { TUPLE { name 'AR', country 'CH', population 54104, area 242.0, capital 'Herisau' } };
INSERT Province RELATION { TUPLE { name 'AI', country 'CH', population 14750, area 172.0, capital 'Appenzell' } };
INSERT Province RELATION { TUPLE { name 'BL', country 'CH', population 252331, area 517.0, capital 'Liestal' } };
INSERT Province RELATION { TUPLE { name 'BS', country 'CH', population 195759, area 37.0, capital 'Basel' } };
INSERT Province RELATION { TUPLE { name 'BE', country 'CH', population 941952, area 5960.0, capital 'Bern' } };
INSERT Province RELATION { TUPLE { name 'FR', country 'CH', population 224552, area 1670.0, capital 'Fribourg' } };
INSERT Province RELATION { TUPLE { name 'GE', country 'CH', population 395466, area 282.0, capital 'Geneva' } };
INSERT Province RELATION { TUPLE { name 'GL', country 'CH', population 39410, area 685.0, capital 'Glarus' } };
INSERT Province RELATION { TUPLE { name 'GR', country 'CH', population 185063, area 7105.0, capital 'Chur' } };
INSERT Province RELATION { TUPLE { name 'JU', country 'CH', population 69188, area 836.0, capital 'Delemont' } };
INSERT Province RELATION { TUPLE { name 'LU', country 'CH', population 340536, area 1493.0, capital 'Luzern' } };
INSERT Province RELATION { TUPLE { name 'NE', country 'CH', population 165258, area 803.0, capital 'Neuchatel' } };
INSERT Province RELATION { TUPLE { name 'NW', country 'CH', population 36466, area 276.0, capital 'Stans' } };
INSERT Province RELATION { TUPLE { name 'OW', country 'CH', population 31310, area 490.0, capital 'Sarnen' } };
INSERT Province RELATION { TUPLE { name 'SG', country 'CH', population 442350, area 2025.0, capital 'Sankt Gallen' } };
INSERT Province RELATION { TUPLE { name 'SH', country 'CH', population 74035, area 298.0, capital 'Schaffhausen' } };
INSERT Province RELATION { TUPLE { name 'SZ', country 'CH', population 122409, area 908.0, capital 'Schwyz' } };
INSERT Province RELATION { TUPLE { name 'SO', country 'CH', population 239264, area 790.0, capital 'Solothurn' } };
INSERT Province RELATION { TUPLE { name 'TG', country 'CH', population 223372, area 990.0, capital 'Frauenfeld' } };
INSERT Province RELATION { TUPLE { name 'TI', country 'CH', population 305199, area 2812.0, capital 'Bellinzona' } };
INSERT Province RELATION { TUPLE { name 'UR', country 'CH', population 35876, area 1076.0, capital 'Altdorf' } };
INSERT Province RELATION { TUPLE { name 'VS', country 'CH', population 271291, area 5224.0, capital 'Sion' } };
INSERT Province RELATION { TUPLE { name 'VD', country 'CH', population 605677, area 3211.0, capital 'Lausanne' } };
INSERT Province RELATION { TUPLE { name 'ZG', country 'CH', population 92392, area 238.0, capital 'Zug' } };
INSERT Province RELATION { TUPLE { name 'ZH', country 'CH', population 1175457, area 1728.0, capital 'Zurich' } };
INSERT Province RELATION { TUPLE { name 'Warszwaskie', country 'PL', population 2421000, area 3788.0, capital 'Warsaw' } };
INSERT Province RELATION { TUPLE { name 'Bialskopodlaskie', country 'PL', population 306700, area 5348.0, capital 'Biala Podlaska' } };
INSERT Province RELATION { TUPLE { name 'Bialostockie', country 'PL', population 697000, area 10055.0, capital 'Bialystok' } };
INSERT Province RELATION { TUPLE { name 'Bielskie', country 'PL', population 911500, area 3704.0, capital 'Bielsko Biala' } };
INSERT Province RELATION { TUPLE { name 'Bydgoskie', country 'PL', population 1120300, area 10349.0, capital 'Bydgoszcz' } };
INSERT Province RELATION { TUPLE { name 'Chelmskie', country 'PL', population 248500, area 3866.0, capital 'Chelm' } };
INSERT Province RELATION { TUPLE { name 'Ciechanowskie', country 'PL', population 431400, area 6362.0, capital 'Ciechanow' } };
INSERT Province RELATION { TUPLE { name 'Czestochowskie', country 'PL', population 748000, area 6182.0, capital 'Czestochowa' } };
INSERT Province RELATION { TUPLE { name 'Elblaskie', country 'PL', population 483200, area 6103.0, capital 'Elblag' } };
INSERT Province RELATION { TUPLE { name 'Gdanskie', country 'PL', population 1445000, area 7394.0, capital 'Gdansk' } };
INSERT Province RELATION { TUPLE { name 'Gorzowskie', country 'PL', population 505600, area 8484.0, capital 'Gorzow Wielkopolskie' } };
INSERT Province RELATION { TUPLE { name 'Jeleniogorskie', country 'PL', population 519200, area 4379.0, capital 'Jelenia Gora' } };
INSERT Province RELATION { TUPLE { name 'Kaliskie', country 'PL', population 715600, area 6512.0, capital 'Kalisz' } };
INSERT Province RELATION { TUPLE { name 'Katowickie', country 'PL', population 4013200, area 6650.0, capital 'Katowice' } };
INSERT Province RELATION { TUPLE { name 'Kieleckie', country 'PL', population 1127700, area 9211.0, capital 'Kielce' } };
INSERT Province RELATION { TUPLE { name 'Koninskie', country 'PL', population 472400, area 5139.0, capital 'Konin' } };
INSERT Province RELATION { TUPLE { name 'Koszalinskie', country 'PL', population 513700, area 8470.0, capital 'Koszalin' } };
INSERT Province RELATION { TUPLE { name 'Krakowskie', country 'PL', population 1238100, area 3254.0, capital 'Krakow' } };
INSERT Province RELATION { TUPLE { name 'Krosnienskie', country 'PL', population 500700, area 5702.0, capital 'Krosno' } };
INSERT Province RELATION { TUPLE { name 'Legnickie', country 'PL', population 521500, area 4037.0, capital 'Legnica' } };
INSERT Province RELATION { TUPLE { name 'Leszczynskie', country 'PL', population 391500, area 4154.0, capital 'Leszno' } };
INSERT Province RELATION { TUPLE { name 'Lubelskie', country 'PL', population 1022600, area 6792.0, capital 'Lublin' } };
INSERT Province RELATION { TUPLE { name 'Lomzynskie', country 'PL', population 349000, area 6684.0, capital 'Lomza' } };
INSERT Province RELATION { TUPLE { name 'Lodzkie', country 'PL', population 1132400, area 1523.0, capital 'Lodz' } };
INSERT Province RELATION { TUPLE { name 'Nowosadeckie', country 'PL', population 709500, area 5576.0, capital 'Nowy Sacz' } };
INSERT Province RELATION { TUPLE { name 'Olsztynskie', country 'PL', population 761300, area 12327.0, capital 'Olsztyn' } };
INSERT Province RELATION { TUPLE { name 'Opolskie', country 'PL', population 1023800, area 8535.0, capital 'Opole' } };
INSERT Province RELATION { TUPLE { name 'Ostroleckie', country 'PL', population 400500, area 6498.0, capital 'Ostroleka' } };
INSERT Province RELATION { TUPLE { name 'Pilskie', country 'PL', population 485700, area 8205.0, capital 'Pila' } };
INSERT Province RELATION { TUPLE { name 'Piotrkowskie', country 'PL', population 644200, area 6266.0, capital 'Piotrkow Trybunalski' } };
INSERT Province RELATION { TUPLE { name 'Plockie', country 'PL', population 518600, area 5117.0, capital 'Plock' } };
INSERT Province RELATION { TUPLE { name 'Poznanskie', country 'PL', population 1344200, area 8151.0, capital 'Poznan' } };
INSERT Province RELATION { TUPLE { name 'Przemyskie', country 'PL', population 409600, area 4437.0, capital 'Przemysl' } };
INSERT Province RELATION { TUPLE { name 'Radomskie', country 'PL', population 755500, area 7294.0, capital 'Radom' } };
INSERT Province RELATION { TUPLE { name 'Rzeszowskie', country 'PL', population 734100, area 4397.0, capital 'Rzeszow' } };
INSERT Province RELATION { TUPLE { name 'Siedleckie', country 'PL', population 655300, area 8499.0, capital 'Siedlce' } };
INSERT Province RELATION { TUPLE { name 'Sieradzkie', country 'PL', population 408700, area 4869.0, capital 'Sieradz' } };
INSERT Province RELATION { TUPLE { name 'Skierniewickie', country 'PL', population 421700, area 3960.0, capital 'Skierniewice' } };
INSERT Province RELATION { TUPLE { name 'Slupskie', country 'PL', population 419300, area 7453.0, capital 'Slupsk' } };
INSERT Province RELATION { TUPLE { name 'Suwalskie', country 'PL', population 477100, area 10490.0, capital 'Suwalki' } };
INSERT Province RELATION { TUPLE { name 'Szczecinskie', country 'PL', population 979500, area 9982.0, capital 'Szczecin' } };
INSERT Province RELATION { TUPLE { name 'Tarnobrzeskie', country 'PL', population 604300, area 6283.0, capital 'Tarnobrzeg' } };
INSERT Province RELATION { TUPLE { name 'Tarnowskie', country 'PL', population 678400, area 4151.0, capital 'Tarnow' } };
INSERT Province RELATION { TUPLE { name 'Torunskie', country 'PL', population 662600, area 5348.0, capital 'Torun' } };
INSERT Province RELATION { TUPLE { name 'Walbrzyskie', country 'PL', population 740000, area 4168.0, capital 'Walbrzych' } };
INSERT Province RELATION { TUPLE { name 'Wloclawskie', country 'PL', population 430800, area 4402.0, capital 'Wloclawek' } };
INSERT Province RELATION { TUPLE { name 'Wroclawskie', country 'PL', population 1132800, area 6287.0, capital 'Wroclaw' } };
INSERT Province RELATION { TUPLE { name 'Zamojskie', country 'PL', population 490800, area 6980.0, capital 'Zamosc' } };
INSERT Province RELATION { TUPLE { name 'Zielonogorskie', country 'PL', population 664700, area 8868.0, capital 'Zielona Gora' } };
INSERT Province RELATION { TUPLE { name 'Cherkaska', country 'UA', population 1530900, area 20900.0, capital 'Cherkasy' } };
INSERT Province RELATION { TUPLE { name 'Chernihivska', country 'UA', population 938600, area 31900.0, capital 'Chernihiv' } };
INSERT Province RELATION { TUPLE { name 'Chernivetska', country 'UA', population 1405800, area 8100.0, capital 'Chernivtsi' } };
INSERT Province RELATION { TUPLE { name 'Dnipropetrovska', country 'UA', population 3908700, area 31900.0, capital 'Dnipropetrovsk' } };
INSERT Province RELATION { TUPLE { name 'Donetska', country 'UA', population 5346700, area 26500.0, capital 'Donetsk' } };
INSERT Province RELATION { TUPLE { name 'Ivano Frankivska', country 'UA', population 1442900, area 13900.0, capital 'Ivano Frankivsk' } };
INSERT Province RELATION { TUPLE { name 'Kharkivska', country 'UA', population 3194800, area 31400.0, capital 'Kharkiv' } };
INSERT Province RELATION { TUPLE { name 'Khersonska', country 'UA', population 1258700, area 28500.0, capital 'Kherson' } };
INSERT Province RELATION { TUPLE { name 'Khmelnytska', country 'UA', population 1520600, area 20600.0, capital 'Khmelnytskyy' } };
INSERT Province RELATION { TUPLE { name 'Kyyivska', country 'UA', population 4589800, area 28900.0, capital 'Kiev' } };
INSERT Province RELATION { TUPLE { name 'Kirovohradska', country 'UA', population 1245300, area 24600.0, capital 'Kirovohrad' } };
INSERT Province RELATION { TUPLE { name 'Luhanska', country 'UA', population 2871100, area 26700.0, capital 'Luhansk' } };
INSERT Province RELATION { TUPLE { name 'Lvivska', country 'UA', population 2764400, area 21800.0, capital 'Lviv' } };
INSERT Province RELATION { TUPLE { name 'Mykolayivska', country 'UA', population 1342400, area 24600.0, capital 'Mykolayiv' } };
INSERT Province RELATION { TUPLE { name 'Odeska', country 'UA', population 2635300, area 33300.0, capital 'Odesa' } };
INSERT Province RELATION { TUPLE { name 'Poltavska', country 'UA', population 1756900, area 28800.0, capital 'Poltava' } };
INSERT Province RELATION { TUPLE { name 'Rivnenska', country 'UA', population 1176800, area 20100.0, capital 'Rivne' } };
INSERT Province RELATION { TUPLE { name 'Sumska', country 'UA', population 1430200, area 23800.0, capital 'Sumy' } };
INSERT Province RELATION { TUPLE { name 'Ternopilska', country 'UA', population 1175100, area 13800.0, capital 'Ternopil' } };
INSERT Province RELATION { TUPLE { name 'Vinnytska', country 'UA', population 1914400, area 26500.0, capital 'Vinnytsya' } };
INSERT Province RELATION { TUPLE { name 'Volynska', country 'UA', population 1069000, area 20200.0, capital 'Lutsk' } };
INSERT Province RELATION { TUPLE { name 'Zakarpatska', country 'UA', population 1265900, area 12800.0, capital 'Uzhhorod' } };
INSERT Province RELATION { TUPLE { name 'Zaporizka', country 'UA', population 2099600, area 27200.0, capital 'Zaporizhzhya' } };
INSERT Province RELATION { TUPLE { name 'Zhytomyrska', country 'UA', population 1510700, area 29900.0, capital 'Zhytomyr' } };
INSERT Province RELATION { TUPLE { name 'Krym', country 'UA', population 2549800, area 27000.0, capital 'Simferopol' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Karelia', country 'R', population 785000, area 172400.0, capital 'Petrozavodsk' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Komi', country 'R', population 1185500, area 415900.0, capital 'Syktyvkar' } };
INSERT Province RELATION { TUPLE { name 'Arkhangelskaya oblast', country 'R', population 1520800, area 587400.0, capital 'Arkhangelsk' } };
INSERT Province RELATION { TUPLE { name 'Vologodskaya oblast', country 'R', population 1349800, area 145700.0, capital 'Vologda' } };
INSERT Province RELATION { TUPLE { name 'Murmanskaya oblast', country 'R', population 1048000, area 144900.0, capital 'Murmansk' } };
INSERT Province RELATION { TUPLE { name 'Kaliningradskaya oblast', country 'R', population 932200, area 15100.0, capital 'Kaliningrad' } };
INSERT Province RELATION { TUPLE { name 'Sankt Peterburg', country 'R', population 4801500, area 0.0, capital 'Sankt Peterburg' } };
INSERT Province RELATION { TUPLE { name 'Leningradskaya oblast', country 'R', population 1675900, area 85900.0, capital 'Sankt Peterburg' } };
INSERT Province RELATION { TUPLE { name 'Novgorodskaya oblast', country 'R', population 742600, area 55300.0, capital 'Novgorod' } };
INSERT Province RELATION { TUPLE { name 'Pskovskaya oblast', country 'R', population 832300, area 55300.0, capital 'Pskov' } };
INSERT Province RELATION { TUPLE { name 'Bryanskaya oblast', country 'R', population 1479700, area 34900.0, capital 'Bryansk' } };
INSERT Province RELATION { TUPLE { name 'Vladimirskaya oblast', country 'R', population 1644700, area 29000.0, capital 'Vladimir' } };
INSERT Province RELATION { TUPLE { name 'Ivanovskaya oblast', country 'R', population 1266400, area 23900.0, capital 'Ivanovo' } };
INSERT Province RELATION { TUPLE { name 'Kaluzhskaya oblast', country 'R', population 1097300, area 29900.0, capital 'Kaluga' } };
INSERT Province RELATION { TUPLE { name 'Kostromskaya oblast', country 'R', population 805700, area 60100.0, capital 'Kostroma' } };
INSERT Province RELATION { TUPLE { name 'Moskva', country 'R', population 8664400, area 0.0, capital 'Moscow' } };
INSERT Province RELATION { TUPLE { name 'Moskovskaya oblast', country 'R', population 6596600, area 47000.0, capital 'Moscow' } };
INSERT Province RELATION { TUPLE { name 'Orjolskaya oblast', country 'R', population 914000, area 24700.0, capital 'Orel' } };
INSERT Province RELATION { TUPLE { name 'Ryazanskaya oblast', country 'R', population 1325300, area 39600.0, capital 'Ryazan' } };
INSERT Province RELATION { TUPLE { name 'Smolenskaya oblast', country 'R', population 1172400, area 49800.0, capital 'Smolensk' } };
INSERT Province RELATION { TUPLE { name 'Tverskaya oblast', country 'R', population 1650600, area 84100.0, capital 'Tver' } };
INSERT Province RELATION { TUPLE { name 'Tulskaya oblast', country 'R', population 1814500, area 25700.0, capital 'Tula' } };
INSERT Province RELATION { TUPLE { name 'Yaroslavskaya oblast', country 'R', population 1451400, area 36400.0, capital 'Yaroslavl' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Mariy El', country 'R', population 766300, area 23200.0, capital 'Yoshkar Ola' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Mordovia', country 'R', population 955800, area 26200.0, capital 'Saransk' } };
INSERT Province RELATION { TUPLE { name 'Chuvash Republic', country 'R', population 1360800, area 18300.0, capital 'Cheboksary' } };
INSERT Province RELATION { TUPLE { name 'Kirovskaya oblast', country 'R', population 1634500, area 120800.0, capital 'Kirov' } };
INSERT Province RELATION { TUPLE { name 'Nizhegorodskaya oblast', country 'R', population 3726400, area 74800.0, capital 'Nizhniy Novgorod' } };
INSERT Province RELATION { TUPLE { name 'Belgorodskaya oblast', country 'R', population 1469100, area 27100.0, capital 'Belgorod' } };
INSERT Province RELATION { TUPLE { name 'Voronezhskaya oblast', country 'R', population 2503800, area 52400.0, capital 'Voronezh' } };
INSERT Province RELATION { TUPLE { name 'Kurskaya oblast', country 'R', population 1346900, area 29800.0, capital 'Kursk' } };
INSERT Province RELATION { TUPLE { name 'Lipetskaya oblast', country 'R', population 1250200, area 24100.0, capital 'Lipetsk' } };
INSERT Province RELATION { TUPLE { name 'Tambovskaya oblast', country 'R', population 1310600, area 34300.0, capital 'Tambov' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Kalmykiya', country 'R', population 318500, area 76100.0, capital 'Elista' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Tatarstan', country 'R', population 3760500, area 68000.0, capital 'Kazan' } };
INSERT Province RELATION { TUPLE { name 'Astrakhanskaya oblast', country 'R', population 1028900, area 44100.0, capital 'Astrakhan' } };
INSERT Province RELATION { TUPLE { name 'Volgogradskaya oblast', country 'R', population 2703700, area 113900.0, capital 'Volgograd' } };
INSERT Province RELATION { TUPLE { name 'Penzenskaya oblast', country 'R', population 1562300, area 43200.0, capital 'Penza' } };
INSERT Province RELATION { TUPLE { name 'Samarskaya oblast', country 'R', population 3311500, area 53600.0, capital 'Samara' } };
INSERT Province RELATION { TUPLE { name 'Saratovskaya oblast', country 'R', population 2739500, area 100200.0, capital 'Saratov' } };
INSERT Province RELATION { TUPLE { name 'Ulyanovskaya oblast', country 'R', population 1495200, area 37300.0, capital 'Simbirsk' } };
INSERT Province RELATION { TUPLE { name 'Rostovskaya oblast', country 'R', population 4426400, area 100800.0, capital 'Rostov no Donu' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Bashkortostan', country 'R', population 4096600, area 143600.0, capital 'Ufa' } };
INSERT Province RELATION { TUPLE { name 'Udmurt Republic', country 'R', population 1639100, area 42100.0, capital 'Izhevsk' } };
INSERT Province RELATION { TUPLE { name 'Orenburgskaya oblast', country 'R', population 2228600, area 124000.0, capital 'Orenburg' } };
INSERT Province RELATION { TUPLE { name 'Permskaya oblast', country 'R', population 3009400, area 160600.0, capital 'Perm' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Adygeya', country 'R', population 450500, area 7600.0, capital 'Maykop' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Dagestan', country 'R', population 2097500, area 50300.0, capital 'Makhachkala' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Ingushetiya', country 'R', population 299700, area 3750.0, capital 'Nazran' } };
INSERT Province RELATION { TUPLE { name 'Kabardino Balkar Rep.', country 'R', population 789900, area 12500.0, capital 'Nalchik' } };
INSERT Province RELATION { TUPLE { name 'Karachayevo Cherkessk Rep.', country 'R', population 436300, area 14100.0, capital 'Cherkessk' } };
INSERT Province RELATION { TUPLE { name 'Rep. of North Ossetiya', country 'R', population 662600, area 8000.0, capital 'Vladikavkaz' } };
INSERT Province RELATION { TUPLE { name 'Chechen Rep.', country 'R', population 865100, area 12300.0, capital 'Grozny' } };
INSERT Province RELATION { TUPLE { name 'Krasnodarsky kray', country 'R', population 5043900, area 76000.0, capital 'Krasnodar' } };
INSERT Province RELATION { TUPLE { name 'Stavropolsky kray', country 'R', population 2667000, area 66500.0, capital 'Stavropol' } };
INSERT Province RELATION { TUPLE { name 'Kurganskaya oblast', country 'R', population 1112200, area 71000.0, capital 'Kurgan' } };
INSERT Province RELATION { TUPLE { name 'Sverdlovskaya oblast', country 'R', population 4686300, area 194300.0, capital 'Yekaterinburg' } };
INSERT Province RELATION { TUPLE { name 'Chelyabinskaya oblast', country 'R', population 3688700, area 87900.0, capital 'Chelyabinsk' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Altay', country 'R', population 201600, area 92600.0, capital 'Gorno Altaysk' } };
INSERT Province RELATION { TUPLE { name 'Altayskiy kray', country 'R', population 2690100, area 169100.0, capital 'Barnaul' } };
INSERT Province RELATION { TUPLE { name 'Kemerovskaya oblast', country 'R', population 3063500, area 95500.0, capital 'Kemerovo' } };
INSERT Province RELATION { TUPLE { name 'Novosibirskaya oblast', country 'R', population 2748600, area 178200.0, capital 'Novosibirsk' } };
INSERT Province RELATION { TUPLE { name 'Omskaya oblast', country 'R', population 2176400, area 139700.0, capital 'Omsk' } };
INSERT Province RELATION { TUPLE { name 'Tomskaya oblast', country 'R', population 1077600, area 316900.0, capital 'Tomsk' } };
INSERT Province RELATION { TUPLE { name 'Tyumenskaya oblast', country 'R', population 3169900, area 1435200.0, capital 'Tyumen' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Buryatiya', country 'R', population 1052500, area 351300.0, capital 'Ulan Ude' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Tyva', country 'R', population 309700, area 170500.0, capital 'Kyzyl' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Khakassiya', country 'R', population 585800, area 61900.0, capital 'Abakan' } };
INSERT Province RELATION { TUPLE { name 'Krasnoyarskiy kray', country 'R', population 3105900, area 2339700.0, capital 'Krasnoyarsk' } };
INSERT Province RELATION { TUPLE { name 'Irkutskaya oblast', country 'R', population 2795200, area 767900.0, capital 'Irkutsk' } };
INSERT Province RELATION { TUPLE { name 'Chitinskaya oblast', country 'R', population 1295000, area 431500.0, capital 'Chita' } };
INSERT Province RELATION { TUPLE { name 'Rep. of Sakha', country 'R', population 1022800, area 3103200.0, capital 'Yakutsk' } };
INSERT Province RELATION { TUPLE { name 'Yevreyskaya avt. oblast', country 'R', population 209900, area 36000.0, capital 'Birobidzhan' } };
INSERT Province RELATION { TUPLE { name 'Chukotsky ao', country 'R', population 90500, area 737700.0, capital 'Anadyr' } };
INSERT Province RELATION { TUPLE { name 'Primorsky kray', country 'R', population 2255400, area 165900.0, capital 'Vladivostok' } };
INSERT Province RELATION { TUPLE { name 'Khabarovskiy kray', country 'R', population 1571200, area 752600.0, capital 'Khabarovsk' } };
INSERT Province RELATION { TUPLE { name 'Amurskaya oblast', country 'R', population 1037800, area 363700.0, capital 'Blagoveshchensk' } };
INSERT Province RELATION { TUPLE { name 'Kamchatskaya oblast', country 'R', population 411100, area 472300.0, capital 'Petropavlovsk Kamchatsky' } };
INSERT Province RELATION { TUPLE { name 'Magadanskaya oblast', country 'R', population 258200, area 461400.0, capital 'Magadan' } };
INSERT Province RELATION { TUPLE { name 'Sakhalinskaya oblast', country 'R', population 647800, area 87100.0, capital 'Yuzhno Sakhalinsk' } };
INSERT Province RELATION { TUPLE { name 'Antwerp', country 'B', population 1610695, area 2867.0, capital 'Antwerp' } };
INSERT Province RELATION { TUPLE { name 'Brabant', country 'B', population 2253794, area 3358.0, capital 'Brussels' } };
INSERT Province RELATION { TUPLE { name 'East Flanders', country 'B', population 1340056, area 2982.0, capital 'Ghent' } };
INSERT Province RELATION { TUPLE { name 'Hainaut', country 'B', population 1283252, area 3787.0, capital 'Mons' } };
INSERT Province RELATION { TUPLE { name 'Liege', country 'B', population 1006081, area 3862.0, capital 'Liege' } };
INSERT Province RELATION { TUPLE { name 'Limburg', country 'B', population 755593, area 2422.0, capital 'Hasselt' } };
INSERT Province RELATION { TUPLE { name 'Luxembourg', country 'B', population 234664, area 4441.0, capital 'Arlon' } };
INSERT Province RELATION { TUPLE { name 'Namur', country 'B', population 426305, area 3665.0, capital 'Namur' } };
INSERT Province RELATION { TUPLE { name 'West Flanders', country 'B', population 1111557, area 3134.0, capital 'Brugge' } };
INSERT Province RELATION { TUPLE { name 'Groningen', country 'NL', population 557995, area 2344.0, capital 'Groningen' } };
INSERT Province RELATION { TUPLE { name 'Friesland', country 'NL', population 609579, area 3361.0, capital 'Leeuwarden' } };
INSERT Province RELATION { TUPLE { name 'Drenthe', country 'NL', population 454864, area 2652.0, capital 'Assen' } };
INSERT Province RELATION { TUPLE { name 'Overijssel', country 'NL', population 1050389, area 3337.0, capital 'Zwolle' } };
INSERT Province RELATION { TUPLE { name 'Flevoland', country 'NL', population 262325, area 1425.0, capital 'Lelystad' } };
INSERT Province RELATION { TUPLE { name 'Gelderland', country 'NL', population 1864732, area 4995.0, capital 'Arnhem' } };
INSERT Province RELATION { TUPLE { name 'Utrecht', country 'NL', population 1063460, area 1356.0, capital 'Utrecht' } };
INSERT Province RELATION { TUPLE { name 'Noord Holland', country 'NL', population 2463611, area 265978.0, capital 'Haarlem' } };
INSERT Province RELATION { TUPLE { name 'Zuid Holland', country 'NL', population 3325064, area 2859.0, capital 's Gravenhage' } };
INSERT Province RELATION { TUPLE { name 'Zeeland', country 'NL', population 365846, area 1791.0, capital 'Middelburg' } };
INSERT Province RELATION { TUPLE { name 'Noord Brabant', country 'NL', population 2276207, area 4938.0, capital 's Hertogenbosch' } };
INSERT Province RELATION { TUPLE { name 'Limburg', country 'NL', population 1130050, area 2167.0, capital 'Maastricht' } };
INSERT Province RELATION { TUPLE { name 'Alba', country 'RO', population 428000, area 6231.0, capital 'Alba Iulia' } };
INSERT Province RELATION { TUPLE { name 'Arad', country 'RO', population 507000, area 7652.0, capital 'Arad' } };
INSERT Province RELATION { TUPLE { name 'Arges', country 'RO', population 678000, area 6801.0, capital 'Pitesti' } };
INSERT Province RELATION { TUPLE { name 'Bacau', country 'RO', population 731000, area 6606.0, capital 'Bacau' } };
INSERT Province RELATION { TUPLE { name 'Bihor', country 'RO', population 660000, area 7535.0, capital 'Oradea' } };
INSERT Province RELATION { TUPLE { name 'Bistrita Nasaud', country 'RO', population 328000, area 5305.0, capital 'Bistrita' } };
INSERT Province RELATION { TUPLE { name 'Botosani', country 'RO', population 468000, area 4965.0, capital 'Botosani' } };
INSERT Province RELATION { TUPLE { name 'Braila', country 'RO', population 404000, area 4724.0, capital 'Braila' } };
INSERT Province RELATION { TUPLE { name 'Brasov', country 'RO', population 695000, area 5351.0, capital 'Brasov' } };
INSERT Province RELATION { TUPLE { name 'Bucuresti', country 'RO', population 2319000, area 1521.0, capital 'Bucharest' } };
INSERT Province RELATION { TUPLE { name 'Buzau', country 'RO', population 524000, area 6072.0, capital 'Buzau' } };
INSERT Province RELATION { TUPLE { name 'Calarasi', country 'RO', population 351000, area 5075.0, capital 'Calarasi' } };
INSERT Province RELATION { TUPLE { name 'Caras Severin', country 'RO', population 408000, area 8503.0, capital 'Resita' } };
INSERT Province RELATION { TUPLE { name 'Cluj', country 'RO', population 743000, area 6650.0, capital 'Cluj Napoca' } };
INSERT Province RELATION { TUPLE { name 'Constanta', country 'RO', population 737000, area 7055.0, capital 'Constanta' } };
INSERT Province RELATION { TUPLE { name 'Covasna', country 'RO', population 238000, area 3705.0, capital 'Sfintu Gheorghe' } };
INSERT Province RELATION { TUPLE { name 'Dimbovita', country 'RO', population 570000, area 4035.0, capital 'Tirgoviste' } };
INSERT Province RELATION { TUPLE { name 'Dolj', country 'RO', population 772000, area 7413.0, capital 'Craiova' } };
INSERT Province RELATION { TUPLE { name 'Galati', country 'RO', population 642000, area 4425.0, capital 'Galati' } };
INSERT Province RELATION { TUPLE { name 'Giurgiu', country 'RO', population 325000, area 3810.0, capital 'Giurgiu' } };
INSERT Province RELATION { TUPLE { name 'Gorj', country 'RO', population 388000, area 5641.0, capital 'Tirgu Jiu' } };
INSERT Province RELATION { TUPLE { name 'Harghita', country 'RO', population 363000, area 6610.0, capital 'Miercurea Ciuc' } };
INSERT Province RELATION { TUPLE { name 'Hunedoara', country 'RO', population 567000, area 7016.0, capital 'Deva' } };
INSERT Province RELATION { TUPLE { name 'Ialomita', country 'RO', population 309000, area 4449.0, capital 'Slobozia' } };
INSERT Province RELATION { TUPLE { name 'Iasi', country 'RO', population 810000, area 5469.0, capital 'Iasi' } };
INSERT Province RELATION { TUPLE { name 'Maramures', country 'RO', population 556000, area 6215.0, capital 'Baia Mare' } };
INSERT Province RELATION { TUPLE { name 'Mehedinti', country 'RO', population 329000, area 4900.0, capital 'Drobeta Turnu Severin' } };
INSERT Province RELATION { TUPLE { name 'Mures', country 'RO', population 621000, area 6696.0, capital 'Tirgu Mures' } };
INSERT Province RELATION { TUPLE { name 'Neamt', country 'RO', population 580000, area 5890.0, capital 'Piatra Neamt' } };
INSERT Province RELATION { TUPLE { name 'Olt', country 'RO', population 535000, area 5507.0, capital 'Slatina' } };
INSERT Province RELATION { TUPLE { name 'Prahova', country 'RO', population 877000, area 4694.0, capital 'Ploiesti' } };
INSERT Province RELATION { TUPLE { name 'Salaj', country 'RO', population 269000, area 3850.0, capital 'Zalau' } };
INSERT Province RELATION { TUPLE { name 'Satu Mare', country 'RO', population 417000, area 4405.0, capital 'Satu Mare' } };
INSERT Province RELATION { TUPLE { name 'Sibiu', country 'RO', population 509000, area 5422.0, capital 'Sibiu' } };
INSERT Province RELATION { TUPLE { name 'Suceava', country 'RO', population 699000, area 8555.0, capital 'Suceava' } };
INSERT Province RELATION { TUPLE { name 'Teleorman', country 'RO', population 504000, area 5760.0, capital 'Alexandria' } };
INSERT Province RELATION { TUPLE { name 'Timis', country 'RO', population 726000, area 8692.0, capital 'Timisoara' } };
INSERT Province RELATION { TUPLE { name 'Tulcea', country 'RO', population 275000, area 8430.0, capital 'Tulcea' } };
INSERT Province RELATION { TUPLE { name 'Vaslui', country 'RO', population 468000, area 5297.0, capital 'Vaslui' } };
INSERT Province RELATION { TUPLE { name 'Vilcea', country 'RO', population 430000, area 5705.0, capital 'Rimnicu Vilcea' } };
INSERT Province RELATION { TUPLE { name 'Vrancea', country 'RO', population 394000, area 4863.0, capital 'Focsani' } };
INSERT Province RELATION { TUPLE { name 'Adana', country 'TR', population 1934907, area 17253.0, capital 'Adana' } };
INSERT Province RELATION { TUPLE { name 'Adiyaman', country 'TR', population 513131, area 7614.0, capital 'Adiyaman' } };
INSERT Province RELATION { TUPLE { name 'Afyon', country 'TR', population 739223, area 14230.0, capital 'Afyon' } };
INSERT Province RELATION { TUPLE { name 'Agri', country 'TR', population 437093, area 11376.0, capital 'Agri' } };
INSERT Province RELATION { TUPLE { name 'Aksaray', country 'TR', population 326399, area 7626.0, capital 'Aksaray' } };
INSERT Province RELATION { TUPLE { name 'Amasya', country 'TR', population 357191, area 5520.0, capital 'Amasya' } };
INSERT Province RELATION { TUPLE { name 'Ankara', country 'TR', population 3236626, area 25706.0, capital 'Ankara' } };
INSERT Province RELATION { TUPLE { name 'Antalya', country 'TR', population 1132211, area 20591.0, capital 'Antalya' } };
INSERT Province RELATION { TUPLE { name 'Artvin', country 'TR', population 212833, area 7436.0, capital 'Artvin' } };
INSERT Province RELATION { TUPLE { name 'Aydin', country 'TR', population 824816, area 8007.0, capital 'Aydin' } };
INSERT Province RELATION { TUPLE { name 'Balikesir', country 'TR', population 973314, area 14292.0, capital 'Balikesir' } };
INSERT Province RELATION { TUPLE { name 'Batman', country 'TR', population 344669, area 4694.0, capital 'Batman' } };
INSERT Province RELATION { TUPLE { name 'Bayburt', country 'TR', population 107330, area 3652.0, capital 'Bayburt' } };
INSERT Province RELATION { TUPLE { name 'Bilecik', country 'TR', population 175526, area 4307.0, capital 'Bilecik' } };
INSERT Province RELATION { TUPLE { name 'Bingol', country 'TR', population 250966, area 8125.0, capital 'Bingol' } };
INSERT Province RELATION { TUPLE { name 'Bitlis', country 'TR', population 330115, area 6707.0, capital 'Bitlis' } };
INSERT Province RELATION { TUPLE { name 'Bolu', country 'TR', population 536869, area 11051.0, capital 'Bolu' } };
INSERT Province RELATION { TUPLE { name 'Burdur', country 'TR', population 254899, area 6887.0, capital 'Burdur' } };
INSERT Province RELATION { TUPLE { name 'Bursa', country 'TR', population 1603137, area 11043.0, capital 'Bursa' } };
INSERT Province RELATION { TUPLE { name 'Canakkale', country 'TR', population 432263, area 9737.0, capital 'Canakkale' } };
INSERT Province RELATION { TUPLE { name 'Cankiri', country 'TR', population 279129, area 8454.0, capital 'Cankiri' } };
INSERT Province RELATION { TUPLE { name 'Corum', country 'TR', population 609863, area 12820.0, capital 'Corum' } };
INSERT Province RELATION { TUPLE { name 'Denizli', country 'TR', population 750882, area 11868.0, capital 'Denizli' } };
INSERT Province RELATION { TUPLE { name 'Diyarbakir', country 'TR', population 1094996, area 15355.0, capital 'Diyarbakir' } };
INSERT Province RELATION { TUPLE { name 'Edirne', country 'TR', population 404599, area 6276.0, capital 'Edirne' } };
INSERT Province RELATION { TUPLE { name 'Elazig', country 'TR', population 498225, area 9153.0, capital 'Elazig' } };
INSERT Province RELATION { TUPLE { name 'Erzincan', country 'TR', population 299251, area 11903.0, capital 'Erzincan' } };
INSERT Province RELATION { TUPLE { name 'Erzurum', country 'TR', population 848201, area 25066.0, capital 'Erzurum' } };
INSERT Province RELATION { TUPLE { name 'Eskisehir', country 'TR', population 641057, area 13652.0, capital 'Eskisehir' } };
INSERT Province RELATION { TUPLE { name 'Gaziantep', country 'TR', population 1140594, area 7642.0, capital 'Gaziantep' } };
INSERT Province RELATION { TUPLE { name 'Giresun', country 'TR', population 499087, area 6934.0, capital 'Giresun' } };
INSERT Province RELATION { TUPLE { name 'Gumushane', country 'TR', population 169375, area 6575.0, capital 'Gumushane' } };
INSERT Province RELATION { TUPLE { name 'Hakkari', country 'TR', population 172479, area 7121.0, capital 'Hakkari' } };
INSERT Province RELATION { TUPLE { name 'Hatay', country 'TR', population 1109754, area 5403.0, capital 'Antakya' } };
INSERT Province RELATION { TUPLE { name 'Icel', country 'TR', population 1266995, area 15853.0, capital 'Mersin' } };
INSERT Province RELATION { TUPLE { name 'Isparta', country 'TR', population 434771, area 8933.0, capital 'Isparta' } };
INSERT Province RELATION { TUPLE { name 'Istanbul', country 'TR', population 7309190, area 5712.0, capital 'Istanbul' } };
INSERT Province RELATION { TUPLE { name 'Izmir', country 'TR', population 2694770, area 11973.0, capital 'Izmir' } };
INSERT Province RELATION { TUPLE { name 'Karaman', country 'TR', population 217536, area 9163.0, capital 'Karaman' } };
INSERT Province RELATION { TUPLE { name 'Karamanmaras', country 'TR', population 892952, area 14327.0, capital 'Karaman Maras' } };
INSERT Province RELATION { TUPLE { name 'Kars', country 'TR', population 662155, area 18557.0, capital 'Kars' } };
INSERT Province RELATION { TUPLE { name 'Kastamonu', country 'TR', population 423611, area 13108.0, capital 'Kastamonu' } };
INSERT Province RELATION { TUPLE { name 'Kayseri', country 'TR', population 943484, area 16917.0, capital 'Kayseri' } };
INSERT Province RELATION { TUPLE { name 'Kirikkale', country 'TR', population 349396, area 4365.0, capital 'Kirikkale' } };
INSERT Province RELATION { TUPLE { name 'Kirklareli', country 'TR', population 309512, area 6550.0, capital 'Kirklareli' } };
INSERT Province RELATION { TUPLE { name 'Kirsehir', country 'TR', population 256862, area 6570.0, capital 'Kirsehir' } };
INSERT Province RELATION { TUPLE { name 'Kocaeli', country 'TR', population 936163, area 3626.0, capital 'Izmit' } };
INSERT Province RELATION { TUPLE { name 'Konya', country 'TR', population 1750303, area 38257.0, capital 'Konya' } };
INSERT Province RELATION { TUPLE { name 'Kutahya', country 'TR', population 578020, area 11875.0, capital 'Kutahya' } };
INSERT Province RELATION { TUPLE { name 'Malatya', country 'TR', population 702055, area 12313.0, capital 'Malatya' } };
INSERT Province RELATION { TUPLE { name 'Manisa', country 'TR', population 1154418, area 13810.0, capital 'Manisa' } };
INSERT Province RELATION { TUPLE { name 'Mardin', country 'TR', population 557727, area 8891.0, capital 'Mardin' } };
INSERT Province RELATION { TUPLE { name 'Mugla', country 'TR', population 562809, area 13338.0, capital 'Mugla' } };
INSERT Province RELATION { TUPLE { name 'Mus', country 'TR', population 376543, area 8196.0, capital 'Mus' } };
INSERT Province RELATION { TUPLE { name 'Nevsehir', country 'TR', population 289509, area 5467.0, capital 'Nevsehir' } };
INSERT Province RELATION { TUPLE { name 'Nigde', country 'TR', population 305861, area 7312.0, capital 'Nigde' } };
INSERT Province RELATION { TUPLE { name 'Ordu', country 'TR', population 830105, area 6001.0, capital 'Ordu' } };
INSERT Province RELATION { TUPLE { name 'Rize', country 'TR', population 348776, area 3920.0, capital 'Rize' } };
INSERT Province RELATION { TUPLE { name 'Sakarya', country 'TR', population 683061, area 4817.0, capital 'Sakarya' } };
INSERT Province RELATION { TUPLE { name 'Samsun', country 'TR', population 1158400, area 9579.0, capital 'Samsun' } };
INSERT Province RELATION { TUPLE { name 'Sanliurfa', country 'TR', population 1001455, area 18584.0, capital 'Urfa' } };
INSERT Province RELATION { TUPLE { name 'Siirt', country 'TR', population 243435, area 5406.0, capital 'Siirt' } };
INSERT Province RELATION { TUPLE { name 'Sinop', country 'TR', population 265153, area 5862.0, capital 'Sinop' } };
INSERT Province RELATION { TUPLE { name 'Sirnak', country 'TR', population 262006, area 7172.0, capital 'Sirnak' } };
INSERT Province RELATION { TUPLE { name 'Sivas', country 'TR', population 767481, area 28488.0, capital 'Sivas' } };
INSERT Province RELATION { TUPLE { name 'Tekirdag', country 'TR', population 468842, area 6218.0, capital 'Tekirdag' } };
INSERT Province RELATION { TUPLE { name 'Tokat', country 'TR', population 719251, area 9958.0, capital 'Tokat' } };
INSERT Province RELATION { TUPLE { name 'Trabzon', country 'TR', population 795849, area 4685.0, capital 'Trabzon' } };
INSERT Province RELATION { TUPLE { name 'Tunceli', country 'TR', population 133143, area 7774.0, capital 'Tunceli' } };
INSERT Province RELATION { TUPLE { name 'Usak', country 'TR', population 290283, area 5341.0, capital 'Usak' } };
INSERT Province RELATION { TUPLE { name 'Van', country 'TR', population 637433, area 19069.0, capital 'Van' } };
INSERT Province RELATION { TUPLE { name 'Yozgat', country 'TR', population 579150, area 14123.0, capital 'Yozgat' } };
INSERT Province RELATION { TUPLE { name 'Zonguldak', country 'TR', population 1073560, area 8629.0, capital 'Zonguldak' } };
INSERT Province RELATION { TUPLE { name 'Alvsborg', country 'S', population 444259, area 11395.0, capital 'Vanersborg' } };
INSERT Province RELATION { TUPLE { name 'Blekinge', country 'S', population 151168, area 2941.0, capital 'Karlskrona' } };
INSERT Province RELATION { TUPLE { name 'Gavleborg', country 'S', population 289339, area 18191.0, capital 'Gavle' } };
INSERT Province RELATION { TUPLE { name 'Goteborg och Bohus', country 'S', population 742550, area 5141.0, capital 'Goteborg' } };
INSERT Province RELATION { TUPLE { name 'Gotland', country 'S', population 57383, area 3140.0, capital 'Visby' } };
INSERT Province RELATION { TUPLE { name 'Halland', country 'S', population 257874, area 5454.0, capital 'Halmstad' } };
INSERT Province RELATION { TUPLE { name 'Jamtland', country 'S', population 136009, area 49443.0, capital 'Ostersund' } };
INSERT Province RELATION { TUPLE { name 'Jonkoping', country 'S', population 309738, area 9944.0, capital 'Jonkoping' } };
INSERT Province RELATION { TUPLE { name 'Kalmar', country 'S', population 241883, area 11170.0, capital 'Kalmar' } };
INSERT Province RELATION { TUPLE { name 'Dalarna', country 'S', population 290388, area 28194.0, capital 'Falun' } };
INSERT Province RELATION { TUPLE { name 'Kristianstad', country 'S', population 291468, area 6087.0, capital 'Kristianstad' } };
INSERT Province RELATION { TUPLE { name 'Kronoberg', country 'S', population 178612, area 8458.0, capital 'Vaxjo' } };
INSERT Province RELATION { TUPLE { name 'Malmohus', country 'S', population 786757, area 4938.0, capital 'Malmo' } };
INSERT Province RELATION { TUPLE { name 'Norrbotten', country 'S', population 264834, area 98913.0, capital 'Lulea' } };
INSERT Province RELATION { TUPLE { name 'Orebro', country 'S', population 273608, area 8519.0, capital 'Orebro' } };
INSERT Province RELATION { TUPLE { name 'Ostergotland', country 'S', population 406100, area 10562.0, capital 'Linkoping' } };
INSERT Province RELATION { TUPLE { name 'Skaraborg', country 'S', population 278162, area 7937.0, capital 'Mariestad' } };
INSERT Province RELATION { TUPLE { name 'Sodermanland', country 'S', population 256818, area 6060.0, capital 'Nykoping' } };
INSERT Province RELATION { TUPLE { name 'Stockholm', country 'S', population 1654511, area 6488.0, capital 'Stockholm' } };
INSERT Province RELATION { TUPLE { name 'Uppsala', country 'S', population 273918, area 6989.0, capital 'Uppsala' } };
INSERT Province RELATION { TUPLE { name 'Varmland', country 'S', population 284187, area 17584.0, capital 'Karlstad' } };
INSERT Province RELATION { TUPLE { name 'Vasterbotten', country 'S', population 253835, area 55401.0, capital 'Umea' } };
INSERT Province RELATION { TUPLE { name 'Vasternorrland', country 'S', population 261280, area 21678.0, capital 'Harnosand' } };
INSERT Province RELATION { TUPLE { name 'Vastmanland', country 'S', population 259438, area 6302.0, capital 'Vasteras' } };
INSERT Province RELATION { TUPLE { name 'Aveiro', country 'P', population 656000, area 2808.0, capital 'Aveiro' } };
INSERT Province RELATION { TUPLE { name 'Beja', country 'P', population 167900, area 10225.0, capital 'Beja' } };
INSERT Province RELATION { TUPLE { name 'Braga', country 'P', population 746100, area 2673.0, capital 'Braga' } };
INSERT Province RELATION { TUPLE { name 'Braganca', country 'P', population 158300, area 6608.0, capital 'Braganca' } };
INSERT Province RELATION { TUPLE { name 'Castelo Branco', country 'P', population 214700, area 6675.0, capital 'Castelo Branco' } };
INSERT Province RELATION { TUPLE { name 'Coimbra', country 'P', population 427600, area 3947.0, capital 'Coimbra' } };
INSERT Province RELATION { TUPLE { name 'Evora', country 'P', population 173500, area 7393.0, capital 'Evora' } };
INSERT Province RELATION { TUPLE { name 'Algarve', country 'P', population 340100, area 4960.0, capital 'Faro' } };
INSERT Province RELATION { TUPLE { name 'Guarda', country 'P', population 187800, area 5518.0, capital 'Guarda' } };
INSERT Province RELATION { TUPLE { name 'Leiria', country 'P', population 427800, area 3515.0, capital 'Leiria' } };
INSERT Province RELATION { TUPLE { name 'Lisbon', country 'P', population 2063800, area 2761.0, capital 'Lisbon' } };
INSERT Province RELATION { TUPLE { name 'Portalegre', country 'P', population 134300, area 6065.0, capital 'Portalegre' } };
INSERT Province RELATION { TUPLE { name 'Porto', country 'P', population 1622300, area 2395.0, capital 'Porto' } };
INSERT Province RELATION { TUPLE { name 'Santarem', country 'P', population 442700, area 6747.0, capital 'Santarem' } };
INSERT Province RELATION { TUPLE { name 'Setubal', country 'P', population 713700, area 5064.0, capital 'Setubal' } };
INSERT Province RELATION { TUPLE { name 'Viana do Castelo', country 'P', population 248700, area 2255.0, capital 'Viana do Castelo' } };
INSERT Province RELATION { TUPLE { name 'Vila Real', country 'P', population 237100, area 4328.0, capital 'Vila Real' } };
INSERT Province RELATION { TUPLE { name 'Viseu', country 'P', population 401000, area 5007.0, capital 'Viseu' } };
INSERT Province RELATION { TUPLE { name 'Azores', country 'P', population 236700, area 2247.0, capital 'Ponta Delgada' } };
INSERT Province RELATION { TUPLE { name 'Madeira', country 'P', population 253000, area 794.0, capital 'Funchal' } };
INSERT Province RELATION { TUPLE { name 'Avon', country 'GB', population 962000, area 1346.0, capital 'Bristol' } };
INSERT Province RELATION { TUPLE { name 'Bedfordshire', country 'GB', population 534300, area 1235.0, capital 'Bedford' } };
INSERT Province RELATION { TUPLE { name 'Berkshire', country 'GB', population 752500, area 1259.0, capital 'Reading' } };
INSERT Province RELATION { TUPLE { name 'Buckinghamshire', country 'GB', population 640200, area 1883.0, capital 'Aylesbury' } };
INSERT Province RELATION { TUPLE { name 'Cambridgeshire', country 'GB', population 669900, area 3409.0, capital 'Cambridge' } };
INSERT Province RELATION { TUPLE { name 'Cheshire', country 'GB', population 966500, area 2329.0, capital 'Chester' } };
INSERT Province RELATION { TUPLE { name 'Cleveland', country 'GB', population 557500, area 583.0, capital 'Middlesbrough' } };
INSERT Province RELATION { TUPLE { name 'Cornwall', country 'GB', population 475200, area 3564.0, capital 'Truro' } };
INSERT Province RELATION { TUPLE { name 'Cumbria', country 'GB', population 489700, area 6810.0, capital 'Carlisle' } };
INSERT Province RELATION { TUPLE { name 'Derbyshire', country 'GB', population 938800, area 2631.0, capital 'Matlock' } };
INSERT Province RELATION { TUPLE { name 'Devon', country 'GB', population 1040000, area 6711.0, capital 'Exeter' } };
INSERT Province RELATION { TUPLE { name 'Dorset', country 'GB', population 662900, area 2654.0, capital 'Dorchester' } };
INSERT Province RELATION { TUPLE { name 'Durham', country 'GB', population 604300, area 2436.0, capital 'Durham' } };
INSERT Province RELATION { TUPLE { name 'East Sussex', country 'GB', population 716500, area 1795.0, capital 'Lewes' } };
INSERT Province RELATION { TUPLE { name 'Essex', country 'GB', population 1548800, area 3672.0, capital 'Chelmsford' } };
INSERT Province RELATION { TUPLE { name 'Gloucestershire', country 'GB', population 538800, area 2643.0, capital 'Gloucester' } };
INSERT Province RELATION { TUPLE { name 'Greater London', country 'GB', population 6803100, area 1579.0, capital 'London' } };
INSERT Province RELATION { TUPLE { name 'Greater Manchester', country 'GB', population 2561600, area 1287.0, capital 'Manchester' } };
INSERT Province RELATION { TUPLE { name 'Hampshire', country 'GB', population 1578700, area 3777.0, capital 'Winchester' } };
INSERT Province RELATION { TUPLE { name 'Hereford and Worcester', country 'GB', population 696000, area 3927.0, capital 'Worcester' } };
INSERT Province RELATION { TUPLE { name 'Hertfordshire', country 'GB', population 989500, area 1634.0, capital 'Hertford' } };
INSERT Province RELATION { TUPLE { name 'Humberside', country 'GB', population 874400, area 3512.0, capital 'Hull' } };
INSERT Province RELATION { TUPLE { name 'Isle of Wight', country 'GB', population 126600, area 381.0, capital 'Newport' } };
INSERT Province RELATION { TUPLE { name 'Kent', country 'GB', population 1538800, area 3731.0, capital 'Maidstone' } };
INSERT Province RELATION { TUPLE { name 'Lancashire', country 'GB', population 1408300, area 3064.0, capital 'Preston' } };
INSERT Province RELATION { TUPLE { name 'Leicestershire', country 'GB', population 890800, area 2553.0, capital 'Leichester' } };
INSERT Province RELATION { TUPLE { name 'Lincolnshire', country 'GB', population 592600, area 5915.0, capital 'Lincoln' } };
INSERT Province RELATION { TUPLE { name 'Merseyside', country 'GB', population 1441100, area 652.0, capital 'Liverpool' } };
INSERT Province RELATION { TUPLE { name 'Norfolk', country 'GB', population 759400, area 5368.0, capital 'Norwich' } };
INSERT Province RELATION { TUPLE { name 'Northamptonshire', country 'GB', population 587100, area 2367.0, capital 'Northampton' } };
INSERT Province RELATION { TUPLE { name 'Northumberland', country 'GB', population 307100, area 5032.0, capital 'Newcastle upon Tyne' } };
INSERT Province RELATION { TUPLE { name 'North Yorkshire', country 'GB', population 720900, area 8309.0, capital 'Northallerton' } };
INSERT Province RELATION { TUPLE { name 'Nottinghamshire', country 'GB', population 1015500, area 2164.0, capital 'Nottingham' } };
INSERT Province RELATION { TUPLE { name 'Oxfordshire', country 'GB', population 597700, area 2608.0, capital 'Oxford' } };
INSERT Province RELATION { TUPLE { name 'Shropshire', country 'GB', population 412500, area 3490.0, capital 'Shrewsbury' } };
INSERT Province RELATION { TUPLE { name 'Somerset', country 'GB', population 469400, area 3451.0, capital 'Taunton' } };
INSERT Province RELATION { TUPLE { name 'South Yorkshire', country 'GB', population 1292700, area 1560.0, capital 'Barnsley' } };
INSERT Province RELATION { TUPLE { name 'Staffordshire', country 'GB', population 1047400, area 2716.0, capital 'Stafford' } };
INSERT Province RELATION { TUPLE { name 'Suffolk', country 'GB', population 661900, area 3797.0, capital 'Ipswich' } };
INSERT Province RELATION { TUPLE { name 'Surrey', country 'GB', population 1035500, area 1679.0, capital 'Kingston' } };
INSERT Province RELATION { TUPLE { name 'Tyne and Wear', country 'GB', population 1125600, area 540.0, capital 'Newcastle upon Tyne' } };
INSERT Province RELATION { TUPLE { name 'Warwickshire', country 'GB', population 489900, area 1981.0, capital 'Warwick' } };
INSERT Province RELATION { TUPLE { name 'West Midlands', country 'GB', population 2619000, area 899.0, capital 'Birmingham' } };
INSERT Province RELATION { TUPLE { name 'West Sussex', country 'GB', population 713600, area 1989.0, capital 'Chichester' } };
INSERT Province RELATION { TUPLE { name 'West Yorkshire', country 'GB', population 2066200, area 2039.0, capital 'Wakefield' } };
INSERT Province RELATION { TUPLE { name 'Wiltshire', country 'GB', population 575100, area 3480.0, capital 'Trowbridge' } };
INSERT Province RELATION { TUPLE { name 'Borders', country 'GB', population 105700, area 4698.0, capital 'Newtown St. Boswells' } };
INSERT Province RELATION { TUPLE { name 'Central', country 'GB', population 273400, area 2700.0, capital 'Stirling' } };
INSERT Province RELATION { TUPLE { name 'Dumfries and Galloway', country 'GB', population 147800, area 6425.0, capital 'Dumfries' } };
INSERT Province RELATION { TUPLE { name 'Fife', country 'GB', population 352100, area 1319.0, capital 'Glenrothes' } };
INSERT Province RELATION { TUPLE { name 'Grampian', country 'GB', population 532500, area 8752.0, capital 'Aberdeen' } };
INSERT Province RELATION { TUPLE { name 'Highland', country 'GB', population 207500, area 26137.0, capital 'Inverness' } };
INSERT Province RELATION { TUPLE { name 'Lothian', country 'GB', population 758600, area 1770.0, capital 'Edinburgh' } };
INSERT Province RELATION { TUPLE { name 'Strathclyde', country 'GB', population 2287800, area 13773.0, capital 'Glasgow' } };
INSERT Province RELATION { TUPLE { name 'Tayside', country 'GB', population 395000, area 7643.0, capital 'Dundee' } };
INSERT Province RELATION { TUPLE { name 'Aberconwy and Colwyn', country 'GB', population 110700, area 1130.0, capital 'Colwyn Bay' } };
INSERT Province RELATION { TUPLE { name 'Anglesey', country 'GB', population 68500, area 719.0, capital 'Llangefni' } };
INSERT Province RELATION { TUPLE { name 'Blaenau Gwent', country 'GB', population 73300, area 109.0, capital 'Ebbw Vale' } };
INSERT Province RELATION { TUPLE { name 'Bridgend', country 'GB', population 130900, area 246.0, capital 'Bridgend' } };
INSERT Province RELATION { TUPLE { name 'Caerphilly', country 'GB', population 171000, area 279.0, capital 'Ystrad Fawr' } };
INSERT Province RELATION { TUPLE { name 'Cardiff', country 'GB', population 306600, area 139.0, capital 'Cardiff' } };
INSERT Province RELATION { TUPLE { name 'Carmarthenshire', country 'GB', population 169000, area 2398.0, capital 'Carmarthen' } };
INSERT Province RELATION { TUPLE { name 'Ceredigion', country 'GB', population 69700, area 1797.0, capital 'Aberystwyth' } };
INSERT Province RELATION { TUPLE { name 'Denbighshire', country 'GB', population 91300, area 844.0, capital 'Ruthin' } };
INSERT Province RELATION { TUPLE { name 'Flintshire', country 'GB', population 145300, area 437.0, capital 'Mold' } };
INSERT Province RELATION { TUPLE { name 'Gwynedd', country 'GB', population 117000, area 2548.0, capital 'Caernarfon' } };
INSERT Province RELATION { TUPLE { name 'Merthyr Tydfil', country 'GB', population 59500, area 111.0, capital 'Merthyr Tydfil' } };
INSERT Province RELATION { TUPLE { name 'Monmouthshire', country 'GB', population 84200, area 851.0, capital 'Cwmbran' } };
INSERT Province RELATION { TUPLE { name 'Neath and Port Talbot', country 'GB', population 140100, area 441.0, capital 'Port Talbot' } };
INSERT Province RELATION { TUPLE { name 'Newport', country 'GB', population 137400, area 191.0, capital 'Newport' } };
INSERT Province RELATION { TUPLE { name 'Pembrokeshire', country 'GB', population 113600, area 1590.0, capital 'Haverfordwest' } };
INSERT Province RELATION { TUPLE { name 'Powys', country 'GB', population 121800, area 5204.0, capital 'Llandrindod Wells' } };
INSERT Province RELATION { TUPLE { name 'Rhondda Cynon Taff', country 'GB', population 239000, area 424.0, capital 'Rhondda' } };
INSERT Province RELATION { TUPLE { name 'Swansea', country 'GB', population 230900, area 378.0, capital 'Swansea' } };
INSERT Province RELATION { TUPLE { name 'Torfaen', country 'GB', population 90600, area 126.0, capital 'Pontypool' } };
INSERT Province RELATION { TUPLE { name 'Vale of Glamorgan', country 'GB', population 119200, area 337.0, capital 'Barry' } };
INSERT Province RELATION { TUPLE { name 'Wrexham', country 'GB', population 123500, area 499.0, capital 'Wrexham' } };
INSERT Province RELATION { TUPLE { name 'Northern Ireland', country 'GB', population 1594400, area 14120.0, capital 'Belfast' } };
INSERT Province RELATION { TUPLE { name 'Orkneys', country 'GB', population 19590, area 992.0, capital 'Kirkwall' } };
INSERT Province RELATION { TUPLE { name 'Outer Hebrides', country 'GB', population 26370, area 3071.0, capital 'Stornoway' } };
INSERT Province RELATION { TUPLE { name 'Shetland', country 'GB', population 22000, area 1466.0, capital 'Lerwick' } };
INSERT Province RELATION { TUPLE { name 'Anhui', country 'TJ', population 59550000, area 139000.0, capital 'Hefei' } };
INSERT Province RELATION { TUPLE { name 'Fujian', country 'TJ', population 31830000, area 120000.0, capital 'Fuzhou' } };
INSERT Province RELATION { TUPLE { name 'Gansu', country 'TJ', population 23780000, area 450000.0, capital 'Lanzhou' } };
INSERT Province RELATION { TUPLE { name 'Guangdong', country 'TJ', population 66890000, area 186000.0, capital 'Guangzhou' } };
INSERT Province RELATION { TUPLE { name 'Guizhou', country 'TJ', population 34580000, area 170000.0, capital 'Guiyang' } };
INSERT Province RELATION { TUPLE { name 'Hainan', country 'TJ', population 7110000, area 34000.0, capital 'Haikou' } };
INSERT Province RELATION { TUPLE { name 'Hebei', country 'TJ', population 63880000, area 190000.0, capital 'Shijiazhuang' } };
INSERT Province RELATION { TUPLE { name 'Heilongjiang', country 'TJ', population 36720000, area 469000.0, capital 'Harbin' } };
INSERT Province RELATION { TUPLE { name 'Henan', country 'TJ', population 90270000, area 167000.0, capital 'Zhengzhou' } };
INSERT Province RELATION { TUPLE { name 'Hubei', country 'TJ', population 57190000, area 187400.0, capital 'Wuhan' } };
INSERT Province RELATION { TUPLE { name 'Hunan', country 'TJ', population 63550000, area 210000.0, capital 'Changsha' } };
INSERT Province RELATION { TUPLE { name 'Jiangsu', country 'TJ', population 70210000, area 102600.0, capital 'Nanjing' } };
INSERT Province RELATION { TUPLE { name 'Jiangxi', country 'TJ', population 40150000, area 166600.0, capital 'Nanchang' } };
INSERT Province RELATION { TUPLE { name 'Jilin', country 'TJ', population 25740000, area 187000.0, capital 'Changchun' } };
INSERT Province RELATION { TUPLE { name 'Liaoning', country 'TJ', population 40670000, area 145700.0, capital 'Shenyang' } };
INSERT Province RELATION { TUPLE { name 'Qinghai', country 'TJ', population 4740000, area 720000.0, capital 'Xining' } };
INSERT Province RELATION { TUPLE { name 'Shaanxi', country 'TJ', population 34810000, area 205000.0, capital 'Xian' } };
INSERT Province RELATION { TUPLE { name 'Shandong', country 'TJ', population 86710000, area 153000.0, capital 'Jinan' } };
INSERT Province RELATION { TUPLE { name 'Shanxi', country 'TJ', population 30450000, area 156000.0, capital 'Taiyuan' } };
INSERT Province RELATION { TUPLE { name 'Sichuan', country 'TJ', population 112140000, area 570000.0, capital 'Chengdu' } };
INSERT Province RELATION { TUPLE { name 'Yunnan', country 'TJ', population 39390000, area 394000.0, capital 'Kunming' } };
INSERT Province RELATION { TUPLE { name 'Zhejiang', country 'TJ', population 42940000, area 101800.0, capital 'Hangzhou' } };
INSERT Province RELATION { TUPLE { name 'Guangxi Zhuangzu', country 'TJ', population 44930000, area 236300.0, capital 'Nanning' } };
INSERT Province RELATION { TUPLE { name 'Nei Monggol', country 'TJ', population 22600000, area 1183000.0, capital 'Hohhot' } };
INSERT Province RELATION { TUPLE { name 'Ningxia Huizu', country 'TJ', population 5040000, area 66400.0, capital 'Yinchuan' } };
INSERT Province RELATION { TUPLE { name 'Xinjiang Uygur', country 'TJ', population 16320000, area 1600000.0, capital 'Urumqi' } };
INSERT Province RELATION { TUPLE { name 'Tibet', country 'TJ', population 2360000, area 1220000.0, capital 'Lhasa' } };
INSERT Province RELATION { TUPLE { name 'Beijing (munic.)', country 'TJ', population 11250000, area 16800.0, capital 'Beijing' } };
INSERT Province RELATION { TUPLE { name 'Shanghai (munic.)', country 'TJ', population 13560000, area 6200.0, capital 'Shanghai' } };
INSERT Province RELATION { TUPLE { name 'Tianjin (munic.)', country 'TJ', population 9350000, area 11300.0, capital 'Tianjin' } };
INSERT Province RELATION { TUPLE { name 'Azarbayian e Gharbt', country 'IR', population 2284208, area 38850.0, capital 'Orumiyeh' } };
INSERT Province RELATION { TUPLE { name 'Azarbayian e Sharqi', country 'IR', population 4420343, area 67102.0, capital 'Tabriz' } };
INSERT Province RELATION { TUPLE { name 'Bakhtaran', country 'IR', population 1622159, area 23667.0, capital 'Bakhtaran' } };
INSERT Province RELATION { TUPLE { name 'Boyer Ahmad e Kohkiluyeh', country 'IR', population 496739, area 14261.0, capital 'Yasuj' } };
INSERT Province RELATION { TUPLE { name 'Bushehr', country 'IR', population 694252, area 27653.0, capital 'Bushehr' } };
INSERT Province RELATION { TUPLE { name 'Chahar Mahal e Bakhtiari', country 'IR', population 747297, area 14870.0, capital 'Shahr e Kord' } };
INSERT Province RELATION { TUPLE { name 'Esfahan', country 'IR', population 3682444, area 104650.0, capital 'Esfahan' } };
INSERT Province RELATION { TUPLE { name 'Fars', country 'IR', population 3543828, area 133298.0, capital 'Shiraz' } };
INSERT Province RELATION { TUPLE { name 'Gilan', country 'IR', population 2204047, area 14709.0, capital 'Rasht' } };
INSERT Province RELATION { TUPLE { name 'Hamadan', country 'IR', population 1651320, area 19784.0, capital 'Hamadan' } };
INSERT Province RELATION { TUPLE { name 'Hormozgan', country 'IR', population 924433, area 66780.0, capital 'Bandar Abbas' } };
INSERT Province RELATION { TUPLE { name 'Ilam', country 'IR', population 440693, area 19044.0, capital 'Ilam' } };
INSERT Province RELATION { TUPLE { name 'Kerman', country 'IR', population 1862542, area 179916.0, capital 'Kerman' } };
INSERT Province RELATION { TUPLE { name 'Khorasan', country 'IR', population 6013200, area 313337.0, capital 'Mashhad' } };
INSERT Province RELATION { TUPLE { name 'Khuzestan', country 'IR', population 3175852, area 67282.0, capital 'Ahvaz' } };
INSERT Province RELATION { TUPLE { name 'Kordestan', country 'IR', population 1233480, area 24998.0, capital 'Sanandaj' } };
INSERT Province RELATION { TUPLE { name 'Lorestan', country 'IR', population 1501778, area 28803.0, capital 'Khorramabad' } };
INSERT Province RELATION { TUPLE { name 'Markazi', country 'IR', population 1182611, area 29080.0, capital 'Arak' } };
INSERT Province RELATION { TUPLE { name 'Mazandaran', country 'IR', population 3793149, area 46456.0, capital 'Sari' } };
INSERT Province RELATION { TUPLE { name 'Semnan', country 'IR', population 458125, area 90905.0, capital 'Semnan' } };
INSERT Province RELATION { TUPLE { name 'Sistan e Baluchestan', country 'IR', population 1455102, area 181578.0, capital 'Zahedan' } };
INSERT Province RELATION { TUPLE { name 'Tehran', country 'IR', population 9982309, area 29993.0, capital 'Tehran' } };
INSERT Province RELATION { TUPLE { name 'Yazd', country 'IR', population 691119, area 70011.0, capital 'Yazd' } };
INSERT Province RELATION { TUPLE { name 'Zanjan', country 'IR', population 1776133, area 36398.0, capital 'Zanjan' } };
INSERT Province RELATION { TUPLE { name 'Khujand', country 'TAD', population 1635900, area 26100.0, capital 'Khujand' } };
INSERT Province RELATION { TUPLE { name 'Kulob', country 'TAD', population 668100, area 12000.0, capital 'Kulob' } };
INSERT Province RELATION { TUPLE { name 'Khatlon', country 'TAD', population 1113500, area 12600.0, capital 'Qurghonteppa' } };
INSERT Province RELATION { TUPLE { name 'Badakhshoni Kuni', country 'TAD', population 167100, area 63700.0, capital 'Khorugh' } };
INSERT Province RELATION { TUPLE { name 'Dushanbe (munic.)', country 'TAD', population 591900, area 300.0, capital 'Dushanbe' } };
INSERT Province RELATION { TUPLE { name 'Ahal', country 'TM', population 416400, area 0.0, capital 'Ashgabat' } };
INSERT Province RELATION { TUPLE { name 'Balkan', country 'TM', population 925500, area 233900.0, capital 'Nebitdag' } };
INSERT Province RELATION { TUPLE { name 'Dashhowuz', country 'TM', population 738000, area 73600.0, capital 'Tashauz' } };
INSERT Province RELATION { TUPLE { name 'Leban', country 'TM', population 774700, area 93800.0, capital 'Charjew' } };
INSERT Province RELATION { TUPLE { name 'Mary', country 'TM', population 859500, area 86800.0, capital 'Mary' } };
INSERT Province RELATION { TUPLE { name 'Andijon', country 'UZB', population 1899000, area 4200.0, capital 'Andijon' } };
INSERT Province RELATION { TUPLE { name 'Bukhoro', country 'UZB', population 1262000, area 39400.0, capital 'Bukhoro' } };
INSERT Province RELATION { TUPLE { name 'Farghona', country 'UZB', population 2338000, area 7100.0, capital 'Farghona' } };
INSERT Province RELATION { TUPLE { name 'Jizzakh', country 'UZB', population 831000, area 20500.0, capital 'Jizzakh' } };
INSERT Province RELATION { TUPLE { name 'Khorazm', country 'UZB', population 1135000, area 6300.0, capital 'Urganch' } };
INSERT Province RELATION { TUPLE { name 'Namangan', country 'UZB', population 1652000, area 7900.0, capital 'Namangan' } };
INSERT Province RELATION { TUPLE { name 'Nawoiy', country 'UZB', population 715000, area 110800.0, capital 'Nawoiy' } };
INSERT Province RELATION { TUPLE { name 'Qasqadare', country 'UZB', population 1812000, area 28400.0, capital 'Qarshi' } };
INSERT Province RELATION { TUPLE { name 'Samarqand', country 'UZB', population 2322000, area 16400.0, capital 'Samarqand' } };
INSERT Province RELATION { TUPLE { name 'Sirdare', country 'UZB', population 600000, area 5100.0, capital 'Guliston' } };
INSERT Province RELATION { TUPLE { name 'Surkhondare', country 'UZB', population 1437000, area 20800.0, capital 'Termiz' } };
INSERT Province RELATION { TUPLE { name 'Toshkent', country 'UZB', population 4450000, area 15600.0, capital 'Tashkent' } };
INSERT Province RELATION { TUPLE { name 'Qaraqalpoghiston', country 'UZB', population 1343000, area 164900.0, capital 'Nukus' } };
INSERT Province RELATION { TUPLE { name 'Ayeyarwady', country 'MYA', population 4994100, area 35138.0, capital 'Pathein' } };
INSERT Province RELATION { TUPLE { name 'Magway', country 'MYA', population 3243200, area 44820.0, capital 'Magway' } };
INSERT Province RELATION { TUPLE { name 'Mandalay', country 'MYA', population 4577800, area 37024.0, capital 'Mandalay' } };
INSERT Province RELATION { TUPLE { name 'Bago', country 'MYA', population 3799800, area 39404.0, capital 'Bago' } };
INSERT Province RELATION { TUPLE { name 'Yangon', country 'MYA', population 3965900, area 10171.0, capital 'Rangoon' } };
INSERT Province RELATION { TUPLE { name 'Sagaing', country 'MYA', population 3862200, area 94625.0, capital 'Sagaing' } };
INSERT Province RELATION { TUPLE { name 'Tanintharyi', country 'MYA', population 917200, area 43343.0, capital 'Tavoy' } };
INSERT Province RELATION { TUPLE { name 'Chin', country 'MYA', population 368900, area 36019.0, capital 'Hakha' } };
INSERT Province RELATION { TUPLE { name 'Kachin', country 'MYA', population 904800, area 89041.0, capital 'Myitkyina' } };
INSERT Province RELATION { TUPLE { name 'Kayin', country 'MYA', population 1055400, area 30383.0, capital 'Hpa an' } };
INSERT Province RELATION { TUPLE { name 'Kayah', country 'MYA', population 168400, area 11733.0, capital 'Loikaw' } };
INSERT Province RELATION { TUPLE { name 'Mon', country 'MYA', population 1680200, area 12297.0, capital 'Moulmein' } };
INSERT Province RELATION { TUPLE { name 'Rakhine', country 'MYA', population 2045600, area 36778.0, capital 'Akyab' } };
INSERT Province RELATION { TUPLE { name 'Shan', country 'MYA', population 3716800, area 155801.0, capital 'Taunggyi' } };
INSERT Province RELATION { TUPLE { name 'Andhra Pradesh', country 'IND', population 66508008, area 275045.0, capital 'Hyderabad' } };
INSERT Province RELATION { TUPLE { name 'Arunachal Pradesh', country 'IND', population 864558, area 83743.0, capital 'Itanagar' } };
INSERT Province RELATION { TUPLE { name 'Assam', country 'IND', population 22414322, area 78438.0, capital 'Dispur' } };
INSERT Province RELATION { TUPLE { name 'Bihar', country 'IND', population 86374465, area 173877.0, capital 'Patna' } };
INSERT Province RELATION { TUPLE { name 'Goa', country 'IND', population 1169793, area 3702.0, capital 'Panaji' } };
INSERT Province RELATION { TUPLE { name 'Gujarat', country 'IND', population 41309582, area 196024.0, capital 'Gandhinagar' } };
INSERT Province RELATION { TUPLE { name 'Haryana', country 'IND', population 16463648, area 44212.0, capital 'Chandigarh' } };
INSERT Province RELATION { TUPLE { name 'Himachal Pradesh', country 'IND', population 5170877, area 55673.0, capital 'Simla' } };
INSERT Province RELATION { TUPLE { name 'Jammu and Kashmir', country 'IND', population 7718700, area 101387.0, capital 'Srinagar' } };
INSERT Province RELATION { TUPLE { name 'Karnataka', country 'IND', population 44977201, area 191791.0, capital 'Bangalore' } };
INSERT Province RELATION { TUPLE { name 'Kerala', country 'IND', population 29098518, area 38863.0, capital 'Trivandrum' } };
INSERT Province RELATION { TUPLE { name 'Madhya Pradesh', country 'IND', population 66181170, area 443446.0, capital 'Bhopal' } };
INSERT Province RELATION { TUPLE { name 'Maharashtra', country 'IND', population 78937187, area 307713.0, capital 'Bombay' } };
INSERT Province RELATION { TUPLE { name 'Manipur', country 'IND', population 1837149, area 22327.0, capital 'Imphal' } };
INSERT Province RELATION { TUPLE { name 'Meghalaya', country 'IND', population 1774778, area 22429.0, capital 'Shillong' } };
INSERT Province RELATION { TUPLE { name 'Mizoram', country 'IND', population 689756, area 21081.0, capital 'Aijal' } };
INSERT Province RELATION { TUPLE { name 'Nagaland', country 'IND', population 1209546, area 16579.0, capital 'Kohima' } };
INSERT Province RELATION { TUPLE { name 'Orissa', country 'IND', population 31659736, area 155707.0, capital 'Bhubaneswar' } };
INSERT Province RELATION { TUPLE { name 'Punjab', country 'IND', population 20281969, area 50362.0, capital 'Chandigarh' } };
INSERT Province RELATION { TUPLE { name 'Rajasthan', country 'IND', population 44005990, area 342239.0, capital 'Jaipur' } };
INSERT Province RELATION { TUPLE { name 'Sikkim', country 'IND', population 406457, area 7096.0, capital 'Gangtok' } };
INSERT Province RELATION { TUPLE { name 'Tamil Nadu', country 'IND', population 55858946, area 130058.0, capital 'Madras' } };
INSERT Province RELATION { TUPLE { name 'Tripura', country 'IND', population 2757205, area 10486.0, capital 'Agartala' } };
INSERT Province RELATION { TUPLE { name 'Uttar Pradesh', country 'IND', population 139112287, area 294411.0, capital 'Lucknow' } };
INSERT Province RELATION { TUPLE { name 'West Bengal', country 'IND', population 68077965, area 88752.0, capital 'Calcutta' } };
INSERT Province RELATION { TUPLE { name 'Andaman and Nicobar Is.', country 'IND', population 280661, area 8249.0, capital 'Port Blair' } };
INSERT Province RELATION { TUPLE { name 'Chandigarh', country 'IND', population 642015, area 114.0, capital 'Chandigarh' } };
INSERT Province RELATION { TUPLE { name 'Dadra and Nagar Haveli', country 'IND', population 138477, area 491.0, capital 'Silvassa' } };
INSERT Province RELATION { TUPLE { name 'Daman and Diu', country 'IND', population 101586, area 112.0, capital 'Daman' } };
INSERT Province RELATION { TUPLE { name 'Delhi', country 'IND', population 9420644, area 1483.0, capital 'New Delhi' } };
INSERT Province RELATION { TUPLE { name 'Lakshadweep Is.', country 'IND', population 51707, area 32.0, capital 'Kavaratti' } };
INSERT Province RELATION { TUPLE { name 'Pondicherry', country 'IND', population 807785, area 492.0, capital 'Pondicherry' } };
INSERT Province RELATION { TUPLE { name 'Johor', country 'MAL', population 2074297, area 18986.0, capital 'Johor Baharu' } };
INSERT Province RELATION { TUPLE { name 'Kedah', country 'MAL', population 1304800, area 9426.0, capital 'Alor Setar' } };
INSERT Province RELATION { TUPLE { name 'Kelantan', country 'MAL', population 1181680, area 14943.0, capital 'Kota Baharu' } };
INSERT Province RELATION { TUPLE { name 'Melaka', country 'MAL', population 504502, area 1650.0, capital 'Melaka' } };
INSERT Province RELATION { TUPLE { name 'Negeri Sembilan', country 'MAL', population 691150, area 6643.0, capital 'Seremban' } };
INSERT Province RELATION { TUPLE { name 'Pahang', country 'MAL', population 1036724, area 35965.0, capital 'Kuantan' } };
INSERT Province RELATION { TUPLE { name 'Perak', country 'MAL', population 1880016, area 21005.0, capital 'Ipoh' } };
INSERT Province RELATION { TUPLE { name 'Perlis', country 'MAL', population 184070, area 795.0, capital 'Kangar' } };
INSERT Province RELATION { TUPLE { name 'Pulau Pinang', country 'MAL', population 1065075, area 1031.0, capital 'Penang' } };
INSERT Province RELATION { TUPLE { name 'Sabah', country 'MAL', population 1736902, area 73620.0, capital 'Kota Kinabalu' } };
INSERT Province RELATION { TUPLE { name 'Sarawak', country 'MAL', population 1648217, area 124449.0, capital 'Kuching' } };
INSERT Province RELATION { TUPLE { name 'Selangor', country 'MAL', population 2289236, area 7956.0, capital 'Shah Alam' } };
INSERT Province RELATION { TUPLE { name 'Terengganu', country 'MAL', population 770931, area 12955.0, capital 'Kuala Terengganu' } };
INSERT Province RELATION { TUPLE { name 'Fed. Terr. of Kuala Lumpur', country 'MAL', population 1145075, area 243.0, capital 'Kuala Lumpur' } };
INSERT Province RELATION { TUPLE { name 'Fed. Terr. of Labuan', country 'MAL', population 54307, area 91.0, capital 'Labuan' } };
INSERT Province RELATION { TUPLE { name 'Almaty', country 'KAZ', population 963100, area 105700.0, capital 'Almaty' } };
INSERT Province RELATION { TUPLE { name 'Aqmola', country 'KAZ', population 845700, area 92000.0, capital 'Aqmola' } };
INSERT Province RELATION { TUPLE { name 'Aqtobe', country 'KAZ', population 752800, area 300600.0, capital 'Aqtobe' } };
INSERT Province RELATION { TUPLE { name 'Atyrau', country 'KAZ', population 459600, area 118600.0, capital 'Atyrau' } };
INSERT Province RELATION { TUPLE { name 'Batys Qazaqstan', country 'KAZ', population 669800, area 151300.0, capital 'Oral' } };
INSERT Province RELATION { TUPLE { name 'Kokchetau', country 'KAZ', population 657000, area 78200.0, capital 'Kokchetau' } };
INSERT Province RELATION { TUPLE { name 'Mangghystau', country 'KAZ', population 324400, area 165600.0, capital 'Aqtau' } };
INSERT Province RELATION { TUPLE { name 'Ongtustik Qazaqstan', country 'KAZ', population 1987800, area 117300.0, capital 'Shymkent' } };
INSERT Province RELATION { TUPLE { name 'Pavlodar', country 'KAZ', population 943600, area 124800.0, capital 'Pavlodar' } };
INSERT Province RELATION { TUPLE { name 'Qaraghandy', country 'KAZ', population 1270100, area 115400.0, capital 'Karaganda' } };
INSERT Province RELATION { TUPLE { name 'Qostanay', country 'KAZ', population 1055300, area 113900.0, capital 'Qostanay' } };
INSERT Province RELATION { TUPLE { name 'Qyzylorda', country 'KAZ', population 606100, area 226000.0, capital 'Qyzylorda' } };
INSERT Province RELATION { TUPLE { name 'Semey', country 'KAZ', population 811000, area 185800.0, capital 'Semey' } };
INSERT Province RELATION { TUPLE { name 'Shyghys Qazaqstan', country 'KAZ', population 939500, area 97500.0, capital 'Oskemen' } };
INSERT Province RELATION { TUPLE { name 'Soltustik Qazaqstan', country 'KAZ', population 600900, area 45000.0, capital 'Petropavl' } };
INSERT Province RELATION { TUPLE { name 'Taldyqorghan', country 'KAZ', population 721500, area 118500.0, capital 'Taldyqorghan' } };
INSERT Province RELATION { TUPLE { name 'Torghay', country 'KAZ', population 305900, area 111800.0, capital 'Arqalyq' } };
INSERT Province RELATION { TUPLE { name 'Zhambyl', country 'KAZ', population 1039600, area 144300.0, capital 'Zhambyl' } };
INSERT Province RELATION { TUPLE { name 'Zhezkazghan', country 'KAZ', population 484400, area 312600.0, capital 'Zhezkazghan' } };
INSERT Province RELATION { TUPLE { name 'Almaty (munic.)', country 'KAZ', population 1172400, area 0.0, capital 'Almaty' } };
INSERT Province RELATION { TUPLE { name 'Leninsk (munic.)', country 'KAZ', population 68600, area 0.0, capital 'Leninsk' } };
INSERT Province RELATION { TUPLE { name 'Central', country 'IL', population 938000, area 1242.0, capital 'Ramla' } };
INSERT Province RELATION { TUPLE { name 'Haifa', country 'IL', population 602800, area 854.0, capital 'Haifa' } };
INSERT Province RELATION { TUPLE { name 'North', country 'IL', population 739500, area 4501.0, capital 'Nazareth' } };
INSERT Province RELATION { TUPLE { name 'Tel Aviv', country 'IL', population 1029700, area 170.0, capital 'Tel Aviv' } };
INSERT Province RELATION { TUPLE { name 'South', country 'IL', population 529300, area 14107.0, capital 'Beer Sheva' } };
INSERT Province RELATION { TUPLE { name 'El Bahr el Ahmar', country 'ET', population 108000, area 203685.0, capital 'Hurghada' } };
INSERT Province RELATION { TUPLE { name 'Matruh', country 'ET', population 182000, area 212112.0, capital 'Marsa Matruh' } };
INSERT Province RELATION { TUPLE { name 'Sina al Janubiyah', country 'ET', population 33000, area 33140.0, capital 'El Tur' } };
INSERT Province RELATION { TUPLE { name 'Sina ash Shamaliyah', country 'ET', population 196000, area 27574.0, capital 'El Arish' } };
INSERT Province RELATION { TUPLE { name 'El Wadi el Jadid', country 'ET', population 126000, area 376505.0, capital 'El Kharga' } };
INSERT Province RELATION { TUPLE { name 'El Buhayra', country 'ET', population 3602000, area 10130.0, capital 'Damanhur' } };
INSERT Province RELATION { TUPLE { name 'El Daqahliya', country 'ET', population 3828000, area 3471.0, capital 'El Mansura' } };
INSERT Province RELATION { TUPLE { name 'Dumyat', country 'ET', population 808000, area 589.0, capital 'Dumyat' } };
INSERT Province RELATION { TUPLE { name 'El Gharbiya', country 'ET', population 3113000, area 1942.0, capital 'Tanta' } };
INSERT Province RELATION { TUPLE { name 'Ismailiya', country 'ET', population 623000, area 1442.0, capital 'Ismailiya' } };
INSERT Province RELATION { TUPLE { name 'Kafr el Sheikh', country 'ET', population 1968000, area 3437.0, capital 'Kafr el Sheikh' } };
INSERT Province RELATION { TUPLE { name 'El Minufiya', country 'ET', population 2449000, area 1532.0, capital 'Shibin el Kom' } };
INSERT Province RELATION { TUPLE { name 'El Qalubiya', country 'ET', population 2868000, area 1001.0, capital 'Benha' } };
INSERT Province RELATION { TUPLE { name 'Sharqiya', country 'ET', population 3766000, area 4180.0, capital 'Zagazig' } };
INSERT Province RELATION { TUPLE { name 'Aswan', country 'ET', population 883000, area 679.0, capital 'Aswan' } };
INSERT Province RELATION { TUPLE { name 'Asyut', country 'ET', population 2456000, area 1553.0, capital 'Asyut' } };
INSERT Province RELATION { TUPLE { name 'Beni Suef', country 'ET', population 1586000, area 1322.0, capital 'Beni Suef' } };
INSERT Province RELATION { TUPLE { name 'El Faiyum', country 'ET', population 1720000, area 1827.0, capital 'El Faiyum' } };
INSERT Province RELATION { TUPLE { name 'El Giza', country 'ET', population 4265000, area 85153.0, capital 'El Giza' } };
INSERT Province RELATION { TUPLE { name 'El Minya', country 'ET', population 2916000, area 2262.0, capital 'El Minya' } };
INSERT Province RELATION { TUPLE { name 'Qena', country 'ET', population 2493000, area 1851.0, capital 'Qena' } };
INSERT Province RELATION { TUPLE { name 'Sohag', country 'ET', population 2689000, area 1547.0, capital 'Sohag' } };
INSERT Province RELATION { TUPLE { name 'Bur Said (munic.)', country 'ET', population 461000, area 72.0, capital 'Bur Said' } };
INSERT Province RELATION { TUPLE { name 'El Iskandariya', country 'ET', population 3170000, area 2679.0, capital 'Alexandria' } };
INSERT Province RELATION { TUPLE { name 'El Qahira', country 'ET', population 6452000, area 214.0, capital 'Cairo' } };
INSERT Province RELATION { TUPLE { name 'El Suweiz', country 'ET', population 392000, area 17840.0, capital 'El Suweiz' } };
INSERT Province RELATION { TUPLE { name 'Al Anbar', country 'IRQ', population 817868, area 138501.0, capital 'Ar Ramadi' } };
INSERT Province RELATION { TUPLE { name 'Babil', country 'IRQ', population 1108773, area 6468.0, capital 'Al Hillah' } };
INSERT Province RELATION { TUPLE { name 'Baghdad', country 'IRQ', population 4648609, area 734.0, capital 'Baghdad' } };
INSERT Province RELATION { TUPLE { name 'Al Basrah', country 'IRQ', population 872211, area 19070.0, capital 'Al Basrah' } };
INSERT Province RELATION { TUPLE { name 'Dhi Qar', country 'IRQ', population 917880, area 12900.0, capital 'An Nasiriyah' } };
INSERT Province RELATION { TUPLE { name 'Diyala', country 'IRQ', population 955112, area 19076.0, capital 'Baqubah' } };
INSERT Province RELATION { TUPLE { name 'Karbala', country 'IRQ', population 455868, area 5034.0, capital 'Karbala' } };
INSERT Province RELATION { TUPLE { name 'Maysan', country 'IRQ', population 499842, area 16072.0, capital 'Al Amarah' } };
INSERT Province RELATION { TUPLE { name 'Al Muthanna', country 'IRQ', population 312911, area 51740.0, capital 'As Samawah' } };
INSERT Province RELATION { TUPLE { name 'An Najaf', country 'IRQ', population 583493, area 28824.0, capital 'An Najaf' } };
INSERT Province RELATION { TUPLE { name 'Ninawa', country 'IRQ', population 1507926, area 35899.0, capital 'Mosul' } };
INSERT Province RELATION { TUPLE { name 'Al Qadisiyah', country 'IRQ', population 560797, area 8153.0, capital 'Diwaniyah' } };
INSERT Province RELATION { TUPLE { name 'Salah ad Din', country 'IRQ', population 723500, area 26175.0, capital 'Samarra' } };
INSERT Province RELATION { TUPLE { name 'Ad Tamim', country 'IRQ', population 592869, area 10282.0, capital 'Kirkuk' } };
INSERT Province RELATION { TUPLE { name 'Wasit', country 'IRQ', population 546676, area 17153.0, capital 'Al Kut' } };
INSERT Province RELATION { TUPLE { name 'Dahuk', country 'IRQ', population 292931, area 6553.0, capital 'Dahuk' } };
INSERT Province RELATION { TUPLE { name 'Arbil', country 'IRQ', population 742538, area 14471.0, capital 'Arbil' } };
INSERT Province RELATION { TUPLE { name 'As Sulaymaniyah', country 'IRQ', population 942513, area 17023.0, capital 'As Sulaymaniyah' } };
INSERT Province RELATION { TUPLE { name 'Hokkaido', country 'J', population 5692321, area 83519.0, capital 'Sapporo' } };
INSERT Province RELATION { TUPLE { name 'Aomori', country 'J', population 1481663, area 9619.0, capital 'Aomori' } };
INSERT Province RELATION { TUPLE { name 'Iwate', country 'J', population 1419505, area 15277.0, capital 'Morioka' } };
INSERT Province RELATION { TUPLE { name 'Miyagi', country 'J', population 2328739, area 7292.0, capital 'Sendai' } };
INSERT Province RELATION { TUPLE { name 'Akita', country 'J', population 1213667, area 11612.0, capital 'Akita' } };
INSERT Province RELATION { TUPLE { name 'Yamagata', country 'J', population 1256958, area 9327.0, capital 'Yamagata' } };
INSERT Province RELATION { TUPLE { name 'Fukushima', country 'J', population 2133592, area 13784.0, capital 'Fukushima' } };
INSERT Province RELATION { TUPLE { name 'Ibaraki', country 'J', population 2955530, area 6094.0, capital 'Mito' } };
INSERT Province RELATION { TUPLE { name 'Tochigi', country 'J', population 1984390, area 6414.0, capital 'Utsonomiya' } };
INSERT Province RELATION { TUPLE { name 'Gumma', country 'J', population 2003540, area 6356.0, capital 'Maebashi' } };
INSERT Province RELATION { TUPLE { name 'Saitama', country 'J', population 6759311, area 3799.0, capital 'Urawa' } };
INSERT Province RELATION { TUPLE { name 'Chiba', country 'J', population 5797782, area 5150.0, capital 'Chiba' } };
INSERT Province RELATION { TUPLE { name 'Tokyo', country 'J', population 11773605, area 2164.0, capital 'Tokyo' } };
INSERT Province RELATION { TUPLE { name 'Kanagawa', country 'J', population 8245900, area 2402.0, capital 'Yokohama' } };
INSERT Province RELATION { TUPLE { name 'Niigata', country 'J', population 2488364, area 12579.0, capital 'Niigata' } };
INSERT Province RELATION { TUPLE { name 'Toyama', country 'J', population 1123125, area 4252.0, capital 'Toyama' } };
INSERT Province RELATION { TUPLE { name 'Ishikawa', country 'J', population 1180068, area 4197.0, capital 'Kanazawa' } };
INSERT Province RELATION { TUPLE { name 'Fukui', country 'J', population 826996, area 4192.0, capital 'Fukui' } };
INSERT Province RELATION { TUPLE { name 'Yamanashi', country 'J', population 881996, area 4463.0, capital 'Kofu' } };
INSERT Province RELATION { TUPLE { name 'Nagano', country 'J', population 2193984, area 13585.0, capital 'Nagano' } };
INSERT Province RELATION { TUPLE { name 'Gifu', country 'J', population 2100315, area 10596.0, capital 'Gifu' } };
INSERT Province RELATION { TUPLE { name 'Shizuoka', country 'J', population 3737689, area 7773.0, capital 'Shizuoka' } };
INSERT Province RELATION { TUPLE { name 'Aichi', country 'J', population 6868336, area 5138.0, capital 'Nagoya' } };
INSERT Province RELATION { TUPLE { name 'Mie', country 'J', population 1841358, area 5778.0, capital 'Tsu' } };
INSERT Province RELATION { TUPLE { name 'Shiga', country 'J', population 1287005, area 4016.0, capital 'Otsu' } };
INSERT Province RELATION { TUPLE { name 'Kyoto', country 'J', population 2629592, area 4613.0, capital 'Kyoto' } };
INSERT Province RELATION { TUPLE { name 'Osaka', country 'J', population 8797268, area 1868.0, capital 'Osaka' } };
INSERT Province RELATION { TUPLE { name 'Hyogo', country 'J', population 5401877, area 8381.0, capital 'Kobe' } };
INSERT Province RELATION { TUPLE { name 'Nara', country 'J', population 1430862, area 3692.0, capital 'Nara' } };
INSERT Province RELATION { TUPLE { name 'Wakayama', country 'J', population 1080435, area 4725.0, capital 'Wakayama' } };
INSERT Province RELATION { TUPLE { name 'Tottori', country 'J', population 614929, area 3494.0, capital 'Tottori' } };
INSERT Province RELATION { TUPLE { name 'Shimane', country 'J', population 771441, area 6628.0, capital 'Matsue' } };
INSERT Province RELATION { TUPLE { name 'Okayama', country 'J', population 1950750, area 7090.0, capital 'Okayama' } };
INSERT Province RELATION { TUPLE { name 'Hiroshima', country 'J', population 2881748, area 8467.0, capital 'Hiroshima' } };
INSERT Province RELATION { TUPLE { name 'Yamaguchi', country 'J', population 1555543, area 6106.0, capital 'Yamaguchi' } };
INSERT Province RELATION { TUPLE { name 'Tokushima', country 'J', population 832427, area 4145.0, capital 'Tokushima' } };
INSERT Province RELATION { TUPLE { name 'Kagawa', country 'J', population 1027006, area 1882.0, capital 'Takamatsu' } };
INSERT Province RELATION { TUPLE { name 'Ehime', country 'J', population 1506700, area 5672.0, capital 'Matsuyama' } };
INSERT Province RELATION { TUPLE { name 'Kochi', country 'J', population 816704, area 7107.0, capital 'Kochi' } };
INSERT Province RELATION { TUPLE { name 'Fukuoka', country 'J', population 4933393, area 4961.0, capital 'Fukuoka' } };
INSERT Province RELATION { TUPLE { name 'Saga', country 'J', population 884316, area 2433.0, capital 'Saga' } };
INSERT Province RELATION { TUPLE { name 'Nagasaki', country 'J', population 1544934, area 4112.0, capital 'Nagasaki' } };
INSERT Province RELATION { TUPLE { name 'Kumamoto', country 'J', population 1859793, area 7408.0, capital 'Kumamoto' } };
INSERT Province RELATION { TUPLE { name 'Oita', country 'J', population 1231306, area 6338.0, capital 'Oita' } };
INSERT Province RELATION { TUPLE { name 'Miyazaki', country 'J', population 1175819, area 7735.0, capital 'Miyazaki' } };
INSERT Province RELATION { TUPLE { name 'Kagoshima', country 'J', population 1794224, area 9166.0, capital 'Kagoshima' } };
INSERT Province RELATION { TUPLE { name 'Okinawa', country 'J', population 1273440, area 2255.0, capital 'Naha' } };
INSERT Province RELATION { TUPLE { name 'Aguascalientes', country 'MEX', population 862720, area 5589.0, capital 'Aguascalientes' } };
INSERT Province RELATION { TUPLE { name 'Baja California', country 'MEX', population 2112140, area 70113.0, capital 'Mexicali' } };
INSERT Province RELATION { TUPLE { name 'Baja California Sur', country 'MEX', population 375494, area 73677.0, capital 'La Paz' } };
INSERT Province RELATION { TUPLE { name 'Campeche', country 'MEX', population 642516, area 51833.0, capital 'Campeche' } };
INSERT Province RELATION { TUPLE { name 'Chiapas', country 'MEX', population 3584786, area 73887.0, capital 'Tuxtla Gutierrez' } };
INSERT Province RELATION { TUPLE { name 'Chihuahua', country 'MEX', population 2793537, area 247087.0, capital 'Chihuahua' } };
INSERT Province RELATION { TUPLE { name 'Coahuila', country 'MEX', population 2173775, area 151571.0, capital 'Saltillo' } };
INSERT Province RELATION { TUPLE { name 'Colima', country 'MEX', population 488028, area 5455.0, capital 'Colima' } };
INSERT Province RELATION { TUPLE { name 'Durango', country 'MEX', population 1431748, area 119648.0, capital 'Durango' } };
INSERT Province RELATION { TUPLE { name 'Guanajuato', country 'MEX', population 4406568, area 30589.0, capital 'Guanajuato' } };
INSERT Province RELATION { TUPLE { name 'Guerrero', country 'MEX', population 2916567, area 63749.0, capital 'Chilpancingo' } };
INSERT Province RELATION { TUPLE { name 'Hidalgo', country 'MEX', population 2112473, area 20987.0, capital 'Pachuca de Soto' } };
INSERT Province RELATION { TUPLE { name 'Jalisco', country 'MEX', population 5991176, area 80137.0, capital 'Guadalajara' } };
INSERT Province RELATION { TUPLE { name 'Mexico (Estado de)', country 'MEX', population 11707964, area 21461.0, capital 'Toluca de Lerdo' } };
INSERT Province RELATION { TUPLE { name 'Michoacan', country 'MEX', population 3870604, area 59864.0, capital 'Morelia' } };
INSERT Province RELATION { TUPLE { name 'Morelos', country 'MEX', population 1442662, area 4941.0, capital 'Cuernavaca' } };
INSERT Province RELATION { TUPLE { name 'Nayarit', country 'MEX', population 896702, area 27621.0, capital 'Tepic' } };
INSERT Province RELATION { TUPLE { name 'Nuevo Leon', country 'MEX', population 3550114, area 64555.0, capital 'Monterrey' } };
INSERT Province RELATION { TUPLE { name 'Oaxaca', country 'MEX', population 3228895, area 95364.0, capital 'Oaxaca' } };
INSERT Province RELATION { TUPLE { name 'Puebla', country 'MEX', population 4624365, area 33919.0, capital 'Puebla' } };
INSERT Province RELATION { TUPLE { name 'Queretaro', country 'MEX', population 1250476, area 11769.0, capital 'Queretaro' } };
INSERT Province RELATION { TUPLE { name 'Quintana Roo', country 'MEX', population 703536, area 50350.0, capital 'Chetumal' } };
INSERT Province RELATION { TUPLE { name 'San Luis Potosi', country 'MEX', population 2200763, area 62848.0, capital 'San Luis Potosi' } };
INSERT Province RELATION { TUPLE { name 'Sinaloa', country 'MEX', population 2425675, area 58092.0, capital 'Culiacan' } };
INSERT Province RELATION { TUPLE { name 'Sonora', country 'MEX', population 2085536, area 184934.0, capital 'Hermosillo' } };
INSERT Province RELATION { TUPLE { name 'Tabasco', country 'MEX', population 1748769, area 24661.0, capital 'Villahermosa' } };
INSERT Province RELATION { TUPLE { name 'Tamaulipas', country 'MEX', population 2527328, area 79829.0, capital 'Ciudad Victoria' } };
INSERT Province RELATION { TUPLE { name 'Tlaxcala', country 'MEX', population 883924, area 3914.0, capital 'Tlaxcala' } };
INSERT Province RELATION { TUPLE { name 'Veracruz', country 'MEX', population 6737324, area 72815.0, capital 'Jalapa' } };
INSERT Province RELATION { TUPLE { name 'Yucatan', country 'MEX', population 1556622, area 39340.0, capital 'Merida' } };
INSERT Province RELATION { TUPLE { name 'Zacatecas', country 'MEX', population 1336496, area 75040.0, capital 'Zacatecas' } };
INSERT Province RELATION { TUPLE { name 'Distrito Federal', country 'MEX', population 8489007, area 1499.0, capital 'Mexico City' } };
INSERT Province RELATION { TUPLE { name 'Alberta', country 'CDN', population 2696826, area 661185.0, capital 'Edmonton' } };
INSERT Province RELATION { TUPLE { name 'British Columbia', country 'CDN', population 3724500, area 948596.0, capital 'Victoria' } };
INSERT Province RELATION { TUPLE { name 'Manitoba', country 'CDN', population 1113898, area 650086.0, capital 'Winnipeg' } };
INSERT Province RELATION { TUPLE { name 'New Brunswick', country 'CDN', population 738133, area 73437.0, capital 'Fredericton' } };
INSERT Province RELATION { TUPLE { name 'Newfoundland', country 'CDN', population 551792, area 404517.0, capital 'Saint Johns' } };
INSERT Province RELATION { TUPLE { name 'Northwest Territories', country 'CDN', population 64402, area 3379683.0, capital 'Yellowknife' } };
INSERT Province RELATION { TUPLE { name 'Nova Scotia', country 'CDN', population 909282, area 55490.0, capital 'Halifax' } };
INSERT Province RELATION { TUPLE { name 'Ontario', country 'CDN', population 10753573, area 1068582.0, capital 'Toronto' } };
INSERT Province RELATION { TUPLE { name 'Prince Edward Island', country 'CDN', population 134557, area 5657.0, capital 'Charlottetown' } };
INSERT Province RELATION { TUPLE { name 'Quebec', country 'CDN', population 7138795, area 1540680.0, capital 'Quebec' } };
INSERT Province RELATION { TUPLE { name 'Saskatchewan', country 'CDN', population 990237, area 651900.0, capital 'Regina' } };
INSERT Province RELATION { TUPLE { name 'Yukon Territory', country 'CDN', population 30766, area 536324.0, capital 'Whitehorse' } };
INSERT Province RELATION { TUPLE { name 'Alabama', country 'USA', population 4319154, area 133915.0, capital 'Montgomery' } };
INSERT Province RELATION { TUPLE { name 'Alaska', country 'USA', population 609311, area 1530694.0, capital 'Juneau' } };
INSERT Province RELATION { TUPLE { name 'Arizona', country 'USA', population 4554966, area 295259.0, capital 'Phoenix' } };
INSERT Province RELATION { TUPLE { name 'Arkansas', country 'USA', population 2522819, area 137754.0, capital 'Little Rock' } };
INSERT Province RELATION { TUPLE { name 'California', country 'USA', population 32268301, area 411047.0, capital 'Sacramento' } };
INSERT Province RELATION { TUPLE { name 'Colorado', country 'USA', population 3892644, area 269595.0, capital 'Denver' } };
INSERT Province RELATION { TUPLE { name 'Connecticut', country 'USA', population 3269858, area 12997.0, capital 'Hartford' } };
INSERT Province RELATION { TUPLE { name 'Delaware', country 'USA', population 731581, area 5297.0, capital 'Dover' } };
INSERT Province RELATION { TUPLE { name 'Florida', country 'USA', population 14653945, area 151939.0, capital 'Tallahassee' } };
INSERT Province RELATION { TUPLE { name 'Georgia', country 'USA', population 7486242, area 152576.0, capital 'Atlanta' } };
INSERT Province RELATION { TUPLE { name 'Hawaii', country 'USA', population 1183723, area 16760.0, capital 'Honolulu' } };
INSERT Province RELATION { TUPLE { name 'Idaho', country 'USA', population 1186602, area 216430.0, capital 'Boise' } };
INSERT Province RELATION { TUPLE { name 'Illinois', country 'USA', population 11895849, area 145933.0, capital 'Springfield' } };
INSERT Province RELATION { TUPLE { name 'Indiana', country 'USA', population 5864108, area 93719.0, capital 'Indianapolis' } };
INSERT Province RELATION { TUPLE { name 'Iowa', country 'USA', population 2852423, area 145752.0, capital 'Des Moines' } };
INSERT Province RELATION { TUPLE { name 'Kansas', country 'USA', population 2594840, area 213097.0, capital 'Topeka' } };
INSERT Province RELATION { TUPLE { name 'Kentucky', country 'USA', population 3908124, area 104661.0, capital 'Frankfort' } };
INSERT Province RELATION { TUPLE { name 'Louisiana', country 'USA', population 4351769, area 123677.0, capital 'Baton Rouge' } };
INSERT Province RELATION { TUPLE { name 'Maine', country 'USA', population 1242051, area 86156.0, capital 'Augusta' } };
INSERT Province RELATION { TUPLE { name 'Maryland', country 'USA', population 5094289, area 27091.0, capital 'Annapolis' } };
INSERT Province RELATION { TUPLE { name 'Massachusetts', country 'USA', population 6117520, area 21455.0, capital 'Boston' } };
INSERT Province RELATION { TUPLE { name 'Michigan', country 'USA', population 9773892, area 151584.0, capital 'Lansing' } };
INSERT Province RELATION { TUPLE { name 'Minnesota', country 'USA', population 4685549, area 218600.0, capital 'St. Paul' } };
INSERT Province RELATION { TUPLE { name 'Mississippi', country 'USA', population 2730501, area 123514.0, capital 'Jackson' } };
INSERT Province RELATION { TUPLE { name 'Missouri', country 'USA', population 5402058, area 180514.0, capital 'Jefferson City' } };
INSERT Province RELATION { TUPLE { name 'Montana', country 'USA', population 878810, area 380848.0, capital 'Helena' } };
INSERT Province RELATION { TUPLE { name 'Nebraska', country 'USA', population 1656870, area 200349.0, capital 'Lincoln' } };
INSERT Province RELATION { TUPLE { name 'Nevada', country 'USA', population 1676809, area 286352.0, capital 'Carson City' } };
INSERT Province RELATION { TUPLE { name 'New Hampshire', country 'USA', population 1172709, area 24033.0, capital 'Concord' } };
INSERT Province RELATION { TUPLE { name 'New Jersey', country 'USA', population 8052849, area 20168.0, capital 'Trenton' } };
INSERT Province RELATION { TUPLE { name 'New Mexico', country 'USA', population 1729751, area 314925.0, capital 'Santa Fe' } };
INSERT Province RELATION { TUPLE { name 'New York', country 'USA', population 18137226, area 127189.0, capital 'Albany' } };
INSERT Province RELATION { TUPLE { name 'North Carolina', country 'USA', population 7425183, area 136412.0, capital 'Raleigh' } };
INSERT Province RELATION { TUPLE { name 'North Dakota', country 'USA', population 640883, area 183117.0, capital 'Bismarck' } };
INSERT Province RELATION { TUPLE { name 'Ohio', country 'USA', population 11186331, area 107044.0, capital 'Columbus' } };
INSERT Province RELATION { TUPLE { name 'Oklahoma', country 'USA', population 3317091, area 181185.0, capital 'Oklahoma City' } };
INSERT Province RELATION { TUPLE { name 'Oregon', country 'USA', population 3243487, area 251418.0, capital 'Salem' } };
INSERT Province RELATION { TUPLE { name 'Pennsylvania', country 'USA', population 12019661, area 117347.0, capital 'Harrisburg' } };
INSERT Province RELATION { TUPLE { name 'Rhode Island', country 'USA', population 987429, area 3139.0, capital 'Providence' } };
INSERT Province RELATION { TUPLE { name 'South Carolina', country 'USA', population 3760181, area 80582.0, capital 'Columbia' } };
INSERT Province RELATION { TUPLE { name 'South Dakota', country 'USA', population 737973, area 199730.0, capital 'Pierre' } };
INSERT Province RELATION { TUPLE { name 'Tennessee', country 'USA', population 5368198, area 109153.0, capital 'Nashville' } };
INSERT Province RELATION { TUPLE { name 'Texas', country 'USA', population 19439337, area 691027.0, capital 'Austin' } };
INSERT Province RELATION { TUPLE { name 'Utah', country 'USA', population 2059148, area 219888.0, capital 'Salt Lake City' } };
INSERT Province RELATION { TUPLE { name 'Vermont', country 'USA', population 588978, area 24900.0, capital 'Montpelier' } };
INSERT Province RELATION { TUPLE { name 'Virginia', country 'USA', population 6733996, area 105586.0, capital 'Richmond' } };
INSERT Province RELATION { TUPLE { name 'Washington', country 'USA', population 5610362, area 176479.0, capital 'Olympia' } };
INSERT Province RELATION { TUPLE { name 'West Virginia', country 'USA', population 1815787, area 62761.0, capital 'Charleston' } };
INSERT Province RELATION { TUPLE { name 'Wisconsin', country 'USA', population 5169677, area 145436.0, capital 'Madison' } };
INSERT Province RELATION { TUPLE { name 'Wyoming', country 'USA', population 479743, area 253324.0, capital 'Cheyenne' } };
INSERT Province RELATION { TUPLE { name 'Distr. Columbia', country 'USA', population 528964, area 179.0, capital 'Washington' } };
INSERT Province RELATION { TUPLE { name 'San Jose', country 'CR', population 1163943, area 4960.0, capital 'San Jose' } };
INSERT Province RELATION { TUPLE { name 'Alajuela', country 'CR', population 569984, area 9753.0, capital 'Alajuela' } };
INSERT Province RELATION { TUPLE { name 'Cartago', country 'CR', population 359765, area 3125.0, capital 'Cartago' } };
INSERT Province RELATION { TUPLE { name 'Heredia', country 'CR', population 256726, area 2656.0, capital 'Heredia' } };
INSERT Province RELATION { TUPLE { name 'Guanacaste', country 'CR', population 254530, area 10141.0, capital 'Liberia' } };
INSERT Province RELATION { TUPLE { name 'Puntarenas', country 'CR', population 357103, area 11277.0, capital 'Puntarenas' } };
INSERT Province RELATION { TUPLE { name 'Limon', country 'CR', population 237183, area 9189.0, capital 'Limon' } };
INSERT Province RELATION { TUPLE { name 'Bocas del Toro', country 'PA', population 88400, area 8745.0, capital 'Bocas del Toro' } };
INSERT Province RELATION { TUPLE { name 'Cocle', country 'PA', population 177100, area 4927.0, capital 'Penonome' } };
INSERT Province RELATION { TUPLE { name 'Colon', country 'PA', population 222600, area 7247.0, capital 'Colon' } };
INSERT Province RELATION { TUPLE { name 'Comarca de San Blas', country 'PA', population 0, area 2357.0, capital 'El Porvenir' } };
INSERT Province RELATION { TUPLE { name 'Chiriqui', country 'PA', population 396800, area 8653.0, capital 'David' } };
INSERT Province RELATION { TUPLE { name 'Darien', country 'PA', population 45000, area 16671.0, capital 'La Palma' } };
INSERT Province RELATION { TUPLE { name 'Herrera', country 'PA', population 108700, area 2341.0, capital 'Chitre' } };
INSERT Province RELATION { TUPLE { name 'Los Santos', country 'PA', population 82800, area 3806.0, capital 'Las Tablas' } };
INSERT Province RELATION { TUPLE { name 'Panama', country 'PA', population 1168500, area 11887.0, capital 'Panama City' } };
INSERT Province RELATION { TUPLE { name 'Veraguas', country 'PA', population 224700, area 11239.0, capital 'Santiago' } };
INSERT Province RELATION { TUPLE { name 'Camaguey', country 'C', population 723000, area 15990.0, capital 'Camaguey' } };
INSERT Province RELATION { TUPLE { name 'Ciego de Avila', country 'C', population 353000, area 6910.0, capital 'Ciego de Avila' } };
INSERT Province RELATION { TUPLE { name 'Cienfuegos', country 'C', population 354000, area 4178.0, capital 'Cienfuegos' } };
INSERT Province RELATION { TUPLE { name 'Ciudad de la Habana', country 'C', population 2059000, area 727.0, capital 'Havana' } };
INSERT Province RELATION { TUPLE { name 'Granma', country 'C', population 773000, area 8372.0, capital 'Bayamo' } };
INSERT Province RELATION { TUPLE { name 'Guantanamo', country 'C', population 484000, area 6186.0, capital 'Guantanamo' } };
INSERT Province RELATION { TUPLE { name 'Holguin', country 'C', population 972000, area 9301.0, capital 'Holguin' } };
INSERT Province RELATION { TUPLE { name 'La Habana', country 'C', population 630000, area 5731.0, capital 'Havana' } };
INSERT Province RELATION { TUPLE { name 'Las Tunas', country 'C', population 478000, area 6589.0, capital 'Victoria de las Tunas' } };
INSERT Province RELATION { TUPLE { name 'Matanzas', country 'C', population 596000, area 11978.0, capital 'Matanzas' } };
INSERT Province RELATION { TUPLE { name 'Pinar del Rio', country 'C', population 678000, area 10925.0, capital 'Pinar del Rio' } };
INSERT Province RELATION { TUPLE { name 'Sancti Spiritus', country 'C', population 420000, area 6744.0, capital 'Sancti Spiritus' } };
INSERT Province RELATION { TUPLE { name 'Santiago de Cuba', country 'C', population 968000, area 6170.0, capital 'Santiago de Cuba' } };
INSERT Province RELATION { TUPLE { name 'Villa Clara', country 'C', population 796000, area 8662.0, capital 'Santa Clara' } };
INSERT Province RELATION { TUPLE { name 'Isla de la Juventud', country 'C', population 71000, area 2396.0, capital 'Nueva Gerona' } };
INSERT Province RELATION { TUPLE { name 'Atlantida', country 'HCA', population 263700, area 4251.0, capital 'La Ceiba' } };
INSERT Province RELATION { TUPLE { name 'Colon', country 'HCA', population 167900, area 8875.0, capital 'Trujillo' } };
INSERT Province RELATION { TUPLE { name 'Comayagua', country 'HCA', population 267000, area 5196.0, capital 'Comayagua' } };
INSERT Province RELATION { TUPLE { name 'Copan', country 'HCA', population 241400, area 3203.0, capital 'Santa Rosa de Copan' } };
INSERT Province RELATION { TUPLE { name 'Cortes', country 'HCA', population 732600, area 3954.0, capital 'San Pedro Sula' } };
INSERT Province RELATION { TUPLE { name 'Choluteca', country 'HCA', population 326100, area 4211.0, capital 'Choluteca' } };
INSERT Province RELATION { TUPLE { name 'El Paraiso', country 'HCA', population 284100, area 7218.0, capital 'Yuscaran' } };
INSERT Province RELATION { TUPLE { name 'Francisco Morazan', country 'HCA', population 908300, area 7946.0, capital 'Tegucigalpa' } };
INSERT Province RELATION { TUPLE { name 'Gracias a Dios', country 'HCA', population 39000, area 16630.0, capital 'Puerto Lempira' } };
INSERT Province RELATION { TUPLE { name 'Intibuca', country 'HCA', population 137800, area 3072.0, capital 'La Esperanza' } };
INSERT Province RELATION { TUPLE { name 'Islas de la Bahia', country 'HCA', population 24500, area 261.0, capital 'Roatan' } };
INSERT Province RELATION { TUPLE { name 'La Paz', country 'HCA', population 117400, area 2331.0, capital 'La Paz' } };
INSERT Province RELATION { TUPLE { name 'Lempira', country 'HCA', population 194600, area 4290.0, capital 'Gracias' } };
INSERT Province RELATION { TUPLE { name 'Ocotepeque', country 'HCA', population 81800, area 1680.0, capital 'Ocotepeque' } };
INSERT Province RELATION { TUPLE { name 'Olancho', country 'HCA', population 318000, area 24351.0, capital 'Jutigalpa' } };
INSERT Province RELATION { TUPLE { name 'Santa Barbara', country 'HCA', population 307500, area 5113.0, capital 'Santa Barbara' } };
INSERT Province RELATION { TUPLE { name 'Valle', country 'HCA', population 130900, area 1565.0, capital 'Nacaome' } };
INSERT Province RELATION { TUPLE { name 'Yoro', country 'HCA', population 370700, area 7939.0, capital 'Yoro' } };
INSERT Province RELATION { TUPLE { name 'Amazonas', country 'CO', population 39937, area 109665.0, capital 'Leticia' } };
INSERT Province RELATION { TUPLE { name 'Antioquia', country 'CO', population 4067207, area 63612.0, capital 'Medellin' } };
INSERT Province RELATION { TUPLE { name 'Arauca', country 'CO', population 89972, area 23818.0, capital 'Arauca' } };
INSERT Province RELATION { TUPLE { name 'Atlantico', country 'CO', population 1478213, area 3388.0, capital 'Barranquilla' } };
INSERT Province RELATION { TUPLE { name 'Bolivar', country 'CO', population 1288985, area 25978.0, capital 'Cartagena' } };
INSERT Province RELATION { TUPLE { name 'Boyaca', country 'CO', population 1209739, area 23189.0, capital 'Tunja' } };
INSERT Province RELATION { TUPLE { name 'Caldas', country 'CO', population 883024, area 7888.0, capital 'Manizales' } };
INSERT Province RELATION { TUPLE { name 'Caqueta', country 'CO', population 264507, area 88965.0, capital 'Florencia' } };
INSERT Province RELATION { TUPLE { name 'Casanare', country 'CO', population 147472, area 44640.0, capital 'Yopal' } };
INSERT Province RELATION { TUPLE { name 'Cauca', country 'CO', population 857751, area 29308.0, capital 'Popayan' } };
INSERT Province RELATION { TUPLE { name 'Cesar', country 'CO', population 699428, area 22905.0, capital 'Valledupar' } };
INSERT Province RELATION { TUPLE { name 'Choco', country 'CO', population 313567, area 46530.0, capital 'Quibdo' } };
INSERT Province RELATION { TUPLE { name 'Cordoba', country 'CO', population 1013247, area 25020.0, capital 'Monteria' } };
INSERT Province RELATION { TUPLE { name 'Cundinamarca', country 'CO', population 1512928, area 22623.0, capital 'Bogota' } };
INSERT Province RELATION { TUPLE { name 'Guainia', country 'CO', population 12345, area 72238.0, capital 'Puerto Inirida' } };
INSERT Province RELATION { TUPLE { name 'Guajira (La)', country 'CO', population 299995, area 20848.0, capital 'Riohacha' } };
INSERT Province RELATION { TUPLE { name 'Guaviare', country 'CO', population 47073, area 42327.0, capital 'San Jose del Guaviare' } };
INSERT Province RELATION { TUPLE { name 'Huila', country 'CO', population 693712, area 19890.0, capital 'Neiva' } };
INSERT Province RELATION { TUPLE { name 'Magdalena', country 'CO', population 890934, area 23188.0, capital 'Santa Marta' } };
INSERT Province RELATION { TUPLE { name 'Meta', country 'CO', population 474046, area 85635.0, capital 'Villavicencio' } };
INSERT Province RELATION { TUPLE { name 'Narino', country 'CO', population 1085173, area 33268.0, capital 'Pasto' } };
INSERT Province RELATION { TUPLE { name 'Norte de Santander', country 'CO', population 913491, area 21658.0, capital 'Cucuta' } };
INSERT Province RELATION { TUPLE { name 'Putumayo', country 'CO', population 174219, area 24885.0, capital 'Mocoa' } };
INSERT Province RELATION { TUPLE { name 'Quindio', country 'CO', population 392208, area 1845.0, capital 'Armenia' } };
INSERT Province RELATION { TUPLE { name 'Risaralda', country 'CO', population 652872, area 4140.0, capital 'Pereira' } };
INSERT Province RELATION { TUPLE { name 'San Andres y Providencia', country 'CO', population 35818, area 44.0, capital 'San Andres' } };
INSERT Province RELATION { TUPLE { name 'Santa Fe de Bogota (DC)', country 'CO', population 4236490, area 1587.0, capital 'Bogota' } };
INSERT Province RELATION { TUPLE { name 'Santander del Sur', country 'CO', population 1511392, area 30537.0, capital 'Bucaramanga' } };
INSERT Province RELATION { TUPLE { name 'Sucre', country 'CO', population 561649, area 10917.0, capital 'Sincelejo' } };
INSERT Province RELATION { TUPLE { name 'Tolima', country 'CO', population 1142220, area 23562.0, capital 'Ibague' } };
INSERT Province RELATION { TUPLE { name 'Valle de Cauca', country 'CO', population 3027247, area 22140.0, capital 'Cali' } };
INSERT Province RELATION { TUPLE { name 'Vaupes', country 'CO', population 26178, area 65268.0, capital 'Mitu' } };
INSERT Province RELATION { TUPLE { name 'Vichada', country 'CO', population 18702, area 100242.0, capital 'Puerto Carreno' } };
INSERT Province RELATION { TUPLE { name 'New South Wales', country 'AUS', population 6115100, area 801428.0, capital 'Sydney' } };
INSERT Province RELATION { TUPLE { name 'Northern Territory', country 'AUS', population 173878, area 1346200.0, capital 'Darwin' } };
INSERT Province RELATION { TUPLE { name 'Queensland', country 'AUS', population 3277000, area 1727000.0, capital 'Brisbane' } };
INSERT Province RELATION { TUPLE { name 'South Australia', country 'AUS', population 1474000, area 984377.0, capital 'Adelaide' } };
INSERT Province RELATION { TUPLE { name 'Tasmania', country 'AUS', population 473022, area 67800.0, capital 'Hobart' } };
INSERT Province RELATION { TUPLE { name 'Victoria', country 'AUS', population 4502200, area 227600.0, capital 'Melbourne' } };
INSERT Province RELATION { TUPLE { name 'Western Australia', country 'AUS', population 1731700, area 2525500.0, capital 'Perth' } };
INSERT Province RELATION { TUPLE { name 'Australia Capital Territory', country 'AUS', population 304100, area 2452.0, capital 'Canberra' } };
INSERT Province RELATION { TUPLE { name 'Buenos Aires', country 'RA', population 12594974, area 307571.0, capital 'La Plata' } };
INSERT Province RELATION { TUPLE { name 'Catamarca', country 'RA', population 264324, area 102602.0, capital 'San Fernando del Valle de Catamarca' } };
INSERT Province RELATION { TUPLE { name 'Chaco', country 'RA', population 839677, area 99633.0, capital 'Resistencia' } };
INSERT Province RELATION { TUPLE { name 'Chubut', country 'RA', population 357189, area 224686.0, capital 'Rawson' } };
INSERT Province RELATION { TUPLE { name 'Cordoba', country 'RA', population 2766683, area 165321.0, capital 'Cordoba' } };
INSERT Province RELATION { TUPLE { name 'Corrientes', country 'RA', population 795594, area 88199.0, capital 'Corrientes' } };
INSERT Province RELATION { TUPLE { name 'Entre Rios', country 'RA', population 1020257, area 78781.0, capital 'Parana' } };
INSERT Province RELATION { TUPLE { name 'Formosa', country 'RA', population 398413, area 72066.0, capital 'Formosa' } };
INSERT Province RELATION { TUPLE { name 'Jujuy', country 'RA', population 512329, area 53219.0, capital 'San Salvador de Jujuy' } };
INSERT Province RELATION { TUPLE { name 'La Pampa', country 'RA', population 259996, area 143440.0, capital 'Santa Rosa' } };
INSERT Province RELATION { TUPLE { name 'La Rioja', country 'RA', population 220729, area 89680.0, capital 'La Rioja' } };
INSERT Province RELATION { TUPLE { name 'Mendoza', country 'RA', population 1412481, area 148827.0, capital 'Mendoza' } };
INSERT Province RELATION { TUPLE { name 'Misiones', country 'RA', population 788915, area 29801.0, capital 'Posadas' } };
INSERT Province RELATION { TUPLE { name 'Neuquen', country 'RA', population 388833, area 94078.0, capital 'Neuquen' } };
INSERT Province RELATION { TUPLE { name 'Rio Negro', country 'RA', population 506772, area 203013.0, capital 'Viedma' } };
INSERT Province RELATION { TUPLE { name 'Salta', country 'RA', population 866153, area 155488.0, capital 'Salta' } };
INSERT Province RELATION { TUPLE { name 'San Juan', country 'RA', population 528715, area 89651.0, capital 'San Juan' } };
INSERT Province RELATION { TUPLE { name 'San Luis', country 'RA', population 286458, area 76748.0, capital 'San Luis' } };
INSERT Province RELATION { TUPLE { name 'Santa Cruz', country 'RA', population 159839, area 243943.0, capital 'Rio Gallegos' } };
INSERT Province RELATION { TUPLE { name 'Santa Fe', country 'RA', population 2798422, area 133007.0, capital 'Santa Fe' } };
INSERT Province RELATION { TUPLE { name 'Santiago de Estero', country 'RA', population 671988, area 136351.0, capital 'Santiago del Estero' } };
INSERT Province RELATION { TUPLE { name 'Tierra del Fuego', country 'RA', population 69369, area 21571.0, capital 'Ushuaia' } };
INSERT Province RELATION { TUPLE { name 'Tucuman', country 'RA', population 1142105, area 22524.0, capital 'San Miguel de Tucuman' } };
INSERT Province RELATION { TUPLE { name 'Distrito Federal', country 'RA', population 2965403, area 200.0, capital 'Buenos Aires' } };
INSERT Province RELATION { TUPLE { name 'Acre', country 'BR', population 483483, area 153149.0, capital 'Rio Branco' } };
INSERT Province RELATION { TUPLE { name 'Alagoas', country 'BR', population 2637843, area 27933.0, capital 'Maceio' } };
INSERT Province RELATION { TUPLE { name 'Amapa', country 'BR', population 373994, area 143453.0, capital 'Macapa' } };
INSERT Province RELATION { TUPLE { name 'Amazonas', country 'BR', population 2390102, area 1577820.0, capital 'Manaus' } };
INSERT Province RELATION { TUPLE { name 'Bahia', country 'BR', population 12531895, area 567295.0, capital 'Salvador' } };
INSERT Province RELATION { TUPLE { name 'Ceara', country 'BR', population 6803567, area 146348.0, capital 'Fortaleza' } };
INSERT Province RELATION { TUPLE { name 'Espirito Santo', country 'BR', population 2786126, area 46184.0, capital 'Vitoria' } };
INSERT Province RELATION { TUPLE { name 'Goias', country 'BR', population 4501538, area 341289.0, capital 'Goiania' } };
INSERT Province RELATION { TUPLE { name 'Maranhao', country 'BR', population 5218442, area 333365.0, capital 'Sao Luis' } };
INSERT Province RELATION { TUPLE { name 'Mato Grosso', country 'BR', population 2227983, area 906806.0, capital 'Cuiaba' } };
INSERT Province RELATION { TUPLE { name 'Mato Grosso do Sul', country 'BR', population 1922258, area 358158.0, capital 'Campo Grande' } };
INSERT Province RELATION { TUPLE { name 'Minas Gerais', country 'BR', population 16660691, area 588383.0, capital 'Belo Horizonte' } };
INSERT Province RELATION { TUPLE { name 'Para', country 'BR', population 5522783, area 1253164.0, capital 'Belem' } };
INSERT Province RELATION { TUPLE { name 'Paraiba', country 'BR', population 3305562, area 56584.0, capital 'Joao Pessoa' } };
INSERT Province RELATION { TUPLE { name 'Parana', country 'BR', population 8985981, area 199709.0, capital 'Curitiba' } };
INSERT Province RELATION { TUPLE { name 'Pernambuco', country 'BR', population 7404559, area 98937.0, capital 'Recife' } };
INSERT Province RELATION { TUPLE { name 'Piaui', country 'BR', population 2676098, area 252378.0, capital 'Teresina' } };
INSERT Province RELATION { TUPLE { name 'Rio de Janeiro', country 'BR', population 13316455, area 43909.0, capital 'Rio de Janeiro' } };
INSERT Province RELATION { TUPLE { name 'Rio Grande do Norte', country 'BR', population 2556939, area 53306.0, capital 'Natal' } };
INSERT Province RELATION { TUPLE { name 'Rio Grande do Sul', country 'BR', population 9623003, area 282062.0, capital 'Porto Alegre' } };
INSERT Province RELATION { TUPLE { name 'Rondonia', country 'BR', population 1221290, area 238512.0, capital 'Porto Velho' } };
INSERT Province RELATION { TUPLE { name 'Roraima', country 'BR', population 247724, area 225116.0, capital 'Boa Vista' } };
INSERT Province RELATION { TUPLE { name 'Santa Catarina', country 'BR', population 4865090, area 95442.0, capital 'Florianopolis' } };
INSERT Province RELATION { TUPLE { name 'Sao Paulo', country 'BR', population 34055715, area 248808.0, capital 'Sao Paulo' } };
INSERT Province RELATION { TUPLE { name 'Sergipe', country 'BR', population 1617368, area 22050.0, capital 'Aracaju' } };
INSERT Province RELATION { TUPLE { name 'Tocantins', country 'BR', population 1049742, area 278420.0, capital 'Palmas' } };
INSERT Province RELATION { TUPLE { name 'Distrito Federal', country 'BR', population 1817001, area 5822.0, capital 'Brasilia' } };
INSERT Province RELATION { TUPLE { name 'Amazonas', country 'PE', population 374587, area 39249.0, capital 'Chachapoyas' } };
INSERT Province RELATION { TUPLE { name 'Ancash', country 'PE', population 1024398, area 35825.0, capital 'Huaraz' } };
INSERT Province RELATION { TUPLE { name 'Apurimac', country 'PE', population 409630, area 20895.0, capital 'Abancay' } };
INSERT Province RELATION { TUPLE { name 'Arequipa', country 'PE', population 999851, area 63345.0, capital 'Arequipa' } };
INSERT Province RELATION { TUPLE { name 'Ayacucho', country 'PE', population 517397, area 43814.0, capital 'Ayacucho' } };
INSERT Province RELATION { TUPLE { name 'Cajamarca', country 'PE', population 1349129, area 33247.0, capital 'Cajamarca' } };
INSERT Province RELATION { TUPLE { name 'Callao', country 'PE', population 701022, area 146.0, capital 'Callao' } };
INSERT Province RELATION { TUPLE { name 'Cuzco', country 'PE', population 1107473, area 71891.0, capital 'Cuzco' } };
INSERT Province RELATION { TUPLE { name 'Huancavelica', country 'PE', population 413136, area 22131.0, capital 'Huancavelica' } };
INSERT Province RELATION { TUPLE { name 'Huanuco', country 'PE', population 722669, area 36938.0, capital 'Huanuco' } };
INSERT Province RELATION { TUPLE { name 'Ica', country 'PE', population 608609, area 21327.0, capital 'Ica' } };
INSERT Province RELATION { TUPLE { name 'Junin', country 'PE', population 1132448, area 44409.0, capital 'Huancayo' } };
INSERT Province RELATION { TUPLE { name 'La Libertad', country 'PE', population 1366125, area 25569.0, capital 'Trujillo' } };
INSERT Province RELATION { TUPLE { name 'Lambayeque', country 'PE', population 1009655, area 14231.0, capital 'Chiclayo' } };
INSERT Province RELATION { TUPLE { name 'Lima', country 'PE', population 6941672, area 34801.0, capital 'Lima' } };
INSERT Province RELATION { TUPLE { name 'Loreto', country 'PE', population 789235, area 368851.0, capital 'Iquitos' } };
INSERT Province RELATION { TUPLE { name 'Madre de Dios', country 'PE', population 74306, area 85182.0, capital 'Puerto Maldonado' } };
INSERT Province RELATION { TUPLE { name 'Moquegua', country 'PE', population 137747, area 15733.0, capital 'Moquegua' } };
INSERT Province RELATION { TUPLE { name 'Pasco', country 'PE', population 243366, area 25319.0, capital 'Cerro de Pasco' } };
INSERT Province RELATION { TUPLE { name 'Piura', country 'PE', population 1468337, area 35892.0, capital 'Piura' } };
INSERT Province RELATION { TUPLE { name 'Puno', country 'PE', population 1144151, area 71999.0, capital 'Puno' } };
INSERT Province RELATION { TUPLE { name 'San Martin', country 'PE', population 627781, area 51253.0, capital 'Moyobamba' } };
INSERT Province RELATION { TUPLE { name 'Tacna', country 'PE', population 245843, area 16075.0, capital 'Tacna' } };
INSERT Province RELATION { TUPLE { name 'Tumbes', country 'PE', population 173616, area 4669.0, capital 'Tumbes' } };
INSERT Province RELATION { TUPLE { name 'Ucayali', country 'PE', population 364596, area 102410.0, capital 'Pucallpa' } };
INSERT Province RELATION { TUPLE { name 'Amazonas', country 'YV', population 94590, area 175750.0, capital 'Puerto Ayacucho' } };
INSERT Province RELATION { TUPLE { name 'Anzoategui', country 'YV', population 1034311, area 43300.0, capital 'Barcelona' } };
INSERT Province RELATION { TUPLE { name 'Apure', country 'YV', population 382572, area 76500.0, capital 'San Fernando' } };
INSERT Province RELATION { TUPLE { name 'Aragua', country 'YV', population 1344099, area 7014.0, capital 'Maracay' } };
INSERT Province RELATION { TUPLE { name 'Barinas', country 'YV', population 519197, area 35200.0, capital 'Barinas' } };
INSERT Province RELATION { TUPLE { name 'Bolivar', country 'YV', population 1142210, area 238000.0, capital 'Ciudad Bolivar' } };
INSERT Province RELATION { TUPLE { name 'Carabobo', country 'YV', population 1823767, area 4650.0, capital 'Valencia' } };
INSERT Province RELATION { TUPLE { name 'Cojedes', country 'YV', population 227741, area 14800.0, capital 'San Carlos' } };
INSERT Province RELATION { TUPLE { name 'Delta Amacuro', country 'YV', population 114390, area 40200.0, capital 'Tucupita' } };
INSERT Province RELATION { TUPLE { name 'Falcon', country 'YV', population 699232, area 24800.0, capital 'Coro' } };
INSERT Province RELATION { TUPLE { name 'Guarico', country 'YV', population 583221, area 64986.0, capital 'San Juan' } };
INSERT Province RELATION { TUPLE { name 'Lara', country 'YV', population 1430968, area 19800.0, capital 'Barquisimeto' } };
INSERT Province RELATION { TUPLE { name 'Merida', country 'YV', population 680503, area 11300.0, capital 'Merida' } };
INSERT Province RELATION { TUPLE { name 'Miranda', country 'YV', population 2303302, area 7950.0, capital 'Los Teques' } };
INSERT Province RELATION { TUPLE { name 'Monagas', country 'YV', population 555705, area 28900.0, capital 'Maturin' } };
INSERT Province RELATION { TUPLE { name 'Nueva Esparta', country 'YV', population 330307, area 1150.0, capital 'La Ascuncion' } };
INSERT Province RELATION { TUPLE { name 'Portuguesa', country 'YV', population 720865, area 15200.0, capital 'Guanare' } };
INSERT Province RELATION { TUPLE { name 'Sucre', country 'YV', population 781756, area 11800.0, capital 'Cumana' } };
INSERT Province RELATION { TUPLE { name 'Tachira', country 'YV', population 946949, area 11100.0, capital 'San Cristobal' } };
INSERT Province RELATION { TUPLE { name 'Trujillo', country 'YV', population 562752, area 7400.0, capital 'Trujillo' } };
INSERT Province RELATION { TUPLE { name 'Yaracuy', country 'YV', population 466152, area 7100.0, capital 'San Felipe' } };
INSERT Province RELATION { TUPLE { name 'Zulia', country 'YV', population 2820250, area 63100.0, capital 'Maracaibo' } };
INSERT Province RELATION { TUPLE { name 'Distrito Federal', country 'YV', population 2279677, area 1930.0, capital 'Caracas' } };
INSERT Province RELATION { TUPLE { name 'Cabinda', country 'ANG', population 163000, area 7270.0, capital 'Cabinda' } };
INSERT Province RELATION { TUPLE { name 'Zaire', country 'ANG', population 192000, area 40130.0, capital 'Mbanza Congo' } };
INSERT Province RELATION { TUPLE { name 'Uige', country 'ANG', population 837000, area 58698.0, capital 'Uige' } };
INSERT Province RELATION { TUPLE { name 'Luanda', country 'ANG', population 1629000, area 2418.0, capital 'Luanda' } };
INSERT Province RELATION { TUPLE { name 'Cuanza Norte', country 'ANG', population 378000, area 24110.0, capital 'Ndalatando' } };
INSERT Province RELATION { TUPLE { name 'Cuanza Sul', country 'ANG', population 651000, area 55660.0, capital 'Sumbe' } };
INSERT Province RELATION { TUPLE { name 'Malanje', country 'ANG', population 892000, area 87246.0, capital 'Malanje' } };
INSERT Province RELATION { TUPLE { name 'Lunda Norte', country 'ANG', population 292000, area 102783.0, capital 'Lucapa' } };
INSERT Province RELATION { TUPLE { name 'Lunda Sul', country 'ANG', population 155000, area 56985.0, capital 'Saurimo' } };
INSERT Province RELATION { TUPLE { name 'Benguela', country 'ANG', population 644000, area 31788.0, capital 'Benguela' } };
INSERT Province RELATION { TUPLE { name 'Huambo', country 'ANG', population 1524000, area 34274.0, capital 'Huambo' } };
INSERT Province RELATION { TUPLE { name 'Bie', country 'ANG', population 1125000, area 70314.0, capital 'Bie' } };
INSERT Province RELATION { TUPLE { name 'Moxico', country 'ANG', population 316000, area 223023.0, capital 'Luena' } };
INSERT Province RELATION { TUPLE { name 'Cuando Cubango', country 'ANG', population 130000, area 199049.0, capital 'Menongue' } };
INSERT Province RELATION { TUPLE { name 'Namibe', country 'ANG', population 115000, area 58137.0, capital 'Namibe' } };
INSERT Province RELATION { TUPLE { name 'Huila', country 'ANG', population 869000, area 75002.0, capital 'Lubango' } };
INSERT Province RELATION { TUPLE { name 'Bengo', country 'ANG', population 166000, area 31371.0, capital 'Caxito' } };
INSERT Province RELATION { TUPLE { name 'Cunene', country 'ANG', population 232000, area 88342.0, capital 'Ngiva' } };
INSERT Province RELATION { TUPLE { name 'Bandundu', country 'ZRE', population 4644758, area 295658.0, capital 'Bandundu' } };
INSERT Province RELATION { TUPLE { name 'Bas Zaire', country 'ZRE', population 2158595, area 53920.0, capital 'Matadi' } };
INSERT Province RELATION { TUPLE { name 'Equateur', country 'ZRE', population 3960187, area 403293.0, capital 'Mbandaka' } };
INSERT Province RELATION { TUPLE { name 'Haut Zaire', country 'ZRE', population 5119750, area 503239.0, capital 'Kisangani' } };
INSERT Province RELATION { TUPLE { name 'Kasai Occidental', country 'ZRE', population 3465756, area 156967.0, capital 'Kananga' } };
INSERT Province RELATION { TUPLE { name 'Kasai Oriental', country 'ZRE', population 2859220, area 168216.0, capital 'Mbuji Mayi' } };
INSERT Province RELATION { TUPLE { name 'Kivu', country 'ZRE', population 5232442, area 256662.0, capital 'Bukavu' } };
INSERT Province RELATION { TUPLE { name 'Shaba/Katanga', country 'ZRE', population 4452618, area 496965.0, capital 'Lubumbashi' } };
INSERT Province RELATION { TUPLE { name 'Kinshasa', country 'ZRE', population 2778281, area 9965.0, capital 'Kinshasa' } };
INSERT Province RELATION { TUPLE { name 'Central', country 'Z', population 722400, area 94395.0, capital 'Kabwe' } };
INSERT Province RELATION { TUPLE { name 'Copperbelt', country 'Z', population 1866400, area 31328.0, capital 'Ndola' } };
INSERT Province RELATION { TUPLE { name 'Eastern', country 'Z', population 826100, area 69106.0, capital 'Chipata' } };
INSERT Province RELATION { TUPLE { name 'Luapula', country 'Z', population 526300, area 50567.0, capital 'Mansa' } };
INSERT Province RELATION { TUPLE { name 'Lusaka', country 'Z', population 1151300, area 21896.0, capital 'Lusaka' } };
INSERT Province RELATION { TUPLE { name 'Northern', country 'Z', population 832700, area 147826.0, capital 'Kasama' } };
INSERT Province RELATION { TUPLE { name 'Northwestern', country 'Z', population 396100, area 125827.0, capital 'Solwezi' } };
INSERT Province RELATION { TUPLE { name 'Southern', country 'Z', population 906900, area 85283.0, capital 'Livingstone' } };
INSERT Province RELATION { TUPLE { name 'Western', country 'Z', population 575500, area 126386.0, capital 'Mongu' } };
INSERT Province RELATION { TUPLE { name 'Eastern Cape', country 'RSA', population 5865000, area 170616.0, capital 'Bisho' } };
INSERT Province RELATION { TUPLE { name 'Free State', country 'RSA', population 2470000, area 129437.0, capital 'Bloemfontein' } };
INSERT Province RELATION { TUPLE { name 'Gauteng', country 'RSA', population 7171300, area 18760.0, capital 'Johannesburg' } };
INSERT Province RELATION { TUPLE { name 'Kwazulu Natal', country 'RSA', population 7672000, area 91481.0, capital 'Pietermaritzburg' } };
INSERT Province RELATION { TUPLE { name 'Mpumalanga', country 'RSA', population 2646000, area 81816.0, capital 'Nelspruit' } };
INSERT Province RELATION { TUPLE { name 'Northern Cape', country 'RSA', population 746000, area 363389.0, capital 'Kimberley' } };
INSERT Province RELATION { TUPLE { name 'Limpopo', country 'RSA', population 4128000, area 119606.0, capital 'Pietersburg' } };
INSERT Province RELATION { TUPLE { name 'North West', country 'RSA', population 3043000, area 118710.0, capital 'Mmabatho' } };
INSERT Province RELATION { TUPLE { name 'Western Cape', country 'RSA', population 4118000, area 129386.0, capital 'Cape Town' } };
INSERT Province RELATION { TUPLE { name 'Dodoma', country 'EAT', population 1237800, area 41311.0, capital 'Dodoma' } };
INSERT Province RELATION { TUPLE { name 'Arusha', country 'EAT', population 1351700, area 82306.0, capital 'Arusha' } };
INSERT Province RELATION { TUPLE { name 'Kilimanjaro', country 'EAT', population 1108700, area 13309.0, capital 'Moshi' } };
INSERT Province RELATION { TUPLE { name 'Tanga', country 'EAT', population 1283600, area 26808.0, capital 'Tanga' } };
INSERT Province RELATION { TUPLE { name 'Morogoro', country 'EAT', population 1222700, area 70799.0, capital 'Morogoro' } };
INSERT Province RELATION { TUPLE { name 'Pwani', country 'EAT', population 638000, area 32407.0, capital 'Dar es Salaam' } };
INSERT Province RELATION { TUPLE { name 'Daressalam', country 'EAT', population 1360900, area 1393.0, capital 'Dar es Salaam' } };
INSERT Province RELATION { TUPLE { name 'Lindi', country 'EAT', population 646600, area 66046.0, capital 'Lindi' } };
INSERT Province RELATION { TUPLE { name 'Mtwara', country 'EAT', population 889500, area 16707.0, capital 'Mtwara Mikandani' } };
INSERT Province RELATION { TUPLE { name 'Ruvuma', country 'EAT', population 783300, area 63498.0, capital 'Songea' } };
INSERT Province RELATION { TUPLE { name 'Iringa', country 'EAT', population 1208900, area 58864.0, capital 'Iringa' } };
INSERT Province RELATION { TUPLE { name 'Mbeya', country 'EAT', population 1476200, area 60350.0, capital 'Mbeya' } };
INSERT Province RELATION { TUPLE { name 'Singida', country 'EAT', population 791800, area 49341.0, capital 'Singida' } };
INSERT Province RELATION { TUPLE { name 'Tabora', country 'EAT', population 1036300, area 76151.0, capital 'Tabora' } };
INSERT Province RELATION { TUPLE { name 'Rukwa', country 'EAT', population 684000, area 68635.0, capital 'Sumbawanga' } };
INSERT Province RELATION { TUPLE { name 'Kigoma', country 'EAT', population 854800, area 37037.0, capital 'Kigoma Ujiji' } };
INSERT Province RELATION { TUPLE { name 'Shinyanga', country 'EAT', population 1772500, area 50781.0, capital 'Shinyanga' } };
INSERT Province RELATION { TUPLE { name 'Kagera', country 'EAT', population 1326200, area 28388.0, capital 'Bukoba' } };
INSERT Province RELATION { TUPLE { name 'Mwanza', country 'EAT', population 1878300, area 19592.0, capital 'Mwanza' } };
INSERT Province RELATION { TUPLE { name 'Mara', country 'EAT', population 970900, area 19566.0, capital 'Musoma' } };
INSERT Province RELATION { TUPLE { name 'Kaskazini Ujunga', country 'EAT', population 97000, area 470.0, capital 'Mkokotoni' } };
INSERT Province RELATION { TUPLE { name 'Kusini Ujunga', country 'EAT', population 70200, area 854.0, capital 'Koani' } };
INSERT Province RELATION { TUPLE { name 'Mjini Magharibi', country 'EAT', population 208300, area 230.0, capital 'Zanzibar' } };
INSERT Province RELATION { TUPLE { name 'Kaskazini Pemba', country 'EAT', population 137400, area 574.0, capital 'Wete' } };
INSERT Province RELATION { TUPLE { name 'Kusini Pemba', country 'EAT', population 127600, area 332.0, capital 'Chake Cahke' } };
INSERT Province RELATION { TUPLE { name 'Adamaoua', country 'CAM', population 495200, area 63691.0, capital 'Ngaoundere' } };
INSERT Province RELATION { TUPLE { name 'Centre', country 'CAM', population 1651600, area 68926.0, capital 'Yaounde' } };
INSERT Province RELATION { TUPLE { name 'Est', country 'CAM', population 517200, area 109011.0, capital 'Bertoua' } };
INSERT Province RELATION { TUPLE { name 'Nord extreme', country 'CAM', population 1855700, area 34246.0, capital 'Maroua' } };
INSERT Province RELATION { TUPLE { name 'Cote/Littoral', country 'CAM', population 1354800, area 20239.0, capital 'Douala' } };
INSERT Province RELATION { TUPLE { name 'Nord', country 'CAM', population 832200, area 65576.0, capital 'Garoua' } };
INSERT Province RELATION { TUPLE { name 'Nordoueste', country 'CAM', population 1237300, area 17810.0, capital 'Bamenda' } };
INSERT Province RELATION { TUPLE { name 'Ouest', country 'CAM', population 1339800, area 13872.0, capital 'Bafoussam' } };
INSERT Province RELATION { TUPLE { name 'Sud', country 'CAM', population 373800, area 47110.0, capital 'Ebolowa' } };
INSERT Province RELATION { TUPLE { name 'Sudoueste', country 'CAM', population 838000, area 24471.0, capital 'Buea' } };
INSERT Province RELATION { TUPLE { name 'Aali an Nil', country 'SUD', population 1599605, area 238792.0, capital 'Malakal' } };
INSERT Province RELATION { TUPLE { name 'Bahr al Ghazal', country 'SUD', population 2265510, area 200894.0, capital 'Waw' } };
INSERT Province RELATION { TUPLE { name 'Darfur', country 'SUD', population 3093699, area 508684.0, capital 'al Fasher' } };
INSERT Province RELATION { TUPLE { name 'al Istiwaiyah', country 'SUD', population 1406181, area 197969.0, capital 'Juba' } };
INSERT Province RELATION { TUPLE { name 'al Khartum', country 'SUD', population 1802299, area 28165.0, capital 'Khartoum' } };
INSERT Province RELATION { TUPLE { name 'Kurdufan', country 'SUD', population 3093294, area 380255.0, capital 'al Ubayyid' } };
INSERT Province RELATION { TUPLE { name 'ash Shamaliyah', country 'SUD', population 1083024, area 476040.0, capital 'ad Damir' } };
INSERT Province RELATION { TUPLE { name 'ash Sharqiyah', country 'SUD', population 2208209, area 334074.0, capital 'Kassala' } };
INSERT Province RELATION { TUPLE { name 'Nil al Asraq', country 'SUD', population 4012543, area 139017.0, capital 'Wad Madani' } };
INSERT Province RELATION { TUPLE { name 'Central', country 'EAK', population 3110000, area 13176.0, capital 'Nyeri' } };
INSERT Province RELATION { TUPLE { name 'Coast', country 'EAK', population 1880000, area 83603.0, capital 'Mombasa' } };
INSERT Province RELATION { TUPLE { name 'Eastern', country 'EAK', population 3724000, area 159891.0, capital 'Embu' } };
INSERT Province RELATION { TUPLE { name 'Nairobi', country 'EAK', population 1346000, area 684.0, capital 'Nairobi' } };
INSERT Province RELATION { TUPLE { name 'North Eastern', country 'EAK', population 372000, area 126090.0, capital 'Garissa' } };
INSERT Province RELATION { TUPLE { name 'Nyanza', country 'EAK', population 3558000, area 16162.0, capital 'Kisumu' } };
INSERT Province RELATION { TUPLE { name 'Rift Valley', country 'EAK', population 4894000, area 173868.0, capital 'Nakuru' } };
INSERT Province RELATION { TUPLE { name 'Western', country 'EAK', population 2543000, area 8360.0, capital 'Kakamega' } };
INSERT Province RELATION { TUPLE { name 'Dakar', country 'SN', population 1490500, area 550.0, capital 'Dakar' } };
INSERT Province RELATION { TUPLE { name 'Diourbel', country 'SN', population 619700, area 4359.0, capital 'Diourbel' } };
INSERT Province RELATION { TUPLE { name 'Fatick', country 'SN', population 476000, area 7935.0, capital 'Fatick' } };
INSERT Province RELATION { TUPLE { name 'Kaolack', country 'SN', population 816400, area 16010.0, capital 'Kaolack' } };
INSERT Province RELATION { TUPLE { name 'Kolda', country 'SN', population 606800, area 21011.0, capital 'Kolda' } };
INSERT Province RELATION { TUPLE { name 'Louga', country 'SN', population 490400, area 29188.0, capital 'Louga' } };
INSERT Province RELATION { TUPLE { name 'Saint Louis', country 'SN', population 680200, area 44127.0, capital 'Saint Louis' } };
INSERT Province RELATION { TUPLE { name 'Tambacounda', country 'SN', population 370000, area 59602.0, capital 'Tambacounda' } };
INSERT Province RELATION { TUPLE { name 'Thies', country 'SN', population 948100, area 6601.0, capital 'Thies' } };
INSERT Province RELATION { TUPLE { name 'Ziguinchor', country 'SN', population 394700, area 7339.0, capital 'Ziguinchor' } };
INSERT Province RELATION { TUPLE { name 'Antsiranana', country 'RM', population 689800, area 43046.0, capital 'Antsiranana' } };
INSERT Province RELATION { TUPLE { name 'Antananarivo', country 'RM', population 3195800, area 58283.0, capital 'Antananarivo' } };
INSERT Province RELATION { TUPLE { name 'Fianarantsoa', country 'RM', population 2209700, area 102373.0, capital 'Fianarantsoa' } };
INSERT Province RELATION { TUPLE { name 'Mahajanga', country 'RM', population 1075300, area 150023.0, capital 'Majunga' } };
INSERT Province RELATION { TUPLE { name 'Toamasina', country 'RM', population 1444700, area 71911.0, capital 'Tamatave' } };
INSERT Province RELATION { TUPLE { name 'Toliara', country 'RM', population 1396700, area 161405.0, capital 'Toliara' } };
INSERT Province RELATION { TUPLE { name 'Cabo Delgado', country 'MOC', population 1202200, area 82625.0, capital 'Pemba' } };
INSERT Province RELATION { TUPLE { name 'Gaza', country 'MOC', population 1401500, area 75709.0, capital 'Xai Xai' } };
INSERT Province RELATION { TUPLE { name 'Inhambane', country 'MOC', population 1157000, area 68615.0, capital 'Inhambane' } };
INSERT Province RELATION { TUPLE { name 'Manica', country 'MOC', population 609500, area 61661.0, capital 'Chimoio' } };
INSERT Province RELATION { TUPLE { name 'Maputo', country 'MOC', population 840800, area 25756.0, capital 'Maputo' } };
INSERT Province RELATION { TUPLE { name 'Nampula', country 'MOC', population 2841400, area 81606.0, capital 'Nampula' } };
INSERT Province RELATION { TUPLE { name 'Niassa', country 'MOC', population 686700, area 129055.0, capital 'Lichinga' } };
INSERT Province RELATION { TUPLE { name 'Sofala', country 'MOC', population 1427500, area 68018.0, capital 'Beira' } };
INSERT Province RELATION { TUPLE { name 'Tete', country 'MOC', population 734600, area 100724.0, capital 'Tete' } };
INSERT Province RELATION { TUPLE { name 'Zambezia', country 'MOC', population 2619300, area 105008.0, capital 'Quelimane' } };
INSERT Province RELATION { TUPLE { name 'Maputo (munic.)', country 'MOC', population 931600, area 602.0, capital 'Maputo' } };
/* INSERT : Mountain */
INSERT Mountain RELATION { TUPLE { name 'Ben Nevis', mountains 'Grampians', height 1344.0 } };
INSERT Mountain RELATION { TUPLE { name 'Feldberg', mountains 'Schwarzwald', height 1493.0 } };
INSERT Mountain RELATION { TUPLE { name 'Brocken', mountains 'Harz', height 1141.0 } };
INSERT Mountain RELATION { TUPLE { name 'Grosser Arber', mountains 'Bayrischer Wald', height 1456.0 } };
INSERT Mountain RELATION { TUPLE { name 'Zugspitze', mountains 'Alps', height 2963.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mont Blanc', mountains 'Alps', height 4808.0 } };
INSERT Mountain RELATION { TUPLE { name 'Barre des Ecrins', mountains 'Alps', height 4101.0 } };
INSERT Mountain RELATION { TUPLE { name 'GrandCombin', mountains 'Alps', height 4314.0 } };
INSERT Mountain RELATION { TUPLE { name 'Matterhorn', mountains 'Alps', height 4478.0 } };
INSERT Mountain RELATION { TUPLE { name 'Monte Rosa', mountains 'Alps', height 4634.0 } };
INSERT Mountain RELATION { TUPLE { name 'Finsteraarhorn', mountains 'Alps', height 4274.0 } };
INSERT Mountain RELATION { TUPLE { name 'GranParadiso', mountains 'Alps', height 4061.0 } };
INSERT Mountain RELATION { TUPLE { name 'Piz Bernina', mountains 'Alps', height 4048.0 } };
INSERT Mountain RELATION { TUPLE { name 'Crap_Sogn_Gion', mountains 'Alps', height 2228.0 } };
INSERT Mountain RELATION { TUPLE { name 'Marmolata', mountains 'Alps', height 3343.0 } };
INSERT Mountain RELATION { TUPLE { name 'Grossglockner', mountains 'Alps', height 3797.0 } };
INSERT Mountain RELATION { TUPLE { name 'Hochgolling', mountains 'Alps', height 2862.0 } };
INSERT Mountain RELATION { TUPLE { name 'Grand Ballon', mountains 'Vosges', height 1424.0 } };
INSERT Mountain RELATION { TUPLE { name 'Puy De Dome', mountains 'Cevennes', height 1465.0 } };
INSERT Mountain RELATION { TUPLE { name 'Puy de Sancy', mountains 'Cevennes', height 1885.0 } };
INSERT Mountain RELATION { TUPLE { name 'Vignemale', mountains 'Pyrenees', height 3298.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pico de Aneto', mountains 'Pyrenees', height 3404.0 } };
INSERT Mountain RELATION { TUPLE { name 'Torre de Cerredo', mountains 'Cordillera Cantabrica', height 2648.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pico de Almanzor', mountains 'Cordillera Central', height 2648.0 } };
INSERT Mountain RELATION { TUPLE { name 'Moncayo', mountains 'Cordillera Iberica', height 2313.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mulhacen', mountains 'Cordillera Betica', height 3482.0 } };
INSERT Mountain RELATION { TUPLE { name 'Torre de Estrela', mountains 'Cordillera Central', height 1993.0 } };
INSERT Mountain RELATION { TUPLE { name 'Monte Cinto', mountains 'Corse', height 2706.0 } };
INSERT Mountain RELATION { TUPLE { name 'Gran Sasso', mountains 'Apennin', height 2912.0 } };
INSERT Mountain RELATION { TUPLE { name 'Monte Falterona', mountains 'Apennin', height 1654.0 } };
INSERT Mountain RELATION { TUPLE { name 'Schneekoppe', mountains 'Sudety Mountains', height 1602.0 } };
INSERT Mountain RELATION { TUPLE { name 'GerlachovskyStit', mountains 'Beskides', height 2655.0 } };
INSERT Mountain RELATION { TUPLE { name 'Moldoveanu', mountains 'Karpaten', height 2544.0 } };
INSERT Mountain RELATION { TUPLE { name 'Musala', mountains 'Balkan', height 2925.0 } };
INSERT Mountain RELATION { TUPLE { name 'Jezerce', mountains 'Balkan', height 2694.0 } };
INSERT Mountain RELATION { TUPLE { name 'Korab', mountains 'Balkan', height 2751.0 } };
INSERT Mountain RELATION { TUPLE { name 'Psiloritis', mountains 'Crete', height 2456.0 } };
INSERT Mountain RELATION { TUPLE { name 'Olympos', mountains 'Troodos', height 1952.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pico de Teide', mountains 'Canary Islands', height 3718.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pico de los Nieves', mountains 'Canary Islands', height 1949.0 } };
INSERT Mountain RELATION { TUPLE { name 'Roque de los Muchachos', mountains 'Canary Islands', height 2426.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pico Ruivo', mountains 'Madeira', height 1861.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pico', mountains 'Azores', height 2351.0 } };
INSERT Mountain RELATION { TUPLE { name 'Fogo', mountains 'Cape Verdes', height 2829.0 } };
INSERT Mountain RELATION { TUPLE { name 'Tubkhal', mountains 'Atlas', height 4165.0 } };
INSERT Mountain RELATION { TUPLE { name 'Djebel Aures', mountains 'Rif', height 2456.0 } };
INSERT Mountain RELATION { TUPLE { name 'Tahat', mountains 'Ahaggar', height 3003.0 } };
INSERT Mountain RELATION { TUPLE { name 'Tamgak', mountains 'Azbine', height 1800.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mont Greboun', mountains 'Azbine', height 1944.0 } };
INSERT Mountain RELATION { TUPLE { name 'Emi Kussi', mountains 'Tibesti', height 3415.0 } };
INSERT Mountain RELATION { TUPLE { name 'Jabal Marra', mountains 'Darfur', height 3088.0 } };
INSERT Mountain RELATION { TUPLE { name 'Jabal Katrina', mountains 'Sinai', height 2637.0 } };
INSERT Mountain RELATION { TUPLE { name 'Ras Daschan Terara', mountains 'Amhara', height 4533.0 } };
INSERT Mountain RELATION { TUPLE { name 'Ruwenzori', mountains 'East African Rift', height 5109.0 } };
INSERT Mountain RELATION { TUPLE { name 'Elgon', mountains 'East African Rift', height 4321.0 } };
INSERT Mountain RELATION { TUPLE { name 'Kenia', mountains 'East African Rift', height 5199.0 } };
INSERT Mountain RELATION { TUPLE { name 'Kilimanjaro', mountains 'East African Rift', height 5895.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mawenzi', mountains 'East African Rift', height 5148.0 } };
INSERT Mountain RELATION { TUPLE { name 'Meru', mountains 'East African Rift', height 4567.0 } };
INSERT Mountain RELATION { TUPLE { name 'Karisimbi', mountains 'East African Rift', height 4507.0 } };
INSERT Mountain RELATION { TUPLE { name 'Thabana Ntlenyana', mountains 'Drakensberge', height 3482.0 } };
INSERT Mountain RELATION { TUPLE { name 'Cathkin Peak', mountains 'Drakensberge', height 3181.0 } };
INSERT Mountain RELATION { TUPLE { name 'Narodnaja', mountains 'Ural', height 1895.0 } };
INSERT Mountain RELATION { TUPLE { name 'Demirkazik', mountains 'Taurus', height 3756.0 } };
INSERT Mountain RELATION { TUPLE { name 'Ararat', mountains 'Kurdistan', height 5165.0 } };
INSERT Mountain RELATION { TUPLE { name 'Jabal Lubnan', mountains 'Lebanon', height 3088.0 } };
INSERT Mountain RELATION { TUPLE { name 'Elbrus', mountains 'Kaukasus', height 5642.0 } };
INSERT Mountain RELATION { TUPLE { name 'Kasbek', mountains 'Kaukasus', height 5033.0 } };
INSERT Mountain RELATION { TUPLE { name 'Damavand', mountains 'Elburs', height 5610.0 } };
INSERT Mountain RELATION { TUPLE { name 'Sabalan', mountains 'Kurdistan', height 4811.0 } };
INSERT Mountain RELATION { TUPLE { name 'Zard Kuh', mountains 'Zagros', height 4550.0 } };
INSERT Mountain RELATION { TUPLE { name 'Dodabetta', mountains 'West Ghats', height 2636.0 } };
INSERT Mountain RELATION { TUPLE { name 'Bjelucha', mountains 'Altai', height 4506.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pik Chan-Tengri', mountains 'Tien Shan', height 6995.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pik Pobeda', mountains 'Tien Shan', height 7439.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pik Kommunizma', mountains 'Pamir', height 7494.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pik Lenina', mountains 'Pamir', height 7134.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pik Revoluzija', mountains 'Pamir', height 6974.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pik Moskva', mountains 'Pamir', height 6785.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pik Karl-Marx', mountains 'Pamir', height 6726.0 } };
INSERT Mountain RELATION { TUPLE { name 'Tirich Mir', mountains 'Hindukusch', height 7690.0 } };
INSERT Mountain RELATION { TUPLE { name 'K2', mountains 'Karakorum', height 8611.0 } };
INSERT Mountain RELATION { TUPLE { name 'Gasherbrum II', mountains 'Karakorum', height 8034.0 } };
INSERT Mountain RELATION { TUPLE { name 'Gasherbrum I', mountains 'Karakorum', height 8080.0 } };
INSERT Mountain RELATION { TUPLE { name 'Broad Peak', mountains 'Karakorum', height 8051.0 } };
INSERT Mountain RELATION { TUPLE { name 'Nanga Parbat', mountains 'Karakorum', height 8125.0 } };
INSERT Mountain RELATION { TUPLE { name 'Nanda Devi', mountains 'Himalaya', height 7816.0 } };
INSERT Mountain RELATION { TUPLE { name 'Dhaulagiri', mountains 'Himalaya', height 8167.0 } };
INSERT Mountain RELATION { TUPLE { name 'Annapurna', mountains 'Himalaya', height 8091.0 } };
INSERT Mountain RELATION { TUPLE { name 'Manaslu', mountains 'Himalaya', height 8163.0 } };
INSERT Mountain RELATION { TUPLE { name 'Shishapangma', mountains 'Himalaya', height 8027.0 } };
INSERT Mountain RELATION { TUPLE { name 'Kailash', mountains 'Transhimalaya', height 6714.0 } };
INSERT Mountain RELATION { TUPLE { name 'Cho Oyu', mountains 'Himalaya', height 8188.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mount Everest', mountains 'Himalaya', height 8848.0 } };
INSERT Mountain RELATION { TUPLE { name 'Lhotse', mountains 'Himalaya', height 8516.0 } };
INSERT Mountain RELATION { TUPLE { name 'Makalu', mountains 'Himalaya', height 8485.0 } };
INSERT Mountain RELATION { TUPLE { name 'Kangchendzonga', mountains 'Himalaya', height 8586.0 } };
INSERT Mountain RELATION { TUPLE { name 'Kljutschewskaja Sopka', mountains 'Kamchatka', height 4750.0 } };
INSERT Mountain RELATION { TUPLE { name 'Changbai Shan', mountains 'Changbai', height 2744.0 } };
INSERT Mountain RELATION { TUPLE { name 'Puncak Jaya', mountains 'Sudirman Range', height 4884.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mauna Kea', mountains 'Hawaii', height 4214.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mauna Loa', mountains 'Hawaii', height 4170.0 } };
INSERT Mountain RELATION { TUPLE { name 'Haleakala', mountains 'Hawaii', height 3055.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt. Kosciuszko', mountains 'Snowy Mountains', height 2228.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt. Bogong', mountains 'Snowy Mountains', height 1986.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt. Cook', mountains 'New Zealand Alps', height 3754.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Redoubt', mountains 'Aleutian Range', height 3108.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt McKinley', mountains 'Alaska Range', height 6193.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Blackburn', mountains 'Wrangell Mountains', height 4996.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Bona', mountains 'Elias Range', height 5005.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt St.Elias', mountains 'Elias Range', height 5489.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Logan', mountains 'Elias Range', height 5959.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Fairweather', mountains 'Elias Range', height 4663.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Waddington', mountains 'Coast Mountains', height 4019.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Robson', mountains 'Rocky Mountains', height 3954.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Columbia', mountains 'Rocky Mountains', height 3747.0 } };
INSERT Mountain RELATION { TUPLE { name 'Barbeau Peak', mountains 'British Empire Range', height 2616.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt. Odin', mountains 'Penny Highlands', height 2147.0 } };
INSERT Mountain RELATION { TUPLE { name 'Granite Peak', mountains 'Rocky Mountains', height 3901.0 } };
INSERT Mountain RELATION { TUPLE { name 'Borah Peak', mountains 'Rocky Mountains', height 3859.0 } };
INSERT Mountain RELATION { TUPLE { name 'Harney Peak', mountains 'Rocky Mountains', height 2207.0 } };
INSERT Mountain RELATION { TUPLE { name 'Gannett Peak', mountains 'Rocky Mountains', height 4207.0 } };
INSERT Mountain RELATION { TUPLE { name 'Kings Peak', mountains 'Rocky Mountains', height 4123.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Elbert', mountains 'Rocky Mountains', height 4401.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pikes Peak', mountains 'Rocky Mountains', height 4302.0 } };
INSERT Mountain RELATION { TUPLE { name 'Wheeler Peak', mountains 'Rocky Mountains', height 4011.0 } };
INSERT Mountain RELATION { TUPLE { name 'Humphreys Peak', mountains 'Rocky Mountains', height 3850.0 } };
INSERT Mountain RELATION { TUPLE { name 'Guadalupe Peak', mountains 'Rocky Mountains', height 2667.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Rainier', mountains 'Cascade Range', height 4392.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Adams', mountains 'Cascade Range', height 3743.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Hood', mountains 'Cascade Range', height 3424.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Whitney', mountains 'Sierra Nevada California', height 4418.0 } };
INSERT Mountain RELATION { TUPLE { name 'Boundary Peak', mountains 'Sierra Nevada California', height 4006.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Washington', mountains 'Appalachen', height 1917.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Marcy', mountains 'Adirondacks', height 1629.0 } };
INSERT Mountain RELATION { TUPLE { name 'Mt Mitchell', mountains 'Appalachen', height 2037.0 } };
INSERT Mountain RELATION { TUPLE { name 'Clingmans Dome', mountains 'Appalachen', height 2025.0 } };
INSERT Mountain RELATION { TUPLE { name 'Citlaltepetl (Pico de Orizaba)', mountains 'Cordillera Volcanica', height 5700.0 } };
INSERT Mountain RELATION { TUPLE { name 'Popocatepetl', mountains 'Cordillera Volcanica', height 5450.0 } };
INSERT Mountain RELATION { TUPLE { name 'Iztaccihuatl', mountains 'Cordillera Volcanica', height 5286.0 } };
INSERT Mountain RELATION { TUPLE { name 'Nevado de Toluca', mountains 'Cordillera Volcanica', height 4558.0 } };
INSERT Mountain RELATION { TUPLE { name 'Nevado de Colima', mountains 'Cordillera Volcanica', height 4330.0 } };
INSERT Mountain RELATION { TUPLE { name 'Tajumulco', mountains 'Sierra Madre', height 4220.0 } };
INSERT Mountain RELATION { TUPLE { name 'Irazu', mountains 'Cordillera de Talamanca', height 3432.0 } };
INSERT Mountain RELATION { TUPLE { name 'Cerro Chirripo', mountains 'Cordillera de Talamanca', height 3819.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pico Turquino', mountains 'Sierra Maestra', height 1974.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pico Cristobal Colon', mountains 'Sierra Nevada de Santa Marta', height 5775.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pico Bolivar', mountains 'Andes', height 4981.0 } };
INSERT Mountain RELATION { TUPLE { name 'Nevado del Ruiz', mountains 'Andes', height 5389.0 } };
INSERT Mountain RELATION { TUPLE { name 'Nevado del Huila', mountains 'Andes', height 5750.0 } };
INSERT Mountain RELATION { TUPLE { name 'Cayambe', mountains 'Andes', height 5796.0 } };
INSERT Mountain RELATION { TUPLE { name 'Cotopaxi', mountains 'Andes', height 5897.0 } };
INSERT Mountain RELATION { TUPLE { name 'Chimborazo', mountains 'Andes', height 6287.0 } };
INSERT Mountain RELATION { TUPLE { name 'Huascaran', mountains 'Cordillera Blanca', height 6768.0 } };
INSERT Mountain RELATION { TUPLE { name 'Alpamayo', mountains 'Cordillera Blanca', height 5947.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pico Rocarre', mountains 'Cordillera Negra', height 5187.0 } };
INSERT Mountain RELATION { TUPLE { name 'Ausangate', mountains 'Cordillera Vilcanota', height 6336.0 } };
INSERT Mountain RELATION { TUPLE { name 'Coropuna', mountains 'Cordillera Volcanica', height 6425.0 } };
INSERT Mountain RELATION { TUPLE { name 'Ampato', mountains 'Andes', height 6288.0 } };
INSERT Mountain RELATION { TUPLE { name 'Illampu', mountains 'Cordillera Real', height 6368.0 } };
INSERT Mountain RELATION { TUPLE { name 'Illimani', mountains 'Cordillera Real', height 6439.0 } };
INSERT Mountain RELATION { TUPLE { name 'Sajama', mountains 'Andes', height 6542.0 } };
INSERT Mountain RELATION { TUPLE { name 'Licancabur', mountains 'Andes', height 5920.0 } };
INSERT Mountain RELATION { TUPLE { name 'Llullaillaco', mountains 'Andes', height 6739.0 } };
INSERT Mountain RELATION { TUPLE { name 'Ojos del Salado', mountains 'Andes', height 6893.0 } };
INSERT Mountain RELATION { TUPLE { name 'Monte Pissis', mountains 'Andes', height 6795.0 } };
INSERT Mountain RELATION { TUPLE { name 'Aconcagua', mountains 'Andes', height 6962.0 } };
INSERT Mountain RELATION { TUPLE { name 'Tupungato', mountains 'Andes', height 6550.0 } };
INSERT Mountain RELATION { TUPLE { name 'Pico de Agulhas Negras', mountains 'Brazilian Highlands', height 2791.0 } };
/* INSERT : GeoMountain */
INSERT GeoMountain RELATION { TUPLE { mountain 'Oeraefajoekull', country 'IS', province 'Iceland' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Snoefell', country 'IS', province 'Iceland' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Haltiatunturi', country 'SF', province 'Lappia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Kebnekaise', country 'S', province 'Norrbotten' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Sarektjokko', country 'S', province 'Norrbotten' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Portefjaellen', country 'S', province 'Norrbotten' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Tarrekaise', country 'S', province 'Norrbotten' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Sulitjelma', country 'N', province 'Nordland' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Sulitjelma', country 'S', province 'Norrbotten' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Galdhoeppig', country 'N', province 'Oppland' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Jostedalsbre', country 'N', province 'Sogn og Fjordane' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Glittertind', country 'N', province 'Oppland' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Joekul', country 'N', province 'Hordaland' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Snoehetta', country 'N', province 'Oppland' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Ben Nevis', country 'GB', province 'Highland' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Feldberg', country 'D', province 'Baden Wurttemberg' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Brocken', country 'D', province 'Sachsen Anhalt' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Grosser Arber', country 'D', province 'Bayern' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Zugspitze', country 'D', province 'Bayern' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Zugspitze', country 'A', province 'Tyrol' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mont Blanc', country 'F', province 'Rhone Alpes' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mont Blanc', country 'I', province 'Valle dAosta' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Barre des Ecrins', country 'F', province 'Rhone Alpes' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'GrandCombin', country 'CH', province 'VS' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Matterhorn', country 'I', province 'Valle dAosta' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Matterhorn', country 'CH', province 'VS' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Monte Rosa', country 'I', province 'Valle dAosta' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Monte Rosa', country 'I', province 'Lombardia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Monte Rosa', country 'CH', province 'VS' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Finsteraarhorn', country 'CH', province 'BE' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Finsteraarhorn', country 'CH', province 'VS' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'GranParadiso', country 'I', province 'Piemonte' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'GranParadiso', country 'I', province 'Valle dAosta' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Piz Bernina', country 'I', province 'Lombardia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Piz Bernina', country 'CH', province 'GR' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Crap_Sogn_Gion', country 'CH', province 'GR' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Marmolata', country 'I', province 'Trentino Alto Adige' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Marmolata', country 'I', province 'Veneto' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Grossglockner', country 'A', province 'Carinthia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Hochgolling', country 'A', province 'Styria' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Hochgolling', country 'A', province 'Salzburg' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Grand Ballon', country 'F', province 'Alsace' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Grand Ballon', country 'F', province 'Lorraine' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Puy De Dome', country 'F', province 'Auvergne' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Puy de Sancy', country 'F', province 'Auvergne' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Vignemale', country 'F', province 'Midi Pyrenees' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Vignemale', country 'E', province 'Aragon' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico de Aneto', country 'E', province 'Aragon' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Torre de Cerredo', country 'E', province 'Asturias' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Torre de Cerredo', country 'E', province 'Castile and Leon' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico de Almanzor', country 'E', province 'Castile and Leon' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Moncayo', country 'E', province 'Aragon' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Moncayo', country 'E', province 'Castile and Leon' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mulhacen', country 'E', province 'Andalusia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Torre de Estrela', country 'P', province 'Guarda' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Monte Cinto', country 'F', province 'Corse' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Gran Sasso', country 'I', province 'Abruzzo' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Monte Falterona', country 'I', province 'Emilia Romagna' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Monte Falterona', country 'I', province 'Toscana' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Vesuv', country 'I', province 'Campania' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Etna', country 'I', province 'Sicilia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Schneekoppe', country 'CZ', province 'Vychodocesky' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Schneekoppe', country 'PL', province 'Walbrzyskie' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'GerlachovskyStit', country 'SK', province 'Slovakia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Moldoveanu', country 'RO', province 'Arges' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Moldoveanu', country 'RO', province 'Brasov' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Moldoveanu', country 'RO', province 'Sibiu' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Musala', country 'BG', province 'Bulgaria' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Jezerce', country 'AL', province 'Albania' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Korab', country 'AL', province 'Albania' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Korab', country 'MK', province 'Macedonia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Olymp', country 'GR', province 'Kedriki Makedhonia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Olymp', country 'GR', province 'Thessalia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Psiloritis', country 'GR', province 'Kriti' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Olympos', country 'CY', province 'Cyprus' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico de Teide', country 'E', province 'Canary Islands' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico de los Nieves', country 'E', province 'Canary Islands' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Roque de los Muchachos', country 'E', province 'Canary Islands' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico Ruivo', country 'P', province 'Madeira' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico', country 'P', province 'Azores' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Fogo', country 'CV', province 'Cape Verde' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Tubkhal', country 'MA', province 'Morocco' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Djebel Aures', country 'MA', province 'Morocco' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Tahat', country 'DZ', province 'Algeria' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Tamgak', country 'RN', province 'Niger' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mont Greboun', country 'RN', province 'Niger' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Emi Kussi', country 'TCH', province 'Chad' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Jabal Marra', country 'SUD', province 'Darfur' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Jabal Katrina', country 'ET', province 'Sina al Janubiyah' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Fako', country 'CAM', province 'Sudoueste' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico Basile', country 'GQ', province 'Equatorial Guinea' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico de Sao Tome', country 'STP', province 'Sao Tome and Principe' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Queen Marys Peak', country 'HELX', province 'Saint Helena' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Ras Daschan Terara', country 'ETH', province 'Ethiopia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Ruwenzori', country 'ZRE', province 'Kivu' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Ruwenzori', country 'EAU', province 'Uganda' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Elgon', country 'EAK', province 'Western' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Elgon', country 'EAU', province 'Uganda' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Kenia', country 'EAK', province 'Eastern' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Kilimanjaro', country 'EAT', province 'Kilimanjaro' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mawenzi', country 'EAT', province 'Kilimanjaro' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Meru', country 'EAT', province 'Arusha' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Karisimbi', country 'ZRE', province 'Kivu' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Karisimbi', country 'RWA', province 'Rwanda' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Thabana Ntlenyana', country 'LS', province 'Lesotho' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Cathkin Peak', country 'RSA', province 'Kwazulu Natal' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Tsaratanana', country 'RM', province 'Antsiranana' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Tsiafajavona', country 'RM', province 'Antananarivo' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Andringitra', country 'RM', province 'Fianarantsoa' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Piton des Neiges', country 'REUN', province 'Reunion' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Piton de la Fournaise', country 'REUN', province 'Reunion' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Narodnaja', country 'R', province 'Rep. of Komi' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Demirkazik', country 'TR', province 'Nigde' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Ararat', country 'TR', province 'Agri' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Jabal Lubnan', country 'RL', province 'Lebanon' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Elbrus', country 'R', province 'Kabardino Balkar Rep.' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Kasbek', country 'R', province 'Rep. of North Ossetiya' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Kasbek', country 'GE', province 'Georgia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Damavand', country 'IR', province 'Mazandaran' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Sabalan', country 'IR', province 'Azarbayian e Sharqi' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Zard Kuh', country 'IR', province 'Chahar Mahal e Bakhtiari' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Jabal Shuayb', country 'YE', province 'Yemen' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Dodabetta', country 'IND', province 'Tamil Nadu' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pidurutalagala', country 'CL', province 'Sri Lanka' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Zhima', country 'R', province 'Rep. of Buryatiya' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Bjelucha', country 'R', province 'Rep. of Altay' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Bjelucha', country 'KAZ', province 'Shyghys Qazaqstan' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pik Chan-Tengri', country 'KGZ', province 'Kyrgyzstan' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pik Pobeda', country 'TJ', province 'Xinjiang Uygur' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pik Pobeda', country 'KGZ', province 'Kyrgyzstan' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pik Kommunizma', country 'TAD', province 'Badakhshoni Kuni' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pik Lenina', country 'TAD', province 'Badakhshoni Kuni' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pik Lenina', country 'KGZ', province 'Kyrgyzstan' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pik Revoluzija', country 'TAD', province 'Badakhshoni Kuni' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pik Moskva', country 'TAD', province 'Badakhshoni Kuni' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pik Karl-Marx', country 'TAD', province 'Badakhshoni Kuni' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Tirich Mir', country 'AFG', province 'Afghanistan' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'K2', country 'TJ', province 'Xinjiang Uygur' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'K2', country 'PK', province 'Pakistan' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Gasherbrum II', country 'TJ', province 'Xinjiang Uygur' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Gasherbrum II', country 'PK', province 'Pakistan' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Gasherbrum I', country 'TJ', province 'Xinjiang Uygur' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Gasherbrum I', country 'PK', province 'Pakistan' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Broad Peak', country 'TJ', province 'Xinjiang Uygur' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Broad Peak', country 'PK', province 'Pakistan' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Nanga Parbat', country 'PK', province 'Pakistan' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Nanda Devi', country 'IND', province 'Uttar Pradesh' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Dhaulagiri', country 'NEP', province 'Nepal' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Annapurna', country 'NEP', province 'Nepal' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Manaslu', country 'NEP', province 'Nepal' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Shishapangma', country 'TJ', province 'Tibet' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Kailash', country 'TJ', province 'Tibet' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Cho Oyu', country 'TJ', province 'Tibet' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Cho Oyu', country 'NEP', province 'Nepal' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mount Everest', country 'TJ', province 'Tibet' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mount Everest', country 'NEP', province 'Nepal' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Lhotse', country 'TJ', province 'Tibet' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Lhotse', country 'NEP', province 'Nepal' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Makalu', country 'TJ', province 'Tibet' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Makalu', country 'NEP', province 'Nepal' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Kangchendzonga', country 'IND', province 'Sikkim' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Kangchendzonga', country 'NEP', province 'Nepal' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Kljutschewskaja Sopka', country 'R', province 'Kamchatskaya oblast' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Changbai Shan', country 'TJ', province 'Jilin' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Changbai Shan', country 'NOK', province 'North Korea' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Asahi-Dake', country 'J', province 'Hokkaido' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Fujisan', country 'J', province 'Yamanashi' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Fujisan', country 'J', province 'Shizuoka' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Hotaka-Dake', country 'J', province 'Nagano' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Hotaka-Dake', country 'J', province 'Gifu' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Yu Shan', country 'RC', province 'Taiwan' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pulog', country 'RP', province 'Philippines' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pinatubo', country 'RP', province 'Philippines' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mount Apo', country 'RP', province 'Philippines' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Kanlaon', country 'RP', province 'Philippines' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mantalingajan', country 'RP', province 'Philippines' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Kinabalu', country 'MAL', province 'Sabah' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Tahan', country 'MAL', province 'Kelantan' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Tahan', country 'MAL', province 'Pahang' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Leuser', country 'RI', province 'Indonesia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Kerinci', country 'RI', province 'Indonesia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Krakatau', country 'RI', province 'Indonesia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Merapi', country 'RI', province 'Indonesia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Semeru', country 'RI', province 'Indonesia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Gunung Agung', country 'RI', province 'Indonesia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Rinjani', country 'RI', province 'Indonesia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Tambora', country 'RI', province 'Indonesia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Rantekombola', country 'RI', province 'Indonesia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Tatamailau', country 'TL', province 'Timor-Leste' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Gunung Binaiya', country 'RI', province 'Indonesia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Puncak Jaya', country 'RI', province 'Indonesia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt. Wilhelm', country 'PNG', province 'Papua New Guinea' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt. Giluwe', country 'PNG', province 'Papua New Guinea' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt. Balbi', country 'PNG', province 'Papua New Guinea' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt.Victoria', country 'FJI', province 'Fiji' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Silisili', country 'WS', province 'Samoa' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mont Orohena', country 'FPOL', province 'French Polynesia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Popomanaseu', country 'SLB', province 'Solomon Islands' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mauna Kea', country 'USA', province 'Hawaii' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mauna Loa', country 'USA', province 'Hawaii' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Haleakala', country 'USA', province 'Hawaii' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt. Kosciuszko', country 'AUS', province 'New South Wales' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt. Bogong', country 'AUS', province 'Victoria' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Uluru', country 'AUS', province 'Northern Territory' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt. Cook', country 'NZ', province 'New Zealand' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Ruapehu', country 'NZ', province 'New Zealand' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Redoubt', country 'USA', province 'Alaska' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt McKinley', country 'USA', province 'Alaska' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Blackburn', country 'USA', province 'Alaska' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Bona', country 'CDN', province 'Saskatchewan' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Bona', country 'USA', province 'Alaska' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt St.Elias', country 'CDN', province 'Yukon Territory' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt St.Elias', country 'USA', province 'Alaska' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Logan', country 'CDN', province 'Yukon Territory' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Fairweather', country 'CDN', province 'British Columbia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Fairweather', country 'USA', province 'Alaska' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Waddington', country 'CDN', province 'British Columbia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Robson', country 'CDN', province 'British Columbia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Columbia', country 'CDN', province 'Alberta' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Columbia', country 'CDN', province 'British Columbia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Barbeau Peak', country 'CDN', province 'Northwest Territories' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt. Odin', country 'CDN', province 'Northwest Territories' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt. Babel', country 'CDN', province 'Quebec' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Granite Peak', country 'USA', province 'Montana' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Borah Peak', country 'USA', province 'Idaho' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Harney Peak', country 'USA', province 'South Dakota' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Gannett Peak', country 'USA', province 'Wyoming' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Kings Peak', country 'USA', province 'Utah' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Elbert', country 'USA', province 'Colorado' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pikes Peak', country 'USA', province 'Colorado' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Wheeler Peak', country 'USA', province 'New Mexico' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Humphreys Peak', country 'USA', province 'Arizona' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Guadalupe Peak', country 'USA', province 'Texas' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Rainier', country 'USA', province 'Washington' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Adams', country 'USA', province 'Washington' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Hood', country 'USA', province 'Oregon' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Whitney', country 'USA', province 'California' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Boundary Peak', country 'USA', province 'California' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Boundary Peak', country 'USA', province 'Nevada' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Washington', country 'USA', province 'New Hampshire' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Marcy', country 'USA', province 'New York' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Mt Mitchell', country 'USA', province 'North Carolina' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Clingmans Dome', country 'USA', province 'Tennessee' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Citlaltepetl (Pico de Orizaba)', country 'MEX', province 'Puebla' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Citlaltepetl (Pico de Orizaba)', country 'MEX', province 'Veracruz' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Popocatepetl', country 'MEX', province 'Mexico (Estado de)' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Popocatepetl', country 'MEX', province 'Morelos' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Popocatepetl', country 'MEX', province 'Puebla' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Iztaccihuatl', country 'MEX', province 'Puebla' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Nevado de Toluca', country 'MEX', province 'Mexico (Estado de)' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Nevado de Colima', country 'MEX', province 'Jalisco' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Tajumulco', country 'GCA', province 'Guatemala' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Concepcion', country 'NIC', province 'Nicaragua' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Irazu', country 'CR', province 'Cartago' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Cerro Chirripo', country 'CR', province 'Cartago' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Cerro Chirripo', country 'CR', province 'Limon' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico Turquino', country 'C', province 'Granma' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico Turquino', country 'C', province 'Santiago de Cuba' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Blue Mountain Peak', country 'JA', province 'Jamaica' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico Duarte', country 'DOM', province 'Dominican Republic' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Cerro de Punta', country 'PR', province 'Puerto Rico' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'La Soufriere', country 'GUAD', province 'Guadeloupe' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Soufriere Hills', country 'MNTS', province 'Montserrat' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Soufriere', country 'WV', province 'Saint Vincent and the Grenadines' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Morne Diablotins', country 'WD', province 'Dominica' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pelee', country 'MART', province 'Martinique' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico Cristobal Colon', country 'CO', province 'Magdalena' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico Bolivar', country 'YV', province 'Merida' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Nevado del Ruiz', country 'CO', province 'Choco' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Nevado del Ruiz', country 'CO', province 'Risaralda' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Nevado del Huila', country 'CO', province 'Huila' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Cayambe', country 'EC', province 'Ecuador' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Cotopaxi', country 'EC', province 'Ecuador' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Chimborazo', country 'EC', province 'Ecuador' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Huascaran', country 'PE', province 'Ancash' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Alpamayo', country 'PE', province 'Ancash' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico Rocarre', country 'PE', province 'Ancash' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Ausangate', country 'PE', province 'Cuzco' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Coropuna', country 'PE', province 'Arequipa' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Ampato', country 'PE', province 'Arequipa' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Illampu', country 'BOL', province 'Bolivia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Illimani', country 'BOL', province 'Bolivia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Sajama', country 'BOL', province 'Bolivia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Licancabur', country 'BOL', province 'Bolivia' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Licancabur', country 'RCH', province 'Chile' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Llullaillaco', country 'RA', province 'Tucuman' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Llullaillaco', country 'RCH', province 'Chile' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Ojos del Salado', country 'RA', province 'Tucuman' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Ojos del Salado', country 'RCH', province 'Chile' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Monte Pissis', country 'RA', province 'La Rioja' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Monte Pissis', country 'RA', province 'Tucuman' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Aconcagua', country 'RA', province 'Mendoza' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Tupungato', country 'RA', province 'Mendoza' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico de Agulhas Negras', country 'BR', province 'Minas Gerais' } };
INSERT GeoMountain RELATION { TUPLE { mountain 'Pico de Agulhas Negras', country 'BR', province 'Rio de Janeiro' } };
/* INSERT : CountryCovid */
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2020, month 2, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2020, month 3, total_cases 9264, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2020, month 4, total_cases 15402, total_deaths 635 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2020, month 5, total_cases 16610, total_deaths 741 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2020, month 6, total_cases 17629, total_deaths 810 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2020, month 7, total_cases 20873, total_deaths 848 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2020, month 8, total_cases 27131, total_deaths 903 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2020, month 9, total_cases 44231, total_deaths 994 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2020, month 10, total_cases 101467, total_deaths 1431 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2020, month 11, total_cases 278500, total_deaths 4084 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2020, month 12, total_cases 356063, total_deaths 7486 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2021, month 1, total_cases 409286, total_deaths 9393 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2021, month 2, total_cases 452646, total_deaths 10432 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2021, month 3, total_cases 537302, total_deaths 11404 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2021, month 4, total_cases 611569, total_deaths 12416 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2021, month 5, total_cases 639722, total_deaths 12922 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2021, month 6, total_cases 645936, total_deaths 13070 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2021, month 7, total_cases 654243, total_deaths 13135 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2021, month 8, total_cases 682620, total_deaths 13227 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2021, month 9, total_cases 737702, total_deaths 13506 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2021, month 10, total_cases 822260, total_deaths 13946 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2021, month 11, total_cases 1147912, total_deaths 15405 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2021, month 12, total_cases 1270811, total_deaths 16815 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2022, month 1, total_cases 1835602, total_deaths 17207 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2022, month 2, total_cases 2671323, total_deaths 17911 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2022, month 3, total_cases 3842048, total_deaths 18952 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2022, month 4, total_cases 4174744, total_deaths 19726 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2022, month 5, total_cases 4288153, total_deaths 19927 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2022, month 6, total_cases 4459767, total_deaths 20048 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2022, month 7, total_cases 4774043, total_deaths 20317 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2022, month 8, total_cases 4956010, total_deaths 20639 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2022, month 9, total_cases 5131527, total_deaths 20743 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2022, month 10, total_cases 5439567, total_deaths 20981 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2022, month 11, total_cases 5561633, total_deaths 21210 } };
INSERT CountryCovid RELATION { TUPLE { country 'A', year 2022, month 12, total_cases 5705093, total_deaths 21443 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2020, month 2, total_cases 5, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2020, month 3, total_cases 166, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2020, month 4, total_cases 1827, total_deaths 60 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2020, month 5, total_cases 15180, total_deaths 254 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2020, month 6, total_cases 31445, total_deaths 739 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2020, month 7, total_cases 36628, total_deaths 1275 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2020, month 8, total_cases 38248, total_deaths 1406 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2020, month 9, total_cases 39354, total_deaths 1462 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2020, month 10, total_cases 41334, total_deaths 1533 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2020, month 11, total_cases 46215, total_deaths 1763 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2020, month 12, total_cases 52330, total_deaths 2189 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2021, month 1, total_cases 55023, total_deaths 2400 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2021, month 2, total_cases 55714, total_deaths 2443 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2021, month 3, total_cases 56454, total_deaths 2484 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2021, month 4, total_cases 59745, total_deaths 2625 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2021, month 5, total_cases 71838, total_deaths 2944 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2021, month 6, total_cases 118659, total_deaths 4871 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2021, month 7, total_cases 147154, total_deaths 6708 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2021, month 8, total_cases 153220, total_deaths 7118 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2021, month 9, total_cases 155174, total_deaths 7204 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2021, month 10, total_cases 156250, total_deaths 7280 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2021, month 11, total_cases 157289, total_deaths 7308 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2021, month 12, total_cases 158084, total_deaths 7356 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2022, month 1, total_cases 162926, total_deaths 7414 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2022, month 2, total_cases 173659, total_deaths 7598 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2022, month 3, total_cases 177747, total_deaths 7670 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2022, month 4, total_cases 178879, total_deaths 7683 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2022, month 5, total_cases 180347, total_deaths 7705 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2022, month 6, total_cases 182528, total_deaths 7723 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2022, month 7, total_cases 185749, total_deaths 7748 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2022, month 8, total_cases 193250, total_deaths 7777 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2022, month 9, total_cases 199188, total_deaths 7800 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2022, month 10, total_cases 203063, total_deaths 7822 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2022, month 11, total_cases 205907, total_deaths 7833 } };
INSERT CountryCovid RELATION { TUPLE { country 'AFG', year 2022, month 12, total_cases 207559, total_deaths 7849 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2020, month 3, total_cases 7, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2020, month 4, total_cases 24, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2020, month 5, total_cases 26, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2020, month 6, total_cases 69, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2020, month 7, total_cases 91, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2020, month 8, total_cases 94, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2020, month 9, total_cases 101, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2020, month 10, total_cases 128, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2020, month 11, total_cases 141, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2020, month 12, total_cases 159, total_deaths 5 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2021, month 1, total_cases 234, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2021, month 2, total_cases 730, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2021, month 3, total_cases 1136, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2021, month 4, total_cases 1232, total_deaths 32 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2021, month 5, total_cases 1260, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2021, month 6, total_cases 1263, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2021, month 7, total_cases 1303, total_deaths 43 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2021, month 8, total_cases 1715, total_deaths 44 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2021, month 9, total_cases 3231, total_deaths 79 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2021, month 10, total_cases 4058, total_deaths 102 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2021, month 11, total_cases 4141, total_deaths 117 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2021, month 12, total_cases 4283, total_deaths 119 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2022, month 1, total_cases 6627, total_deaths 127 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2022, month 2, total_cases 7437, total_deaths 135 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2022, month 3, total_cases 7491, total_deaths 135 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2022, month 4, total_cases 7626, total_deaths 136 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2022, month 5, total_cases 8253, total_deaths 138 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2022, month 6, total_cases 8641, total_deaths 141 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2022, month 7, total_cases 8773, total_deaths 144 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2022, month 8, total_cases 8974, total_deaths 145 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2022, month 9, total_cases 9098, total_deaths 146 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2022, month 10, total_cases 9106, total_deaths 146 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2022, month 11, total_cases 9106, total_deaths 146 } };
INSERT CountryCovid RELATION { TUPLE { country 'AG', year 2022, month 12, total_cases 9106, total_deaths 146 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2020, month 4, total_cases 773, total_deaths 31 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2020, month 5, total_cases 1137, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2020, month 6, total_cases 2535, total_deaths 62 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2020, month 7, total_cases 5276, total_deaths 157 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2020, month 8, total_cases 9513, total_deaths 284 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2020, month 9, total_cases 13649, total_deaths 387 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2020, month 10, total_cases 20875, total_deaths 509 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2020, month 11, total_cases 38182, total_deaths 810 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2020, month 12, total_cases 58316, total_deaths 1181 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2021, month 1, total_cases 78127, total_deaths 1380 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2021, month 2, total_cases 107167, total_deaths 1796 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2021, month 3, total_cases 125157, total_deaths 2235 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2021, month 4, total_cases 131085, total_deaths 2394 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2021, month 5, total_cases 132315, total_deaths 2451 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2021, month 6, total_cases 132521, total_deaths 2456 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2021, month 7, total_cases 133081, total_deaths 2457 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2021, month 8, total_cases 146387, total_deaths 2498 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2021, month 9, total_cases 170131, total_deaths 2698 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2021, month 10, total_cases 185300, total_deaths 2924 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2021, month 11, total_cases 199945, total_deaths 3096 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2021, month 12, total_cases 210224, total_deaths 3217 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2022, month 1, total_cases 258543, total_deaths 3346 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2022, month 2, total_cases 271563, total_deaths 3469 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2022, month 3, total_cases 273677, total_deaths 3492 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2022, month 4, total_cases 275107, total_deaths 3496 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2022, month 5, total_cases 276101, total_deaths 3497 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2022, month 6, total_cases 280851, total_deaths 3500 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2022, month 7, total_cases 312097, total_deaths 3545 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2022, month 8, total_cases 329352, total_deaths 3582 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2022, month 9, total_cases 332221, total_deaths 3589 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2022, month 10, total_cases 332966, total_deaths 3593 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2022, month 11, total_cases 333343, total_deaths 3594 } };
INSERT CountryCovid RELATION { TUPLE { country 'AL', year 2022, month 12, total_cases 333806, total_deaths 3595 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2020, month 3, total_cases 376, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2020, month 4, total_cases 745, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2020, month 5, total_cases 764, total_deaths 51 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2020, month 6, total_cases 855, total_deaths 52 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2020, month 7, total_cases 925, total_deaths 52 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2020, month 8, total_cases 1176, total_deaths 53 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2020, month 9, total_cases 2050, total_deaths 53 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2020, month 10, total_cases 4756, total_deaths 75 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2020, month 11, total_cases 6745, total_deaths 76 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2020, month 12, total_cases 8049, total_deaths 84 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2021, month 1, total_cases 9937, total_deaths 101 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2021, month 2, total_cases 10866, total_deaths 110 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2021, month 3, total_cases 12010, total_deaths 115 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2021, month 4, total_cases 13232, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2021, month 5, total_cases 13727, total_deaths 127 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2021, month 6, total_cases 13911, total_deaths 127 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2021, month 7, total_cases 14678, total_deaths 128 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2021, month 8, total_cases 15033, total_deaths 130 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2021, month 9, total_cases 15222, total_deaths 130 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2021, month 10, total_cases 15516, total_deaths 130 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2021, month 11, total_cases 17115, total_deaths 131 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2021, month 12, total_cases 23740, total_deaths 140 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2022, month 1, total_cases 35958, total_deaths 145 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2022, month 2, total_cases 37999, total_deaths 151 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2022, month 3, total_cases 40024, total_deaths 155 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2022, month 4, total_cases 41349, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2022, month 5, total_cases 42894, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2022, month 6, total_cases 43774, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2022, month 7, total_cases 45508, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2022, month 8, total_cases 46027, total_deaths 154 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2022, month 9, total_cases 46227, total_deaths 155 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2022, month 10, total_cases 46535, total_deaths 155 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2022, month 11, total_cases 47219, total_deaths 157 } };
INSERT CountryCovid RELATION { TUPLE { country 'AND', year 2022, month 12, total_cases 47751, total_deaths 165 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2020, month 3, total_cases 7, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2020, month 4, total_cases 27, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2020, month 5, total_cases 86, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2020, month 6, total_cases 284, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2020, month 7, total_cases 1148, total_deaths 52 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2020, month 8, total_cases 2654, total_deaths 108 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2020, month 9, total_cases 4972, total_deaths 183 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2020, month 10, total_cases 10805, total_deaths 284 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2020, month 11, total_cases 15139, total_deaths 348 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2020, month 12, total_cases 17553, total_deaths 405 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2021, month 1, total_cases 19796, total_deaths 466 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2021, month 2, total_cases 20807, total_deaths 508 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2021, month 3, total_cases 22311, total_deaths 537 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2021, month 4, total_cases 26652, total_deaths 596 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2021, month 5, total_cases 34551, total_deaths 766 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2021, month 6, total_cases 38849, total_deaths 900 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2021, month 7, total_cases 42777, total_deaths 1011 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2021, month 8, total_cases 47544, total_deaths 1217 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2021, month 9, total_cases 56583, total_deaths 1537 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2021, month 10, total_cases 64433, total_deaths 1710 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2021, month 11, total_cases 65168, total_deaths 1733 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2021, month 12, total_cases 81593, total_deaths 1770 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2022, month 1, total_cases 98116, total_deaths 1895 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2022, month 2, total_cases 98741, total_deaths 1900 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2022, month 3, total_cases 99169, total_deaths 1900 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2022, month 4, total_cases 99287, total_deaths 1900 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2022, month 5, total_cases 99761, total_deaths 1900 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2022, month 6, total_cases 101320, total_deaths 1900 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2022, month 7, total_cases 102301, total_deaths 1912 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2022, month 8, total_cases 102636, total_deaths 1917 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2022, month 9, total_cases 103131, total_deaths 1917 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2022, month 10, total_cases 103131, total_deaths 1917 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2022, month 11, total_cases 104676, total_deaths 1924 } };
INSERT CountryCovid RELATION { TUPLE { country 'ANG', year 2022, month 12, total_cases 105095, total_deaths 1930 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2020, month 3, total_cases 532, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2020, month 4, total_cases 2066, total_deaths 32 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2020, month 5, total_cases 9282, total_deaths 131 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2020, month 6, total_cases 25542, total_deaths 443 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2020, month 7, total_cases 38550, total_deaths 738 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2020, month 8, total_cases 43781, total_deaths 879 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2020, month 9, total_cases 50359, total_deaths 959 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2020, month 10, total_cases 89813, total_deaths 1341 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2020, month 11, total_cases 135124, total_deaths 2164 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2020, month 12, total_cases 159409, total_deaths 2823 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2021, month 1, total_cases 167026, total_deaths 3080 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2021, month 2, total_cases 172058, total_deaths 3192 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2021, month 3, total_cases 192639, total_deaths 3515 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2021, month 4, total_cases 216064, total_deaths 4108 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2021, month 5, total_cases 222670, total_deaths 4438 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2021, month 6, total_cases 225095, total_deaths 4514 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2021, month 7, total_cases 230110, total_deaths 4614 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2021, month 8, total_cases 242135, total_deaths 4844 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2021, month 9, total_cases 261697, total_deaths 5319 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2021, month 10, total_cases 308326, total_deaths 6328 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2021, month 11, total_cases 338518, total_deaths 7567 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2021, month 12, total_cases 344930, total_deaths 7972 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2022, month 1, total_cases 367795, total_deaths 8053 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2022, month 2, total_cases 419832, total_deaths 8461 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2022, month 3, total_cases 422519, total_deaths 8613 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2022, month 4, total_cases 422867, total_deaths 8622 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2022, month 5, total_cases 422963, total_deaths 8625 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2022, month 6, total_cases 423243, total_deaths 8629 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2022, month 7, total_cases 425365, total_deaths 8633 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2022, month 8, total_cases 434398, total_deaths 8655 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2022, month 9, total_cases 442875, total_deaths 8683 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2022, month 10, total_cases 445242, total_deaths 8709 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2022, month 11, total_cases 445737, total_deaths 8710 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARM', year 2022, month 12, total_cases 445976, total_deaths 8716 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2020, month 3, total_cases 55, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2020, month 4, total_cases 100, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2020, month 5, total_cases 101, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2020, month 6, total_cases 103, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2020, month 7, total_cases 121, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2020, month 8, total_cases 2006, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2020, month 9, total_cases 3963, total_deaths 27 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2020, month 10, total_cases 4513, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2020, month 11, total_cases 4845, total_deaths 45 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2020, month 12, total_cases 5489, total_deaths 49 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2021, month 1, total_cases 6966, total_deaths 59 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2021, month 2, total_cases 7891, total_deaths 73 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2021, month 3, total_cases 9443, total_deaths 86 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2021, month 4, total_cases 10638, total_deaths 99 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2021, month 5, total_cases 10985, total_deaths 107 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2021, month 6, total_cases 11138, total_deaths 107 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2021, month 7, total_cases 11730, total_deaths 110 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2021, month 8, total_cases 14576, total_deaths 146 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2021, month 9, total_cases 15500, total_deaths 166 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2021, month 10, total_cases 15925, total_deaths 171 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2021, month 11, total_cases 16354, total_deaths 174 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2021, month 12, total_cases 20461, total_deaths 181 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2022, month 1, total_cases 33000, total_deaths 193 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2022, month 2, total_cases 33684, total_deaths 211 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2022, month 3, total_cases 33966, total_deaths 212 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2022, month 4, total_cases 34846, total_deaths 271 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2022, month 5, total_cases 37034, total_deaths 213 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2022, month 6, total_cases 40718, total_deaths 221 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2022, month 7, total_cases 42080, total_deaths 224 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2022, month 8, total_cases 42848, total_deaths 227 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2022, month 9, total_cases 42970, total_deaths 230 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2022, month 10, total_cases 44145, total_deaths 232 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2022, month 11, total_cases 43641, total_deaths 236 } };
INSERT CountryCovid RELATION { TUPLE { country 'ARU', year 2022, month 12, total_cases 43752, total_deaths 280 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2020, month 1, total_cases 9, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2020, month 2, total_cases 25, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2020, month 3, total_cases 4559, total_deaths 18 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2020, month 4, total_cases 6766, total_deaths 93 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2020, month 5, total_cases 7202, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2020, month 6, total_cases 7920, total_deaths 104 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2020, month 7, total_cases 17280, total_deaths 201 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2020, month 8, total_cases 25819, total_deaths 657 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2020, month 9, total_cases 27096, total_deaths 888 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2020, month 10, total_cases 27595, total_deaths 907 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2020, month 11, total_cases 27912, total_deaths 908 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2020, month 12, total_cases 28425, total_deaths 909 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2021, month 1, total_cases 28818, total_deaths 909 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2021, month 2, total_cases 28978, total_deaths 909 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2021, month 3, total_cases 29322, total_deaths 909 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2021, month 4, total_cases 29811, total_deaths 910 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2021, month 5, total_cases 30118, total_deaths 910 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2021, month 6, total_cases 30643, total_deaths 910 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2021, month 7, total_cases 34383, total_deaths 924 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2021, month 8, total_cases 55093, total_deaths 1012 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2021, month 9, total_cases 107181, total_deaths 1311 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2021, month 10, total_cases 172030, total_deaths 1743 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2021, month 11, total_cases 211655, total_deaths 2011 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2021, month 12, total_cases 425496, total_deaths 2253 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2022, month 1, total_cases 2607242, total_deaths 3835 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2022, month 2, total_cases 3235017, total_deaths 5210 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2022, month 3, total_cases 4573066, total_deaths 6008 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2022, month 4, total_cases 5953142, total_deaths 7250 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2022, month 5, total_cases 7312408, total_deaths 8558 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2022, month 6, total_cases 8164673, total_deaths 9930 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2022, month 7, total_cases 9435839, total_deaths 11865 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2022, month 8, total_cases 10042081, total_deaths 13961 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2022, month 9, total_cases 10239653, total_deaths 15221 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2022, month 10, total_cases 10379442, total_deaths 15665 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2022, month 11, total_cases 10659898, total_deaths 16137 } };
INSERT CountryCovid RELATION { TUPLE { country 'AUS', year 2022, month 12, total_cases 11131707, total_deaths 17052 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2020, month 3, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2020, month 4, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2020, month 5, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2020, month 6, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2020, month 7, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2020, month 8, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2020, month 9, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2020, month 10, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2020, month 11, total_cases 6, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2020, month 12, total_cases 13, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2021, month 1, total_cases 16, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2021, month 2, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2021, month 3, total_cases 25, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2021, month 4, total_cases 93, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2021, month 5, total_cases 109, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2021, month 6, total_cases 109, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2021, month 7, total_cases 113, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2021, month 8, total_cases 217, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2021, month 9, total_cases 409, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2021, month 10, total_cases 944, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2021, month 11, total_cases 1386, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2021, month 12, total_cases 1674, total_deaths 5 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2022, month 1, total_cases 2324, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2022, month 2, total_cases 2555, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2022, month 3, total_cases 2700, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2022, month 4, total_cases 2788, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2022, month 5, total_cases 3203, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2022, month 6, total_cases 3456, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2022, month 7, total_cases 3580, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2022, month 8, total_cases 3837, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2022, month 9, total_cases 3865, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2022, month 10, total_cases 3866, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2022, month 11, total_cases 3904, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'AXA', year 2022, month 12, total_cases 3904, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2020, month 3, total_cases 298, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2020, month 4, total_cases 1804, total_deaths 24 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2020, month 5, total_cases 5494, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2020, month 6, total_cases 17524, total_deaths 213 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2020, month 7, total_cases 31878, total_deaths 448 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2020, month 8, total_cases 36435, total_deaths 534 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2020, month 9, total_cases 40229, total_deaths 591 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2020, month 10, total_cases 55269, total_deaths 730 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2020, month 11, total_cases 121176, total_deaths 1392 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2020, month 12, total_cases 218700, total_deaths 2641 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2021, month 1, total_cases 230219, total_deaths 3132 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2021, month 2, total_cases 234537, total_deaths 3220 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2021, month 3, total_cases 261713, total_deaths 3567 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2021, month 4, total_cases 319109, total_deaths 4517 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2021, month 5, total_cases 333956, total_deaths 4913 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2021, month 6, total_cases 336047, total_deaths 4974 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2021, month 7, total_cases 343849, total_deaths 5023 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2021, month 8, total_cases 424891, total_deaths 5636 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2021, month 9, total_cases 483902, total_deaths 6525 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2021, month 10, total_cases 531370, total_deaths 7074 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2021, month 11, total_cases 588318, total_deaths 7856 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2021, month 12, total_cases 616947, total_deaths 8358 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2022, month 1, total_cases 658470, total_deaths 8734 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2022, month 2, total_cases 785670, total_deaths 9417 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2022, month 3, total_cases 791932, total_deaths 9692 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2022, month 4, total_cases 792562, total_deaths 9709 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2022, month 5, total_cases 792767, total_deaths 9713 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2022, month 6, total_cases 793176, total_deaths 9717 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2022, month 7, total_cases 798838, total_deaths 9748 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2022, month 8, total_cases 813437, total_deaths 9805 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2022, month 9, total_cases 821440, total_deaths 9917 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2022, month 10, total_cases 823258, total_deaths 9944 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2022, month 11, total_cases 824337, total_deaths 9980 } };
INSERT CountryCovid RELATION { TUPLE { country 'AZ', year 2022, month 12, total_cases 826401, total_deaths 10008 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2020, month 3, total_cases 12775, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2020, month 4, total_cases 48519, total_deaths 7594 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2020, month 5, total_cases 58381, total_deaths 9467 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2020, month 6, total_cases 61427, total_deaths 9747 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2020, month 7, total_cases 68751, total_deaths 9841 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2020, month 8, total_cases 85236, total_deaths 9996 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2020, month 9, total_cases 118452, total_deaths 10016 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2020, month 10, total_cases 429229, total_deaths 11625 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2020, month 11, total_cases 577345, total_deaths 16645 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2020, month 12, total_cases 646496, total_deaths 19528 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2021, month 1, total_cases 710153, total_deaths 21092 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2021, month 2, total_cases 771511, total_deaths 22077 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2021, month 3, total_cases 882453, total_deaths 23016 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2021, month 4, total_cases 990229, total_deaths 24230 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2021, month 5, total_cases 1062001, total_deaths 24955 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2021, month 6, total_cases 1085131, total_deaths 25173 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2021, month 7, total_cases 1124715, total_deaths 25241 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2021, month 8, total_cases 1184664, total_deaths 25380 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2021, month 9, total_cases 1244954, total_deaths 25602 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2021, month 10, total_cases 1360650, total_deaths 25994 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2021, month 11, total_cases 1766035, total_deaths 27015 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2021, month 12, total_cases 2105343, total_deaths 28331 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2022, month 1, total_cases 3155239, total_deaths 29052 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2022, month 2, total_cases 3557314, total_deaths 30179 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2022, month 3, total_cases 3851048, total_deaths 30826 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2022, month 4, total_cases 4056448, total_deaths 31439 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2022, month 5, total_cases 4152558, total_deaths 31754 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2022, month 6, total_cases 4246078, total_deaths 31918 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2022, month 7, total_cases 4414255, total_deaths 32228 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2022, month 8, total_cases 4482315, total_deaths 32516 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2022, month 9, total_cases 4544505, total_deaths 32673 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2022, month 10, total_cases 4612239, total_deaths 32902 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2022, month 11, total_cases 4639411, total_deaths 33061 } };
INSERT CountryCovid RELATION { TUPLE { country 'B', year 2022, month 12, total_cases 4668248, total_deaths 33228 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2020, month 3, total_cases 51, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2020, month 4, total_cases 7667, total_deaths 168 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2020, month 5, total_cases 47153, total_deaths 650 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2020, month 6, total_cases 145483, total_deaths 1847 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2020, month 7, total_cases 237661, total_deaths 3111 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2020, month 8, total_cases 312996, total_deaths 4281 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2020, month 9, total_cases 363479, total_deaths 5251 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2020, month 10, total_cases 407684, total_deaths 5923 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2020, month 11, total_cases 464932, total_deaths 6644 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2020, month 12, total_cases 513510, total_deaths 7559 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2021, month 1, total_cases 535139, total_deaths 8127 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2021, month 2, total_cases 546216, total_deaths 8408 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2021, month 3, total_cases 611295, total_deaths 9046 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2021, month 4, total_cases 759132, total_deaths 11450 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2021, month 5, total_cases 800540, total_deaths 12619 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2021, month 6, total_cases 913258, total_deaths 14503 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2021, month 7, total_cases 1249484, total_deaths 20685 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2021, month 8, total_cases 1500618, total_deaths 26195 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2021, month 9, total_cases 1555911, total_deaths 27510 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2021, month 10, total_cases 1569539, total_deaths 27868 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2021, month 11, total_cases 1576284, total_deaths 27981 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2021, month 12, total_cases 1585539, total_deaths 28072 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2022, month 1, total_cases 1798833, total_deaths 28394 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2022, month 2, total_cases 1943577, total_deaths 29037 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2022, month 3, total_cases 1951577, total_deaths 29122 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2022, month 4, total_cases 1952691, total_deaths 29127 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2022, month 5, total_cases 1953507, total_deaths 29131 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2022, month 6, total_cases 1973789, total_deaths 29149 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2022, month 7, total_cases 2005257, total_deaths 29291 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2022, month 8, total_cases 2011946, total_deaths 29323 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2022, month 9, total_cases 2025197, total_deaths 29363 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2022, month 10, total_cases 2035240, total_deaths 29423 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2022, month 11, total_cases 2036585, total_deaths 29433 } };
INSERT CountryCovid RELATION { TUPLE { country 'BD', year 2022, month 12, total_cases 2037125, total_deaths 29440 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2020, month 3, total_cases 34, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2020, month 4, total_cases 81, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2020, month 5, total_cases 92, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2020, month 6, total_cases 97, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2020, month 7, total_cases 110, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2020, month 8, total_cases 174, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2020, month 9, total_cases 190, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2020, month 10, total_cases 237, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2020, month 11, total_cases 276, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2020, month 12, total_cases 383, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2021, month 1, total_cases 1545, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2021, month 2, total_cases 3068, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2021, month 3, total_cases 3652, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2021, month 4, total_cases 3855, total_deaths 44 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2021, month 5, total_cases 4017, total_deaths 47 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2021, month 6, total_cases 4081, total_deaths 47 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2021, month 7, total_cases 4390, total_deaths 48 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2021, month 8, total_cases 5032, total_deaths 50 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2021, month 9, total_cases 8381, total_deaths 74 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2021, month 10, total_cases 17763, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2021, month 11, total_cases 25316, total_deaths 229 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2021, month 12, total_cases 28565, total_deaths 260 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2022, month 1, total_cases 44430, total_deaths 280 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2022, month 2, total_cases 55165, total_deaths 316 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2022, month 3, total_cases 59272, total_deaths 374 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2022, month 4, total_cases 70080, total_deaths 394 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2022, month 5, total_cases 80654, total_deaths 450 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2022, month 6, total_cases 84421, total_deaths 477 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2022, month 7, total_cases 92086, total_deaths 493 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2022, month 8, total_cases 101120, total_deaths 542 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2022, month 9, total_cases 102580, total_deaths 560 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2022, month 10, total_cases 103014, total_deaths 560 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2022, month 11, total_cases 104416, total_deaths 567 } };
INSERT CountryCovid RELATION { TUPLE { country 'BDS', year 2022, month 12, total_cases 105515, total_deaths 568 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2020, month 3, total_cases 9, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2020, month 4, total_cases 64, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2020, month 5, total_cases 339, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2020, month 6, total_cases 1199, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2020, month 7, total_cases 1805, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2020, month 8, total_cases 2145, total_deaths 40 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2020, month 9, total_cases 2357, total_deaths 41 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2020, month 10, total_cases 2643, total_deaths 41 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2020, month 11, total_cases 3015, total_deaths 43 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2020, month 12, total_cases 3251, total_deaths 44 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2021, month 1, total_cases 3893, total_deaths 52 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2021, month 2, total_cases 5434, total_deaths 70 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2021, month 3, total_cases 7100, total_deaths 90 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2021, month 4, total_cases 7821, total_deaths 99 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2021, month 5, total_cases 8058, total_deaths 101 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2021, month 6, total_cases 8199, total_deaths 104 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2021, month 7, total_cases 8394, total_deaths 108 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2021, month 8, total_cases 13366, total_deaths 128 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2021, month 9, total_cases 23890, total_deaths 159 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2021, month 10, total_cases 24749, total_deaths 161 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2021, month 11, total_cases 24850, total_deaths 161 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2021, month 12, total_cases 24935, total_deaths 161 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2022, month 1, total_cases 26450, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2022, month 2, total_cases 26567, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2022, month 3, total_cases 26952, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2022, month 4, total_cases 26952, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2022, month 5, total_cases 26952, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2022, month 6, total_cases 27216, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2022, month 7, total_cases 27316, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2022, month 8, total_cases 27490, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2022, month 9, total_cases 27638, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2022, month 10, total_cases 27782, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2022, month 11, total_cases 27980, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'BEN', year 2022, month 12, total_cases 27982, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2020, month 3, total_cases 32, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2020, month 4, total_cases 114, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2020, month 5, total_cases 140, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2020, month 6, total_cases 146, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2020, month 7, total_cases 156, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2020, month 8, total_cases 172, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2020, month 9, total_cases 181, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2020, month 10, total_cases 199, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2020, month 11, total_cases 260, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2020, month 12, total_cases 604, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2021, month 1, total_cases 691, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2021, month 2, total_cases 705, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2021, month 3, total_cases 1217, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2021, month 4, total_cases 2393, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2021, month 5, total_cases 2494, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2021, month 6, total_cases 2514, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2021, month 7, total_cases 2553, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2021, month 8, total_cases 2923, total_deaths 34 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2021, month 9, total_cases 5244, total_deaths 72 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2021, month 10, total_cases 5647, total_deaths 101 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2021, month 11, total_cases 5748, total_deaths 106 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2021, month 12, total_cases 6420, total_deaths 110 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2022, month 1, total_cases 10793, total_deaths 117 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2022, month 2, total_cases 11561, total_deaths 123 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2022, month 3, total_cases 12564, total_deaths 128 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2022, month 4, total_cases 13488, total_deaths 131 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2022, month 5, total_cases 14755, total_deaths 138 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2022, month 6, total_cases 16162, total_deaths 140 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2022, month 7, total_cases 17193, total_deaths 144 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2022, month 8, total_cases 17913, total_deaths 148 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2022, month 9, total_cases 18154, total_deaths 148 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2022, month 10, total_cases 18340, total_deaths 148 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2022, month 11, total_cases 18463, total_deaths 151 } };
INSERT CountryCovid RELATION { TUPLE { country 'BERM', year 2022, month 12, total_cases 18622, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2020, month 3, total_cases 261, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2020, month 4, total_cases 645, total_deaths 43 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2020, month 5, total_cases 847, total_deaths 53 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2020, month 6, total_cases 962, total_deaths 53 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2020, month 7, total_cases 1106, total_deaths 53 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2020, month 8, total_cases 1368, total_deaths 55 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2020, month 9, total_cases 2056, total_deaths 58 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2020, month 10, total_cases 2500, total_deaths 67 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2020, month 11, total_cases 2886, total_deaths 68 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2020, month 12, total_cases 6707, total_deaths 85 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2021, month 1, total_cases 10682, total_deaths 120 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2021, month 2, total_cases 11982, total_deaths 142 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2021, month 3, total_cases 12717, total_deaths 146 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2021, month 4, total_cases 13310, total_deaths 157 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2021, month 5, total_cases 13434, total_deaths 166 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2021, month 6, total_cases 13479, total_deaths 168 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2021, month 7, total_cases 13573, total_deaths 169 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2021, month 8, total_cases 13777, total_deaths 171 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2021, month 9, total_cases 14243, total_deaths 184 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2021, month 10, total_cases 14793, total_deaths 214 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2021, month 11, total_cases 16000, total_deaths 286 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2021, month 12, total_cases 17632, total_deaths 318 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2022, month 1, total_cases 20624, total_deaths 366 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2022, month 2, total_cases 20751, total_deaths 375 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2022, month 3, total_cases 20853, total_deaths 382 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2022, month 4, total_cases 20865, total_deaths 383 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2022, month 5, total_cases 20899, total_deaths 384 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2022, month 6, total_cases 21044, total_deaths 387 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2022, month 7, total_cases 21128, total_deaths 387 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2022, month 8, total_cases 21128, total_deaths 387 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2022, month 9, total_cases 21631, total_deaths 387 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2022, month 10, total_cases 21631, total_deaths 387 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2022, month 11, total_cases 21631, total_deaths 387 } };
INSERT CountryCovid RELATION { TUPLE { country 'BF', year 2022, month 12, total_cases 22006, total_deaths 395 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2020, month 3, total_cases 399, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2020, month 4, total_cases 1506, total_deaths 66 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2020, month 5, total_cases 2513, total_deaths 140 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2020, month 6, total_cases 4989, total_deaths 230 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2020, month 7, total_cases 11690, total_deaths 383 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2020, month 8, total_cases 16266, total_deaths 629 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2020, month 9, total_cases 20833, total_deaths 825 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2020, month 10, total_cases 52844, total_deaths 1279 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2020, month 11, total_cases 145300, total_deaths 4035 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2020, month 12, total_cases 202266, total_deaths 7576 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2021, month 1, total_cases 218748, total_deaths 9045 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2021, month 2, total_cases 247038, total_deaths 10191 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2021, month 3, total_cases 342633, total_deaths 13197 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2021, month 4, total_cases 404380, total_deaths 16399 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2021, month 5, total_cases 418577, total_deaths 17700 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2021, month 6, total_cases 421829, total_deaths 18061 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2021, month 7, total_cases 425054, total_deaths 18213 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2021, month 8, total_cases 455742, total_deaths 18896 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2021, month 9, total_cases 502162, total_deaths 20882 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2021, month 10, total_cases 602492, total_deaths 23999 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2021, month 11, total_cases 695057, total_deaths 28453 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2021, month 12, total_cases 747108, total_deaths 30955 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2022, month 1, total_cases 951965, total_deaths 33318 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2022, month 2, total_cases 1091279, total_deaths 35581 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2022, month 3, total_cases 1138923, total_deaths 36529 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2022, month 4, total_cases 1156729, total_deaths 36913 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2022, month 5, total_cases 1165167, total_deaths 37148 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2022, month 6, total_cases 1172239, total_deaths 37255 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2022, month 7, total_cases 1206688, total_deaths 37377 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2022, month 8, total_cases 1242910, total_deaths 37603 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2022, month 9, total_cases 1259471, total_deaths 37718 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2022, month 10, total_cases 1279082, total_deaths 37880 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2022, month 11, total_cases 1287256, total_deaths 38039 } };
INSERT CountryCovid RELATION { TUPLE { country 'BG', year 2022, month 12, total_cases 1292104, total_deaths 38108 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2020, month 3, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2020, month 4, total_cases 7, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2020, month 5, total_cases 43, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2020, month 6, total_cases 77, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2020, month 7, total_cases 101, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2020, month 8, total_cases 225, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2020, month 9, total_cases 282, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2020, month 10, total_cases 349, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2020, month 11, total_cases 410, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2020, month 12, total_cases 670, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2021, month 1, total_cases 859, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2021, month 2, total_cases 867, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2021, month 3, total_cases 873, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2021, month 4, total_cases 1074, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2021, month 5, total_cases 1620, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2021, month 6, total_cases 2100, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2021, month 7, total_cases 2515, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2021, month 8, total_cases 2596, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2021, month 9, total_cases 2601, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2021, month 10, total_cases 2621, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2021, month 11, total_cases 2640, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2021, month 12, total_cases 2660, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2022, month 1, total_cases 4891, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2022, month 2, total_cases 12702, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2022, month 3, total_cases 28101, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2022, month 4, total_cases 59163, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2022, month 5, total_cases 59628, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2022, month 6, total_cases 59729, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2022, month 7, total_cases 60368, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2022, month 8, total_cases 61076, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2022, month 9, total_cases 61969, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2022, month 10, total_cases 62380, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2022, month 11, total_cases 62503, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'BHT', year 2022, month 12, total_cases 62524, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2020, month 3, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2020, month 4, total_cases 11, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2020, month 5, total_cases 63, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2020, month 6, total_cases 170, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2020, month 7, total_cases 387, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2020, month 8, total_cases 445, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2020, month 9, total_cases 508, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2020, month 10, total_cases 585, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2020, month 11, total_cases 688, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2020, month 12, total_cases 818, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2021, month 1, total_cases 1632, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2021, month 2, total_cases 2209, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2021, month 3, total_cases 2810, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2021, month 4, total_cases 3995, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2021, month 5, total_cases 4790, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2021, month 6, total_cases 5452, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2021, month 7, total_cases 7080, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2021, month 8, total_cases 11994, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2021, month 9, total_cases 17728, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2021, month 10, total_cases 20039, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2021, month 11, total_cases 20415, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2021, month 12, total_cases 27366, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2022, month 1, total_cases 37432, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2022, month 2, total_cases 38127, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2022, month 3, total_cases 38509, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2022, month 4, total_cases 39998, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2022, month 5, total_cases 42034, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2022, month 6, total_cases 42658, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2022, month 7, total_cases 45308, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2022, month 8, total_cases 49287, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2022, month 9, total_cases 50193, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2022, month 10, total_cases 50470, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2022, month 11, total_cases 51018, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BI', year 2022, month 12, total_cases 51722, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2020, month 3, total_cases 420, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2020, month 4, total_cases 1757, total_deaths 69 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2020, month 5, total_cases 2510, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2020, month 6, total_cases 4453, total_deaths 186 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2020, month 7, total_cases 11876, total_deaths 339 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2020, month 8, total_cases 19964, total_deaths 609 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2020, month 9, total_cases 27469, total_deaths 856 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2020, month 10, total_cases 50090, total_deaths 1234 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2020, month 11, total_cases 87901, total_deaths 2681 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2020, month 12, total_cases 110985, total_deaths 4050 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2021, month 1, total_cases 121497, total_deaths 4679 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2021, month 2, total_cases 130979, total_deaths 5071 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2021, month 3, total_cases 169626, total_deaths 6599 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2021, month 4, total_cases 198461, total_deaths 8551 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2021, month 5, total_cases 204012, total_deaths 9253 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2021, month 6, total_cases 205022, total_deaths 9665 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2021, month 7, total_cases 205655, total_deaths 9687 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2021, month 8, total_cases 213853, total_deaths 9803 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2021, month 9, total_cases 234775, total_deaths 10606 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2021, month 10, total_cases 252758, total_deaths 11495 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2021, month 11, total_cases 275065, total_deaths 12586 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2021, month 12, total_cases 291313, total_deaths 13442 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2022, month 1, total_cases 347467, total_deaths 14447 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2022, month 2, total_cases 371202, total_deaths 15459 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2022, month 3, total_cases 375440, total_deaths 15713 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2022, month 4, total_cases 377087, total_deaths 15765 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2022, month 5, total_cases 377904, total_deaths 15788 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2022, month 6, total_cases 378716, total_deaths 15806 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2022, month 7, total_cases 384976, total_deaths 15853 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2022, month 8, total_cases 395850, total_deaths 16050 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2022, month 9, total_cases 398750, total_deaths 16137 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2022, month 10, total_cases 399963, total_deaths 16174 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2022, month 11, total_cases 400548, total_deaths 16202 } };
INSERT CountryCovid RELATION { TUPLE { country 'BIH', year 2022, month 12, total_cases 400992, total_deaths 16227 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2020, month 3, total_cases 107, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2020, month 4, total_cases 1167, total_deaths 62 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2020, month 5, total_cases 9982, total_deaths 313 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2020, month 6, total_cases 33219, total_deaths 1123 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2020, month 7, total_cases 76789, total_deaths 2977 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2020, month 8, total_cases 116598, total_deaths 5027 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2020, month 9, total_cases 135311, total_deaths 7965 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2020, month 10, total_cases 141757, total_deaths 8725 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2020, month 11, total_cases 144708, total_deaths 8957 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2020, month 12, total_cases 160124, total_deaths 9165 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2021, month 1, total_cases 216835, total_deaths 10379 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2021, month 2, total_cases 249010, total_deaths 11649 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2021, month 3, total_cases 272411, total_deaths 12257 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2021, month 4, total_cases 303732, total_deaths 12951 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2021, month 5, total_cases 371279, total_deaths 14524 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2021, month 6, total_cases 439624, total_deaths 16767 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2021, month 7, total_cases 473506, total_deaths 17821 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2021, month 8, total_cases 490879, total_deaths 18452 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2021, month 9, total_cases 500445, total_deaths 18735 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2021, month 10, total_cases 513584, total_deaths 18925 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2021, month 11, total_cases 537559, total_deaths 19171 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2021, month 12, total_cases 599753, total_deaths 19680 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2022, month 1, total_cases 855705, total_deaths 20951 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2022, month 2, total_cases 893395, total_deaths 21438 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2022, month 3, total_cases 901943, total_deaths 21894 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2022, month 4, total_cases 904974, total_deaths 21910 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2022, month 5, total_cases 908862, total_deaths 21948 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2022, month 6, total_cases 926718, total_deaths 21953 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2022, month 7, total_cases 1037500, total_deaths 22061 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2022, month 8, total_cases 1101652, total_deaths 22198 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2022, month 9, total_cases 1108262, total_deaths 22237 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2022, month 10, total_cases 1109447, total_deaths 22239 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2022, month 11, total_cases 1111086, total_deaths 22247 } };
INSERT CountryCovid RELATION { TUPLE { country 'BOL', year 2022, month 12, total_cases 1161018, total_deaths 22299 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2020, month 2, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2020, month 3, total_cases 5717, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2020, month 4, total_cases 87187, total_deaths 6006 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2020, month 5, total_cases 516137, total_deaths 29367 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2020, month 6, total_cases 1412669, total_deaths 59792 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2020, month 7, total_cases 2670451, total_deaths 92728 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2020, month 8, total_cases 3914829, total_deaths 121618 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2020, month 9, total_cases 4817365, total_deaths 144078 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2020, month 10, total_cases 5537763, total_deaths 159972 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2020, month 11, total_cases 6341965, total_deaths 173268 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2020, month 12, total_cases 7681032, total_deaths 195072 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2021, month 1, total_cases 9208521, total_deaths 224648 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2021, month 2, total_cases 10558091, total_deaths 255179 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2021, month 3, total_cases 12763392, total_deaths 322138 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2021, month 4, total_cases 14675104, total_deaths 404530 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2021, month 5, total_cases 16557888, total_deaths 463244 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2021, month 6, total_cases 18570296, total_deaths 518488 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2021, month 7, total_cases 19922146, total_deaths 556676 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2021, month 8, total_cases 20785196, total_deaths 580764 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2021, month 9, total_cases 21432362, total_deaths 597032 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2021, month 10, total_cases 21814625, total_deaths 608082 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2021, month 11, total_cases 22100143, total_deaths 614985 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2021, month 12, total_cases 22291839, total_deaths 619334 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2022, month 1, total_cases 25463530, total_deaths 627589 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2022, month 2, total_cases 28796571, total_deaths 649676 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2022, month 3, total_cases 29951670, total_deaths 660022 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2022, month 4, total_cases 30448236, total_deaths 663736 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2022, month 5, total_cases 31019038, total_deaths 666676 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2022, month 6, total_cases 32358018, total_deaths 671416 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2022, month 7, total_cases 33833900, total_deaths 678514 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2022, month 8, total_cases 34429853, total_deaths 683965 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2022, month 9, total_cases 34672524, total_deaths 686036 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2022, month 10, total_cases 34828749, total_deaths 688157 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2022, month 11, total_cases 35227599, total_deaths 689665 } };
INSERT CountryCovid RELATION { TUPLE { country 'BR', year 2022, month 12, total_cases 36331281, total_deaths 693853 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2020, month 2, total_cases 41, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2020, month 3, total_cases 567, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2020, month 4, total_cases 3040, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2020, month 5, total_cases 11398, total_deaths 19 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2020, month 6, total_cases 26758, total_deaths 87 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2020, month 7, total_cases 40982, total_deaths 147 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2020, month 8, total_cases 51972, total_deaths 190 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2020, month 9, total_cases 70864, total_deaths 251 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2020, month 10, total_cases 81645, total_deaths 321 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2020, month 11, total_cases 86956, total_deaths 341 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2020, month 12, total_cases 92675, total_deaths 352 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2021, month 1, total_cases 103057, total_deaths 375 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2021, month 2, total_cases 122394, total_deaths 449 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2021, month 3, total_cases 144445, total_deaths 521 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2021, month 4, total_cases 176934, total_deaths 646 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2021, month 5, total_cases 240531, total_deaths 980 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2021, month 6, total_cases 265827, total_deaths 1352 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2021, month 7, total_cases 269186, total_deaths 1384 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2021, month 8, total_cases 272540, total_deaths 1388 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2021, month 9, total_cases 275057, total_deaths 1389 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2021, month 10, total_cases 276829, total_deaths 1393 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2021, month 11, total_cases 277690, total_deaths 1394 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2021, month 12, total_cases 282062, total_deaths 1394 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2022, month 1, total_cases 374575, total_deaths 1408 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2022, month 2, total_cases 514883, total_deaths 1454 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2022, month 3, total_cases 554469, total_deaths 1471 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2022, month 4, total_cases 568706, total_deaths 1475 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2022, month 5, total_cases 585665, total_deaths 1488 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2022, month 6, total_cases 625856, total_deaths 1492 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2022, month 7, total_cases 659647, total_deaths 1509 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2022, month 8, total_cases 671697, total_deaths 1515 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2022, month 9, total_cases 680559, total_deaths 1520 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2022, month 10, total_cases 690187, total_deaths 1528 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2022, month 11, total_cases 696332, total_deaths 1536 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRN', year 2022, month 12, total_cases 698737, total_deaths 1539 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2020, month 3, total_cases 129, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2020, month 4, total_cases 138, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2020, month 5, total_cases 141, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2020, month 6, total_cases 141, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2020, month 7, total_cases 141, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2020, month 8, total_cases 144, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2020, month 9, total_cases 146, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2020, month 10, total_cases 148, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2020, month 11, total_cases 150, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2020, month 12, total_cases 157, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2021, month 1, total_cases 180, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2021, month 2, total_cases 186, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2021, month 3, total_cases 212, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2021, month 4, total_cases 224, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2021, month 5, total_cases 242, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2021, month 6, total_cases 260, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2021, month 7, total_cases 337, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2021, month 8, total_cases 2712, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2021, month 9, total_cases 7116, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2021, month 10, total_cases 13130, total_deaths 88 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2021, month 11, total_cases 15058, total_deaths 97 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2021, month 12, total_cases 15470, total_deaths 98 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2022, month 1, total_cases 16476, total_deaths 98 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2022, month 2, total_cases 63542, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2022, month 3, total_cases 134412, total_deaths 208 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2022, month 4, total_cases 141850, total_deaths 218 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2022, month 5, total_cases 148674, total_deaths 223 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2022, month 6, total_cases 163900, total_deaths 225 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2022, month 7, total_cases 205890, total_deaths 225 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2022, month 8, total_cases 220245, total_deaths 225 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2022, month 9, total_cases 227756, total_deaths 225 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2022, month 10, total_cases 237656, total_deaths 225 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2022, month 11, total_cases 257921, total_deaths 225 } };
INSERT CountryCovid RELATION { TUPLE { country 'BRU', year 2022, month 12, total_cases 266819, total_deaths 225 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2020, month 3, total_cases 14, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2020, month 4, total_cases 81, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2020, month 5, total_cases 102, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2020, month 6, total_cases 104, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2020, month 7, total_cases 574, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2020, month 8, total_cases 2217, total_deaths 50 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2020, month 9, total_cases 4123, total_deaths 96 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2020, month 10, total_cases 6714, total_deaths 144 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2020, month 11, total_cases 7541, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2020, month 12, total_cases 7871, total_deaths 170 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2021, month 1, total_cases 8174, total_deaths 176 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2021, month 2, total_cases 8519, total_deaths 179 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2021, month 3, total_cases 9119, total_deaths 188 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2021, month 4, total_cases 10453, total_deaths 199 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2021, month 5, total_cases 11796, total_deaths 230 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2021, month 6, total_cases 12586, total_deaths 246 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2021, month 7, total_cases 14840, total_deaths 287 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2021, month 8, total_cases 18139, total_deaths 354 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2021, month 9, total_cases 20984, total_deaths 531 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2021, month 10, total_cases 22351, total_deaths 643 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2021, month 11, total_cases 22791, total_deaths 671 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2021, month 12, total_cases 24476, total_deaths 717 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2022, month 1, total_cases 32562, total_deaths 746 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2022, month 2, total_cases 33135, total_deaths 771 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2022, month 3, total_cases 33283, total_deaths 788 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2022, month 4, total_cases 33558, total_deaths 798 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2022, month 5, total_cases 34759, total_deaths 810 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2022, month 6, total_cases 35975, total_deaths 817 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2022, month 7, total_cases 36724, total_deaths 822 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2022, month 8, total_cases 37075, total_deaths 823 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2022, month 9, total_cases 37290, total_deaths 833 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2022, month 10, total_cases 37386, total_deaths 833 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2022, month 11, total_cases 37483, total_deaths 833 } };
INSERT CountryCovid RELATION { TUPLE { country 'BS', year 2022, month 12, total_cases 37491, total_deaths 833 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2020, month 3, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2020, month 4, total_cases 6, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2020, month 5, total_cases 8, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2020, month 6, total_cases 8, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2020, month 7, total_cases 8, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2020, month 8, total_cases 47, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2020, month 9, total_cases 71, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2020, month 10, total_cases 71, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2020, month 11, total_cases 71, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2020, month 12, total_cases 86, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2021, month 1, total_cases 114, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2021, month 2, total_cases 153, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2021, month 3, total_cases 153, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2021, month 4, total_cases 194, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2021, month 5, total_cases 248, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2021, month 6, total_cases 298, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2021, month 7, total_cases 2500, total_deaths 31 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2021, month 8, total_cases 2568, total_deaths 37 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2021, month 9, total_cases 2642, total_deaths 37 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2021, month 10, total_cases 2725, total_deaths 37 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2021, month 11, total_cases 2773, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2021, month 12, total_cases 3492, total_deaths 39 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2022, month 1, total_cases 5875, total_deaths 49 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2022, month 2, total_cases 6085, total_deaths 62 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2022, month 3, total_cases 6141, total_deaths 62 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2022, month 4, total_cases 6355, total_deaths 62 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2022, month 5, total_cases 6765, total_deaths 62 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2022, month 6, total_cases 6941, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2022, month 7, total_cases 7131, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2022, month 8, total_cases 7291, total_deaths 64 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2022, month 9, total_cases 7305, total_deaths 64 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2022, month 10, total_cases 7305, total_deaths 64 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2022, month 11, total_cases 7305, total_deaths 64 } };
INSERT CountryCovid RELATION { TUPLE { country 'BVIR', year 2022, month 12, total_cases 7305, total_deaths 64 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2020, month 3, total_cases 152, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2020, month 4, total_cases 14027, total_deaths 89 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2020, month 5, total_cases 42556, total_deaths 235 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2020, month 6, total_cases 62118, total_deaths 392 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2020, month 7, total_cases 67808, total_deaths 559 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2020, month 8, total_cases 71843, total_deaths 681 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2020, month 9, total_cases 78631, total_deaths 833 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2020, month 10, total_cases 98482, total_deaths 980 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2020, month 11, total_cases 136647, total_deaths 1158 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2020, month 12, total_cases 194284, total_deaths 1424 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2021, month 1, total_cases 248336, total_deaths 1718 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2021, month 2, total_cases 287306, total_deaths 1976 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2021, month 3, total_cases 321807, total_deaths 2247 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2021, month 4, total_cases 358738, total_deaths 2542 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2021, month 5, total_cases 394439, total_deaths 2851 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2021, month 6, total_cases 417189, total_deaths 3143 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2021, month 7, total_cases 446040, total_deaths 3454 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2021, month 8, total_cases 481532, total_deaths 3780 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2021, month 9, total_cases 538086, total_deaths 4143 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2021, month 10, total_cases 600168, total_deaths 4631 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2021, month 11, total_cases 654718, total_deaths 5081 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2021, month 12, total_cases 699110, total_deaths 5578 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2022, month 1, total_cases 742953, total_deaths 6052 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2022, month 2, total_cases 919736, total_deaths 6480 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2022, month 3, total_cases 962707, total_deaths 6819 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2022, month 4, total_cases 980345, total_deaths 6947 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2022, month 5, total_cases 982867, total_deaths 6978 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2022, month 6, total_cases 982867, total_deaths 6978 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2022, month 7, total_cases 994037, total_deaths 7118 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2022, month 8, total_cases 994037, total_deaths 7118 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2022, month 9, total_cases 994037, total_deaths 7118 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2022, month 10, total_cases 994037, total_deaths 7118 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2022, month 11, total_cases 994037, total_deaths 7118 } };
INSERT CountryCovid RELATION { TUPLE { country 'BY', year 2022, month 12, total_cases 994037, total_deaths 7118 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2020, month 3, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2020, month 4, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2020, month 5, total_cases 18, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2020, month 6, total_cases 24, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2020, month 7, total_cases 48, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2020, month 8, total_cases 1007, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2020, month 9, total_cases 1992, total_deaths 27 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2020, month 10, total_cases 3487, total_deaths 59 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2020, month 11, total_cases 5854, total_deaths 148 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2020, month 12, total_cases 10776, total_deaths 248 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2021, month 1, total_cases 11908, total_deaths 301 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2021, month 2, total_cases 12293, total_deaths 315 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2021, month 3, total_cases 12456, total_deaths 317 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2021, month 4, total_cases 12668, total_deaths 323 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2021, month 5, total_cases 12809, total_deaths 324 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2021, month 6, total_cases 13251, total_deaths 329 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2021, month 7, total_cases 14163, total_deaths 337 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2021, month 8, total_cases 16353, total_deaths 362 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2021, month 9, total_cases 20801, total_deaths 414 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2021, month 10, total_cases 26798, total_deaths 491 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2021, month 11, total_cases 30431, total_deaths 578 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2021, month 12, total_cases 32840, total_deaths 602 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2022, month 1, total_cases 50487, total_deaths 625 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2022, month 2, total_cases 56694, total_deaths 650 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2022, month 3, total_cases 57280, total_deaths 654 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2022, month 4, total_cases 57497, total_deaths 676 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2022, month 5, total_cases 59365, total_deaths 677 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2022, month 6, total_cases 63966, total_deaths 680 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2022, month 7, total_cases 67111, total_deaths 680 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2022, month 8, total_cases 68302, total_deaths 680 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2022, month 9, total_cases 68854, total_deaths 686 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2022, month 10, total_cases 68943, total_deaths 687 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2022, month 11, total_cases 69048, total_deaths 688 } };
INSERT CountryCovid RELATION { TUPLE { country 'BZ', year 2022, month 12, total_cases 69946, total_deaths 688 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2020, month 3, total_cases 186, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2020, month 4, total_cases 1501, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2020, month 5, total_cases 2045, total_deaths 83 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2020, month 6, total_cases 2341, total_deaths 86 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2020, month 7, total_cases 2608, total_deaths 87 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2020, month 8, total_cases 4032, total_deaths 94 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2020, month 9, total_cases 5597, total_deaths 122 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2020, month 10, total_cases 6887, total_deaths 128 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2020, month 11, total_cases 8284, total_deaths 135 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2020, month 12, total_cases 11863, total_deaths 146 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2021, month 1, total_cases 26686, total_deaths 214 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2021, month 2, total_cases 49779, total_deaths 322 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2021, month 3, total_cases 75263, total_deaths 424 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2021, month 4, total_cases 106707, total_deaths 644 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2021, month 5, total_cases 142266, total_deaths 958 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2021, month 6, total_cases 190993, total_deaths 1284 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2021, month 7, total_cases 384596, total_deaths 2758 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2021, month 8, total_cases 652855, total_deaths 5303 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2021, month 9, total_cases 877428, total_deaths 7436 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2021, month 10, total_cases 952001, total_deaths 8236 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2021, month 11, total_cases 962486, total_deaths 8304 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2021, month 12, total_cases 966004, total_deaths 8322 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2022, month 1, total_cases 1044790, total_deaths 8399 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2022, month 2, total_cases 1069862, total_deaths 8494 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2022, month 3, total_cases 1090285, total_deaths 8510 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2022, month 4, total_cases 1102941, total_deaths 8526 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2022, month 5, total_cases 1105319, total_deaths 8529 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2022, month 6, total_cases 1106023, total_deaths 8529 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2022, month 7, total_cases 1108094, total_deaths 8529 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2022, month 8, total_cases 1110539, total_deaths 8530 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2022, month 9, total_cases 1111186, total_deaths 8530 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2022, month 10, total_cases 1111285, total_deaths 8530 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2022, month 11, total_cases 1111392, total_deaths 8530 } };
INSERT CountryCovid RELATION { TUPLE { country 'C', year 2022, month 12, total_cases 1111993, total_deaths 8530 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2020, month 3, total_cases 193, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2020, month 4, total_cases 1832, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2020, month 5, total_cases 5904, total_deaths 191 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2020, month 6, total_cases 12592, total_deaths 313 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2020, month 7, total_cases 17255, total_deaths 391 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2020, month 8, total_cases 19142, total_deaths 411 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2020, month 9, total_cases 20838, total_deaths 418 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2020, month 10, total_cases 21793, total_deaths 426 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2020, month 11, total_cases 24445, total_deaths 437 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2020, month 12, total_cases 26277, total_deaths 448 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2021, month 1, total_cases 29617, total_deaths 462 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2021, month 2, total_cases 35714, total_deaths 551 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2021, month 3, total_cases 47669, total_deaths 721 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2021, month 4, total_cases 72250, total_deaths 1107 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2021, month 5, total_cases 78929, total_deaths 1275 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2021, month 6, total_cases 80858, total_deaths 1324 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2021, month 7, total_cases 82064, total_deaths 1334 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2021, month 8, total_cases 83425, total_deaths 1350 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2021, month 9, total_cases 92303, total_deaths 1459 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2021, month 10, total_cases 102499, total_deaths 1686 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2021, month 11, total_cases 106794, total_deaths 1791 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2021, month 12, total_cases 109367, total_deaths 1851 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2022, month 1, total_cases 116718, total_deaths 1880 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2022, month 2, total_cases 119240, total_deaths 1923 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2022, month 3, total_cases 119544, total_deaths 1927 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2022, month 4, total_cases 119780, total_deaths 1927 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2022, month 5, total_cases 119947, total_deaths 1930 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2022, month 6, total_cases 120068, total_deaths 1931 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2022, month 7, total_cases 120215, total_deaths 1931 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2022, month 8, total_cases 121652, total_deaths 1935 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2022, month 9, total_cases 121652, total_deaths 1935 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2022, month 10, total_cases 123629, total_deaths 1960 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2022, month 11, total_cases 123993, total_deaths 1965 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAM', year 2022, month 12, total_cases 123993, total_deaths 1965 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2020, month 3, total_cases 14, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2020, month 4, total_cases 73, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2020, month 5, total_cases 141, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2020, month 6, total_cases 200, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2020, month 7, total_cases 203, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2020, month 8, total_cases 205, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2020, month 9, total_cases 211, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2020, month 10, total_cases 240, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2020, month 11, total_cases 274, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2020, month 12, total_cases 338, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2021, month 1, total_cases 390, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2021, month 2, total_cases 444, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2021, month 3, total_cases 500, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2021, month 4, total_cases 543, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2021, month 5, total_cases 584, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2021, month 6, total_cases 614, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2021, month 7, total_cases 643, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2021, month 8, total_cases 680, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2021, month 9, total_cases 840, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2021, month 10, total_cases 1650, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2021, month 11, total_cases 7074, total_deaths 5 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2021, month 12, total_cases 8818, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2022, month 1, total_cases 13788, total_deaths 15 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2022, month 2, total_cases 19373, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2022, month 3, total_cases 20606, total_deaths 25 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2022, month 4, total_cases 22223, total_deaths 27 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2022, month 5, total_cases 25318, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2022, month 6, total_cases 27171, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2022, month 7, total_cases 28784, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2022, month 8, total_cases 30057, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2022, month 9, total_cases 30661, total_deaths 32 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2022, month 10, total_cases 31006, total_deaths 34 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2022, month 11, total_cases 31359, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'CAYM', year 2022, month 12, total_cases 31472, total_deaths 37 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2020, month 1, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2020, month 2, total_cases 33, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2020, month 3, total_cases 10711, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2020, month 4, total_cases 57214, total_deaths 4055 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2020, month 5, total_cases 92067, total_deaths 7828 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2020, month 6, total_cases 104608, total_deaths 8722 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2020, month 7, total_cases 116886, total_deaths 8981 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2020, month 8, total_cases 129594, total_deaths 9147 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2020, month 9, total_cases 162560, total_deaths 9343 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2020, month 10, total_cases 237844, total_deaths 10226 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2020, month 11, total_cases 383468, total_deaths 12223 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2020, month 12, total_cases 590249, total_deaths 15736 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2021, month 1, total_cases 782912, total_deaths 20033 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2021, month 2, total_cases 870022, total_deaths 21995 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2021, month 3, total_cases 990662, total_deaths 22960 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2021, month 4, total_cases 1230530, total_deaths 24220 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2021, month 5, total_cases 1387091, total_deaths 25548 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2021, month 6, total_cases 1419748, total_deaths 26296 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2021, month 7, total_cases 1434967, total_deaths 26599 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2021, month 8, total_cases 1504281, total_deaths 26933 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2021, month 9, total_cases 1629026, total_deaths 27863 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2021, month 10, total_cases 1720166, total_deaths 28970 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2021, month 11, total_cases 1798195, total_deaths 29688 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2021, month 12, total_cases 2223735, total_deaths 30320 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2022, month 1, total_cases 3073654, total_deaths 33870 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2022, month 2, total_cases 3302400, total_deaths 36594 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2022, month 3, total_cases 3489910, total_deaths 37597 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2022, month 4, total_cases 3765164, total_deaths 39265 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2022, month 5, total_cases 3884160, total_deaths 41019 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2022, month 6, total_cases 3962334, total_deaths 41952 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2022, month 7, total_cases 4092722, total_deaths 42951 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2022, month 8, total_cases 4194892, total_deaths 44165 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2022, month 9, total_cases 4279316, total_deaths 45421 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2022, month 10, total_cases 4368845, total_deaths 46674 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2022, month 11, total_cases 4432426, total_deaths 48002 } };
INSERT CountryCovid RELATION { TUPLE { country 'CDN', year 2022, month 12, total_cases 4505142, total_deaths 49238 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2020, month 2, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2020, month 3, total_cases 16605, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2020, month 4, total_cases 29586, total_deaths 1665 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2020, month 5, total_cases 30862, total_deaths 1796 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2020, month 6, total_cases 31714, total_deaths 1809 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2020, month 7, total_cases 35232, total_deaths 1827 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2020, month 8, total_cases 42177, total_deaths 1848 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2020, month 9, total_cases 53282, total_deaths 1908 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2020, month 10, total_cases 154251, total_deaths 2378 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2020, month 11, total_cases 327072, total_deaths 5053 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2020, month 12, total_cases 452296, total_deaths 7873 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2021, month 1, total_cases 521320, total_deaths 9523 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2021, month 2, total_cases 554932, total_deaths 10016 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2021, month 3, total_cases 601124, total_deaths 10297 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2021, month 4, total_cases 659974, total_deaths 10555 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2021, month 5, total_cases 694740, total_deaths 10712 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2021, month 6, total_cases 703004, total_deaths 10775 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2021, month 7, total_cases 717665, total_deaths 10793 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2021, month 8, total_cases 779666, total_deaths 10899 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2021, month 9, total_cases 840363, total_deaths 11087 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2021, month 10, total_cases 872558, total_deaths 11234 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2021, month 11, total_cases 1014662, total_deaths 11522 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2021, month 12, total_cases 1332615, total_deaths 12217 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2022, month 1, total_cases 2220539, total_deaths 12708 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2022, month 2, total_cases 2801951, total_deaths 13101 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2022, month 3, total_cases 3497499, total_deaths 13564 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2022, month 4, total_cases 3619598, total_deaths 13712 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2022, month 5, total_cases 3674986, total_deaths 13800 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2022, month 6, total_cases 3759730, total_deaths 13831 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2022, month 7, total_cases 3949259, total_deaths 13891 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2022, month 8, total_cases 4045011, total_deaths 13974 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2022, month 9, total_cases 4103959, total_deaths 14009 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2022, month 10, total_cases 4232022, total_deaths 14065 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2022, month 11, total_cases 4337983, total_deaths 14137 } };
INSERT CountryCovid RELATION { TUPLE { country 'CH', year 2022, month 12, total_cases 4399516, total_deaths 14173 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2020, month 1, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2020, month 3, total_cases 143, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2020, month 4, total_cases 663, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2020, month 5, total_cases 1633, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2020, month 6, total_cases 2047, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2020, month 7, total_cases 2815, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2020, month 8, total_cases 3049, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2020, month 9, total_cases 3380, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2020, month 10, total_cases 10663, total_deaths 20 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2020, month 11, total_cases 23987, total_deaths 118 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2020, month 12, total_cases 43299, total_deaths 204 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2021, month 1, total_cases 64157, total_deaths 316 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2021, month 2, total_cases 83094, total_deaths 464 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2021, month 3, total_cases 92706, total_deaths 568 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2021, month 4, total_cases 108146, total_deaths 678 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2021, month 5, total_cases 186364, total_deaths 1441 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2021, month 6, total_cases 259089, total_deaths 3077 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2021, month 7, total_cases 308812, total_deaths 4436 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2021, month 8, total_cases 440302, total_deaths 9185 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2021, month 9, total_cases 517377, total_deaths 12906 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2021, month 10, total_cases 541073, total_deaths 13743 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2021, month 11, total_cases 563989, total_deaths 14346 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2021, month 12, total_cases 587245, total_deaths 14979 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2022, month 1, total_cases 611185, total_deaths 15441 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2022, month 2, total_cases 646034, total_deaths 16222 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2022, month 3, total_cases 661631, total_deaths 16477 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2022, month 4, total_cases 663362, total_deaths 16504 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2022, month 5, total_cases 663834, total_deaths 16517 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2022, month 6, total_cases 664123, total_deaths 16521 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2022, month 7, total_cases 665739, total_deaths 16556 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2022, month 8, total_cases 669957, total_deaths 16698 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2022, month 9, total_cases 670773, total_deaths 16761 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2022, month 10, total_cases 671087, total_deaths 16780 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2022, month 11, total_cases 671682, total_deaths 16803 } };
INSERT CountryCovid RELATION { TUPLE { country 'CL', year 2022, month 12, total_cases 671891, total_deaths 16817 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2020, month 3, total_cases 906, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2020, month 4, total_cases 6507, total_deaths 293 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2020, month 5, total_cases 29383, total_deaths 939 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2020, month 6, total_cases 97846, total_deaths 3334 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2020, month 7, total_cases 295508, total_deaths 10105 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2020, month 8, total_cases 615094, total_deaths 19662 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2020, month 9, total_cases 829679, total_deaths 25998 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2020, month 10, total_cases 1074184, total_deaths 31314 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2020, month 11, total_cases 1316806, total_deaths 36766 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2020, month 12, total_cases 1642775, total_deaths 43213 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2021, month 1, total_cases 2094884, total_deaths 53983 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2021, month 2, total_cases 2251690, total_deaths 59766 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2021, month 3, total_cases 2406377, total_deaths 63422 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2021, month 4, total_cases 2859724, total_deaths 73720 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2021, month 5, total_cases 3406456, total_deaths 88774 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2021, month 6, total_cases 4240982, total_deaths 106544 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2021, month 7, total_cases 4785320, total_deaths 120723 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2021, month 8, total_cases 4909086, total_deaths 124945 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2021, month 9, total_cases 4957277, total_deaths 126299 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2021, month 10, total_cases 5002387, total_deaths 127281 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2021, month 11, total_cases 5069644, total_deaths 128528 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2021, month 12, total_cases 5157440, total_deaths 129942 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2022, month 1, total_cases 5887261, total_deaths 134300 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2022, month 2, total_cases 6064583, total_deaths 138767 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2022, month 3, total_cases 6084916, total_deaths 139621 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2022, month 4, total_cases 6092667, total_deaths 139797 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2022, month 5, total_cases 6103455, total_deaths 139854 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2022, month 6, total_cases 6175181, total_deaths 140070 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2022, month 7, total_cases 6265798, total_deaths 140845 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2022, month 8, total_cases 6299595, total_deaths 141519 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2022, month 9, total_cases 6307372, total_deaths 141794 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2022, month 10, total_cases 6309716, total_deaths 141837 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2022, month 11, total_cases 6312657, total_deaths 141881 } };
INSERT CountryCovid RELATION { TUPLE { country 'CO', year 2022, month 12, total_cases 6336660, total_deaths 141881 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2020, month 4, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2020, month 5, total_cases 106, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2020, month 6, total_cases 303, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2020, month 7, total_cases 378, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2020, month 8, total_cases 423, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2020, month 9, total_cases 479, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2020, month 10, total_cases 545, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2020, month 11, total_cases 611, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2020, month 12, total_cases 823, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2021, month 1, total_cases 2726, total_deaths 93 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2021, month 2, total_cases 3571, total_deaths 144 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2021, month 3, total_cases 3696, total_deaths 146 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2021, month 4, total_cases 3834, total_deaths 146 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2021, month 5, total_cases 3881, total_deaths 146 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2021, month 6, total_cases 3936, total_deaths 146 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2021, month 7, total_cases 4028, total_deaths 147 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2021, month 8, total_cases 4068, total_deaths 147 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2021, month 9, total_cases 4141, total_deaths 147 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2021, month 10, total_cases 4259, total_deaths 147 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2021, month 11, total_cases 4501, total_deaths 150 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2021, month 12, total_cases 6515, total_deaths 157 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2022, month 1, total_cases 7832, total_deaths 160 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2022, month 2, total_cases 8033, total_deaths 160 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2022, month 3, total_cases 8086, total_deaths 160 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2022, month 4, total_cases 8105, total_deaths 160 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2022, month 5, total_cases 8120, total_deaths 161 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2022, month 6, total_cases 8139, total_deaths 160 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2022, month 7, total_cases 8315, total_deaths 160 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2022, month 8, total_cases 8455, total_deaths 161 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2022, month 9, total_cases 8471, total_deaths 161 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2022, month 10, total_cases 8762, total_deaths 161 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2022, month 11, total_cases 8965, total_deaths 161 } };
INSERT CountryCovid RELATION { TUPLE { country 'COM', year 2022, month 12, total_cases 8982, total_deaths 161 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2021, month 5, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2021, month 6, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2021, month 7, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2021, month 8, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2021, month 9, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2021, month 10, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2021, month 11, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2021, month 12, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2022, month 1, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2022, month 2, total_cases 10, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2022, month 3, total_cases 1986, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2022, month 4, total_cases 5031, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2022, month 5, total_cases 5675, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2022, month 6, total_cases 5774, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2022, month 7, total_cases 6042, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2022, month 8, total_cases 6265, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2022, month 9, total_cases 6389, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2022, month 10, total_cases 6389, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2022, month 11, total_cases 6389, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'COOK', year 2022, month 12, total_cases 6389, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2020, month 3, total_cases 347, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2020, month 4, total_cases 719, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2020, month 5, total_cases 1056, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2020, month 6, total_cases 3459, total_deaths 16 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2020, month 7, total_cases 17820, total_deaths 150 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2020, month 8, total_cases 41287, total_deaths 436 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2020, month 9, total_cases 75760, total_deaths 904 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2020, month 10, total_cases 109971, total_deaths 1385 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2020, month 11, total_cases 139638, total_deaths 1726 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2020, month 12, total_cases 169321, total_deaths 2185 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2021, month 1, total_cases 193276, total_deaths 2604 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2021, month 2, total_cases 204341, total_deaths 2800 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2021, month 3, total_cases 216764, total_deaths 2957 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2021, month 4, total_cases 250991, total_deaths 3231 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2021, month 5, total_cases 318986, total_deaths 4041 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2021, month 6, total_cases 367938, total_deaths 4667 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2021, month 7, total_cases 406814, total_deaths 5030 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2021, month 8, total_cases 463726, total_deaths 5506 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2021, month 9, total_cases 532185, total_deaths 6386 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2021, month 10, total_cases 559698, total_deaths 7029 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2021, month 11, total_cases 566839, total_deaths 7299 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2021, month 12, total_cases 570556, total_deaths 7353 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2022, month 1, total_cases 694865, total_deaths 7575 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2022, month 2, total_cases 806928, total_deaths 8037 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2022, month 3, total_cases 838537, total_deaths 8300 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2022, month 4, total_cases 852074, total_deaths 8405 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2022, month 5, total_cases 891038, total_deaths 8495 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2022, month 6, total_cases 904934, total_deaths 8525 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2022, month 7, total_cases 1028375, total_deaths 8720 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2022, month 8, total_cases 1088716, total_deaths 8856 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2022, month 9, total_cases 1117989, total_deaths 8970 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2022, month 10, total_cases 1133096, total_deaths 8990 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2022, month 11, total_cases 1146135, total_deaths 9038 } };
INSERT CountryCovid RELATION { TUPLE { country 'CR', year 2022, month 12, total_cases 1161687, total_deaths 9072 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2020, month 3, total_cases 6, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2020, month 4, total_cases 121, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2020, month 5, total_cases 435, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2020, month 6, total_cases 1227, total_deaths 15 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2020, month 7, total_cases 2451, total_deaths 23 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2020, month 8, total_cases 3884, total_deaths 40 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2020, month 9, total_cases 6024, total_deaths 60 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2020, month 10, total_cases 8793, total_deaths 95 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2020, month 11, total_cases 10761, total_deaths 105 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2020, month 12, total_cases 11840, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2021, month 1, total_cases 14070, total_deaths 134 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2021, month 2, total_cases 15400, total_deaths 147 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2021, month 3, total_cases 17470, total_deaths 168 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2021, month 4, total_cases 23882, total_deaths 217 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2021, month 5, total_cases 30439, total_deaths 264 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2021, month 6, total_cases 32457, total_deaths 286 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2021, month 7, total_cases 33791, total_deaths 298 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2021, month 8, total_cases 35354, total_deaths 313 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2021, month 9, total_cases 37576, total_deaths 339 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2021, month 10, total_cases 38215, total_deaths 349 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2021, month 11, total_cases 38370, total_deaths 350 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2021, month 12, total_cases 41732, total_deaths 352 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2022, month 1, total_cases 55695, total_deaths 396 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2022, month 2, total_cases 55886, total_deaths 401 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2022, month 3, total_cases 55952, total_deaths 401 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2022, month 4, total_cases 56022, total_deaths 401 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2022, month 5, total_cases 56324, total_deaths 402 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2022, month 6, total_cases 60542, total_deaths 405 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2022, month 7, total_cases 62159, total_deaths 410 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2022, month 8, total_cases 62320, total_deaths 410 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2022, month 9, total_cases 62374, total_deaths 410 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2022, month 10, total_cases 62397, total_deaths 410 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2022, month 11, total_cases 63037, total_deaths 412 } };
INSERT CountryCovid RELATION { TUPLE { country 'CV', year 2022, month 12, total_cases 63200, total_deaths 412 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2020, month 4, total_cases 843, total_deaths 15 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2020, month 5, total_cases 943, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2020, month 6, total_cases 996, total_deaths 19 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2020, month 7, total_cases 1084, total_deaths 19 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2020, month 8, total_cases 1487, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2020, month 9, total_cases 1743, total_deaths 22 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2020, month 10, total_cases 4217, total_deaths 25 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2020, month 11, total_cases 10383, total_deaths 48 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2020, month 12, total_cases 22346, total_deaths 120 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2021, month 1, total_cases 31227, total_deaths 198 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2021, month 2, total_cases 34935, total_deaths 232 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2021, month 3, total_cases 46105, total_deaths 257 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2021, month 4, total_cases 66202, total_deaths 309 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2021, month 5, total_cases 73483, total_deaths 361 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2021, month 6, total_cases 76552, total_deaths 375 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2021, month 7, total_cases 102926, total_deaths 420 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2021, month 8, total_cases 115310, total_deaths 510 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2021, month 9, total_cases 120143, total_deaths 552 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2021, month 10, total_cases 124017, total_deaths 575 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2021, month 11, total_cases 134473, total_deaths 597 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2021, month 12, total_cases 166827, total_deaths 638 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2022, month 1, total_cases 256746, total_deaths 733 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2022, month 2, total_cases 322516, total_deaths 856 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2022, month 3, total_cases 430726, total_deaths 940 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2022, month 4, total_cases 480220, total_deaths 1020 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2022, month 5, total_cases 489963, total_deaths 1059 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2022, month 6, total_cases 504717, total_deaths 1072 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2022, month 7, total_cases 562911, total_deaths 1115 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2022, month 8, total_cases 576278, total_deaths 1168 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2022, month 9, total_cases 587994, total_deaths 1182 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2022, month 10, total_cases 599118, total_deaths 1194 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2022, month 11, total_cases 614237, total_deaths 1226 } };
INSERT CountryCovid RELATION { TUPLE { country 'CY', year 2022, month 12, total_cases 631111, total_deaths 1258 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2020, month 1, total_cases 5, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2020, month 2, total_cases 66, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2020, month 3, total_cases 61913, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2020, month 4, total_cases 159119, total_deaths 6288 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2020, month 5, total_cases 181482, total_deaths 8500 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2020, month 6, total_cases 194259, total_deaths 8973 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2020, month 7, total_cases 208698, total_deaths 9141 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2020, month 8, total_cases 242381, total_deaths 9298 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2020, month 9, total_cases 289219, total_deaths 9488 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2020, month 10, total_cases 518753, total_deaths 10452 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2020, month 11, total_cases 1053869, total_deaths 16248 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2020, month 12, total_cases 1719737, total_deaths 33071 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2021, month 1, total_cases 2216363, total_deaths 56945 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2021, month 2, total_cases 2442336, total_deaths 70045 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2021, month 3, total_cases 2808873, total_deaths 76342 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2021, month 4, total_cases 3381597, total_deaths 82850 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2021, month 5, total_cases 3681126, total_deaths 88442 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2021, month 6, total_cases 3728141, total_deaths 90875 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2021, month 7, total_cases 3766765, total_deaths 91637 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2021, month 8, total_cases 3942856, total_deaths 92200 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2021, month 9, total_cases 4227501, total_deaths 93638 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2021, month 10, total_cases 4559120, total_deaths 95606 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2021, month 11, total_cases 5836813, total_deaths 101344 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2021, month 12, total_cases 7109182, total_deaths 111602 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2022, month 1, total_cases 9815533, total_deaths 117786 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2022, month 2, total_cases 14745107, total_deaths 122702 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2022, month 3, total_cases 21104509, total_deaths 129391 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2022, month 4, total_cases 24710769, total_deaths 135292 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2022, month 5, total_cases 26305996, total_deaths 139000 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2022, month 6, total_cases 28180861, total_deaths 141105 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2022, month 7, total_cases 30787309, total_deaths 143855 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2022, month 8, total_cases 32145157, total_deaths 147404 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2022, month 9, total_cases 33312373, total_deaths 149948 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2022, month 10, total_cases 35571131, total_deaths 153544 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2022, month 11, total_cases 36463485, total_deaths 157791 } };
INSERT CountryCovid RELATION { TUPLE { country 'D', year 2022, month 12, total_cases 37369866, total_deaths 161465 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2020, month 3, total_cases 30, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2020, month 4, total_cases 1089, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2020, month 5, total_cases 3354, total_deaths 24 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2020, month 6, total_cases 4682, total_deaths 54 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2020, month 7, total_cases 5084, total_deaths 58 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2020, month 8, total_cases 5387, total_deaths 60 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2020, month 9, total_cases 5416, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2020, month 10, total_cases 5561, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2020, month 11, total_cases 5679, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2020, month 12, total_cases 5831, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2021, month 1, total_cases 5932, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2021, month 2, total_cases 6066, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2021, month 3, total_cases 8002, total_deaths 70 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2021, month 4, total_cases 11100, total_deaths 143 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2021, month 5, total_cases 11533, total_deaths 154 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2021, month 6, total_cases 11602, total_deaths 155 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2021, month 7, total_cases 11651, total_deaths 156 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2021, month 8, total_cases 11750, total_deaths 157 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2021, month 9, total_cases 12811, total_deaths 167 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2021, month 10, total_cases 13478, total_deaths 181 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2021, month 11, total_cases 13504, total_deaths 186 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2021, month 12, total_cases 13656, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2022, month 1, total_cases 15464, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2022, month 2, total_cases 15547, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2022, month 3, total_cases 15587, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2022, month 4, total_cases 15611, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2022, month 5, total_cases 15675, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2022, month 6, total_cases 15690, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2022, month 7, total_cases 15690, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2022, month 8, total_cases 15690, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2022, month 9, total_cases 15690, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2022, month 10, total_cases 15690, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2022, month 11, total_cases 15690, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'DJI', year 2022, month 12, total_cases 15690, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2020, month 3, total_cases 2860, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2020, month 4, total_cases 9158, total_deaths 452 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2020, month 5, total_cases 11669, total_deaths 574 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2020, month 6, total_cases 12768, total_deaths 605 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2020, month 7, total_cases 13789, total_deaths 615 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2020, month 8, total_cases 16985, total_deaths 624 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2020, month 9, total_cases 27998, total_deaths 650 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2020, month 10, total_cases 46351, total_deaths 721 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2020, month 11, total_cases 80481, total_deaths 837 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2020, month 12, total_cases 163479, total_deaths 1298 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2021, month 1, total_cases 198472, total_deaths 2125 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2021, month 2, total_cases 211195, total_deaths 2361 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2021, month 3, total_cases 230603, total_deaths 2419 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2021, month 4, total_cases 250554, total_deaths 2483 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2021, month 5, total_cases 281227, total_deaths 2516 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2021, month 6, total_cases 293677, total_deaths 2534 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2021, month 7, total_cases 316807, total_deaths 2549 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2021, month 8, total_cases 345693, total_deaths 2584 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2021, month 9, total_cases 358796, total_deaths 2656 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2021, month 10, total_cases 387783, total_deaths 2714 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2021, month 11, total_cases 487401, total_deaths 2895 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2021, month 12, total_cases 802397, total_deaths 3267 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2022, month 1, total_cases 1742569, total_deaths 3755 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2022, month 2, total_cases 2764838, total_deaths 4612 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2022, month 3, total_cases 3058773, total_deaths 5698 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2022, month 4, total_cases 3116655, total_deaths 6158 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2022, month 5, total_cases 3136896, total_deaths 6363 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2022, month 6, total_cases 3171766, total_deaths 6469 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2022, month 7, total_cases 3229666, total_deaths 6639 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2022, month 8, total_cases 3273205, total_deaths 6923 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2022, month 9, total_cases 3299534, total_deaths 7074 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2022, month 10, total_cases 3334594, total_deaths 7347 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2022, month 11, total_cases 3353700, total_deaths 7532 } };
INSERT CountryCovid RELATION { TUPLE { country 'DK', year 2022, month 12, total_cases 3385836, total_deaths 7758 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2020, month 3, total_cases 1109, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2020, month 4, total_cases 6972, total_deaths 301 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2020, month 5, total_cases 17285, total_deaths 502 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2020, month 6, total_cases 32568, total_deaths 747 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2020, month 7, total_cases 69649, total_deaths 1160 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2020, month 8, total_cases 94715, total_deaths 1710 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2020, month 9, total_cases 112209, total_deaths 2105 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2020, month 10, total_cases 127018, total_deaths 2245 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2020, month 11, total_cases 143988, total_deaths 2331 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2020, month 12, total_cases 170785, total_deaths 2414 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2021, month 1, total_cases 214060, total_deaths 2666 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2021, month 2, total_cases 239617, total_deaths 3100 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2021, month 3, total_cases 252727, total_deaths 3325 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2021, month 4, total_cases 266561, total_deaths 3480 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2021, month 5, total_cases 292786, total_deaths 3628 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2021, month 6, total_cases 325221, total_deaths 3822 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2021, month 7, total_cases 341905, total_deaths 3963 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2021, month 8, total_cases 350173, total_deaths 4008 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2021, month 9, total_cases 359047, total_deaths 4046 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2021, month 10, total_cases 381667, total_deaths 4130 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2021, month 11, total_cases 407251, total_deaths 4204 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2021, month 12, total_cases 418778, total_deaths 4247 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2022, month 1, total_cases 555245, total_deaths 4307 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2022, month 2, total_cases 574556, total_deaths 4368 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2022, month 3, total_cases 578020, total_deaths 4375 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2022, month 4, total_cases 579248, total_deaths 4376 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2022, month 5, total_cases 584029, total_deaths 4377 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2022, month 6, total_cases 605784, total_deaths 4383 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2022, month 7, total_cases 628213, total_deaths 4383 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2022, month 8, total_cases 638500, total_deaths 4384 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2022, month 9, total_cases 644356, total_deaths 4384 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2022, month 10, total_cases 647272, total_deaths 4384 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2022, month 11, total_cases 650381, total_deaths 4384 } };
INSERT CountryCovid RELATION { TUPLE { country 'DOM', year 2022, month 12, total_cases 655540, total_deaths 4384 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2020, month 3, total_cases 716, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2020, month 4, total_cases 4006, total_deaths 450 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2020, month 5, total_cases 9394, total_deaths 653 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2020, month 6, total_cases 13907, total_deaths 912 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2020, month 7, total_cases 30394, total_deaths 1210 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2020, month 8, total_cases 44494, total_deaths 1510 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2020, month 9, total_cases 51530, total_deaths 1736 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2020, month 10, total_cases 57942, total_deaths 1964 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2020, month 11, total_cases 83199, total_deaths 2431 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2020, month 12, total_cases 99610, total_deaths 2756 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2021, month 1, total_cases 107339, total_deaths 2891 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2021, month 2, total_cases 113092, total_deaths 2983 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2021, month 3, total_cases 117192, total_deaths 3093 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2021, month 4, total_cases 122108, total_deaths 3253 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2021, month 5, total_cases 128913, total_deaths 3472 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2021, month 6, total_cases 139626, total_deaths 3716 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2021, month 7, total_cases 171392, total_deaths 4254 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2021, month 8, total_cases 196080, total_deaths 5269 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2021, month 9, total_cases 203359, total_deaths 5812 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2021, month 10, total_cases 206452, total_deaths 5920 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2021, month 11, total_cases 210531, total_deaths 6071 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2021, month 12, total_cases 218432, total_deaths 6276 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2022, month 1, total_cases 252117, total_deaths 6579 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2022, month 2, total_cases 264936, total_deaths 6835 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2022, month 3, total_cases 265671, total_deaths 6874 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2022, month 4, total_cases 265780, total_deaths 6875 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2022, month 5, total_cases 265884, total_deaths 6875 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2022, month 6, total_cases 266087, total_deaths 6875 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2022, month 7, total_cases 267454, total_deaths 6876 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2022, month 8, total_cases 270304, total_deaths 6878 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2022, month 9, total_cases 270673, total_deaths 6879 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2022, month 10, total_cases 270838, total_deaths 6881 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2022, month 11, total_cases 271090, total_deaths 6881 } };
INSERT CountryCovid RELATION { TUPLE { country 'DZ', year 2022, month 12, total_cases 271228, total_deaths 6881 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2020, month 2, total_cases 45, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2020, month 3, total_cases 95923, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2020, month 4, total_cases 213435, total_deaths 24543 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2020, month 5, total_cases 239479, total_deaths 28752 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2020, month 6, total_cases 249271, total_deaths 28355 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2020, month 7, total_cases 288522, total_deaths 28445 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2020, month 8, total_cases 462858, total_deaths 29094 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2020, month 9, total_cases 769188, total_deaths 31791 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2020, month 10, total_cases 1185678, total_deaths 35878 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2020, month 11, total_cases 1648187, total_deaths 45069 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2020, month 12, total_cases 1928265, total_deaths 50837 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2021, month 1, total_cases 2743119, total_deaths 58319 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2021, month 2, total_cases 3188553, total_deaths 69142 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2021, month 3, total_cases 3284353, total_deaths 75459 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2021, month 4, total_cases 3524077, total_deaths 78216 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2021, month 5, total_cases 3678390, total_deaths 79953 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2021, month 6, total_cases 3808960, total_deaths 80875 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2021, month 7, total_cases 4447044, total_deaths 81486 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2021, month 8, total_cases 4855065, total_deaths 84340 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2021, month 9, total_cases 4959091, total_deaths 86415 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2021, month 10, total_cases 5011148, total_deaths 87368 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2021, month 11, total_cases 5164184, total_deaths 88052 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2021, month 12, total_cases 6294745, total_deaths 89405 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2022, month 1, total_cases 9961253, total_deaths 93225 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2022, month 2, total_cases 10977524, total_deaths 99410 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2022, month 3, total_cases 11508309, total_deaths 102392 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2022, month 4, total_cases 11896152, total_deaths 104456 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2022, month 5, total_cases 12326264, total_deaths 106341 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2022, month 6, total_cases 12734038, total_deaths 107906 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2022, month 7, total_cases 13226579, total_deaths 110719 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2022, month 8, total_cases 13342530, total_deaths 112600 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2022, month 9, total_cases 13422984, total_deaths 114179 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2022, month 10, total_cases 13511768, total_deaths 115078 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2022, month 11, total_cases 13595504, total_deaths 115901 } };
INSERT CountryCovid RELATION { TUPLE { country 'E', year 2022, month 12, total_cases 13684258, total_deaths 117095 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2020, month 4, total_cases 396, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2020, month 5, total_cases 1962, total_deaths 64 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2020, month 6, total_cases 6366, total_deaths 148 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2020, month 7, total_cases 20636, total_deaths 341 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2020, month 8, total_cases 34201, total_deaths 577 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2020, month 9, total_cases 38529, total_deaths 711 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2020, month 10, total_cases 55192, total_deaths 981 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2020, month 11, total_cases 83618, total_deaths 1469 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2020, month 12, total_cases 96458, total_deaths 1670 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2021, month 1, total_cases 100773, total_deaths 1763 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2021, month 2, total_cases 105973, total_deaths 1856 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2021, month 3, total_cases 134058, total_deaths 2153 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2021, month 4, total_cases 159318, total_deaths 2724 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2021, month 5, total_cases 170735, total_deaths 3172 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2021, month 6, total_cases 184161, total_deaths 3634 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2021, month 7, total_cases 203213, total_deaths 3931 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2021, month 8, total_cases 235863, total_deaths 4726 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2021, month 9, total_cases 249434, total_deaths 5123 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2021, month 10, total_cases 253310, total_deaths 5281 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2021, month 11, total_cases 255088, total_deaths 5335 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2021, month 12, total_cases 295028, total_deaths 5378 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2022, month 1, total_cases 321381, total_deaths 5583 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2022, month 2, total_cases 322946, total_deaths 5639 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2022, month 3, total_cases 323423, total_deaths 5648 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2022, month 4, total_cases 323773, total_deaths 5649 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2022, month 5, total_cases 324976, total_deaths 5651 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2022, month 6, total_cases 333694, total_deaths 5652 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2022, month 7, total_cases 337622, total_deaths 5672 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2022, month 8, total_cases 338183, total_deaths 5674 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2022, month 9, total_cases 338434, total_deaths 5678 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2022, month 10, total_cases 339147, total_deaths 5678 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2022, month 11, total_cases 341636, total_deaths 5684 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAK', year 2022, month 12, total_cases 342499, total_deaths 5688 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2020, month 3, total_cases 19, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2020, month 4, total_cases 480, total_deaths 16 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2020, month 5, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2020, month 6, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2020, month 7, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2020, month 8, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2020, month 9, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2020, month 10, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2020, month 11, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2020, month 12, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2021, month 1, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2021, month 2, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2021, month 3, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2021, month 4, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2021, month 5, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2021, month 6, total_cases 509, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2021, month 7, total_cases 1017, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2021, month 8, total_cases 1367, total_deaths 50 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2021, month 9, total_cases 25846, total_deaths 50 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2021, month 10, total_cases 26154, total_deaths 725 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2021, month 11, total_cases 26270, total_deaths 730 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2021, month 12, total_cases 29306, total_deaths 737 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2022, month 1, total_cases 33230, total_deaths 789 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2022, month 2, total_cases 33620, total_deaths 798 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2022, month 3, total_cases 33815, total_deaths 800 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2022, month 4, total_cases 33872, total_deaths 803 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2022, month 5, total_cases 35354, total_deaths 840 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2022, month 6, total_cases 35768, total_deaths 841 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2022, month 7, total_cases 37510, total_deaths 841 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2022, month 8, total_cases 38712, total_deaths 841 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2022, month 9, total_cases 39440, total_deaths 845 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2022, month 10, total_cases 39920, total_deaths 845 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2022, month 11, total_cases 40656, total_deaths 845 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAT', year 2022, month 12, total_cases 42351, total_deaths 845 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2020, month 3, total_cases 44, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2020, month 4, total_cases 83, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2020, month 5, total_cases 417, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2020, month 6, total_cases 889, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2020, month 7, total_cases 1154, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2020, month 8, total_cases 2972, total_deaths 32 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2020, month 9, total_cases 8129, total_deaths 75 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2020, month 10, total_cases 12495, total_deaths 111 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2020, month 11, total_cases 20459, total_deaths 205 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2020, month 12, total_cases 35216, total_deaths 251 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2021, month 1, total_cases 39579, total_deaths 324 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2021, month 2, total_cases 40357, total_deaths 334 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2021, month 3, total_cases 40867, total_deaths 335 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2021, month 4, total_cases 41866, total_deaths 342 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2021, month 5, total_cases 47147, total_deaths 362 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2021, month 6, total_cases 79977, total_deaths 1023 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2021, month 7, total_cases 93927, total_deaths 2690 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2021, month 8, total_cases 119915, total_deaths 3012 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2021, month 9, total_cases 123572, total_deaths 3156 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2021, month 10, total_cases 126171, total_deaths 3215 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2021, month 11, total_cases 127550, total_deaths 3256 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2021, month 12, total_cases 140737, total_deaths 3294 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2022, month 1, total_cases 161839, total_deaths 3533 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2022, month 2, total_cases 163307, total_deaths 3588 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2022, month 3, total_cases 163905, total_deaths 3596 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2022, month 4, total_cases 164084, total_deaths 3597 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2022, month 5, total_cases 164366, total_deaths 3602 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2022, month 6, total_cases 167719, total_deaths 3621 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2022, month 7, total_cases 169230, total_deaths 3628 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2022, month 8, total_cases 169396, total_deaths 3628 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2022, month 9, total_cases 169396, total_deaths 3630 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2022, month 10, total_cases 169473, total_deaths 3630 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2022, month 11, total_cases 169733, total_deaths 3630 } };
INSERT CountryCovid RELATION { TUPLE { country 'EAU', year 2022, month 12, total_cases 169985, total_deaths 3630 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2020, month 3, total_cases 2240, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2020, month 4, total_cases 24934, total_deaths 900 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2020, month 5, total_cases 39098, total_deaths 3358 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2020, month 6, total_cases 56432, total_deaths 4527 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2020, month 7, total_cases 85355, total_deaths 5702 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2020, month 8, total_cases 113767, total_deaths 6556 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2020, month 9, total_cases 137047, total_deaths 11355 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2020, month 10, total_cases 168192, total_deaths 12670 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2020, month 11, total_cases 192685, total_deaths 13461 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2020, month 12, total_cases 212512, total_deaths 14034 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2021, month 1, total_cases 250828, total_deaths 14859 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2021, month 2, total_cases 286155, total_deaths 15811 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2021, month 3, total_cases 328755, total_deaths 16847 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2021, month 4, total_cases 381862, total_deaths 18631 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2021, month 5, total_cases 426037, total_deaths 20572 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2021, month 6, total_cases 458504, total_deaths 21560 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2021, month 7, total_cases 487372, total_deaths 31631 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2021, month 8, total_cases 501743, total_deaths 32259 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2021, month 9, total_cases 510177, total_deaths 32784 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2021, month 10, total_cases 517262, total_deaths 32980 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2021, month 11, total_cases 527333, total_deaths 33296 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2021, month 12, total_cases 549418, total_deaths 33681 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2022, month 1, total_cases 732038, total_deaths 34533 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2022, month 2, total_cases 827760, total_deaths 35223 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2022, month 3, total_cases 859890, total_deaths 35421 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2022, month 4, total_cases 869696, total_deaths 35598 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2022, month 5, total_cases 877282, total_deaths 35637 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2022, month 6, total_cases 909882, total_deaths 35725 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2022, month 7, total_cases 961345, total_deaths 35801 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2022, month 8, total_cases 995968, total_deaths 35843 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2022, month 9, total_cases 1003778, total_deaths 35894 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2022, month 10, total_cases 1008035, total_deaths 35920 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2022, month 11, total_cases 1011132, total_deaths 35940 } };
INSERT CountryCovid RELATION { TUPLE { country 'EC', year 2022, month 12, total_cases 1040463, total_deaths 35940 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2020, month 3, total_cases 15, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2020, month 4, total_cases 39, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2020, month 5, total_cases 39, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2020, month 6, total_cases 203, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2020, month 7, total_cases 279, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2020, month 8, total_cases 319, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2020, month 9, total_cases 375, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2020, month 10, total_cases 463, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2020, month 11, total_cases 577, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2020, month 12, total_cases 1320, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2021, month 1, total_cases 2135, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2021, month 2, total_cases 2847, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2021, month 3, total_cases 3285, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2021, month 4, total_cases 3671, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2021, month 5, total_cases 4094, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2021, month 6, total_cases 6009, total_deaths 23 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2021, month 7, total_cases 6547, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2021, month 8, total_cases 6642, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2021, month 9, total_cases 6722, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2021, month 10, total_cases 6834, total_deaths 45 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2021, month 11, total_cases 7358, total_deaths 60 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2021, month 12, total_cases 8011, total_deaths 76 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2022, month 1, total_cases 9536, total_deaths 98 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2022, month 2, total_cases 9701, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2022, month 3, total_cases 9728, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2022, month 4, total_cases 9734, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2022, month 5, total_cases 9759, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2022, month 6, total_cases 9799, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2022, month 7, total_cases 10045, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2022, month 8, total_cases 10154, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2022, month 9, total_cases 10170, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2022, month 10, total_cases 10189, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2022, month 11, total_cases 10189, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'ER', year 2022, month 12, total_cases 10189, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2020, month 3, total_cases 32, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2020, month 4, total_cases 395, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2020, month 5, total_cases 2517, total_deaths 46 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2020, month 6, total_cases 6438, total_deaths 174 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2020, month 7, total_cases 16632, total_deaths 448 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2020, month 8, total_cases 25729, total_deaths 717 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2020, month 9, total_cases 29077, total_deaths 843 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2020, month 10, total_cases 33826, total_deaths 975 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2020, month 11, total_cases 38941, total_deaths 1114 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2020, month 12, total_cases 46242, total_deaths 1327 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2021, month 1, total_cases 54966, total_deaths 1623 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2021, month 2, total_cases 60181, total_deaths 1854 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2021, month 3, total_cases 64726, total_deaths 2006 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2021, month 4, total_cases 69198, total_deaths 2124 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2021, month 5, total_cases 73702, total_deaths 2249 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2021, month 6, total_cases 78766, total_deaths 2381 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2021, month 7, total_cases 86620, total_deaths 2629 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2021, month 8, total_cases 94060, total_deaths 2918 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2021, month 9, total_cases 104348, total_deaths 3234 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2021, month 10, total_cases 113422, total_deaths 3629 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2021, month 11, total_cases 119803, total_deaths 3776 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2021, month 12, total_cases 121945, total_deaths 3824 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2022, month 1, total_cases 135109, total_deaths 3899 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2022, month 2, total_cases 156364, total_deaths 4071 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2022, month 3, total_cases 161052, total_deaths 4119 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2022, month 4, total_cases 162089, total_deaths 4128 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2022, month 5, total_cases 162755, total_deaths 4132 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2022, month 6, total_cases 169646, total_deaths 4144 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2022, month 7, total_cases 190818, total_deaths 4194 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2022, month 8, total_cases 201785, total_deaths 4223 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2022, month 9, total_cases 201785, total_deaths 4229 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2022, month 10, total_cases 201785, total_deaths 4230 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2022, month 11, total_cases 201785, total_deaths 4230 } };
INSERT CountryCovid RELATION { TUPLE { country 'ES', year 2022, month 12, total_cases 201785, total_deaths 4230 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2020, month 3, total_cases 710, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2020, month 4, total_cases 5537, total_deaths 392 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2020, month 5, total_cases 24985, total_deaths 959 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2020, month 6, total_cases 68311, total_deaths 2953 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2020, month 7, total_cases 94078, total_deaths 4805 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2020, month 8, total_cases 98939, total_deaths 5421 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2020, month 9, total_cases 103198, total_deaths 5930 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2020, month 10, total_cases 107555, total_deaths 6266 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2020, month 11, total_cases 115911, total_deaths 6650 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2020, month 12, total_cases 138062, total_deaths 7631 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2021, month 1, total_cases 165951, total_deaths 9316 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2021, month 2, total_cases 182424, total_deaths 10688 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2021, month 3, total_cases 202131, total_deaths 11995 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2021, month 4, total_cases 227552, total_deaths 13339 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2021, month 5, total_cases 262650, total_deaths 15096 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2021, month 6, total_cases 281282, total_deaths 16169 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2021, month 7, total_cases 284262, total_deaths 16524 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2021, month 8, total_cases 288441, total_deaths 16736 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2021, month 9, total_cases 304524, total_deaths 17331 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2021, month 10, total_cases 331017, total_deaths 18651 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2021, month 11, total_cases 358578, total_deaths 20474 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2021, month 12, total_cases 385575, total_deaths 21752 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2022, month 1, total_cases 425911, total_deaths 22635 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2022, month 2, total_cases 483771, total_deaths 24074 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2022, month 3, total_cases 505264, total_deaths 24417 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2022, month 4, total_cases 515645, total_deaths 24613 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2022, month 5, total_cases 515645, total_deaths 24718 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2022, month 6, total_cases 515645, total_deaths 24723 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2022, month 7, total_cases 515645, total_deaths 24765 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2022, month 8, total_cases 515645, total_deaths 24794 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2022, month 9, total_cases 515645, total_deaths 24797 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2022, month 10, total_cases 515645, total_deaths 24798 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2022, month 11, total_cases 515645, total_deaths 24798 } };
INSERT CountryCovid RELATION { TUPLE { country 'ET', year 2022, month 12, total_cases 515645, total_deaths 24801 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2020, month 3, total_cases 26, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2020, month 4, total_cases 131, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2020, month 5, total_cases 1172, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2020, month 6, total_cases 5846, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2020, month 7, total_cases 17530, total_deaths 274 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2020, month 8, total_cases 52131, total_deaths 809 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2020, month 9, total_cases 75368, total_deaths 1198 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2020, month 10, total_cases 96169, total_deaths 1469 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2020, month 11, total_cases 110074, total_deaths 1706 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2020, month 12, total_cases 124264, total_deaths 1923 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2021, month 1, total_cases 137650, total_deaths 2093 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2021, month 2, total_cases 159072, total_deaths 2365 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2021, month 3, total_cases 206589, total_deaths 2865 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2021, month 4, total_cases 257442, total_deaths 3688 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2021, month 5, total_cases 271541, total_deaths 4165 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2021, month 6, total_cases 276174, total_deaths 4320 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2021, month 7, total_cases 280365, total_deaths 4385 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2021, month 8, total_cases 308134, total_deaths 4675 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2021, month 9, total_cases 345674, total_deaths 5582 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2021, month 10, total_cases 365167, total_deaths 6459 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2021, month 11, total_cases 371536, total_deaths 6755 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2021, month 12, total_cases 420342, total_deaths 6937 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2022, month 1, total_cases 465158, total_deaths 7337 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2022, month 2, total_cases 468727, total_deaths 7462 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2022, month 3, total_cases 469758, total_deaths 7497 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2022, month 4, total_cases 470568, total_deaths 7510 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2022, month 5, total_cases 472743, total_deaths 7513 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2022, month 6, total_cases 488724, total_deaths 7536 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2022, month 7, total_cases 492237, total_deaths 7568 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2022, month 8, total_cases 493190, total_deaths 7572 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2022, month 9, total_cases 493579, total_deaths 7572 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2022, month 10, total_cases 493960, total_deaths 7572 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2022, month 11, total_cases 494578, total_deaths 7572 } };
INSERT CountryCovid RELATION { TUPLE { country 'ETH', year 2022, month 12, total_cases 498001, total_deaths 7572 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2020, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2020, month 3, total_cases 745, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2020, month 4, total_cases 1689, total_deaths 52 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2020, month 5, total_cases 1869, total_deaths 68 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2020, month 6, total_cases 1989, total_deaths 69 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2020, month 7, total_cases 2064, total_deaths 69 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2020, month 8, total_cases 2375, total_deaths 69 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2020, month 9, total_cases 3371, total_deaths 64 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2020, month 10, total_cases 4905, total_deaths 73 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2020, month 11, total_cases 12308, total_deaths 118 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2020, month 12, total_cases 27990, total_deaths 229 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2021, month 1, total_cases 44208, total_deaths 419 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2021, month 2, total_cases 65600, total_deaths 589 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2021, month 3, total_cases 106424, total_deaths 902 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2021, month 4, total_cases 122019, total_deaths 1161 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2021, month 5, total_cases 129544, total_deaths 1252 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2021, month 6, total_cases 131064, total_deaths 1269 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2021, month 7, total_cases 133557, total_deaths 1272 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2021, month 8, total_cases 141956, total_deaths 1292 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2021, month 9, total_cases 156257, total_deaths 1357 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2021, month 10, total_cases 193969, total_deaths 1531 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2021, month 11, total_cases 222584, total_deaths 1800 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2021, month 12, total_cases 241408, total_deaths 1932 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2022, month 1, total_cases 337543, total_deaths 2036 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2022, month 2, total_cases 494430, total_deaths 2236 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2022, month 3, total_cases 556304, total_deaths 2459 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2022, month 4, total_cases 572193, total_deaths 2539 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2022, month 5, total_cases 576870, total_deaths 2574 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2022, month 6, total_cases 580114, total_deaths 2591 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2022, month 7, total_cases 586399, total_deaths 2620 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2022, month 8, total_cases 597838, total_deaths 2651 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2022, month 9, total_cases 601993, total_deaths 2681 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2022, month 10, total_cases 606633, total_deaths 2739 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2022, month 11, total_cases 609297, total_deaths 2790 } };
INSERT CountryCovid RELATION { TUPLE { country 'EW', year 2022, month 12, total_cases 611891, total_deaths 2854 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2020, month 1, total_cases 5, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2020, month 2, total_cases 100, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2020, month 3, total_cases 52229, total_deaths 3526 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2020, month 4, total_cases 169021, total_deaths 24349 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2020, month 5, total_cases 190895, total_deaths 28805 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2020, month 6, total_cases 204160, total_deaths 29846 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2020, month 7, total_cases 227151, total_deaths 30268 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2020, month 8, total_cases 320559, total_deaths 30646 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2020, month 9, total_cases 603998, total_deaths 31971 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2020, month 10, total_cases 1407089, total_deaths 36798 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2020, month 11, total_cases 2262406, total_deaths 52743 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2020, month 12, total_cases 2660676, total_deaths 64644 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2021, month 1, total_cases 3237858, total_deaths 76069 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2021, month 2, total_cases 3797210, total_deaths 86440 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2021, month 3, total_cases 4686013, total_deaths 95653 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2021, month 4, total_cases 5658469, total_deaths 104528 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2021, month 5, total_cases 5959322, total_deaths 109544 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2021, month 6, total_cases 5817787, total_deaths 111110 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2021, month 7, total_cases 6169957, total_deaths 111905 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2021, month 8, total_cases 6794224, total_deaths 114483 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2021, month 9, total_cases 7057937, total_deaths 116727 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2021, month 10, total_cases 7211532, total_deaths 117717 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2021, month 11, total_cases 7720283, total_deaths 119193 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2021, month 12, total_cases 10018021, total_deaths 123805 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2022, month 1, total_cases 19196399, total_deaths 131011 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2022, month 2, total_cases 22755526, total_deaths 138436 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2022, month 3, total_cases 25668176, total_deaths 142342 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2022, month 4, total_cases 28699367, total_deaths 145999 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2022, month 5, total_cases 29573524, total_deaths 148396 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2022, month 6, total_cases 31144479, total_deaths 149602 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2022, month 7, total_cases 33848327, total_deaths 152052 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2022, month 8, total_cases 34591380, total_deaths 154162 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2022, month 9, total_cases 35453449, total_deaths 155181 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2022, month 10, total_cases 36875709, total_deaths 157063 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2022, month 11, total_cases 37886611, total_deaths 159019 } };
INSERT CountryCovid RELATION { TUPLE { country 'F', year 2022, month 12, total_cases 39334073, total_deaths 162031 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2020, month 4, total_cases 13, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2020, month 5, total_cases 13, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2020, month 6, total_cases 13, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2020, month 7, total_cases 13, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2020, month 8, total_cases 13, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2020, month 9, total_cases 13, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2020, month 10, total_cases 13, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2020, month 11, total_cases 16, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2020, month 12, total_cases 29, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2021, month 1, total_cases 41, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2021, month 2, total_cases 54, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2021, month 3, total_cases 54, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2021, month 4, total_cases 63, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2021, month 5, total_cases 63, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2021, month 6, total_cases 63, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2021, month 7, total_cases 63, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2021, month 8, total_cases 66, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2021, month 9, total_cases 67, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2021, month 10, total_cases 69, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2021, month 11, total_cases 79, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2021, month 12, total_cases 83, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2022, month 1, total_cases 89, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2022, month 2, total_cases 110, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2022, month 3, total_cases 123, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2022, month 4, total_cases 177, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2022, month 5, total_cases 1687, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2022, month 6, total_cases 1815, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2022, month 7, total_cases 1835, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2022, month 8, total_cases 1886, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2022, month 9, total_cases 1930, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2022, month 10, total_cases 1930, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2022, month 11, total_cases 1930, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FALK', year 2022, month 12, total_cases 1930, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2020, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2020, month 4, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2020, month 5, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2020, month 6, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2020, month 7, total_cases 27, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2020, month 8, total_cases 28, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2020, month 9, total_cases 32, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2020, month 10, total_cases 34, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2020, month 11, total_cases 42, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2020, month 12, total_cases 49, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2021, month 1, total_cases 55, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2021, month 2, total_cases 59, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2021, month 3, total_cases 67, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2021, month 4, total_cases 117, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2021, month 5, total_cases 438, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2021, month 6, total_cases 4418, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2021, month 7, total_cases 29781, total_deaths 238 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2021, month 8, total_cases 46716, total_deaths 496 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2021, month 9, total_cases 51023, total_deaths 624 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2021, month 10, total_cases 52141, total_deaths 674 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2021, month 11, total_cases 52506, total_deaths 696 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2021, month 12, total_cases 53332, total_deaths 698 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2022, month 1, total_cases 62855, total_deaths 801 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2022, month 2, total_cases 63930, total_deaths 834 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2022, month 3, total_cases 64404, total_deaths 834 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2022, month 4, total_cases 64634, total_deaths 862 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2022, month 5, total_cases 65007, total_deaths 864 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2022, month 6, total_cases 65713, total_deaths 866 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2022, month 7, total_cases 67549, total_deaths 870 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2022, month 8, total_cases 68153, total_deaths 878 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2022, month 9, total_cases 68242, total_deaths 878 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2022, month 10, total_cases 68264, total_deaths 878 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2022, month 11, total_cases 68375, total_deaths 878 } };
INSERT CountryCovid RELATION { TUPLE { country 'FJI', year 2022, month 12, total_cases 68702, total_deaths 881 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2020, month 3, total_cases 69, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2020, month 4, total_cases 83, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2020, month 5, total_cases 83, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2020, month 6, total_cases 83, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2020, month 7, total_cases 89, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2020, month 8, total_cases 108, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2020, month 9, total_cases 120, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2020, month 10, total_cases 576, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2020, month 11, total_cases 1312, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2020, month 12, total_cases 2221, total_deaths 44 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2021, month 1, total_cases 2565, total_deaths 53 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2021, month 2, total_cases 2648, total_deaths 55 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2021, month 3, total_cases 2753, total_deaths 56 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2021, month 4, total_cases 3021, total_deaths 56 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2021, month 5, total_cases 3103, total_deaths 57 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2021, month 6, total_cases 3131, total_deaths 58 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2021, month 7, total_cases 3187, total_deaths 58 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2021, month 8, total_cases 3391, total_deaths 58 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2021, month 9, total_cases 3557, total_deaths 58 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2021, month 10, total_cases 3662, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2021, month 11, total_cases 4678, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2021, month 12, total_cases 6131, total_deaths 69 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2022, month 1, total_cases 8928, total_deaths 73 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2022, month 2, total_cases 12001, total_deaths 78 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2022, month 3, total_cases 16378, total_deaths 84 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2022, month 4, total_cases 17185, total_deaths 85 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2022, month 5, total_cases 17469, total_deaths 84 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2022, month 6, total_cases 17903, total_deaths 85 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2022, month 7, total_cases 18678, total_deaths 86 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2022, month 8, total_cases 19161, total_deaths 86 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2022, month 9, total_cases 19713, total_deaths 86 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2022, month 10, total_cases 20626, total_deaths 87 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2022, month 11, total_cases 20935, total_deaths 87 } };
INSERT CountryCovid RELATION { TUPLE { country 'FL', year 2022, month 12, total_cases 21276, total_deaths 88 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2020, month 3, total_cases 36, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2020, month 4, total_cases 58, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2020, month 5, total_cases 60, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2020, month 6, total_cases 62, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2020, month 7, total_cases 62, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2020, month 8, total_cases 573, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2020, month 9, total_cases 1852, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2020, month 10, total_cases 7262, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2020, month 11, total_cases 14372, total_deaths 75 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2020, month 12, total_cases 16926, total_deaths 114 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2021, month 1, total_cases 18060, total_deaths 131 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2021, month 2, total_cases 18387, total_deaths 139 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2021, month 3, total_cases 18627, total_deaths 141 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2021, month 4, total_cases 18758, total_deaths 141 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2021, month 5, total_cases 18870, total_deaths 142 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2021, month 6, total_cases 19007, total_deaths 142 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2021, month 7, total_cases 20048, total_deaths 149 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2021, month 8, total_cases 40178, total_deaths 436 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2021, month 9, total_cases 40178, total_deaths 621 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2021, month 10, total_cases 45541, total_deaths 636 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2021, month 11, total_cases 45609, total_deaths 636 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2021, month 12, total_cases 46382, total_deaths 636 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2022, month 1, total_cases 48266, total_deaths 636 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2022, month 2, total_cases 66699, total_deaths 639 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2022, month 3, total_cases 72195, total_deaths 646 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2022, month 4, total_cases 72720, total_deaths 648 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2022, month 5, total_cases 72951, total_deaths 649 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2022, month 6, total_cases 73268, total_deaths 649 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2022, month 7, total_cases 75257, total_deaths 649 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2022, month 8, total_cases 76459, total_deaths 649 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2022, month 9, total_cases 76599, total_deaths 649 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2022, month 10, total_cases 76758, total_deaths 649 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2022, month 11, total_cases 76985, total_deaths 649 } };
INSERT CountryCovid RELATION { TUPLE { country 'FPOL', year 2022, month 12, total_cases 77910, total_deaths 649 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2021, month 1, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2021, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2021, month 3, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2021, month 4, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2021, month 5, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2021, month 6, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2021, month 7, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2021, month 8, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2021, month 9, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2021, month 10, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2021, month 11, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2021, month 12, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2022, month 1, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2022, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2022, month 3, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2022, month 4, total_cases 5, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2022, month 5, total_cases 30, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2022, month 6, total_cases 38, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2022, month 7, total_cases 4321, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2022, month 8, total_cases 7727, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2022, month 9, total_cases 10814, total_deaths 31 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2022, month 10, total_cases 22203, total_deaths 55 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2022, month 11, total_cases 22203, total_deaths 58 } };
INSERT CountryCovid RELATION { TUPLE { country 'FSM', year 2022, month 12, total_cases 22203, total_deaths 58 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2020, month 3, total_cases 16, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2020, month 4, total_cases 276, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2020, month 5, total_cases 2655, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2020, month 6, total_cases 5394, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2020, month 7, total_cases 7352, total_deaths 49 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2020, month 8, total_cases 8533, total_deaths 53 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2020, month 9, total_cases 8766, total_deaths 54 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2020, month 10, total_cases 8968, total_deaths 55 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2020, month 11, total_cases 9214, total_deaths 60 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2020, month 12, total_cases 9571, total_deaths 64 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2021, month 1, total_cases 10748, total_deaths 68 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2021, month 2, total_cases 14564, total_deaths 83 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2021, month 3, total_cases 19550, total_deaths 118 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2021, month 4, total_cases 23075, total_deaths 139 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2021, month 5, total_cases 24429, total_deaths 152 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2021, month 6, total_cases 24984, total_deaths 159 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2021, month 7, total_cases 25384, total_deaths 164 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2021, month 8, total_cases 25888, total_deaths 166 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2021, month 9, total_cases 30155, total_deaths 186 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2021, month 10, total_cases 35525, total_deaths 239 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2021, month 11, total_cases 37342, total_deaths 279 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2021, month 12, total_cases 41798, total_deaths 288 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2022, month 1, total_cases 46925, total_deaths 301 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2022, month 2, total_cases 47543, total_deaths 303 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2022, month 3, total_cases 47584, total_deaths 303 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2022, month 4, total_cases 47602, total_deaths 304 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2022, month 5, total_cases 47650, total_deaths 304 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2022, month 6, total_cases 47939, total_deaths 305 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2022, month 7, total_cases 48511, total_deaths 306 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2022, month 8, total_cases 48649, total_deaths 306 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2022, month 9, total_cases 48691, total_deaths 306 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2022, month 10, total_cases 48945, total_deaths 306 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2022, month 11, total_cases 48973, total_deaths 306 } };
INSERT CountryCovid RELATION { TUPLE { country 'G', year 2022, month 12, total_cases 48980, total_deaths 306 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2020, month 1, total_cases 0, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2020, month 2, total_cases 61, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2020, month 3, total_cases 38484, total_deaths 5141 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2020, month 4, total_cases 177543, total_deaths 38995 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2020, month 5, total_cases 256145, total_deaths 52487 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2020, month 6, total_cases 283710, total_deaths 56199 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2020, month 7, total_cases 303181, total_deaths 57349 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2020, month 8, total_cases 335873, total_deaths 57896 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2020, month 9, total_cases 453264, total_deaths 58785 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2020, month 10, total_cases 1011660, total_deaths 64218 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2020, month 11, total_cases 1629657, total_deaths 77662 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2020, month 12, total_cases 2488780, total_deaths 94998 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2021, month 1, total_cases 3817176, total_deaths 131582 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2021, month 2, total_cases 4176554, total_deaths 148404 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2021, month 3, total_cases 4345788, total_deaths 152707 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2021, month 4, total_cases 4416623, total_deaths 153811 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2021, month 5, total_cases 4487339, total_deaths 154236 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2021, month 6, total_cases 4800907, total_deaths 154718 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2021, month 7, total_cases 5856528, total_deaths 156550 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2021, month 8, total_cases 6789581, total_deaths 159868 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2021, month 9, total_cases 7807036, total_deaths 164257 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2021, month 10, total_cases 9057629, total_deaths 168820 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2021, month 11, total_cases 10228772, total_deaths 173319 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2021, month 12, total_cases 12937886, total_deaths 177397 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2022, month 1, total_cases 17315893, total_deaths 184101 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2022, month 2, total_cases 18886701, total_deaths 187988 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2022, month 3, total_cases 21147425, total_deaths 192409 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2022, month 4, total_cases 22038340, total_deaths 197490 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2022, month 5, total_cases 22300587, total_deaths 199617 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2022, month 6, total_cases 22720345, total_deaths 201068 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2022, month 7, total_cases 23304483, total_deaths 204725 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2022, month 8, total_cases 23521796, total_deaths 207045 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2022, month 9, total_cases 23672856, total_deaths 208462 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2022, month 10, total_cases 23898489, total_deaths 211513 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2022, month 11, total_cases 23998172, total_deaths 213311 } };
INSERT CountryCovid RELATION { TUPLE { country 'GB', year 2022, month 12, total_cases 24135084, total_deaths 216070 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2021, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2021, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2021, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2021, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2021, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2021, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2021, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2021, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2021, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2021, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2021, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2021, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2022, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2022, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2022, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2022, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2022, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2022, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2022, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2022, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2022, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2022, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2022, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBG', year 2022, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2021, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2021, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2021, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2021, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2021, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2021, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2021, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2021, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2021, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2021, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2022, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2022, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2022, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2022, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2022, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2022, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2022, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2022, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2022, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2022, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2022, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBJ', year 2022, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2020, month 3, total_cases 69, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2020, month 4, total_cases 144, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2020, month 5, total_cases 170, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2020, month 6, total_cases 177, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2020, month 7, total_cases 187, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2020, month 8, total_cases 288, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2020, month 9, total_cases 396, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2020, month 10, total_cases 697, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2020, month 11, total_cases 1020, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2020, month 12, total_cases 2040, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2021, month 1, total_cases 4114, total_deaths 77 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2021, month 2, total_cases 4239, total_deaths 93 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2021, month 3, total_cases 4274, total_deaths 94 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2021, month 4, total_cases 4291, total_deaths 94 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2021, month 5, total_cases 4295, total_deaths 94 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2021, month 6, total_cases 4348, total_deaths 94 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2021, month 7, total_cases 4965, total_deaths 94 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2021, month 8, total_cases 5354, total_deaths 97 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2021, month 9, total_cases 5549, total_deaths 97 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2021, month 10, total_cases 5992, total_deaths 98 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2021, month 11, total_cases 7248, total_deaths 98 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2021, month 12, total_cases 8701, total_deaths 100 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2022, month 1, total_cases 12950, total_deaths 101 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2022, month 2, total_cases 15428, total_deaths 101 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2022, month 3, total_cases 16920, total_deaths 101 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2022, month 4, total_cases 17837, total_deaths 102 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2022, month 5, total_cases 18419, total_deaths 102 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2022, month 6, total_cases 19633, total_deaths 104 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2022, month 7, total_cases 19902, total_deaths 105 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2022, month 8, total_cases 20049, total_deaths 107 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2022, month 9, total_cases 20095, total_deaths 108 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2022, month 10, total_cases 20121, total_deaths 108 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2022, month 11, total_cases 20184, total_deaths 110 } };
INSERT CountryCovid RELATION { TUPLE { country 'GBZ', year 2022, month 12, total_cases 20275, total_deaths 110 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2020, month 4, total_cases 599, total_deaths 16 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2020, month 5, total_cases 5087, total_deaths 108 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2020, month 6, total_cases 18096, total_deaths 773 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2020, month 7, total_cases 49789, total_deaths 1924 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2020, month 8, total_cases 74074, total_deaths 2760 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2020, month 9, total_cases 91746, total_deaths 3246 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2020, month 10, total_cases 107939, total_deaths 3729 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2020, month 11, total_cases 122062, total_deaths 4171 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2020, month 12, total_cases 138012, total_deaths 4813 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2021, month 1, total_cases 159504, total_deaths 5643 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2021, month 2, total_cases 174542, total_deaths 6393 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2021, month 3, total_cases 193834, total_deaths 6840 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2021, month 4, total_cases 227671, total_deaths 7524 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2021, month 5, total_cases 254417, total_deaths 8165 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2021, month 6, total_cases 293583, total_deaths 9215 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2021, month 7, total_cases 368484, total_deaths 10339 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2021, month 8, total_cases 470277, total_deaths 11926 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2021, month 9, total_cases 560315, total_deaths 13564 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2021, month 10, total_cases 601572, total_deaths 15094 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2021, month 11, total_cases 617984, total_deaths 15943 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2021, month 12, total_cases 628359, total_deaths 16107 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2022, month 1, total_cases 690290, total_deaths 16385 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2022, month 2, total_cases 776991, total_deaths 16971 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2022, month 3, total_cases 828874, total_deaths 17312 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2022, month 4, total_cases 846546, total_deaths 17584 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2022, month 5, total_cases 861002, total_deaths 18152 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2022, month 6, total_cases 910714, total_deaths 18561 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2022, month 7, total_cases 1042376, total_deaths 19037 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2022, month 8, total_cases 1101954, total_deaths 19490 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2022, month 9, total_cases 1124467, total_deaths 19795 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2022, month 10, total_cases 1140499, total_deaths 19888 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2022, month 11, total_cases 1156468, total_deaths 19951 } };
INSERT CountryCovid RELATION { TUPLE { country 'GCA', year 2022, month 12, total_cases 1204132, total_deaths 20001 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2020, month 3, total_cases 110, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2020, month 4, total_cases 539, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2020, month 5, total_cases 783, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2020, month 6, total_cases 928, total_deaths 15 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2020, month 7, total_cases 1168, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2020, month 8, total_cases 1487, total_deaths 19 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2020, month 9, total_cases 6192, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2020, month 10, total_cases 38936, total_deaths 307 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2020, month 11, total_cases 135584, total_deaths 1267 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2020, month 12, total_cases 227420, total_deaths 2505 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2021, month 1, total_cases 258111, total_deaths 3178 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2021, month 2, total_cases 270758, total_deaths 3510 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2021, month 3, total_cases 281761, total_deaths 3778 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2021, month 4, total_cases 310310, total_deaths 4110 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2021, month 5, total_cases 343963, total_deaths 4773 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2021, month 6, total_cases 366078, total_deaths 5316 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2021, month 7, total_cases 419534, total_deaths 5820 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2021, month 8, total_cases 549811, total_deaths 7408 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2021, month 9, total_cases 613012, total_deaths 8946 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2021, month 10, total_cases 719247, total_deaths 10045 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2021, month 11, total_cases 845643, total_deaths 12054 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2021, month 12, total_cases 934741, total_deaths 13800 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2022, month 1, total_cases 1175923, total_deaths 14930 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2022, month 2, total_cases 1605472, total_deaths 16113 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2022, month 3, total_cases 1648264, total_deaths 16695 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2022, month 4, total_cases 1655098, total_deaths 16757 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2022, month 5, total_cases 1657154, total_deaths 16777 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2022, month 6, total_cases 1660429, total_deaths 16791 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2022, month 7, total_cases 1686218, total_deaths 16809 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2022, month 8, total_cases 1735682, total_deaths 16839 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2022, month 9, total_cases 1780691, total_deaths 16861 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2022, month 10, total_cases 1780691, total_deaths 16873 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2022, month 11, total_cases 1805698, total_deaths 16888 } };
INSERT CountryCovid RELATION { TUPLE { country 'GE', year 2022, month 12, total_cases 1808820, total_deaths 16897 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2020, month 3, total_cases 161, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2020, month 4, total_cases 2074, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2020, month 5, total_cases 8070, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2020, month 6, total_cases 17741, total_deaths 112 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2020, month 7, total_cases 35501, total_deaths 182 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2020, month 8, total_cases 44298, total_deaths 276 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2020, month 9, total_cases 46626, total_deaths 301 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2020, month 10, total_cases 48055, total_deaths 320 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2020, month 11, total_cases 51667, total_deaths 323 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2020, month 12, total_cases 54771, total_deaths 335 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2021, month 1, total_cases 67010, total_deaths 416 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2021, month 2, total_cases 84023, total_deaths 607 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2021, month 3, total_cases 90583, total_deaths 743 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2021, month 4, total_cases 92562, total_deaths 779 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2021, month 5, total_cases 93898, total_deaths 785 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2021, month 6, total_cases 95914, total_deaths 796 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2021, month 7, total_cases 103019, total_deaths 823 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2021, month 8, total_cases 119436, total_deaths 1036 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2021, month 9, total_cases 127482, total_deaths 1156 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2021, month 10, total_cases 130077, total_deaths 1175 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2021, month 11, total_cases 130920, total_deaths 1209 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2021, month 12, total_cases 142986, total_deaths 1295 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2022, month 1, total_cases 156920, total_deaths 1395 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2022, month 2, total_cases 159674, total_deaths 1442 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2022, month 3, total_cases 160971, total_deaths 1445 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2022, month 4, total_cases 161173, total_deaths 1445 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2022, month 5, total_cases 161370, total_deaths 1445 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2022, month 6, total_cases 166133, total_deaths 1450 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2022, month 7, total_cases 168007, total_deaths 1457 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2022, month 8, total_cases 168580, total_deaths 1459 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2022, month 9, total_cases 169100, total_deaths 1459 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2022, month 10, total_cases 170707, total_deaths 1460 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2022, month 11, total_cases 171009, total_deaths 1461 } };
INSERT CountryCovid RELATION { TUPLE { country 'GH', year 2022, month 12, total_cases 171048, total_deaths 1461 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2020, month 3, total_cases 8, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2020, month 4, total_cases 205, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2020, month 5, total_cases 1256, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2020, month 6, total_cases 1654, total_deaths 24 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2020, month 7, total_cases 1981, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2020, month 8, total_cases 2205, total_deaths 34 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2020, month 9, total_cases 2324, total_deaths 39 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2020, month 10, total_cases 2413, total_deaths 41 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2020, month 11, total_cases 2441, total_deaths 44 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2020, month 12, total_cases 2452, total_deaths 45 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2021, month 1, total_cases 2634, total_deaths 45 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2021, month 2, total_cases 3262, total_deaths 48 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2021, month 3, total_cases 3650, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2021, month 4, total_cases 3734, total_deaths 67 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2021, month 5, total_cases 3766, total_deaths 68 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2021, month 6, total_cases 3859, total_deaths 69 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2021, month 7, total_cases 4479, total_deaths 76 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2021, month 8, total_cases 5799, total_deaths 119 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2021, month 9, total_cases 6107, total_deaths 135 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2021, month 10, total_cases 6134, total_deaths 141 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2021, month 11, total_cases 6440, total_deaths 148 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2021, month 12, total_cases 6484, total_deaths 149 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2022, month 1, total_cases 7586, total_deaths 156 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2022, month 2, total_cases 8001, total_deaths 167 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2022, month 3, total_cases 8149, total_deaths 170 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2022, month 4, total_cases 8202, total_deaths 171 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2022, month 5, total_cases 8269, total_deaths 171 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2022, month 6, total_cases 8348, total_deaths 171 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2022, month 7, total_cases 8412, total_deaths 172 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2022, month 8, total_cases 8491, total_deaths 175 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2022, month 9, total_cases 8796, total_deaths 175 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2022, month 10, total_cases 8848, total_deaths 176 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2022, month 11, total_cases 8848, total_deaths 176 } };
INSERT CountryCovid RELATION { TUPLE { country 'GNB', year 2022, month 12, total_cases 8947, total_deaths 176 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2020, month 3, total_cases 12, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2020, month 4, total_cases 315, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2020, month 5, total_cases 1306, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2020, month 6, total_cases 2001, total_deaths 32 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2020, month 7, total_cases 4821, total_deaths 83 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2020, month 8, total_cases 4941, total_deaths 83 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2020, month 9, total_cases 5030, total_deaths 83 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2020, month 10, total_cases 5088, total_deaths 83 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2020, month 11, total_cases 5153, total_deaths 85 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2020, month 12, total_cases 5277, total_deaths 86 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2021, month 1, total_cases 5516, total_deaths 86 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2021, month 2, total_cases 6005, total_deaths 91 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2021, month 3, total_cases 6914, total_deaths 102 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2021, month 4, total_cases 7694, total_deaths 112 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2021, month 5, total_cases 8529, total_deaths 118 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2021, month 6, total_cases 8734, total_deaths 121 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2021, month 7, total_cases 8880, total_deaths 123 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2021, month 8, total_cases 9477, total_deaths 126 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2021, month 9, total_cases 12362, total_deaths 147 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2021, month 10, total_cases 13368, total_deaths 167 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2021, month 11, total_cases 13592, total_deaths 175 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2021, month 12, total_cases 13710, total_deaths 175 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2022, month 1, total_cases 15802, total_deaths 182 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2022, month 2, total_cases 15884, total_deaths 182 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2022, month 3, total_cases 16000, total_deaths 183 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2022, month 4, total_cases 16001, total_deaths 183 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2022, month 5, total_cases 15921, total_deaths 183 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2022, month 6, total_cases 16034, total_deaths 183 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2022, month 7, total_cases 16723, total_deaths 183 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2022, month 8, total_cases 16956, total_deaths 183 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2022, month 9, total_cases 17012, total_deaths 183 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2022, month 10, total_cases 17171, total_deaths 183 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2022, month 11, total_cases 17183, total_deaths 183 } };
INSERT CountryCovid RELATION { TUPLE { country 'GQ', year 2022, month 12, total_cases 17186, total_deaths 183 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2020, month 2, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2020, month 3, total_cases 1156, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2020, month 4, total_cases 2591, total_deaths 140 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2020, month 5, total_cases 2917, total_deaths 175 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2020, month 6, total_cases 3409, total_deaths 192 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2020, month 7, total_cases 4477, total_deaths 206 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2020, month 8, total_cases 10317, total_deaths 266 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2020, month 9, total_cases 18475, total_deaths 391 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2020, month 10, total_cases 39251, total_deaths 626 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2020, month 11, total_cases 105271, total_deaths 2406 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2020, month 12, total_cases 138850, total_deaths 4838 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2021, month 1, total_cases 156957, total_deaths 5796 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2021, month 2, total_cases 191100, total_deaths 6504 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2021, month 3, total_cases 263689, total_deaths 8093 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2021, month 4, total_cases 345033, total_deaths 10381 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2021, month 5, total_cases 402306, total_deaths 12095 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2021, month 6, total_cases 422456, total_deaths 12706 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2021, month 7, total_cases 493304, total_deaths 12965 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2021, month 8, total_cases 587964, total_deaths 13691 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2021, month 9, total_cases 655767, total_deaths 14828 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2021, month 10, total_cases 742170, total_deaths 15938 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2021, month 11, total_cases 938903, total_deaths 18157 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2021, month 12, total_cases 1210853, total_deaths 20790 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2022, month 1, total_cases 1940723, total_deaths 23500 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2022, month 2, total_cases 2421664, total_deaths 25860 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2022, month 3, total_cases 3030429, total_deaths 27510 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2022, month 4, total_cases 3323922, total_deaths 29153 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2022, month 5, total_cases 3453229, total_deaths 29845 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2022, month 6, total_cases 3676502, total_deaths 30232 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2022, month 7, total_cases 4349423, total_deaths 30999 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2022, month 8, total_cases 4762827, total_deaths 32552 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2022, month 9, total_cases 4920192, total_deaths 33111 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2022, month 10, total_cases 5135200, total_deaths 33574 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2022, month 11, total_cases 5404690, total_deaths 34309 } };
INSERT CountryCovid RELATION { TUPLE { country 'GR', year 2022, month 12, total_cases 5548487, total_deaths 34779 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2020, month 3, total_cases 10, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2020, month 4, total_cases 11, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2020, month 5, total_cases 13, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2020, month 6, total_cases 13, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2020, month 7, total_cases 14, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2020, month 8, total_cases 14, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2020, month 9, total_cases 14, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2020, month 10, total_cases 17, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2020, month 11, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2020, month 12, total_cases 27, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2021, month 1, total_cases 30, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2021, month 2, total_cases 30, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2021, month 3, total_cases 31, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2021, month 4, total_cases 31, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2021, month 5, total_cases 40, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2021, month 6, total_cases 50, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2021, month 7, total_cases 119, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2021, month 8, total_cases 334, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2021, month 9, total_cases 576, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2021, month 10, total_cases 799, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2021, month 11, total_cases 1456, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2021, month 12, total_cases 2611, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2022, month 1, total_cases 10707, total_deaths 5 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2022, month 2, total_cases 11725, total_deaths 18 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2022, month 3, total_cases 11971, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2022, month 4, total_cases 11971, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2022, month 5, total_cases 11971, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2022, month 6, total_cases 11971, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2022, month 7, total_cases 11971, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2022, month 8, total_cases 11971, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2022, month 9, total_cases 11971, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2022, month 10, total_cases 11971, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2022, month 11, total_cases 11971, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'GROX', year 2022, month 12, total_cases 11971, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2020, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2020, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2020, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2020, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2020, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2020, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2020, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2020, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2020, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2021, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2021, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2021, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2021, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2021, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2021, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2021, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2021, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2021, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2021, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2021, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2021, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2022, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2022, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2022, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2022, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2022, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUAM', year 2022, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2020, month 3, total_cases 20, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2020, month 4, total_cases 82, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2020, month 5, total_cases 153, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2020, month 6, total_cases 245, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2020, month 7, total_cases 413, total_deaths 20 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2020, month 8, total_cases 1306, total_deaths 39 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2020, month 9, total_cases 2894, total_deaths 80 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2020, month 10, total_cases 4162, total_deaths 124 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2020, month 11, total_cases 5406, total_deaths 151 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2020, month 12, total_cases 6332, total_deaths 164 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2021, month 1, total_cases 7641, total_deaths 176 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2021, month 2, total_cases 8585, total_deaths 195 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2021, month 3, total_cases 10249, total_deaths 231 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2021, month 4, total_cases 13283, total_deaths 296 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2021, month 5, total_cases 16952, total_deaths 389 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2021, month 6, total_cases 20055, total_deaths 469 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2021, month 7, total_cases 22523, total_deaths 541 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2021, month 8, total_cases 25548, total_deaths 622 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2021, month 9, total_cases 31827, total_deaths 786 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2021, month 10, total_cases 35548, total_deaths 913 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2021, month 11, total_cases 37874, total_deaths 994 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2021, month 12, total_cases 39573, total_deaths 1054 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2022, month 1, total_cases 59889, total_deaths 1168 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2022, month 2, total_cases 62921, total_deaths 1220 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2022, month 3, total_cases 63253, total_deaths 1226 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2022, month 4, total_cases 63473, total_deaths 1228 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2022, month 5, total_cases 64763, total_deaths 1234 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2022, month 6, total_cases 67395, total_deaths 1254 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2022, month 7, total_cases 69807, total_deaths 1271 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2022, month 8, total_cases 71035, total_deaths 1278 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2022, month 9, total_cases 71340, total_deaths 1281 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2022, month 10, total_cases 71437, total_deaths 1281 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2022, month 11, total_cases 71620, total_deaths 1285 } };
INSERT CountryCovid RELATION { TUPLE { country 'GUY', year 2022, month 12, total_cases 72163, total_deaths 1286 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2020, month 4, total_cases 2775, total_deaths 312 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2020, month 5, total_cases 3876, total_deaths 526 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2020, month 6, total_cases 4155, total_deaths 585 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2020, month 7, total_cases 4505, total_deaths 596 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2020, month 8, total_cases 6139, total_deaths 615 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2020, month 9, total_cases 26461, total_deaths 765 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2020, month 10, total_cases 75321, total_deaths 1750 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2020, month 11, total_cases 217122, total_deaths 4823 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2020, month 12, total_cases 322514, total_deaths 9537 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2021, month 1, total_cases 367586, total_deaths 12524 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2021, month 2, total_cases 428599, total_deaths 14974 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2021, month 3, total_cases 652433, total_deaths 20737 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2021, month 4, total_cases 779348, total_deaths 27540 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2021, month 5, total_cases 804538, total_deaths 29733 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2021, month 6, total_cases 808128, total_deaths 29992 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2021, month 7, total_cases 809491, total_deaths 30026 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2021, month 8, total_cases 812337, total_deaths 30058 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2021, month 9, total_cases 822705, total_deaths 30190 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2021, month 10, total_cases 863419, total_deaths 30729 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2021, month 11, total_cases 1103108, total_deaths 34521 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2021, month 12, total_cases 1256415, total_deaths 39186 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2022, month 1, total_cases 1553405, total_deaths 41405 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2022, month 2, total_cases 1787544, total_deaths 43949 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2022, month 3, total_cases 1851871, total_deaths 45470 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2022, month 4, total_cases 1901017, total_deaths 46201 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2022, month 5, total_cases 1917777, total_deaths 46507 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2022, month 6, total_cases 1928125, total_deaths 46647 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2022, month 7, total_cases 1965481, total_deaths 46790 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2022, month 8, total_cases 2048547, total_deaths 47291 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2022, month 9, total_cases 2094142, total_deaths 47503 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2022, month 10, total_cases 2141513, total_deaths 47938 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2022, month 11, total_cases 2166352, total_deaths 48287 } };
INSERT CountryCovid RELATION { TUPLE { country 'H', year 2022, month 12, total_cases 2185816, total_deaths 48495 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2020, month 3, total_cases 141, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2020, month 4, total_cases 771, total_deaths 71 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2020, month 5, total_cases 5202, total_deaths 212 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2020, month 6, total_cases 19558, total_deaths 497 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2020, month 7, total_cases 42014, total_deaths 1337 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2020, month 8, total_cases 61014, total_deaths 1873 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2020, month 9, total_cases 76900, total_deaths 2353 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2020, month 10, total_cases 96888, total_deaths 2669 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2020, month 11, total_cases 108253, total_deaths 2918 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2020, month 12, total_cases 121827, total_deaths 3130 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2021, month 1, total_cases 147843, total_deaths 3610 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2021, month 2, total_cases 170304, total_deaths 4151 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2021, month 3, total_cases 189043, total_deaths 4605 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2021, month 4, total_cases 212333, total_deaths 5281 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2021, month 5, total_cases 238227, total_deaths 6353 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2021, month 6, total_cases 262760, total_deaths 7005 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2021, month 7, total_cases 297111, total_deaths 7834 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2021, month 8, total_cases 338757, total_deaths 8850 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2021, month 9, total_cases 365994, total_deaths 9777 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2021, month 10, total_cases 375381, total_deaths 10239 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2021, month 11, total_cases 377859, total_deaths 10402 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2021, month 12, total_cases 379402, total_deaths 10433 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2022, month 1, total_cases 391874, total_deaths 10512 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2022, month 2, total_cases 411212, total_deaths 10720 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2022, month 3, total_cases 421062, total_deaths 10971 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2022, month 4, total_cases 423179, total_deaths 10893 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2022, month 5, total_cases 425371, total_deaths 10899 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2022, month 6, total_cases 427355, total_deaths 10906 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2022, month 7, total_cases 439901, total_deaths 10932 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2022, month 8, total_cases 453443, total_deaths 10972 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2022, month 9, total_cases 456391, total_deaths 10993 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2022, month 10, total_cases 456988, total_deaths 11037 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2022, month 11, total_cases 458023, total_deaths 11043 } };
INSERT CountryCovid RELATION { TUPLE { country 'HCA', year 2022, month 12, total_cases 465915, total_deaths 11071 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2020, month 9, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2020, month 10, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2020, month 11, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2020, month 12, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2021, month 1, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2021, month 2, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2021, month 3, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2021, month 4, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2021, month 5, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2021, month 6, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2021, month 7, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2021, month 8, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2021, month 9, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2021, month 10, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2021, month 11, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2021, month 12, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2022, month 1, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2022, month 2, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2022, month 3, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2022, month 4, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2022, month 5, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2022, month 6, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2022, month 7, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2022, month 8, total_cases 7, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2022, month 9, total_cases 1521, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2022, month 10, total_cases 2045, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2022, month 11, total_cases 2162, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HELX', year 2022, month 12, total_cases 2166, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2020, month 1, total_cases 12, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2020, month 2, total_cases 95, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2020, month 3, total_cases 680, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2020, month 4, total_cases 1037, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2020, month 5, total_cases 1084, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2020, month 6, total_cases 1205, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2020, month 7, total_cases 3272, total_deaths 27 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2020, month 8, total_cases 4810, total_deaths 89 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2020, month 9, total_cases 5087, total_deaths 105 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2020, month 10, total_cases 5323, total_deaths 105 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2020, month 11, total_cases 6314, total_deaths 109 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2020, month 12, total_cases 8846, total_deaths 148 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2021, month 1, total_cases 10452, total_deaths 181 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2021, month 2, total_cases 11005, total_deaths 199 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2021, month 3, total_cases 11467, total_deaths 205 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2021, month 4, total_cases 11774, total_deaths 209 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2021, month 5, total_cases 11841, total_deaths 210 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2021, month 6, total_cases 11923, total_deaths 211 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2021, month 7, total_cases 11984, total_deaths 212 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2021, month 8, total_cases 12112, total_deaths 212 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2021, month 9, total_cases 12217, total_deaths 213 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2021, month 10, total_cases 12346, total_deaths 213 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2021, month 11, total_cases 12436, total_deaths 213 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2021, month 12, total_cases 12649, total_deaths 213 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2022, month 1, total_cases 14197, total_deaths 213 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2022, month 2, total_cases 275744, total_deaths 744 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2022, month 3, total_cases 1157415, total_deaths 7825 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2022, month 4, total_cases 1204210, total_deaths 9308 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2022, month 5, total_cases 1212699, total_deaths 9378 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2022, month 6, total_cases 1245797, total_deaths 9401 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2022, month 7, total_cases 1353994, total_deaths 9503 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2022, month 8, total_cases 1540803, total_deaths 9690 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2022, month 9, total_cases 1765404, total_deaths 10161 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2022, month 10, total_cases 1918708, total_deaths 10397 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2022, month 11, total_cases 2118245, total_deaths 10747 } };
INSERT CountryCovid RELATION { TUPLE { country 'HONX', year 2022, month 12, total_cases 2625633, total_deaths 11807 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2020, month 2, total_cases 6, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2020, month 3, total_cases 867, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2020, month 4, total_cases 2076, total_deaths 69 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2020, month 5, total_cases 2246, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2020, month 6, total_cases 2777, total_deaths 107 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2020, month 7, total_cases 5139, total_deaths 145 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2020, month 8, total_cases 10269, total_deaths 186 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2020, month 9, total_cases 16593, total_deaths 280 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2020, month 10, total_cases 49316, total_deaths 546 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2020, month 11, total_cases 128442, total_deaths 1786 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2020, month 12, total_cases 210837, total_deaths 3920 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2021, month 1, total_cases 232426, total_deaths 5027 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2021, month 2, total_cases 242973, total_deaths 5526 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2021, month 3, total_cases 271632, total_deaths 5947 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2021, month 4, total_cases 332183, total_deaths 7081 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2021, month 5, total_cases 356181, total_deaths 8026 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2021, month 6, total_cases 359872, total_deaths 8206 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2021, month 7, total_cases 363615, total_deaths 8259 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2021, month 8, total_cases 373998, total_deaths 8334 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2021, month 9, total_cases 404790, total_deaths 8640 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2021, month 10, total_cases 470348, total_deaths 9220 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2021, month 11, total_cases 608205, total_deaths 10899 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2021, month 12, total_cases 715245, total_deaths 12538 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2022, month 1, total_cases 937167, total_deaths 13827 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2022, month 2, total_cases 1054794, total_deaths 15069 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2022, month 3, total_cases 1099176, total_deaths 15563 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2022, month 4, total_cases 1122459, total_deaths 15828 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2022, month 5, total_cases 1136500, total_deaths 15987 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2022, month 6, total_cases 1148528, total_deaths 16065 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2022, month 7, total_cases 1186739, total_deaths 16313 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2022, month 8, total_cases 1213658, total_deaths 16702 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2022, month 9, total_cases 1232379, total_deaths 16908 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2022, month 10, total_cases 1246947, total_deaths 17142 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2022, month 11, total_cases 1253761, total_deaths 17316 } };
INSERT CountryCovid RELATION { TUPLE { country 'HR', year 2022, month 12, total_cases 1263901, total_deaths 17596 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2020, month 1, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2020, month 2, total_cases 1128, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2020, month 3, total_cases 105792, total_deaths 12428 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2020, month 4, total_cases 205463, total_deaths 27967 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2020, month 5, total_cases 232997, total_deaths 33415 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2020, month 6, total_cases 240578, total_deaths 34767 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2020, month 7, total_cases 247537, total_deaths 35141 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2020, month 8, total_cases 269214, total_deaths 35483 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2020, month 9, total_cases 314861, total_deaths 35894 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2020, month 10, total_cases 679430, total_deaths 38618 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2020, month 11, total_cases 1601554, total_deaths 55576 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2020, month 12, total_cases 2107166, total_deaths 74159 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2021, month 1, total_cases 2553032, total_deaths 88516 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2021, month 2, total_cases 2925265, total_deaths 97699 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2021, month 3, total_cases 3584899, total_deaths 109346 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2021, month 4, total_cases 4022653, total_deaths 120807 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2021, month 5, total_cases 4217821, total_deaths 126128 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2021, month 6, total_cases 4259909, total_deaths 127566 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2021, month 7, total_cases 4350028, total_deaths 128063 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2021, month 8, total_cases 4539991, total_deaths 129221 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2021, month 9, total_cases 4672355, total_deaths 130921 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2021, month 10, total_cases 4771965, total_deaths 132100 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2021, month 11, total_cases 5028547, total_deaths 133828 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2021, month 12, total_cases 6125683, total_deaths 137402 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2022, month 1, total_cases 10983116, total_deaths 146498 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2022, month 2, total_cases 12782836, total_deaths 154767 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2022, month 3, total_cases 14642354, total_deaths 159383 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2022, month 4, total_cases 16463200, total_deaths 163507 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2022, month 5, total_cases 17421410, total_deaths 166697 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2022, month 6, total_cases 18523111, total_deaths 168353 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2022, month 7, total_cases 21040025, total_deaths 172086 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2022, month 8, total_cases 21867757, total_deaths 175595 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2022, month 9, total_cases 22467278, total_deaths 177092 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2022, month 10, total_cases 23531023, total_deaths 179101 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2022, month 11, total_cases 24260660, total_deaths 181098 } };
INSERT CountryCovid RELATION { TUPLE { country 'I', year 2022, month 12, total_cases 25143705, total_deaths 184642 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2020, month 3, total_cases 5717, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2020, month 4, total_cases 15896, total_deaths 225 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2020, month 5, total_cases 17079, total_deaths 287 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2020, month 6, total_cases 25438, total_deaths 327 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2020, month 7, total_cases 71734, total_deaths 564 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2020, month 8, total_cases 116906, total_deaths 953 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2020, month 9, total_cases 247411, total_deaths 1604 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2020, month 10, total_cases 314349, total_deaths 2561 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2020, month 11, total_cases 337191, total_deaths 2872 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2020, month 12, total_cases 423262, total_deaths 3325 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2021, month 1, total_cases 643435, total_deaths 4796 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2021, month 2, total_cases 775807, total_deaths 5752 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2021, month 3, total_cases 833105, total_deaths 6209 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2021, month 4, total_cases 838481, total_deaths 6363 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2021, month 5, total_cases 839475, total_deaths 6412 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2021, month 6, total_cases 841777, total_deaths 6430 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2021, month 7, total_cases 874018, total_deaths 6473 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2021, month 8, total_cases 1066352, total_deaths 7043 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2021, month 9, total_cases 1282218, total_deaths 7761 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2021, month 10, total_cases 1327458, total_deaths 8100 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2021, month 11, total_cases 1343660, total_deaths 8196 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2021, month 12, total_cases 1383932, total_deaths 8243 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2022, month 1, total_cases 2900569, total_deaths 8805 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2022, month 2, total_cases 3634503, total_deaths 10198 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2022, month 3, total_cases 3918225, total_deaths 10485 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2022, month 4, total_cases 4076104, total_deaths 10695 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2022, month 5, total_cases 4138515, total_deaths 10852 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2022, month 6, total_cases 4353033, total_deaths 10958 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2022, month 7, total_cases 4582056, total_deaths 11377 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2022, month 8, total_cases 4633417, total_deaths 11620 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2022, month 9, total_cases 4662570, total_deaths 11698 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2022, month 10, total_cases 4684451, total_deaths 11767 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2022, month 11, total_cases 4722410, total_deaths 11863 } };
INSERT CountryCovid RELATION { TUPLE { country 'IL', year 2022, month 12, total_cases 4763676, total_deaths 12037 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2020, month 1, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2020, month 2, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2020, month 3, total_cases 1397, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2020, month 4, total_cases 34863, total_deaths 1154 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2020, month 5, total_cases 190609, total_deaths 5408 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2020, month 6, total_cases 585481, total_deaths 17400 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2020, month 7, total_cases 1695988, total_deaths 36511 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2020, month 8, total_cases 3691166, total_deaths 65288 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2020, month 9, total_cases 6312584, total_deaths 98678 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2020, month 10, total_cases 8184082, total_deaths 122111 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2020, month 11, total_cases 9462809, total_deaths 137621 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2020, month 12, total_cases 10286709, total_deaths 148994 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2021, month 1, total_cases 10757610, total_deaths 154392 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2021, month 2, total_cases 11112241, total_deaths 157157 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2021, month 3, total_cases 12221665, total_deaths 162927 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2021, month 4, total_cases 19164969, total_deaths 211853 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2021, month 5, total_cases 28175044, total_deaths 331895 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2021, month 6, total_cases 30411634, total_deaths 399459 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2021, month 7, total_cases 31655824, total_deaths 424351 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2021, month 8, total_cases 32810845, total_deaths 439020 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2021, month 9, total_cases 33766707, total_deaths 448339 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2021, month 10, total_cases 34285814, total_deaths 458437 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2021, month 11, total_cases 34596776, total_deaths 469247 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2021, month 12, total_cases 34861579, total_deaths 481486 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2022, month 1, total_cases 41469499, total_deaths 496242 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2022, month 2, total_cases 42931045, total_deaths 514023 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2022, month 3, total_cases 43025775, total_deaths 521181 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2022, month 4, total_cases 43079188, total_deaths 523843 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2022, month 5, total_cases 43160832, total_deaths 524636 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2022, month 6, total_cases 43469234, total_deaths 525139 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2022, month 7, total_cases 44036275, total_deaths 526396 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2022, month 8, total_cases 44436339, total_deaths 527911 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2022, month 9, total_cases 44591112, total_deaths 528655 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2022, month 10, total_cases 44654638, total_deaths 529077 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2022, month 11, total_cases 44673863, total_deaths 530622 } };
INSERT CountryCovid RELATION { TUPLE { country 'IND', year 2022, month 12, total_cases 44679873, total_deaths 530705 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2020, month 2, total_cases 593, total_deaths 43 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2020, month 3, total_cases 44605, total_deaths 2898 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2020, month 4, total_cases 94640, total_deaths 6028 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2020, month 5, total_cases 151466, total_deaths 7797 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2020, month 6, total_cases 227662, total_deaths 10817 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2020, month 7, total_cases 304204, total_deaths 16766 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2020, month 8, total_cases 375212, total_deaths 21571 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2020, month 9, total_cases 457219, total_deaths 26169 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2020, month 10, total_cases 612772, total_deaths 34864 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2020, month 11, total_cases 962070, total_deaths 48246 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2020, month 12, total_cases 1225142, total_deaths 55223 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2021, month 1, total_cases 1417999, total_deaths 57959 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2021, month 2, total_cases 1631169, total_deaths 60073 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2021, month 3, total_cases 1885564, total_deaths 62665 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2021, month 4, total_cases 2499077, total_deaths 71758 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2021, month 5, total_cases 2913136, total_deaths 80156 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2021, month 6, total_cases 3204557, total_deaths 84264 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2021, month 7, total_cases 3871008, total_deaths 90630 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2021, month 8, total_cases 4992063, total_deaths 107794 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2021, month 9, total_cases 5587040, total_deaths 120428 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2021, month 10, total_cases 5924638, total_deaths 126303 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2021, month 11, total_cases 6117445, total_deaths 129830 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2021, month 12, total_cases 6194401, total_deaths 131606 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2022, month 1, total_cases 6373174, total_deaths 132454 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2022, month 2, total_cases 7051429, total_deaths 136838 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2022, month 3, total_cases 7162220, total_deaths 140204 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2022, month 4, total_cases 7221653, total_deaths 141083 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2022, month 5, total_cases 7232034, total_deaths 141315 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2022, month 6, total_cases 7238126, total_deaths 141389 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2022, month 7, total_cases 7391026, total_deaths 141998 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2022, month 8, total_cases 7528961, total_deaths 143867 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2022, month 9, total_cases 7548648, total_deaths 144426 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2022, month 10, total_cases 7557650, total_deaths 144576 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2022, month 11, total_cases 7559706, total_deaths 144633 } };
INSERT CountryCovid RELATION { TUPLE { country 'IR', year 2022, month 12, total_cases 7561140, total_deaths 144685 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2020, month 3, total_cases 3235, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2020, month 4, total_cases 20612, total_deaths 1232 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2020, month 5, total_cases 24990, total_deaths 1652 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2020, month 6, total_cases 25473, total_deaths 1736 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2020, month 7, total_cases 26065, total_deaths 1764 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2020, month 8, total_cases 28811, total_deaths 1777 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2020, month 9, total_cases 36155, total_deaths 1804 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2020, month 10, total_cases 61456, total_deaths 1913 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2020, month 11, total_cases 72544, total_deaths 2053 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2020, month 12, total_cases 91779, total_deaths 2237 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2021, month 1, total_cases 196547, total_deaths 3307 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2021, month 2, total_cases 219592, total_deaths 4319 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2021, month 3, total_cases 235854, total_deaths 4687 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2021, month 4, total_cases 248870, total_deaths 4903 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2021, month 5, total_cases 262043, total_deaths 4941 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2021, month 6, total_cases 271931, total_deaths 4998 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2021, month 7, total_cases 300976, total_deaths 5035 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2021, month 8, total_cases 352447, total_deaths 5092 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2021, month 9, total_cases 389932, total_deaths 5249 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2021, month 10, total_cases 445594, total_deaths 5436 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2021, month 11, total_cases 570115, total_deaths 5652 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2021, month 12, total_cases 788559, total_deaths 5912 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2022, month 1, total_cases 1183008, total_deaths 6136 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2022, month 2, total_cases 1300422, total_deaths 6497 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2022, month 3, total_cases 1459425, total_deaths 6753 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2022, month 4, total_cases 1517112, total_deaths 7087 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2022, month 5, total_cases 1561632, total_deaths 7304 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2022, month 6, total_cases 1600614, total_deaths 7499 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2022, month 7, total_cases 1644166, total_deaths 7675 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2022, month 8, total_cases 1656956, total_deaths 7839 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2022, month 9, total_cases 1663653, total_deaths 7942 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2022, month 10, total_cases 1672319, total_deaths 8043 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2022, month 11, total_cases 1680548, total_deaths 8197 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRL', year 2022, month 12, total_cases 1687668, total_deaths 8293 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2020, month 2, total_cases 13, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2020, month 3, total_cases 694, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2020, month 4, total_cases 2085, total_deaths 93 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2020, month 5, total_cases 6439, total_deaths 205 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2020, month 6, total_cases 49109, total_deaths 1943 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2020, month 7, total_cases 124609, total_deaths 4741 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2020, month 8, total_cases 234934, total_deaths 7042 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2020, month 9, total_cases 362981, total_deaths 9181 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2020, month 10, total_cases 472630, total_deaths 10910 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2020, month 11, total_cases 552549, total_deaths 12258 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2020, month 12, total_cases 595291, total_deaths 12813 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2021, month 1, total_cases 619636, total_deaths 13047 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2021, month 2, total_cases 695489, total_deaths 13406 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2021, month 3, total_cases 850924, total_deaths 14323 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2021, month 4, total_cases 1065199, total_deaths 15465 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2021, month 5, total_cases 1201352, total_deaths 16375 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2021, month 6, total_cases 1345904, total_deaths 17186 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2021, month 7, total_cases 1626599, total_deaths 18657 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2021, month 8, total_cases 1888150, total_deaths 20830 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2021, month 9, total_cases 2003303, total_deaths 22260 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2021, month 10, total_cases 2055248, total_deaths 23170 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2021, month 11, total_cases 2081172, total_deaths 23820 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2021, month 12, total_cases 2093740, total_deaths 24158 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2022, month 1, total_cases 2210582, total_deaths 24389 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2022, month 2, total_cases 2302793, total_deaths 24989 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2022, month 3, total_cases 2319550, total_deaths 25164 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2022, month 4, total_cases 2325092, total_deaths 25211 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2022, month 5, total_cases 2328154, total_deaths 25219 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2022, month 6, total_cases 2348662, total_deaths 25241 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2022, month 7, total_cases 2444798, total_deaths 25315 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2022, month 8, total_cases 2457871, total_deaths 25346 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2022, month 9, total_cases 2459982, total_deaths 25355 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2022, month 10, total_cases 2461484, total_deaths 25358 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2022, month 11, total_cases 2463724, total_deaths 25364 } };
INSERT CountryCovid RELATION { TUPLE { country 'IRQ', year 2022, month 12, total_cases 2465107, total_deaths 25373 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2020, month 3, total_cases 1135, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2020, month 4, total_cases 1797, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2020, month 5, total_cases 1806, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2020, month 6, total_cases 1824, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2020, month 7, total_cases 1885, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2020, month 8, total_cases 2107, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2020, month 9, total_cases 2728, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2020, month 10, total_cases 4865, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2020, month 11, total_cases 5392, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2020, month 12, total_cases 5754, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2021, month 1, total_cases 6002, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2021, month 2, total_cases 6049, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2021, month 3, total_cases 6205, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2021, month 4, total_cases 6472, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2021, month 5, total_cases 6576, total_deaths 30 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2021, month 6, total_cases 6649, total_deaths 30 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2021, month 7, total_cases 7959, total_deaths 30 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2021, month 8, total_cases 10789, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2021, month 9, total_cases 11801, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2021, month 10, total_cases 13492, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2021, month 11, total_cases 17894, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2021, month 12, total_cases 27059, total_deaths 37 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2022, month 1, total_cases 67673, total_deaths 46 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2022, month 2, total_cases 129844, total_deaths 62 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2022, month 3, total_cases 181391, total_deaths 101 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2022, month 4, total_cases 185579, total_deaths 119 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2022, month 5, total_cases 188291, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2022, month 6, total_cases 193987, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2022, month 7, total_cases 202157, total_deaths 179 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2022, month 8, total_cases 204717, total_deaths 213 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2022, month 9, total_cases 205637, total_deaths 213 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2022, month 10, total_cases 206356, total_deaths 213 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2022, month 11, total_cases 207101, total_deaths 219 } };
INSERT CountryCovid RELATION { TUPLE { country 'IS', year 2022, month 12, total_cases 207974, total_deaths 229 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2020, month 1, total_cases 15, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2020, month 2, total_cases 245, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2020, month 3, total_cases 2255, total_deaths 67 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2020, month 4, total_cases 14284, total_deaths 481 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2020, month 5, total_cases 16741, total_deaths 898 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2020, month 6, total_cases 18605, total_deaths 974 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2020, month 7, total_cases 36256, total_deaths 1013 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2020, month 8, total_cases 68385, total_deaths 1300 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2020, month 9, total_cases 83579, total_deaths 1575 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2020, month 10, total_cases 101323, total_deaths 1770 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2020, month 11, total_cases 148824, total_deaths 2152 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2020, month 12, total_cases 235749, total_deaths 3492 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2021, month 1, total_cases 390740, total_deaths 5753 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2021, month 2, total_cases 432636, total_deaths 7897 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2021, month 3, total_cases 475086, total_deaths 9176 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2021, month 4, total_cases 592771, total_deaths 10243 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2021, month 5, total_cases 746487, total_deaths 13059 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2021, month 6, total_cases 799583, total_deaths 14784 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2021, month 7, total_cases 926604, total_deaths 15193 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2021, month 8, total_cases 1494372, total_deaths 16067 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2021, month 9, total_cases 1705072, total_deaths 17651 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2021, month 10, total_cases 1722343, total_deaths 18267 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2021, month 11, total_cases 1726798, total_deaths 18360 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2021, month 12, total_cases 1733307, total_deaths 18392 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2022, month 1, total_cases 2743726, total_deaths 18815 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2022, month 2, total_cases 5012908, total_deaths 23670 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2022, month 3, total_cases 6565019, total_deaths 28124 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2022, month 4, total_cases 7883149, total_deaths 29571 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2022, month 5, total_cases 8853455, total_deaths 30623 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2022, month 6, total_cases 9332302, total_deaths 31281 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2022, month 7, total_cases 12795382, total_deaths 32613 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2022, month 8, total_cases 18966848, total_deaths 39942 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2022, month 9, total_cases 21293921, total_deaths 44918 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2022, month 10, total_cases 22324592, total_deaths 46765 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2022, month 11, total_cases 24815308, total_deaths 49652 } };
INSERT CountryCovid RELATION { TUPLE { country 'J', year 2022, month 12, total_cases 29234677, total_deaths 57274 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2020, month 3, total_cases 36, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2020, month 4, total_cases 422, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2020, month 5, total_cases 586, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2020, month 6, total_cases 702, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2020, month 7, total_cases 878, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2020, month 8, total_cases 2459, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2020, month 9, total_cases 6482, total_deaths 107 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2020, month 10, total_cases 9094, total_deaths 206 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2020, month 11, total_cases 10763, total_deaths 257 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2020, month 12, total_cases 12827, total_deaths 302 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2021, month 1, total_cases 15653, total_deaths 350 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2021, month 2, total_cases 23263, total_deaths 422 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2021, month 3, total_cases 39237, total_deaths 596 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2021, month 4, total_cases 45578, total_deaths 778 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2021, month 5, total_cases 48557, total_deaths 948 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2021, month 6, total_cases 50124, total_deaths 1075 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2021, month 7, total_cases 52895, total_deaths 1190 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2021, month 8, total_cases 68131, total_deaths 1518 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2021, month 9, total_cases 83737, total_deaths 1869 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2021, month 10, total_cases 89014, total_deaths 2236 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2021, month 11, total_cases 91249, total_deaths 2392 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2021, month 12, total_cases 93920, total_deaths 2473 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2022, month 1, total_cases 124512, total_deaths 2658 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2022, month 2, total_cases 127986, total_deaths 2813 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2022, month 3, total_cases 128757, total_deaths 2888 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2022, month 4, total_cases 129978, total_deaths 2962 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2022, month 5, total_cases 137266, total_deaths 3056 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2022, month 6, total_cases 142804, total_deaths 3128 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2022, month 7, total_cases 146372, total_deaths 3194 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2022, month 8, total_cases 149798, total_deaths 3254 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2022, month 9, total_cases 151829, total_deaths 3317 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2022, month 10, total_cases 151931, total_deaths 3320 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2022, month 11, total_cases 152517, total_deaths 3399 } };
INSERT CountryCovid RELATION { TUPLE { country 'JA', year 2022, month 12, total_cases 152758, total_deaths 3461 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2020, month 3, total_cases 274, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2020, month 4, total_cases 453, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2020, month 5, total_cases 739, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2020, month 6, total_cases 1132, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2020, month 7, total_cases 1223, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2020, month 8, total_cases 2034, total_deaths 15 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2020, month 9, total_cases 11825, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2020, month 10, total_cases 72607, total_deaths 829 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2020, month 11, total_cases 219430, total_deaths 2751 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2020, month 12, total_cases 294494, total_deaths 3834 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2021, month 1, total_cases 326855, total_deaths 4316 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2021, month 2, total_cases 391090, total_deaths 4701 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2021, month 3, total_cases 611577, total_deaths 6858 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2021, month 4, total_cases 711373, total_deaths 8836 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2021, month 5, total_cases 736534, total_deaths 9462 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2021, month 6, total_cases 751404, total_deaths 9750 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2021, month 7, total_cases 770712, total_deaths 10032 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2021, month 8, total_cases 797126, total_deaths 10411 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2021, month 9, total_cases 823919, total_deaths 10718 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2021, month 10, total_cases 862541, total_deaths 11038 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2021, month 11, total_cases 953943, total_deaths 11608 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2021, month 12, total_cases 1063405, total_deaths 12653 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2022, month 1, total_cases 1225309, total_deaths 13217 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2022, month 2, total_cases 1631708, total_deaths 13835 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2022, month 3, total_cases 1692485, total_deaths 14031 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2022, month 4, total_cases 1695745, total_deaths 14064 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2022, month 5, total_cases 1696937, total_deaths 14066 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2022, month 6, total_cases 1699197, total_deaths 14068 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2022, month 7, total_cases 1709879, total_deaths 14074 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2022, month 8, total_cases 1735495, total_deaths 14110 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2022, month 9, total_cases 1746997, total_deaths 14122 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2022, month 10, total_cases 1746997, total_deaths 14122 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2022, month 11, total_cases 1746997, total_deaths 14122 } };
INSERT CountryCovid RELATION { TUPLE { country 'JOR', year 2022, month 12, total_cases 1746997, total_deaths 14122 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2020, month 1, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2020, month 3, total_cases 109, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2020, month 4, total_cases 122, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2020, month 5, total_cases 125, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2020, month 6, total_cases 141, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2020, month 7, total_cases 239, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2020, month 8, total_cases 274, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2020, month 9, total_cases 277, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2020, month 10, total_cases 291, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2020, month 11, total_cases 326, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2020, month 12, total_cases 378, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2021, month 1, total_cases 466, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2021, month 2, total_cases 820, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2021, month 3, total_cases 2440, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2021, month 4, total_cases 13402, total_deaths 93 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2021, month 5, total_cases 30094, total_deaths 214 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2021, month 6, total_cases 50385, total_deaths 602 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2021, month 7, total_cases 77243, total_deaths 1397 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2021, month 8, total_cases 93055, total_deaths 1903 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2021, month 9, total_cases 112651, total_deaths 2319 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2021, month 10, total_cases 118522, total_deaths 2788 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2021, month 11, total_cases 120134, total_deaths 2940 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2021, month 12, total_cases 120493, total_deaths 3012 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2022, month 1, total_cases 121355, total_deaths 3015 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2022, month 2, total_cases 130276, total_deaths 3032 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2022, month 3, total_cases 135625, total_deaths 3054 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2022, month 4, total_cases 136251, total_deaths 3056 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2022, month 5, total_cases 136262, total_deaths 3056 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2022, month 6, total_cases 136279, total_deaths 3056 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2022, month 7, total_cases 136789, total_deaths 3056 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2022, month 8, total_cases 137620, total_deaths 3056 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2022, month 9, total_cases 137877, total_deaths 3056 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2022, month 10, total_cases 137991, total_deaths 3056 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2022, month 11, total_cases 138099, total_deaths 3056 } };
INSERT CountryCovid RELATION { TUPLE { country 'K', year 2022, month 12, total_cases 138584, total_deaths 3056 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2020, month 3, total_cases 343, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2020, month 4, total_cases 3402, total_deaths 25 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2020, month 5, total_cases 10858, total_deaths 41 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2020, month 6, total_cases 22308, total_deaths 188 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2020, month 7, total_cases 90367, total_deaths 793 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2020, month 8, total_cases 130673, total_deaths 1878 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2020, month 9, total_cases 140707, total_deaths 2075 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2020, month 10, total_cases 149699, total_deaths 2219 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2020, month 11, total_cases 174563, total_deaths 2477 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2020, month 12, total_cases 201196, total_deaths 2749 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2021, month 1, total_cases 235844, total_deaths 3126 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2021, month 2, total_cases 262715, total_deaths 3389 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2021, month 3, total_cases 297472, total_deaths 5912 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2021, month 4, total_cases 375539, total_deaths 6561 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2021, month 5, total_cases 442935, total_deaths 7321 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2021, month 6, total_cases 482686, total_deaths 7759 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2021, month 7, total_cases 641388, total_deaths 9077 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2021, month 8, total_cases 863581, total_deaths 12936 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2021, month 9, total_cases 962842, total_deaths 15907 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2021, month 10, total_cases 1020264, total_deaths 17078 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2021, month 11, total_cases 1054972, total_deaths 17845 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2021, month 12, total_cases 1072518, total_deaths 18211 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2022, month 1, total_cases 1325293, total_deaths 18508 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2022, month 2, total_cases 1390670, total_deaths 18937 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2022, month 3, total_cases 1393802, total_deaths 19011 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2022, month 4, total_cases 1394493, total_deaths 19013 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2022, month 5, total_cases 1394867, total_deaths 19015 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2022, month 6, total_cases 1395849, total_deaths 19018 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2022, month 7, total_cases 1439725, total_deaths 19022 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2022, month 8, total_cases 1478394, total_deaths 19041 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2022, month 9, total_cases 1483609, total_deaths 19050 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2022, month 10, total_cases 1484932, total_deaths 19052 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2022, month 11, total_cases 1485635, total_deaths 19053 } };
INSERT CountryCovid RELATION { TUPLE { country 'KAZ', year 2022, month 12, total_cases 1488306, total_deaths 19057 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2020, month 3, total_cases 107, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2020, month 4, total_cases 746, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2020, month 5, total_cases 1748, total_deaths 16 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2020, month 6, total_cases 5506, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2020, month 7, total_cases 35805, total_deaths 1378 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2020, month 8, total_cases 43898, total_deaths 1498 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2020, month 9, total_cases 46669, total_deaths 1064 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2020, month 10, total_cases 58878, total_deaths 1144 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2020, month 11, total_cases 73178, total_deaths 1275 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2020, month 12, total_cases 81034, total_deaths 1355 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2021, month 1, total_cases 84588, total_deaths 1412 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2021, month 2, total_cases 86251, total_deaths 1466 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2021, month 3, total_cases 88538, total_deaths 1500 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2021, month 4, total_cases 95275, total_deaths 1604 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2021, month 5, total_cases 104729, total_deaths 1808 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2021, month 6, total_cases 125003, total_deaths 2000 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2021, month 7, total_cases 162892, total_deaths 2325 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2021, month 8, total_cases 175734, total_deaths 2528 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2021, month 9, total_cases 178532, total_deaths 2607 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2021, month 10, total_cases 181259, total_deaths 2671 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2021, month 11, total_cases 183351, total_deaths 2746 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2021, month 12, total_cases 184689, total_deaths 2802 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2022, month 1, total_cases 198316, total_deaths 2880 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2022, month 2, total_cases 200527, total_deaths 2958 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2022, month 3, total_cases 200935, total_deaths 2988 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2022, month 4, total_cases 200992, total_deaths 2991 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2022, month 5, total_cases 200993, total_deaths 2991 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2022, month 6, total_cases 201053, total_deaths 2991 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2022, month 7, total_cases 202685, total_deaths 2991 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2022, month 8, total_cases 205716, total_deaths 2991 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2022, month 9, total_cases 206083, total_deaths 2991 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2022, month 10, total_cases 206452, total_deaths 2991 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2022, month 11, total_cases 206530, total_deaths 2991 } };
INSERT CountryCovid RELATION { TUPLE { country 'KGZ', year 2022, month 12, total_cases 206557, total_deaths 2991 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2021, month 5, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2021, month 6, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2021, month 7, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2021, month 8, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2021, month 9, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2021, month 10, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2021, month 11, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2021, month 12, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2022, month 1, total_cases 460, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2022, month 2, total_cases 2914, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2022, month 3, total_cases 3066, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2022, month 4, total_cases 3081, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2022, month 5, total_cases 3098, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2022, month 6, total_cases 3236, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2022, month 7, total_cases 3430, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2022, month 8, total_cases 3430, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2022, month 9, total_cases 3430, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2022, month 10, total_cases 3430, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2022, month 11, total_cases 3430, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'KIR', year 2022, month 12, total_cases 3430, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2020, month 3, total_cases 8, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2020, month 4, total_cases 15, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2020, month 5, total_cases 15, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2020, month 6, total_cases 15, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2020, month 7, total_cases 17, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2020, month 8, total_cases 17, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2020, month 9, total_cases 19, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2020, month 10, total_cases 19, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2020, month 11, total_cases 22, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2020, month 12, total_cases 32, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2021, month 1, total_cases 37, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2021, month 2, total_cases 41, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2021, month 3, total_cases 44, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2021, month 4, total_cases 44, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2021, month 5, total_cases 68, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2021, month 6, total_cases 446, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2021, month 7, total_cases 593, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2021, month 8, total_cases 1091, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2021, month 9, total_cases 1918, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2021, month 10, total_cases 2669, total_deaths 23 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2021, month 11, total_cases 2786, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2021, month 12, total_cases 2999, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2022, month 1, total_cases 5422, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2022, month 2, total_cases 5530, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2022, month 3, total_cases 5549, total_deaths 43 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2022, month 4, total_cases 5562, total_deaths 43 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2022, month 5, total_cases 5729, total_deaths 43 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2022, month 6, total_cases 6065, total_deaths 43 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2022, month 7, total_cases 6462, total_deaths 46 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2022, month 8, total_cases 6512, total_deaths 46 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2022, month 9, total_cases 6544, total_deaths 46 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2022, month 10, total_cases 6548, total_deaths 46 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2022, month 11, total_cases 6556, total_deaths 46 } };
INSERT CountryCovid RELATION { TUPLE { country 'KN', year 2022, month 12, total_cases 6562, total_deaths 46 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2020, month 3, total_cases 106, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2020, month 4, total_cases 799, total_deaths 22 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2020, month 5, total_cases 1070, total_deaths 30 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2020, month 6, total_cases 2799, total_deaths 49 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2020, month 7, total_cases 8330, total_deaths 227 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2020, month 8, total_cases 13454, total_deaths 525 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2020, month 9, total_cases 15620, total_deaths 625 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2020, month 10, total_cases 19328, total_deaths 678 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2020, month 11, total_cases 39596, total_deaths 1016 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2020, month 12, total_cases 51144, total_deaths 1332 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2021, month 1, total_cases 60218, total_deaths 1498 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2021, month 2, total_cases 68451, total_deaths 1592 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2021, month 3, total_cases 89181, total_deaths 1866 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2021, month 4, total_cases 103638, total_deaths 2134 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2021, month 5, total_cases 107002, total_deaths 2248 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2021, month 6, total_cases 107758, total_deaths 2262 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2021, month 7, total_cases 108365, total_deaths 2269 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2021, month 8, total_cases 144986, total_deaths 2503 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2021, month 9, total_cases 160072, total_deaths 2953 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2021, month 10, total_cases 160762, total_deaths 2977 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2021, month 11, total_cases 161091, total_deaths 2984 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2021, month 12, total_cases 161484, total_deaths 2990 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2022, month 1, total_cases 205938, total_deaths 3015 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2022, month 2, total_cases 226248, total_deaths 3114 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2022, month 3, total_cases 227471, total_deaths 3134 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2022, month 4, total_cases 228073, total_deaths 3138 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2022, month 5, total_cases 228359, total_deaths 3139 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2022, month 6, total_cases 229199, total_deaths 3140 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2022, month 7, total_cases 254230, total_deaths 3171 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2022, month 8, total_cases 271476, total_deaths 3196 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2022, month 9, total_cases 272067, total_deaths 3199 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2022, month 10, total_cases 272161, total_deaths 3202 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2022, month 11, total_cases 272209, total_deaths 3202 } };
INSERT CountryCovid RELATION { TUPLE { country 'KOS', year 2022, month 12, total_cases 272283, total_deaths 3202 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2020, month 2, total_cases 45, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2020, month 3, total_cases 289, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2020, month 4, total_cases 4024, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2020, month 5, total_cases 27043, total_deaths 212 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2020, month 6, total_cases 46195, total_deaths 354 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2020, month 7, total_cases 66957, total_deaths 447 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2020, month 8, total_cases 85109, total_deaths 531 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2020, month 9, total_cases 105182, total_deaths 610 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2020, month 10, total_cases 125926, total_deaths 779 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2020, month 11, total_cases 142635, total_deaths 880 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2020, month 12, total_cases 150584, total_deaths 934 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2021, month 1, total_cases 165257, total_deaths 959 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2021, month 2, total_cases 190852, total_deaths 1083 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2021, month 3, total_cases 232103, total_deaths 1313 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2021, month 4, total_cases 273991, total_deaths 1563 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2021, month 5, total_cases 309222, total_deaths 1772 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2021, month 6, total_cases 356687, total_deaths 1969 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2021, month 7, total_cases 397831, total_deaths 2320 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2021, month 8, total_cases 409860, total_deaths 2419 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2021, month 9, total_cases 411655, total_deaths 2449 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2021, month 10, total_cases 412678, total_deaths 2461 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2021, month 11, total_cases 413362, total_deaths 2465 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2021, month 12, total_cases 417135, total_deaths 2468 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2022, month 1, total_cases 545717, total_deaths 2497 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2022, month 2, total_cases 619894, total_deaths 2538 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2022, month 3, total_cases 628978, total_deaths 2554 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2022, month 4, total_cases 631409, total_deaths 2555 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2022, month 5, total_cases 633225, total_deaths 2555 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2022, month 6, total_cases 643004, total_deaths 2555 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2022, month 7, total_cases 653730, total_deaths 2559 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2022, month 8, total_cases 657395, total_deaths 2563 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2022, month 9, total_cases 658520, total_deaths 2563 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2022, month 10, total_cases 662073, total_deaths 2568 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2022, month 11, total_cases 662672, total_deaths 2570 } };
INSERT CountryCovid RELATION { TUPLE { country 'KWT', year 2022, month 12, total_cases 662747, total_deaths 2570 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2020, month 3, total_cases 2178, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2020, month 4, total_cases 3784, total_deaths 90 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2020, month 5, total_cases 4018, total_deaths 110 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2020, month 6, total_cases 4299, total_deaths 110 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2020, month 7, total_cases 6695, total_deaths 114 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2020, month 8, total_cases 7928, total_deaths 124 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2020, month 9, total_cases 8509, total_deaths 124 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2020, month 10, total_cases 17134, total_deaths 152 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2020, month 11, total_cases 34678, total_deaths 321 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2020, month 12, total_cases 46415, total_deaths 495 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2021, month 1, total_cases 50388, total_deaths 577 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2021, month 2, total_cases 55110, total_deaths 637 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2021, month 3, total_cases 61642, total_deaths 746 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2021, month 4, total_cases 67205, total_deaths 796 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2021, month 5, total_cases 69932, total_deaths 815 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2021, month 6, total_cases 70787, total_deaths 818 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2021, month 7, total_cases 73870, total_deaths 822 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2021, month 8, total_cases 75760, total_deaths 830 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2021, month 9, total_cases 78219, total_deaths 835 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2021, month 10, total_cases 81683, total_deaths 843 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2021, month 11, total_cases 89181, total_deaths 875 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2021, month 12, total_cases 103766, total_deaths 915 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2022, month 1, total_cases 157985, total_deaths 952 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2022, month 2, total_cases 183177, total_deaths 991 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2022, month 3, total_cases 215831, total_deaths 1036 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2022, month 4, total_cases 237856, total_deaths 1064 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2022, month 5, total_cases 247935, total_deaths 1078 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2022, month 6, total_cases 263387, total_deaths 1094 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2022, month 7, total_cases 282252, total_deaths 1109 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2022, month 8, total_cases 286827, total_deaths 1123 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2022, month 9, total_cases 291758, total_deaths 1129 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2022, month 10, total_cases 302221, total_deaths 1145 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2022, month 11, total_cases 306843, total_deaths 1162 } };
INSERT CountryCovid RELATION { TUPLE { country 'L', year 2022, month 12, total_cases 311746, total_deaths 1178 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2020, month 3, total_cases 9, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2020, month 4, total_cases 19, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2020, month 5, total_cases 19, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2020, month 6, total_cases 19, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2020, month 7, total_cases 20, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2020, month 8, total_cases 22, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2020, month 9, total_cases 23, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2020, month 10, total_cases 24, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2020, month 11, total_cases 39, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2020, month 12, total_cases 41, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2021, month 1, total_cases 44, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2021, month 2, total_cases 45, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2021, month 3, total_cases 49, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2021, month 4, total_cases 757, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2021, month 5, total_cases 1912, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2021, month 6, total_cases 2121, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2021, month 7, total_cases 6299, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2021, month 8, total_cases 15015, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2021, month 9, total_cases 23846, total_deaths 18 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2021, month 10, total_cases 40271, total_deaths 65 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2021, month 11, total_cases 73738, total_deaths 170 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2021, month 12, total_cases 111060, total_deaths 372 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2022, month 1, total_cases 133853, total_deaths 547 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2022, month 2, total_cases 142743, total_deaths 621 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2022, month 3, total_cases 176898, total_deaths 665 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2022, month 4, total_cases 207469, total_deaths 744 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2022, month 5, total_cases 209989, total_deaths 756 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2022, month 6, total_cases 210292, total_deaths 757 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2022, month 7, total_cases 211239, total_deaths 757 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2022, month 8, total_cases 214039, total_deaths 757 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2022, month 9, total_cases 215860, total_deaths 758 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2022, month 10, total_cases 216243, total_deaths 758 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2022, month 11, total_cases 216744, total_deaths 758 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAO', year 2022, month 12, total_cases 217797, total_deaths 758 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2020, month 4, total_cases 61, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2020, month 5, total_cases 156, total_deaths 5 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2020, month 6, total_cases 824, total_deaths 24 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2020, month 7, total_cases 3621, total_deaths 76 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2020, month 8, total_cases 13966, total_deaths 237 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2020, month 9, total_cases 34525, total_deaths 551 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2020, month 10, total_cases 61095, total_deaths 857 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2020, month 11, total_cases 82809, total_deaths 1183 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2020, month 12, total_cases 100277, total_deaths 1478 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2021, month 1, total_cases 118631, total_deaths 1877 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2021, month 2, total_cases 133338, total_deaths 2179 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2021, month 3, total_cases 158957, total_deaths 2667 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2021, month 4, total_cases 177508, total_deaths 3029 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2021, month 5, total_cases 185776, total_deaths 3126 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2021, month 6, total_cases 193474, total_deaths 3193 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2021, month 7, total_cases 249114, total_deaths 3509 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2021, month 8, total_cases 308972, total_deaths 4247 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2021, month 9, total_cases 340084, total_deaths 4651 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2021, month 10, total_cases 357338, total_deaths 5099 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2021, month 11, total_cases 372636, total_deaths 5456 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2021, month 12, total_cases 388734, total_deaths 5710 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2022, month 1, total_cases 429666, total_deaths 6017 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2022, month 2, total_cases 494446, total_deaths 6261 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2022, month 3, total_cases 501705, total_deaths 6415 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2022, month 4, total_cases 501904, total_deaths 6430 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2022, month 5, total_cases 502016, total_deaths 6430 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2022, month 6, total_cases 502138, total_deaths 6430 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2022, month 7, total_cases 503611, total_deaths 6431 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2022, month 8, total_cases 506790, total_deaths 6437 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2022, month 9, total_cases 506994, total_deaths 6437 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2022, month 10, total_cases 507051, total_deaths 6437 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2022, month 11, total_cases 507084, total_deaths 6437 } };
INSERT CountryCovid RELATION { TUPLE { country 'LAR', year 2022, month 12, total_cases 507142, total_deaths 6437 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2020, month 3, total_cases 6, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2020, month 4, total_cases 141, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2020, month 5, total_cases 280, total_deaths 27 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2020, month 6, total_cases 770, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2020, month 7, total_cases 1181, total_deaths 73 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2020, month 8, total_cases 1303, total_deaths 82 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2020, month 9, total_cases 1339, total_deaths 82 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2020, month 10, total_cases 1426, total_deaths 82 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2020, month 11, total_cases 1598, total_deaths 83 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2020, month 12, total_cases 1800, total_deaths 83 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2021, month 1, total_cases 1939, total_deaths 84 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2021, month 2, total_cases 2010, total_deaths 85 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2021, month 3, total_cases 2053, total_deaths 85 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2021, month 4, total_cases 2099, total_deaths 85 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2021, month 5, total_cases 2179, total_deaths 86 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2021, month 6, total_cases 3900, total_deaths 127 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2021, month 7, total_cases 5404, total_deaths 148 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2021, month 8, total_cases 5594, total_deaths 245 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2021, month 9, total_cases 5915, total_deaths 286 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2021, month 10, total_cases 5812, total_deaths 287 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2021, month 11, total_cases 5824, total_deaths 287 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2021, month 12, total_cases 6278, total_deaths 287 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2022, month 1, total_cases 7272, total_deaths 290 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2022, month 2, total_cases 7384, total_deaths 294 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2022, month 3, total_cases 7400, total_deaths 294 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2022, month 4, total_cases 7434, total_deaths 294 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2022, month 5, total_cases 7456, total_deaths 294 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2022, month 6, total_cases 7497, total_deaths 294 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2022, month 7, total_cases 7538, total_deaths 294 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2022, month 8, total_cases 7883, total_deaths 294 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2022, month 9, total_cases 7961, total_deaths 294 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2022, month 10, total_cases 7996, total_deaths 294 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2022, month 11, total_cases 8022, total_deaths 294 } };
INSERT CountryCovid RELATION { TUPLE { country 'LB', year 2022, month 12, total_cases 8043, total_deaths 294 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2020, month 5, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2020, month 6, total_cases 27, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2020, month 7, total_cases 604, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2020, month 8, total_cases 1085, total_deaths 31 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2020, month 9, total_cases 1595, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2020, month 10, total_cases 1953, total_deaths 44 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2020, month 11, total_cases 2109, total_deaths 44 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2020, month 12, total_cases 3094, total_deaths 51 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2021, month 1, total_cases 8664, total_deaths 172 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2021, month 2, total_cases 10491, total_deaths 292 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2021, month 3, total_cases 10706, total_deaths 315 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2021, month 4, total_cases 10731, total_deaths 316 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2021, month 5, total_cases 10831, total_deaths 326 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2021, month 6, total_cases 11344, total_deaths 329 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2021, month 7, total_cases 12908, total_deaths 374 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2021, month 8, total_cases 14395, total_deaths 403 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2021, month 9, total_cases 14395, total_deaths 403 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2021, month 10, total_cases 21635, total_deaths 658 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2021, month 11, total_cases 21779, total_deaths 662 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2021, month 12, total_cases 28408, total_deaths 665 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2022, month 1, total_cases 32176, total_deaths 693 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2022, month 2, total_cases 32612, total_deaths 696 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2022, month 3, total_cases 32910, total_deaths 697 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2022, month 4, total_cases 33015, total_deaths 697 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2022, month 5, total_cases 33358, total_deaths 698 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2022, month 6, total_cases 33938, total_deaths 699 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2022, month 7, total_cases 34040, total_deaths 702 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2022, month 8, total_cases 34206, total_deaths 704 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2022, month 9, total_cases 34490, total_deaths 706 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2022, month 10, total_cases 34490, total_deaths 706 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2022, month 11, total_cases 34490, total_deaths 706 } };
INSERT CountryCovid RELATION { TUPLE { country 'LS', year 2022, month 12, total_cases 34490, total_deaths 706 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2020, month 3, total_cases 353, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2020, month 4, total_cases 1311, total_deaths 32 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2020, month 5, total_cases 1606, total_deaths 54 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2020, month 6, total_cases 1748, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2020, month 7, total_cases 2016, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2020, month 8, total_cases 2865, total_deaths 69 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2020, month 9, total_cases 4759, total_deaths 77 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2020, month 10, total_cases 15699, total_deaths 152 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2020, month 11, total_cases 62498, total_deaths 619 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2020, month 12, total_cases 145052, total_deaths 1800 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2021, month 1, total_cases 184448, total_deaths 2822 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2021, month 2, total_cases 199163, total_deaths 3258 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2021, month 3, total_cases 216121, total_deaths 3576 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2021, month 4, total_cases 247458, total_deaths 3931 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2021, month 5, total_cases 274758, total_deaths 4276 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2021, month 6, total_cases 279154, total_deaths 4385 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2021, month 7, total_cases 283198, total_deaths 4410 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2021, month 8, total_cases 299461, total_deaths 4561 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2021, month 9, total_cases 332553, total_deaths 4998 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2021, month 10, total_cases 410809, total_deaths 5888 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2021, month 11, total_cases 473717, total_deaths 6755 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2021, month 12, total_cases 524427, total_deaths 7397 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2022, month 1, total_cases 705158, total_deaths 7889 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2022, month 2, total_cases 965873, total_deaths 8426 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2022, month 3, total_cases 1110803, total_deaths 8885 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2022, month 4, total_cases 1149993, total_deaths 9098 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2022, month 5, total_cases 1154914, total_deaths 9146 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2022, month 6, total_cases 1161146, total_deaths 9173 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2022, month 7, total_cases 1183422, total_deaths 9208 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2022, month 8, total_cases 1218327, total_deaths 9289 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2022, month 9, total_cases 1250158, total_deaths 9320 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2022, month 10, total_cases 1268046, total_deaths 9393 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2022, month 11, total_cases 1276076, total_deaths 9434 } };
INSERT CountryCovid RELATION { TUPLE { country 'LT', year 2022, month 12, total_cases 1288374, total_deaths 9481 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2020, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2020, month 4, total_cases 858, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2020, month 5, total_cases 1066, total_deaths 24 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2020, month 6, total_cases 1118, total_deaths 30 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2020, month 7, total_cases 1231, total_deaths 32 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2020, month 8, total_cases 1396, total_deaths 34 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2020, month 9, total_cases 1824, total_deaths 37 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2020, month 10, total_cases 5894, total_deaths 71 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2020, month 11, total_cases 17075, total_deaths 206 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2020, month 12, total_cases 40904, total_deaths 635 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2021, month 1, total_cases 66241, total_deaths 1195 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2021, month 2, total_cases 86186, total_deaths 1618 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2021, month 3, total_cases 102363, total_deaths 1899 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2021, month 4, total_cases 118558, total_deaths 2131 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2021, month 5, total_cases 133199, total_deaths 2376 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2021, month 6, total_cases 137429, total_deaths 2513 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2021, month 7, total_cases 138863, total_deaths 2556 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2021, month 8, total_cases 142637, total_deaths 2578 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2021, month 9, total_cases 158291, total_deaths 2717 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2021, month 10, total_cases 219139, total_deaths 3253 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2021, month 11, total_cases 253659, total_deaths 4179 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2021, month 12, total_cases 276674, total_deaths 4570 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2022, month 1, total_cases 392764, total_deaths 4873 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2022, month 2, total_cases 653120, total_deaths 5239 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2022, month 3, total_cases 798895, total_deaths 5616 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2022, month 4, total_cases 822013, total_deaths 5766 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2022, month 5, total_cases 828614, total_deaths 5824 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2022, month 6, total_cases 835797, total_deaths 5860 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2022, month 7, total_cases 861724, total_deaths 5892 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2022, month 8, total_cases 899133, total_deaths 5946 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2022, month 9, total_cases 930254, total_deaths 5994 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2022, month 10, total_cases 952099, total_deaths 6053 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2022, month 11, total_cases 963451, total_deaths 6091 } };
INSERT CountryCovid RELATION { TUPLE { country 'LV', year 2022, month 12, total_cases 973830, total_deaths 6161 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2020, month 4, total_cases 465, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2020, month 5, total_cases 618, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2020, month 6, total_cases 670, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2020, month 7, total_cases 824, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2020, month 8, total_cases 1883, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2020, month 9, total_cases 3058, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2020, month 10, total_cases 6042, total_deaths 62 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2020, month 11, total_cases 9873, total_deaths 137 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2020, month 12, total_cases 12774, total_deaths 219 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2021, month 1, total_cases 17903, total_deaths 267 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2021, month 2, total_cases 22482, total_deaths 315 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2021, month 3, total_cases 29033, total_deaths 392 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2021, month 4, total_cases 30292, total_deaths 413 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2021, month 5, total_cases 30535, total_deaths 419 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2021, month 6, total_cases 30623, total_deaths 420 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2021, month 7, total_cases 34295, total_deaths 423 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2021, month 8, total_cases 36171, total_deaths 441 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2021, month 9, total_cases 37149, total_deaths 457 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2021, month 10, total_cases 37653, total_deaths 461 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2021, month 11, total_cases 39435, total_deaths 468 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2021, month 12, total_cases 52473, total_deaths 476 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2022, month 1, total_cases 67717, total_deaths 550 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2022, month 2, total_cases 71275, total_deaths 605 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2022, month 3, total_cases 79539, total_deaths 638 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2022, month 4, total_cases 91741, total_deaths 698 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2022, month 5, total_cases 94742, total_deaths 721 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2022, month 6, total_cases 103132, total_deaths 741 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2022, month 7, total_cases 112828, total_deaths 794 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2022, month 8, total_cases 114050, total_deaths 801 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2022, month 9, total_cases 114692, total_deaths 806 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2022, month 10, total_cases 115349, total_deaths 808 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2022, month 11, total_cases 115818, total_deaths 809 } };
INSERT CountryCovid RELATION { TUPLE { country 'M', year 2022, month 12, total_cases 116384, total_deaths 815 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2020, month 4, total_cases 4423, total_deaths 170 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2020, month 5, total_cases 7807, total_deaths 205 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2020, month 6, total_cases 12533, total_deaths 228 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2020, month 7, total_cases 24322, total_deaths 353 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2020, month 8, total_cases 62590, total_deaths 1141 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2020, month 9, total_cases 123653, total_deaths 2194 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2020, month 10, total_cases 219084, total_deaths 3695 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2020, month 11, total_cases 356336, total_deaths 5846 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2020, month 12, total_cases 439193, total_deaths 7388 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2021, month 1, total_cases 471157, total_deaths 8275 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2021, month 2, total_cases 483654, total_deaths 8623 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2021, month 3, total_cases 496097, total_deaths 8818 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2021, month 4, total_cases 511249, total_deaths 9023 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2021, month 5, total_cases 519216, total_deaths 9147 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2021, month 6, total_cases 531361, total_deaths 9296 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2021, month 7, total_cases 623528, total_deaths 9785 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2021, month 8, total_cases 860948, total_deaths 12649 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2021, month 9, total_cases 933071, total_deaths 14267 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2021, month 10, total_cases 946145, total_deaths 14668 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2021, month 11, total_cases 949917, total_deaths 14776 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2021, month 12, total_cases 963092, total_deaths 14849 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2022, month 1, total_cases 1132716, total_deaths 15400 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2022, month 2, total_cases 1160975, total_deaths 15988 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2022, month 3, total_cases 1163274, total_deaths 16060 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2022, month 4, total_cases 1164953, total_deaths 16069 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2022, month 5, total_cases 1168303, total_deaths 16076 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2022, month 6, total_cases 1216909, total_deaths 16109 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2022, month 7, total_cases 1260978, total_deaths 16237 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2022, month 8, total_cases 1264435, total_deaths 16273 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2022, month 9, total_cases 1264945, total_deaths 16278 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2022, month 10, total_cases 1265601, total_deaths 16281 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2022, month 11, total_cases 1268823, total_deaths 16284 } };
INSERT CountryCovid RELATION { TUPLE { country 'MA', year 2022, month 12, total_cases 1271595, total_deaths 16294 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2020, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2020, month 2, total_cases 29, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2020, month 3, total_cases 2766, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2020, month 4, total_cases 6002, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2020, month 5, total_cases 7819, total_deaths 115 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2020, month 6, total_cases 8639, total_deaths 121 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2020, month 7, total_cases 8976, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2020, month 8, total_cases 9340, total_deaths 127 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2020, month 9, total_cases 11224, total_deaths 136 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2020, month 10, total_cases 31548, total_deaths 263 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2020, month 11, total_cases 65697, total_deaths 360 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2020, month 12, total_cases 113010, total_deaths 471 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2021, month 1, total_cases 214959, total_deaths 760 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2021, month 2, total_cases 300752, total_deaths 1135 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2021, month 3, total_cases 345500, total_deaths 1272 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2021, month 4, total_cases 408713, total_deaths 1506 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2021, month 5, total_cases 572357, total_deaths 2796 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2021, month 6, total_cases 751979, total_deaths 5170 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2021, month 7, total_cases 1113272, total_deaths 9024 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2021, month 8, total_cases 1746254, total_deaths 16664 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2021, month 9, total_cases 2245695, total_deaths 26335 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2021, month 10, total_cases 2471642, total_deaths 28912 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2021, month 11, total_cases 2632782, total_deaths 30425 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2021, month 12, total_cases 2758086, total_deaths 31487 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2022, month 1, total_cases 2870758, total_deaths 31978 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2022, month 2, total_cases 3442736, total_deaths 32749 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2022, month 3, total_cases 4201919, total_deaths 34983 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2022, month 4, total_cases 4448004, total_deaths 35547 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2022, month 5, total_cases 4506510, total_deaths 35676 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2022, month 6, total_cases 4566055, total_deaths 35765 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2022, month 7, total_cases 4680053, total_deaths 35969 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2022, month 8, total_cases 4782624, total_deaths 36232 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2022, month 9, total_cases 4840879, total_deaths 36374 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2022, month 10, total_cases 4902964, total_deaths 36475 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2022, month 11, total_cases 4992168, total_deaths 36684 } };
INSERT CountryCovid RELATION { TUPLE { country 'MAL', year 2022, month 12, total_cases 5026677, total_deaths 36853 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2020, month 3, total_cases 52, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2020, month 4, total_cases 95, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2020, month 5, total_cases 99, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2020, month 6, total_cases 103, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2020, month 7, total_cases 120, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2020, month 8, total_cases 154, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2020, month 9, total_cases 218, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2020, month 10, total_cases 359, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2020, month 11, total_cases 609, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2020, month 12, total_cases 875, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2021, month 1, total_cases 1489, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2021, month 2, total_cases 1956, total_deaths 24 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2021, month 3, total_cases 2288, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2021, month 4, total_cases 2454, total_deaths 32 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2021, month 5, total_cases 2504, total_deaths 32 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2021, month 6, total_cases 2577, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2021, month 7, total_cases 2889, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2021, month 8, total_cases 3201, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2021, month 9, total_cases 3314, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2021, month 10, total_cases 3414, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2021, month 11, total_cases 3738, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2021, month 12, total_cases 4985, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2022, month 1, total_cases 8183, total_deaths 47 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2022, month 2, total_cases 9359, total_deaths 51 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2022, month 3, total_cases 10758, total_deaths 54 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2022, month 4, total_cases 11770, total_deaths 57 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2022, month 5, total_cases 12216, total_deaths 57 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2022, month 6, total_cases 13006, total_deaths 58 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2022, month 7, total_cases 14059, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2022, month 8, total_cases 14379, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2022, month 9, total_cases 14622, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2022, month 10, total_cases 14963, total_deaths 65 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2022, month 11, total_cases 15442, total_deaths 65 } };
INSERT CountryCovid RELATION { TUPLE { country 'MC', year 2022, month 12, total_cases 15948, total_deaths 65 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2020, month 3, total_cases 353, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2020, month 4, total_cases 3897, total_deaths 116 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2020, month 5, total_cases 8251, total_deaths 295 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2020, month 6, total_cases 16613, total_deaths 545 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2020, month 7, total_cases 24733, total_deaths 778 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2020, month 8, total_cases 36920, total_deaths 995 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2020, month 9, total_cases 53042, total_deaths 1320 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2020, month 10, total_cases 76040, total_deaths 1785 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2020, month 11, total_cases 107364, total_deaths 2304 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2020, month 12, total_cases 144818, total_deaths 2985 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2021, month 1, total_cases 159804, total_deaths 3438 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2021, month 2, total_cases 185453, total_deaths 3949 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2021, month 3, total_cases 230241, total_deaths 4960 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2021, month 4, total_cases 250837, total_deaths 5812 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2021, month 5, total_cases 255186, total_deaths 6107 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2021, month 6, total_cases 256734, total_deaths 6194 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2021, month 7, total_cases 259478, total_deaths 6255 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2021, month 8, total_cases 267526, total_deaths 6401 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2021, month 9, total_cases 294392, total_deaths 6777 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2021, month 10, total_cases 337768, total_deaths 7790 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2021, month 11, total_cases 363774, total_deaths 9119 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2021, month 12, total_cases 376155, total_deaths 10275 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2022, month 1, total_cases 440698, total_deaths 10642 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2022, month 2, total_cases 501800, total_deaths 11216 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2022, month 3, total_cases 513442, total_deaths 11431 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2022, month 4, total_cases 516986, total_deaths 11489 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2022, month 5, total_cases 518793, total_deaths 11537 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2022, month 6, total_cases 520321, total_deaths 11567 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2022, month 7, total_cases 532187, total_deaths 11608 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2022, month 8, total_cases 575052, total_deaths 11755 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2022, month 9, total_cases 589437, total_deaths 11844 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2022, month 10, total_cases 593246, total_deaths 11887 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2022, month 11, total_cases 595073, total_deaths 11918 } };
INSERT CountryCovid RELATION { TUPLE { country 'MD', year 2022, month 12, total_cases 596550, total_deaths 11933 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2020, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2020, month 3, total_cases 1215, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2020, month 4, total_cases 19224, total_deaths 1859 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2020, month 5, total_cases 90664, total_deaths 9930 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2020, month 6, total_cases 226089, total_deaths 27769 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2020, month 7, total_cases 424637, total_deaths 46688 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2020, month 8, total_cases 599560, total_deaths 64414 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2020, month 9, total_cases 743216, total_deaths 77646 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2020, month 10, total_cases 924962, total_deaths 91753 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2020, month 11, total_cases 1113543, total_deaths 105940 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2020, month 12, total_cases 1426094, total_deaths 125807 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2021, month 1, total_cases 1864260, total_deaths 158536 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2021, month 2, total_cases 2086938, total_deaths 185715 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2021, month 3, total_cases 2238887, total_deaths 203210 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2021, month 4, total_cases 2344755, total_deaths 216907 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2021, month 5, total_cases 2413742, total_deaths 223568 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2021, month 6, total_cases 2519269, total_deaths 233047 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2021, month 7, total_cases 2848252, total_deaths 240906 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2021, month 8, total_cases 3352410, total_deaths 259326 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2021, month 9, total_cases 3664223, total_deaths 277507 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2021, month 10, total_cases 3807211, total_deaths 288365 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2021, month 11, total_cases 3884566, total_deaths 293950 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2021, month 12, total_cases 3979723, total_deaths 299428 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2022, month 1, total_cases 4942590, total_deaths 306091 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2022, month 2, total_cases 5508629, total_deaths 318149 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2022, month 3, total_cases 5659535, total_deaths 323016 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2022, month 4, total_cases 5739680, total_deaths 324334 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2022, month 5, total_cases 5775977, total_deaths 324922 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2022, month 6, total_cases 6034602, total_deaths 325716 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2022, month 7, total_cases 6711847, total_deaths 327525 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2022, month 8, total_cases 7014510, total_deaths 329390 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2022, month 9, total_cases 7089209, total_deaths 330112 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2022, month 10, total_cases 7111104, total_deaths 330392 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2022, month 11, total_cases 7125443, total_deaths 330495 } };
INSERT CountryCovid RELATION { TUPLE { country 'MEX', year 2022, month 12, total_cases 7234467, total_deaths 331105 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2020, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2020, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2020, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2020, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2020, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2020, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2020, month 11, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2020, month 12, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2021, month 1, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2021, month 2, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2021, month 3, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2021, month 4, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2021, month 5, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2021, month 6, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2021, month 7, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2021, month 8, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2021, month 9, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2021, month 10, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2021, month 11, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2021, month 12, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2022, month 1, total_cases 7, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2022, month 2, total_cases 7, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2022, month 3, total_cases 7, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2022, month 4, total_cases 17, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2022, month 5, total_cases 17, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2022, month 6, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2022, month 7, total_cases 64, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2022, month 8, total_cases 15042, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2022, month 9, total_cases 15305, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2022, month 10, total_cases 15389, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2022, month 11, total_cases 15541, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'MH', year 2022, month 12, total_cases 15547, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2020, month 3, total_cases 109, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2020, month 4, total_cases 322, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2020, month 5, total_cases 324, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2020, month 6, total_cases 548, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2020, month 7, total_cases 3073, total_deaths 48 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2020, month 8, total_cases 4835, total_deaths 100 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2020, month 9, total_cases 10772, total_deaths 169 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2020, month 10, total_cases 18341, total_deaths 301 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2020, month 11, total_cases 35265, total_deaths 499 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2020, month 12, total_cases 48247, total_deaths 682 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2021, month 1, total_cases 61659, total_deaths 805 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2021, month 2, total_cases 75834, total_deaths 1003 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2021, month 3, total_cases 91218, total_deaths 1274 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2021, month 4, total_cases 97389, total_deaths 1495 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2021, month 5, total_cases 99623, total_deaths 1584 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2021, month 6, total_cases 100252, total_deaths 1613 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2021, month 7, total_cases 101927, total_deaths 1630 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2021, month 8, total_cases 115385, total_deaths 1724 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2021, month 9, total_cases 131499, total_deaths 1923 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2021, month 10, total_cases 144314, total_deaths 2103 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2021, month 11, total_cases 157376, total_deaths 2307 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2021, month 12, total_cases 170034, total_deaths 2411 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2022, month 1, total_cases 219775, total_deaths 2564 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2022, month 2, total_cases 230207, total_deaths 2680 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2022, month 3, total_cases 233102, total_deaths 2702 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2022, month 4, total_cases 235228, total_deaths 2714 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2022, month 5, total_cases 237223, total_deaths 2720 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2022, month 6, total_cases 240222, total_deaths 2729 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2022, month 7, total_cases 259349, total_deaths 2746 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2022, month 8, total_cases 275538, total_deaths 2773 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2022, month 9, total_cases 280182, total_deaths 2782 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2022, month 10, total_cases 282764, total_deaths 2786 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2022, month 11, total_cases 283719, total_deaths 2790 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNE', year 2022, month 12, total_cases 284756, total_deaths 2791 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2020, month 3, total_cases 12, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2020, month 4, total_cases 38, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2020, month 5, total_cases 179, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2020, month 6, total_cases 220, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2020, month 7, total_cases 291, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2020, month 8, total_cases 301, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2020, month 9, total_cases 313, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2020, month 10, total_cases 340, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2020, month 11, total_cases 784, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2020, month 12, total_cases 1195, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2021, month 1, total_cases 1779, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2021, month 2, total_cases 2907, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2021, month 3, total_cases 8447, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2021, month 4, total_cases 35979, total_deaths 118 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2021, month 5, total_cases 58439, total_deaths 253 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2021, month 6, total_cases 115478, total_deaths 496 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2021, month 7, total_cases 165147, total_deaths 713 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2021, month 8, total_cases 214015, total_deaths 836 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2021, month 9, total_cases 382497, total_deaths 1204 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2021, month 10, total_cases 590800, total_deaths 1661 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2021, month 11, total_cases 668402, total_deaths 1930 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2021, month 12, total_cases 692621, total_deaths 1986 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2022, month 1, total_cases 841848, total_deaths 2036 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2022, month 2, total_cases 908157, total_deaths 2096 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2022, month 3, total_cases 919188, total_deaths 2108 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2022, month 4, total_cases 920781, total_deaths 2110 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2022, month 5, total_cases 925073, total_deaths 2115 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2022, month 6, total_cases 928586, total_deaths 2118 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2022, month 7, total_cases 943690, total_deaths 2119 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2022, month 8, total_cases 978960, total_deaths 2128 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2022, month 9, total_cases 982864, total_deaths 2131 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2022, month 10, total_cases 984823, total_deaths 2131 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2022, month 11, total_cases 992767, total_deaths 2134 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNG', year 2022, month 12, total_cases 1007266, total_deaths 2136 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2020, month 3, total_cases 5, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2020, month 4, total_cases 11, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2020, month 5, total_cases 11, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2020, month 6, total_cases 11, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2020, month 7, total_cases 12, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2020, month 8, total_cases 13, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2020, month 9, total_cases 13, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2020, month 10, total_cases 13, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2020, month 11, total_cases 13, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2020, month 12, total_cases 13, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2021, month 1, total_cases 13, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2021, month 2, total_cases 20, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2021, month 3, total_cases 20, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2021, month 4, total_cases 20, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2021, month 5, total_cases 20, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2021, month 6, total_cases 20, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2021, month 7, total_cases 21, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2021, month 8, total_cases 29, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2021, month 9, total_cases 34, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2021, month 10, total_cases 41, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2021, month 11, total_cases 44, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2021, month 12, total_cases 46, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2022, month 1, total_cases 163, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2022, month 2, total_cases 164, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2022, month 3, total_cases 175, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2022, month 4, total_cases 241, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2022, month 5, total_cases 980, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2022, month 6, total_cases 1018, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2022, month 7, total_cases 1054, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2022, month 8, total_cases 1145, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2022, month 9, total_cases 1403, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2022, month 10, total_cases 1403, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2022, month 11, total_cases 1403, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'MNTS', year 2022, month 12, total_cases 1403, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2020, month 3, total_cases 8, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2020, month 4, total_cases 76, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2020, month 5, total_cases 254, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2020, month 6, total_cases 889, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2020, month 7, total_cases 1864, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2020, month 8, total_cases 3916, total_deaths 23 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2020, month 9, total_cases 8728, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2020, month 10, total_cases 12869, total_deaths 92 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2020, month 11, total_cases 15701, total_deaths 131 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2020, month 12, total_cases 18642, total_deaths 166 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2021, month 1, total_cases 38654, total_deaths 367 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2021, month 2, total_cases 59350, total_deaths 641 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2021, month 3, total_cases 67579, total_deaths 775 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2021, month 4, total_cases 69917, total_deaths 814 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2021, month 5, total_cases 70795, total_deaths 836 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2021, month 6, total_cases 76404, total_deaths 878 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2021, month 7, total_cases 122028, total_deaths 1434 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2021, month 8, total_cases 146316, total_deaths 1864 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2021, month 9, total_cases 150723, total_deaths 1917 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2021, month 10, total_cases 151292, total_deaths 1930 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2021, month 11, total_cases 151548, total_deaths 1941 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2021, month 12, total_cases 189080, total_deaths 2006 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2022, month 1, total_cases 223827, total_deaths 2173 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2022, month 2, total_cases 225047, total_deaths 2192 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2022, month 3, total_cases 225256, total_deaths 2200 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2022, month 4, total_cases 225384, total_deaths 2201 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2022, month 5, total_cases 225754, total_deaths 2203 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2022, month 6, total_cases 227919, total_deaths 2212 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2022, month 7, total_cases 229580, total_deaths 2215 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2022, month 8, total_cases 230076, total_deaths 2220 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2022, month 9, total_cases 230312, total_deaths 2222 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2022, month 10, total_cases 230475, total_deaths 2224 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2022, month 11, total_cases 230624, total_deaths 2226 } };
INSERT CountryCovid RELATION { TUPLE { country 'MOC', year 2022, month 12, total_cases 230970, total_deaths 2230 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2020, month 3, total_cases 125, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2020, month 4, total_cases 332, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2020, month 5, total_cases 335, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2020, month 6, total_cases 341, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2020, month 7, total_cases 344, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2020, month 8, total_cases 355, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2020, month 9, total_cases 381, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2020, month 10, total_cases 441, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2020, month 11, total_cases 504, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2020, month 12, total_cases 527, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2021, month 1, total_cases 568, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2021, month 2, total_cases 610, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2021, month 3, total_cases 963, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2021, month 4, total_cases 1206, total_deaths 16 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2021, month 5, total_cases 1411, total_deaths 18 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2021, month 6, total_cases 1898, total_deaths 18 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2021, month 7, total_cases 4214, total_deaths 20 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2021, month 8, total_cases 10676, total_deaths 31 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2021, month 9, total_cases 15695, total_deaths 84 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2021, month 10, total_cases 22852, total_deaths 176 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2021, month 11, total_cases 55634, total_deaths 527 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2021, month 12, total_cases 68480, total_deaths 786 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2022, month 1, total_cases 105935, total_deaths 822 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2022, month 2, total_cases 167644, total_deaths 904 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2022, month 3, total_cases 210343, total_deaths 968 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2022, month 4, total_cases 220344, total_deaths 990 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2022, month 5, total_cases 225862, total_deaths 996 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2022, month 6, total_cases 231036, total_deaths 1003 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2022, month 7, total_cases 244850, total_deaths 1013 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2022, month 8, total_cases 256452, total_deaths 1023 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2022, month 9, total_cases 262648, total_deaths 1026 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2022, month 10, total_cases 265301, total_deaths 1032 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2022, month 11, total_cases 276456, total_deaths 1034 } };
INSERT CountryCovid RELATION { TUPLE { country 'MS', year 2022, month 12, total_cases 289980, total_deaths 1041 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2020, month 3, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2020, month 4, total_cases 468, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2020, month 5, total_cases 1773, total_deaths 5 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2020, month 6, total_cases 2361, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2020, month 7, total_cases 3793, total_deaths 16 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2020, month 8, total_cases 7804, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2020, month 9, total_cases 10291, total_deaths 34 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2020, month 10, total_cases 11659, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2020, month 11, total_cases 13011, total_deaths 46 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2020, month 12, total_cases 13757, total_deaths 48 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2021, month 1, total_cases 15841, total_deaths 52 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2021, month 2, total_cases 19793, total_deaths 62 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2021, month 3, total_cases 24079, total_deaths 67 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2021, month 4, total_cases 29835, total_deaths 73 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2021, month 5, total_cases 64396, total_deaths 160 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2021, month 6, total_cases 73798, total_deaths 210 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2021, month 7, total_cases 77432, total_deaths 221 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2021, month 8, total_cases 81112, total_deaths 226 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2021, month 9, total_cases 84809, total_deaths 231 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2021, month 10, total_cases 87638, total_deaths 243 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2021, month 11, total_cases 91650, total_deaths 250 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2021, month 12, total_cases 95700, total_deaths 262 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2022, month 1, total_cases 138880, total_deaths 276 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2022, month 2, total_cases 170192, total_deaths 297 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2022, month 3, total_cases 177000, total_deaths 298 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2022, month 4, total_cases 179171, total_deaths 298 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2022, month 5, total_cases 179753, total_deaths 299 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2022, month 6, total_cases 181586, total_deaths 305 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2022, month 7, total_cases 184302, total_deaths 307 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2022, month 8, total_cases 184856, total_deaths 308 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2022, month 9, total_cases 185042, total_deaths 308 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2022, month 10, total_cases 185364, total_deaths 308 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2022, month 11, total_cases 185618, total_deaths 311 } };
INSERT CountryCovid RELATION { TUPLE { country 'MV', year 2022, month 12, total_cases 185678, total_deaths 311 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2020, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2020, month 5, total_cases 284, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2020, month 6, total_cases 1224, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2020, month 7, total_cases 4078, total_deaths 114 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2020, month 8, total_cases 5566, total_deaths 175 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2020, month 9, total_cases 5773, total_deaths 179 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2020, month 10, total_cases 5930, total_deaths 184 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2020, month 11, total_cases 6028, total_deaths 185 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2020, month 12, total_cases 6583, total_deaths 189 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2021, month 1, total_cases 23963, total_deaths 702 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2021, month 2, total_cases 31945, total_deaths 1044 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2021, month 3, total_cases 33551, total_deaths 1117 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2021, month 4, total_cases 34078, total_deaths 1148 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2021, month 5, total_cases 34338, total_deaths 1155 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2021, month 6, total_cases 36126, total_deaths 1196 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2021, month 7, total_cases 52347, total_deaths 1635 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2021, month 8, total_cases 60494, total_deaths 2177 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2021, month 9, total_cases 61580, total_deaths 2282 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2021, month 10, total_cases 61796, total_deaths 2301 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2021, month 11, total_cases 61916, total_deaths 2306 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2021, month 12, total_cases 75075, total_deaths 2364 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2022, month 1, total_cases 84475, total_deaths 2561 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2022, month 2, total_cases 85339, total_deaths 2615 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2022, month 3, total_cases 85640, total_deaths 2626 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2022, month 4, total_cases 85781, total_deaths 2634 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2022, month 5, total_cases 85985, total_deaths 2640 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2022, month 6, total_cases 86506, total_deaths 2645 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2022, month 7, total_cases 87410, total_deaths 2665 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2022, month 8, total_cases 87860, total_deaths 2676 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2022, month 9, total_cases 88028, total_deaths 2682 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2022, month 10, total_cases 88073, total_deaths 2683 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2022, month 11, total_cases 88099, total_deaths 2896 } };
INSERT CountryCovid RELATION { TUPLE { country 'MW', year 2022, month 12, total_cases 88220, total_deaths 2685 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2020, month 3, total_cases 15, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2020, month 4, total_cases 151, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2020, month 5, total_cases 224, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2020, month 6, total_cases 299, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2020, month 7, total_cases 353, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2020, month 8, total_cases 882, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2020, month 9, total_cases 13373, total_deaths 310 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2020, month 10, total_cases 52706, total_deaths 1237 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2020, month 11, total_cases 90713, total_deaths 1941 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2020, month 12, total_cases 124630, total_deaths 2682 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2021, month 1, total_cases 140145, total_deaths 3131 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2021, month 2, total_cases 141896, total_deaths 3199 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2021, month 3, total_cases 142434, total_deaths 3206 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2021, month 4, total_cases 142817, total_deaths 3209 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2021, month 5, total_cases 143629, total_deaths 3217 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2021, month 6, total_cases 157277, total_deaths 3334 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2021, month 7, total_cases 299185, total_deaths 9334 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2021, month 8, total_cases 399282, total_deaths 15389 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2021, month 9, total_cases 464076, total_deaths 17735 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2021, month 10, total_cases 500073, total_deaths 18697 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2021, month 11, total_cases 522402, total_deaths 19104 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2021, month 12, total_cases 530834, total_deaths 19268 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2022, month 1, total_cases 535532, total_deaths 19310 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2022, month 2, total_cases 587891, total_deaths 19368 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2022, month 3, total_cases 611587, total_deaths 19430 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2022, month 4, total_cases 612883, total_deaths 19434 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2022, month 5, total_cases 613336, total_deaths 19434 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2022, month 6, total_cases 613596, total_deaths 19434 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2022, month 7, total_cases 614092, total_deaths 19434 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2022, month 8, total_cases 615221, total_deaths 19438 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2022, month 9, total_cases 622802, total_deaths 19459 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2022, month 10, total_cases 631716, total_deaths 19482 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2022, month 11, total_cases 633245, total_deaths 19488 } };
INSERT CountryCovid RELATION { TUPLE { country 'MYA', year 2022, month 12, total_cases 633683, total_deaths 19490 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2020, month 3, total_cases 4641, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2020, month 4, total_cases 7738, total_deaths 210 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2020, month 5, total_cases 8440, total_deaths 236 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2020, month 6, total_cases 8879, total_deaths 250 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2020, month 7, total_cases 9240, total_deaths 255 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2020, month 8, total_cases 10782, total_deaths 264 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2020, month 9, total_cases 14027, total_deaths 274 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2020, month 10, total_cases 20331, total_deaths 282 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2020, month 11, total_cases 36150, total_deaths 332 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2020, month 12, total_cases 49567, total_deaths 436 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2021, month 1, total_cases 62966, total_deaths 564 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2021, month 2, total_cases 71006, total_deaths 622 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2021, month 3, total_cases 96079, total_deaths 673 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2021, month 4, total_cases 112970, total_deaths 756 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2021, month 5, total_cases 125116, total_deaths 783 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2021, month 6, total_cases 131316, total_deaths 794 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2021, month 7, total_cases 137627, total_deaths 799 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2021, month 8, total_cases 160174, total_deaths 814 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2021, month 9, total_cases 189431, total_deaths 861 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2021, month 10, total_cases 207280, total_deaths 900 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2021, month 11, total_cases 267843, total_deaths 1054 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2021, month 12, total_cases 394259, total_deaths 1305 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2022, month 1, total_cases 781049, total_deaths 1440 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2022, month 2, total_cases 1242160, total_deaths 1598 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2022, month 3, total_cases 1405960, total_deaths 2518 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2022, month 4, total_cases 1426013, total_deaths 2932 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2022, month 5, total_cases 1433641, total_deaths 3141 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2022, month 6, total_cases 1447270, total_deaths 3337 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2022, month 7, total_cases 1455796, total_deaths 3623 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2022, month 8, total_cases 1460127, total_deaths 3980 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2022, month 9, total_cases 1462408, total_deaths 4098 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2022, month 10, total_cases 1464946, total_deaths 4208 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2022, month 11, total_cases 1469061, total_deaths 4384 } };
INSERT CountryCovid RELATION { TUPLE { country 'N', year 2022, month 12, total_cases 1475077, total_deaths 4670 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2020, month 3, total_cases 11, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2020, month 4, total_cases 16, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2020, month 5, total_cases 24, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2020, month 6, total_cases 205, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2020, month 7, total_cases 2129, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2020, month 8, total_cases 7550, total_deaths 75 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2020, month 9, total_cases 11265, total_deaths 121 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2020, month 10, total_cases 12935, total_deaths 133 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2020, month 11, total_cases 14380, total_deaths 151 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2020, month 12, total_cases 23941, total_deaths 205 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2021, month 1, total_cases 33944, total_deaths 352 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2021, month 2, total_cases 38845, total_deaths 424 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2021, month 3, total_cases 44139, total_deaths 523 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2021, month 4, total_cases 48351, total_deaths 642 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2021, month 5, total_cases 55549, total_deaths 830 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2021, month 6, total_cases 89917, total_deaths 1521 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2021, month 7, total_cases 118922, total_deaths 3044 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2021, month 8, total_cases 125046, total_deaths 3375 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2021, month 9, total_cases 127589, total_deaths 3511 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2021, month 10, total_cases 128927, total_deaths 3554 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2021, month 11, total_cases 129187, total_deaths 3573 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2021, month 12, total_cases 147974, total_deaths 3633 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2022, month 1, total_cases 155899, total_deaths 3967 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2022, month 2, total_cases 157225, total_deaths 4007 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2022, month 3, total_cases 157646, total_deaths 4019 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2022, month 4, total_cases 158649, total_deaths 4025 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2022, month 5, total_cases 166363, total_deaths 4038 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2022, month 6, total_cases 169179, total_deaths 4064 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2022, month 7, total_cases 169253, total_deaths 4072 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2022, month 8, total_cases 169253, total_deaths 4077 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2022, month 9, total_cases 169253, total_deaths 4080 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2022, month 10, total_cases 169908, total_deaths 4080 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2022, month 11, total_cases 169946, total_deaths 4080 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAM', year 2022, month 12, total_cases 170295, total_deaths 4082 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2021, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2021, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2021, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2021, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2021, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2021, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2021, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2021, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2021, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2022, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2022, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2022, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2022, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2022, month 5, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2022, month 6, total_cases 3394, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2022, month 7, total_cases 4407, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2022, month 8, total_cases 4610, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2022, month 9, total_cases 4611, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2022, month 10, total_cases 4611, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2022, month 11, total_cases 4621, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'NAU', year 2022, month 12, total_cases 4621, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2020, month 3, total_cases 16, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2020, month 4, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2020, month 5, total_cases 19, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2020, month 6, total_cases 21, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2020, month 7, total_cases 22, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2020, month 8, total_cases 23, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2020, month 9, total_cases 27, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2020, month 10, total_cases 28, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2020, month 11, total_cases 33, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2020, month 12, total_cases 38, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2021, month 1, total_cases 47, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2021, month 2, total_cases 58, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2021, month 3, total_cases 121, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2021, month 4, total_cases 124, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2021, month 5, total_cases 128, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2021, month 6, total_cases 129, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2021, month 7, total_cases 134, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2021, month 8, total_cases 136, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2021, month 9, total_cases 7428, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2021, month 10, total_cases 10968, total_deaths 265 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2021, month 11, total_cases 12159, total_deaths 276 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2021, month 12, total_cases 12826, total_deaths 281 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2022, month 1, total_cases 20486, total_deaths 283 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2022, month 2, total_cases 54177, total_deaths 299 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2022, month 3, total_cases 60391, total_deaths 311 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2022, month 4, total_cases 60653, total_deaths 312 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2022, month 5, total_cases 62193, total_deaths 313 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2022, month 6, total_cases 64337, total_deaths 313 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2022, month 7, total_cases 69796, total_deaths 314 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2022, month 8, total_cases 74102, total_deaths 314 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2022, month 9, total_cases 74288, total_deaths 314 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2022, month 10, total_cases 74406, total_deaths 314 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2022, month 11, total_cases 76187, total_deaths 314 } };
INSERT CountryCovid RELATION { TUPLE { country 'NCA', year 2022, month 12, total_cases 79441, total_deaths 314 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2020, month 1, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2020, month 3, total_cases 5, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2020, month 4, total_cases 57, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2020, month 5, total_cases 1572, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2020, month 6, total_cases 13564, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2020, month 7, total_cases 19771, total_deaths 56 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2020, month 8, total_cases 39460, total_deaths 228 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2020, month 9, total_cases 77817, total_deaths 498 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2020, month 10, total_cases 170743, total_deaths 937 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2020, month 11, total_cases 233452, total_deaths 1508 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2020, month 12, total_cases 260593, total_deaths 1856 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2021, month 1, total_cases 270959, total_deaths 2029 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2021, month 2, total_cases 274143, total_deaths 2774 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2021, month 3, total_cases 277309, total_deaths 3030 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2021, month 4, total_cases 323187, total_deaths 3279 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2021, month 5, total_cases 561302, total_deaths 7386 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2021, month 6, total_cases 638805, total_deaths 9112 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2021, month 7, total_cases 695389, total_deaths 9857 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2021, month 8, total_cases 762647, total_deaths 10750 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2021, month 9, total_cases 795061, total_deaths 11135 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2021, month 10, total_cases 812570, total_deaths 11407 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2021, month 11, total_cases 821366, total_deaths 11526 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2021, month 12, total_cases 828431, total_deaths 11594 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2022, month 1, total_cases 953913, total_deaths 11743 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2022, month 2, total_cases 976984, total_deaths 11936 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2022, month 3, total_cases 978426, total_deaths 11951 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2022, month 4, total_cases 978810, total_deaths 11951 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2022, month 5, total_cases 979140, total_deaths 11952 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2022, month 6, total_cases 979694, total_deaths 11952 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2022, month 7, total_cases 986596, total_deaths 11967 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2022, month 8, total_cases 997346, total_deaths 12001 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2022, month 9, total_cases 999742, total_deaths 12018 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2022, month 10, total_cases 1000556, total_deaths 12019 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2022, month 11, total_cases 1000889, total_deaths 12019 } };
INSERT CountryCovid RELATION { TUPLE { country 'NEP', year 2022, month 12, total_cases 1001000, total_deaths 12019 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2020, month 3, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2020, month 4, total_cases 13, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2020, month 5, total_cases 885, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2020, month 6, total_cases 2014, total_deaths 74 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2020, month 7, total_cases 3080, total_deaths 116 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2020, month 8, total_cases 3659, total_deaths 137 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2020, month 9, total_cases 4146, total_deaths 151 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2020, month 10, total_cases 4424, total_deaths 156 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2020, month 11, total_cases 4629, total_deaths 160 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2020, month 12, total_cases 4829, total_deaths 165 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2021, month 1, total_cases 4992, total_deaths 169 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2021, month 2, total_cases 5142, total_deaths 173 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2021, month 3, total_cases 5326, total_deaths 178 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2021, month 4, total_cases 5498, total_deaths 182 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2021, month 5, total_cases 5833, total_deaths 186 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2021, month 6, total_cases 6604, total_deaths 191 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2021, month 7, total_cases 7592, total_deaths 195 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2021, month 8, total_cases 8867, total_deaths 199 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2021, month 9, total_cases 11273, total_deaths 204 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2021, month 10, total_cases 12866, total_deaths 208 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2021, month 11, total_cases 13330, total_deaths 212 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2021, month 12, total_cases 13563, total_deaths 217 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2022, month 1, total_cases 13681, total_deaths 220 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2022, month 2, total_cases 13958, total_deaths 224 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2022, month 3, total_cases 14269, total_deaths 230 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2022, month 4, total_cases 14395, total_deaths 234 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2022, month 5, total_cases 14508, total_deaths 238 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2022, month 6, total_cases 14690, total_deaths 242 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2022, month 7, total_cases 14807, total_deaths 244 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2022, month 8, total_cases 14931, total_deaths 244 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2022, month 9, total_cases 15070, total_deaths 245 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2022, month 10, total_cases 15166, total_deaths 245 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2022, month 11, total_cases 15250, total_deaths 245 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIC', year 2022, month 12, total_cases 15365, total_deaths 245 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2021, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2021, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2021, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2021, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2021, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2021, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2021, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2022, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2022, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2022, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2022, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2022, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2022, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2022, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2022, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2022, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NIUE', year 2022, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2020, month 2, total_cases 10, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2020, month 3, total_cases 13620, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2020, month 4, total_cases 39866, total_deaths 4808 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2020, month 5, total_cases 46622, total_deaths 5971 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2020, month 6, total_cases 50412, total_deaths 6128 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2020, month 7, total_cases 54860, total_deaths 6174 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2020, month 8, total_cases 71605, total_deaths 6241 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2020, month 9, total_cases 124764, total_deaths 6428 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2020, month 10, total_cases 360687, total_deaths 7417 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2020, month 11, total_cases 528589, total_deaths 9401 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2020, month 12, total_cases 806620, total_deaths 11459 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2021, month 1, total_cases 983516, total_deaths 14025 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2021, month 2, total_cases 1094509, total_deaths 15590 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2021, month 3, total_cases 1282590, total_deaths 16565 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2021, month 4, total_cases 1504337, total_deaths 17175 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2021, month 5, total_cases 1654194, total_deaths 17651 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2021, month 6, total_cases 1688443, total_deaths 17778 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2021, month 7, total_cases 1870585, total_deaths 17861 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2021, month 8, total_cases 1947601, total_deaths 18061 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2021, month 9, total_cases 2009046, total_deaths 18236 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2021, month 10, total_cases 2144240, total_deaths 18486 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2021, month 11, total_cases 2666279, total_deaths 19489 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2021, month 12, total_cases 3153512, total_deaths 20999 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2022, month 1, total_cases 4547587, total_deaths 21356 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2022, month 2, total_cases 6371187, total_deaths 21639 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2022, month 3, total_cases 7869001, total_deaths 22073 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2022, month 4, total_cases 8058764, total_deaths 22335 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2022, month 5, total_cases 8096222, total_deaths 22408 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2022, month 6, total_cases 8194662, total_deaths 22464 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2022, month 7, total_cases 8341943, total_deaths 22579 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2022, month 8, total_cases 8397025, total_deaths 22687 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2022, month 9, total_cases 8441602, total_deaths 22737 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2022, month 10, total_cases 8522623, total_deaths 22899 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2022, month 11, total_cases 8552819, total_deaths 22999 } };
INSERT CountryCovid RELATION { TUPLE { country 'NL', year 2022, month 12, total_cases 8580083, total_deaths 23079 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2020, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2020, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2020, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2020, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2020, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2020, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2020, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2020, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2020, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2021, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2021, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2021, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2021, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2021, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2021, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2021, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2021, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2021, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2021, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2021, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NMIS', year 2021, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2020, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2020, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2020, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2020, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2020, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2020, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2020, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2020, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2020, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2021, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2021, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2021, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2021, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2021, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2021, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2021, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2021, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2021, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2021, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2021, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2021, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2022, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2022, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2022, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2022, month 5, total_cases 1, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2022, month 6, total_cases 1, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2022, month 7, total_cases 1, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2022, month 8, total_cases 1, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2022, month 9, total_cases 1, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2022, month 10, total_cases 1, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2022, month 11, total_cases 1, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'NOK', year 2022, month 12, total_cases 1, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2020, month 3, total_cases 647, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2020, month 4, total_cases 1479, total_deaths 20 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2020, month 5, total_cases 1504, total_deaths 23 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2020, month 6, total_cases 1528, total_deaths 23 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2020, month 7, total_cases 1562, total_deaths 23 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2020, month 8, total_cases 1752, total_deaths 25 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2020, month 9, total_cases 1848, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2020, month 10, total_cases 1959, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2020, month 11, total_cases 2059, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2020, month 12, total_cases 2162, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2021, month 1, total_cases 2305, total_deaths 27 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2021, month 2, total_cases 2378, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2021, month 3, total_cases 2501, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2021, month 4, total_cases 2613, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2021, month 5, total_cases 2673, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2021, month 6, total_cases 2742, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2021, month 7, total_cases 2873, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2021, month 8, total_cases 3569, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2021, month 9, total_cases 4291, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2021, month 10, total_cases 6594, total_deaths 31 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2021, month 11, total_cases 11723, total_deaths 41 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2021, month 12, total_cases 14118, total_deaths 48 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2022, month 1, total_cases 16620, total_deaths 52 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2022, month 2, total_cases 118812, total_deaths 84 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2022, month 3, total_cases 672719, total_deaths 365 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2022, month 4, total_cases 936705, total_deaths 636 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2022, month 5, total_cases 1170824, total_deaths 890 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2022, month 6, total_cases 1345811, total_deaths 1106 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2022, month 7, total_cases 1621963, total_deaths 1502 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2022, month 8, total_cases 1743113, total_deaths 1908 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2022, month 9, total_cases 1779556, total_deaths 2030 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2022, month 10, total_cases 1851774, total_deaths 2106 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2022, month 11, total_cases 1945253, total_deaths 2212 } };
INSERT CountryCovid RELATION { TUPLE { country 'NZ', year 2022, month 12, total_cases 2094855, total_deaths 2331 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2020, month 2, total_cases 6, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2020, month 3, total_cases 192, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2020, month 4, total_cases 2348, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2020, month 5, total_cases 11437, total_deaths 49 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2020, month 6, total_cases 40070, total_deaths 176 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2020, month 7, total_cases 79159, total_deaths 421 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2020, month 8, total_cases 85722, total_deaths 685 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2020, month 9, total_cases 98585, total_deaths 935 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2020, month 10, total_cases 114434, total_deaths 1208 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2020, month 11, total_cases 123699, total_deaths 1423 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2020, month 12, total_cases 128867, total_deaths 1499 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2021, month 1, total_cases 134326, total_deaths 1529 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2021, month 2, total_cases 141496, total_deaths 1570 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2021, month 3, total_cases 159218, total_deaths 1678 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2021, month 4, total_cases 193253, total_deaths 2010 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2021, month 5, total_cases 217224, total_deaths 2345 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2021, month 6, total_cases 268545, total_deaths 3100 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2021, month 7, total_cases 295857, total_deaths 3814 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2021, month 8, total_cases 302300, total_deaths 4064 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2021, month 9, total_cases 303769, total_deaths 4096 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2021, month 10, total_cases 304291, total_deaths 4111 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2021, month 11, total_cases 304554, total_deaths 4113 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2021, month 12, total_cases 305489, total_deaths 4116 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2022, month 1, total_cases 338880, total_deaths 4146 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2022, month 2, total_cases 382244, total_deaths 4244 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2022, month 3, total_cases 388343, total_deaths 4250 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2022, month 4, total_cases 389126, total_deaths 4258 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2022, month 5, total_cases 389473, total_deaths 4260 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2022, month 6, total_cases 390244, total_deaths 4628 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2022, month 7, total_cases 395737, total_deaths 4628 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2022, month 8, total_cases 397846, total_deaths 4628 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2022, month 9, total_cases 398424, total_deaths 4628 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2022, month 10, total_cases 398775, total_deaths 4628 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2022, month 11, total_cases 399119, total_deaths 4628 } };
INSERT CountryCovid RELATION { TUPLE { country 'OM', year 2022, month 12, total_cases 399154, total_deaths 4628 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2020, month 4, total_cases 25045, total_deaths 989 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2020, month 5, total_cases 32500, total_deaths 1410 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2020, month 6, total_cases 42141, total_deaths 1576 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2020, month 7, total_cases 51072, total_deaths 1735 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2020, month 8, total_cases 58012, total_deaths 1822 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2020, month 9, total_cases 75542, total_deaths 1971 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2020, month 10, total_cases 141279, total_deaths 2507 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2020, month 11, total_cases 298061, total_deaths 4505 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2020, month 12, total_cases 413678, total_deaths 6906 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2021, month 1, total_cases 720516, total_deaths 12482 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2021, month 2, total_cases 804562, total_deaths 16317 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2021, month 3, total_cases 821722, total_deaths 16848 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2021, month 4, total_cases 836493, total_deaths 16974 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2021, month 5, total_cases 849093, total_deaths 17025 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2021, month 6, total_cases 879557, total_deaths 17096 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2021, month 7, total_cases 968631, total_deaths 17361 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2021, month 8, total_cases 1037927, total_deaths 17743 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2021, month 9, total_cases 1069279, total_deaths 17975 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2021, month 10, total_cases 1090651, total_deaths 18157 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2021, month 11, total_cases 1147249, total_deaths 18441 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2021, month 12, total_cases 1389646, total_deaths 18955 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2022, month 1, total_cases 2689167, total_deaths 19905 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2022, month 2, total_cases 3381602, total_deaths 21063 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2022, month 3, total_cases 3738919, total_deaths 21695 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2022, month 4, total_cases 4027684, total_deaths 22280 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2022, month 5, total_cases 4683018, total_deaths 23115 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2022, month 6, total_cases 5171236, total_deaths 24149 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2022, month 7, total_cases 5340612, total_deaths 24592 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2022, month 8, total_cases 5420140, total_deaths 24855 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2022, month 9, total_cases 5493540, total_deaths 25031 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2022, month 10, total_cases 5520731, total_deaths 25228 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2022, month 11, total_cases 5542265, total_deaths 25450 } };
INSERT CountryCovid RELATION { TUPLE { country 'P', year 2022, month 12, total_cases 5554058, total_deaths 25714 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2020, month 4, total_cases 6532, total_deaths 188 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2020, month 5, total_cases 13463, total_deaths 336 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2020, month 6, total_cases 33550, total_deaths 631 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2020, month 7, total_cases 65256, total_deaths 1421 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2020, month 8, total_cases 92982, total_deaths 2002 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2020, month 9, total_cases 112595, total_deaths 2372 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2020, month 10, total_cases 133598, total_deaths 2700 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2020, month 11, total_cases 165806, total_deaths 3079 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2020, month 12, total_cases 246790, total_deaths 4022 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2021, month 1, total_cases 320379, total_deaths 5270 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2021, month 2, total_cases 340915, total_deaths 5845 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2021, month 3, total_cases 355051, total_deaths 6114 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2021, month 4, total_cases 364576, total_deaths 6232 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2021, month 5, total_cases 378097, total_deaths 6371 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2021, month 6, total_cases 403778, total_deaths 6545 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2021, month 7, total_cases 435655, total_deaths 6823 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2021, month 8, total_cases 457487, total_deaths 7061 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2021, month 9, total_cases 467113, total_deaths 7228 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2021, month 10, total_cases 472664, total_deaths 7315 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2021, month 11, total_cases 477742, total_deaths 7365 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2021, month 12, total_cases 495920, total_deaths 7428 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2022, month 1, total_cases 697124, total_deaths 7716 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2022, month 2, total_cases 755498, total_deaths 8083 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2022, month 3, total_cases 764536, total_deaths 8170 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2022, month 4, total_cases 776420, total_deaths 8184 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2022, month 5, total_cases 858268, total_deaths 8255 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2022, month 6, total_cases 921364, total_deaths 8364 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2022, month 7, total_cases 948473, total_deaths 8412 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2022, month 8, total_cases 978181, total_deaths 8470 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2022, month 9, total_cases 986866, total_deaths 8497 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2022, month 10, total_cases 990413, total_deaths 8509 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2022, month 11, total_cases 1002161, total_deaths 8526 } };
INSERT CountryCovid RELATION { TUPLE { country 'PA', year 2022, month 12, total_cases 1023778, total_deaths 8567 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2021, month 8, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2021, month 9, total_cases 5, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2021, month 10, total_cases 8, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2021, month 11, total_cases 8, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2021, month 12, total_cases 10, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2022, month 1, total_cases 1633, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2022, month 2, total_cases 3781, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2022, month 3, total_cases 4024, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2022, month 4, total_cases 4610, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2022, month 5, total_cases 5065, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2022, month 6, total_cases 5220, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2022, month 7, total_cases 5308, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2022, month 8, total_cases 5348, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2022, month 9, total_cases 5460, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2022, month 10, total_cases 5513, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2022, month 11, total_cases 5785, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'PAL', year 2022, month 12, total_cases 5971, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2020, month 3, total_cases 1065, total_deaths 138 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2020, month 4, total_cases 36976, total_deaths 4782 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2020, month 5, total_cases 164476, total_deaths 20710 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2020, month 6, total_cases 285213, total_deaths 37898 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2020, month 7, total_cases 407492, total_deaths 55982 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2020, month 8, total_cases 647166, total_deaths 73612 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2020, month 9, total_cases 811768, total_deaths 82135 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2020, month 10, total_cases 900180, total_deaths 86494 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2020, month 11, total_cases 962530, total_deaths 89449 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2020, month 12, total_cases 1015137, total_deaths 93070 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2021, month 1, total_cases 1138239, total_deaths 103810 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2021, month 2, total_cases 1323863, total_deaths 122502 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2021, month 3, total_cases 1548807, total_deaths 143416 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2021, month 4, total_cases 1799445, total_deaths 166701 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2021, month 5, total_cases 1955469, total_deaths 183783 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2021, month 6, total_cases 2052065, total_deaths 192331 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2021, month 7, total_cases 2111393, total_deaths 196353 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2021, month 8, total_cases 2149591, total_deaths 198263 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2021, month 9, total_cases 2175305, total_deaths 199367 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2021, month 10, total_cases 2201796, total_deaths 200246 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2021, month 11, total_cases 2236351, total_deaths 201176 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2021, month 12, total_cases 2296831, total_deaths 202690 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2022, month 1, total_cases 3239538, total_deaths 205834 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2022, month 2, total_cases 3517260, total_deaths 210672 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2022, month 3, total_cases 3547125, total_deaths 212222 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2022, month 4, total_cases 3565253, total_deaths 212824 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2022, month 5, total_cases 3580960, total_deaths 213195 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2022, month 6, total_cases 3626802, total_deaths 213509 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2022, month 7, total_cases 3909870, total_deaths 214303 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2022, month 8, total_cases 4103874, total_deaths 215762 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2022, month 9, total_cases 4144416, total_deaths 216575 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2022, month 10, total_cases 4156924, total_deaths 217012 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2022, month 11, total_cases 4252383, total_deaths 217414 } };
INSERT CountryCovid RELATION { TUPLE { country 'PE', year 2022, month 12, total_cases 4458643, total_deaths 218232 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2020, month 2, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2020, month 3, total_cases 2118, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2020, month 4, total_cases 18114, total_deaths 417 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2020, month 5, total_cases 72460, total_deaths 1543 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2020, month 6, total_cases 213470, total_deaths 4395 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2020, month 7, total_cases 278305, total_deaths 5951 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2020, month 8, total_cases 295849, total_deaths 6294 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2020, month 9, total_cases 312806, total_deaths 6484 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2020, month 10, total_cases 333970, total_deaths 6823 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2020, month 11, total_cases 400482, total_deaths 8091 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2020, month 12, total_cases 482178, total_deaths 10176 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2021, month 1, total_cases 546428, total_deaths 11683 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2021, month 2, total_cases 581365, total_deaths 12896 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2021, month 3, total_cases 672931, total_deaths 14530 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2021, month 4, total_cases 825519, total_deaths 17957 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2021, month 5, total_cases 922824, total_deaths 20850 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2021, month 6, total_cases 958408, total_deaths 22321 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2021, month 7, total_cases 1034837, total_deaths 23422 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2021, month 8, total_cases 1163688, total_deaths 25889 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2021, month 9, total_cases 1246538, total_deaths 27785 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2021, month 10, total_cases 1273560, total_deaths 28456 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2021, month 11, total_cases 1285254, total_deaths 28737 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2021, month 12, total_cases 1295933, total_deaths 28933 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2022, month 1, total_cases 1430366, total_deaths 29301 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2022, month 2, total_cases 1510221, total_deaths 30196 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2022, month 3, total_cases 1524973, total_deaths 30359 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2022, month 4, total_cases 1527956, total_deaths 30369 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2022, month 5, total_cases 1530453, total_deaths 30379 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2022, month 6, total_cases 1536479, total_deaths 30395 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2022, month 7, total_cases 1554591, total_deaths 30487 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2022, month 8, total_cases 1569076, total_deaths 30581 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2022, month 9, total_cases 1572598, total_deaths 30616 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2022, month 10, total_cases 1574094, total_deaths 30626 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2022, month 11, total_cases 1575225, total_deaths 30632 } };
INSERT CountryCovid RELATION { TUPLE { country 'PK', year 2022, month 12, total_cases 1575772, total_deaths 30636 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2020, month 3, total_cases 2311, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2020, month 4, total_cases 12877, total_deaths 644 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2020, month 5, total_cases 23786, total_deaths 1064 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2020, month 6, total_cases 34393, total_deaths 1463 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2020, month 7, total_cases 45688, total_deaths 1716 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2020, month 8, total_cases 67372, total_deaths 2039 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2020, month 9, total_cases 91514, total_deaths 2513 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2020, month 10, total_cases 362731, total_deaths 5631 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2020, month 11, total_cases 990811, total_deaths 17150 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2020, month 12, total_cases 1294878, total_deaths 28554 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2021, month 1, total_cases 1513385, total_deaths 37180 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2021, month 2, total_cases 1706986, total_deaths 43769 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2021, month 3, total_cases 2321717, total_deaths 53045 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2021, month 4, total_cases 2792142, total_deaths 67502 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2021, month 5, total_cases 2872283, total_deaths 73745 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2021, month 6, total_cases 2879912, total_deaths 75021 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2021, month 7, total_cases 2882939, total_deaths 75261 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2021, month 8, total_cases 2888670, total_deaths 75345 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2021, month 9, total_cases 2907071, total_deaths 75650 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2021, month 10, total_cases 3025247, total_deaths 76999 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2021, month 11, total_cases 3540061, total_deaths 83583 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2021, month 12, total_cases 4108215, total_deaths 97054 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2022, month 1, total_cases 4886154, total_deaths 105194 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2022, month 2, total_cases 5667054, total_deaths 111317 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2022, month 3, total_cases 5962931, total_deaths 115173 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2022, month 4, total_cases 5996514, total_deaths 116059 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2022, month 5, total_cases 6007584, total_deaths 116318 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2022, month 6, total_cases 6014992, total_deaths 116424 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2022, month 7, total_cases 6069665, total_deaths 116570 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2022, month 8, total_cases 6176885, total_deaths 117093 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2022, month 9, total_cases 6293558, total_deaths 117569 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2022, month 10, total_cases 6340435, total_deaths 118124 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2022, month 11, total_cases 6352755, total_deaths 118319 } };
INSERT CountryCovid RELATION { TUPLE { country 'PL', year 2022, month 12, total_cases 6368479, total_deaths 118533 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2020, month 3, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2020, month 4, total_cases 8, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2020, month 5, total_cases 8, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2020, month 6, total_cases 11, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2020, month 7, total_cases 72, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2020, month 8, total_cases 459, total_deaths 5 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2020, month 9, total_cases 534, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2020, month 10, total_cases 589, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2020, month 11, total_cases 656, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2020, month 12, total_cases 780, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2021, month 1, total_cases 851, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2021, month 2, total_cases 1275, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2021, month 3, total_cases 5991, total_deaths 60 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2021, month 4, total_cases 10997, total_deaths 107 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2021, month 5, total_cases 15910, total_deaths 162 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2021, month 6, total_cases 17098, total_deaths 173 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2021, month 7, total_cases 17717, total_deaths 192 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2021, month 8, total_cases 17838, total_deaths 192 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2021, month 9, total_cases 20221, total_deaths 229 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2021, month 10, total_cases 29715, total_deaths 370 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2021, month 11, total_cases 35179, total_deaths 546 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2021, month 12, total_cases 36158, total_deaths 590 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2022, month 1, total_cases 36866, total_deaths 597 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2022, month 2, total_cases 41290, total_deaths 638 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2022, month 3, total_cases 43203, total_deaths 640 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2022, month 4, total_cases 43817, total_deaths 650 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2022, month 5, total_cases 44481, total_deaths 651 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2022, month 6, total_cases 44717, total_deaths 662 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2022, month 7, total_cases 44784, total_deaths 663 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2022, month 8, total_cases 44880, total_deaths 664 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2022, month 9, total_cases 44997, total_deaths 668 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2022, month 10, total_cases 45465, total_deaths 668 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2022, month 11, total_cases 46146, total_deaths 668 } };
INSERT CountryCovid RELATION { TUPLE { country 'PNG', year 2022, month 12, total_cases 46663, total_deaths 669 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2020, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2020, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2020, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2020, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2020, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2020, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2020, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2020, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2020, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2021, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2021, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2021, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2021, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2021, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2021, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2021, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2021, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2021, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2021, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2021, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2021, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2022, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2022, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2022, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2022, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2022, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PR', year 2022, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2020, month 4, total_cases 266, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2020, month 5, total_cases 986, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2020, month 6, total_cases 2221, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2020, month 7, total_cases 5338, total_deaths 49 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2020, month 8, total_cases 17662, total_deaths 326 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2020, month 9, total_cases 40758, total_deaths 857 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2020, month 10, total_cases 63185, total_deaths 1404 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2020, month 11, total_cases 82424, total_deaths 1756 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2020, month 12, total_cases 107932, total_deaths 2262 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2021, month 1, total_cases 133227, total_deaths 2719 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2021, month 2, total_cases 159474, total_deaths 3181 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2021, month 3, total_cases 214667, total_deaths 4206 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2021, month 4, total_cases 279077, total_deaths 6385 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2021, month 5, total_cases 355384, total_deaths 9186 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2021, month 6, total_cases 423282, total_deaths 12895 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2021, month 7, total_cases 452388, total_deaths 14981 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2021, month 8, total_cases 458528, total_deaths 15767 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2021, month 9, total_cases 459967, total_deaths 16198 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2021, month 10, total_cases 461006, total_deaths 16246 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2021, month 11, total_cases 463058, total_deaths 16472 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2021, month 12, total_cases 466101, total_deaths 16624 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2022, month 1, total_cases 583662, total_deaths 17321 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2022, month 2, total_cases 641321, total_deaths 18359 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2022, month 3, total_cases 647950, total_deaths 18664 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2022, month 4, total_cases 649455, total_deaths 18870 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2022, month 5, total_cases 650661, total_deaths 18894 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2022, month 6, total_cases 655532, total_deaths 18963 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2022, month 7, total_cases 707109, total_deaths 19220 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2022, month 8, total_cases 715162, total_deaths 19478 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2022, month 9, total_cases 716543, total_deaths 19591 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2022, month 10, total_cases 717955, total_deaths 19601 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2022, month 11, total_cases 718164, total_deaths 19621 } };
INSERT CountryCovid RELATION { TUPLE { country 'PY', year 2022, month 12, total_cases 792215, total_deaths 19688 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2020, month 3, total_cases 781, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2020, month 4, total_cases 13409, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2020, month 5, total_cases 56910, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2020, month 6, total_cases 96088, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2020, month 7, total_cases 110695, total_deaths 174 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2020, month 8, total_cases 118778, total_deaths 197 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2020, month 9, total_cases 125760, total_deaths 214 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2020, month 10, total_cases 132556, total_deaths 232 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2020, month 11, total_cases 138833, total_deaths 237 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2020, month 12, total_cases 143834, total_deaths 245 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2021, month 1, total_cases 151335, total_deaths 248 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2021, month 2, total_cases 163664, total_deaths 258 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2021, month 3, total_cases 179964, total_deaths 291 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2021, month 4, total_cases 205652, total_deaths 458 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2021, month 5, total_cases 217458, total_deaths 556 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2021, month 6, total_cases 222071, total_deaths 590 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2021, month 7, total_cases 226239, total_deaths 601 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2021, month 8, total_cases 232744, total_deaths 602 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2021, month 9, total_cases 236643, total_deaths 606 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2021, month 10, total_cases 239247, total_deaths 610 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2021, month 11, total_cases 243447, total_deaths 611 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2021, month 12, total_cases 250528, total_deaths 618 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2022, month 1, total_cases 339147, total_deaths 645 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2022, month 2, total_cases 356982, total_deaths 670 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2022, month 3, total_cases 361415, total_deaths 677 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2022, month 4, total_cases 364602, total_deaths 677 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2022, month 5, total_cases 368788, total_deaths 677 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2022, month 6, total_cases 382635, total_deaths 679 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2022, month 7, total_cases 408656, total_deaths 681 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2022, month 8, total_cases 429396, total_deaths 681 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2022, month 9, total_cases 451168, total_deaths 682 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2022, month 10, total_cases 469267, total_deaths 684 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2022, month 11, total_cases 478848, total_deaths 685 } };
INSERT CountryCovid RELATION { TUPLE { country 'Q', year 2022, month 12, total_cases 489428, total_deaths 685 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2020, month 1, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2020, month 2, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2020, month 3, total_cases 2337, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2020, month 4, total_cases 106498, total_deaths 1073 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2020, month 5, total_cases 405843, total_deaths 4693 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2020, month 6, total_cases 646929, total_deaths 9306 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2020, month 7, total_cases 838461, total_deaths 13939 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2020, month 8, total_cases 992402, total_deaths 17128 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2020, month 9, total_cases 1170799, total_deaths 20630 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2020, month 10, total_cases 1606267, total_deaths 27787 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2020, month 11, total_cases 2275936, total_deaths 39491 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2020, month 12, total_cases 3127347, total_deaths 56271 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2021, month 1, total_cases 3808348, total_deaths 72029 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2021, month 2, total_cases 4198400, total_deaths 84700 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2021, month 3, total_cases 4494234, total_deaths 97219 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2021, month 4, total_cases 4750755, total_deaths 108290 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2021, month 5, total_cases 5013512, total_deaths 119464 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2021, month 6, total_cases 5449594, total_deaths 132973 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2021, month 7, total_cases 6185249, total_deaths 155952 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2021, month 8, total_cases 6820697, total_deaths 180009 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2021, month 9, total_cases 7401104, total_deaths 203549 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2021, month 10, total_cases 8377984, total_deaths 234194 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2021, month 11, total_cases 9468640, total_deaths 269900 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2021, month 12, total_cases 10320405, total_deaths 302671 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2022, month 1, total_cases 11670366, total_deaths 324672 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2022, month 2, total_cases 16161596, total_deaths 344655 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2022, month 3, total_cases 17583111, total_deaths 361348 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2022, month 4, total_cases 17917191, total_deaths 368319 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2022, month 5, total_cases 18063880, total_deaths 371464 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2022, month 6, total_cases 18161238, total_deaths 373404 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2022, month 7, total_cases 18330786, total_deaths 374683 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2022, month 8, total_cases 19244647, total_deaths 376558 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2022, month 9, total_cases 20684948, total_deaths 379438 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2022, month 10, total_cases 21124658, total_deaths 382302 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2022, month 11, total_cases 21284476, total_deaths 384103 } };
INSERT CountryCovid RELATION { TUPLE { country 'R', year 2022, month 12, total_cases 21490515, total_deaths 385789 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2020, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2020, month 4, total_cases 4428, total_deaths 218 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2020, month 5, total_cases 16851, total_deaths 539 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2020, month 6, total_cases 64530, total_deaths 1307 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2020, month 7, total_cases 191302, total_deaths 3543 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2020, month 8, total_cases 417735, total_deaths 8660 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2020, month 9, total_cases 751001, total_deaths 16937 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2020, month 10, total_cases 1166924, total_deaths 31002 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2020, month 11, total_cases 1424533, total_deaths 38730 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2020, month 12, total_cases 1625514, total_deaths 43245 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2021, month 1, total_cases 1927239, total_deaths 47974 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2021, month 2, total_cases 2107365, total_deaths 51965 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2021, month 3, total_cases 2348821, total_deaths 55858 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2021, month 4, total_cases 2977363, total_deaths 63865 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2021, month 5, total_cases 3781784, total_deaths 78093 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2021, month 6, total_cases 4470374, total_deaths 94304 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2021, month 7, total_cases 4929764, total_deaths 105721 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2021, month 8, total_cases 5185620, total_deaths 111812 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2021, month 9, total_cases 5256902, total_deaths 115179 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2021, month 10, total_cases 5288807, total_deaths 115950 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2021, month 11, total_cases 5330748, total_deaths 116589 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2021, month 12, total_cases 5654408, total_deaths 117169 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2022, month 1, total_cases 8378656, total_deaths 121273 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2022, month 2, total_cases 8900656, total_deaths 126152 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2022, month 3, total_cases 9037911, total_deaths 128019 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2022, month 4, total_cases 9072230, total_deaths 128542 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2022, month 5, total_cases 9230573, total_deaths 128889 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2022, month 6, total_cases 9367172, total_deaths 129070 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2022, month 7, total_cases 9560307, total_deaths 129369 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2022, month 8, total_cases 9678225, total_deaths 129711 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2022, month 9, total_cases 9708420, total_deaths 129897 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2022, month 10, total_cases 9718875, total_deaths 129991 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2022, month 11, total_cases 9727247, total_deaths 130025 } };
INSERT CountryCovid RELATION { TUPLE { country 'RA', year 2022, month 12, total_cases 9891139, total_deaths 130124 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2020, month 3, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2020, month 4, total_cases 23, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2020, month 5, total_cases 35, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2020, month 6, total_cases 227, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2020, month 7, total_cases 804, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2020, month 8, total_cases 1633, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2020, month 9, total_cases 3172, total_deaths 16 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2020, month 10, total_cases 6642, total_deaths 24 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2020, month 11, total_cases 10742, total_deaths 34 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2020, month 12, total_cases 14805, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2021, month 1, total_cases 21293, total_deaths 134 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2021, month 2, total_cases 28371, total_deaths 310 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2021, month 3, total_cases 39848, total_deaths 568 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2021, month 4, total_cases 46934, total_deaths 712 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2021, month 5, total_cases 54973, total_deaths 849 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2021, month 6, total_cases 69680, total_deaths 1125 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2021, month 7, total_cases 106690, total_deaths 1569 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2021, month 8, total_cases 156927, total_deaths 2261 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2021, month 9, total_cases 179220, total_deaths 2368 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2021, month 10, total_cases 186594, total_deaths 2406 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2021, month 11, total_cases 195068, total_deaths 2418 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2021, month 12, total_cases 219509, total_deaths 2444 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2022, month 1, total_cases 253036, total_deaths 2581 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2022, month 2, total_cases 263950, total_deaths 2619 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2022, month 3, total_cases 305526, total_deaths 2686 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2022, month 4, total_cases 305984, total_deaths 2688 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2022, month 5, total_cases 308126, total_deaths 2697 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2022, month 6, total_cases 322769, total_deaths 2750 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2022, month 7, total_cases 325470, total_deaths 2770 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2022, month 8, total_cases 325864, total_deaths 2778 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2022, month 9, total_cases 326308, total_deaths 2789 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2022, month 10, total_cases 326344, total_deaths 2790 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2022, month 11, total_cases 326633, total_deaths 2790 } };
INSERT CountryCovid RELATION { TUPLE { country 'RB', year 2022, month 12, total_cases 328760, total_deaths 2794 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2020, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2020, month 2, total_cases 39, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2020, month 3, total_cases 322, total_deaths 5 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2020, month 4, total_cases 429, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2020, month 5, total_cases 442, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2020, month 6, total_cases 447, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2020, month 7, total_cases 467, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2020, month 8, total_cases 488, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2020, month 9, total_cases 514, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2020, month 10, total_cases 555, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2020, month 11, total_cases 675, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2020, month 12, total_cases 799, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2021, month 1, total_cases 911, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2021, month 2, total_cases 955, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2021, month 3, total_cases 1030, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2021, month 4, total_cases 1128, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2021, month 5, total_cases 8511, total_deaths 124 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2021, month 6, total_cases 14804, total_deaths 648 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2021, month 7, total_cases 15674, total_deaths 787 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2021, month 8, total_cases 15995, total_deaths 835 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2021, month 9, total_cases 16223, total_deaths 842 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2021, month 10, total_cases 16412, total_deaths 847 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2021, month 11, total_cases 16601, total_deaths 848 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2021, month 12, total_cases 17029, total_deaths 850 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2022, month 1, total_cases 18790, total_deaths 851 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2022, month 2, total_cases 20489, total_deaths 853 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2022, month 3, total_cases 23394, total_deaths 853 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2022, month 4, total_cases 115883, total_deaths 865 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2022, month 5, total_cases 2032983, total_deaths 2255 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2022, month 6, total_cases 3767283, total_deaths 6651 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2022, month 7, total_cases 4588185, total_deaths 8927 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2022, month 8, total_cases 5308029, total_deaths 9914 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2022, month 9, total_cases 6461400, total_deaths 11053 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2022, month 10, total_cases 7712726, total_deaths 12831 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2022, month 11, total_cases 8313366, total_deaths 14334 } };
INSERT CountryCovid RELATION { TUPLE { country 'RC', year 2022, month 12, total_cases 8847360, total_deaths 15253 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2020, month 3, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2020, month 4, total_cases 50, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2020, month 5, total_cases 1011, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2020, month 6, total_cases 3745, total_deaths 47 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2020, month 7, total_cases 4608, total_deaths 59 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2020, month 8, total_cases 4711, total_deaths 62 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2020, month 9, total_cases 4829, total_deaths 62 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2020, month 10, total_cases 4866, total_deaths 62 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2020, month 11, total_cases 4913, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2020, month 12, total_cases 4963, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2021, month 1, total_cases 4981, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2021, month 2, total_cases 5004, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2021, month 3, total_cases 5161, total_deaths 67 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2021, month 4, total_cases 6411, total_deaths 88 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2021, month 5, total_cases 7091, total_deaths 98 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2021, month 6, total_cases 7141, total_deaths 98 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2021, month 7, total_cases 7151, total_deaths 98 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2021, month 8, total_cases 11296, total_deaths 100 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2021, month 9, total_cases 11371, total_deaths 100 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2021, month 10, total_cases 11518, total_deaths 100 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2021, month 11, total_cases 11708, total_deaths 101 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2021, month 12, total_cases 12163, total_deaths 101 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2022, month 1, total_cases 13919, total_deaths 110 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2022, month 2, total_cases 14225, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2022, month 3, total_cases 14649, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2022, month 4, total_cases 14649, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2022, month 5, total_cases 14649, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2022, month 6, total_cases 14649, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2022, month 7, total_cases 14764, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2022, month 8, total_cases 14862, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2022, month 9, total_cases 14913, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2022, month 10, total_cases 15260, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2022, month 11, total_cases 15311, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCA', year 2022, month 12, total_cases 15351, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2020, month 3, total_cases 19, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2020, month 4, total_cases 220, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2020, month 5, total_cases 611, total_deaths 20 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2020, month 6, total_cases 1087, total_deaths 37 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2020, month 7, total_cases 3200, total_deaths 54 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2020, month 8, total_cases 3979, total_deaths 78 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2020, month 9, total_cases 5089, total_deaths 114 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2020, month 10, total_cases 5290, total_deaths 92 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2020, month 11, total_cases 5774, total_deaths 94 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2020, month 12, total_cases 7107, total_deaths 108 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2021, month 1, total_cases 7887, total_deaths 117 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2021, month 2, total_cases 8820, total_deaths 128 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2021, month 3, total_cases 9681, total_deaths 135 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2021, month 4, total_cases 10678, total_deaths 144 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2021, month 5, total_cases 11658, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2021, month 6, total_cases 12596, total_deaths 165 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2021, month 7, total_cases 13186, total_deaths 178 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2021, month 8, total_cases 13588, total_deaths 183 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2021, month 9, total_cases 14244, total_deaths 193 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2021, month 10, total_cases 17323, total_deaths 258 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2021, month 11, total_cases 18970, total_deaths 354 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2021, month 12, total_cases 20089, total_deaths 367 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2022, month 1, total_cases 23705, total_deaths 371 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2022, month 2, total_cases 24020, total_deaths 378 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2022, month 3, total_cases 24071, total_deaths 385 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2022, month 4, total_cases 24079, total_deaths 385 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2022, month 5, total_cases 24079, total_deaths 385 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2022, month 6, total_cases 24128, total_deaths 385 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2022, month 7, total_cases 24775, total_deaths 386 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2022, month 8, total_cases 24837, total_deaths 386 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2022, month 9, total_cases 24837, total_deaths 386 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2022, month 10, total_cases 24837, total_deaths 386 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2022, month 11, total_cases 25375, total_deaths 386 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCB', year 2022, month 12, total_cases 25375, total_deaths 386 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2020, month 2, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2020, month 3, total_cases 2844, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2020, month 4, total_cases 17702, total_deaths 227 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2020, month 5, total_cases 123550, total_deaths 1054 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2020, month 6, total_cases 279393, total_deaths 5688 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2020, month 7, total_cases 355667, total_deaths 9457 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2020, month 8, total_cases 411726, total_deaths 11289 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2020, month 9, total_cases 462991, total_deaths 12741 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2020, month 10, total_cases 510256, total_deaths 14207 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2020, month 11, total_cases 551743, total_deaths 15410 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2020, month 12, total_cases 608973, total_deaths 16608 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2021, month 1, total_cases 727109, total_deaths 18452 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2021, month 2, total_cases 824625, total_deaths 20572 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2021, month 3, total_cases 995538, total_deaths 23135 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2021, month 4, total_cases 1198245, total_deaths 26353 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2021, month 5, total_cases 1384346, total_deaths 29300 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2021, month 6, total_cases 1555902, total_deaths 32545 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2021, month 7, total_cases 1615771, total_deaths 35448 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2021, month 8, total_cases 1638675, total_deaths 36937 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2021, month 9, total_cases 1654264, total_deaths 37468 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2021, month 10, total_cases 1695048, total_deaths 37757 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2021, month 11, total_cases 1762751, total_deaths 38346 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2021, month 12, total_cases 1806494, total_deaths 39115 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2022, month 1, total_cases 2165984, total_deaths 39721 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2022, month 2, total_cases 3061019, total_deaths 42353 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2022, month 3, total_cases 3470936, total_deaths 56580 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2022, month 4, total_cases 3558631, total_deaths 57527 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2022, month 5, total_cases 3702941, total_deaths 57892 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2022, month 6, total_cases 3990693, total_deaths 58479 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2022, month 7, total_cases 4241546, total_deaths 59577 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2022, month 8, total_cases 4508422, total_deaths 60451 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2022, month 9, total_cases 4624307, total_deaths 61154 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2022, month 10, total_cases 4760186, total_deaths 61677 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2022, month 11, total_cases 4920010, total_deaths 62422 } };
INSERT CountryCovid RELATION { TUPLE { country 'RCH', year 2022, month 12, total_cases 5037527, total_deaths 63172 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2020, month 3, total_cases 22, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2020, month 4, total_cases 1495, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2020, month 5, total_cases 3706, total_deaths 23 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2020, month 6, total_cases 5391, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2020, month 7, total_cases 7308, total_deaths 46 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2020, month 8, total_cases 9409, total_deaths 59 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2020, month 9, total_cases 10652, total_deaths 66 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2020, month 10, total_cases 12072, total_deaths 72 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2020, month 11, total_cases 13119, total_deaths 76 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2020, month 12, total_cases 13722, total_deaths 81 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2021, month 1, total_cases 14546, total_deaths 82 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2021, month 2, total_cases 15992, total_deaths 89 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2021, month 3, total_cases 19908, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2021, month 4, total_cases 22215, total_deaths 144 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2021, month 5, total_cases 23177, total_deaths 161 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2021, month 6, total_cases 23770, total_deaths 171 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2021, month 7, total_cases 25688, total_deaths 220 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2021, month 8, total_cases 29501, total_deaths 337 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2021, month 9, total_cases 30411, total_deaths 379 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2021, month 10, total_cases 30653, total_deaths 385 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2021, month 11, total_cases 30770, total_deaths 387 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2021, month 12, total_cases 32051, total_deaths 391 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2022, month 1, total_cases 36166, total_deaths 419 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2022, month 2, total_cases 36397, total_deaths 440 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2022, month 3, total_cases 36459, total_deaths 440 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2022, month 4, total_cases 36549, total_deaths 442 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2022, month 5, total_cases 36764, total_deaths 442 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2022, month 6, total_cases 36817, total_deaths 442 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2022, month 7, total_cases 37408, total_deaths 445 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2022, month 8, total_cases 37470, total_deaths 447 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2022, month 9, total_cases 37652, total_deaths 449 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2022, month 10, total_cases 38047, total_deaths 456 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2022, month 11, total_cases 38153, total_deaths 464 } };
INSERT CountryCovid RELATION { TUPLE { country 'RG', year 2022, month 12, total_cases 38210, total_deaths 466 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2020, month 3, total_cases 15, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2020, month 4, total_cases 76, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2020, month 5, total_cases 1584, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2020, month 6, total_cases 5847, total_deaths 104 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2020, month 7, total_cases 7378, total_deaths 159 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2020, month 8, total_cases 8209, total_deaths 201 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2020, month 9, total_cases 8740, total_deaths 227 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2020, month 10, total_cases 9054, total_deaths 232 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2020, month 11, total_cases 9272, total_deaths 232 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2020, month 12, total_cases 9999, total_deaths 236 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2021, month 1, total_cases 11672, total_deaths 245 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2021, month 2, total_cases 12531, total_deaths 250 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2021, month 3, total_cases 12816, total_deaths 251 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2021, month 4, total_cases 13149, total_deaths 260 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2021, month 5, total_cases 15123, total_deaths 321 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2021, month 6, total_cases 18844, total_deaths 447 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2021, month 7, total_cases 20326, total_deaths 563 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2021, month 8, total_cases 21047, total_deaths 586 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2021, month 9, total_cases 22173, total_deaths 626 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2021, month 10, total_cases 24091, total_deaths 686 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2021, month 11, total_cases 25351, total_deaths 746 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2021, month 12, total_cases 26169, total_deaths 773 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2022, month 1, total_cases 29477, total_deaths 804 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2022, month 2, total_cases 30350, total_deaths 820 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2022, month 3, total_cases 30563, total_deaths 833 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2022, month 4, total_cases 30703, total_deaths 835 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2022, month 5, total_cases 30892, total_deaths 835 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2022, month 6, total_cases 31677, total_deaths 837 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2022, month 7, total_cases 32405, total_deaths 838 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2022, month 8, total_cases 33551, total_deaths 841 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2022, month 9, total_cases 33733, total_deaths 857 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2022, month 10, total_cases 33811, total_deaths 857 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2022, month 11, total_cases 33846, total_deaths 860 } };
INSERT CountryCovid RELATION { TUPLE { country 'RH', year 2022, month 12, total_cases 33893, total_deaths 860 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2020, month 3, total_cases 1528, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2020, month 4, total_cases 10118, total_deaths 792 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2020, month 5, total_cases 26473, total_deaths 1613 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2020, month 6, total_cases 56385, total_deaths 2876 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2020, month 7, total_cases 108376, total_deaths 5131 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2020, month 8, total_cases 174796, total_deaths 7417 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2020, month 9, total_cases 287008, total_deaths 10740 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2020, month 10, total_cases 410088, total_deaths 13869 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2020, month 11, total_cases 538883, total_deaths 16945 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2020, month 12, total_cases 743198, total_deaths 22138 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2021, month 1, total_cases 1078314, total_deaths 29998 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2021, month 2, total_cases 1334634, total_deaths 36166 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2021, month 3, total_cases 1511712, total_deaths 40858 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2021, month 4, total_cases 1668368, total_deaths 45521 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2021, month 5, total_cases 1821703, total_deaths 50578 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2021, month 6, total_cases 2178272, total_deaths 58491 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2021, month 7, total_cases 3409658, total_deaths 94119 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2021, month 8, total_cases 4089801, total_deaths 133023 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2021, month 9, total_cases 4215104, total_deaths 141939 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2021, month 10, total_cases 4244358, total_deaths 143405 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2021, month 11, total_cases 4256409, total_deaths 143830 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2021, month 12, total_cases 4262720, total_deaths 144094 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2022, month 1, total_cases 4353370, total_deaths 144320 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2022, month 2, total_cases 5564448, total_deaths 148335 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2022, month 3, total_cases 6012818, total_deaths 155089 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2022, month 4, total_cases 6046796, total_deaths 156257 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2022, month 5, total_cases 6054973, total_deaths 156591 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2022, month 6, total_cases 6088460, total_deaths 156737 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2022, month 7, total_cases 6207098, total_deaths 156993 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2022, month 8, total_cases 6358808, total_deaths 157566 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2022, month 9, total_cases 6431624, total_deaths 158112 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2022, month 10, total_cases 6493079, total_deaths 158631 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2022, month 11, total_cases 6664844, total_deaths 159830 } };
INSERT CountryCovid RELATION { TUPLE { country 'RI', year 2022, month 12, total_cases 6719815, total_deaths 160612 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2020, month 3, total_cases 6, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2020, month 4, total_cases 8, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2020, month 5, total_cases 530, total_deaths 23 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2020, month 6, total_cases 4363, total_deaths 129 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2020, month 7, total_cases 6310, total_deaths 157 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2020, month 8, total_cases 7048, total_deaths 159 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2020, month 9, total_cases 7502, total_deaths 161 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2020, month 10, total_cases 7703, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2020, month 11, total_cases 8601, total_deaths 177 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2020, month 12, total_cases 14364, total_deaths 347 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2021, month 1, total_cases 16635, total_deaths 422 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2021, month 2, total_cases 17207, total_deaths 441 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2021, month 3, total_cases 17847, total_deaths 449 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2021, month 4, total_cases 18402, total_deaths 455 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2021, month 5, total_cases 19547, total_deaths 463 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2021, month 6, total_cases 20808, total_deaths 489 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2021, month 7, total_cases 25691, total_deaths 562 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2021, month 8, total_cases 33580, total_deaths 715 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2021, month 9, total_cases 36030, total_deaths 775 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2021, month 10, total_cases 37320, total_deaths 797 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2021, month 11, total_cases 39266, total_deaths 832 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2021, month 12, total_cases 41473, total_deaths 866 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2022, month 1, total_cases 58243, total_deaths 953 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2022, month 2, total_cases 58633, total_deaths 979 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2022, month 3, total_cases 58669, total_deaths 982 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2022, month 4, total_cases 58710, total_deaths 982 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2022, month 5, total_cases 59141, total_deaths 982 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2022, month 6, total_cases 59814, total_deaths 983 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2022, month 7, total_cases 62572, total_deaths 992 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2022, month 8, total_cases 62765, total_deaths 993 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2022, month 9, total_cases 62815, total_deaths 995 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2022, month 10, total_cases 63364, total_deaths 997 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2022, month 11, total_cases 63420, total_deaths 997 } };
INSERT CountryCovid RELATION { TUPLE { country 'RIM', year 2022, month 12, total_cases 63425, total_deaths 997 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2020, month 2, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2020, month 3, total_cases 470, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2020, month 4, total_cases 725, total_deaths 24 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2020, month 5, total_cases 1220, total_deaths 27 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2020, month 6, total_cases 1778, total_deaths 34 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2020, month 7, total_cases 4555, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2020, month 8, total_cases 17308, total_deaths 167 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2020, month 9, total_cases 39634, total_deaths 367 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2020, month 10, total_cases 81228, total_deaths 637 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2020, month 11, total_cases 127944, total_deaths 1018 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2020, month 12, total_cases 181503, total_deaths 1468 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2021, month 1, total_cases 301052, total_deaths 3082 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2021, month 2, total_cases 375050, total_deaths 4692 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2021, month 3, total_cases 468400, total_deaths 6234 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2021, month 4, total_cases 526578, total_deaths 7278 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2021, month 5, total_cases 540388, total_deaths 7729 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2021, month 6, total_cases 544866, total_deaths 7851 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2021, month 7, total_cases 561380, total_deaths 7906 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2021, month 8, total_cases 602266, total_deaths 8053 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2021, month 9, total_cases 624230, total_deaths 8325 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2021, month 10, total_cases 642024, total_deaths 8502 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2021, month 11, total_cases 670656, total_deaths 8725 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2021, month 12, total_cases 727930, total_deaths 9119 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2022, month 1, total_cases 921208, total_deaths 9606 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2022, month 2, total_cases 1068710, total_deaths 10091 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2022, month 3, total_cases 1092157, total_deaths 10303 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2022, month 4, total_cases 1096955, total_deaths 10386 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2022, month 5, total_cases 1099199, total_deaths 10429 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2022, month 6, total_cases 1112199, total_deaths 10465 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2022, month 7, total_cases 1173871, total_deaths 10532 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2022, month 8, total_cases 1209478, total_deaths 10627 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2022, month 9, total_cases 1215805, total_deaths 10676 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2022, month 10, total_cases 1218779, total_deaths 10708 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2022, month 11, total_cases 1220560, total_deaths 10737 } };
INSERT CountryCovid RELATION { TUPLE { country 'RL', year 2022, month 12, total_cases 1222515, total_deaths 10746 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2020, month 3, total_cases 57, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2020, month 4, total_cases 128, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2020, month 5, total_cases 771, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2020, month 6, total_cases 2214, total_deaths 20 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2020, month 7, total_cases 10868, total_deaths 106 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2020, month 8, total_cases 14863, total_deaths 192 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2020, month 9, total_cases 16408, total_deaths 230 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2020, month 10, total_cases 17111, total_deaths 244 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2020, month 11, total_cases 17341, total_deaths 251 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2020, month 12, total_cases 17714, total_deaths 261 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2021, month 1, total_cases 19065, total_deaths 281 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2021, month 2, total_cases 19831, total_deaths 297 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2021, month 3, total_cases 24426, total_deaths 418 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2021, month 4, total_cases 37014, total_deaths 643 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2021, month 5, total_cases 41342, total_deaths 839 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2021, month 6, total_cases 42216, total_deaths 913 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2021, month 7, total_cases 42663, total_deaths 943 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2021, month 8, total_cases 42869, total_deaths 956 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2021, month 9, total_cases 42898, total_deaths 958 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2021, month 10, total_cases 43626, total_deaths 963 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2021, month 11, total_cases 44330, total_deaths 967 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2021, month 12, total_cases 50279, total_deaths 1027 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2022, month 1, total_cases 59319, total_deaths 1274 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2022, month 2, total_cases 63659, total_deaths 1366 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2022, month 3, total_cases 64009, total_deaths 1384 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2022, month 4, total_cases 64152, total_deaths 1391 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2022, month 5, total_cases 64377, total_deaths 1395 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2022, month 6, total_cases 65381, total_deaths 1398 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2022, month 7, total_cases 66491, total_deaths 1408 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2022, month 8, total_cases 66626, total_deaths 1410 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2022, month 9, total_cases 66676, total_deaths 1410 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2022, month 10, total_cases 66749, total_deaths 1411 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2022, month 11, total_cases 67259, total_deaths 1412 } };
INSERT CountryCovid RELATION { TUPLE { country 'RM', year 2022, month 12, total_cases 67735, total_deaths 1416 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2020, month 3, total_cases 28, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2020, month 4, total_cases 490, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2020, month 5, total_cases 1265, total_deaths 77 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2020, month 6, total_cases 2181, total_deaths 116 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2020, month 7, total_cases 2535, total_deaths 124 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2020, month 8, total_cases 2776, total_deaths 126 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2020, month 9, total_cases 3118, total_deaths 131 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2020, month 10, total_cases 3554, total_deaths 136 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2020, month 11, total_cases 4710, total_deaths 156 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2020, month 12, total_cases 7090, total_deaths 269 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2021, month 1, total_cases 8091, total_deaths 330 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2021, month 2, total_cases 8376, total_deaths 353 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2021, month 3, total_cases 10042, total_deaths 385 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2021, month 4, total_cases 13858, total_deaths 484 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2021, month 5, total_cases 14267, total_deaths 517 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2021, month 6, total_cases 14426, total_deaths 525 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2021, month 7, total_cases 14584, total_deaths 532 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2021, month 8, total_cases 14889, total_deaths 539 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2021, month 9, total_cases 15219, total_deaths 548 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2021, month 10, total_cases 16073, total_deaths 563 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2021, month 11, total_cases 17434, total_deaths 606 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2021, month 12, total_cases 21008, total_deaths 660 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2022, month 1, total_cases 30052, total_deaths 714 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2022, month 2, total_cases 30381, total_deaths 722 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2022, month 3, total_cases 30484, total_deaths 727 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2022, month 4, total_cases 30833, total_deaths 732 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2022, month 5, total_cases 31097, total_deaths 734 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2022, month 6, total_cases 31165, total_deaths 737 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2022, month 7, total_cases 31228, total_deaths 739 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2022, month 8, total_cases 31412, total_deaths 739 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2022, month 9, total_cases 32638, total_deaths 742 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2022, month 10, total_cases 32733, total_deaths 742 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2022, month 11, total_cases 32760, total_deaths 742 } };
INSERT CountryCovid RELATION { TUPLE { country 'RMM', year 2022, month 12, total_cases 32770, total_deaths 743 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2020, month 3, total_cases 27, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2020, month 4, total_cases 719, total_deaths 32 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2020, month 5, total_cases 958, total_deaths 64 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2020, month 6, total_cases 1075, total_deaths 67 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2020, month 7, total_cases 1136, total_deaths 69 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2020, month 8, total_cases 1176, total_deaths 69 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2020, month 9, total_cases 1197, total_deaths 69 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2020, month 10, total_cases 1220, total_deaths 69 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2020, month 11, total_cases 1548, total_deaths 72 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2020, month 12, total_cases 3323, total_deaths 104 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2021, month 1, total_cases 4517, total_deaths 159 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2021, month 2, total_cases 4740, total_deaths 172 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2021, month 3, total_cases 5001, total_deaths 186 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2021, month 4, total_cases 5228, total_deaths 191 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2021, month 5, total_cases 5410, total_deaths 192 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2021, month 6, total_cases 5489, total_deaths 193 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2021, month 7, total_cases 5623, total_deaths 195 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2021, month 8, total_cases 5849, total_deaths 199 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2021, month 9, total_cases 6008, total_deaths 201 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2021, month 10, total_cases 6366, total_deaths 213 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2021, month 11, total_cases 7007, total_deaths 259 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2021, month 12, total_cases 7405, total_deaths 275 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2022, month 1, total_cases 8652, total_deaths 298 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2022, month 2, total_cases 8754, total_deaths 307 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2022, month 3, total_cases 8801, total_deaths 308 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2022, month 4, total_cases 8941, total_deaths 309 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2022, month 5, total_cases 9031, total_deaths 310 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2022, month 6, total_cases 9031, total_deaths 310 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2022, month 7, total_cases 9104, total_deaths 311 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2022, month 8, total_cases 9331, total_deaths 312 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2022, month 9, total_cases 9405, total_deaths 313 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2022, month 10, total_cases 9425, total_deaths 314 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2022, month 11, total_cases 9434, total_deaths 314 } };
INSERT CountryCovid RELATION { TUPLE { country 'RN', year 2022, month 12, total_cases 9473, total_deaths 314 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2020, month 2, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2020, month 3, total_cases 2245, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2020, month 4, total_cases 12240, total_deaths 717 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2020, month 5, total_cases 19257, total_deaths 1266 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2020, month 6, total_cases 26970, total_deaths 1651 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2020, month 7, total_cases 50886, total_deaths 2343 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2020, month 8, total_cases 87540, total_deaths 3621 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2020, month 9, total_cases 127572, total_deaths 4825 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2020, month 10, total_cases 241339, total_deaths 6968 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2020, month 11, total_cases 475362, total_deaths 11331 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2020, month 12, total_cases 632263, total_deaths 15767 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2021, month 1, total_cases 728743, total_deaths 18335 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2021, month 2, total_cases 801994, total_deaths 20350 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2021, month 3, total_cases 952803, total_deaths 23538 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2021, month 4, total_cases 1055265, total_deaths 28109 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2021, month 5, total_cases 1077737, total_deaths 30312 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2021, month 6, total_cases 1080792, total_deaths 33786 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2021, month 7, total_cases 1083189, total_deaths 34281 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2021, month 8, total_cases 1098765, total_deaths 34570 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2021, month 9, total_cases 1233668, total_deaths 37041 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2021, month 10, total_cases 1648031, total_deaths 47751 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2021, month 11, total_cases 1779667, total_deaths 56529 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2021, month 12, total_cases 1808891, total_deaths 58752 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2022, month 1, total_cases 2216525, total_deaths 60025 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2022, month 2, total_cases 2733484, total_deaths 63414 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2022, month 3, total_cases 2853570, total_deaths 65015 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2022, month 4, total_cases 2893876, total_deaths 65486 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2022, month 5, total_cases 2909195, total_deaths 65684 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2022, month 6, total_cases 2919461, total_deaths 65739 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2022, month 7, total_cases 3063647, total_deaths 65999 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2022, month 8, total_cases 3219354, total_deaths 66709 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2022, month 9, total_cases 3268562, total_deaths 67021 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2022, month 10, total_cases 3286735, total_deaths 67186 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2022, month 11, total_cases 3296834, total_deaths 67276 } };
INSERT CountryCovid RELATION { TUPLE { country 'RO', year 2022, month 12, total_cases 3308480, total_deaths 67374 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2020, month 1, total_cases 11, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2020, month 2, total_cases 3150, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2020, month 3, total_cases 9786, total_deaths 162 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2020, month 4, total_cases 10774, total_deaths 248 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2020, month 5, total_cases 11503, total_deaths 271 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2020, month 6, total_cases 12850, total_deaths 282 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2020, month 7, total_cases 14336, total_deaths 301 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2020, month 8, total_cases 20182, total_deaths 324 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2020, month 9, total_cases 23889, total_deaths 415 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2020, month 10, total_cases 26635, total_deaths 466 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2020, month 11, total_cases 34652, total_deaths 526 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2020, month 12, total_cases 61769, total_deaths 917 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2021, month 1, total_cases 78508, total_deaths 1425 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2021, month 2, total_cases 90031, total_deaths 1605 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2021, month 3, total_cases 103639, total_deaths 1735 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2021, month 4, total_cases 122634, total_deaths 1831 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2021, month 5, total_cases 140799, total_deaths 1963 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2021, month 6, total_cases 157723, total_deaths 2021 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2021, month 7, total_cases 199787, total_deaths 2098 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2021, month 8, total_cases 253445, total_deaths 2292 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2021, month 9, total_cases 313773, total_deaths 2497 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2021, month 10, total_cases 366386, total_deaths 2858 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2021, month 11, total_cases 452350, total_deaths 3659 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2021, month 12, total_cases 635253, total_deaths 5625 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2022, month 1, total_cases 864042, total_deaths 6772 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2022, month 2, total_cases 3273449, total_deaths 8170 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2022, month 3, total_cases 13375818, total_deaths 16590 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2022, month 4, total_cases 17275649, total_deaths 22875 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2022, month 5, total_cases 18119415, total_deaths 24197 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2022, month 6, total_cases 18368857, total_deaths 24555 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2022, month 7, total_cases 19820739, total_deaths 25068 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2022, month 8, total_cases 23327897, total_deaths 26876 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2022, month 9, total_cases 24796014, total_deaths 28445 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2022, month 10, total_cases 25615667, total_deaths 29209 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2022, month 11, total_cases 27155813, total_deaths 30568 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROK', year 2022, month 12, total_cases 29116800, total_deaths 32219 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2020, month 2, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2020, month 3, total_cases 2245, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2020, month 4, total_cases 12240, total_deaths 717 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2020, month 5, total_cases 19257, total_deaths 1266 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2020, month 6, total_cases 26970, total_deaths 1651 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2020, month 7, total_cases 50886, total_deaths 2343 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2020, month 8, total_cases 87540, total_deaths 3621 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2020, month 9, total_cases 127572, total_deaths 4825 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2020, month 10, total_cases 241339, total_deaths 6968 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2020, month 11, total_cases 475362, total_deaths 11331 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2020, month 12, total_cases 632263, total_deaths 15767 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2021, month 1, total_cases 728743, total_deaths 18335 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2021, month 2, total_cases 801994, total_deaths 20350 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2021, month 3, total_cases 952803, total_deaths 23538 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2021, month 4, total_cases 1055265, total_deaths 28109 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2021, month 5, total_cases 1077737, total_deaths 30312 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2021, month 6, total_cases 1080792, total_deaths 33786 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2021, month 7, total_cases 1083189, total_deaths 34281 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2021, month 8, total_cases 1098765, total_deaths 34570 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2021, month 9, total_cases 1233668, total_deaths 37041 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2021, month 10, total_cases 1648031, total_deaths 47751 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2021, month 11, total_cases 1779667, total_deaths 56529 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2021, month 12, total_cases 1808891, total_deaths 58752 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2022, month 1, total_cases 2216525, total_deaths 60025 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2022, month 2, total_cases 2733484, total_deaths 63414 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2022, month 3, total_cases 2853570, total_deaths 65015 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2022, month 4, total_cases 2893876, total_deaths 65486 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2022, month 5, total_cases 2909195, total_deaths 65684 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2022, month 6, total_cases 2919461, total_deaths 65739 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2022, month 7, total_cases 3063647, total_deaths 65999 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2022, month 8, total_cases 3219354, total_deaths 66709 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2022, month 9, total_cases 3268562, total_deaths 67021 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2022, month 10, total_cases 3286735, total_deaths 67186 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2022, month 11, total_cases 3296834, total_deaths 67276 } };
INSERT CountryCovid RELATION { TUPLE { country 'ROU', year 2022, month 12, total_cases 3308480, total_deaths 67374 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2020, month 1, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2020, month 2, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2020, month 3, total_cases 2084, total_deaths 88 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2020, month 4, total_cases 8488, total_deaths 568 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2020, month 5, total_cases 18086, total_deaths 957 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2020, month 6, total_cases 37514, total_deaths 1266 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2020, month 7, total_cases 93354, total_deaths 2023 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2020, month 8, total_cases 220819, total_deaths 3558 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2020, month 9, total_cases 311694, total_deaths 5504 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2020, month 10, total_cases 380729, total_deaths 7221 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2020, month 11, total_cases 431630, total_deaths 8392 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2020, month 12, total_cases 474064, total_deaths 9244 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2021, month 1, total_cases 525618, total_deaths 10749 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2021, month 2, total_cases 576352, total_deaths 12318 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2021, month 3, total_cases 747288, total_deaths 13297 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2021, month 4, total_cases 1037460, total_deaths 17234 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2021, month 5, total_cases 1230301, total_deaths 20966 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2021, month 6, total_cases 1412559, total_deaths 24662 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2021, month 7, total_cases 1588965, total_deaths 27889 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2021, month 8, total_cases 1989857, total_deaths 33448 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2021, month 9, total_cases 2549966, total_deaths 38294 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2021, month 10, total_cases 2787276, total_deaths 43172 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2021, month 11, total_cases 2832734, total_deaths 48545 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2021, month 12, total_cases 2843979, total_deaths 51504 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2022, month 1, total_cases 3560202, total_deaths 54003 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2022, month 2, total_cases 3661997, total_deaths 56451 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2022, month 3, total_cases 3678245, total_deaths 59249 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2022, month 4, total_cases 3685643, total_deaths 60341 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2022, month 5, total_cases 3690581, total_deaths 60458 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2022, month 6, total_cases 3704407, total_deaths 60555 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2022, month 7, total_cases 3776627, total_deaths 60727 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2022, month 8, total_cases 3880229, total_deaths 61814 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2022, month 9, total_cases 3948040, total_deaths 62947 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2022, month 10, total_cases 4004465, total_deaths 64074 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2022, month 11, total_cases 4036277, total_deaths 64641 } };
INSERT CountryCovid RELATION { TUPLE { country 'RP', year 2022, month 12, total_cases 4064443, total_deaths 65385 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2020, month 4, total_cases 5647, total_deaths 103 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2020, month 5, total_cases 32683, total_deaths 683 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2020, month 6, total_cases 151209, total_deaths 2657 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2020, month 7, total_cases 493183, total_deaths 8005 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2020, month 8, total_cases 627041, total_deaths 14149 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2020, month 9, total_cases 674339, total_deaths 16734 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2020, month 10, total_cases 725452, total_deaths 19276 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2020, month 11, total_cases 790004, total_deaths 21535 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2020, month 12, total_cases 1057161, total_deaths 28469 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2021, month 1, total_cases 1453761, total_deaths 44164 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2021, month 2, total_cases 1513393, total_deaths 49993 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2021, month 3, total_cases 1548157, total_deaths 52846 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2021, month 4, total_cases 1581210, total_deaths 54350 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2021, month 5, total_cases 1665617, total_deaths 56506 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2021, month 6, total_cases 1973972, total_deaths 60647 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2021, month 7, total_cases 2447454, total_deaths 72013 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2021, month 8, total_cases 2777659, total_deaths 82261 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2021, month 9, total_cases 2902672, total_deaths 87626 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2021, month 10, total_cases 2922116, total_deaths 89177 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2021, month 11, total_cases 2968052, total_deaths 89843 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2021, month 12, total_cases 3458286, total_deaths 91145 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2022, month 1, total_cases 3605222, total_deaths 95093 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2022, month 2, total_cases 3674042, total_deaths 99412 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2022, month 3, total_cases 3718953, total_deaths 100032 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2022, month 4, total_cases 3791125, total_deaths 100363 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2022, month 5, total_cases 3957777, total_deaths 101190 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2022, month 6, total_cases 3993444, total_deaths 101764 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2022, month 7, total_cases 4005124, total_deaths 101982 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2022, month 8, total_cases 4011937, total_deaths 102084 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2022, month 9, total_cases 4019077, total_deaths 102185 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2022, month 10, total_cases 4028308, total_deaths 102311 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2022, month 11, total_cases 4041890, total_deaths 102428 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSA', year 2022, month 12, total_cases 4049202, total_deaths 102568 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2020, month 2, total_cases 1, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2020, month 3, total_cases 236, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2020, month 4, total_cases 563, total_deaths 41 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2020, month 5, total_cases 687, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2020, month 6, total_cases 713, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2020, month 7, total_cases 716, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2020, month 8, total_cases 735, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2020, month 9, total_cases 749, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2020, month 10, total_cases 958, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2020, month 11, total_cases 1609, total_deaths 45 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2020, month 12, total_cases 2333, total_deaths 59 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2021, month 1, total_cases 3025, total_deaths 67 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2021, month 2, total_cases 3716, total_deaths 74 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2021, month 3, total_cases 4732, total_deaths 84 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2021, month 4, total_cases 5060, total_deaths 90 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2021, month 5, total_cases 5090, total_deaths 90 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2021, month 6, total_cases 5092, total_deaths 90 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2021, month 7, total_cases 5143, total_deaths 90 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2021, month 8, total_cases 5331, total_deaths 90 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2021, month 9, total_cases 5440, total_deaths 91 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2021, month 10, total_cases 5547, total_deaths 92 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2021, month 11, total_cases 6039, total_deaths 93 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2021, month 12, total_cases 8202, total_deaths 100 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2022, month 1, total_cases 12884, total_deaths 109 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2022, month 2, total_cases 14369, total_deaths 112 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2022, month 3, total_cases 15345, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2022, month 4, total_cases 16437, total_deaths 115 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2022, month 5, total_cases 17124, total_deaths 115 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2022, month 6, total_cases 18016, total_deaths 115 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2022, month 7, total_cases 19793, total_deaths 118 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2022, month 8, total_cases 20373, total_deaths 118 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2022, month 9, total_cases 20793, total_deaths 118 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2022, month 10, total_cases 21604, total_deaths 119 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2022, month 11, total_cases 22167, total_deaths 119 } };
INSERT CountryCovid RELATION { TUPLE { country 'RSM', year 2022, month 12, total_cases 23008, total_deaths 121 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2020, month 4, total_cases 116, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2020, month 5, total_cases 442, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2020, month 6, total_cases 650, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2020, month 7, total_cases 941, total_deaths 19 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2020, month 8, total_cases 1400, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2020, month 9, total_cases 1784, total_deaths 48 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2020, month 10, total_cases 2331, total_deaths 57 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2020, month 11, total_cases 2974, total_deaths 64 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2020, month 12, total_cases 3633, total_deaths 68 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2021, month 1, total_cases 5074, total_deaths 77 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2021, month 2, total_cases 6901, total_deaths 84 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2021, month 3, total_cases 10249, total_deaths 109 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2021, month 4, total_cases 12967, total_deaths 123 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2021, month 5, total_cases 13466, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2021, month 6, total_cases 13917, total_deaths 129 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2021, month 7, total_cases 15798, total_deaths 152 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2021, month 8, total_cases 21261, total_deaths 185 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2021, month 9, total_cases 25429, total_deaths 229 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2021, month 10, total_cases 26079, total_deaths 242 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2021, month 11, total_cases 26265, total_deaths 243 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2021, month 12, total_cases 30163, total_deaths 248 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2022, month 1, total_cases 36491, total_deaths 268 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2022, month 2, total_cases 36798, total_deaths 272 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2022, month 3, total_cases 36939, total_deaths 272 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2022, month 4, total_cases 36985, total_deaths 273 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2022, month 5, total_cases 37095, total_deaths 273 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2022, month 6, total_cases 37403, total_deaths 275 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2022, month 7, total_cases 38084, total_deaths 279 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2022, month 8, total_cases 38491, total_deaths 282 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2022, month 9, total_cases 39053, total_deaths 285 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2022, month 10, total_cases 39299, total_deaths 290 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2022, month 11, total_cases 39328, total_deaths 290 } };
INSERT CountryCovid RELATION { TUPLE { country 'RT', year 2022, month 12, total_cases 39343, total_deaths 290 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2020, month 3, total_cases 75, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2020, month 4, total_cases 243, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2020, month 5, total_cases 370, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2020, month 6, total_cases 1025, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2020, month 7, total_cases 2022, total_deaths 5 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2020, month 8, total_cases 4063, total_deaths 16 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2020, month 9, total_cases 4840, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2020, month 10, total_cases 5137, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2020, month 11, total_cases 5934, total_deaths 49 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2020, month 12, total_cases 8383, total_deaths 92 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2021, month 1, total_cases 15304, total_deaths 196 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2021, month 2, total_cases 18850, total_deaths 261 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2021, month 3, total_cases 21783, total_deaths 307 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2021, month 4, total_cases 25116, total_deaths 335 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2021, month 5, total_cases 26963, total_deaths 353 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2021, month 6, total_cases 39047, total_deaths 438 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2021, month 7, total_cases 70698, total_deaths 808 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2021, month 8, total_cases 87627, total_deaths 1089 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2021, month 9, total_cases 97517, total_deaths 1273 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2021, month 10, total_cases 99698, total_deaths 1331 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2021, month 11, total_cases 100349, total_deaths 1342 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2021, month 12, total_cases 111786, total_deaths 1350 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2022, month 1, total_cases 128891, total_deaths 1440 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2022, month 2, total_cases 129502, total_deaths 1457 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2022, month 3, total_cases 129722, total_deaths 1459 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2022, month 4, total_cases 129806, total_deaths 1459 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2022, month 5, total_cases 130057, total_deaths 1459 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2022, month 6, total_cases 131021, total_deaths 1460 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2022, month 7, total_cases 132239, total_deaths 1466 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2022, month 8, total_cases 132439, total_deaths 1466 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2022, month 9, total_cases 132521, total_deaths 1466 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2022, month 10, total_cases 132584, total_deaths 1467 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2022, month 11, total_cases 132762, total_deaths 1467 } };
INSERT CountryCovid RELATION { TUPLE { country 'RWA', year 2022, month 12, total_cases 132920, total_deaths 1467 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2020, month 2, total_cases 14, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2020, month 3, total_cases 4834, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2020, month 4, total_cases 21601, total_deaths 2586 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2020, month 5, total_cases 38661, total_deaths 4395 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2020, month 6, total_cases 67924, total_deaths 5333 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2020, month 7, total_cases 77076, total_deaths 5743 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2020, month 8, total_cases 84379, total_deaths 5821 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2020, month 9, total_cases 92863, total_deaths 5893 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2020, month 10, total_cases 124355, total_deaths 5938 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2020, month 11, total_cases 243129, total_deaths 6681 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2020, month 12, total_cases 437379, total_deaths 8727 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2021, month 1, total_cases 566957, total_deaths 11591 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2021, month 2, total_cases 657309, total_deaths 12826 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2021, month 3, total_cases 804886, total_deaths 13465 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2021, month 4, total_cases 973604, total_deaths 14048 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2021, month 5, total_cases 1068473, total_deaths 14451 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2021, month 6, total_cases 1089990, total_deaths 14629 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2021, month 7, total_cases 1100040, total_deaths 14656 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2021, month 8, total_cases 1126813, total_deaths 14692 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2021, month 9, total_cases 1152886, total_deaths 14864 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2021, month 10, total_cases 1171512, total_deaths 15025 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2021, month 11, total_cases 1204859, total_deaths 15151 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2021, month 12, total_cases 1314784, total_deaths 15310 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2022, month 1, total_cases 2070456, total_deaths 15855 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2022, month 2, total_cases 2441142, total_deaths 17142 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2022, month 3, total_cases 2487852, total_deaths 18365 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2022, month 4, total_cases 2500917, total_deaths 18772 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2022, month 5, total_cases 2507948, total_deaths 18977 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2022, month 6, total_cases 2519199, total_deaths 19124 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2022, month 7, total_cases 2539715, total_deaths 19358 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2022, month 8, total_cases 2564423, total_deaths 19810 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2022, month 9, total_cases 2588441, total_deaths 20225 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2022, month 10, total_cases 2611580, total_deaths 20659 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2022, month 11, total_cases 2626686, total_deaths 21034 } };
INSERT CountryCovid RELATION { TUPLE { country 'S', year 2022, month 12, total_cases 2674862, total_deaths 21827 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2020, month 3, total_cases 1563, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2020, month 4, total_cases 22753, total_deaths 162 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2020, month 5, total_cases 85261, total_deaths 503 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2020, month 6, total_cases 190823, total_deaths 1649 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2020, month 7, total_cases 275905, total_deaths 2866 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2020, month 8, total_cases 315772, total_deaths 3897 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2020, month 9, total_cases 334605, total_deaths 4768 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2020, month 10, total_cases 347282, total_deaths 5402 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2020, month 11, total_cases 357360, total_deaths 5896 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2020, month 12, total_cases 362741, total_deaths 6223 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2021, month 1, total_cases 368074, total_deaths 6375 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2021, month 2, total_cases 377383, total_deaths 6494 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2021, month 3, total_cases 390007, total_deaths 6669 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2021, month 4, total_cases 417363, total_deaths 6957 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2021, month 5, total_cases 450436, total_deaths 7362 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2021, month 6, total_cases 487592, total_deaths 7819 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2021, month 7, total_cases 525730, total_deaths 8237 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2021, month 8, total_cases 543318, total_deaths 8512 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2021, month 9, total_cases 547134, total_deaths 8716 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2021, month 10, total_cases 548617, total_deaths 8794 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2021, month 11, total_cases 549752, total_deaths 8836 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2021, month 12, total_cases 556236, total_deaths 8877 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2022, month 1, total_cases 687264, total_deaths 8940 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2022, month 2, total_cases 745027, total_deaths 8998 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2022, month 3, total_cases 750814, total_deaths 9045 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2022, month 4, total_cases 754011, total_deaths 9088 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2022, month 5, total_cases 768079, total_deaths 9148 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2022, month 6, total_cases 795186, total_deaths 9208 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2022, month 7, total_cases 809672, total_deaths 9251 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2022, month 8, total_cases 813461, total_deaths 9295 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2022, month 9, total_cases 816498, total_deaths 9352 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2022, month 10, total_cases 822459, total_deaths 9407 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2022, month 11, total_cases 825597, total_deaths 9464 } };
INSERT CountryCovid RELATION { TUPLE { country 'SA', year 2022, month 12, total_cases 827004, total_deaths 9518 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2020, month 1, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2020, month 2, total_cases 8, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2020, month 3, total_cases 1672, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2020, month 4, total_cases 5336, total_deaths 256 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2020, month 5, total_cases 6974, total_deaths 305 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2020, month 6, total_cases 7259, total_deaths 309 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2020, month 7, total_cases 7467, total_deaths 312 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2020, month 8, total_cases 8202, total_deaths 314 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2020, month 9, total_cases 10239, total_deaths 329 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2020, month 10, total_cases 16444, total_deaths 350 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2020, month 11, total_cases 25521, total_deaths 442 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2020, month 12, total_cases 36422, total_deaths 592 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2021, month 1, total_cases 45546, total_deaths 703 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2021, month 2, total_cases 58095, total_deaths 784 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2021, month 3, total_cases 78043, total_deaths 882 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2021, month 4, total_cases 87131, total_deaths 932 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2021, month 5, total_cases 92715, total_deaths 975 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2021, month 6, total_cases 96009, total_deaths 984 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2021, month 7, total_cases 107458, total_deaths 1005 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2021, month 8, total_cases 127975, total_deaths 1057 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2021, month 9, total_cases 142110, total_deaths 1118 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2021, month 10, total_cases 159424, total_deaths 1245 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2021, month 11, total_cases 188390, total_deaths 1478 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2021, month 12, total_cases 270829, total_deaths 1714 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2022, month 1, total_cases 489870, total_deaths 1990 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2022, month 2, total_cases 637757, total_deaths 2366 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2022, month 3, total_cases 883676, total_deaths 3144 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2022, month 4, total_cases 1023013, total_deaths 3939 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2022, month 5, total_cases 1092193, total_deaths 4522 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2022, month 6, total_cases 1145610, total_deaths 4875 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2022, month 7, total_cases 1171034, total_deaths 5012 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2022, month 8, total_cases 1258798, total_deaths 5577 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2022, month 9, total_cases 1292940, total_deaths 5981 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2022, month 10, total_cases 1348737, total_deaths 6568 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2022, month 11, total_cases 1394254, total_deaths 7265 } };
INSERT CountryCovid RELATION { TUPLE { country 'SF', year 2022, month 12, total_cases 1438205, total_deaths 7933 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2020, month 1, total_cases 13, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2020, month 2, total_cases 102, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2020, month 3, total_cases 926, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2020, month 4, total_cases 16169, total_deaths 15 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2020, month 5, total_cases 34884, total_deaths 23 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2020, month 6, total_cases 43907, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2020, month 7, total_cases 52205, total_deaths 27 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2020, month 8, total_cases 56812, total_deaths 27 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2020, month 9, total_cases 57765, total_deaths 27 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2020, month 10, total_cases 58015, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2020, month 11, total_cases 58218, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2020, month 12, total_cases 58599, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2021, month 1, total_cases 59536, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2021, month 2, total_cases 59936, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2021, month 3, total_cases 60381, total_deaths 30 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2021, month 4, total_cases 61145, total_deaths 30 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2021, month 5, total_cases 62051, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2021, month 6, total_cases 62579, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2021, month 7, total_cases 64981, total_deaths 37 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2021, month 8, total_cases 67620, total_deaths 55 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2021, month 9, total_cases 96521, total_deaths 95 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2021, month 10, total_cases 198374, total_deaths 407 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2021, month 11, total_cases 264725, total_deaths 718 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2021, month 12, total_cases 279405, total_deaths 828 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2022, month 1, total_cases 352811, total_deaths 855 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2022, month 2, total_cases 724424, total_deaths 1019 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2022, month 3, total_cases 1096428, total_deaths 1268 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2022, month 4, total_cases 1193250, total_deaths 1335 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2022, month 5, total_cases 1303294, total_deaths 1389 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2022, month 6, total_cases 1444068, total_deaths 1413 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2022, month 7, total_cases 1714056, total_deaths 1500 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2022, month 8, total_cases 1839244, total_deaths 1592 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2022, month 9, total_cases 1907907, total_deaths 1618 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2022, month 10, total_cases 2102372, total_deaths 1680 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2022, month 11, total_cases 2167897, total_deaths 1703 } };
INSERT CountryCovid RELATION { TUPLE { country 'SGP', year 2022, month 12, total_cases 2202214, total_deaths 1711 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2020, month 3, total_cases 363, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2020, month 4, total_cases 1396, total_deaths 23 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2020, month 5, total_cases 1521, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2020, month 6, total_cases 1667, total_deaths 28 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2020, month 7, total_cases 2292, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2020, month 8, total_cases 3917, total_deaths 33 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2020, month 9, total_cases 10141, total_deaths 48 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2020, month 10, total_cases 59823, total_deaths 219 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2020, month 11, total_cases 121347, total_deaths 839 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2020, month 12, total_cases 274603, total_deaths 2138 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2021, month 1, total_cases 436016, total_deaths 4642 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2021, month 2, total_cases 588671, total_deaths 7189 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2021, month 3, total_cases 707876, total_deaths 9719 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2021, month 4, total_cases 754078, total_deaths 11684 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2021, month 5, total_cases 771008, total_deaths 12343 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2021, month 6, total_cases 775011, total_deaths 12510 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2021, month 7, total_cases 776444, total_deaths 12540 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2021, month 8, total_cases 779767, total_deaths 12548 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2021, month 9, total_cases 804372, total_deaths 12637 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2021, month 10, total_cases 898926, total_deaths 13034 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2021, month 11, total_cases 1170200, total_deaths 14418 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2021, month 12, total_cases 1371082, total_deaths 16635 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2022, month 1, total_cases 1569299, total_deaths 17830 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2022, month 2, total_cases 2119358, total_deaths 18485 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2022, month 3, total_cases 2443137, total_deaths 19352 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2022, month 4, total_cases 2528216, total_deaths 19879 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2022, month 5, total_cases 2542564, total_deaths 20100 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2022, month 6, total_cases 2551116, total_deaths 20147 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2022, month 7, total_cases 2581047, total_deaths 20223 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2022, month 8, total_cases 2584276, total_deaths 20236 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2022, month 9, total_cases 2625317, total_deaths 20457 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2022, month 10, total_cases 2643182, total_deaths 20606 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2022, month 11, total_cases 2650230, total_deaths 20733 } };
INSERT CountryCovid RELATION { TUPLE { country 'SK', year 2022, month 12, total_cases 2657292, total_deaths 20823 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2020, month 10, total_cases 8, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2020, month 11, total_cases 17, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2020, month 12, total_cases 17, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2021, month 1, total_cases 17, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2021, month 2, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2021, month 3, total_cases 19, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2021, month 4, total_cases 20, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2021, month 5, total_cases 20, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2021, month 6, total_cases 20, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2021, month 7, total_cases 20, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2021, month 8, total_cases 20, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2021, month 9, total_cases 20, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2021, month 10, total_cases 20, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2021, month 11, total_cases 20, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2021, month 12, total_cases 24, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2022, month 1, total_cases 1183, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2022, month 2, total_cases 7049, total_deaths 99 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2022, month 3, total_cases 11470, total_deaths 133 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2022, month 4, total_cases 14786, total_deaths 141 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2022, month 5, total_cases 18174, total_deaths 146 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2022, month 6, total_cases 21544, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2022, month 7, total_cases 21544, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2022, month 8, total_cases 21544, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2022, month 9, total_cases 21544, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2022, month 10, total_cases 21544, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2022, month 11, total_cases 24575, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLB', year 2022, month 12, total_cases 24575, total_deaths 153 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2020, month 4, total_cases 1429, total_deaths 91 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2020, month 5, total_cases 1473, total_deaths 108 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2020, month 6, total_cases 1600, total_deaths 111 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2020, month 7, total_cases 2156, total_deaths 119 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2020, month 8, total_cases 2883, total_deaths 133 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2020, month 9, total_cases 5690, total_deaths 150 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2020, month 10, total_cases 34307, total_deaths 338 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2020, month 11, total_cases 75814, total_deaths 1435 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2020, month 12, total_cases 122152, total_deaths 2697 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2021, month 1, total_cases 166473, total_deaths 3503 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2021, month 2, total_cases 190081, total_deaths 3836 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2021, month 3, total_cases 215602, total_deaths 4047 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2021, month 4, total_cases 240292, total_deaths 4250 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2021, month 5, total_cases 253722, total_deaths 4375 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2021, month 6, total_cases 257335, total_deaths 4419 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2021, month 7, total_cases 259215, total_deaths 4429 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2021, month 8, total_cases 267198, total_deaths 4450 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2021, month 9, total_cases 293364, total_deaths 4561 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2021, month 10, total_cases 335850, total_deaths 4745 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2021, month 11, total_cases 420898, total_deaths 5224 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2021, month 12, total_cases 464048, total_deaths 5589 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2022, month 1, total_cases 710821, total_deaths 5866 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2022, month 2, total_cases 892620, total_deaths 6307 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2022, month 3, total_cases 968109, total_deaths 6487 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2022, month 4, total_cases 1010058, total_deaths 6592 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2022, month 5, total_cases 1025030, total_deaths 6637 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2022, month 6, total_cases 1038716, total_deaths 6651 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2022, month 7, total_cases 1083067, total_deaths 6698 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2022, month 8, total_cases 1126715, total_deaths 6783 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2022, month 9, total_cases 1183392, total_deaths 6822 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2022, month 10, total_cases 1233482, total_deaths 6889 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2022, month 11, total_cases 1258446, total_deaths 6933 } };
INSERT CountryCovid RELATION { TUPLE { country 'SLO', year 2022, month 12, total_cases 1307442, total_deaths 7008 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2020, month 3, total_cases 9, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2020, month 4, total_cases 10, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2020, month 5, total_cases 23, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2020, month 6, total_cases 515, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2020, month 7, total_cases 1650, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2020, month 8, total_cases 4034, total_deaths 71 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2020, month 9, total_cases 4877, total_deaths 104 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2020, month 10, total_cases 5203, total_deaths 111 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2020, month 11, total_cases 5312, total_deaths 117 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2020, month 12, total_cases 6210, total_deaths 122 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2021, month 1, total_cases 8438, total_deaths 154 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2021, month 2, total_cases 8929, total_deaths 172 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2021, month 3, total_cases 9122, total_deaths 177 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2021, month 4, total_cases 10363, total_deaths 204 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2021, month 5, total_cases 14954, total_deaths 302 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2021, month 6, total_cases 21732, total_deaths 522 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2021, month 7, total_cases 25351, total_deaths 649 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2021, month 8, total_cases 29293, total_deaths 721 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2021, month 9, total_cases 41631, total_deaths 884 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2021, month 10, total_cases 49019, total_deaths 1092 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2021, month 11, total_cases 50848, total_deaths 1167 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2021, month 12, total_cases 52446, total_deaths 1189 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2022, month 1, total_cases 73769, total_deaths 1263 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2022, month 2, total_cases 78216, total_deaths 1317 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2022, month 3, total_cases 79221, total_deaths 1324 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2022, month 4, total_cases 79336, total_deaths 1328 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2022, month 5, total_cases 80547, total_deaths 1350 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2022, month 6, total_cases 80864, total_deaths 1369 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2022, month 7, total_cases 80966, total_deaths 1380 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2022, month 8, total_cases 81039, total_deaths 1383 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2022, month 9, total_cases 81106, total_deaths 1385 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2022, month 10, total_cases 81185, total_deaths 1390 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2022, month 11, total_cases 81581, total_deaths 1393 } };
INSERT CountryCovid RELATION { TUPLE { country 'SME', year 2022, month 12, total_cases 81581, total_deaths 1393 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2020, month 4, total_cases 933, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2020, month 5, total_cases 3645, total_deaths 42 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2020, month 6, total_cases 6793, total_deaths 112 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2020, month 7, total_cases 10232, total_deaths 205 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2020, month 8, total_cases 13611, total_deaths 284 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2020, month 9, total_cases 14982, total_deaths 311 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2020, month 10, total_cases 15616, total_deaths 324 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2020, month 11, total_cases 16089, total_deaths 333 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2020, month 12, total_cases 19140, total_deaths 410 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2021, month 1, total_cases 26523, total_deaths 628 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2021, month 2, total_cases 34520, total_deaths 872 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2021, month 3, total_cases 38705, total_deaths 1051 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2021, month 4, total_cases 40344, total_deaths 1107 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2021, month 5, total_cases 41416, total_deaths 1139 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2021, month 6, total_cases 43128, total_deaths 1166 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2021, month 7, total_cases 62290, total_deaths 1353 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2021, month 8, total_cases 72805, total_deaths 1765 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2021, month 9, total_cases 73775, total_deaths 1858 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2021, month 10, total_cases 73917, total_deaths 1878 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2021, month 11, total_cases 73987, total_deaths 1885 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2021, month 12, total_cases 75055, total_deaths 1890 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2022, month 1, total_cases 84999, total_deaths 1946 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2022, month 2, total_cases 85693, total_deaths 1960 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2022, month 3, total_cases 85895, total_deaths 1988 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2022, month 4, total_cases 85997, total_deaths 1967 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2022, month 5, total_cases 86111, total_deaths 1967 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2022, month 6, total_cases 86325, total_deaths 1968 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2022, month 7, total_cases 87386, total_deaths 1968 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2022, month 8, total_cases 88098, total_deaths 1968 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2022, month 9, total_cases 88398, total_deaths 1968 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2022, month 10, total_cases 88679, total_deaths 1968 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2022, month 11, total_cases 88873, total_deaths 1968 } };
INSERT CountryCovid RELATION { TUPLE { country 'SN', year 2022, month 12, total_cases 88900, total_deaths 1968 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2020, month 3, total_cases 5, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2020, month 4, total_cases 601, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2020, month 5, total_cases 1976, total_deaths 78 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2020, month 6, total_cases 2924, total_deaths 90 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2020, month 7, total_cases 3212, total_deaths 93 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2020, month 8, total_cases 3310, total_deaths 98 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2020, month 9, total_cases 3588, total_deaths 99 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2020, month 10, total_cases 3941, total_deaths 104 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2020, month 11, total_cases 4451, total_deaths 113 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2020, month 12, total_cases 4714, total_deaths 130 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2021, month 1, total_cases 4784, total_deaths 130 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2021, month 2, total_cases 7257, total_deaths 239 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2021, month 3, total_cases 11398, total_deaths 529 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2021, month 4, total_cases 13915, total_deaths 713 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2021, month 5, total_cases 14662, total_deaths 769 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2021, month 6, total_cases 14946, total_deaths 775 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2021, month 7, total_cases 15403, total_deaths 811 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2021, month 8, total_cases 17466, total_deaths 977 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2021, month 9, total_cases 19980, total_deaths 1111 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2021, month 10, total_cases 21998, total_deaths 1208 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2021, month 11, total_cases 23016, total_deaths 1327 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2021, month 12, total_cases 23532, total_deaths 1333 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2022, month 1, total_cases 25388, total_deaths 1335 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2022, month 2, total_cases 26313, total_deaths 1348 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2022, month 3, total_cases 26410, total_deaths 1361 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2022, month 4, total_cases 26485, total_deaths 1361 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2022, month 5, total_cases 26565, total_deaths 1361 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2022, month 6, total_cases 26803, total_deaths 1361 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2022, month 7, total_cases 26957, total_deaths 1361 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2022, month 8, total_cases 27020, total_deaths 1361 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2022, month 9, total_cases 27214, total_deaths 1361 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2022, month 10, total_cases 27237, total_deaths 1361 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2022, month 11, total_cases 27286, total_deaths 1361 } };
INSERT CountryCovid RELATION { TUPLE { country 'SP', year 2022, month 12, total_cases 27300, total_deaths 1361 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2020, month 4, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2020, month 5, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2020, month 6, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2020, month 7, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2020, month 8, total_cases 5, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2020, month 9, total_cases 16, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2020, month 10, total_cases 16, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2020, month 11, total_cases 16, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2020, month 12, total_cases 16, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2021, month 1, total_cases 24, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2021, month 2, total_cases 24, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2021, month 3, total_cases 24, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2021, month 4, total_cases 25, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2021, month 5, total_cases 25, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2021, month 6, total_cases 26, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2021, month 7, total_cases 28, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2021, month 8, total_cases 30, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2021, month 9, total_cases 31, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2021, month 10, total_cases 32, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2021, month 11, total_cases 70, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2021, month 12, total_cases 100, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2022, month 1, total_cases 891, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2022, month 2, total_cases 1070, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2022, month 3, total_cases 1957, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2022, month 4, total_cases 2701, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2022, month 5, total_cases 2748, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2022, month 6, total_cases 2779, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2022, month 7, total_cases 3083, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2022, month 8, total_cases 3131, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2022, month 9, total_cases 3188, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2022, month 10, total_cases 3231, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2022, month 11, total_cases 3250, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'SPMI', year 2022, month 12, total_cases 3349, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2020, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2020, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2020, month 4, total_cases 9009, total_deaths 179 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2020, month 5, total_cases 11412, total_deaths 243 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2020, month 6, total_cases 14564, total_deaths 277 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2020, month 7, total_cases 25552, total_deaths 573 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2020, month 8, total_cases 31406, total_deaths 713 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2020, month 9, total_cases 33551, total_deaths 749 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2020, month 10, total_cases 46954, total_deaths 820 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2020, month 11, total_cases 175438, total_deaths 1604 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2020, month 12, total_cases 337923, total_deaths 3211 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2021, month 1, total_cases 395263, total_deaths 4020 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2021, month 2, total_cases 459259, total_deaths 4443 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2021, month 3, total_cases 600596, total_deaths 5308 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2021, month 4, total_cases 689557, total_deaths 6362 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2021, month 5, total_cases 712472, total_deaths 6865 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2021, month 6, total_cases 716562, total_deaths 7047 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2021, month 7, total_cases 721918, total_deaths 7114 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2021, month 8, total_cases 762933, total_deaths 7292 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2021, month 9, total_cases 941989, total_deaths 8234 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2021, month 10, total_cases 1142749, total_deaths 9955 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2021, month 11, total_cases 1254845, total_deaths 11691 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2021, month 12, total_cases 1299339, total_deaths 12714 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2022, month 1, total_cases 1677798, total_deaths 13629 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2022, month 2, total_cases 1910975, total_deaths 15241 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2022, month 3, total_cases 1976567, total_deaths 15799 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2022, month 4, total_cases 2006353, total_deaths 15991 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2022, month 5, total_cases 2017454, total_deaths 16081 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2022, month 6, total_cases 2029403, total_deaths 16126 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2022, month 7, total_cases 2123025, total_deaths 16280 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2022, month 8, total_cases 2283195, total_deaths 16684 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2022, month 9, total_cases 2361738, total_deaths 17006 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2022, month 10, total_cases 2404112, total_deaths 17242 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2022, month 11, total_cases 2423385, total_deaths 17387 } };
INSERT CountryCovid RELATION { TUPLE { country 'SRB', year 2022, month 12, total_cases 2446253, total_deaths 17519 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2020, month 4, total_cases 14, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2020, month 5, total_cases 483, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2020, month 6, total_cases 714, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2020, month 7, total_cases 871, total_deaths 15 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2020, month 8, total_cases 896, total_deaths 15 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2020, month 9, total_cases 911, total_deaths 15 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2020, month 10, total_cases 945, total_deaths 16 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2020, month 11, total_cases 991, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2020, month 12, total_cases 1014, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2021, month 1, total_cases 1257, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2021, month 2, total_cases 1786, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2021, month 3, total_cases 2223, total_deaths 34 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2021, month 4, total_cases 2302, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2021, month 5, total_cases 2345, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2021, month 6, total_cases 2366, total_deaths 41 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2021, month 7, total_cases 2454, total_deaths 37 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2021, month 8, total_cases 2608, total_deaths 37 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2021, month 9, total_cases 3459, total_deaths 50 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2021, month 10, total_cases 3714, total_deaths 56 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2021, month 11, total_cases 3731, total_deaths 56 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2021, month 12, total_cases 3897, total_deaths 57 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2022, month 1, total_cases 5890, total_deaths 69 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2022, month 2, total_cases 5934, total_deaths 72 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2022, month 3, total_cases 5945, total_deaths 73 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2022, month 4, total_cases 5957, total_deaths 73 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2022, month 5, total_cases 5991, total_deaths 73 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2022, month 6, total_cases 6043, total_deaths 73 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2022, month 7, total_cases 6100, total_deaths 74 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2022, month 8, total_cases 6153, total_deaths 76 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2022, month 9, total_cases 6230, total_deaths 77 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2022, month 10, total_cases 6266, total_deaths 77 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2022, month 11, total_cases 6278, total_deaths 77 } };
INSERT CountryCovid RELATION { TUPLE { country 'STP', year 2022, month 12, total_cases 6279, total_deaths 77 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2020, month 3, total_cases 0, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2020, month 4, total_cases 375, total_deaths 31 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2020, month 5, total_cases 4800, total_deaths 286 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2020, month 6, total_cases 9372, total_deaths 572 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2020, month 7, total_cases 11579, total_deaths 746 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2020, month 8, total_cases 13189, total_deaths 823 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2020, month 9, total_cases 13646, total_deaths 836 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2020, month 10, total_cases 13804, total_deaths 837 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2020, month 11, total_cases 18045, total_deaths 1249 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2020, month 12, total_cases 25500, total_deaths 1468 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2021, month 1, total_cases 29380, total_deaths 1807 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2021, month 2, total_cases 30347, total_deaths 1880 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2021, month 3, total_cases 31833, total_deaths 2063 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2021, month 4, total_cases 33944, total_deaths 2349 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2021, month 5, total_cases 35495, total_deaths 2631 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2021, month 6, total_cases 36658, total_deaths 2754 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2021, month 7, total_cases 37138, total_deaths 2776 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2021, month 8, total_cases 37709, total_deaths 2831 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2021, month 9, total_cases 38283, total_deaths 2902 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2021, month 10, total_cases 40433, total_deaths 3099 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2021, month 11, total_cases 43084, total_deaths 3159 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2021, month 12, total_cases 46518, total_deaths 3331 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2022, month 1, total_cases 57632, total_deaths 3441 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2022, month 2, total_cases 61458, total_deaths 3908 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2022, month 3, total_cases 61955, total_deaths 4907 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2022, month 4, total_cases 62117, total_deaths 4931 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2022, month 5, total_cases 62355, total_deaths 4942 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2022, month 6, total_cases 62624, total_deaths 4951 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2022, month 7, total_cases 63006, total_deaths 4957 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2022, month 8, total_cases 63228, total_deaths 4961 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2022, month 9, total_cases 63285, total_deaths 4961 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2022, month 10, total_cases 63481, total_deaths 4972 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2022, month 11, total_cases 63637, total_deaths 4990 } };
INSERT CountryCovid RELATION { TUPLE { country 'SUD', year 2022, month 12, total_cases 63686, total_deaths 4994 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2020, month 3, total_cases 10, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2020, month 4, total_cases 11, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2020, month 5, total_cases 11, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2020, month 6, total_cases 81, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2020, month 7, total_cases 114, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2020, month 8, total_cases 131, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2020, month 9, total_cases 141, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2020, month 10, total_cases 152, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2020, month 11, total_cases 172, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2020, month 12, total_cases 226, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2021, month 1, total_cases 1186, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2021, month 2, total_cases 2592, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2021, month 3, total_cases 4114, total_deaths 20 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2021, month 4, total_cases 5838, total_deaths 27 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2021, month 5, total_cases 11468, total_deaths 40 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2021, month 6, total_cases 15671, total_deaths 56 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2021, month 7, total_cases 18328, total_deaths 79 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2021, month 8, total_cases 20038, total_deaths 102 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2021, month 9, total_cases 21473, total_deaths 112 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2021, month 10, total_cases 22243, total_deaths 119 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2021, month 11, total_cases 23417, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2021, month 12, total_cases 24788, total_deaths 134 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2022, month 1, total_cases 37190, total_deaths 154 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2022, month 2, total_cases 39336, total_deaths 163 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2022, month 3, total_cases 40421, total_deaths 164 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2022, month 4, total_cases 42502, total_deaths 166 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2022, month 5, total_cases 44016, total_deaths 167 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2022, month 6, total_cases 44669, total_deaths 167 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2022, month 7, total_cases 45429, total_deaths 168 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2022, month 8, total_cases 46081, total_deaths 169 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2022, month 9, total_cases 47141, total_deaths 169 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2022, month 10, total_cases 49035, total_deaths 171 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2022, month 11, total_cases 50068, total_deaths 171 } };
INSERT CountryCovid RELATION { TUPLE { country 'SY', year 2022, month 12, total_cases 50355, total_deaths 172 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2020, month 3, total_cases 10, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2020, month 4, total_cases 43, total_deaths 3 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2020, month 5, total_cases 122, total_deaths 5 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2020, month 6, total_cases 279, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2020, month 7, total_cases 757, total_deaths 43 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2020, month 8, total_cases 2765, total_deaths 112 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2020, month 9, total_cases 4200, total_deaths 200 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2020, month 10, total_cases 5728, total_deaths 288 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2020, month 11, total_cases 7887, total_deaths 417 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2020, month 12, total_cases 11434, total_deaths 711 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2021, month 1, total_cases 14048, total_deaths 921 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2021, month 2, total_cases 15588, total_deaths 1027 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2021, month 3, total_cases 18909, total_deaths 1265 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2021, month 4, total_cases 22733, total_deaths 1592 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2021, month 5, total_cases 24495, total_deaths 1770 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2021, month 6, total_cases 25515, total_deaths 1876 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2021, month 7, total_cases 25963, total_deaths 1914 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2021, month 8, total_cases 27915, total_deaths 2013 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2021, month 9, total_cases 34205, total_deaths 2247 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2021, month 10, total_cases 43146, total_deaths 2558 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2021, month 11, total_cases 48170, total_deaths 2749 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2021, month 12, total_cases 50278, total_deaths 2897 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2022, month 1, total_cases 51402, total_deaths 2989 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2022, month 2, total_cases 54575, total_deaths 3075 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2022, month 3, total_cases 55695, total_deaths 3141 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2022, month 4, total_cases 55813, total_deaths 3150 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2022, month 5, total_cases 55892, total_deaths 3150 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2022, month 6, total_cases 55927, total_deaths 3150 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2022, month 7, total_cases 56275, total_deaths 3150 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2022, month 8, total_cases 57043, total_deaths 3163 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2022, month 9, total_cases 57302, total_deaths 3163 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2022, month 10, total_cases 57360, total_deaths 3163 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2022, month 11, total_cases 57399, total_deaths 3163 } };
INSERT CountryCovid RELATION { TUPLE { country 'SYR', year 2022, month 12, total_cases 57423, total_deaths 3163 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2020, month 5, total_cases 3807, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2020, month 6, total_cases 5900, total_deaths 52 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2020, month 7, total_cases 7366, total_deaths 60 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2020, month 8, total_cases 8550, total_deaths 68 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2020, month 9, total_cases 9726, total_deaths 75 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2020, month 10, total_cases 10977, total_deaths 82 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2020, month 11, total_cases 12155, total_deaths 86 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2020, month 12, total_cases 13665, total_deaths 90 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2021, month 1, total_cases 13714, total_deaths 91 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2021, month 2, total_cases 13714, total_deaths 91 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2021, month 3, total_cases 13714, total_deaths 91 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2021, month 4, total_cases 13714, total_deaths 91 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2021, month 5, total_cases 13714, total_deaths 91 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2021, month 6, total_cases 13905, total_deaths 91 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2021, month 7, total_cases 15482, total_deaths 122 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2021, month 8, total_cases 17252, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2021, month 9, total_cases 17484, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2021, month 10, total_cases 17486, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2021, month 11, total_cases 17493, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2021, month 12, total_cases 17493, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2022, month 1, total_cases 17706, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2022, month 2, total_cases 17786, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2022, month 3, total_cases 17786, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2022, month 4, total_cases 17786, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2022, month 5, total_cases 17786, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2022, month 6, total_cases 17786, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2022, month 7, total_cases 17786, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2022, month 8, total_cases 17786, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2022, month 9, total_cases 17786, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2022, month 10, total_cases 17786, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2022, month 11, total_cases 17786, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TAD', year 2022, month 12, total_cases 17786, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2020, month 3, total_cases 7, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2020, month 4, total_cases 73, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2020, month 5, total_cases 778, total_deaths 65 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2020, month 6, total_cases 866, total_deaths 74 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2020, month 7, total_cases 936, total_deaths 75 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2020, month 8, total_cases 1013, total_deaths 77 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2020, month 9, total_cases 1200, total_deaths 85 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2020, month 10, total_cases 1483, total_deaths 98 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2020, month 11, total_cases 1688, total_deaths 101 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2020, month 12, total_cases 2113, total_deaths 104 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2021, month 1, total_cases 3376, total_deaths 118 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2021, month 2, total_cases 3973, total_deaths 140 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2021, month 3, total_cases 4533, total_deaths 164 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2021, month 4, total_cases 4817, total_deaths 170 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2021, month 5, total_cases 4931, total_deaths 173 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2021, month 6, total_cases 4951, total_deaths 174 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2021, month 7, total_cases 4973, total_deaths 174 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2021, month 8, total_cases 4992, total_deaths 174 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2021, month 9, total_cases 5038, total_deaths 174 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2021, month 10, total_cases 5069, total_deaths 174 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2021, month 11, total_cases 5107, total_deaths 175 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2021, month 12, total_cases 5703, total_deaths 181 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2022, month 1, total_cases 7155, total_deaths 190 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2022, month 2, total_cases 7255, total_deaths 190 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2022, month 3, total_cases 7310, total_deaths 191 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2022, month 4, total_cases 7411, total_deaths 193 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2022, month 5, total_cases 7417, total_deaths 193 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2022, month 6, total_cases 7425, total_deaths 193 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2022, month 7, total_cases 7432, total_deaths 193 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2022, month 8, total_cases 7538, total_deaths 193 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2022, month 9, total_cases 7583, total_deaths 193 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2022, month 10, total_cases 7627, total_deaths 194 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2022, month 11, total_cases 7646, total_deaths 194 } };
INSERT CountryCovid RELATION { TUPLE { country 'TCH', year 2022, month 12, total_cases 7650, total_deaths 194 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2020, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2020, month 2, total_cases 42, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2020, month 3, total_cases 1651, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2020, month 4, total_cases 2954, total_deaths 54 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2020, month 5, total_cases 3081, total_deaths 57 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2020, month 6, total_cases 3171, total_deaths 58 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2020, month 7, total_cases 3310, total_deaths 58 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2020, month 8, total_cases 3412, total_deaths 58 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2020, month 9, total_cases 3564, total_deaths 59 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2020, month 10, total_cases 3780, total_deaths 59 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2020, month 11, total_cases 3998, total_deaths 60 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2020, month 12, total_cases 6884, total_deaths 61 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2021, month 1, total_cases 18782, total_deaths 77 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2021, month 2, total_cases 25951, total_deaths 83 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2021, month 3, total_cases 28863, total_deaths 94 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2021, month 4, total_cases 65153, total_deaths 203 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2021, month 5, total_cases 159792, total_deaths 1031 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2021, month 6, total_cases 259301, total_deaths 2023 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2021, month 7, total_cases 597287, total_deaths 4857 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2021, month 8, total_cases 1204729, total_deaths 11589 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2021, month 9, total_cases 1603474, total_deaths 16727 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2021, month 10, total_cases 1912024, total_deaths 19205 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2021, month 11, total_cases 2115872, total_deaths 20771 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2021, month 12, total_cases 2223435, total_deaths 21698 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2022, month 1, total_cases 2440542, total_deaths 22173 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2022, month 2, total_cases 2891927, total_deaths 22933 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2022, month 3, total_cases 3628347, total_deaths 25130 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2022, month 4, total_cases 4250949, total_deaths 28526 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2022, month 5, total_cases 4450457, total_deaths 30019 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2022, month 6, total_cases 4522915, total_deaths 30648 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2022, month 7, total_cases 4592284, total_deaths 31404 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2022, month 8, total_cases 4652923, total_deaths 32328 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2022, month 9, total_cases 4682132, total_deaths 32771 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2022, month 10, total_cases 4692448, total_deaths 32955 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2022, month 11, total_cases 4707244, total_deaths 33180 } };
INSERT CountryCovid RELATION { TUPLE { country 'THA', year 2022, month 12, total_cases 4721808, total_deaths 33594 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2020, month 1, total_cases 9783, total_deaths 213 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2020, month 2, total_cases 79251, total_deaths 2835 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2020, month 3, total_cases 83065, total_deaths 3319 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2020, month 4, total_cases 85746, total_deaths 4693 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2020, month 5, total_cases 86367, total_deaths 4704 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2020, month 6, total_cases 87060, total_deaths 4706 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2020, month 7, total_cases 88182, total_deaths 4706 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2020, month 8, total_cases 89454, total_deaths 4707 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2020, month 9, total_cases 90403, total_deaths 4708 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2020, month 10, total_cases 91784, total_deaths 4709 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2020, month 11, total_cases 92885, total_deaths 4718 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2020, month 12, total_cases 93679, total_deaths 4733 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2021, month 1, total_cases 97328, total_deaths 4779 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2021, month 2, total_cases 97944, total_deaths 4810 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2021, month 3, total_cases 98594, total_deaths 4818 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2021, month 4, total_cases 99467, total_deaths 4821 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2021, month 5, total_cases 100394, total_deaths 4821 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2021, month 6, total_cases 101600, total_deaths 4822 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2021, month 7, total_cases 103298, total_deaths 4835 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2021, month 8, total_cases 105775, total_deaths 4844 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2021, month 9, total_cases 107438, total_deaths 4856 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2021, month 10, total_cases 108973, total_deaths 4866 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2021, month 11, total_cases 111125, total_deaths 4876 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2021, month 12, total_cases 115168, total_deaths 4890 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2022, month 1, total_cases 120069, total_deaths 4906 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2022, month 2, total_cases 124744, total_deaths 4911 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2022, month 3, total_cases 227998, total_deaths 4924 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2022, month 4, total_cases 811332, total_deaths 5313 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2022, month 5, total_cases 883902, total_deaths 5519 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2022, month 6, total_cases 888657, total_deaths 5526 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2022, month 7, total_cases 905992, total_deaths 5537 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2022, month 8, total_cases 956492, total_deaths 5544 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2022, month 9, total_cases 991245, total_deaths 5546 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2022, month 10, total_cases 1032790, total_deaths 5549 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2022, month 11, total_cases 1600201, total_deaths 5549 } };
INSERT CountryCovid RELATION { TUPLE { country 'TJ', year 2022, month 12, total_cases 1956071, total_deaths 5250 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2021, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2021, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2021, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2021, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2021, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2021, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2021, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2021, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2021, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2021, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2021, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2022, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2022, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2022, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2022, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2022, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2022, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2022, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2022, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2022, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2022, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2022, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TM', year 2022, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2020, month 3, total_cases 394, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2020, month 4, total_cases 994, total_deaths 41 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2020, month 5, total_cases 1077, total_deaths 48 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2020, month 6, total_cases 1174, total_deaths 50 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2020, month 7, total_cases 1535, total_deaths 50 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2020, month 8, total_cases 3803, total_deaths 77 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2020, month 9, total_cases 18413, total_deaths 265 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2020, month 10, total_cases 59813, total_deaths 1317 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2020, month 11, total_cases 96769, total_deaths 3260 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2020, month 12, total_cases 139140, total_deaths 4676 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2021, month 1, total_cases 208885, total_deaths 6754 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2021, month 2, total_cases 233277, total_deaths 8001 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2021, month 3, total_cases 254018, total_deaths 8812 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2021, month 4, total_cases 309119, total_deaths 10722 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2021, month 5, total_cases 345474, total_deaths 12654 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2021, month 6, total_cases 420103, total_deaths 14959 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2021, month 7, total_cases 589565, total_deaths 19686 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2021, month 8, total_cases 664034, total_deaths 23451 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2021, month 9, total_cases 707190, total_deaths 24890 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2021, month 10, total_cases 712747, total_deaths 25241 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2021, month 11, total_cases 717572, total_deaths 25373 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2021, month 12, total_cases 726706, total_deaths 25569 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2022, month 1, total_cases 909813, total_deaths 26288 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2022, month 2, total_cases 998230, total_deaths 27784 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2022, month 3, total_cases 1035884, total_deaths 28323 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2022, month 4, total_cases 1040193, total_deaths 28550 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2022, month 5, total_cases 1042935, total_deaths 28641 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2022, month 6, total_cases 1052180, total_deaths 28691 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2022, month 7, total_cases 1128693, total_deaths 29041 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2022, month 8, total_cases 1143862, total_deaths 29234 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2022, month 9, total_cases 1145686, total_deaths 29249 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2022, month 10, total_cases 1146152, total_deaths 29257 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2022, month 11, total_cases 1147072, total_deaths 29268 } };
INSERT CountryCovid RELATION { TUPLE { country 'TN', year 2022, month 12, total_cases 1147571, total_deaths 29284 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2021, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2021, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2021, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2021, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2021, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2021, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2021, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2021, month 11, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2021, month 12, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2022, month 1, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2022, month 2, total_cases 355, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2022, month 3, total_cases 6423, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2022, month 4, total_cases 10196, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2022, month 5, total_cases 11644, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2022, month 6, total_cases 12301, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2022, month 7, total_cases 12554, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2022, month 8, total_cases 15235, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2022, month 9, total_cases 16182, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2022, month 10, total_cases 16182, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2022, month 11, total_cases 16182, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'TO', year 2022, month 12, total_cases 16211, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2020, month 3, total_cases 13531, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2020, month 4, total_cases 120204, total_deaths 3174 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2020, month 5, total_cases 163942, total_deaths 4540 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2020, month 6, total_cases 199906, total_deaths 5131 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2020, month 7, total_cases 230873, total_deaths 5691 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2020, month 8, total_cases 270133, total_deaths 6370 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2020, month 9, total_cases 318663, total_deaths 8195 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2020, month 10, total_cases 375367, total_deaths 10252 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2020, month 11, total_cases 638847, total_deaths 13746 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2020, month 12, total_cases 2208652, total_deaths 20881 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2021, month 1, total_cases 2477463, total_deaths 25993 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2021, month 2, total_cases 2701588, total_deaths 28569 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2021, month 3, total_cases 3317182, total_deaths 31537 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2021, month 4, total_cases 4820591, total_deaths 40131 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2021, month 5, total_cases 5249404, total_deaths 47527 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2021, month 6, total_cases 5425652, total_deaths 49732 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2021, month 7, total_cases 5727045, total_deaths 51332 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2021, month 8, total_cases 6388331, total_deaths 56710 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2021, month 9, total_cases 7154070, total_deaths 64054 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2021, month 10, total_cases 8032988, total_deaths 70611 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2021, month 11, total_cases 8795588, total_deaths 76842 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2021, month 12, total_cases 9482550, total_deaths 82361 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2022, month 1, total_cases 11619882, total_deaths 87416 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2022, month 2, total_cases 14089456, total_deaths 94445 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2022, month 3, total_cases 14860560, total_deaths 98033 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2022, month 4, total_cases 15032093, total_deaths 98771 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2022, month 5, total_cases 15072747, total_deaths 98965 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2022, month 6, total_cases 15123331, total_deaths 99032 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2022, month 7, total_cases 15889495, total_deaths 99341 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2022, month 8, total_cases 16671848, total_deaths 100400 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2022, month 9, total_cases 16873793, total_deaths 101139 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2022, month 10, total_cases 16919638, total_deaths 101203 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2022, month 11, total_cases 16919638, total_deaths 101203 } };
INSERT CountryCovid RELATION { TUPLE { country 'TR', year 2022, month 12, total_cases 16919638, total_deaths 101203 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2020, month 3, total_cases 87, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2020, month 4, total_cases 116, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2020, month 5, total_cases 117, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2020, month 6, total_cases 130, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2020, month 7, total_cases 169, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2020, month 8, total_cases 1759, total_deaths 22 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2020, month 9, total_cases 4531, total_deaths 76 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2020, month 10, total_cases 5692, total_deaths 108 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2020, month 11, total_cases 6669, total_deaths 120 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2020, month 12, total_cases 7150, total_deaths 127 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2021, month 1, total_cases 7564, total_deaths 134 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2021, month 2, total_cases 7713, total_deaths 139 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2021, month 3, total_cases 8026, total_deaths 142 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2021, month 4, total_cases 10824, total_deaths 169 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2021, month 5, total_cases 23909, total_deaths 495 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2021, month 6, total_cases 32793, total_deaths 847 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2021, month 7, total_cases 38811, total_deaths 1070 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2021, month 8, total_cases 44847, total_deaths 1291 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2021, month 9, total_cases 50709, total_deaths 1482 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2021, month 10, total_cases 57329, total_deaths 1696 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2021, month 11, total_cases 71361, total_deaths 2158 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2021, month 12, total_cases 91899, total_deaths 2869 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2022, month 1, total_cases 111549, total_deaths 3404 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2022, month 2, total_cases 127767, total_deaths 3628 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2022, month 3, total_cases 137860, total_deaths 3750 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2022, month 4, total_cases 147867, total_deaths 3829 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2022, month 5, total_cases 161584, total_deaths 3917 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2022, month 6, total_cases 167097, total_deaths 4011 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2022, month 7, total_cases 171510, total_deaths 4053 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2022, month 8, total_cases 179146, total_deaths 4144 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2022, month 9, total_cases 183181, total_deaths 4207 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2022, month 10, total_cases 184713, total_deaths 4249 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2022, month 11, total_cases 185377, total_deaths 4267 } };
INSERT CountryCovid RELATION { TUPLE { country 'TT', year 2022, month 12, total_cases 186033, total_deaths 4283 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2020, month 3, total_cases 5, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2020, month 4, total_cases 12, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2020, month 5, total_cases 12, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2020, month 6, total_cases 41, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2020, month 7, total_cases 107, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2020, month 8, total_cases 508, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2020, month 9, total_cases 689, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2020, month 10, total_cases 703, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2020, month 11, total_cases 748, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2020, month 12, total_cases 893, total_deaths 6 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2021, month 1, total_cases 1503, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2021, month 2, total_cases 2114, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2021, month 3, total_cases 2329, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2021, month 4, total_cases 2388, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2021, month 5, total_cases 2417, total_deaths 17 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2021, month 6, total_cases 2425, total_deaths 18 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2021, month 7, total_cases 2484, total_deaths 18 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2021, month 8, total_cases 2650, total_deaths 20 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2021, month 9, total_cases 2844, total_deaths 23 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2021, month 10, total_cases 2980, total_deaths 23 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2021, month 11, total_cases 3096, total_deaths 24 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2021, month 12, total_cases 3284, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2022, month 1, total_cases 5727, total_deaths 34 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2022, month 2, total_cases 5867, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2022, month 3, total_cases 5910, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2022, month 4, total_cases 5963, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2022, month 5, total_cases 6123, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2022, month 6, total_cases 6219, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2022, month 7, total_cases 6303, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2022, month 8, total_cases 6369, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2022, month 9, total_cases 6380, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2022, month 10, total_cases 6429, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2022, month 11, total_cases 6446, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUCA', year 2022, month 12, total_cases 6479, total_deaths 36 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2021, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2021, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2021, month 6, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2021, month 7, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2021, month 8, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2021, month 9, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2021, month 10, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2021, month 11, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2021, month 12, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2022, month 1, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2022, month 2, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2022, month 3, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2022, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2022, month 5, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2022, month 6, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2022, month 7, total_cases 8, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2022, month 8, total_cases 20, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2022, month 9, total_cases 20, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2022, month 10, total_cases 23, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2022, month 11, total_cases 2828, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'TUV', year 2022, month 12, total_cases 2805, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2020, month 3, total_cases 645, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2020, month 4, total_cases 10406, total_deaths 261 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2020, month 5, total_cases 23672, total_deaths 708 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2020, month 6, total_cases 45254, total_deaths 1173 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2020, month 7, total_cases 71404, total_deaths 1717 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2020, month 8, total_cases 124132, total_deaths 2605 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2020, month 9, total_cases 214446, total_deaths 4221 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2020, month 10, total_cases 399330, total_deaths 7399 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2020, month 11, total_cases 752343, total_deaths 12731 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2020, month 12, total_cases 1086997, total_deaths 19281 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2021, month 1, total_cases 1261546, total_deaths 23860 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2021, month 2, total_cases 1395528, total_deaths 27404 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2021, month 3, total_cases 1725029, total_deaths 34456 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2021, month 4, total_cases 2124070, total_deaths 45923 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2021, month 5, total_cases 2260899, total_deaths 52573 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2021, month 6, total_cases 2300101, total_deaths 54581 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2021, month 7, total_cases 2333409, total_deaths 55556 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2021, month 8, total_cases 2384564, total_deaths 57004 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2021, month 9, total_cases 2533301, total_deaths 59980 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2021, month 10, total_cases 3058108, total_deaths 72073 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2021, month 11, total_cases 3606622, total_deaths 91268 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2021, month 12, total_cases 3847226, total_deaths 102088 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2022, month 1, total_cases 4255206, total_deaths 106880 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2022, month 2, total_cases 5066370, total_deaths 112902 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2022, month 3, total_cases 5197694, total_deaths 114911 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2022, month 4, total_cases 5233265, total_deaths 115361 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2022, month 5, total_cases 5244223, total_deaths 115523 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2022, month 6, total_cases 5287020, total_deaths 116364 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2022, month 7, total_cases 5294643, total_deaths 116463 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2022, month 8, total_cases 5329263, total_deaths 116591 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2022, month 9, total_cases 5478025, total_deaths 117037 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2022, month 10, total_cases 5601102, total_deaths 117881 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2022, month 11, total_cases 5642645, total_deaths 118404 } };
INSERT CountryCovid RELATION { TUPLE { country 'UA', year 2022, month 12, total_cases 5662732, total_deaths 118689 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2020, month 1, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2020, month 2, total_cases 21, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2020, month 3, total_cases 664, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2020, month 4, total_cases 12481, total_deaths 105 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2020, month 5, total_cases 34557, total_deaths 264 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2020, month 6, total_cases 48667, total_deaths 315 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2020, month 7, total_cases 60506, total_deaths 351 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2020, month 8, total_cases 70231, total_deaths 384 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2020, month 9, total_cases 94190, total_deaths 419 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2020, month 10, total_cases 132629, total_deaths 495 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2020, month 11, total_cases 168860, total_deaths 572 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2020, month 12, total_cases 207822, total_deaths 669 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2021, month 1, total_cases 303609, total_deaths 850 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2021, month 2, total_cases 391524, total_deaths 1221 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2021, month 3, total_cases 461444, total_deaths 1497 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2021, month 4, total_cases 520236, total_deaths 1587 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2021, month 5, total_cases 570836, total_deaths 1680 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2021, month 6, total_cases 632907, total_deaths 1811 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2021, month 7, total_cases 680858, total_deaths 1949 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2021, month 8, total_cases 718370, total_deaths 2041 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2021, month 9, total_cases 735992, total_deaths 2097 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2021, month 10, total_cases 739905, total_deaths 2136 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2021, month 11, total_cases 742041, total_deaths 2147 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2021, month 12, total_cases 761937, total_deaths 2164 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2022, month 1, total_cases 845058, total_deaths 2243 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2022, month 2, total_cases 879973, total_deaths 2301 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2022, month 3, total_cases 891300, total_deaths 2302 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2022, month 4, total_cases 898571, total_deaths 2302 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2022, month 5, total_cases 908205, total_deaths 2305 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2022, month 6, total_cases 945800, total_deaths 2316 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2022, month 7, total_cases 991564, total_deaths 2335 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2022, month 8, total_cases 1015398, total_deaths 2341 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2022, month 9, total_cases 1027502, total_deaths 2345 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2022, month 10, total_cases 1037636, total_deaths 2348 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2022, month 11, total_cases 1044343, total_deaths 2348 } };
INSERT CountryCovid RELATION { TUPLE { country 'UAE', year 2022, month 12, total_cases 1047008, total_deaths 2348 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2020, month 1, total_cases 8, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2020, month 2, total_cases 25, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2020, month 3, total_cases 192079, total_deaths 5359 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2020, month 4, total_cases 1081151, total_deaths 66638 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2020, month 5, total_cases 1791547, total_deaths 107857 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2020, month 6, total_cases 2648797, total_deaths 127430 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2020, month 7, total_cases 4548496, total_deaths 153967 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2020, month 8, total_cases 6046487, total_deaths 182789 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2020, month 9, total_cases 7246199, total_deaths 205947 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2020, month 10, total_cases 9176351, total_deaths 230540 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2020, month 11, total_cases 13667913, total_deaths 270582 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2020, month 12, total_cases 20219867, total_deaths 350568 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2021, month 1, total_cases 26357096, total_deaths 446554 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2021, month 2, total_cases 28764287, total_deaths 511802 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2021, month 3, total_cases 30579472, total_deaths 548342 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2021, month 4, total_cases 32468042, total_deaths 572157 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2021, month 5, total_cases 33386433, total_deaths 590258 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2021, month 6, total_cases 33782311, total_deaths 600688 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2021, month 7, total_cases 35107383, total_deaths 609481 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2021, month 8, total_cases 39395055, total_deaths 637750 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2021, month 9, total_cases 43539547, total_deaths 696853 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2021, month 10, total_cases 46053283, total_deaths 744873 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2021, month 11, total_cases 48606242, total_deaths 779453 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2021, month 12, total_cases 54907599, total_deaths 825506 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2022, month 1, total_cases 75243921, total_deaths 888941 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2022, month 2, total_cases 79181772, total_deaths 950342 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2022, month 3, total_cases 80221358, total_deaths 983192 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2022, month 4, total_cases 81466210, total_deaths 996151 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2022, month 5, total_cases 84327304, total_deaths 1007164 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2022, month 6, total_cases 87675158, total_deaths 1017716 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2022, month 7, total_cases 91345087, total_deaths 1030169 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2022, month 8, total_cases 94527871, total_deaths 1046329 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2022, month 9, total_cases 96361163, total_deaths 1059605 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2022, month 10, total_cases 97491317, total_deaths 1070468 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2022, month 11, total_cases 98812671, total_deaths 1080553 } };
INSERT CountryCovid RELATION { TUPLE { country 'USA', year 2022, month 12, total_cases 100765001, total_deaths 1092806 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2020, month 3, total_cases 172, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2020, month 4, total_cases 2039, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2020, month 5, total_cases 3623, total_deaths 15 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2020, month 6, total_cases 8503, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2020, month 7, total_cases 24009, total_deaths 141 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2020, month 8, total_cases 41893, total_deaths 320 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2020, month 9, total_cases 56717, total_deaths 470 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2020, month 10, total_cases 66932, total_deaths 566 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2020, month 11, total_cases 73094, total_deaths 610 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2020, month 12, total_cases 77060, total_deaths 614 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2021, month 1, total_cases 78711, total_deaths 621 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2021, month 2, total_cases 79926, total_deaths 622 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2021, month 3, total_cases 82869, total_deaths 629 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2021, month 4, total_cases 90808, total_deaths 649 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2021, month 5, total_cases 100335, total_deaths 690 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2021, month 6, total_cases 110677, total_deaths 736 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2021, month 7, total_cases 129327, total_deaths 874 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2021, month 8, total_cases 156394, total_deaths 1082 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2021, month 9, total_cases 173895, total_deaths 1239 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2021, month 10, total_cases 185963, total_deaths 1323 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2021, month 11, total_cases 193208, total_deaths 1402 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2021, month 12, total_cases 198903, total_deaths 1485 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2022, month 1, total_cases 223008, total_deaths 1564 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2022, month 2, total_cases 236405, total_deaths 1635 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2022, month 3, total_cases 237749, total_deaths 1637 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2022, month 4, total_cases 238596, total_deaths 1637 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2022, month 5, total_cases 239028, total_deaths 1637 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2022, month 6, total_cases 240764, total_deaths 1637 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2022, month 7, total_cases 243093, total_deaths 1637 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2022, month 8, total_cases 243801, total_deaths 1637 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2022, month 9, total_cases 244218, total_deaths 1637 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2022, month 10, total_cases 244648, total_deaths 1637 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2022, month 11, total_cases 246520, total_deaths 1637 } };
INSERT CountryCovid RELATION { TUPLE { country 'UZB', year 2022, month 12, total_cases 249217, total_deaths 1637 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2020, month 1, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2020, month 2, total_cases 16, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2020, month 3, total_cases 212, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2020, month 4, total_cases 270, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2020, month 5, total_cases 328, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2020, month 6, total_cases 355, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2020, month 7, total_cases 558, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2020, month 8, total_cases 1044, total_deaths 34 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2020, month 9, total_cases 1094, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2020, month 10, total_cases 1180, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2020, month 11, total_cases 1347, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2020, month 12, total_cases 1465, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2021, month 1, total_cases 1817, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2021, month 2, total_cases 2448, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2021, month 3, total_cases 2603, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2021, month 4, total_cases 2928, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2021, month 5, total_cases 7432, total_deaths 47 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2021, month 6, total_cases 17052, total_deaths 81 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2021, month 7, total_cases 150060, total_deaths 1306 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2021, month 8, total_cases 462096, total_deaths 11064 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2021, month 9, total_cases 790755, total_deaths 19301 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2021, month 10, total_cases 921122, total_deaths 22083 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2021, month 11, total_cases 1238082, total_deaths 25252 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2021, month 12, total_cases 1731257, total_deaths 32394 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2022, month 1, total_cases 2275727, total_deaths 37777 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2022, month 2, total_cases 3443485, total_deaths 40252 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2022, month 3, total_cases 9564609, total_deaths 42493 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2022, month 4, total_cases 10649809, total_deaths 43041 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2022, month 5, total_cases 10719379, total_deaths 43079 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2022, month 6, total_cases 10746470, total_deaths 43087 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2022, month 7, total_cases 10779632, total_deaths 43093 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2022, month 8, total_cases 11411679, total_deaths 43117 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2022, month 9, total_cases 11479356, total_deaths 43148 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2022, month 10, total_cases 11502885, total_deaths 43165 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2022, month 11, total_cases 11515908, total_deaths 43175 } };
INSERT CountryCovid RELATION { TUPLE { country 'VN', year 2022, month 12, total_cases 11525231, total_deaths 43186 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2020, month 11, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2020, month 12, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2021, month 1, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2021, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2021, month 3, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2021, month 4, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2021, month 5, total_cases 4, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2021, month 6, total_cases 4, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2021, month 7, total_cases 4, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2021, month 8, total_cases 4, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2021, month 9, total_cases 4, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2021, month 10, total_cases 6, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2021, month 11, total_cases 6, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2021, month 12, total_cases 7, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2022, month 1, total_cases 7, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2022, month 2, total_cases 18, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2022, month 3, total_cases 3379, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2022, month 4, total_cases 7330, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2022, month 5, total_cases 9088, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2022, month 6, total_cases 11266, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2022, month 7, total_cases 11730, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2022, month 8, total_cases 11815, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2022, month 9, total_cases 11950, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2022, month 10, total_cases 11981, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2022, month 11, total_cases 11981, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'VU', year 2022, month 12, total_cases 12013, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2020, month 10, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2020, month 11, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2020, month 12, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2021, month 1, total_cases 5, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2021, month 2, total_cases 9, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2021, month 3, total_cases 401, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2021, month 4, total_cases 453, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2021, month 5, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2021, month 6, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2021, month 7, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2021, month 8, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2021, month 9, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2021, month 10, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2021, month 11, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2021, month 12, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2022, month 1, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2022, month 2, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2022, month 3, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2022, month 4, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2022, month 5, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2022, month 6, total_cases 454, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2022, month 7, total_cases 761, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2022, month 8, total_cases 761, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2022, month 9, total_cases 761, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2022, month 10, total_cases 3415, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2022, month 11, total_cases 3415, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAFU', year 2022, month 12, total_cases 3415, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2020, month 3, total_cases 4, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2020, month 4, total_cases 11, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2020, month 5, total_cases 25, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2020, month 6, total_cases 49, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2020, month 7, total_cases 498, total_deaths 9 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2020, month 8, total_cases 2963, total_deaths 96 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2020, month 9, total_cases 3579, total_deaths 112 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2020, month 10, total_cases 3672, total_deaths 119 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2020, month 11, total_cases 3742, total_deaths 123 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2020, month 12, total_cases 3797, total_deaths 124 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2021, month 1, total_cases 4090, total_deaths 128 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2021, month 2, total_cases 4712, total_deaths 150 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2021, month 3, total_cases 5459, total_deaths 165 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2021, month 4, total_cases 5898, total_deaths 174 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2021, month 5, total_cases 5993, total_deaths 179 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2021, month 6, total_cases 6079, total_deaths 181 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2021, month 7, total_cases 7709, total_deaths 212 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2021, month 8, total_cases 9698, total_deaths 319 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2021, month 9, total_cases 9934, total_deaths 338 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2021, month 10, total_cases 9965, total_deaths 340 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2021, month 11, total_cases 9989, total_deaths 342 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2021, month 12, total_cases 10170, total_deaths 343 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2022, month 1, total_cases 11842, total_deaths 362 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2022, month 2, total_cases 11939, total_deaths 365 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2022, month 3, total_cases 11988, total_deaths 365 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2022, month 4, total_cases 11995, total_deaths 365 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2022, month 5, total_cases 12002, total_deaths 365 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2022, month 6, total_cases 12002, total_deaths 365 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2022, month 7, total_cases 12078, total_deaths 368 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2022, month 8, total_cases 12311, total_deaths 371 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2022, month 9, total_cases 12508, total_deaths 372 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2022, month 10, total_cases 12580, total_deaths 372 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2022, month 11, total_cases 12586, total_deaths 372 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAG', year 2022, month 12, total_cases 12586, total_deaths 372 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2020, month 3, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2020, month 4, total_cases 124, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2020, month 5, total_cases 861, total_deaths 46 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2020, month 6, total_cases 1462, total_deaths 60 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2020, month 7, total_cases 1823, total_deaths 67 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2020, month 8, total_cases 2022, total_deaths 70 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2020, month 9, total_cases 2231, total_deaths 72 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2020, month 10, total_cases 2366, total_deaths 74 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2020, month 11, total_cases 2412, total_deaths 74 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2020, month 12, total_cases 2611, total_deaths 76 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2021, month 1, total_cases 3593, total_deaths 79 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2021, month 2, total_cases 3887, total_deaths 79 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2021, month 3, total_cases 3980, total_deaths 79 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2021, month 4, total_cases 4054, total_deaths 79 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2021, month 5, total_cases 4147, total_deaths 79 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2021, month 6, total_cases 5575, total_deaths 100 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2021, month 7, total_cases 6283, total_deaths 120 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2021, month 8, total_cases 6367, total_deaths 121 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2021, month 9, total_cases 6394, total_deaths 121 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2021, month 10, total_cases 6397, total_deaths 121 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2021, month 11, total_cases 6402, total_deaths 121 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2021, month 12, total_cases 7064, total_deaths 123 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2022, month 1, total_cases 7623, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2022, month 2, total_cases 7665, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2022, month 3, total_cases 7674, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2022, month 4, total_cases 7681, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2022, month 5, total_cases 7682, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2022, month 6, total_cases 7695, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2022, month 7, total_cases 7734, total_deaths 125 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2022, month 8, total_cases 7747, total_deaths 126 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2022, month 9, total_cases 7751, total_deaths 126 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2022, month 10, total_cases 7754, total_deaths 126 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2022, month 11, total_cases 7759, total_deaths 126 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAL', year 2022, month 12, total_cases 7760, total_deaths 126 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2020, month 2, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2020, month 3, total_cases 135, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2020, month 4, total_cases 1932, total_deaths 58 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2020, month 5, total_cases 10162, total_deaths 287 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2020, month 6, total_cases 25694, total_deaths 590 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2020, month 7, total_cases 43151, total_deaths 879 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2020, month 8, total_cases 54008, total_deaths 1013 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2020, month 9, total_cases 58848, total_deaths 1112 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2020, month 10, total_cases 62853, total_deaths 1144 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2020, month 11, total_cases 67557, total_deaths 1173 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2020, month 12, total_cases 87607, total_deaths 1289 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2021, month 1, total_cases 131242, total_deaths 1586 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2021, month 2, total_cases 155657, total_deaths 1907 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2021, month 3, total_cases 162891, total_deaths 2057 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2021, month 4, total_cases 165110, total_deaths 2063 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2021, month 5, total_cases 166518, total_deaths 2099 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2021, month 6, total_cases 167618, total_deaths 2120 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2021, month 7, total_cases 173908, total_deaths 2149 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2021, month 8, total_cases 192431, total_deaths 2469 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2021, month 9, total_cases 205779, total_deaths 2721 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2021, month 10, total_cases 211961, total_deaths 2896 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2021, month 11, total_cases 214218, total_deaths 2977 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2021, month 12, total_cases 241513, total_deaths 3030 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2022, month 1, total_cases 253181, total_deaths 3136 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2022, month 2, total_cases 254560, total_deaths 3142 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2022, month 3, total_cases 255415, total_deaths 3142 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2022, month 4, total_cases 255716, total_deaths 3143 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2022, month 5, total_cases 256028, total_deaths 3143 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2022, month 6, total_cases 257290, total_deaths 3148 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2022, month 7, total_cases 260977, total_deaths 3147 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2022, month 8, total_cases 263526, total_deaths 3148 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2022, month 9, total_cases 265382, total_deaths 3155 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2022, month 10, total_cases 266138, total_deaths 3155 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2022, month 11, total_cases 266283, total_deaths 3155 } };
INSERT CountryCovid RELATION { TUPLE { country 'WAN', year 2022, month 12, total_cases 266381, total_deaths 3155 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2020, month 3, total_cases 12, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2020, month 4, total_cases 16, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2020, month 5, total_cases 16, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2020, month 6, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2020, month 7, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2020, month 8, total_cases 20, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2020, month 9, total_cases 30, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2020, month 10, total_cases 50, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2020, month 11, total_cases 85, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2020, month 12, total_cases 88, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2021, month 1, total_cases 117, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2021, month 2, total_cases 142, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2021, month 3, total_cases 161, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2021, month 4, total_cases 174, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2021, month 5, total_cases 188, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2021, month 6, total_cases 193, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2021, month 7, total_cases 210, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2021, month 8, total_cases 1638, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2021, month 9, total_cases 3481, total_deaths 20 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2021, month 10, total_cases 4823, total_deaths 32 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2021, month 11, total_cases 6028, total_deaths 38 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2021, month 12, total_cases 6814, total_deaths 47 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2022, month 1, total_cases 9032, total_deaths 51 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2022, month 2, total_cases 11108, total_deaths 57 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2022, month 3, total_cases 11859, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2022, month 4, total_cases 12033, total_deaths 63 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2022, month 5, total_cases 14184, total_deaths 65 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2022, month 6, total_cases 14852, total_deaths 68 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2022, month 7, total_cases 14852, total_deaths 68 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2022, month 8, total_cases 14852, total_deaths 68 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2022, month 9, total_cases 15747, total_deaths 74 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2022, month 10, total_cases 15760, total_deaths 74 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2022, month 11, total_cases 15760, total_deaths 74 } };
INSERT CountryCovid RELATION { TUPLE { country 'WD', year 2022, month 12, total_cases 15760, total_deaths 74 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2020, month 3, total_cases 9, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2020, month 4, total_cases 20, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2020, month 5, total_cases 23, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2020, month 6, total_cases 23, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2020, month 7, total_cases 24, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2020, month 8, total_cases 24, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2020, month 9, total_cases 24, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2020, month 10, total_cases 28, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2020, month 11, total_cases 41, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2020, month 12, total_cases 127, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2021, month 1, total_cases 148, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2021, month 2, total_cases 148, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2021, month 3, total_cases 155, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2021, month 4, total_cases 160, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2021, month 5, total_cases 161, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2021, month 6, total_cases 161, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2021, month 7, total_cases 164, total_deaths 1 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2021, month 8, total_cases 461, total_deaths 2 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2021, month 9, total_cases 5195, total_deaths 141 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2021, month 10, total_cases 5840, total_deaths 198 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2021, month 11, total_cases 5897, total_deaths 200 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2021, month 12, total_cases 6181, total_deaths 200 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2022, month 1, total_cases 12336, total_deaths 210 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2022, month 2, total_cases 13696, total_deaths 216 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2022, month 3, total_cases 14012, total_deaths 218 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2022, month 4, total_cases 14629, total_deaths 220 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2022, month 5, total_cases 17750, total_deaths 226 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2022, month 6, total_cases 18357, total_deaths 232 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2022, month 7, total_cases 18786, total_deaths 234 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2022, month 8, total_cases 19289, total_deaths 236 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2022, month 9, total_cases 19536, total_deaths 237 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2022, month 10, total_cases 19591, total_deaths 237 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2022, month 11, total_cases 19631, total_deaths 237 } };
INSERT CountryCovid RELATION { TUPLE { country 'WG', year 2022, month 12, total_cases 19644, total_deaths 238 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2020, month 3, total_cases 13, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2020, month 4, total_cases 17, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2020, month 5, total_cases 18, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2020, month 6, total_cases 19, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2020, month 7, total_cases 25, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2020, month 8, total_cases 26, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2020, month 9, total_cases 27, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2020, month 10, total_cases 78, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2020, month 11, total_cases 259, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2020, month 12, total_cases 353, total_deaths 5 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2021, month 1, total_cases 1195, total_deaths 13 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2021, month 2, total_cases 3390, total_deaths 35 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2021, month 3, total_cases 4238, total_deaths 60 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2021, month 4, total_cases 4552, total_deaths 74 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2021, month 5, total_cases 5067, total_deaths 79 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2021, month 6, total_cases 5296, total_deaths 84 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2021, month 7, total_cases 5610, total_deaths 89 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2021, month 8, total_cases 8219, total_deaths 104 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2021, month 9, total_cases 11459, total_deaths 201 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2021, month 10, total_cases 12559, total_deaths 255 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2021, month 11, total_cases 13000, total_deaths 280 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2021, month 12, total_cases 13570, total_deaths 295 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2022, month 1, total_cases 20942, total_deaths 328 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2022, month 2, total_cases 22694, total_deaths 358 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2022, month 3, total_cases 22953, total_deaths 365 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2022, month 4, total_cases 23394, total_deaths 368 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2022, month 5, total_cases 25593, total_deaths 371 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2022, month 6, total_cases 27022, total_deaths 383 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2022, month 7, total_cases 27966, total_deaths 385 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2022, month 8, total_cases 28775, total_deaths 391 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2022, month 9, total_cases 29408, total_deaths 393 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2022, month 10, total_cases 29639, total_deaths 407 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2022, month 11, total_cases 29711, total_deaths 408 } };
INSERT CountryCovid RELATION { TUPLE { country 'WL', year 2022, month 12, total_cases 29741, total_deaths 409 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2020, month 11, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2020, month 12, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2021, month 1, total_cases 2, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2021, month 2, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2021, month 3, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2021, month 4, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2021, month 5, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2021, month 6, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2021, month 7, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2021, month 8, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2021, month 9, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2021, month 10, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2021, month 11, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2021, month 12, total_cases 3, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2022, month 1, total_cases 32, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2022, month 2, total_cases 33, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2022, month 3, total_cases 1713, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2022, month 4, total_cases 9592, total_deaths 19 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2022, month 5, total_cases 13499, total_deaths 26 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2022, month 6, total_cases 14906, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2022, month 7, total_cases 15405, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2022, month 8, total_cases 15839, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2022, month 9, total_cases 15925, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2022, month 10, total_cases 15946, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2022, month 11, total_cases 15967, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'WS', year 2022, month 12, total_cases 15982, total_deaths 29 } };
INSERT CountryCovid RELATION { TUPLE { country 'WSA', year 2022, month 4, total_cases 0, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2020, month 3, total_cases 1, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2020, month 4, total_cases 16, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2020, month 5, total_cases 26, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2020, month 6, total_cases 29, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2020, month 7, total_cases 54, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2020, month 8, total_cases 60, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2020, month 9, total_cases 64, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2020, month 10, total_cases 74, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2020, month 11, total_cases 85, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2020, month 12, total_cases 121, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2021, month 1, total_cases 901, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2021, month 2, total_cases 1556, total_deaths 8 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2021, month 3, total_cases 1748, total_deaths 10 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2021, month 4, total_cases 1864, total_deaths 11 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2021, month 5, total_cases 2035, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2021, month 6, total_cases 2225, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2021, month 7, total_cases 2291, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2021, month 8, total_cases 2336, total_deaths 12 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2021, month 9, total_cases 3508, total_deaths 21 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2021, month 10, total_cases 4995, total_deaths 68 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2021, month 11, total_cases 5525, total_deaths 74 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2021, month 12, total_cases 5850, total_deaths 81 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2022, month 1, total_cases 9447, total_deaths 94 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2022, month 2, total_cases 8309, total_deaths 106 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2022, month 3, total_cases 8335, total_deaths 106 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2022, month 4, total_cases 8419, total_deaths 106 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2022, month 5, total_cases 8670, total_deaths 107 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2022, month 6, total_cases 9051, total_deaths 112 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2022, month 7, total_cases 9354, total_deaths 115 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2022, month 8, total_cases 9428, total_deaths 115 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2022, month 9, total_cases 9448, total_deaths 116 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2022, month 10, total_cases 9457, total_deaths 116 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2022, month 11, total_cases 9474, total_deaths 116 } };
INSERT CountryCovid RELATION { TUPLE { country 'WV', year 2022, month 12, total_cases 9538, total_deaths 119 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2020, month 4, total_cases 6, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2020, month 5, total_cases 323, total_deaths 80 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2020, month 6, total_cases 1158, total_deaths 312 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2020, month 7, total_cases 1728, total_deaths 493 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2020, month 8, total_cases 1958, total_deaths 566 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2020, month 9, total_cases 2034, total_deaths 587 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2020, month 10, total_cases 2063, total_deaths 599 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2020, month 11, total_cases 2077, total_deaths 605 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2020, month 12, total_cases 2099, total_deaths 610 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2021, month 1, total_cases 2121, total_deaths 615 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2021, month 2, total_cases 2285, total_deaths 634 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2021, month 3, total_cases 4357, total_deaths 888 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2021, month 4, total_cases 6317, total_deaths 1226 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2021, month 5, total_cases 6742, total_deaths 1321 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2021, month 6, total_cases 6920, total_deaths 1361 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2021, month 7, total_cases 7061, total_deaths 1375 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2021, month 8, total_cases 7869, total_deaths 1472 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2021, month 9, total_cases 9067, total_deaths 1721 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2021, month 10, total_cases 9791, total_deaths 1889 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2021, month 11, total_cases 10004, total_deaths 1950 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2021, month 12, total_cases 10126, total_deaths 1984 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2022, month 1, total_cases 11019, total_deaths 2012 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2022, month 2, total_cases 11771, total_deaths 2135 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2022, month 3, total_cases 11806, total_deaths 2143 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2022, month 4, total_cases 11818, total_deaths 2149 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2022, month 5, total_cases 11822, total_deaths 2149 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2022, month 6, total_cases 11824, total_deaths 2149 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2022, month 7, total_cases 11877, total_deaths 2151 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2022, month 8, total_cases 11926, total_deaths 2155 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2022, month 9, total_cases 11935, total_deaths 2157 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2022, month 10, total_cases 11939, total_deaths 2158 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2022, month 11, total_cases 11945, total_deaths 2159 } };
INSERT CountryCovid RELATION { TUPLE { country 'YE', year 2022, month 12, total_cases 11945, total_deaths 2159 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2020, month 3, total_cases 135, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2020, month 4, total_cases 333, total_deaths 16 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2020, month 5, total_cases 1510, total_deaths 14 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2020, month 6, total_cases 5832, total_deaths 51 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2020, month 7, total_cases 18574, total_deaths 164 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2020, month 8, total_cases 46728, total_deaths 386 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2020, month 9, total_cases 75122, total_deaths 628 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2020, month 10, total_cases 92013, total_deaths 798 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2020, month 11, total_cases 102394, total_deaths 897 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2020, month 12, total_cases 113558, total_deaths 1028 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2021, month 1, total_cases 126927, total_deaths 1189 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2021, month 2, total_cases 139116, total_deaths 1344 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2021, month 3, total_cases 160497, total_deaths 1602 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2021, month 4, total_cases 197683, total_deaths 2136 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2021, month 5, total_cases 234165, total_deaths 2646 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2021, month 6, total_cases 272712, total_deaths 3119 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2021, month 7, total_cases 305766, total_deaths 3591 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2021, month 8, total_cases 334343, total_deaths 4010 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2021, month 9, total_cases 368968, total_deaths 4469 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2021, month 10, total_cases 407151, total_deaths 4891 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2021, month 11, total_cases 431296, total_deaths 5144 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2021, month 12, total_cases 444635, total_deaths 5328 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2022, month 1, total_cases 485974, total_deaths 5447 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2022, month 2, total_cases 515124, total_deaths 5636 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2022, month 3, total_cases 520373, total_deaths 5682 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2022, month 4, total_cases 522325, total_deaths 5709 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2022, month 5, total_cases 523654, total_deaths 5721 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2022, month 6, total_cases 526022, total_deaths 5732 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2022, month 7, total_cases 535836, total_deaths 5763 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2022, month 8, total_cases 542508, total_deaths 5796 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2022, month 9, total_cases 544803, total_deaths 5814 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2022, month 10, total_cases 545899, total_deaths 5820 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2022, month 11, total_cases 547396, total_deaths 5828 } };
INSERT CountryCovid RELATION { TUPLE { country 'YV', year 2022, month 12, total_cases 550522, total_deaths 5832 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2020, month 3, total_cases 35, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2020, month 4, total_cases 106, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2020, month 5, total_cases 1057, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2020, month 6, total_cases 1594, total_deaths 24 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2020, month 7, total_cases 5963, total_deaths 151 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2020, month 8, total_cases 12097, total_deaths 288 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2020, month 9, total_cases 14759, total_deaths 332 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2020, month 10, total_cases 16432, total_deaths 349 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2020, month 11, total_cases 17647, total_deaths 357 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2020, month 12, total_cases 20725, total_deaths 388 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2021, month 1, total_cases 54217, total_deaths 763 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2021, month 2, total_cases 78534, total_deaths 1091 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2021, month 3, total_cases 88418, total_deaths 1208 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2021, month 4, total_cases 91586, total_deaths 1251 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2021, month 5, total_cases 95263, total_deaths 1281 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2021, month 6, total_cases 154948, total_deaths 2199 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2021, month 7, total_cases 195816, total_deaths 3389 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2021, month 8, total_cases 206327, total_deaths 3602 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2021, month 9, total_cases 209046, total_deaths 3648 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2021, month 10, total_cases 209734, total_deaths 3661 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2021, month 11, total_cases 210169, total_deaths 3667 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2021, month 12, total_cases 254274, total_deaths 3734 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2022, month 1, total_cases 305047, total_deaths 3917 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2022, month 2, total_cases 312750, total_deaths 3952 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2022, month 3, total_cases 316850, total_deaths 3966 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2022, month 4, total_cases 319594, total_deaths 3976 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2022, month 5, total_cases 321779, total_deaths 3987 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2022, month 6, total_cases 325857, total_deaths 4006 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2022, month 7, total_cases 329483, total_deaths 4015 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2022, month 8, total_cases 332822, total_deaths 4016 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2022, month 9, total_cases 333531, total_deaths 4017 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2022, month 10, total_cases 333681, total_deaths 4017 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2022, month 11, total_cases 333746, total_deaths 4019 } };
INSERT CountryCovid RELATION { TUPLE { country 'Z', year 2022, month 12, total_cases 334425, total_deaths 4024 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2020, month 3, total_cases 8, total_deaths 0 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2020, month 4, total_cases 40, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2020, month 5, total_cases 178, total_deaths 4 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2020, month 6, total_cases 591, total_deaths 7 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2020, month 7, total_cases 3169, total_deaths 67 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2020, month 8, total_cases 6497, total_deaths 202 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2020, month 9, total_cases 7838, total_deaths 228 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2020, month 10, total_cases 8367, total_deaths 243 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2020, month 11, total_cases 9950, total_deaths 276 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2020, month 12, total_cases 13867, total_deaths 363 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2021, month 1, total_cases 33388, total_deaths 1217 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2021, month 2, total_cases 36089, total_deaths 1463 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2021, month 3, total_cases 36882, total_deaths 1523 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2021, month 4, total_cases 38257, total_deaths 1567 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2021, month 5, total_cases 38961, total_deaths 1594 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2021, month 6, total_cases 49864, total_deaths 1789 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2021, month 7, total_cases 108860, total_deaths 3532 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2021, month 8, total_cases 124773, total_deaths 4419 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2021, month 9, total_cases 130820, total_deaths 4623 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2021, month 10, total_cases 132977, total_deaths 4678 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2021, month 11, total_cases 134625, total_deaths 4707 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2021, month 12, total_cases 213258, total_deaths 5004 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2022, month 1, total_cases 229666, total_deaths 5338 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2022, month 2, total_cases 236380, total_deaths 5395 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2022, month 3, total_cases 246286, total_deaths 5444 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2022, month 4, total_cases 247875, total_deaths 5469 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2022, month 5, total_cases 252398, total_deaths 5503 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2022, month 6, total_cases 255586, total_deaths 5555 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2022, month 7, total_cases 256378, total_deaths 5577 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2022, month 8, total_cases 256726, total_deaths 5596 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2022, month 9, total_cases 257465, total_deaths 5602 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2022, month 10, total_cases 257893, total_deaths 5606 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2022, month 11, total_cases 259164, total_deaths 5620 } };
INSERT CountryCovid RELATION { TUPLE { country 'ZW', year 2022, month 12, total_cases 259981, total_deaths 5637 } };