From 5a65a3943546b32faaa46516a79de2f3622a8009 Mon Sep 17 00:00:00 2001 From: Conrad Nied Date: Tue, 13 Aug 2024 13:18:03 -0700 Subject: [PATCH 1/5] CLDR-17884 Skip Suriname parsing --- .../org/unicode/cldr/tool/UnLiteracyParser.java | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/UnLiteracyParser.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/UnLiteracyParser.java index 99487da4d5f..f3138ba083d 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/UnLiteracyParser.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/UnLiteracyParser.java @@ -180,9 +180,16 @@ private void handleRecord() { throw new IllegalArgumentException( "Inconsistent reliability " + reliability + " for " + thisRecord); } - final Long old = pa.perLiteracy.put(literacy, getLongValue()); - if (old != null) { - System.err.println("Duplicate record " + country + " " + year + " " + age); + final Long new_value = getLongValue(); + final Long old_value = pa.perLiteracy.put(literacy, new_value); + if (old_value != null) { + // Suriname is known to include duplicate records, 1 normal and 1 "Excluding the institutional population" + // Resolve this by taking higher value + if (country.equals("Suriname")) { + pa.perLiteracy.put(literacy, Math.max(old_value, new_value)); + } else { + System.err.println("Duplicate record " + country + " " + year + " " + age); + } } } From af1c81fb10727e9631b1fcbad4ca9737fcef8123 Mon Sep 17 00:00:00 2001 From: Conrad Nied Date: Wed, 14 Aug 2024 20:49:57 -0700 Subject: [PATCH 2/5] CLDR-17884 Fix issues re-generating xml from `ConvertLanguageData` --- common/supplemental/supplementalData.xml | 53 ++++++++++--------- .../unicode/cldr/tool/AddPopulationData.java | 8 ++- .../util/data/country_language_population.tsv | 7 +-- 3 files changed, 38 insertions(+), 30 deletions(-) diff --git a/common/supplemental/supplementalData.xml b/common/supplemental/supplementalData.xml index 84a21e51c99..7d1fc9dfdd4 100644 --- a/common/supplemental/supplementalData.xml +++ b/common/supplemental/supplementalData.xml @@ -1922,7 +1922,7 @@ XXX Code for transations where no currency is involved - + @@ -2407,7 +2407,7 @@ XXX Code for transations where no currency is involved - + @@ -2441,7 +2441,7 @@ XXX Code for transations where no currency is involved - + @@ -2594,7 +2594,7 @@ XXX Code for transations where no currency is involved - + @@ -2783,8 +2783,8 @@ XXX Code for transations where no currency is involved - - + + @@ -2830,7 +2830,7 @@ XXX Code for transations where no currency is involved - + @@ -3036,6 +3036,7 @@ XXX Code for transations where no currency is involved + @@ -3269,8 +3270,8 @@ XXX Code for transations where no currency is involved - - + + @@ -3349,7 +3350,7 @@ XXX Code for transations where no currency is involved - + @@ -3377,12 +3378,12 @@ XXX Code for transations where no currency is involved - + - + @@ -3427,14 +3428,14 @@ XXX Code for transations where no currency is involved - + - + @@ -3465,7 +3466,7 @@ XXX Code for transations where no currency is involved - + @@ -3993,7 +3994,7 @@ XXX Code for transations where no currency is involved - + @@ -4184,7 +4185,7 @@ XXX Code for transations where no currency is involved - + @@ -4197,7 +4198,7 @@ XXX Code for transations where no currency is involved - + @@ -4214,7 +4215,7 @@ XXX Code for transations where no currency is involved - + @@ -4330,12 +4331,12 @@ XXX Code for transations where no currency is involved - + - - + + @@ -4385,7 +4386,7 @@ XXX Code for transations where no currency is involved - + @@ -5660,6 +5661,7 @@ XXX Code for transations where no currency is involved Sirmauri (srx) Mahasui = Himachali, Pahari, Sirmouri, Sirmuri - 14k reported as native. Taught as elective subject in grades 5-8; not widely spoken as primary communication. [missing] + [missing] [missing] native speaker pop is low, ~6200; but is most widely spoken 2nd language [missing] @@ -5667,6 +5669,7 @@ XXX Code for transations where no currency is involved (94% of studends in Russia receive primarily Russian-language ed) Europeans and their languages survey, page 7 http://ec.europa.eu/public_opinion/archives/ebs/ebs_243_en.pdf Europeans and their languages survey, page 7 + [missing] 1st lang literacy 8% low literacy percentage calculated from http://www.spanishcourses.info/Mains/SpanishSpoken_EN.htm , see also http://www.spanishseo.org/resources/worldwide-spanish-speaking-population @@ -5678,7 +5681,6 @@ XXX Code for transations where no currency is involved This is base pop for """"""""""""""""""""""""""""""""fub"""""""""""""""""""""""""""""""" lang code; ff shows as a macrolanguage [missing] (could be higher if 2nd lang included; no data yet) - Mainly in Guangdong Prov, ~70-80 million [missing] [missing] pop 7k. Figure is questionable writing pop artificially set to 5% see also http://en.wikipedia.org/wiki/Lower_Sorbian @@ -5708,6 +5710,7 @@ XXX Code for transations where no currency is involved [missing] protected minority, southern Jutland etimate only based on literacy; no population data currently available + population figure from CLDR-17483 ticket No Data Available at present. co-official in South Tyrol Aosta Valley @@ -5786,10 +5789,10 @@ XXX Code for transations where no currency is involved [missing] [missing] [missing] + Mainly in Guangdong Prov, ~70-80 million. Script unspecified so both listed Canada 2016 census language data; official status from Wikipedia Languages_of_Canada Analyzed from 2011 UK census and other sources In total 86.2% of Canadians have working knowledge of English while 29.8% have a working knowledge of French. 2014 Maldives: 98% literacy in Divehi, 75% in English - Data on Kara-Kalpak speaking population in different countries diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java index 89fc049650f..21a6ca063ea 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java @@ -200,6 +200,10 @@ private static void showCountryData(String country) { + percent.format(getLiteracy(country) / 100)); } + /** + * Gets the percent of people that can read in a particular country + * Values are in the range 0 to 100 + */ public static Double getLiteracy(String country) { return firstNonZero( factbook_literacy.getCount(country), @@ -395,7 +399,7 @@ public boolean handle(String line) { return false; } code = code.toUpperCase(Locale.ENGLISH); - String valueString = FBLiteracy.Percent.get(pieces).trim(); + String valueString = FBLiteracy.Percent.get(pieces).trim(); // Values are in the range 0 to 100 double percent = Double.parseDouble(valueString); factbook_literacy.put(code, percent); if (ADD_POP) { @@ -521,7 +525,7 @@ static List> getUnLiteracy(Output hadErr) throws I continue; } double total = literate + illiterate; - double percent = ((double) literate) / total; + double percent = ((double) literate) * 100 / total; // Multiply by 100 to put values in range 0 to 100 result.add(Pair.of(code, percent)); } if (result.isEmpty()) { diff --git a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/country_language_population.tsv b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/country_language_population.tsv index 711861cd0c1..a67cef6cee8 100644 --- a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/country_language_population.tsv +++ b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/country_language_population.tsv @@ -251,7 +251,8 @@ Chad TD "15,833,116" 35% "28,620,000,000" official French fr 26% https://www.c Chile CL "17,925,262" 99% "452,100,000,000" English en 9.5% Chile CL "17,925,262" 99% "452,100,000,000" Mapuche arn "272,000" http://en.wikipedia.org/wiki/Mapuche_language Chile CL "17,925,262" 99% "452,100,000,000" official Spanish es 98% "http://en.wikipedia.org/wiki/Demographics_of_Chile#Languages Spanish ""universal"", set to 98%" -China CN "1,384,688,986" 95% "23,210,000,000,000" Cantonese (Simplified) yue_Hans 5.2% 5% "Mainly in Guangdong Prov, ~70-80 million" +China CN "1,384,688,986" 95% "23,210,000,000,000" Cantonese (Simplified) yue_Hans 5.2% 5% "Mainly in Guangdong Prov, ~70-80 million. Script unspecified so both listed" +China CN "1,384,688,986" 95% "23,210,000,000,000" Cantonese (Traditional) yue 5.2% 5% "Mainly in Guangdong Prov, ~70-80 million. Script unspecified so both listed" China CN "1,384,688,986" 95% "23,210,000,000,000" official Chinese zh 90% China CN "1,384,688,986" 95% "23,210,000,000,000" English en "62,900" China CN "1,384,688,986" 95% "23,210,000,000,000" Gan Chinese gan "22,900,000" @@ -1114,7 +1115,7 @@ Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Erzya myv "43 Russia RU "142,122,776" 100% "4,016,000,000,000" Finnish fi "17,000" Russia RU "142,122,776" 100% "4,016,000,000,000" Ingrian izh 120 Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Ingush inh "230,000" -Russia RU "142,122,776" 100% "4,016,000,000,000" Kara-Kalpak kaa 0.0006% https://joshuaproject.net/languages/kaa +Russia RU "142,122,776" 100% "4,016,000,000,000" Kara-Kalpak kaa 0.0006% https://joshuaproject.net/languages/kaa Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Kabardian kbd "440,000" Russia RU "142,122,776" 100% "4,016,000,000,000" official_regional Karachay-Balkar krc "235,000" Russia RU "142,122,776" 100% "4,016,000,000,000" Karelian krl "117,000" @@ -1467,7 +1468,7 @@ Unknown Region ZZ 0 0% 0 Novial nov 0 99% An artificial language. See http:// Unknown Region ZZ 0 0% 0 Toki Pona tok 800 https://en.wikipedia.org/wiki/Toki_Pona Unknown Region ZZ 0 0% 0 Volapük vo 200 99% "http://en.wikipedia.org/wiki/Volap%C3%BCk Artificial: 'There are an estimated 20-30 Volapük speakers in the world today.'; see also http://www.villagevoice.com/arts/0031,lafarge,16942,12.html" Uruguay UY "3,369,299" 98% "78,160,000,000" official Spanish es 88% -Uzbekistan UZ "36,799,756" 99% "223,000,000,000" Kara-Kalpak kaa 2.1% https://joshuaproject.net/languages/kaa +Uzbekistan UZ "36,799,756" 99% "223,000,000,000" Kara-Kalpak kaa 2.1% https://joshuaproject.net/languages/kaa Uzbekistan UZ "36,799,756" 99% "223,000,000,000" Russian ru 14% Uzbekistan UZ "36,799,756" 99% "223,000,000,000" Turkish tr "228,000" Uzbekistan UZ "36,799,756" 99% "223,000,000,000" official Uzbek uz 85% "http://en.wikipedia.org/wiki/Uzbek_language#Writing_systems https://www.cia.gov/library/publications/the-world-factbook/geos/uz.html Latin/Cyrillic balance is estimated, based on literacy; younger education now in Latin" From 936525b0981bd20eab3213e04d799d12cc474ad4 Mon Sep 17 00:00:00 2001 From: Conrad Nied Date: Tue, 13 Aug 2024 12:32:46 -0700 Subject: [PATCH 3/5] CLDR-17884 Update UN literacy import java -jar tools/cldr-code/target/cldr-code.jar AddPopulationData --- .../cldr/util/data/external/un_literacy.xml | 12041 ++++++++++++---- .../util/data/external/world_bank_data.csv | 978 +- 2 files changed, 9673 insertions(+), 3346 deletions(-) diff --git a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/un_literacy.xml b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/un_literacy.xml index b5c045955fc..d4e7dcd2fd4 100644 --- a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/un_literacy.xml +++ b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/un_literacy.xml @@ -10699,6 +10699,786 @@ 11124 + + Bangladesh + 2022 + Total + Both Sexes + 10 - 14 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 16332691 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 10 - 14 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 15545503 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 787188 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 10 + + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 134240746 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 10 + + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 99103581 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 10 + + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 35137165 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 15 - 19 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 16566507 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 15 - 19 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 15554282 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 1012225 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 20 - 24 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 14992368 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 20 - 24 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 13691837 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 1300531 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 25 - 29 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 14378879 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 25 - 29 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 12429163 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 1949716 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 30 - 34 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 12120070 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 30 - 34 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 9796649 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 2323421 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 35 - 39 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 12718821 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 35 - 39 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 9300709 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 3418112 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 40 - 44 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 10040312 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 40 - 44 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 6425147 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 3615165 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 45 - 49 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 8265422 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 45 - 49 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 4605657 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 3659765 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 50 - 54 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 7785451 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 50 - 54 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 3803110 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 3982341 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 55 - 59 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 5731281 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 55 - 59 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 2582024 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 3149257 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 60 - 64 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 5601878 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 60 - 64 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 2174722 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 3427156 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 65 - 69 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 3927127 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 65 - 69 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 1479643 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 2447484 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 70 - 74 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 2831819 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 70 - 74 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 912083 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 1919736 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 75 - 79 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 1227241 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 75 - 79 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 393856 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 833385 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 80 - 84 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 933197 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 80 - 84 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 232260 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 700937 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 85 - 89 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 354063 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 85 - 89 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 91850 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 262213 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 90 - 94 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 277172 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 90 - 94 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 55184 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 221988 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 95 - 99 + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 132905 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 95 - 99 + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 26563 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 106342 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 100 + + Total + Census - de facto - complete tabulation + Provisional figure + 2023 + 23542 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 100 + + Literate + Census - de facto - complete tabulation + Provisional figure + 2023 + 3339 + 3,4 + + + Bangladesh + 2022 + Total + Both Sexes + 100 + + Illiterate + Census - de facto - complete tabulation + Provisional figure + 2023 + 20203 + 3,4 + Bangladesh 2001 @@ -10710,7 +11490,7 @@ Final figure, complete 2009 15872379 - 3 + 5 Bangladesh @@ -10723,7 +11503,7 @@ Final figure, complete 2009 9378314 - 3 + 5 Bangladesh @@ -10736,7 +11516,7 @@ Final figure, complete 2009 6494065 - 3 + 5 Bangladesh @@ -10749,7 +11529,7 @@ Final figure, complete 2009 91657370 - 3 + 5 Bangladesh @@ -10762,7 +11542,7 @@ Final figure, complete 2009 45639423 - 3 + 5 Bangladesh @@ -10775,7 +11555,7 @@ Final figure, complete 2009 46017947 - 3 + 5 Bangladesh @@ -10788,7 +11568,7 @@ Final figure, complete 2009 12076480 - 3 + 5 Bangladesh @@ -10801,7 +11581,7 @@ Final figure, complete 2009 8336805 - 3 + 5 Bangladesh @@ -10814,7 +11594,7 @@ Final figure, complete 2009 3739675 - 3 + 5 Bangladesh @@ -10827,7 +11607,7 @@ Final figure, complete 2009 11135355 - 3 + 5 Bangladesh @@ -10840,7 +11620,7 @@ Final figure, complete 2009 6439156 - 3 + 5 Bangladesh @@ -10853,7 +11633,7 @@ Final figure, complete 2009 4696199 - 3 + 5 Bangladesh @@ -10866,7 +11646,7 @@ Final figure, complete 2009 10982014 - 3 + 5 Bangladesh @@ -10879,7 +11659,7 @@ Final figure, complete 2009 5307223 - 3 + 5 Bangladesh @@ -10892,7 +11672,7 @@ Final figure, complete 2009 5674791 - 3 + 5 Bangladesh @@ -10905,7 +11685,7 @@ Final figure, complete 2009 8641719 - 3 + 5 Bangladesh @@ -10918,7 +11698,7 @@ Final figure, complete 2009 3807553 - 3 + 5 Bangladesh @@ -10931,7 +11711,7 @@ Final figure, complete 2009 4834166 - 3 + 5 Bangladesh @@ -10944,7 +11724,7 @@ Final figure, complete 2009 7890542 - 3 + 5 Bangladesh @@ -10957,7 +11737,7 @@ Final figure, complete 2009 3328087 - 3 + 5 Bangladesh @@ -10970,7 +11750,7 @@ Final figure, complete 2009 4562455 - 3 + 5 Bangladesh @@ -10983,7 +11763,7 @@ Final figure, complete 2009 6261028 - 3 + 5 Bangladesh @@ -10996,7 +11776,7 @@ Final figure, complete 2009 2538266 - 3 + 5 Bangladesh @@ -11009,7 +11789,7 @@ Final figure, complete 2009 3722762 - 3 + 5 Bangladesh @@ -11022,7 +11802,7 @@ Final figure, complete 2009 4675742 - 3 + 5 Bangladesh @@ -11035,7 +11815,7 @@ Final figure, complete 2009 1930296 - 3 + 5 Bangladesh @@ -11048,7 +11828,7 @@ Final figure, complete 2009 2745446 - 3 + 5 Bangladesh @@ -11061,7 +11841,7 @@ Final figure, complete 2009 4005072 - 3 + 5 Bangladesh @@ -11074,7 +11854,7 @@ Final figure, complete 2009 1440167 - 3 + 5 Bangladesh @@ -11087,7 +11867,7 @@ Final figure, complete 2009 2564905 - 3 + 5 Bangladesh @@ -11100,7 +11880,7 @@ Final figure, complete 2009 2387825 - 3 + 5 Bangladesh @@ -11113,7 +11893,7 @@ Final figure, complete 2009 872726 - 3 + 5 Bangladesh @@ -11126,7 +11906,7 @@ Final figure, complete 2009 1515099 - 3 + 5 Bangladesh @@ -11139,7 +11919,7 @@ Final figure, complete 2009 7729214 - 3 + 5 Bangladesh @@ -11152,7 +11932,7 @@ Final figure, complete 2009 2260830 - 3 + 5 Bangladesh @@ -11165,7 +11945,7 @@ Final figure, complete 2009 5468384 - 3 + 5 Belarus @@ -18809,7 +19589,7 @@ Final figure, complete 2002 17348067 - 4 + 6 Brazil @@ -18822,7 +19602,7 @@ Final figure, complete 2002 16090194 - 4 + 6 Brazil @@ -18835,7 +19615,7 @@ Final figure, complete 2002 1257873 - 4 + 6 Brazil @@ -18848,7 +19628,7 @@ Final figure, complete 2002 136881115 - 4 + 6 Brazil @@ -18861,7 +19641,7 @@ Final figure, complete 2002 119328353 - 4 + 6 Brazil @@ -18874,7 +19654,7 @@ Final figure, complete 2002 17552762 - 4 + 6 Brazil @@ -18887,7 +19667,7 @@ Final figure, complete 2002 17939815 - 4 + 6 Brazil @@ -18900,7 +19680,7 @@ Final figure, complete 2002 17043398 - 4 + 6 Brazil @@ -18913,7 +19693,7 @@ Final figure, complete 2002 896417 - 4 + 6 Brazil @@ -18926,7 +19706,7 @@ Final figure, complete 2002 16141515 - 4 + 6 Brazil @@ -18939,7 +19719,7 @@ Final figure, complete 2002 15055801 - 4 + 6 Brazil @@ -18952,7 +19732,7 @@ Final figure, complete 2002 1085714 - 4 + 6 Brazil @@ -18965,7 +19745,7 @@ Final figure, complete 2002 13849665 - 4 + 6 Brazil @@ -18978,7 +19758,7 @@ Final figure, complete 2002 12739047 - 4 + 6 Brazil @@ -18991,7 +19771,7 @@ Final figure, complete 2002 1110618 - 4 + 6 Brazil @@ -19004,7 +19784,7 @@ Final figure, complete 2002 13028944 - 4 + 6 Brazil @@ -19017,7 +19797,7 @@ Final figure, complete 2002 11765826 - 4 + 6 Brazil @@ -19030,7 +19810,7 @@ Final figure, complete 2002 1263118 - 4 + 6 Brazil @@ -19043,7 +19823,7 @@ Final figure, complete 2002 12261529 - 4 + 6 Brazil @@ -19056,7 +19836,7 @@ Final figure, complete 2002 10940001 - 4 + 6 Brazil @@ -19069,7 +19849,7 @@ Final figure, complete 2002 1321528 - 4 + 6 Brazil @@ -19082,7 +19862,7 @@ Final figure, complete 2002 10546694 - 4 + 6 Brazil @@ -19095,7 +19875,7 @@ Final figure, complete 2002 9235111 - 4 + 6 Brazil @@ -19108,7 +19888,7 @@ Final figure, complete 2002 1311583 - 4 + 6 Brazil @@ -19121,7 +19901,7 @@ Final figure, complete 2002 8721541 - 4 + 6 Brazil @@ -19134,7 +19914,7 @@ Final figure, complete 2002 7355198 - 4 + 6 Brazil @@ -19147,7 +19927,7 @@ Final figure, complete 2002 1366343 - 4 + 6 Brazil @@ -19160,7 +19940,7 @@ Final figure, complete 2002 7062601 - 4 + 6 Brazil @@ -19173,7 +19953,7 @@ Final figure, complete 2002 5626469 - 4 + 6 Brazil @@ -19186,7 +19966,7 @@ Final figure, complete 2002 1436132 - 4 + 6 Brazil @@ -19199,7 +19979,7 @@ Final figure, complete 2002 5444715 - 4 + 6 Brazil @@ -19212,7 +19992,7 @@ Final figure, complete 2002 4055355 - 4 + 6 Brazil @@ -19225,7 +20005,7 @@ Final figure, complete 2002 1389360 - 4 + 6 Brazil @@ -19238,7 +20018,7 @@ Final figure, complete 2002 4600929 - 4 + 6 Brazil @@ -19251,7 +20031,7 @@ Final figure, complete 2002 3259833 - 4 + 6 Brazil @@ -19264,7 +20044,7 @@ Final figure, complete 2002 1341096 - 4 + 6 Brazil @@ -19277,7 +20057,7 @@ Final figure, complete 2002 3581106 - 4 + 6 Brazil @@ -19290,7 +20070,7 @@ Final figure, complete 2002 2396782 - 4 + 6 Brazil @@ -19303,7 +20083,7 @@ Final figure, complete 2002 1184324 - 4 + 6 Brazil @@ -19316,7 +20096,7 @@ Final figure, complete 2002 2742302 - 4 + 6 Brazil @@ -19329,7 +20109,7 @@ Final figure, complete 2002 1755984 - 4 + 6 Brazil @@ -19342,7 +20122,7 @@ Final figure, complete 2002 986318 - 4 + 6 Brazil @@ -19355,7 +20135,7 @@ Final figure, complete 2002 1779587 - 4 + 6 Brazil @@ -19368,7 +20148,7 @@ Final figure, complete 2002 1052365 - 4 + 6 Brazil @@ -19381,7 +20161,7 @@ Final figure, complete 2002 727222 - 4 + 6 Brazil @@ -19394,7 +20174,7 @@ Final figure, complete 2002 1036034 - 4 + 6 Brazil @@ -19407,7 +20187,7 @@ Final figure, complete 2002 561579 - 4 + 6 Brazil @@ -19420,7 +20200,7 @@ Final figure, complete 2002 474455 - 4 + 6 Brazil @@ -19433,7 +20213,7 @@ Final figure, complete 2002 534871 - 4 + 6 Brazil @@ -19446,7 +20226,7 @@ Final figure, complete 2002 273103 - 4 + 6 Brazil @@ -19459,7 +20239,7 @@ Final figure, complete 2002 261768 - 4 + 6 Brazil @@ -19472,7 +20252,7 @@ Final figure, complete 2002 180426 - 4 + 6 Brazil @@ -19485,7 +20265,7 @@ Final figure, complete 2002 81904 - 4 + 6 Brazil @@ -19498,7 +20278,7 @@ Final figure, complete 2002 98522 - 4 + 6 Brazil @@ -19511,7 +20291,7 @@ Final figure, complete 2002 56198 - 4 + 6 Brazil @@ -19524,7 +20304,7 @@ Final figure, complete 2002 24045 - 4 + 6 Brazil @@ -19537,7 +20317,7 @@ Final figure, complete 2002 32153 - 4 + 6 Brazil @@ -19550,7 +20330,7 @@ Final figure, complete 2002 24576 - 4 + 6 Brazil @@ -19563,7 +20343,7 @@ Final figure, complete 2002 16358 - 4 + 6 Brazil @@ -19576,7 +20356,7 @@ Final figure, complete 2002 8218 - 4 + 6 British Virgin Islands @@ -19630,6 +20410,786 @@ 6634 + + Brunei Darussalam + 2021 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 31087 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 30462 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 625 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 381426 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 368110 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 13316 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 33790 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 33325 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 465 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 37099 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 36540 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 559 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 41106 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 40355 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 751 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 40533 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 39749 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 784 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 38425 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 37560 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 865 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 35463 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 34594 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 869 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 31542 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 30679 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 863 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 26732 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 25912 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 820 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 20938 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 20087 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 851 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 16817 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 15931 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 886 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 12360 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 11351 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 1009 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 7518 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 6301 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 1217 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 3906 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 2886 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 1020 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 2525 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 1561 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 964 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 1162 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 632 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 530 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 334 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 154 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 180 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 78 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 27 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 51 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Provisional figure + 2023 + 11 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Provisional figure + 2023 + 4 + + + + Brunei Darussalam + 2021 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Provisional figure + 2023 + 7 + + Brunei Darussalam 2011 @@ -20917,6 +22477,786 @@ 5810 + + Bulgaria + 2021 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 326355 + + + + Bulgaria + 2021 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 321935 + + + + Bulgaria + 2021 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4420 + + + + Bulgaria + 2021 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 5928422 + + + + Bulgaria + 2021 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 5854197 + + + + Bulgaria + 2021 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 74225 + + + + Bulgaria + 2021 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 286241 + + + + Bulgaria + 2021 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 282910 + + + + Bulgaria + 2021 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3331 + + + + Bulgaria + 2021 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 266787 + + + + Bulgaria + 2021 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 263031 + + + + Bulgaria + 2021 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3756 + + + + Bulgaria + 2021 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 301125 + + + + Bulgaria + 2021 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 296460 + + + + Bulgaria + 2021 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4665 + + + + Bulgaria + 2021 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 403227 + + + + Bulgaria + 2021 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 396565 + + + + Bulgaria + 2021 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6662 + + + + Bulgaria + 2021 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 433748 + + + + Bulgaria + 2021 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 426331 + + + + Bulgaria + 2021 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 7417 + + + + Bulgaria + 2021 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 475519 + + + + Bulgaria + 2021 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 469164 + + + + Bulgaria + 2021 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6355 + + + + Bulgaria + 2021 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 502019 + + + + Bulgaria + 2021 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 496715 + + + + Bulgaria + 2021 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 5304 + + + + Bulgaria + 2021 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 480978 + + + + Bulgaria + 2021 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 476409 + + + + Bulgaria + 2021 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4569 + + + + Bulgaria + 2021 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 451100 + + + + Bulgaria + 2021 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 446710 + + + + Bulgaria + 2021 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4390 + + + + Bulgaria + 2021 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 468656 + + + + Bulgaria + 2021 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 464242 + + + + Bulgaria + 2021 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4414 + + + + Bulgaria + 2021 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 463156 + + + + Bulgaria + 2021 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 459065 + + + + Bulgaria + 2021 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4091 + + + + Bulgaria + 2021 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 431122 + + + + Bulgaria + 2021 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 426957 + + + + Bulgaria + 2021 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4165 + + + + Bulgaria + 2021 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 301097 + + + + Bulgaria + 2021 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 297271 + + + + Bulgaria + 2021 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3826 + + + + Bulgaria + 2021 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 191865 + + + + Bulgaria + 2021 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 188552 + + + + Bulgaria + 2021 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3313 + + + + Bulgaria + 2021 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 107170 + + + + Bulgaria + 2021 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 104669 + + + + Bulgaria + 2021 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2501 + + + + Bulgaria + 2021 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 32747 + + + + Bulgaria + 2021 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 31901 + + + + Bulgaria + 2021 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 846 + + + + Bulgaria + 2021 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 5173 + + + + Bulgaria + 2021 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4986 + + + + Bulgaria + 2021 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 187 + + + + Bulgaria + 2021 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 337 + + + + Bulgaria + 2021 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 324 + + + + Bulgaria + 2021 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 13 + + Bulgaria 2011 @@ -27142,7 +29482,7 @@ Final figure, complete 2012 1111488248 - 5 + 7 China @@ -27155,7 +29495,7 @@ Final figure, complete 2012 1057297384 - 5 + 7 China @@ -27168,7 +29508,7 @@ Final figure, complete 2012 54190864 - 5 + 7 China @@ -27181,7 +29521,7 @@ Final figure, complete 2012 99889114 - 5 + 7 China @@ -27194,7 +29534,7 @@ Final figure, complete 2012 99577266 - 5 + 7 China @@ -27207,7 +29547,7 @@ Final figure, complete 2012 311848 - 5 + 7 China @@ -27220,7 +29560,7 @@ Final figure, complete 2012 127412518 - 5 + 7 China @@ -27233,7 +29573,7 @@ Final figure, complete 2012 126911286 - 5 + 7 China @@ -27246,7 +29586,7 @@ Final figure, complete 2012 501232 - 5 + 7 China @@ -27259,7 +29599,7 @@ Final figure, complete 2012 101013852 - 5 + 7 China @@ -27272,7 +29612,7 @@ Final figure, complete 2012 100404823 - 5 + 7 China @@ -27285,7 +29625,7 @@ Final figure, complete 2012 609029 - 5 + 7 China @@ -27298,7 +29638,7 @@ Final figure, complete 2012 97138203 - 5 + 7 China @@ -27311,7 +29651,7 @@ Final figure, complete 2012 96273898 - 5 + 7 China @@ -27324,7 +29664,7 @@ Final figure, complete 2012 864305 - 5 + 7 China @@ -27337,7 +29677,7 @@ Final figure, complete 2012 118025959 - 5 + 7 China @@ -27350,7 +29690,7 @@ Final figure, complete 2012 116605651 - 5 + 7 China @@ -27363,7 +29703,7 @@ Final figure, complete 2012 1420308 - 5 + 7 China @@ -27376,7 +29716,7 @@ Final figure, complete 2012 124753964 - 5 + 7 China @@ -27389,7 +29729,7 @@ Final figure, complete 2012 122657002 - 5 + 7 China @@ -27402,7 +29742,7 @@ Final figure, complete 2012 2096962 - 5 + 7 China @@ -27415,7 +29755,7 @@ Final figure, complete 2012 105594553 - 5 + 7 China @@ -27428,7 +29768,7 @@ Final figure, complete 2012 103301323 - 5 + 7 China @@ -27441,7 +29781,7 @@ Final figure, complete 2012 2293230 - 5 + 7 China @@ -27454,7 +29794,7 @@ Final figure, complete 2012 78753171 - 5 + 7 China @@ -27467,7 +29807,7 @@ Final figure, complete 2012 75430773 - 5 + 7 China @@ -27480,7 +29820,7 @@ Final figure, complete 2012 3322398 - 5 + 7 China @@ -27493,7 +29833,7 @@ Final figure, complete 2012 81312474 - 5 + 7 China @@ -27506,7 +29846,7 @@ Final figure, complete 2012 75649087 - 5 + 7 China @@ -27519,7 +29859,7 @@ Final figure, complete 2012 5663387 - 5 + 7 China @@ -27532,7 +29872,7 @@ Final figure, complete 2012 58667282 - 5 + 7 China @@ -27545,7 +29885,7 @@ Final figure, complete 2012 52590232 - 5 + 7 China @@ -27558,7 +29898,7 @@ Final figure, complete 2012 6077050 - 5 + 7 China @@ -27571,7 +29911,7 @@ Final figure, complete 2012 41113282 - 5 + 7 China @@ -27584,7 +29924,7 @@ Final figure, complete 2012 34776290 - 5 + 7 China @@ -27597,7 +29937,7 @@ Final figure, complete 2012 6336992 - 5 + 7 China @@ -27610,7 +29950,7 @@ Final figure, complete 2012 32972397 - 5 + 7 China @@ -27623,7 +29963,7 @@ Final figure, complete 2012 25264402 - 5 + 7 China @@ -27636,7 +29976,7 @@ Final figure, complete 2012 7707995 - 5 + 7 China @@ -27649,7 +29989,7 @@ Final figure, complete 2012 23852133 - 5 + 7 China @@ -27662,7 +30002,7 @@ Final figure, complete 2012 16126999 - 5 + 7 China @@ -27675,7 +30015,7 @@ Final figure, complete 2012 7725134 - 5 + 7 China @@ -27688,7 +30028,7 @@ Final figure, complete 2012 13373198 - 5 + 7 China @@ -27701,7 +30041,7 @@ Final figure, complete 2012 7867884 - 5 + 7 China @@ -27714,7 +30054,7 @@ Final figure, complete 2012 5505314 - 5 + 7 China @@ -27727,7 +30067,7 @@ Final figure, complete 2012 7616148 - 5 + 7 China @@ -27740,7 +30080,7 @@ Final figure, complete 2012 3860468 - 5 + 7 China @@ -27753,7 +30093,7 @@ Final figure, complete 2012 3755680 - 5 + 7 China @@ -27766,7 +30106,7 @@ Final figure, complete 2002 103031165 - 5,6 + 7,8 China @@ -27779,7 +30119,7 @@ Final figure, complete 2002 102079099 - 5,6 + 7,8 China @@ -27792,7 +30132,7 @@ Final figure, complete 2002 952066 - 5,6 + 7,8 China @@ -27805,7 +30145,7 @@ Final figure, complete 2002 958084632 - 5,6 + 7,8 China @@ -27818,7 +30158,7 @@ Final figure, complete 2002 871092563 - 5,6 + 7,8 China @@ -27831,7 +30171,7 @@ Final figure, complete 2002 86992069 - 5,6 + 7,8 China @@ -27844,7 +30184,7 @@ Final figure, complete 2002 94573174 - 5,6 + 7,8 China @@ -27857,7 +30197,7 @@ Final figure, complete 2002 93270041 - 5,6 + 7,8 China @@ -27870,7 +30210,7 @@ Final figure, complete 2002 1303133 - 5,6 + 7,8 China @@ -27883,7 +30223,7 @@ Final figure, complete 2002 117602265 - 5,6 + 7,8 China @@ -27896,7 +30236,7 @@ Final figure, complete 2002 115453779 - 5,6 + 7,8 China @@ -27909,7 +30249,7 @@ Final figure, complete 2002 2148486 - 5,6 + 7,8 China @@ -27922,7 +30262,7 @@ Final figure, complete 2002 127314298 - 5,6 + 7,8 China @@ -27935,7 +30275,7 @@ Final figure, complete 2002 124604247 - 5,6 + 7,8 China @@ -27948,7 +30288,7 @@ Final figure, complete 2002 2710051 - 5,6 + 7,8 China @@ -27961,7 +30301,7 @@ Final figure, complete 2002 109147295 - 5,6 + 7,8 China @@ -27974,7 +30314,7 @@ Final figure, complete 2002 106517264 - 5,6 + 7,8 China @@ -27987,7 +30327,7 @@ Final figure, complete 2002 2630031 - 5,6 + 7,8 China @@ -28000,7 +30340,7 @@ Final figure, complete 2002 81242945 - 5,6 + 7,8 China @@ -28013,7 +30353,7 @@ Final figure, complete 2002 77691515 - 5,6 + 7,8 China @@ -28026,7 +30366,7 @@ Final figure, complete 2002 3551430 - 5,6 + 7,8 China @@ -28039,7 +30379,7 @@ Final figure, complete 2002 85521045 - 5,6 + 7,8 China @@ -28052,7 +30392,7 @@ Final figure, complete 2002 79609738 - 5,6 + 7,8 China @@ -28065,7 +30405,7 @@ Final figure, complete 2002 5911307 - 5,6 + 7,8 China @@ -28078,7 +30418,7 @@ Final figure, complete 2002 63304200 - 5,6 + 7,8 China @@ -28091,7 +30431,7 @@ Final figure, complete 2002 56775576 - 5,6 + 7,8 China @@ -28104,7 +30444,7 @@ Final figure, complete 2002 6528624 - 5,6 + 7,8 China @@ -28117,7 +30457,7 @@ Final figure, complete 2002 46370375 - 5,6 + 7,8 China @@ -28130,7 +30470,7 @@ Final figure, complete 2002 38765410 - 5,6 + 7,8 China @@ -28143,7 +30483,7 @@ Final figure, complete 2002 7604965 - 5,6 + 7,8 China @@ -28156,7 +30496,7 @@ Final figure, complete 2002 41703848 - 5,6 + 7,8 China @@ -28169,7 +30509,7 @@ Final figure, complete 2002 30631813 - 5,6 + 7,8 China @@ -28182,7 +30522,7 @@ Final figure, complete 2002 11072035 - 5,6 + 7,8 China @@ -28195,7 +30535,7 @@ Final figure, complete 2002 88274022 - 5,6 + 7,8 China @@ -28208,7 +30548,7 @@ Final figure, complete 2002 45694081 - 5,6 + 7,8 China @@ -28221,7 +30561,7 @@ Final figure, complete 2002 42579941 - 5,6 + 7,8 China, Hong Kong SAR @@ -28234,7 +30574,7 @@ Final figure, complete 2022 289398 - 7 + 9 China, Hong Kong SAR @@ -28247,7 +30587,7 @@ Final figure, complete 2022 288644 - 7 + 9 China, Hong Kong SAR @@ -28260,7 +30600,7 @@ Final figure, complete 2022 754 - 7 + 9 China, Hong Kong SAR @@ -28273,7 +30613,7 @@ Final figure, complete 2022 6894630 - 7 + 9 China, Hong Kong SAR @@ -28286,7 +30626,7 @@ Final figure, complete 2022 6572421 - 7 + 9 China, Hong Kong SAR @@ -28299,7 +30639,7 @@ Final figure, complete 2022 322209 - 7 + 9 China, Hong Kong SAR @@ -28312,7 +30652,7 @@ Final figure, complete 2022 264900 - 7 + 9 China, Hong Kong SAR @@ -28325,7 +30665,7 @@ Final figure, complete 2022 264549 - 7 + 9 China, Hong Kong SAR @@ -28338,7 +30678,7 @@ Final figure, complete 2022 351 - 7 + 9 China, Hong Kong SAR @@ -28351,7 +30691,7 @@ Final figure, complete 2022 326214 - 7 + 9 China, Hong Kong SAR @@ -28364,7 +30704,7 @@ Final figure, complete 2022 325313 - 7 + 9 China, Hong Kong SAR @@ -28377,7 +30717,7 @@ Final figure, complete 2022 901 - 7 + 9 China, Hong Kong SAR @@ -28390,7 +30730,7 @@ Final figure, complete 2022 458407 - 7 + 9 China, Hong Kong SAR @@ -28403,7 +30743,7 @@ Final figure, complete 2022 456071 - 7 + 9 China, Hong Kong SAR @@ -28416,7 +30756,7 @@ Final figure, complete 2022 2336 - 7 + 9 China, Hong Kong SAR @@ -28429,7 +30769,7 @@ Final figure, complete 2022 527028 - 7 + 9 China, Hong Kong SAR @@ -28442,7 +30782,7 @@ Final figure, complete 2022 523367 - 7 + 9 China, Hong Kong SAR @@ -28455,7 +30795,7 @@ Final figure, complete 2022 3661 - 7 + 9 China, Hong Kong SAR @@ -28468,7 +30808,7 @@ Final figure, complete 2022 587743 - 7 + 9 China, Hong Kong SAR @@ -28481,7 +30821,7 @@ Final figure, complete 2022 583351 - 7 + 9 China, Hong Kong SAR @@ -28494,7 +30834,7 @@ Final figure, complete 2022 4392 - 7 + 9 China, Hong Kong SAR @@ -28507,7 +30847,7 @@ Final figure, complete 2022 586611 - 7 + 9 China, Hong Kong SAR @@ -28520,7 +30860,7 @@ Final figure, complete 2022 580475 - 7 + 9 China, Hong Kong SAR @@ -28533,7 +30873,7 @@ Final figure, complete 2022 6136 - 7 + 9 China, Hong Kong SAR @@ -28546,7 +30886,7 @@ Final figure, complete 2022 582989 - 7 + 9 China, Hong Kong SAR @@ -28559,7 +30899,7 @@ Final figure, complete 2022 575035 - 7 + 9 China, Hong Kong SAR @@ -28572,7 +30912,7 @@ Final figure, complete 2022 7954 - 7 + 9 China, Hong Kong SAR @@ -28585,7 +30925,7 @@ Final figure, complete 2022 575242 - 7 + 9 China, Hong Kong SAR @@ -28598,7 +30938,7 @@ Final figure, complete 2022 563585 - 7 + 9 China, Hong Kong SAR @@ -28611,7 +30951,7 @@ Final figure, complete 2022 11657 - 7 + 9 China, Hong Kong SAR @@ -28624,7 +30964,7 @@ Final figure, complete 2022 630782 - 7 + 9 China, Hong Kong SAR @@ -28637,7 +30977,7 @@ Final figure, complete 2022 612374 - 7 + 9 China, Hong Kong SAR @@ -28650,7 +30990,7 @@ Final figure, complete 2022 18408 - 7 + 9 China, Hong Kong SAR @@ -28663,7 +31003,7 @@ Final figure, complete 2022 613802 - 7 + 9 China, Hong Kong SAR @@ -28676,7 +31016,7 @@ Final figure, complete 2022 583648 - 7 + 9 China, Hong Kong SAR @@ -28689,7 +31029,7 @@ Final figure, complete 2022 30154 - 7 + 9 China, Hong Kong SAR @@ -28702,7 +31042,7 @@ Final figure, complete 2022 492235 - 7 + 9 China, Hong Kong SAR @@ -28715,7 +31055,7 @@ Final figure, complete 2022 456273 - 7 + 9 China, Hong Kong SAR @@ -28728,7 +31068,7 @@ Final figure, complete 2022 35962 - 7 + 9 China, Hong Kong SAR @@ -28741,7 +31081,7 @@ Final figure, complete 2022 370751 - 7 + 9 China, Hong Kong SAR @@ -28754,7 +31094,7 @@ Final figure, complete 2022 335655 - 7 + 9 China, Hong Kong SAR @@ -28767,7 +31107,7 @@ Final figure, complete 2022 35096 - 7 + 9 China, Hong Kong SAR @@ -28780,7 +31120,7 @@ Final figure, complete 2022 588528 - 7 + 9 China, Hong Kong SAR @@ -28793,7 +31133,7 @@ Final figure, complete 2022 424081 - 7 + 9 China, Hong Kong SAR @@ -28806,7 +31146,7 @@ Final figure, complete 2022 164447 - 7 + 9 China, Hong Kong SAR @@ -28819,7 +31159,7 @@ Final figure, complete 2022 259218 - 8 + 10 China, Hong Kong SAR @@ -28832,7 +31172,7 @@ Final figure, complete 2022 257926 - 8 + 10 China, Hong Kong SAR @@ -28845,7 +31185,7 @@ Final figure, complete 2022 1292 - 8 + 10 China, Hong Kong SAR @@ -28858,7 +31198,7 @@ Final figure, complete 2022 6765348 - 8 + 10 China, Hong Kong SAR @@ -28871,7 +31211,7 @@ Final figure, complete 2022 6382575 - 8 + 10 China, Hong Kong SAR @@ -28884,7 +31224,7 @@ Final figure, complete 2022 382773 - 8 + 10 China, Hong Kong SAR @@ -28897,7 +31237,7 @@ Final figure, complete 2022 340907 - 8 + 10 China, Hong Kong SAR @@ -28910,7 +31250,7 @@ Final figure, complete 2022 338913 - 8 + 10 China, Hong Kong SAR @@ -28923,7 +31263,7 @@ Final figure, complete 2022 1994 - 8 + 10 China, Hong Kong SAR @@ -28936,7 +31276,7 @@ Final figure, complete 2022 445074 - 8 + 10 China, Hong Kong SAR @@ -28949,7 +31289,7 @@ Final figure, complete 2022 442049 - 8 + 10 China, Hong Kong SAR @@ -28962,7 +31302,7 @@ Final figure, complete 2022 3025 - 8 + 10 China, Hong Kong SAR @@ -28975,7 +31315,7 @@ Final figure, complete 2022 510236 - 8 + 10 China, Hong Kong SAR @@ -28988,7 +31328,7 @@ Final figure, complete 2022 505846 - 8 + 10 China, Hong Kong SAR @@ -29001,7 +31341,7 @@ Final figure, complete 2022 4390 - 8 + 10 China, Hong Kong SAR @@ -29014,7 +31354,7 @@ Final figure, complete 2022 577232 - 8 + 10 China, Hong Kong SAR @@ -29027,7 +31367,7 @@ Final figure, complete 2022 570706 - 8 + 10 China, Hong Kong SAR @@ -29040,7 +31380,7 @@ Final figure, complete 2022 6526 - 8 + 10 China, Hong Kong SAR @@ -29053,7 +31393,7 @@ Final figure, complete 2022 571293 - 8 + 10 China, Hong Kong SAR @@ -29066,7 +31406,7 @@ Final figure, complete 2022 563693 - 8 + 10 China, Hong Kong SAR @@ -29079,7 +31419,7 @@ Final figure, complete 2022 7600 - 8 + 10 China, Hong Kong SAR @@ -29092,7 +31432,7 @@ Final figure, complete 2022 569805 - 8 + 10 China, Hong Kong SAR @@ -29105,7 +31445,7 @@ Final figure, complete 2022 561239 - 8 + 10 China, Hong Kong SAR @@ -29118,7 +31458,7 @@ Final figure, complete 2022 8566 - 8 + 10 China, Hong Kong SAR @@ -29131,7 +31471,7 @@ Final figure, complete 2022 567037 - 8 + 10 China, Hong Kong SAR @@ -29144,7 +31484,7 @@ Final figure, complete 2022 556852 - 8 + 10 China, Hong Kong SAR @@ -29157,7 +31497,7 @@ Final figure, complete 2022 10185 - 8 + 10 China, Hong Kong SAR @@ -29170,7 +31510,7 @@ Final figure, complete 2022 643065 - 8 + 10 China, Hong Kong SAR @@ -29183,7 +31523,7 @@ Final figure, complete 2022 625442 - 8 + 10 China, Hong Kong SAR @@ -29196,7 +31536,7 @@ Final figure, complete 2022 17623 - 8 + 10 China, Hong Kong SAR @@ -29209,7 +31549,7 @@ Final figure, complete 2022 623049 - 8 + 10 China, Hong Kong SAR @@ -29222,7 +31562,7 @@ Final figure, complete 2022 596795 - 8 + 10 China, Hong Kong SAR @@ -29235,7 +31575,7 @@ Final figure, complete 2022 26254 - 8 + 10 China, Hong Kong SAR @@ -29248,7 +31588,7 @@ Final figure, complete 2022 495279 - 8 + 10 China, Hong Kong SAR @@ -29261,7 +31601,7 @@ Final figure, complete 2022 463939 - 8 + 10 China, Hong Kong SAR @@ -29274,7 +31614,7 @@ Final figure, complete 2022 31340 - 8 + 10 China, Hong Kong SAR @@ -29287,7 +31627,7 @@ Final figure, complete 2022 395703 - 8 + 10 China, Hong Kong SAR @@ -29300,7 +31640,7 @@ Final figure, complete 2022 359030 - 8 + 10 China, Hong Kong SAR @@ -29313,7 +31653,7 @@ Final figure, complete 2022 36673 - 8 + 10 China, Hong Kong SAR @@ -29326,7 +31666,7 @@ Final figure, complete 2022 220827 - 8 + 10 China, Hong Kong SAR @@ -29339,7 +31679,7 @@ Final figure, complete 2022 187666 - 8 + 10 China, Hong Kong SAR @@ -29352,7 +31692,7 @@ Final figure, complete 2022 33161 - 8 + 10 China, Hong Kong SAR @@ -29365,7 +31705,7 @@ Final figure, complete 2022 546623 - 8 + 10 China, Hong Kong SAR @@ -29378,7 +31718,7 @@ Final figure, complete 2022 352479 - 8 + 10 China, Hong Kong SAR @@ -29391,7 +31731,748 @@ Final figure, complete 2022 194144 - 8 + 10 + + + China, Macao SAR + 2021 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 23643 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 23557 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 86 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 469681 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 457696 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 11985 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 27878 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 27825 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 53 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 38688 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 38631 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 57 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 51094 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 50989 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 105 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 46797 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 46736 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 61 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 34400 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 34315 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 85 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 37278 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 37049 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 229 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 37476 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 37108 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 368 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 45309 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 44410 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 899 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 44829 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 43058 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1771 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 35455 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 33444 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2011 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 22468 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 20953 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1515 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 10673 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 9633 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1040 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6037 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4920 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1117 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4311 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3106 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1205 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2474 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1490 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 984 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 721 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 421 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 300 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 150 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 51 + 11 + + + China, Macao SAR + 2021 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 99 + 11 China, Macao SAR @@ -29404,7 +32485,7 @@ Final figure, complete 2017 32689 - 9 + 12 China, Macao SAR @@ -29417,7 +32498,7 @@ Final figure, complete 2017 32620 - 9 + 12 China, Macao SAR @@ -29430,7 +32511,7 @@ Final figure, complete 2017 69 - 9 + 12 China, Macao SAR @@ -29443,7 +32524,7 @@ Final figure, complete 2017 572987 - 9 + 12 China, Macao SAR @@ -29456,7 +32537,7 @@ Final figure, complete 2017 553153 - 9 + 12 China, Macao SAR @@ -29469,7 +32550,7 @@ Final figure, complete 2017 19834 - 9 + 12 China, Macao SAR @@ -29482,7 +32563,7 @@ Final figure, complete 2017 52773 - 9 + 12 China, Macao SAR @@ -29495,7 +32576,7 @@ Final figure, complete 2017 52670 - 9 + 12 China, Macao SAR @@ -29508,7 +32589,7 @@ Final figure, complete 2017 103 - 9 + 12 China, Macao SAR @@ -29521,7 +32602,7 @@ Final figure, complete 2017 71139 - 9 + 12 China, Macao SAR @@ -29534,7 +32615,7 @@ Final figure, complete 2017 70950 - 9 + 12 China, Macao SAR @@ -29547,7 +32628,7 @@ Final figure, complete 2017 189 - 9 + 12 China, Macao SAR @@ -29560,7 +32641,7 @@ Final figure, complete 2017 63877 - 9 + 12 China, Macao SAR @@ -29573,7 +32654,7 @@ Final figure, complete 2017 63727 - 9 + 12 China, Macao SAR @@ -29586,7 +32667,7 @@ Final figure, complete 2017 150 - 9 + 12 China, Macao SAR @@ -29599,7 +32680,7 @@ Final figure, complete 2017 50042 - 9 + 12 China, Macao SAR @@ -29612,7 +32693,7 @@ Final figure, complete 2017 49735 - 9 + 12 China, Macao SAR @@ -29625,7 +32706,7 @@ Final figure, complete 2017 307 - 9 + 12 China, Macao SAR @@ -29638,7 +32719,7 @@ Final figure, complete 2017 51495 - 9 + 12 China, Macao SAR @@ -29651,7 +32732,7 @@ Final figure, complete 2017 50942 - 9 + 12 China, Macao SAR @@ -29664,7 +32745,7 @@ Final figure, complete 2017 553 - 9 + 12 China, Macao SAR @@ -29677,7 +32758,7 @@ Final figure, complete 2017 50630 - 9 + 12 China, Macao SAR @@ -29690,7 +32771,7 @@ Final figure, complete 2017 49835 - 9 + 12 China, Macao SAR @@ -29703,7 +32784,7 @@ Final figure, complete 2017 795 - 9 + 12 China, Macao SAR @@ -29716,7 +32797,7 @@ Final figure, complete 2017 53376 - 9 + 12 China, Macao SAR @@ -29729,7 +32810,7 @@ Final figure, complete 2017 52082 - 9 + 12 China, Macao SAR @@ -29742,7 +32823,7 @@ Final figure, complete 2017 1294 - 9 + 12 China, Macao SAR @@ -29755,7 +32836,7 @@ Final figure, complete 2017 49272 - 9 + 12 China, Macao SAR @@ -29768,7 +32849,7 @@ Final figure, complete 2017 46876 - 9 + 12 China, Macao SAR @@ -29781,7 +32862,7 @@ Final figure, complete 2017 2396 - 9 + 12 China, Macao SAR @@ -29794,7 +32875,7 @@ Final figure, complete 2017 38311 - 9 + 12 China, Macao SAR @@ -29807,7 +32888,7 @@ Final figure, complete 2017 35497 - 9 + 12 China, Macao SAR @@ -29820,7 +32901,7 @@ Final figure, complete 2017 2814 - 9 + 12 China, Macao SAR @@ -29833,7 +32914,7 @@ Final figure, complete 2017 59383 - 9 + 12 China, Macao SAR @@ -29846,7 +32927,7 @@ Final figure, complete 2017 48219 - 9 + 12 China, Macao SAR @@ -29859,7 +32940,7 @@ Final figure, complete 2017 11164 - 9 + 12 China, Macao SAR @@ -37126,7 +40207,7 @@ Final figure, complete 2013 55818 - 10 + 13 Cyprus @@ -37139,7 +40220,7 @@ Final figure, complete 2013 55320 - 10 + 13 Cyprus @@ -37152,7 +40233,7 @@ Final figure, complete 2013 83 - 10 + 13 Cyprus @@ -37165,7 +40246,7 @@ Final figure, complete 2013 415 - 10 + 13 Cyprus @@ -37178,7 +40259,7 @@ Final figure, complete 2013 705459 - 10 + 13 Cyprus @@ -37191,7 +40272,7 @@ Final figure, complete 2013 683214 - 10 + 13 Cyprus @@ -37204,7 +40285,7 @@ Final figure, complete 2013 9152 - 10 + 13 Cyprus @@ -37217,7 +40298,7 @@ Final figure, complete 2013 13093 - 10 + 13 Cyprus @@ -37230,7 +40311,7 @@ Final figure, complete 2013 66073 - 10 + 13 Cyprus @@ -37243,7 +40324,7 @@ Final figure, complete 2013 65125 - 10 + 13 Cyprus @@ -37256,7 +40337,7 @@ Final figure, complete 2013 133 - 10 + 13 Cyprus @@ -37269,7 +40350,7 @@ Final figure, complete 2013 815 - 10 + 13 Cyprus @@ -37282,7 +40363,7 @@ Final figure, complete 2013 74114 - 10 + 13 Cyprus @@ -37295,7 +40376,7 @@ Final figure, complete 2013 72308 - 10 + 13 Cyprus @@ -37308,7 +40389,7 @@ Final figure, complete 2013 209 - 10 + 13 Cyprus @@ -37321,7 +40402,7 @@ Final figure, complete 2013 1597 - 10 + 13 Cyprus @@ -37334,7 +40415,7 @@ Final figure, complete 2013 69834 - 10 + 13 Cyprus @@ -37347,7 +40428,7 @@ Final figure, complete 2013 67110 - 10 + 13 Cyprus @@ -37360,7 +40441,7 @@ Final figure, complete 2013 199 - 10 + 13 Cyprus @@ -37373,7 +40454,7 @@ Final figure, complete 2013 2525 - 10 + 13 Cyprus @@ -37386,7 +40467,7 @@ Final figure, complete 2013 61862 - 10 + 13 Cyprus @@ -37399,7 +40480,7 @@ Final figure, complete 2013 59749 - 10 + 13 Cyprus @@ -37412,7 +40493,7 @@ Final figure, complete 2013 225 - 10 + 13 Cyprus @@ -37425,7 +40506,7 @@ Final figure, complete 2013 1888 - 10 + 13 Cyprus @@ -37438,7 +40519,7 @@ Final figure, complete 2013 59728 - 10 + 13 Cyprus @@ -37451,7 +40532,7 @@ Final figure, complete 2013 57924 - 10 + 13 Cyprus @@ -37464,7 +40545,7 @@ Final figure, complete 2013 232 - 10 + 13 Cyprus @@ -37477,7 +40558,7 @@ Final figure, complete 2013 1572 - 10 + 13 Cyprus @@ -37490,7 +40571,7 @@ Final figure, complete 2013 57240 - 10 + 13 Cyprus @@ -37503,7 +40584,7 @@ Final figure, complete 2013 55981 - 10 + 13 Cyprus @@ -37516,7 +40597,7 @@ Final figure, complete 2013 254 - 10 + 13 Cyprus @@ -37529,7 +40610,7 @@ Final figure, complete 2013 1005 - 10 + 13 Cyprus @@ -37542,7 +40623,7 @@ Final figure, complete 2013 56128 - 10 + 13 Cyprus @@ -37555,7 +40636,7 @@ Final figure, complete 2013 54971 - 10 + 13 Cyprus @@ -37568,7 +40649,7 @@ Final figure, complete 2013 231 - 10 + 13 Cyprus @@ -37581,7 +40662,7 @@ Final figure, complete 2013 926 - 10 + 13 Cyprus @@ -37594,7 +40675,7 @@ Final figure, complete 2013 47762 - 10 + 13 Cyprus @@ -37607,7 +40688,7 @@ Final figure, complete 2013 46864 - 10 + 13 Cyprus @@ -37620,7 +40701,7 @@ Final figure, complete 2013 295 - 10 + 13 Cyprus @@ -37633,7 +40714,7 @@ Final figure, complete 2013 603 - 10 + 13 Cyprus @@ -37646,7 +40727,7 @@ Final figure, complete 2013 45034 - 10 + 13 Cyprus @@ -37659,7 +40740,7 @@ Final figure, complete 2013 44093 - 10 + 13 Cyprus @@ -37672,7 +40753,7 @@ Final figure, complete 2013 421 - 10 + 13 Cyprus @@ -37685,7 +40766,7 @@ Final figure, complete 2013 520 - 10 + 13 Cyprus @@ -37698,7 +40779,7 @@ Final figure, complete 2013 36328 - 10 + 13 Cyprus @@ -37711,7 +40792,7 @@ Final figure, complete 2013 35233 - 10 + 13 Cyprus @@ -37724,7 +40805,7 @@ Final figure, complete 2013 711 - 10 + 13 Cyprus @@ -37737,7 +40818,7 @@ Final figure, complete 2013 384 - 10 + 13 Cyprus @@ -37750,7 +40831,7 @@ Final figure, complete 2013 29433 - 10 + 13 Cyprus @@ -37763,7 +40844,7 @@ Final figure, complete 2013 28018 - 10 + 13 Cyprus @@ -37776,7 +40857,7 @@ Final figure, complete 2013 1131 - 10 + 13 Cyprus @@ -37789,7 +40870,7 @@ Final figure, complete 2013 284 - 10 + 13 Cyprus @@ -37802,7 +40883,7 @@ Final figure, complete 2013 21058 - 10 + 13 Cyprus @@ -37815,7 +40896,7 @@ Final figure, complete 2013 19353 - 10 + 13 Cyprus @@ -37828,7 +40909,7 @@ Final figure, complete 2013 1556 - 10 + 13 Cyprus @@ -37841,7 +40922,7 @@ Final figure, complete 2013 149 - 10 + 13 Cyprus @@ -37854,7 +40935,7 @@ Final figure, complete 2013 24948 - 10 + 13 Cyprus @@ -37867,7 +40948,7 @@ Final figure, complete 2013 21157 - 10 + 13 Cyprus @@ -37880,7 +40961,7 @@ Final figure, complete 2013 3470 - 10 + 13 Cyprus @@ -37893,7 +40974,7 @@ Final figure, complete 2013 321 - 10 + 13 Cyprus @@ -37906,7 +40987,7 @@ Final figure, complete 2013 99 - 10 + 13 Cyprus @@ -37919,7 +41000,7 @@ Final figure, complete 2013 8 - 10 + 13 Cyprus @@ -37932,7 +41013,7 @@ Final figure, complete 2013 2 - 10 + 13 Cyprus @@ -37945,7 +41026,7 @@ Final figure, complete 2013 89 - 10 + 13 Cyprus @@ -37958,7 +41039,7 @@ Final figure, complete 2002 54603 - 10,11 + 13,14 Cyprus @@ -37971,7 +41052,7 @@ Final figure, complete 2002 54361 - 10,11 + 13,14 Cyprus @@ -37984,7 +41065,7 @@ Final figure, complete 2002 99 - 10,11 + 13,14 Cyprus @@ -37997,7 +41078,7 @@ Final figure, complete 2002 143 - 10,11 + 13,14 Cyprus @@ -38010,7 +41091,7 @@ Final figure, complete 2002 542087 - 10,11 + 13,14 Cyprus @@ -38023,7 +41104,7 @@ Final figure, complete 2002 521334 - 10,11 + 13,14 Cyprus @@ -38036,7 +41117,7 @@ Final figure, complete 2002 17225 - 10,11 + 13,14 Cyprus @@ -38049,7 +41130,7 @@ Final figure, complete 2002 3528 - 10,11 + 13,14 Cyprus @@ -38062,7 +41143,7 @@ Final figure, complete 2002 51803 - 10,11 + 13,14 Cyprus @@ -38075,7 +41156,7 @@ Final figure, complete 2002 51590 - 10,11 + 13,14 Cyprus @@ -38088,7 +41169,7 @@ Final figure, complete 2002 140 - 10,11 + 13,14 Cyprus @@ -38101,7 +41182,7 @@ Final figure, complete 2002 73 - 10,11 + 13,14 Cyprus @@ -38114,7 +41195,7 @@ Final figure, complete 2002 48272 - 10,11 + 13,14 Cyprus @@ -38127,7 +41208,7 @@ Final figure, complete 2002 47978 - 10,11 + 13,14 Cyprus @@ -38140,7 +41221,7 @@ Final figure, complete 2002 202 - 10,11 + 13,14 Cyprus @@ -38153,7 +41234,7 @@ Final figure, complete 2002 92 - 10,11 + 13,14 Cyprus @@ -38166,7 +41247,7 @@ Final figure, complete 2002 48233 - 10,11 + 13,14 Cyprus @@ -38179,7 +41260,7 @@ Final figure, complete 2002 47924 - 10,11 + 13,14 Cyprus @@ -38192,7 +41273,7 @@ Final figure, complete 2002 196 - 10,11 + 13,14 Cyprus @@ -38205,7 +41286,7 @@ Final figure, complete 2002 113 - 10,11 + 13,14 Cyprus @@ -38218,7 +41299,7 @@ Final figure, complete 2002 51561 - 10,11 + 13,14 Cyprus @@ -38231,7 +41312,7 @@ Final figure, complete 2002 51200 - 10,11 + 13,14 Cyprus @@ -38244,7 +41325,7 @@ Final figure, complete 2002 261 - 10,11 + 13,14 Cyprus @@ -38257,7 +41338,7 @@ Final figure, complete 2002 100 - 10,11 + 13,14 Cyprus @@ -38270,7 +41351,7 @@ Final figure, complete 2002 52289 - 10,11 + 13,14 Cyprus @@ -38283,7 +41364,7 @@ Final figure, complete 2002 51930 - 10,11 + 13,14 Cyprus @@ -38296,7 +41377,7 @@ Final figure, complete 2002 282 - 10,11 + 13,14 Cyprus @@ -38309,7 +41390,7 @@ Final figure, complete 2002 77 - 10,11 + 13,14 Cyprus @@ -38322,7 +41403,7 @@ Final figure, complete 2002 45580 - 10,11 + 13,14 Cyprus @@ -38335,7 +41416,7 @@ Final figure, complete 2002 45163 - 10,11 + 13,14 Cyprus @@ -38348,7 +41429,7 @@ Final figure, complete 2002 319 - 10,11 + 13,14 Cyprus @@ -38361,7 +41442,7 @@ Final figure, complete 2002 98 - 10,11 + 13,14 Cyprus @@ -38374,7 +41455,7 @@ Final figure, complete 2002 42587 - 10,11 + 13,14 Cyprus @@ -38387,7 +41468,7 @@ Final figure, complete 2002 41949 - 10,11 + 13,14 Cyprus @@ -38400,7 +41481,7 @@ Final figure, complete 2002 499 - 10,11 + 13,14 Cyprus @@ -38413,7 +41494,7 @@ Final figure, complete 2002 139 - 10,11 + 13,14 Cyprus @@ -38426,7 +41507,7 @@ Final figure, complete 2002 34554 - 10,11 + 13,14 Cyprus @@ -38439,7 +41520,7 @@ Final figure, complete 2002 33561 - 10,11 + 13,14 Cyprus @@ -38452,7 +41533,7 @@ Final figure, complete 2002 828 - 10,11 + 13,14 Cyprus @@ -38465,7 +41546,7 @@ Final figure, complete 2002 165 - 10,11 + 13,14 Cyprus @@ -38478,7 +41559,7 @@ Final figure, complete 2002 30747 - 10,11 + 13,14 Cyprus @@ -38491,7 +41572,7 @@ Final figure, complete 2002 29106 - 10,11 + 13,14 Cyprus @@ -38504,7 +41585,7 @@ Final figure, complete 2002 1397 - 10,11 + 13,14 Cyprus @@ -38517,7 +41598,7 @@ Final figure, complete 2002 244 - 10,11 + 13,14 Cyprus @@ -38530,7 +41611,7 @@ Final figure, complete 2002 80473 - 10,11 + 13,14 Cyprus @@ -38543,7 +41624,7 @@ Final figure, complete 2002 66300 - 10,11 + 13,14 Cyprus @@ -38556,7 +41637,7 @@ Final figure, complete 2002 12982 - 10,11 + 13,14 Cyprus @@ -38569,7 +41650,7 @@ Final figure, complete 2002 1191 - 10,11 + 13,14 Cyprus @@ -38582,7 +41663,7 @@ Final figure, complete 2002 1385 - 10,11 + 13,14 Cyprus @@ -38595,7 +41676,7 @@ Final figure, complete 2002 272 - 10,11 + 13,14 Cyprus @@ -38608,7 +41689,7 @@ Final figure, complete 2002 20 - 10,11 + 13,14 Cyprus @@ -38621,7 +41702,7 @@ Final figure, complete 2002 1093 - 10,11 + 13,14 Democratic People's Republic of Korea @@ -41520,7 +44601,7 @@ Final figure, complete 2001 1341039 - 12 + 15 Ecuador @@ -41533,7 +44614,7 @@ Final figure, complete 2001 1277117 - 12 + 15 Ecuador @@ -41546,7 +44627,7 @@ Final figure, complete 2001 63307 - 12 + 15 Ecuador @@ -41559,7 +44640,7 @@ Final figure, complete 2001 615 - 12 + 15 Ecuador @@ -41572,7 +44653,7 @@ Final figure, complete 2001 9457627 - 12 + 15 Ecuador @@ -41585,7 +44666,7 @@ Final figure, complete 2001 8654019 - 12 + 15 Ecuador @@ -41598,7 +44679,7 @@ Final figure, complete 2001 794314 - 12 + 15 Ecuador @@ -41611,7 +44692,7 @@ Final figure, complete 2001 9294 - 12 + 15 Ecuador @@ -41624,7 +44705,7 @@ Final figure, complete 2001 1240531 - 12 + 15 Ecuador @@ -41637,7 +44718,7 @@ Final figure, complete 2001 1195871 - 12 + 15 Ecuador @@ -41650,7 +44731,7 @@ Final figure, complete 2001 44095 - 12 + 15 Ecuador @@ -41663,7 +44744,7 @@ Final figure, complete 2001 565 - 12 + 15 Ecuador @@ -41676,7 +44757,7 @@ Final figure, complete 2001 1168637 - 12 + 15 Ecuador @@ -41689,7 +44770,7 @@ Final figure, complete 2001 1126335 - 12 + 15 Ecuador @@ -41702,7 +44783,7 @@ Final figure, complete 2001 41697 - 12 + 15 Ecuador @@ -41715,7 +44796,7 @@ Final figure, complete 2001 605 - 12 + 15 Ecuador @@ -41728,7 +44809,7 @@ Final figure, complete 2001 947395 - 12 + 15 Ecuador @@ -41741,7 +44822,7 @@ Final figure, complete 2001 910866 - 12 + 15 Ecuador @@ -41754,7 +44835,7 @@ Final figure, complete 2001 35919 - 12 + 15 Ecuador @@ -41767,7 +44848,7 @@ Final figure, complete 2001 610 - 12 + 15 Ecuador @@ -41780,7 +44861,7 @@ Final figure, complete 2001 863071 - 12 + 15 Ecuador @@ -41793,7 +44874,7 @@ Final figure, complete 2001 822418 - 12 + 15 Ecuador @@ -41806,7 +44887,7 @@ Final figure, complete 2001 40041 - 12 + 15 Ecuador @@ -41819,7 +44900,7 @@ Final figure, complete 2001 612 - 12 + 15 Ecuador @@ -41832,7 +44913,7 @@ Final figure, complete 2001 774543 - 12 + 15 Ecuador @@ -41845,7 +44926,7 @@ Final figure, complete 2001 726074 - 12 + 15 Ecuador @@ -41858,7 +44939,7 @@ Final figure, complete 2001 47909 - 12 + 15 Ecuador @@ -41871,7 +44952,7 @@ Final figure, complete 2001 560 - 12 + 15 Ecuador @@ -41884,7 +44965,7 @@ Final figure, complete 2001 673871 - 12 + 15 Ecuador @@ -41897,7 +44978,7 @@ Final figure, complete 2001 616777 - 12 + 15 Ecuador @@ -41910,7 +44991,7 @@ Final figure, complete 2001 56412 - 12 + 15 Ecuador @@ -41923,7 +45004,7 @@ Final figure, complete 2001 682 - 12 + 15 Ecuador @@ -41936,7 +45017,7 @@ Final figure, complete 2001 538983 - 12 + 15 Ecuador @@ -41949,7 +45030,7 @@ Final figure, complete 2001 481430 - 12 + 15 Ecuador @@ -41962,7 +45043,7 @@ Final figure, complete 2001 56937 - 12 + 15 Ecuador @@ -41975,7 +45056,7 @@ Final figure, complete 2001 616 - 12 + 15 Ecuador @@ -41988,7 +45069,7 @@ Final figure, complete 2001 462855 - 12 + 15 Ecuador @@ -42001,7 +45082,7 @@ Final figure, complete 2001 395859 - 12 + 15 Ecuador @@ -42014,7 +45095,7 @@ Final figure, complete 2001 66360 - 12 + 15 Ecuador @@ -42027,7 +45108,7 @@ Final figure, complete 2001 636 - 12 + 15 Ecuador @@ -42040,7 +45121,7 @@ Final figure, complete 2001 339411 - 12 + 15 Ecuador @@ -42053,7 +45134,7 @@ Final figure, complete 2001 280591 - 12 + 15 Ecuador @@ -42066,7 +45147,7 @@ Final figure, complete 2001 58253 - 12 + 15 Ecuador @@ -42079,7 +45160,7 @@ Final figure, complete 2001 567 - 12 + 15 Ecuador @@ -42092,7 +45173,7 @@ Final figure, complete 2001 293667 - 12 + 15 Ecuador @@ -42105,7 +45186,7 @@ Final figure, complete 2001 228230 - 12 + 15 Ecuador @@ -42118,7 +45199,7 @@ Final figure, complete 2001 64856 - 12 + 15 Ecuador @@ -42131,7 +45212,7 @@ Final figure, complete 2001 581 - 12 + 15 Ecuador @@ -42144,7 +45225,7 @@ Final figure, complete 2001 813624 - 12 + 15 Ecuador @@ -42157,7 +45238,7 @@ Final figure, complete 2001 592451 - 12 + 15 Ecuador @@ -42170,7 +45251,7 @@ Final figure, complete 2001 218528 - 12 + 15 Ecuador @@ -42183,7 +45264,7 @@ Final figure, complete 2001 2645 - 12 + 15 Egypt @@ -42196,7 +45277,7 @@ Final figure, complete 2019 9030546 - 13 + 16 Egypt @@ -42209,7 +45290,7 @@ Final figure, complete 2019 8662609 - 13 + 16 Egypt @@ -42222,7 +45303,7 @@ Final figure, complete 2019 367937 - 13 + 16 Egypt @@ -42235,7 +45316,7 @@ Final figure, complete 2019 71382733 - 13 + 16 Egypt @@ -42248,7 +45329,7 @@ Final figure, complete 2019 52949037 - 13 + 16 Egypt @@ -42261,7 +45342,7 @@ Final figure, complete 2019 18433696 - 13 + 16 Egypt @@ -42274,7 +45355,7 @@ Final figure, complete 2019 9006058 - 13 + 16 Egypt @@ -42287,7 +45368,7 @@ Final figure, complete 2019 8188770 - 13 + 16 Egypt @@ -42300,7 +45381,7 @@ Final figure, complete 2019 817288 - 13 + 16 Egypt @@ -42313,7 +45394,7 @@ Final figure, complete 2019 8231944 - 13 + 16 Egypt @@ -42326,7 +45407,7 @@ Final figure, complete 2019 7009596 - 13 + 16 Egypt @@ -42339,7 +45420,7 @@ Final figure, complete 2019 1222348 - 13 + 16 Egypt @@ -42352,7 +45433,7 @@ Final figure, complete 2019 8167607 - 13 + 16 Egypt @@ -42365,7 +45446,7 @@ Final figure, complete 2019 6641638 - 13 + 16 Egypt @@ -42378,7 +45459,7 @@ Final figure, complete 2019 1525969 - 13 + 16 Egypt @@ -42391,7 +45472,7 @@ Final figure, complete 2019 7344289 - 13 + 16 Egypt @@ -42404,7 +45485,7 @@ Final figure, complete 2019 5638508 - 13 + 16 Egypt @@ -42417,7 +45498,7 @@ Final figure, complete 2019 1705781 - 13 + 16 Egypt @@ -42430,7 +45511,7 @@ Final figure, complete 2019 6486415 - 13 + 16 Egypt @@ -42443,7 +45524,7 @@ Final figure, complete 2019 4671001 - 13 + 16 Egypt @@ -42456,7 +45537,7 @@ Final figure, complete 2019 1815414 - 13 + 16 Egypt @@ -42469,7 +45550,7 @@ Final figure, complete 2019 5152723 - 13 + 16 Egypt @@ -42482,7 +45563,7 @@ Final figure, complete 2019 3419163 - 13 + 16 Egypt @@ -42495,7 +45576,7 @@ Final figure, complete 2019 1733560 - 13 + 16 Egypt @@ -42508,7 +45589,7 @@ Final figure, complete 2019 4392511 - 13 + 16 Egypt @@ -42521,7 +45602,7 @@ Final figure, complete 2019 2688019 - 13 + 16 Egypt @@ -42534,7 +45615,7 @@ Final figure, complete 2019 1704492 - 13 + 16 Egypt @@ -42547,7 +45628,7 @@ Final figure, complete 2019 3998096 - 13 + 16 Egypt @@ -42560,7 +45641,7 @@ Final figure, complete 2019 2122206 - 13 + 16 Egypt @@ -42573,7 +45654,7 @@ Final figure, complete 2019 1875890 - 13 + 16 Egypt @@ -42586,7 +45667,7 @@ Final figure, complete 2019 3260371 - 13 + 16 Egypt @@ -42599,7 +45680,7 @@ Final figure, complete 2019 1597864 - 13 + 16 Egypt @@ -42612,7 +45693,7 @@ Final figure, complete 2019 1662507 - 13 + 16 Egypt @@ -42625,7 +45706,7 @@ Final figure, complete 2019 2649360 - 13 + 16 Egypt @@ -42638,7 +45719,7 @@ Final figure, complete 2019 1118545 - 13 + 16 Egypt @@ -42651,7 +45732,7 @@ Final figure, complete 2019 1530815 - 13 + 16 Egypt @@ -42664,7 +45745,7 @@ Final figure, complete 2019 1720201 - 13 + 16 Egypt @@ -42677,7 +45758,7 @@ Final figure, complete 2019 650011 - 13 + 16 Egypt @@ -42690,7 +45771,7 @@ Final figure, complete 2019 1070190 - 13 + 16 Egypt @@ -42703,7 +45784,7 @@ Final figure, complete 2019 1015950 - 13 + 16 Egypt @@ -42716,7 +45797,7 @@ Final figure, complete 2019 316833 - 13 + 16 Egypt @@ -42729,7 +45810,7 @@ Final figure, complete 2019 699117 - 13 + 16 Egypt @@ -42742,7 +45823,7 @@ Final figure, complete 2019 926662 - 13 + 16 Egypt @@ -42755,7 +45836,7 @@ Final figure, complete 2019 224274 - 13 + 16 Egypt @@ -42768,7 +45849,7 @@ Final figure, complete 2019 702388 - 13 + 16 Egypt @@ -44224,7 +47305,7 @@ Final figure, complete 2012 58636 - 14 + 17 Estonia @@ -44237,7 +47318,7 @@ Final figure, complete 2012 58026 - 14 + 17 Estonia @@ -44250,7 +47331,7 @@ Final figure, complete 2012 0 - 14 + 17 Estonia @@ -44263,7 +47344,7 @@ Final figure, complete 2012 610 - 14 + 17 Estonia @@ -48410,7 +51491,7 @@ Final figure, complete 2016 206216 - 15 + 18 Georgia @@ -48423,7 +51504,7 @@ Final figure, complete 2016 205221 - 15 + 18 Georgia @@ -48436,7 +51517,7 @@ Final figure, complete 2016 253 - 15 + 18 Georgia @@ -48449,7 +51530,7 @@ Final figure, complete 2016 742 - 15 + 18 Georgia @@ -48462,7 +51543,7 @@ Final figure, complete 2016 3228691 - 15 + 18 Georgia @@ -48475,7 +51556,7 @@ Final figure, complete 2016 3170810 - 15 + 18 Georgia @@ -48488,7 +51569,7 @@ Final figure, complete 2016 12576 - 15 + 18 Georgia @@ -48501,7 +51582,7 @@ Final figure, complete 2016 45305 - 15 + 18 Georgia @@ -48514,7 +51595,7 @@ Final figure, complete 2016 226022 - 15 + 18 Georgia @@ -48527,7 +51608,7 @@ Final figure, complete 2016 223463 - 15 + 18 Georgia @@ -48540,7 +51621,7 @@ Final figure, complete 2016 583 - 15 + 18 Georgia @@ -48553,7 +51634,7 @@ Final figure, complete 2016 1976 - 15 + 18 Georgia @@ -48566,7 +51647,7 @@ Final figure, complete 2016 266125 - 15 + 18 Georgia @@ -48579,7 +51660,7 @@ Final figure, complete 2016 260983 - 15 + 18 Georgia @@ -48592,7 +51673,7 @@ Final figure, complete 2016 862 - 15 + 18 Georgia @@ -48605,7 +51686,7 @@ Final figure, complete 2016 4280 - 15 + 18 Georgia @@ -48618,7 +51699,7 @@ Final figure, complete 2016 278662 - 15 + 18 Georgia @@ -48631,7 +51712,7 @@ Final figure, complete 2016 273181 - 15 + 18 Georgia @@ -48644,7 +51725,7 @@ Final figure, complete 2016 1035 - 15 + 18 Georgia @@ -48657,7 +51738,7 @@ Final figure, complete 2016 4446 - 15 + 18 Georgia @@ -48670,7 +51751,7 @@ Final figure, complete 2016 262060 - 15 + 18 Georgia @@ -48683,7 +51764,7 @@ Final figure, complete 2016 257007 - 15 + 18 Georgia @@ -48696,7 +51777,7 @@ Final figure, complete 2016 820 - 15 + 18 Georgia @@ -48709,7 +51790,7 @@ Final figure, complete 2016 4233 - 15 + 18 Georgia @@ -48722,7 +51803,7 @@ Final figure, complete 2016 248549 - 15 + 18 Georgia @@ -48735,7 +51816,7 @@ Final figure, complete 2016 243946 - 15 + 18 Georgia @@ -48748,7 +51829,7 @@ Final figure, complete 2016 701 - 15 + 18 Georgia @@ -48761,7 +51842,7 @@ Final figure, complete 2016 3902 - 15 + 18 Georgia @@ -48774,7 +51855,7 @@ Final figure, complete 2016 243281 - 15 + 18 Georgia @@ -48787,7 +51868,7 @@ Final figure, complete 2016 238812 - 15 + 18 Georgia @@ -48800,7 +51881,7 @@ Final figure, complete 2016 668 - 15 + 18 Georgia @@ -48813,7 +51894,7 @@ Final figure, complete 2016 3801 - 15 + 18 Georgia @@ -48826,7 +51907,7 @@ Final figure, complete 2016 239407 - 15 + 18 Georgia @@ -48839,7 +51920,7 @@ Final figure, complete 2016 235223 - 15 + 18 Georgia @@ -48852,7 +51933,7 @@ Final figure, complete 2016 658 - 15 + 18 Georgia @@ -48865,7 +51946,7 @@ Final figure, complete 2016 3526 - 15 + 18 Georgia @@ -48878,7 +51959,7 @@ Final figure, complete 2016 271386 - 15 + 18 Georgia @@ -48891,7 +51972,7 @@ Final figure, complete 2016 266925 - 15 + 18 Georgia @@ -48904,7 +51985,7 @@ Final figure, complete 2016 714 - 15 + 18 Georgia @@ -48917,7 +51998,7 @@ Final figure, complete 2016 3747 - 15 + 18 Georgia @@ -48930,7 +52011,7 @@ Final figure, complete 2016 245391 - 15 + 18 Georgia @@ -48943,7 +52024,7 @@ Final figure, complete 2016 241265 - 15 + 18 Georgia @@ -48956,7 +52037,7 @@ Final figure, complete 2016 690 - 15 + 18 Georgia @@ -48969,7 +52050,7 @@ Final figure, complete 2016 3436 - 15 + 18 Georgia @@ -48982,7 +52063,7 @@ Final figure, complete 2016 211385 - 15 + 18 Georgia @@ -48995,7 +52076,7 @@ Final figure, complete 2016 207645 - 15 + 18 Georgia @@ -49008,7 +52089,7 @@ Final figure, complete 2016 756 - 15 + 18 Georgia @@ -49021,7 +52102,7 @@ Final figure, complete 2016 2984 - 15 + 18 Georgia @@ -49034,7 +52115,7 @@ Final figure, complete 2016 155702 - 15 + 18 Georgia @@ -49047,7 +52128,7 @@ Final figure, complete 2016 152779 - 15 + 18 Georgia @@ -49060,7 +52141,7 @@ Final figure, complete 2016 671 - 15 + 18 Georgia @@ -49073,7 +52154,7 @@ Final figure, complete 2016 2252 - 15 + 18 Georgia @@ -49086,7 +52167,7 @@ Final figure, complete 2016 123605 - 15 + 18 Georgia @@ -49099,7 +52180,7 @@ Final figure, complete 2016 120950 - 15 + 18 Georgia @@ -49112,7 +52193,7 @@ Final figure, complete 2016 738 - 15 + 18 Georgia @@ -49125,7 +52206,7 @@ Final figure, complete 2016 1917 - 15 + 18 Georgia @@ -49138,7 +52219,7 @@ Final figure, complete 2016 135764 - 15 + 18 Georgia @@ -49151,7 +52232,7 @@ Final figure, complete 2016 132191 - 15 + 18 Georgia @@ -49164,7 +52245,7 @@ Final figure, complete 2016 1406 - 15 + 18 Georgia @@ -49177,7 +52258,7 @@ Final figure, complete 2016 2167 - 15 + 18 Georgia @@ -49190,7 +52271,7 @@ Final figure, complete 2016 71675 - 15 + 18 Georgia @@ -49203,7 +52284,7 @@ Final figure, complete 2016 69327 - 15 + 18 Georgia @@ -49216,7 +52297,7 @@ Final figure, complete 2016 1208 - 15 + 18 Georgia @@ -49229,7 +52310,7 @@ Final figure, complete 2016 1140 - 15 + 18 Georgia @@ -49242,7 +52323,7 @@ Final figure, complete 2016 34508 - 15 + 18 Georgia @@ -49255,7 +52336,7 @@ Final figure, complete 2016 33421 - 15 + 18 Georgia @@ -49268,7 +52349,7 @@ Final figure, complete 2016 523 - 15 + 18 Georgia @@ -49281,7 +52362,7 @@ Final figure, complete 2016 564 - 15 + 18 Georgia @@ -49294,7 +52375,7 @@ Final figure, complete 2016 7495 - 15 + 18 Georgia @@ -49307,7 +52388,7 @@ Final figure, complete 2016 7160 - 15 + 18 Georgia @@ -49320,7 +52401,7 @@ Final figure, complete 2016 177 - 15 + 18 Georgia @@ -49333,7 +52414,7 @@ Final figure, complete 2016 158 - 15 + 18 Georgia @@ -49346,7 +52427,7 @@ Final figure, complete 2016 1171 - 15 + 18 Georgia @@ -49359,7 +52440,7 @@ Final figure, complete 2016 1077 - 15 + 18 Georgia @@ -49372,7 +52453,7 @@ Final figure, complete 2016 70 - 15 + 18 Georgia @@ -49385,7 +52466,7 @@ Final figure, complete 2016 24 - 15 + 18 Georgia @@ -49398,7 +52479,7 @@ Final figure, complete 2016 287 - 15 + 18 Georgia @@ -49411,7 +52492,7 @@ Final figure, complete 2016 234 - 15 + 18 Georgia @@ -49424,7 +52505,7 @@ Final figure, complete 2016 43 - 15 + 18 Georgia @@ -49437,7 +52518,7 @@ Final figure, complete 2016 0 - 15 + 18 Georgia @@ -49450,7 +52531,7 @@ Final figure, complete 2016 0 - 15 + 18 Georgia @@ -49463,7 +52544,7 @@ Final figure, complete 2016 0 - 15 + 18 Georgia @@ -49476,7 +52557,7 @@ Final figure, complete 2016 0 - 15 + 18 Georgia @@ -51075,7 +54156,7 @@ Final figure, complete 2014 257002 - 16 + 19 Greece @@ -51114,7 +54195,7 @@ Final figure, complete 2014 522507 - 16 + 19 Greece @@ -51153,7 +54234,7 @@ Final figure, complete 2014 6322 - 16 + 19 Greece @@ -51192,7 +54273,7 @@ Final figure, complete 2014 9087 - 16 + 19 Greece @@ -51231,7 +54312,7 @@ Final figure, complete 2014 12162 - 16 + 19 Greece @@ -51270,7 +54351,7 @@ Final figure, complete 2014 12183 - 16 + 19 Greece @@ -51309,7 +54390,7 @@ Final figure, complete 2014 10749 - 16 + 19 Greece @@ -51348,7 +54429,7 @@ Final figure, complete 2014 9566 - 16 + 19 Greece @@ -51387,7 +54468,7 @@ Final figure, complete 2014 8367 - 16 + 19 Greece @@ -51426,7 +54507,7 @@ Final figure, complete 2014 8368 - 16 + 19 Greece @@ -51465,7 +54546,7 @@ Final figure, complete 2014 8189 - 16 + 19 Greece @@ -51504,7 +54585,7 @@ Final figure, complete 2014 10363 - 16 + 19 Greece @@ -51543,7 +54624,7 @@ Final figure, complete 2014 13553 - 16 + 19 Greece @@ -51582,7 +54663,7 @@ Final figure, complete 2014 32753 - 16 + 19 Greece @@ -51621,7 +54702,7 @@ Final figure, complete 2014 53908 - 16 + 19 Greece @@ -51660,7 +54741,7 @@ Final figure, complete 2014 37665 - 16 + 19 Greece @@ -51699,7 +54780,7 @@ Final figure, complete 2014 19385 - 16 + 19 Greece @@ -51738,7 +54819,7 @@ Final figure, complete 2014 8807 - 16 + 19 Greece @@ -51777,7 +54858,7 @@ Final figure, complete 2014 3321 - 16 + 19 Greece @@ -51816,7 +54897,7 @@ Final figure, complete 2014 757 - 16 + 19 Greece @@ -55404,7 +58485,7 @@ Final figure, complete 2007 124846858 - 17,18 + 20,21 India @@ -55417,7 +58498,7 @@ Final figure, complete 2007 102015840 - 17,18 + 20,21 India @@ -55430,7 +58511,7 @@ Final figure, complete 2007 22831018 - 17,18 + 20,21 India @@ -55443,7 +58524,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -55456,7 +58537,7 @@ Final figure, complete 2007 787107902 - 17,18 + 20,21 India @@ -55469,7 +58550,7 @@ Final figure, complete 2007 506091478 - 17,18 + 20,21 India @@ -55482,7 +58563,7 @@ Final figure, complete 2007 281016424 - 17,18 + 20,21 India @@ -55495,7 +58576,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -55508,7 +58589,7 @@ Final figure, complete 2007 100215890 - 17,18 + 20,21 India @@ -55521,7 +58602,7 @@ Final figure, complete 2007 79462115 - 17,18 + 20,21 India @@ -55534,7 +58615,7 @@ Final figure, complete 2007 20753775 - 17,18 + 20,21 India @@ -55547,7 +58628,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -55560,7 +58641,7 @@ Final figure, complete 2007 89764132 - 17,18 + 20,21 India @@ -55573,7 +58654,7 @@ Final figure, complete 2007 65731454 - 17,18 + 20,21 India @@ -55586,7 +58667,7 @@ Final figure, complete 2007 24032678 - 17,18 + 20,21 India @@ -55599,7 +58680,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -55612,7 +58693,7 @@ Final figure, complete 2007 83422393 - 17,18 + 20,21 India @@ -55625,7 +58706,7 @@ Final figure, complete 2007 55931949 - 17,18 + 20,21 India @@ -55638,7 +58719,7 @@ Final figure, complete 2007 27490444 - 17,18 + 20,21 India @@ -55651,7 +58732,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -55664,7 +58745,7 @@ Final figure, complete 2007 74274044 - 17,18 + 20,21 India @@ -55677,7 +58758,7 @@ Final figure, complete 2007 45813001 - 17,18 + 20,21 India @@ -55690,7 +58771,7 @@ Final figure, complete 2007 28461043 - 17,18 + 20,21 India @@ -55703,7 +58784,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -55716,7 +58797,7 @@ Final figure, complete 2007 70574085 - 17,18 + 20,21 India @@ -55729,7 +58810,7 @@ Final figure, complete 2007 41072506 - 17,18 + 20,21 India @@ -55742,7 +58823,7 @@ Final figure, complete 2007 29501579 - 17,18 + 20,21 India @@ -55755,7 +58836,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -55768,7 +58849,7 @@ Final figure, complete 2007 55738297 - 17,18 + 20,21 India @@ -55781,7 +58862,7 @@ Final figure, complete 2007 31477300 - 17,18 + 20,21 India @@ -55794,7 +58875,7 @@ Final figure, complete 2007 24260997 - 17,18 + 20,21 India @@ -55807,7 +58888,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -55820,7 +58901,7 @@ Final figure, complete 2007 47408976 - 17,18 + 20,21 India @@ -55833,7 +58914,7 @@ Final figure, complete 2007 25782154 - 17,18 + 20,21 India @@ -55846,7 +58927,7 @@ Final figure, complete 2007 21626822 - 17,18 + 20,21 India @@ -55859,7 +58940,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -55872,7 +58953,7 @@ Final figure, complete 2007 36587559 - 17,18 + 20,21 India @@ -55885,7 +58966,7 @@ Final figure, complete 2007 18389356 - 17,18 + 20,21 India @@ -55898,7 +58979,7 @@ Final figure, complete 2007 18198203 - 17,18 + 20,21 India @@ -55911,7 +58992,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -55924,7 +59005,7 @@ Final figure, complete 2007 27653347 - 17,18 + 20,21 India @@ -55937,7 +59018,7 @@ Final figure, complete 2007 12592616 - 17,18 + 20,21 India @@ -55950,7 +59031,7 @@ Final figure, complete 2007 15060731 - 17,18 + 20,21 India @@ -55963,7 +59044,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -55976,7 +59057,7 @@ Final figure, complete 2007 27516779 - 17,18 + 20,21 India @@ -55989,7 +59070,7 @@ Final figure, complete 2007 10344085 - 17,18 + 20,21 India @@ -56002,7 +59083,7 @@ Final figure, complete 2007 17172694 - 17,18 + 20,21 India @@ -56015,7 +59096,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -56028,7 +59109,7 @@ Final figure, complete 2007 19806955 - 17,18 + 20,21 India @@ -56041,7 +59122,7 @@ Final figure, complete 2007 7362603 - 17,18 + 20,21 India @@ -56054,7 +59135,7 @@ Final figure, complete 2007 12444352 - 17,18 + 20,21 India @@ -56067,7 +59148,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -56080,7 +59161,7 @@ Final figure, complete 2007 14708644 - 17,18 + 20,21 India @@ -56093,7 +59174,7 @@ Final figure, complete 2007 5008866 - 17,18 + 20,21 India @@ -56106,7 +59187,7 @@ Final figure, complete 2007 9699778 - 17,18 + 20,21 India @@ -56119,7 +59200,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -56132,7 +59213,7 @@ Final figure, complete 2007 6551225 - 17,18 + 20,21 India @@ -56145,7 +59226,7 @@ Final figure, complete 2007 2471546 - 17,18 + 20,21 India @@ -56158,7 +59239,7 @@ Final figure, complete 2007 4079679 - 17,18 + 20,21 India @@ -56171,7 +59252,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -56184,7 +59265,7 @@ Final figure, complete 2007 8038718 - 17,18 + 20,21 India @@ -56197,7 +59278,7 @@ Final figure, complete 2007 2636087 - 17,18 + 20,21 India @@ -56210,7 +59291,7 @@ Final figure, complete 2007 5402631 - 17,18 + 20,21 India @@ -56223,7 +59304,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 India @@ -56236,7 +59317,7 @@ Final figure, complete 2007 2738472 - 17,18 + 20,21 India @@ -56249,7 +59330,7 @@ Final figure, complete 2007 1397264 - 17,18 + 20,21 India @@ -56262,7 +59343,7 @@ Final figure, complete 2007 1341208 - 17,18 + 20,21 India @@ -56275,7 +59356,7 @@ Final figure, complete 2007 0 - 17,18 + 20,21 Indonesia @@ -57276,7 +60357,7 @@ Final figure, complete 2007 21306096 - 19,20 + 22,23 Indonesia @@ -57289,7 +60370,7 @@ Final figure, complete 2007 20980189 - 19,20 + 22,23 Indonesia @@ -57302,7 +60383,7 @@ Final figure, complete 2007 323972 - 19,20 + 22,23 Indonesia @@ -57315,7 +60396,7 @@ Final figure, complete 2007 1935 - 19,20 + 22,23 Indonesia @@ -57328,7 +60409,7 @@ Final figure, complete 2007 172716191 - 19,20 + 22,23 Indonesia @@ -57341,7 +60422,7 @@ Final figure, complete 2007 157721798 - 19,20 + 22,23 Indonesia @@ -57354,7 +60435,7 @@ Final figure, complete 2007 14976629 - 19,20 + 22,23 Indonesia @@ -57367,7 +60448,7 @@ Final figure, complete 2007 17764 - 19,20 + 22,23 Indonesia @@ -57380,7 +60461,7 @@ Final figure, complete 2007 19796921 - 19,20 + 22,23 Indonesia @@ -57393,7 +60474,7 @@ Final figure, complete 2007 19530049 - 19,20 + 22,23 Indonesia @@ -57406,7 +60487,7 @@ Final figure, complete 2007 265554 - 19,20 + 22,23 Indonesia @@ -57419,7 +60500,7 @@ Final figure, complete 2007 1318 - 19,20 + 22,23 Indonesia @@ -57432,7 +60513,7 @@ Final figure, complete 2007 19445179 - 19,20 + 22,23 Indonesia @@ -57445,7 +60526,7 @@ Final figure, complete 2007 19152585 - 19,20 + 22,23 Indonesia @@ -57458,7 +60539,7 @@ Final figure, complete 2007 287986 - 19,20 + 22,23 Indonesia @@ -57471,7 +60552,7 @@ Final figure, complete 2007 4608 - 19,20 + 22,23 Indonesia @@ -57484,7 +60565,7 @@ Final figure, complete 2007 18680093 - 19,20 + 22,23 Indonesia @@ -57497,7 +60578,7 @@ Final figure, complete 2007 18304667 - 19,20 + 22,23 Indonesia @@ -57510,7 +60591,7 @@ Final figure, complete 2007 373439 - 19,20 + 22,23 Indonesia @@ -57523,7 +60604,7 @@ Final figure, complete 2007 1987 - 19,20 + 22,23 Indonesia @@ -57536,7 +60617,7 @@ Final figure, complete 2007 17420029 - 19,20 + 22,23 Indonesia @@ -57549,7 +60630,7 @@ Final figure, complete 2007 16925338 - 19,20 + 22,23 Indonesia @@ -57562,7 +60643,7 @@ Final figure, complete 2007 493107 - 19,20 + 22,23 Indonesia @@ -57575,7 +60656,7 @@ Final figure, complete 2007 1584 - 19,20 + 22,23 Indonesia @@ -57588,7 +60669,7 @@ Final figure, complete 2007 16454100 - 19,20 + 22,23 Indonesia @@ -57601,7 +60682,7 @@ Final figure, complete 2007 15586255 - 19,20 + 22,23 Indonesia @@ -57614,7 +60695,7 @@ Final figure, complete 2007 865139 - 19,20 + 22,23 Indonesia @@ -57627,7 +60708,7 @@ Final figure, complete 2007 2706 - 19,20 + 22,23 Indonesia @@ -57640,7 +60721,7 @@ Final figure, complete 2007 14489902 - 19,20 + 22,23 Indonesia @@ -57653,7 +60734,7 @@ Final figure, complete 2007 13212567 - 19,20 + 22,23 Indonesia @@ -57666,7 +60747,7 @@ Final figure, complete 2007 1276649 - 19,20 + 22,23 Indonesia @@ -57679,7 +60760,7 @@ Final figure, complete 2007 686 - 19,20 + 22,23 Indonesia @@ -57692,7 +60773,7 @@ Final figure, complete 2007 12382818 - 19,20 + 22,23 Indonesia @@ -57705,7 +60786,7 @@ Final figure, complete 2007 10890781 - 19,20 + 22,23 Indonesia @@ -57718,7 +60799,7 @@ Final figure, complete 2007 1490257 - 19,20 + 22,23 Indonesia @@ -57731,7 +60812,7 @@ Final figure, complete 2007 1780 - 19,20 + 22,23 Indonesia @@ -57744,7 +60825,7 @@ Final figure, complete 2007 9941064 - 19,20 + 22,23 Indonesia @@ -57757,7 +60838,7 @@ Final figure, complete 2007 8384541 - 19,20 + 22,23 Indonesia @@ -57770,7 +60851,7 @@ Final figure, complete 2007 1556171 - 19,20 + 22,23 Indonesia @@ -57783,7 +60864,7 @@ Final figure, complete 2007 352 - 19,20 + 22,23 Indonesia @@ -57796,7 +60877,7 @@ Final figure, complete 2007 7262179 - 19,20 + 22,23 Indonesia @@ -57809,7 +60890,7 @@ Final figure, complete 2007 5624185 - 19,20 + 22,23 Indonesia @@ -57822,7 +60903,7 @@ Final figure, complete 2007 1637664 - 19,20 + 22,23 Indonesia @@ -57835,7 +60916,7 @@ Final figure, complete 2007 330 - 19,20 + 22,23 Indonesia @@ -57848,7 +60929,7 @@ Final figure, complete 2007 5611827 - 19,20 + 22,23 Indonesia @@ -57861,7 +60942,7 @@ Final figure, complete 2007 3826381 - 19,20 + 22,23 Indonesia @@ -57874,7 +60955,7 @@ Final figure, complete 2007 1785311 - 19,20 + 22,23 Indonesia @@ -57887,7 +60968,7 @@ Final figure, complete 2007 135 - 19,20 + 22,23 Indonesia @@ -57900,7 +60981,7 @@ Final figure, complete 2007 4112165 - 19,20 + 22,23 Indonesia @@ -57913,7 +60994,7 @@ Final figure, complete 2007 2445796 - 19,20 + 22,23 Indonesia @@ -57926,7 +61007,7 @@ Final figure, complete 2007 1666227 - 19,20 + 22,23 Indonesia @@ -57939,7 +61020,7 @@ Final figure, complete 2007 142 - 19,20 + 22,23 Indonesia @@ -57952,7 +61033,7 @@ Final figure, complete 2007 2989927 - 19,20 + 22,23 Indonesia @@ -57965,7 +61046,7 @@ Final figure, complete 2007 1548887 - 19,20 + 22,23 Indonesia @@ -57978,7 +61059,7 @@ Final figure, complete 2007 1440991 - 19,20 + 22,23 Indonesia @@ -57991,7 +61072,7 @@ Final figure, complete 2007 49 - 19,20 + 22,23 Indonesia @@ -58004,7 +61085,7 @@ Final figure, complete 2007 2823891 - 19,20 + 22,23 Indonesia @@ -58017,7 +61098,7 @@ Final figure, complete 2007 1309577 - 19,20 + 22,23 Indonesia @@ -58030,7 +61111,7 @@ Final figure, complete 2007 1514162 - 19,20 + 22,23 Indonesia @@ -58043,7 +61124,7 @@ Final figure, complete 2007 152 - 19,20 + 22,23 Iran (Islamic Republic of) @@ -62788,7 +65869,7 @@ Final figure, complete 2013 12166 - 21 + 24 Kiribati @@ -62801,7 +65882,7 @@ Final figure, complete 2013 11725 - 21 + 24 Kiribati @@ -62814,7 +65895,7 @@ Final figure, complete 2013 441 - 21 + 24 Kiribati @@ -62827,7 +65908,7 @@ Final figure, complete 2013 78040 - 21 + 24 Kiribati @@ -62840,7 +65921,7 @@ Final figure, complete 2013 75555 - 21 + 24 Kiribati @@ -62853,7 +65934,7 @@ Final figure, complete 2013 2485 - 21 + 24 Kiribati @@ -62866,7 +65947,7 @@ Final figure, complete 2013 10926 - 21 + 24 Kiribati @@ -62879,7 +65960,7 @@ Final figure, complete 2013 10660 - 21 + 24 Kiribati @@ -62892,7 +65973,7 @@ Final figure, complete 2013 266 - 21 + 24 Kiribati @@ -62905,7 +65986,7 @@ Final figure, complete 2013 10366 - 21 + 24 Kiribati @@ -62918,7 +65999,7 @@ Final figure, complete 2013 10137 - 21 + 24 Kiribati @@ -62931,7 +66012,7 @@ Final figure, complete 2013 229 - 21 + 24 Kiribati @@ -62944,7 +66025,7 @@ Final figure, complete 2013 8416 - 21 + 24 Kiribati @@ -62957,7 +66038,7 @@ Final figure, complete 2013 8203 - 21 + 24 Kiribati @@ -62970,7 +66051,7 @@ Final figure, complete 2013 213 - 21 + 24 Kiribati @@ -62983,7 +66064,7 @@ Final figure, complete 2013 6721 - 21 + 24 Kiribati @@ -62996,7 +66077,7 @@ Final figure, complete 2013 6549 - 21 + 24 Kiribati @@ -63009,7 +66090,7 @@ Final figure, complete 2013 172 - 21 + 24 Kiribati @@ -63022,7 +66103,7 @@ Final figure, complete 2013 5625 - 21 + 24 Kiribati @@ -63035,7 +66116,7 @@ Final figure, complete 2013 5471 - 21 + 24 Kiribati @@ -63048,7 +66129,7 @@ Final figure, complete 2013 154 - 21 + 24 Kiribati @@ -63061,7 +66142,7 @@ Final figure, complete 2013 6116 - 21 + 24 Kiribati @@ -63074,7 +66155,7 @@ Final figure, complete 2013 5931 - 21 + 24 Kiribati @@ -63087,7 +66168,7 @@ Final figure, complete 2013 185 - 21 + 24 Kiribati @@ -63100,7 +66181,7 @@ Final figure, complete 2013 5234 - 21 + 24 Kiribati @@ -63113,7 +66194,7 @@ Final figure, complete 2013 5073 - 21 + 24 Kiribati @@ -63126,7 +66207,7 @@ Final figure, complete 2013 161 - 21 + 24 Kiribati @@ -63139,7 +66220,7 @@ Final figure, complete 2013 3892 - 21 + 24 Kiribati @@ -63152,7 +66233,7 @@ Final figure, complete 2013 3749 - 21 + 24 Kiribati @@ -63165,7 +66246,7 @@ Final figure, complete 2013 143 - 21 + 24 Kiribati @@ -63178,7 +66259,7 @@ Final figure, complete 2013 2927 - 21 + 24 Kiribati @@ -63191,7 +66272,7 @@ Final figure, complete 2013 2821 - 21 + 24 Kiribati @@ -63204,7 +66285,7 @@ Final figure, complete 2013 106 - 21 + 24 Kiribati @@ -63217,7 +66298,7 @@ Final figure, complete 2013 1985 - 21 + 24 Kiribati @@ -63230,7 +66311,7 @@ Final figure, complete 2013 1884 - 21 + 24 Kiribati @@ -63243,7 +66324,7 @@ Final figure, complete 2013 101 - 21 + 24 Kiribati @@ -63256,7 +66337,7 @@ Final figure, complete 2013 1520 - 21 + 24 Kiribati @@ -63269,7 +66350,7 @@ Final figure, complete 2013 1418 - 21 + 24 Kiribati @@ -63282,7 +66363,7 @@ Final figure, complete 2013 102 - 21 + 24 Kiribati @@ -63295,7 +66376,7 @@ Final figure, complete 2013 1108 - 21 + 24 Kiribati @@ -63308,7 +66389,7 @@ Final figure, complete 2013 1016 - 21 + 24 Kiribati @@ -63321,7 +66402,7 @@ Final figure, complete 2013 92 - 21 + 24 Kiribati @@ -63334,7 +66415,7 @@ Final figure, complete 2013 1038 - 21 + 24 Kiribati @@ -63347,7 +66428,7 @@ Final figure, complete 2013 918 - 21 + 24 Kiribati @@ -63360,7 +66441,7 @@ Final figure, complete 2013 120 - 21 + 24 Kuwait @@ -69288,7 +72369,7 @@ Final figure, complete 2007 186222 - 22 + 25 Latvia @@ -69301,7 +72382,7 @@ Final figure, complete 2007 185874 - 22 + 25 Latvia @@ -69314,7 +72395,7 @@ Final figure, complete 2007 348 - 22 + 25 Latvia @@ -69327,7 +72408,7 @@ Final figure, complete 2007 2133257 - 22 + 25 Latvia @@ -69340,7 +72421,7 @@ Final figure, complete 2007 2127981 - 22 + 25 Latvia @@ -69353,7 +72434,7 @@ Final figure, complete 2007 5276 - 22 + 25 Latvia @@ -69366,7 +72447,7 @@ Final figure, complete 2007 177528 - 22 + 25 Latvia @@ -69379,7 +72460,7 @@ Final figure, complete 2007 177070 - 22 + 25 Latvia @@ -69392,7 +72473,7 @@ Final figure, complete 2007 458 - 22 + 25 Latvia @@ -69405,7 +72486,7 @@ Final figure, complete 2007 160983 - 22 + 25 Latvia @@ -69418,7 +72499,7 @@ Final figure, complete 2007 160587 - 22 + 25 Latvia @@ -69431,7 +72512,7 @@ Final figure, complete 2007 396 - 22 + 25 Latvia @@ -69444,7 +72525,7 @@ Final figure, complete 2007 164446 - 22 + 25 Latvia @@ -69457,7 +72538,7 @@ Final figure, complete 2007 164122 - 22 + 25 Latvia @@ -69470,7 +72551,7 @@ Final figure, complete 2007 324 - 22 + 25 Latvia @@ -69483,7 +72564,7 @@ Final figure, complete 2007 158746 - 22 + 25 Latvia @@ -69496,7 +72577,7 @@ Final figure, complete 2007 158488 - 22 + 25 Latvia @@ -69509,7 +72590,7 @@ Final figure, complete 2007 258 - 22 + 25 Latvia @@ -69522,7 +72603,7 @@ Final figure, complete 2007 176259 - 22 + 25 Latvia @@ -69535,7 +72616,7 @@ Final figure, complete 2007 176019 - 22 + 25 Latvia @@ -69548,7 +72629,7 @@ Final figure, complete 2007 240 - 22 + 25 Latvia @@ -69561,7 +72642,7 @@ Final figure, complete 2007 174755 - 22 + 25 Latvia @@ -69574,7 +72655,7 @@ Final figure, complete 2007 174557 - 22 + 25 Latvia @@ -69587,7 +72668,7 @@ Final figure, complete 2007 198 - 22 + 25 Latvia @@ -69600,7 +72681,7 @@ Final figure, complete 2007 154928 - 22 + 25 Latvia @@ -69613,7 +72694,7 @@ Final figure, complete 2007 154737 - 22 + 25 Latvia @@ -69626,7 +72707,7 @@ Final figure, complete 2007 191 - 22 + 25 Latvia @@ -69639,7 +72720,7 @@ Final figure, complete 2007 139208 - 22 + 25 Latvia @@ -69652,7 +72733,7 @@ Final figure, complete 2007 139026 - 22 + 25 Latvia @@ -69665,7 +72746,7 @@ Final figure, complete 2007 182 - 22 + 25 Latvia @@ -69678,7 +72759,7 @@ Final figure, complete 2007 142030 - 22 + 25 Latvia @@ -69691,7 +72772,7 @@ Final figure, complete 2007 141783 - 22 + 25 Latvia @@ -69704,7 +72785,7 @@ Final figure, complete 2007 247 - 22 + 25 Latvia @@ -69717,7 +72798,7 @@ Final figure, complete 2007 146069 - 22 + 25 Latvia @@ -69730,7 +72811,7 @@ Final figure, complete 2007 145754 - 22 + 25 Latvia @@ -69743,7 +72824,7 @@ Final figure, complete 2007 315 - 22 + 25 Latvia @@ -69756,7 +72837,7 @@ Final figure, complete 2007 120498 - 22 + 25 Latvia @@ -69769,7 +72850,7 @@ Final figure, complete 2007 120095 - 22 + 25 Latvia @@ -69782,7 +72863,7 @@ Final figure, complete 2007 403 - 22 + 25 Latvia @@ -69795,7 +72876,7 @@ Final figure, complete 2007 105557 - 22 + 25 Latvia @@ -69808,7 +72889,7 @@ Final figure, complete 2007 105242 - 22 + 25 Latvia @@ -69821,7 +72902,7 @@ Final figure, complete 2007 315 - 22 + 25 Latvia @@ -69834,7 +72915,7 @@ Final figure, complete 2007 66308 - 22 + 25 Latvia @@ -69847,7 +72928,7 @@ Final figure, complete 2007 66012 - 22 + 25 Latvia @@ -69860,7 +72941,7 @@ Final figure, complete 2007 296 - 22 + 25 Latvia @@ -69873,7 +72954,7 @@ Final figure, complete 2007 30370 - 22 + 25 Latvia @@ -69886,7 +72967,7 @@ Final figure, complete 2007 30024 - 22 + 25 Latvia @@ -69899,7 +72980,7 @@ Final figure, complete 2007 346 - 22 + 25 Latvia @@ -69912,7 +72993,7 @@ Final figure, complete 2007 21115 - 22 + 25 Latvia @@ -69925,7 +73006,7 @@ Final figure, complete 2007 20613 - 22 + 25 Latvia @@ -69938,7 +73019,7 @@ Final figure, complete 2007 502 - 22 + 25 Latvia @@ -69951,7 +73032,7 @@ Final figure, complete 2007 6856 - 22 + 25 Latvia @@ -69964,7 +73045,7 @@ Final figure, complete 2007 6651 - 22 + 25 Latvia @@ -69977,7 +73058,7 @@ Final figure, complete 2007 205 - 22 + 25 Latvia @@ -69990,7 +73071,7 @@ Final figure, complete 2007 1266 - 22 + 25 Latvia @@ -70003,7 +73084,7 @@ Final figure, complete 2007 1221 - 22 + 25 Latvia @@ -70016,7 +73097,7 @@ Final figure, complete 2007 45 - 22 + 25 Latvia @@ -70029,7 +73110,7 @@ Final figure, complete 2007 113 - 22 + 25 Latvia @@ -70042,7 +73123,7 @@ Final figure, complete 2007 106 - 22 + 25 Latvia @@ -70055,7 +73136,7 @@ Final figure, complete 2007 7 - 22 + 25 Lesotho @@ -83601,7 +86682,7 @@ Final figure, complete 2012 93639 - 23 + 26 Mauritius @@ -83614,7 +86695,7 @@ Final figure, complete 2012 92280 - 23 + 26 Mauritius @@ -83627,7 +86708,7 @@ Final figure, complete 2012 1283 - 23 + 26 Mauritius @@ -83640,7 +86721,7 @@ Final figure, complete 2012 76 - 23 + 26 Mauritius @@ -83653,7 +86734,7 @@ Final figure, complete 2012 1074105 - 23 + 26 Mauritius @@ -83666,7 +86747,7 @@ Final figure, complete 2012 957683 - 23 + 26 Mauritius @@ -83679,7 +86760,7 @@ Final figure, complete 2012 105521 - 23 + 26 Mauritius @@ -83692,7 +86773,7 @@ Final figure, complete 2012 10901 - 23 + 26 Mauritius @@ -83705,7 +86786,7 @@ Final figure, complete 2012 101008 - 23 + 26 Mauritius @@ -83718,7 +86799,7 @@ Final figure, complete 2012 99316 - 23 + 26 Mauritius @@ -83731,7 +86812,7 @@ Final figure, complete 2012 1452 - 23 + 26 Mauritius @@ -83744,7 +86825,7 @@ Final figure, complete 2012 240 - 23 + 26 Mauritius @@ -83757,7 +86838,7 @@ Final figure, complete 2012 92671 - 23 + 26 Mauritius @@ -83770,7 +86851,7 @@ Final figure, complete 2012 89319 - 23 + 26 Mauritius @@ -83783,7 +86864,7 @@ Final figure, complete 2012 2142 - 23 + 26 Mauritius @@ -83796,7 +86877,7 @@ Final figure, complete 2012 1210 - 23 + 26 Mauritius @@ -83809,7 +86890,7 @@ Final figure, complete 2012 90937 - 23 + 26 Mauritius @@ -83822,7 +86903,7 @@ Final figure, complete 2012 84644 - 23 + 26 Mauritius @@ -83835,7 +86916,7 @@ Final figure, complete 2012 3856 - 23 + 26 Mauritius @@ -83848,7 +86929,7 @@ Final figure, complete 2012 2437 - 23 + 26 Mauritius @@ -83861,7 +86942,7 @@ Final figure, complete 2012 103429 - 23 + 26 Mauritius @@ -83874,7 +86955,7 @@ Final figure, complete 2012 95766 - 23 + 26 Mauritius @@ -83887,7 +86968,7 @@ Final figure, complete 2012 5524 - 23 + 26 Mauritius @@ -83900,7 +86981,7 @@ Final figure, complete 2012 2139 - 23 + 26 Mauritius @@ -83913,7 +86994,7 @@ Final figure, complete 2012 87797 - 23 + 26 Mauritius @@ -83926,7 +87007,7 @@ Final figure, complete 2012 80611 - 23 + 26 Mauritius @@ -83939,7 +87020,7 @@ Final figure, complete 2012 5888 - 23 + 26 Mauritius @@ -83952,7 +87033,7 @@ Final figure, complete 2012 1298 - 23 + 26 Mauritius @@ -83965,7 +87046,7 @@ Final figure, complete 2012 89386 - 23 + 26 Mauritius @@ -83978,7 +87059,7 @@ Final figure, complete 2012 80996 - 23 + 26 Mauritius @@ -83991,7 +87072,7 @@ Final figure, complete 2012 7517 - 23 + 26 Mauritius @@ -84004,7 +87085,7 @@ Final figure, complete 2012 873 - 23 + 26 Mauritius @@ -84017,7 +87098,7 @@ Final figure, complete 2012 99341 - 23 + 26 Mauritius @@ -84030,7 +87111,7 @@ Final figure, complete 2012 89196 - 23 + 26 Mauritius @@ -84043,7 +87124,7 @@ Final figure, complete 2012 9493 - 23 + 26 Mauritius @@ -84056,7 +87137,7 @@ Final figure, complete 2012 652 - 23 + 26 Mauritius @@ -84069,7 +87150,7 @@ Final figure, complete 2012 86337 - 23 + 26 Mauritius @@ -84082,7 +87163,7 @@ Final figure, complete 2012 75866 - 23 + 26 Mauritius @@ -84095,7 +87176,7 @@ Final figure, complete 2012 10034 - 23 + 26 Mauritius @@ -84108,7 +87189,7 @@ Final figure, complete 2012 437 - 23 + 26 Mauritius @@ -84121,7 +87202,7 @@ Final figure, complete 2012 73054 - 23 + 26 Mauritius @@ -84134,7 +87215,7 @@ Final figure, complete 2012 61332 - 23 + 26 Mauritius @@ -84147,7 +87228,7 @@ Final figure, complete 2012 11364 - 23 + 26 Mauritius @@ -84160,7 +87241,7 @@ Final figure, complete 2012 358 - 23 + 26 Mauritius @@ -84173,7 +87254,7 @@ Final figure, complete 2012 57342 - 23 + 26 Mauritius @@ -84186,7 +87267,7 @@ Final figure, complete 2012 44921 - 23 + 26 Mauritius @@ -84199,7 +87280,7 @@ Final figure, complete 2012 12133 - 23 + 26 Mauritius @@ -84212,7 +87293,7 @@ Final figure, complete 2012 288 - 23 + 26 Mauritius @@ -84225,7 +87306,7 @@ Final figure, complete 2012 35439 - 23 + 26 Mauritius @@ -84238,7 +87319,7 @@ Final figure, complete 2012 25401 - 23 + 26 Mauritius @@ -84251,7 +87332,7 @@ Final figure, complete 2012 9817 - 23 + 26 Mauritius @@ -84264,7 +87345,7 @@ Final figure, complete 2012 221 - 23 + 26 Mauritius @@ -84277,7 +87358,7 @@ Final figure, complete 2012 99164 - 23 + 26 Mauritius @@ -84290,7 +87371,7 @@ Final figure, complete 2012 63436 - 23 + 26 Mauritius @@ -84303,7 +87384,7 @@ Final figure, complete 2012 34835 - 23 + 26 Mauritius @@ -84316,7 +87397,7 @@ Final figure, complete 2012 893 - 23,24 + 26,27 Mauritius @@ -84329,7 +87410,7 @@ Final figure, complete 2012 25375 - 23 + 26 Mauritius @@ -84342,7 +87423,7 @@ Final figure, complete 2012 16298 - 23 + 26 Mauritius @@ -84355,7 +87436,7 @@ Final figure, complete 2012 8866 - 23 + 26 Mauritius @@ -84368,7 +87449,7 @@ Final figure, complete 2012 211 - 23 + 26 Mauritius @@ -84381,7 +87462,7 @@ Final figure, complete 2012 18044 - 23 + 26 Mauritius @@ -84394,7 +87475,7 @@ Final figure, complete 2012 10654 - 23 + 26 Mauritius @@ -84407,7 +87488,7 @@ Final figure, complete 2012 7222 - 23 + 26 Mauritius @@ -84420,7 +87501,7 @@ Final figure, complete 2012 168 - 23 + 26 Mauritius @@ -84433,7 +87514,7 @@ Final figure, complete 2012 11369 - 23 + 26 Mauritius @@ -84446,7 +87527,7 @@ Final figure, complete 2012 6419 - 23 + 26 Mauritius @@ -84459,7 +87540,7 @@ Final figure, complete 2012 4813 - 23 + 26 Mauritius @@ -84472,7 +87553,7 @@ Final figure, complete 2012 137 - 23 + 26 Mauritius @@ -84485,7 +87566,7 @@ Final figure, complete 2012 6368 - 23 + 26 Mauritius @@ -84498,7 +87579,7 @@ Final figure, complete 2012 3387 - 23 + 26 Mauritius @@ -84511,7 +87592,7 @@ Final figure, complete 2012 2892 - 23 + 26 Mauritius @@ -84524,7 +87605,7 @@ Final figure, complete 2012 89 - 23 + 26 Mauritius @@ -84537,7 +87618,7 @@ Final figure, complete 2012 1982 - 23 + 26 Mauritius @@ -84550,7 +87631,7 @@ Final figure, complete 2012 990 - 23 + 26 Mauritius @@ -84563,7 +87644,7 @@ Final figure, complete 2012 945 - 23 + 26 Mauritius @@ -84576,7 +87657,7 @@ Final figure, complete 2012 47 - 23 + 26 Mauritius @@ -84589,7 +87670,7 @@ Final figure, complete 2012 491 - 23 + 26 Mauritius @@ -84602,7 +87683,7 @@ Final figure, complete 2012 249 - 23 + 26 Mauritius @@ -84615,7 +87696,7 @@ Final figure, complete 2012 224 - 23 + 26 Mauritius @@ -84628,7 +87709,7 @@ Final figure, complete 2012 18 - 23 + 26 Mauritius @@ -84641,7 +87722,7 @@ Final figure, complete 2012 96 - 23 + 26 Mauritius @@ -84654,7 +87735,7 @@ Final figure, complete 2012 38 - 23 + 26 Mauritius @@ -84667,7 +87748,7 @@ Final figure, complete 2012 56 - 23 + 26 Mauritius @@ -84680,7 +87761,7 @@ Final figure, complete 2012 2 - 23 + 26 Mauritius @@ -84693,7 +87774,7 @@ Final figure, complete 2003 56023 - 23 + 26 Mauritius @@ -84706,7 +87787,7 @@ Final figure, complete 2003 54176 - 23 + 26 Mauritius @@ -84719,7 +87800,7 @@ Final figure, complete 2003 1823 - 23 + 26 Mauritius @@ -84732,7 +87813,7 @@ Final figure, complete 2003 24 - 23 + 26 Mauritius @@ -84745,7 +87826,7 @@ Final figure, complete 2003 937520 - 23 + 26 Mauritius @@ -84758,7 +87839,7 @@ Final figure, complete 2003 794390 - 23 + 26 Mauritius @@ -84771,7 +87852,7 @@ Final figure, complete 2003 139648 - 23 + 26 Mauritius @@ -84784,7 +87865,7 @@ Final figure, complete 2003 3482 - 23 + 26 Mauritius @@ -84797,7 +87878,7 @@ Final figure, complete 2003 102088 - 23 + 26 Mauritius @@ -84810,7 +87891,7 @@ Final figure, complete 2003 97335 - 23 + 26 Mauritius @@ -84823,7 +87904,7 @@ Final figure, complete 2003 4710 - 23 + 26 Mauritius @@ -84836,7 +87917,7 @@ Final figure, complete 2003 43 - 23 + 26 Mauritius @@ -84849,7 +87930,7 @@ Final figure, complete 2003 110892 - 23 + 26 Mauritius @@ -84862,7 +87943,7 @@ Final figure, complete 2003 103375 - 23 + 26 Mauritius @@ -84875,7 +87956,7 @@ Final figure, complete 2003 6884 - 23 + 26 Mauritius @@ -84888,7 +87969,7 @@ Final figure, complete 2003 633 - 23 + 26 Mauritius @@ -84901,7 +87982,7 @@ Final figure, complete 2003 93797 - 23 + 26 Mauritius @@ -84914,7 +87995,7 @@ Final figure, complete 2003 85998 - 23 + 26 Mauritius @@ -84927,7 +88008,7 @@ Final figure, complete 2003 6896 - 23 + 26 Mauritius @@ -84940,7 +88021,7 @@ Final figure, complete 2003 903 - 23 + 26 Mauritius @@ -84953,7 +88034,7 @@ Final figure, complete 2003 99515 - 23 + 26 Mauritius @@ -84966,7 +88047,7 @@ Final figure, complete 2003 89872 - 23 + 26 Mauritius @@ -84979,7 +88060,7 @@ Final figure, complete 2003 8858 - 23 + 26 Mauritius @@ -84992,7 +88073,7 @@ Final figure, complete 2003 785 - 23 + 26 Mauritius @@ -85005,7 +88086,7 @@ Final figure, complete 2003 101946 - 23 + 26 Mauritius @@ -85018,7 +88099,7 @@ Final figure, complete 2003 91042 - 23 + 26 Mauritius @@ -85031,7 +88112,7 @@ Final figure, complete 2003 10543 - 23 + 26 Mauritius @@ -85044,7 +88125,7 @@ Final figure, complete 2003 361 - 23 + 26 Mauritius @@ -85057,7 +88138,7 @@ Final figure, complete 2003 90406 - 23 + 26 Mauritius @@ -85070,7 +88151,7 @@ Final figure, complete 2003 78679 - 23 + 26 Mauritius @@ -85083,7 +88164,7 @@ Final figure, complete 2003 11536 - 23 + 26 Mauritius @@ -85096,7 +88177,7 @@ Final figure, complete 2003 191 - 23 + 26 Mauritius @@ -85109,7 +88190,7 @@ Final figure, complete 2003 77931 - 23 + 26 Mauritius @@ -85122,7 +88203,7 @@ Final figure, complete 2003 64029 - 23 + 26 Mauritius @@ -85135,7 +88216,7 @@ Final figure, complete 2003 13804 - 23 + 26 Mauritius @@ -85148,7 +88229,7 @@ Final figure, complete 2003 98 - 23 + 26 Mauritius @@ -85161,7 +88242,7 @@ Final figure, complete 2003 56939 - 23 + 26 Mauritius @@ -85174,7 +88255,7 @@ Final figure, complete 2003 43453 - 23 + 26 Mauritius @@ -85187,7 +88268,7 @@ Final figure, complete 2003 13403 - 23 + 26 Mauritius @@ -85200,7 +88281,7 @@ Final figure, complete 2003 83 - 23 + 26 Mauritius @@ -85213,7 +88294,7 @@ Final figure, complete 2003 40491 - 23 + 26 Mauritius @@ -85226,7 +88307,7 @@ Final figure, complete 2003 27728 - 23 + 26 Mauritius @@ -85239,7 +88320,7 @@ Final figure, complete 2003 12693 - 23 + 26 Mauritius @@ -85252,7 +88333,7 @@ Final figure, complete 2003 70 - 23 + 26 Mauritius @@ -85265,7 +88346,7 @@ Final figure, complete 2003 33097 - 23 + 26 Mauritius @@ -85278,7 +88359,7 @@ Final figure, complete 2003 19805 - 23 + 26 Mauritius @@ -85291,7 +88372,7 @@ Final figure, complete 2003 13230 - 23 + 26 Mauritius @@ -85304,7 +88385,7 @@ Final figure, complete 2003 62 - 23 + 26 Mauritius @@ -85317,7 +88398,7 @@ Final figure, complete 2003 25768 - 23 + 26 Mauritius @@ -85330,7 +88411,7 @@ Final figure, complete 2003 14426 - 23 + 26 Mauritius @@ -85343,7 +88424,7 @@ Final figure, complete 2003 11288 - 23 + 26 Mauritius @@ -85356,7 +88437,7 @@ Final figure, complete 2003 54 - 23 + 26 Mauritius @@ -85369,7 +88450,7 @@ Final figure, complete 2003 21694 - 23 + 26 Mauritius @@ -85382,7 +88463,7 @@ Final figure, complete 2003 11431 - 23 + 26 Mauritius @@ -85395,7 +88476,7 @@ Final figure, complete 2003 10206 - 23 + 26 Mauritius @@ -85408,7 +88489,7 @@ Final figure, complete 2003 57 - 23 + 26 Mauritius @@ -85421,7 +88502,7 @@ Final figure, complete 2003 14910 - 23 + 26 Mauritius @@ -85434,7 +88515,7 @@ Final figure, complete 2003 7384 - 23 + 26 Mauritius @@ -85447,7 +88528,7 @@ Final figure, complete 2003 7478 - 23 + 26 Mauritius @@ -85460,7 +88541,7 @@ Final figure, complete 2003 48 - 23 + 26 Mauritius @@ -85473,7 +88554,7 @@ Final figure, complete 2003 7132 - 23 + 26 Mauritius @@ -85486,7 +88567,7 @@ Final figure, complete 2003 3457 - 23 + 26 Mauritius @@ -85499,7 +88580,7 @@ Final figure, complete 2003 3646 - 23 + 26 Mauritius @@ -85512,7 +88593,7 @@ Final figure, complete 2003 29 - 23 + 26 Mauritius @@ -85525,7 +88606,7 @@ Final figure, complete 2003 3498 - 23 + 26 Mauritius @@ -85538,7 +88619,7 @@ Final figure, complete 2003 1588 - 23 + 26 Mauritius @@ -85551,7 +88632,7 @@ Final figure, complete 2003 1882 - 23 + 26 Mauritius @@ -85564,7 +88645,7 @@ Final figure, complete 2003 28 - 23 + 26 Mauritius @@ -85577,7 +88658,7 @@ Final figure, complete 2003 1104 - 23 + 26 Mauritius @@ -85590,7 +88671,7 @@ Final figure, complete 2003 504 - 23 + 26 Mauritius @@ -85603,7 +88684,7 @@ Final figure, complete 2003 594 - 23 + 26 Mauritius @@ -85616,7 +88697,7 @@ Final figure, complete 2003 6 - 23 + 26 Mauritius @@ -85629,7 +88710,7 @@ Final figure, complete 2003 289 - 23 + 26 Mauritius @@ -85642,7 +88723,7 @@ Final figure, complete 2003 108 - 23 + 26 Mauritius @@ -85655,7 +88736,7 @@ Final figure, complete 2003 174 - 23 + 26 Mauritius @@ -85668,7 +88749,7 @@ Final figure, complete 2003 7 - 23 + 26 Mayotte @@ -96185,7 +99266,7 @@ Final figure, complete 2001 1825665 - 25 + 28 Mozambique @@ -96198,7 +99279,7 @@ Final figure, complete 2001 836615 - 25 + 28 Mozambique @@ -96211,7 +99292,7 @@ Final figure, complete 2001 971768 - 25 + 28 Mozambique @@ -96224,7 +99305,7 @@ Final figure, complete 2001 17282 - 25 + 28 Mozambique @@ -96237,7 +99318,7 @@ Final figure, complete 2001 10310782 - 25 + 28 Mozambique @@ -96250,7 +99331,7 @@ Final figure, complete 2001 4078755 - 25 + 28 Mozambique @@ -96263,7 +99344,7 @@ Final figure, complete 2001 6105546 - 25 + 28 Mozambique @@ -96276,7 +99357,7 @@ Final figure, complete 2001 126481 - 25 + 28 Mozambique @@ -96289,7 +99370,7 @@ Final figure, complete 2001 1628405 - 25 + 28 Mozambique @@ -96302,7 +99383,7 @@ Final figure, complete 2001 797818 - 25 + 28 Mozambique @@ -96315,7 +99396,7 @@ Final figure, complete 2001 807304 - 25 + 28 Mozambique @@ -96328,7 +99409,7 @@ Final figure, complete 2001 23283 - 25 + 28 Mozambique @@ -96341,7 +99422,7 @@ Final figure, complete 2001 1464727 - 25 + 28 Mozambique @@ -96354,7 +99435,7 @@ Final figure, complete 2001 628357 - 25 + 28 Mozambique @@ -96367,7 +99448,7 @@ Final figure, complete 2001 802874 - 25 + 28 Mozambique @@ -96380,7 +99461,7 @@ Final figure, complete 2001 33496 - 25 + 28 Mozambique @@ -96393,7 +99474,7 @@ Final figure, complete 2001 1163574 - 25 + 28 Mozambique @@ -96406,7 +99487,7 @@ Final figure, complete 2001 486621 - 25 + 28 Mozambique @@ -96419,7 +99500,7 @@ Final figure, complete 2001 664233 - 25 + 28 Mozambique @@ -96432,7 +99513,7 @@ Final figure, complete 2001 12720 - 25 + 28 Mozambique @@ -96445,7 +99526,7 @@ Final figure, complete 2001 887710 - 25 + 28 Mozambique @@ -96458,7 +99539,7 @@ Final figure, complete 2001 396149 - 25 + 28 Mozambique @@ -96471,7 +99552,7 @@ Final figure, complete 2001 483949 - 25 + 28 Mozambique @@ -96484,7 +99565,7 @@ Final figure, complete 2001 7612 - 25 + 28 Mozambique @@ -96497,7 +99578,7 @@ Final figure, complete 2001 802208 - 25 + 28 Mozambique @@ -96510,7 +99591,7 @@ Final figure, complete 2001 312961 - 25 + 28 Mozambique @@ -96523,7 +99604,7 @@ Final figure, complete 2001 482391 - 25 + 28 Mozambique @@ -96536,7 +99617,7 @@ Final figure, complete 2001 6856 - 25 + 28 Mozambique @@ -96549,7 +99630,7 @@ Final figure, complete 2001 573193 - 25 + 28 Mozambique @@ -96562,7 +99643,7 @@ Final figure, complete 2001 191696 - 25 + 28 Mozambique @@ -96575,7 +99656,7 @@ Final figure, complete 2001 376026 - 25 + 28 Mozambique @@ -96588,7 +99669,7 @@ Final figure, complete 2001 5471 - 25 + 28 Mozambique @@ -96601,7 +99682,7 @@ Final figure, complete 2001 539168 - 25 + 28 Mozambique @@ -96614,7 +99695,7 @@ Final figure, complete 2001 150617 - 25 + 28 Mozambique @@ -96627,7 +99708,7 @@ Final figure, complete 2001 383498 - 25 + 28 Mozambique @@ -96640,7 +99721,7 @@ Final figure, complete 2001 5053 - 25 + 28 Mozambique @@ -96653,7 +99734,7 @@ Final figure, complete 2001 390962 - 25 + 28 Mozambique @@ -96666,7 +99747,7 @@ Final figure, complete 2001 92034 - 25 + 28 Mozambique @@ -96679,7 +99760,7 @@ Final figure, complete 2001 294894 - 25 + 28 Mozambique @@ -96692,7 +99773,7 @@ Final figure, complete 2001 4034 - 25 + 28 Mozambique @@ -96705,7 +99786,7 @@ Final figure, complete 2001 336356 - 25 + 28 Mozambique @@ -96718,7 +99799,7 @@ Final figure, complete 2001 71966 - 25 + 28 Mozambique @@ -96731,7 +99812,7 @@ Final figure, complete 2001 261161 - 25 + 28 Mozambique @@ -96744,7 +99825,7 @@ Final figure, complete 2001 3229 - 25 + 28 Mozambique @@ -96757,7 +99838,7 @@ Final figure, complete 2001 239431 - 25 + 28 Mozambique @@ -96770,7 +99851,7 @@ Final figure, complete 2001 47531 - 25 + 28 Mozambique @@ -96783,7 +99864,7 @@ Final figure, complete 2001 189340 - 25 + 28 Mozambique @@ -96796,7 +99877,7 @@ Final figure, complete 2001 2560 - 25 + 28 Mozambique @@ -96809,7 +99890,7 @@ Final figure, complete 2001 209713 - 25 + 28 Mozambique @@ -96822,7 +99903,7 @@ Final figure, complete 2001 33963 - 25 + 28 Mozambique @@ -96835,7 +99916,7 @@ Final figure, complete 2001 173766 - 25 + 28 Mozambique @@ -96848,7 +99929,7 @@ Final figure, complete 2001 1984 - 25 + 28 Mozambique @@ -96861,7 +99942,7 @@ Final figure, complete 2001 98014 - 25 + 28 Mozambique @@ -96874,7 +99955,7 @@ Final figure, complete 2001 14386 - 25 + 28 Mozambique @@ -96887,7 +99968,7 @@ Final figure, complete 2001 82548 - 25 + 28 Mozambique @@ -96900,7 +99981,7 @@ Final figure, complete 2001 1080 - 25 + 28 Mozambique @@ -96913,7 +99994,7 @@ Final figure, complete 2001 151656 - 25 + 28 Mozambique @@ -96926,7 +100007,7 @@ Final figure, complete 2001 18041 - 25 + 28 Mozambique @@ -96939,7 +100020,7 @@ Final figure, complete 2001 131794 - 25 + 28 Mozambique @@ -96952,7 +100033,7 @@ Final figure, complete 2001 1821 - 25 + 28 Myanmar @@ -96965,7 +100046,7 @@ Final figure, complete 2017 4857955 - 26 + 29 Myanmar @@ -96978,7 +100059,7 @@ Final figure, complete 2017 4631165 - 26 + 29 Myanmar @@ -96991,7 +100072,7 @@ Final figure, complete 2017 226790 - 26 + 29 Myanmar @@ -97004,7 +100085,7 @@ Final figure, complete 2017 38792586 - 26 + 29 Myanmar @@ -97017,7 +100098,7 @@ Final figure, complete 2017 35009984 - 26 + 29 Myanmar @@ -97030,7 +100111,7 @@ Final figure, complete 2017 3782602 - 26 + 29 Myanmar @@ -97043,7 +100124,7 @@ Final figure, complete 2017 4260063 - 26 + 29 Myanmar @@ -97056,7 +100137,7 @@ Final figure, complete 2017 4021878 - 26 + 29 Myanmar @@ -97069,7 +100150,7 @@ Final figure, complete 2017 238185 - 26 + 29 Myanmar @@ -97082,7 +100163,7 @@ Final figure, complete 2017 3922795 - 26 + 29 Myanmar @@ -97095,7 +100176,7 @@ Final figure, complete 2017 3666652 - 26 + 29 Myanmar @@ -97108,7 +100189,7 @@ Final figure, complete 2017 256143 - 26 + 29 Myanmar @@ -97121,7 +100202,7 @@ Final figure, complete 2017 3835001 - 26 + 29 Myanmar @@ -97134,7 +100215,7 @@ Final figure, complete 2017 3537048 - 26 + 29 Myanmar @@ -97147,7 +100228,7 @@ Final figure, complete 2017 297953 - 26 + 29 Myanmar @@ -97160,7 +100241,7 @@ Final figure, complete 2017 3688862 - 26 + 29 Myanmar @@ -97173,7 +100254,7 @@ Final figure, complete 2017 3368511 - 26 + 29 Myanmar @@ -97186,7 +100267,7 @@ Final figure, complete 2017 320351 - 26 + 29 Myanmar @@ -97199,7 +100280,7 @@ Final figure, complete 2017 3408280 - 26 + 29 Myanmar @@ -97212,7 +100293,7 @@ Final figure, complete 2017 3086310 - 26 + 29 Myanmar @@ -97225,7 +100306,7 @@ Final figure, complete 2017 321970 - 26 + 29 Myanmar @@ -97238,7 +100319,7 @@ Final figure, complete 2017 3158439 - 26 + 29 Myanmar @@ -97251,7 +100332,7 @@ Final figure, complete 2017 2840156 - 26 + 29 Myanmar @@ -97264,7 +100345,7 @@ Final figure, complete 2017 318283 - 26 + 29 Myanmar @@ -97277,7 +100358,7 @@ Final figure, complete 2017 2846351 - 26 + 29 Myanmar @@ -97290,7 +100371,7 @@ Final figure, complete 2017 2529747 - 26 + 29 Myanmar @@ -97303,7 +100384,7 @@ Final figure, complete 2017 316604 - 26 + 29 Myanmar @@ -97316,7 +100397,7 @@ Final figure, complete 2017 2480704 - 26 + 29 Myanmar @@ -97329,7 +100410,7 @@ Final figure, complete 2017 2163484 - 26 + 29 Myanmar @@ -97342,7 +100423,7 @@ Final figure, complete 2017 317220 - 26 + 29 Myanmar @@ -97355,7 +100436,7 @@ Final figure, complete 2017 1992677 - 26 + 29 Myanmar @@ -97368,7 +100449,7 @@ Final figure, complete 2017 1731380 - 26 + 29 Myanmar @@ -97381,7 +100462,7 @@ Final figure, complete 2017 261297 - 26 + 29 Myanmar @@ -97394,7 +100475,7 @@ Final figure, complete 2017 1533332 - 26 + 29 Myanmar @@ -97407,7 +100488,7 @@ Final figure, complete 2017 1282026 - 26 + 29 Myanmar @@ -97420,7 +100501,7 @@ Final figure, complete 2017 251306 - 26 + 29 Myanmar @@ -97433,7 +100514,7 @@ Final figure, complete 2017 1032828 - 26 + 29 Myanmar @@ -97446,7 +100527,7 @@ Final figure, complete 2017 846422 - 26 + 29 Myanmar @@ -97459,7 +100540,7 @@ Final figure, complete 2017 186406 - 26 + 29 Myanmar @@ -97472,7 +100553,7 @@ Final figure, complete 2017 691675 - 26 + 29 Myanmar @@ -97485,7 +100566,7 @@ Final figure, complete 2017 527469 - 26 + 29 Myanmar @@ -97498,7 +100579,7 @@ Final figure, complete 2017 164206 - 26 + 29 Myanmar @@ -97511,7 +100592,7 @@ Final figure, complete 2017 535331 - 26 + 29 Myanmar @@ -97524,7 +100605,7 @@ Final figure, complete 2017 400055 - 26 + 29 Myanmar @@ -97537,7 +100618,7 @@ Final figure, complete 2017 135276 - 26 + 29 Myanmar @@ -97550,7 +100631,7 @@ Final figure, complete 2017 324767 - 26 + 29 Myanmar @@ -97563,7 +100644,7 @@ Final figure, complete 2017 226086 - 26 + 29 Myanmar @@ -97576,7 +100657,7 @@ Final figure, complete 2017 98681 - 26 + 29 Myanmar @@ -97589,7 +100670,7 @@ Final figure, complete 2017 152997 - 26 + 29 Myanmar @@ -97602,7 +100683,7 @@ Final figure, complete 2017 106320 - 26 + 29 Myanmar @@ -97615,7 +100696,7 @@ Final figure, complete 2017 46677 - 26 + 29 Myanmar @@ -97628,7 +100709,7 @@ Final figure, complete 2017 70529 - 26 + 29 Myanmar @@ -97641,7 +100722,7 @@ Final figure, complete 2017 45275 - 26 + 29 Myanmar @@ -97654,7 +100735,7 @@ Final figure, complete 2017 25254 - 26 + 29 Namibia @@ -99138,6 +102219,786 @@ 11661 + + Nepal + 2021 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2909865 + + + + Nepal + 2021 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2807852 + + + + Nepal + 2021 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 101446 + + + + Nepal + 2021 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 567 + + + + Nepal + 2021 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 23958868 + + + + Nepal + 2021 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 17875029 + + + + Nepal + 2021 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6079102 + + + + Nepal + 2021 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4737 + + + + Nepal + 2021 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2966404 + + + + Nepal + 2021 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2828698 + + + + Nepal + 2021 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 137208 + + + + Nepal + 2021 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 498 + + + + Nepal + 2021 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2783060 + + + + Nepal + 2021 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2564877 + + + + Nepal + 2021 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 217602 + + + + Nepal + 2021 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 581 + + + + Nepal + 2021 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2459349 + + + + Nepal + 2021 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2159437 + + + + Nepal + 2021 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 299419 + + + + Nepal + 2021 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 493 + + + + Nepal + 2021 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2147712 + + + + Nepal + 2021 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1757013 + + + + Nepal + 2021 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 390422 + + + + Nepal + 2021 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 277 + + + + Nepal + 2021 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2041492 + + + + Nepal + 2021 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1521409 + + + + Nepal + 2021 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 519853 + + + + Nepal + 2021 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 230 + + + + Nepal + 2021 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1747832 + + + + Nepal + 2021 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1198188 + + + + Nepal + 2021 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 549420 + + + + Nepal + 2021 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 224 + + + + Nepal + 2021 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1436040 + + + + Nepal + 2021 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 873772 + + + + Nepal + 2021 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 562052 + + + + Nepal + 2021 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 216 + + + + Nepal + 2021 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1413852 + + + + Nepal + 2021 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 753958 + + + + Nepal + 2021 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 659656 + + + + Nepal + 2021 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 238 + + + + Nepal + 2021 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1075944 + + + + Nepal + 2021 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 487507 + + + + Nepal + 2021 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 588234 + + + + Nepal + 2021 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 203 + + + + Nepal + 2021 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 955604 + + + + Nepal + 2021 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 362880 + + + + Nepal + 2021 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 592461 + + + + Nepal + 2021 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 263 + + + + Nepal + 2021 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 771618 + + + + Nepal + 2021 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 257075 + + + + Nepal + 2021 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 514274 + + + + Nepal + 2021 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 269 + + + + Nepal + 2021 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 609370 + + + + Nepal + 2021 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 160392 + + + + Nepal + 2021 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 448694 + + + + Nepal + 2021 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 284 + + + + Nepal + 2021 + Total + Both Sexes + 75 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 640726 + + + + Nepal + 2021 + Total + Both Sexes + 75 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 141971 + + + + Nepal + 2021 + Total + Both Sexes + 75 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 498361 + + + + Nepal + 2021 + Total + Both Sexes + 75 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 394 + + Nepal 2011 @@ -102581,7 +106442,7 @@ Final figure, complete 2022 330601 - 27 + 30 Oman @@ -102594,7 +106455,7 @@ Final figure, complete 2022 322518 - 27 + 30 Oman @@ -102607,7 +106468,7 @@ Final figure, complete 2022 967 - 27 + 30 Oman @@ -102620,7 +106481,7 @@ Final figure, complete 2022 7116 - 27 + 30 Oman @@ -102633,7 +106494,7 @@ Final figure, complete 2022 3747501 - 27 + 30 Oman @@ -102646,7 +106507,7 @@ Final figure, complete 2022 3607658 - 27 + 30 Oman @@ -102659,7 +106520,7 @@ Final figure, complete 2022 106226 - 27 + 30 Oman @@ -102672,7 +106533,7 @@ Final figure, complete 2022 33617 - 27 + 30 Oman @@ -102685,7 +106546,7 @@ Final figure, complete 2022 258336 - 27 + 30 Oman @@ -102698,7 +106559,7 @@ Final figure, complete 2022 252455 - 27 + 30 Oman @@ -102711,7 +106572,7 @@ Final figure, complete 2022 738 - 27 + 30 Oman @@ -102724,7 +106585,7 @@ Final figure, complete 2022 5143 - 27 + 30 Oman @@ -102737,7 +106598,7 @@ Final figure, complete 2022 311484 - 27 + 30 Oman @@ -102750,7 +106611,7 @@ Final figure, complete 2022 304937 - 27 + 30 Oman @@ -102763,7 +106624,7 @@ Final figure, complete 2022 1036 - 27 + 30 Oman @@ -102776,7 +106637,7 @@ Final figure, complete 2022 5511 - 27 + 30 Oman @@ -102789,7 +106650,7 @@ Final figure, complete 2022 539304 - 27 + 30 Oman @@ -102802,7 +106663,7 @@ Final figure, complete 2022 532384 - 27 + 30 Oman @@ -102815,7 +106676,7 @@ Final figure, complete 2022 2078 - 27 + 30 Oman @@ -102828,7 +106689,7 @@ Final figure, complete 2022 4842 - 27 + 30 Oman @@ -102841,7 +106702,7 @@ Final figure, complete 2022 617577 - 27 + 30 Oman @@ -102854,7 +106715,7 @@ Final figure, complete 2022 611673 - 27 + 30 Oman @@ -102867,7 +106728,7 @@ Final figure, complete 2022 2848 - 27 + 30 Oman @@ -102880,7 +106741,7 @@ Final figure, complete 2022 3056 - 27 + 30 Oman @@ -102893,7 +106754,7 @@ Final figure, complete 2022 520264 - 27 + 30 Oman @@ -102906,7 +106767,7 @@ Final figure, complete 2022 515018 - 27 + 30 Oman @@ -102919,7 +106780,7 @@ Final figure, complete 2022 3258 - 27 + 30 Oman @@ -102932,7 +106793,7 @@ Final figure, complete 2022 1988 - 27 + 30 Oman @@ -102945,7 +106806,7 @@ Final figure, complete 2022 372541 - 27 + 30 Oman @@ -102958,7 +106819,7 @@ Final figure, complete 2022 367669 - 27 + 30 Oman @@ -102971,7 +106832,7 @@ Final figure, complete 2022 3468 - 27 + 30 Oman @@ -102984,7 +106845,7 @@ Final figure, complete 2022 1404 - 27 + 30 Oman @@ -102997,7 +106858,7 @@ Final figure, complete 2022 247086 - 27 + 30 Oman @@ -103010,7 +106871,7 @@ Final figure, complete 2022 241658 - 27 + 30 Oman @@ -103023,7 +106884,7 @@ Final figure, complete 2022 4368 - 27 + 30 Oman @@ -103036,7 +106897,7 @@ Final figure, complete 2022 1060 - 27 + 30 Oman @@ -103049,7 +106910,7 @@ Final figure, complete 2022 167938 - 27 + 30 Oman @@ -103062,7 +106923,7 @@ Final figure, complete 2022 159856 - 27 + 30 Oman @@ -103075,7 +106936,7 @@ Final figure, complete 2022 7185 - 27 + 30 Oman @@ -103088,7 +106949,7 @@ Final figure, complete 2022 897 - 27 + 30 Oman @@ -103101,7 +106962,7 @@ Final figure, complete 2022 119269 - 27 + 30 Oman @@ -103114,7 +106975,7 @@ Final figure, complete 2022 107569 - 27 + 30 Oman @@ -103127,7 +106988,7 @@ Final figure, complete 2022 10984 - 27 + 30 Oman @@ -103140,7 +107001,7 @@ Final figure, complete 2022 716 - 27 + 30 Oman @@ -103153,7 +107014,7 @@ Final figure, complete 2022 92285 - 27 + 30 Oman @@ -103166,7 +107027,7 @@ Final figure, complete 2022 76304 - 27 + 30 Oman @@ -103179,7 +107040,7 @@ Final figure, complete 2022 15463 - 27 + 30 Oman @@ -103192,7 +107053,7 @@ Final figure, complete 2022 518 - 27 + 30 Oman @@ -103205,7 +107066,7 @@ Final figure, complete 2022 58091 - 27 + 30 Oman @@ -103218,7 +107079,7 @@ Final figure, complete 2022 43338 - 27 + 30 Oman @@ -103231,7 +107092,7 @@ Final figure, complete 2022 14375 - 27 + 30 Oman @@ -103244,7 +107105,7 @@ Final figure, complete 2022 378 - 27 + 30 Oman @@ -103257,7 +107118,7 @@ Final figure, complete 2022 43324 - 27 + 30 Oman @@ -103270,7 +107131,7 @@ Final figure, complete 2022 29641 - 27 + 30 Oman @@ -103283,7 +107144,7 @@ Final figure, complete 2022 13353 - 27 + 30 Oman @@ -103296,7 +107157,7 @@ Final figure, complete 2022 330 - 27 + 30 Oman @@ -103309,7 +107170,7 @@ Final figure, complete 2022 31137 - 27 + 30 Oman @@ -103322,7 +107183,7 @@ Final figure, complete 2022 19841 - 27 + 30 Oman @@ -103335,7 +107196,7 @@ Final figure, complete 2022 11030 - 27 + 30 Oman @@ -103348,7 +107209,7 @@ Final figure, complete 2022 266 - 27 + 30 Oman @@ -103361,7 +107222,7 @@ Final figure, complete 2022 21043 - 27 + 30 Oman @@ -103374,7 +107235,7 @@ Final figure, complete 2022 12828 - 27 + 30 Oman @@ -103387,7 +107248,7 @@ Final figure, complete 2022 8055 - 27 + 30 Oman @@ -103400,7 +107261,7 @@ Final figure, complete 2022 160 - 27 + 30 Oman @@ -103413,7 +107274,7 @@ Final figure, complete 2022 10174 - 27 + 30 Oman @@ -103426,7 +107287,7 @@ Final figure, complete 2022 5989 - 27 + 30 Oman @@ -103439,7 +107300,7 @@ Final figure, complete 2022 4107 - 27 + 30 Oman @@ -103452,7 +107313,7 @@ Final figure, complete 2022 78 - 27 + 30 Oman @@ -103465,7 +107326,7 @@ Final figure, complete 2022 4413 - 27 + 30 Oman @@ -103478,7 +107339,7 @@ Final figure, complete 2022 2528 - 27 + 30 Oman @@ -103491,7 +107352,7 @@ Final figure, complete 2022 1828 - 27 + 30 Oman @@ -103504,7 +107365,7 @@ Final figure, complete 2022 57 - 27 + 30 Oman @@ -103517,7 +107378,7 @@ Final figure, complete 2022 1642 - 27 + 30 Oman @@ -103530,7 +107391,7 @@ Final figure, complete 2022 916 - 27 + 30 Oman @@ -103543,7 +107404,7 @@ Final figure, complete 2022 703 - 27 + 30 Oman @@ -103556,7 +107417,7 @@ Final figure, complete 2022 23 - 27 + 30 Oman @@ -103569,7 +107430,7 @@ Final figure, complete 2022 992 - 27 + 30 Oman @@ -103582,7 +107443,7 @@ Final figure, complete 2022 536 - 27 + 30 Oman @@ -103595,7 +107456,7 @@ Final figure, complete 2022 382 - 27 + 30 Oman @@ -103608,7 +107469,7 @@ Final figure, complete 2022 74 - 27 + 30 Oman @@ -104557,7 +108418,7 @@ Final figure, complete 2021 24527188 - 28 + 31 Pakistan @@ -104570,7 +108431,7 @@ Final figure, complete 2021 17887381 - 28 + 31 Pakistan @@ -104583,7 +108444,7 @@ Final figure, complete 2021 6639807 - 28 + 31 Pakistan @@ -104596,7 +108457,7 @@ Final figure, complete 2021 148495318 - 28 + 31 Pakistan @@ -104609,7 +108470,7 @@ Final figure, complete 2021 87485375 - 28 + 31 Pakistan @@ -104622,7 +108483,7 @@ Final figure, complete 2021 61009943 - 28 + 31 Pakistan @@ -104635,7 +108496,7 @@ Final figure, complete 2021 21366618 - 28 + 31 Pakistan @@ -104648,7 +108509,7 @@ Final figure, complete 2021 15042255 - 28 + 31 Pakistan @@ -104661,7 +108522,7 @@ Final figure, complete 2021 6324363 - 28 + 31 Pakistan @@ -104674,7 +108535,7 @@ Final figure, complete 2021 18495895 - 28 + 31 Pakistan @@ -104687,7 +108548,7 @@ Final figure, complete 2021 12254995 - 28 + 31 Pakistan @@ -104700,7 +108561,7 @@ Final figure, complete 2021 6240900 - 28 + 31 Pakistan @@ -104713,7 +108574,7 @@ Final figure, complete 2021 16401132 - 28 + 31 Pakistan @@ -104726,7 +108587,7 @@ Final figure, complete 2021 9975165 - 28 + 31 Pakistan @@ -104739,7 +108600,7 @@ Final figure, complete 2021 6425967 - 28 + 31 Pakistan @@ -104752,7 +108613,7 @@ Final figure, complete 2021 14151748 - 28 + 31 Pakistan @@ -104765,7 +108626,7 @@ Final figure, complete 2021 8288686 - 28 + 31 Pakistan @@ -104778,7 +108639,7 @@ Final figure, complete 2021 5863062 - 28 + 31 Pakistan @@ -104791,7 +108652,7 @@ Final figure, complete 2021 12048811 - 28 + 31 Pakistan @@ -104804,7 +108665,7 @@ Final figure, complete 2021 6621702 - 28 + 31 Pakistan @@ -104817,7 +108678,7 @@ Final figure, complete 2021 5427109 - 28 + 31 Pakistan @@ -104830,7 +108691,7 @@ Final figure, complete 2021 9627067 - 28 + 31 Pakistan @@ -104843,7 +108704,7 @@ Final figure, complete 2021 4939101 - 28 + 31 Pakistan @@ -104856,7 +108717,7 @@ Final figure, complete 2021 4687966 - 28 + 31 Pakistan @@ -104869,7 +108730,7 @@ Final figure, complete 2021 7931616 - 28 + 31 Pakistan @@ -104882,7 +108743,7 @@ Final figure, complete 2021 3596466 - 28 + 31 Pakistan @@ -104895,7 +108756,7 @@ Final figure, complete 2021 4335150 - 28 + 31 Pakistan @@ -104908,7 +108769,7 @@ Final figure, complete 2021 6945580 - 28 + 31 Pakistan @@ -104921,7 +108782,7 @@ Final figure, complete 2021 3008808 - 28 + 31 Pakistan @@ -104934,7 +108795,7 @@ Final figure, complete 2021 3936772 - 28 + 31 Pakistan @@ -104947,7 +108808,7 @@ Final figure, complete 2021 4974986 - 28 + 31 Pakistan @@ -104960,7 +108821,7 @@ Final figure, complete 2021 2057096 - 28 + 31 Pakistan @@ -104973,7 +108834,7 @@ Final figure, complete 2021 2917890 - 28 + 31 Pakistan @@ -104986,7 +108847,7 @@ Final figure, complete 2021 4311861 - 28 + 31 Pakistan @@ -104999,7 +108860,7 @@ Final figure, complete 2021 1587413 - 28 + 31 Pakistan @@ -105012,7 +108873,7 @@ Final figure, complete 2021 2724448 - 28 + 31 Pakistan @@ -105025,7 +108886,7 @@ Final figure, complete 2021 2952013 - 28 + 31 Pakistan @@ -105038,7 +108899,7 @@ Final figure, complete 2021 950386 - 28 + 31 Pakistan @@ -105051,7 +108912,7 @@ Final figure, complete 2021 2001627 - 28 + 31 Pakistan @@ -105064,7 +108925,7 @@ Final figure, complete 2021 2134220 - 28 + 31 Pakistan @@ -105077,7 +108938,7 @@ Final figure, complete 2021 622232 - 28 + 31 Pakistan @@ -105090,7 +108951,7 @@ Final figure, complete 2021 1511988 - 28 + 31 Pakistan @@ -105103,7 +108964,7 @@ Final figure, complete 2021 2626583 - 28 + 31 Pakistan @@ -105116,7 +108977,7 @@ Final figure, complete 2021 653689 - 28 + 31 Pakistan @@ -105129,7 +108990,7 @@ Final figure, complete 2021 1972894 - 28 + 31 Pakistan @@ -105142,7 +109003,7 @@ Final figure, complete 1998 16487551 - 29 + 32 Pakistan @@ -105155,7 +109016,7 @@ Final figure, complete 1998 9123705 - 29 + 32 Pakistan @@ -105168,7 +109029,7 @@ Final figure, complete 1998 7363846 - 29 + 32 Pakistan @@ -105181,7 +109042,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105194,7 +109055,7 @@ Final figure, complete 1998 88886342 - 29 + 32 Pakistan @@ -105207,7 +109068,7 @@ Final figure, complete 1998 40037489 - 29 + 32 Pakistan @@ -105220,7 +109081,7 @@ Final figure, complete 1998 48848853 - 29 + 32 Pakistan @@ -105233,7 +109094,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105246,7 +109107,7 @@ Final figure, complete 1998 13193775 - 29 + 32 Pakistan @@ -105259,7 +109120,7 @@ Final figure, complete 1998 7681844 - 29 + 32 Pakistan @@ -105272,7 +109133,7 @@ Final figure, complete 1998 5511931 - 29 + 32 Pakistan @@ -105285,7 +109146,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105298,7 +109159,7 @@ Final figure, complete 1998 11491380 - 29 + 32 Pakistan @@ -105311,7 +109172,7 @@ Final figure, complete 1998 5976581 - 29 + 32 Pakistan @@ -105324,7 +109185,7 @@ Final figure, complete 1998 5514799 - 29 + 32 Pakistan @@ -105337,7 +109198,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105350,7 +109211,7 @@ Final figure, complete 1998 9565376 - 29 + 32 Pakistan @@ -105363,7 +109224,7 @@ Final figure, complete 1998 4407925 - 29 + 32 Pakistan @@ -105376,7 +109237,7 @@ Final figure, complete 1998 5157451 - 29 + 32 Pakistan @@ -105389,7 +109250,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105402,7 +109263,7 @@ Final figure, complete 1998 8103504 - 29 + 32 Pakistan @@ -105415,7 +109276,7 @@ Final figure, complete 1998 3488218 - 29 + 32 Pakistan @@ -105428,7 +109289,7 @@ Final figure, complete 1998 4615286 - 29 + 32 Pakistan @@ -105441,7 +109302,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105454,7 +109315,7 @@ Final figure, complete 1998 6144394 - 29 + 32 Pakistan @@ -105467,7 +109328,7 @@ Final figure, complete 1998 2569289 - 29 + 32 Pakistan @@ -105480,7 +109341,7 @@ Final figure, complete 1998 3575105 - 29 + 32 Pakistan @@ -105493,7 +109354,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105506,7 +109367,7 @@ Final figure, complete 1998 5640767 - 29 + 32 Pakistan @@ -105519,7 +109380,7 @@ Final figure, complete 1998 2065821 - 29 + 32 Pakistan @@ -105532,7 +109393,7 @@ Final figure, complete 1998 3574946 - 29 + 32 Pakistan @@ -105545,7 +109406,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105558,7 +109419,7 @@ Final figure, complete 1998 4494396 - 29 + 32 Pakistan @@ -105571,7 +109432,7 @@ Final figure, complete 1998 1466780 - 29 + 32 Pakistan @@ -105584,7 +109445,7 @@ Final figure, complete 1998 3027616 - 29 + 32 Pakistan @@ -105597,7 +109458,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105610,7 +109471,7 @@ Final figure, complete 1998 4080253 - 29 + 32 Pakistan @@ -105623,7 +109484,7 @@ Final figure, complete 1998 1177846 - 29 + 32 Pakistan @@ -105636,7 +109497,7 @@ Final figure, complete 1998 2902407 - 29 + 32 Pakistan @@ -105649,7 +109510,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105662,7 +109523,7 @@ Final figure, complete 1998 2698411 - 29 + 32 Pakistan @@ -105675,7 +109536,7 @@ Final figure, complete 1998 744752 - 29 + 32 Pakistan @@ -105688,7 +109549,7 @@ Final figure, complete 1998 1953659 - 29 + 32 Pakistan @@ -105701,7 +109562,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105714,7 +109575,7 @@ Final figure, complete 1998 2618383 - 29 + 32 Pakistan @@ -105727,7 +109588,7 @@ Final figure, complete 1998 562755 - 29 + 32 Pakistan @@ -105740,7 +109601,7 @@ Final figure, complete 1998 2055628 - 29 + 32 Pakistan @@ -105753,7 +109614,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105766,7 +109627,7 @@ Final figure, complete 1998 1509437 - 29 + 32 Pakistan @@ -105779,7 +109640,7 @@ Final figure, complete 1998 304984 - 29 + 32 Pakistan @@ -105792,7 +109653,7 @@ Final figure, complete 1998 1204453 - 29 + 32 Pakistan @@ -105805,7 +109666,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105818,7 +109679,7 @@ Final figure, complete 1998 1353974 - 29 + 32 Pakistan @@ -105831,7 +109692,7 @@ Final figure, complete 1998 228000 - 29 + 32 Pakistan @@ -105844,7 +109705,7 @@ Final figure, complete 1998 1125974 - 29 + 32 Pakistan @@ -105857,7 +109718,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105870,7 +109731,7 @@ Final figure, complete 1998 1504741 - 29 + 32 Pakistan @@ -105883,7 +109744,7 @@ Final figure, complete 1998 238989 - 29 + 32 Pakistan @@ -105896,7 +109757,7 @@ Final figure, complete 1998 1265752 - 29 + 32 Pakistan @@ -105909,7 +109770,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105922,7 +109783,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105935,7 +109796,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105948,7 +109809,7 @@ Final figure, complete 1998 0 - 29 + 32 Pakistan @@ -105961,7 +109822,7 @@ Final figure, complete 1998 0 - 29 + 32 Panama @@ -110665,9 +114526,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 11080715 - 30 + 33 Philippines @@ -110678,9 +114539,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 10984913 - 30 + 33 Philippines @@ -110691,9 +114552,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 95802 - 30 + 33 Philippines @@ -110704,9 +114565,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 86333513 - 30 + 33 Philippines @@ -110717,9 +114578,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 85089786 - 30 + 33 Philippines @@ -110730,9 +114591,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 1243727 - 30 + 33 Philippines @@ -110743,9 +114604,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 10459186 - 30 + 33 Philippines @@ -110756,9 +114617,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 10382955 - 30 + 33 Philippines @@ -110769,9 +114630,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 76231 - 30 + 33 Philippines @@ -110782,9 +114643,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 9969846 - 30 + 33 Philippines @@ -110795,9 +114656,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 9885944 - 30 + 33 Philippines @@ -110808,9 +114669,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 83902 - 30 + 33 Philippines @@ -110821,9 +114682,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 9172896 - 30 + 33 Philippines @@ -110834,9 +114695,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 9081449 - 30 + 33 Philippines @@ -110847,9 +114708,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 91447 - 30 + 33 Philippines @@ -110860,9 +114721,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 8120568 - 30 + 33 Philippines @@ -110873,9 +114734,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 8029749 - 30 + 33 Philippines @@ -110886,9 +114747,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 90819 - 30 + 33 Philippines @@ -110899,9 +114760,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 7179320 - 30 + 33 Philippines @@ -110912,9 +114773,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 7086648 - 30 + 33 Philippines @@ -110925,9 +114786,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 92672 - 30 + 33 Philippines @@ -110938,9 +114799,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 6491312 - 30 + 33 Philippines @@ -110951,9 +114812,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 6390896 - 30 + 33 Philippines @@ -110964,9 +114825,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 100416 - 30 + 33 Philippines @@ -110977,9 +114838,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 5571168 - 30 + 33 Philippines @@ -110990,9 +114851,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 5468867 - 30 + 33 Philippines @@ -111003,9 +114864,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 102301 - 30 + 33 Philippines @@ -111016,9 +114877,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 4941712 - 30 + 33 Philippines @@ -111029,9 +114890,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 4846451 - 30 + 33 Philippines @@ -111042,9 +114903,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 95261 - 30 + 33 Philippines @@ -111055,9 +114916,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 4124118 - 30 + 33 Philippines @@ -111068,9 +114929,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 4038986 - 30 + 33 Philippines @@ -111081,9 +114942,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 85132 - 30 + 33 Philippines @@ -111094,9 +114955,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 3367223 - 30 + 33 Philippines @@ -111107,9 +114968,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 3286970 - 30 + 33 Philippines @@ -111120,9 +114981,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 80253 - 30 + 33 Philippines @@ -111133,9 +114994,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 2393521 - 30 + 33 Philippines @@ -111146,9 +115007,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 2324271 - 30 + 33 Philippines @@ -111159,9 +115020,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 69250 - 30 + 33 Philippines @@ -111172,9 +115033,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 1575398 - 30 + 33 Philippines @@ -111185,9 +115046,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 1517245 - 30 + 33 Philippines @@ -111198,9 +115059,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 58153 - 30 + 33 Philippines @@ -111211,9 +115072,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 930610 - 30 + 33 Philippines @@ -111224,9 +115085,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 882911 - 30 + 33 Philippines @@ -111237,9 +115098,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 47699 - 30 + 33 Philippines @@ -111250,9 +115111,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 568460 - 30 + 33 Philippines @@ -111263,9 +115124,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 533397 - 30 + 33 Philippines @@ -111276,9 +115137,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 35063 - 30 + 33 Philippines @@ -111289,9 +115150,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 266823 - 30 + 33 Philippines @@ -111302,9 +115163,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 242199 - 30 + 33 Philippines @@ -111315,9 +115176,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 24624 - 30 + 33 Philippines @@ -111328,9 +115189,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 88583 - 30 + 33 Philippines @@ -111341,9 +115202,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 79195 - 30 + 33 Philippines @@ -111354,9 +115215,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 9388 - 30 + 33 Philippines @@ -111367,9 +115228,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 24552 - 30 + 33 Philippines @@ -111380,9 +115241,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 20725 - 30 + 33 Philippines @@ -111393,9 +115254,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 3827 - 30 + 33 Philippines @@ -111406,9 +115267,9 @@ Total Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 7502 - 30 + 33 Philippines @@ -111419,9 +115280,9 @@ Literate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 6015 - 30 + 33 Philippines @@ -111432,9 +115293,9 @@ Illiterate Census - de jure - complete tabulation Final figure, complete - 2022 + 2023 1487 - 30 + 33 Philippines @@ -111447,7 +115308,7 @@ Final figure, complete 2019 10480412 - 30 + 33 Philippines @@ -111460,7 +115321,7 @@ Final figure, complete 2019 10381879 - 30 + 33 Philippines @@ -111473,7 +115334,7 @@ Final figure, complete 2019 98533 - 30 + 33 Philippines @@ -111486,7 +115347,7 @@ Final figure, complete 2019 78918842 - 30 + 33 Philippines @@ -111499,7 +115360,7 @@ Final figure, complete 2019 77576472 - 30 + 33 Philippines @@ -111512,7 +115373,7 @@ Final figure, complete 2019 1342370 - 30 + 33 Philippines @@ -111525,7 +115386,7 @@ Final figure, complete 2019 10120312 - 30 + 33 Philippines @@ -111538,7 +115399,7 @@ Final figure, complete 2019 10032623 - 30 + 33 Philippines @@ -111551,7 +115412,7 @@ Final figure, complete 2019 87689 - 30 + 33 Philippines @@ -111564,7 +115425,7 @@ Final figure, complete 2019 9396155 - 30 + 33 Philippines @@ -111577,7 +115438,7 @@ Final figure, complete 2019 9304800 - 30 + 33 Philippines @@ -111590,7 +115451,7 @@ Final figure, complete 2019 91355 - 30 + 33 Philippines @@ -111603,7 +115464,7 @@ Final figure, complete 2019 8304461 - 30 + 33 Philippines @@ -111616,7 +115477,7 @@ Final figure, complete 2019 8211475 - 30 + 33 Philippines @@ -111629,7 +115490,7 @@ Final figure, complete 2019 92986 - 30 + 33 Philippines @@ -111642,7 +115503,7 @@ Final figure, complete 2019 7290536 - 30 + 33 Philippines @@ -111655,7 +115516,7 @@ Final figure, complete 2019 7194122 - 30 + 33 Philippines @@ -111668,7 +115529,7 @@ Final figure, complete 2019 96414 - 30 + 33 Philippines @@ -111681,7 +115542,7 @@ Final figure, complete 2019 6704923 - 30 + 33 Philippines @@ -111694,7 +115555,7 @@ Final figure, complete 2019 6597177 - 30 + 33 Philippines @@ -111707,7 +115568,7 @@ Final figure, complete 2019 107746 - 30 + 33 Philippines @@ -111720,7 +115581,7 @@ Final figure, complete 2019 5813169 - 30 + 33 Philippines @@ -111733,7 +115594,7 @@ Final figure, complete 2019 5697529 - 30 + 33 Philippines @@ -111746,7 +115607,7 @@ Final figure, complete 2019 115640 - 30 + 33 Philippines @@ -111759,7 +115620,7 @@ Final figure, complete 2019 5262005 - 30 + 33 Philippines @@ -111772,7 +115633,7 @@ Final figure, complete 2019 5149647 - 30 + 33 Philippines @@ -111785,7 +115646,7 @@ Final figure, complete 2019 112358 - 30 + 33 Philippines @@ -111798,7 +115659,7 @@ Final figure, complete 2019 4415193 - 30 + 33 Philippines @@ -111811,7 +115672,7 @@ Final figure, complete 2019 4311043 - 30 + 33 Philippines @@ -111824,7 +115685,7 @@ Final figure, complete 2019 104150 - 30 + 33 Philippines @@ -111837,7 +115698,7 @@ Final figure, complete 2019 3597370 - 30 + 33 Philippines @@ -111850,7 +115711,7 @@ Final figure, complete 2019 3512314 - 30 + 33 Philippines @@ -111863,7 +115724,7 @@ Final figure, complete 2019 85056 - 30 + 33 Philippines @@ -111876,7 +115737,7 @@ Final figure, complete 2019 2755608 - 30 + 33 Philippines @@ -111889,7 +115750,7 @@ Final figure, complete 2019 2676657 - 30 + 33 Philippines @@ -111902,7 +115763,7 @@ Final figure, complete 2019 78951 - 30 + 33 Philippines @@ -111915,7 +115776,7 @@ Final figure, complete 2019 1912908 - 30 + 33 Philippines @@ -111928,7 +115789,7 @@ Final figure, complete 2019 1843089 - 30 + 33 Philippines @@ -111941,7 +115802,7 @@ Final figure, complete 2019 69819 - 30 + 33 Philippines @@ -111954,7 +115815,7 @@ Final figure, complete 2019 1218065 - 30 + 33 Philippines @@ -111967,7 +115828,7 @@ Final figure, complete 2019 1151668 - 30 + 33 Philippines @@ -111980,7 +115841,7 @@ Final figure, complete 2019 66397 - 30 + 33 Philippines @@ -111993,7 +115854,7 @@ Final figure, complete 2019 857534 - 30 + 33 Philippines @@ -112006,7 +115867,7 @@ Final figure, complete 2019 804823 - 30 + 33 Philippines @@ -112019,7 +115880,7 @@ Final figure, complete 2019 52711 - 30 + 33 Philippines @@ -112032,7 +115893,7 @@ Final figure, complete 2019 474105 - 30 + 33 Philippines @@ -112045,7 +115906,7 @@ Final figure, complete 2019 429598 - 30 + 33 Philippines @@ -112058,7 +115919,7 @@ Final figure, complete 2019 44507 - 30 + 33 Philippines @@ -112071,7 +115932,7 @@ Final figure, complete 2019 217572 - 30 + 33 Philippines @@ -112084,7 +115945,7 @@ Final figure, complete 2019 194140 - 30 + 33 Philippines @@ -112097,7 +115958,7 @@ Final figure, complete 2019 23432 - 30 + 33 Philippines @@ -112110,7 +115971,7 @@ Final figure, complete 2019 74686 - 30 + 33 Philippines @@ -112123,7 +115984,7 @@ Final figure, complete 2019 64835 - 30 + 33 Philippines @@ -112136,7 +115997,7 @@ Final figure, complete 2019 9851 - 30 + 33 Philippines @@ -112149,7 +116010,7 @@ Final figure, complete 2019 19872 - 30 + 33 Philippines @@ -112162,7 +116023,7 @@ Final figure, complete 2019 16207 - 30 + 33 Philippines @@ -112175,7 +116036,7 @@ Final figure, complete 2019 3665 - 30 + 33 Philippines @@ -112188,7 +116049,7 @@ Final figure, complete 2019 3956 - 30 + 33 Philippines @@ -112201,7 +116062,7 @@ Final figure, complete 2019 2846 - 30 + 33 Philippines @@ -112214,7 +116075,7 @@ Final figure, complete 2019 1110 - 30 + 33 Philippines @@ -112762,6 +116623,786 @@ 434206 + + Portugal + 2021 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 490900 + + + + Portugal + 2021 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 489227 + + + + Portugal + 2021 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1673 + + + + Portugal + 2021 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 9502778 + + + + Portugal + 2021 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 9209969 + + + + Portugal + 2021 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 292809 + + + + Portugal + 2021 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 528190 + + + + Portugal + 2021 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 527144 + + + + Portugal + 2021 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1046 + + + + Portugal + 2021 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 559897 + + + + Portugal + 2021 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 557801 + + + + Portugal + 2021 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2096 + + + + Portugal + 2021 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 541861 + + + + Portugal + 2021 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 538736 + + + + Portugal + 2021 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3125 + + + + Portugal + 2021 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 561085 + + + + Portugal + 2021 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 556844 + + + + Portugal + 2021 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4241 + + + + Portugal + 2021 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 645232 + + + + Portugal + 2021 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 640011 + + + + Portugal + 2021 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 5221 + + + + Portugal + 2021 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 757622 + + + + Portugal + 2021 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 750592 + + + + Portugal + 2021 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 7030 + + + + Portugal + 2021 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 797793 + + + + Portugal + 2021 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 788618 + + + + Portugal + 2021 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 9175 + + + + Portugal + 2021 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 748929 + + + + Portugal + 2021 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 737558 + + + + Portugal + 2021 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 11371 + + + + Portugal + 2021 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 743288 + + + + Portugal + 2021 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 730300 + + + + Portugal + 2021 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 12988 + + + + Portugal + 2021 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 704342 + + + + Portugal + 2021 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 690407 + + + + Portugal + 2021 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 13935 + + + + Portugal + 2021 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 654094 + + + + Portugal + 2021 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 638020 + + + + Portugal + 2021 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 16074 + + + + Portugal + 2021 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 589932 + + + + Portugal + 2021 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 572502 + + + + Portugal + 2021 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 17430 + + + + Portugal + 2021 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 466636 + + + + Portugal + 2021 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 438758 + + + + Portugal + 2021 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 27878 + + + + Portugal + 2021 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 359991 + + + + Portugal + 2021 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 294812 + + + + Portugal + 2021 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 65179 + + + + Portugal + 2021 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 230690 + + + + Portugal + 2021 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 173408 + + + + Portugal + 2021 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 57282 + + + + Portugal + 2021 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 96121 + + + + Portugal + 2021 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 68013 + + + + Portugal + 2021 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 28108 + + + + Portugal + 2021 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 23374 + + + + Portugal + 2021 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 15465 + + + + Portugal + 2021 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 7909 + + + + Portugal + 2021 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2801 + + + + Portugal + 2021 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1753 + + + + Portugal + 2021 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1048 + + Portugal 2011 @@ -114216,7 +118857,7 @@ Final figure, complete 2015 284259 - 31 + 34 Puerto Rico @@ -114229,7 +118870,7 @@ Final figure, complete 2015 280397 - 31 + 34 Puerto Rico @@ -114242,7 +118883,7 @@ Final figure, complete 2015 3862 - 31 + 34 Puerto Rico @@ -114255,7 +118896,7 @@ Final figure, complete 2015 2992458 - 31 + 34 Puerto Rico @@ -114268,7 +118909,7 @@ Final figure, complete 2015 2752021 - 31 + 34 Puerto Rico @@ -114281,7 +118922,7 @@ Final figure, complete 2015 240437 - 31 + 34 Puerto Rico @@ -114294,7 +118935,7 @@ Final figure, complete 2015 260850 - 31 + 34 Puerto Rico @@ -114307,7 +118948,7 @@ Final figure, complete 2015 258357 - 31 + 34 Puerto Rico @@ -114320,7 +118961,7 @@ Final figure, complete 2015 2493 - 31 + 34 Puerto Rico @@ -114333,7 +118974,7 @@ Final figure, complete 2015 244159 - 31 + 34 Puerto Rico @@ -114346,7 +118987,7 @@ Final figure, complete 2015 233057 - 31 + 34 Puerto Rico @@ -114359,7 +119000,7 @@ Final figure, complete 2015 11102 - 31 + 34 Puerto Rico @@ -114372,7 +119013,7 @@ Final figure, complete 2015 248173 - 31 + 34 Puerto Rico @@ -114385,7 +119026,7 @@ Final figure, complete 2015 240237 - 31 + 34 Puerto Rico @@ -114398,7 +119039,7 @@ Final figure, complete 2015 7936 - 31 + 34 Puerto Rico @@ -114411,7 +119052,7 @@ Final figure, complete 2015 241270 - 31 + 34 Puerto Rico @@ -114424,7 +119065,7 @@ Final figure, complete 2015 227767 - 31 + 34 Puerto Rico @@ -114437,7 +119078,7 @@ Final figure, complete 2015 13503 - 31 + 34 Puerto Rico @@ -114450,7 +119091,7 @@ Final figure, complete 2015 242258 - 31 + 34 Puerto Rico @@ -114463,7 +119104,7 @@ Final figure, complete 2015 225503 - 31 + 34 Puerto Rico @@ -114476,7 +119117,7 @@ Final figure, complete 2015 16755 - 31 + 34 Puerto Rico @@ -114489,7 +119130,7 @@ Final figure, complete 2015 247986 - 31 + 34 Puerto Rico @@ -114502,7 +119143,7 @@ Final figure, complete 2015 230678 - 31 + 34 Puerto Rico @@ -114515,7 +119156,7 @@ Final figure, complete 2015 17308 - 31 + 34 Puerto Rico @@ -114528,7 +119169,7 @@ Final figure, complete 2015 239821 - 31 + 34 Puerto Rico @@ -114541,7 +119182,7 @@ Final figure, complete 2015 207306 - 31 + 34 Puerto Rico @@ -114554,7 +119195,7 @@ Final figure, complete 2015 32515 - 31 + 34 Puerto Rico @@ -114567,7 +119208,7 @@ Final figure, complete 2015 223607 - 31 + 34 Puerto Rico @@ -114580,7 +119221,7 @@ Final figure, complete 2015 195001 - 31 + 34 Puerto Rico @@ -114593,7 +119234,7 @@ Final figure, complete 2015 28606 - 31 + 34 Puerto Rico @@ -114606,7 +119247,7 @@ Final figure, complete 2015 218077 - 31 + 34 Puerto Rico @@ -114619,7 +119260,7 @@ Final figure, complete 2015 195563 - 31 + 34 Puerto Rico @@ -114632,7 +119273,7 @@ Final figure, complete 2015 22514 - 31 + 34 Puerto Rico @@ -114645,7 +119286,7 @@ Final figure, complete 2015 175411 - 31 + 34 Puerto Rico @@ -114658,7 +119299,7 @@ Final figure, complete 2015 156170 - 31 + 34 Puerto Rico @@ -114671,7 +119312,7 @@ Final figure, complete 2015 19241 - 31 + 34 Puerto Rico @@ -114684,7 +119325,7 @@ Final figure, complete 2015 136251 - 31 + 34 Puerto Rico @@ -114697,7 +119338,7 @@ Final figure, complete 2015 113866 - 31 + 34 Puerto Rico @@ -114710,7 +119351,7 @@ Final figure, complete 2015 22385 - 31 + 34 Puerto Rico @@ -114723,7 +119364,7 @@ Final figure, complete 2015 100740 - 31 + 34 Puerto Rico @@ -114736,7 +119377,7 @@ Final figure, complete 2015 85318 - 31 + 34 Puerto Rico @@ -114749,7 +119390,7 @@ Final figure, complete 2015 15422 - 31 + 34 Puerto Rico @@ -114762,7 +119403,7 @@ Final figure, complete 2015 67000 - 31 + 34 Puerto Rico @@ -114775,7 +119416,7 @@ Final figure, complete 2015 55585 - 31 + 34 Puerto Rico @@ -114788,7 +119429,7 @@ Final figure, complete 2015 11415 - 31 + 34 Puerto Rico @@ -114801,7 +119442,7 @@ Final figure, complete 2015 62596 - 31 + 34 Puerto Rico @@ -114814,7 +119455,7 @@ Final figure, complete 2015 47216 - 31 + 34 Puerto Rico @@ -114827,7 +119468,7 @@ Final figure, complete 2015 15380 - 31 + 34 Qatar @@ -117063,7 +121704,7 @@ Final figure, complete 2016 150027 - 32,33 + 35,36 Republic of Moldova @@ -117076,7 +121717,7 @@ Final figure, complete 2016 140350 - 32,33 + 35,36 Republic of Moldova @@ -117089,7 +121730,7 @@ Final figure, complete 2016 9677 - 32,33 + 35,36 Republic of Moldova @@ -117102,7 +121743,7 @@ Final figure, complete 2016 2472125 - 32,33 + 35,36 Republic of Moldova @@ -117115,7 +121756,7 @@ Final figure, complete 2016 2447584 - 32,33 + 35,36 Republic of Moldova @@ -117128,7 +121769,7 @@ Final figure, complete 2016 24541 - 32,33 + 35,36 Republic of Moldova @@ -117141,7 +121782,7 @@ Final figure, complete 2016 183692 - 32,33 + 35,36 Republic of Moldova @@ -117154,7 +121795,7 @@ Final figure, complete 2016 183420 - 32,33 + 35,36 Republic of Moldova @@ -117167,7 +121808,7 @@ Final figure, complete 2016 272 - 32,33 + 35,36 Republic of Moldova @@ -117180,7 +121821,7 @@ Final figure, complete 2016 231153 - 32,33 + 35,36 Republic of Moldova @@ -117193,7 +121834,7 @@ Final figure, complete 2016 230641 - 32,33 + 35,36 Republic of Moldova @@ -117206,7 +121847,7 @@ Final figure, complete 2016 512 - 32,33 + 35,36 Republic of Moldova @@ -117219,7 +121860,7 @@ Final figure, complete 2016 251465 - 32,33 + 35,36 Republic of Moldova @@ -117232,7 +121873,7 @@ Final figure, complete 2016 250784 - 32,33 + 35,36 Republic of Moldova @@ -117245,7 +121886,7 @@ Final figure, complete 2016 681 - 32,33 + 35,36 Republic of Moldova @@ -117258,7 +121899,7 @@ Final figure, complete 2016 214870 - 32,33 + 35,36 Republic of Moldova @@ -117271,7 +121912,7 @@ Final figure, complete 2016 214237 - 32,33 + 35,36 Republic of Moldova @@ -117284,7 +121925,7 @@ Final figure, complete 2016 633 - 32,33 + 35,36 Republic of Moldova @@ -117297,7 +121938,7 @@ Final figure, complete 2016 190795 - 32,33 + 35,36 Republic of Moldova @@ -117310,7 +121951,7 @@ Final figure, complete 2016 190214 - 32,33 + 35,36 Republic of Moldova @@ -117323,7 +121964,7 @@ Final figure, complete 2016 581 - 32,33 + 35,36 Republic of Moldova @@ -117336,7 +121977,7 @@ Final figure, complete 2016 176906 - 32,33 + 35,36 Republic of Moldova @@ -117349,7 +121990,7 @@ Final figure, complete 2016 176327 - 32,33 + 35,36 Republic of Moldova @@ -117362,7 +122003,7 @@ Final figure, complete 2016 579 - 32,33 + 35,36 Republic of Moldova @@ -117375,7 +122016,7 @@ Final figure, complete 2016 173564 - 32,33 + 35,36 Republic of Moldova @@ -117388,7 +122029,7 @@ Final figure, complete 2016 172936 - 32,33 + 35,36 Republic of Moldova @@ -117401,7 +122042,7 @@ Final figure, complete 2016 628 - 32,33 + 35,36 Republic of Moldova @@ -117414,7 +122055,7 @@ Final figure, complete 2016 208674 - 32,33 + 35,36 Republic of Moldova @@ -117427,7 +122068,7 @@ Final figure, complete 2016 207843 - 32,33 + 35,36 Republic of Moldova @@ -117440,7 +122081,7 @@ Final figure, complete 2016 831 - 32,33 + 35,36 Republic of Moldova @@ -117453,7 +122094,7 @@ Final figure, complete 2016 203825 - 32,33 + 35,36 Republic of Moldova @@ -117466,7 +122107,7 @@ Final figure, complete 2016 203090 - 32,33 + 35,36 Republic of Moldova @@ -117479,7 +122120,7 @@ Final figure, complete 2016 735 - 32,33 + 35,36 Republic of Moldova @@ -117492,7 +122133,7 @@ Final figure, complete 2016 181690 - 32,33 + 35,36 Republic of Moldova @@ -117505,7 +122146,7 @@ Final figure, complete 2016 180997 - 32,33 + 35,36 Republic of Moldova @@ -117518,7 +122159,7 @@ Final figure, complete 2016 693 - 32,33 + 35,36 Republic of Moldova @@ -117531,7 +122172,7 @@ Final figure, complete 2016 95407 - 32,33 + 35,36 Republic of Moldova @@ -117544,7 +122185,7 @@ Final figure, complete 2016 94841 - 32,33 + 35,36 Republic of Moldova @@ -117557,7 +122198,7 @@ Final figure, complete 2016 566 - 32,33 + 35,36 Republic of Moldova @@ -117570,7 +122211,7 @@ Final figure, complete 2016 85270 - 32,33 + 35,36 Republic of Moldova @@ -117583,7 +122224,7 @@ Final figure, complete 2016 84292 - 32,33 + 35,36 Republic of Moldova @@ -117596,7 +122237,7 @@ Final figure, complete 2016 978 - 32,33 + 35,36 Republic of Moldova @@ -117609,7 +122250,7 @@ Final figure, complete 2016 65096 - 32,33 + 35,36 Republic of Moldova @@ -117622,7 +122263,7 @@ Final figure, complete 2016 63274 - 32,33 + 35,36 Republic of Moldova @@ -117635,7 +122276,7 @@ Final figure, complete 2016 1822 - 32,33 + 35,36 Republic of Moldova @@ -117648,7 +122289,7 @@ Final figure, complete 2016 37980 - 32,33 + 35,36 Republic of Moldova @@ -117661,7 +122302,7 @@ Final figure, complete 2016 35575 - 32,33 + 35,36 Republic of Moldova @@ -117674,7 +122315,7 @@ Final figure, complete 2016 2405 - 32,33 + 35,36 Republic of Moldova @@ -117687,7 +122328,7 @@ Final figure, complete 2016 16502 - 32,33 + 35,36 Republic of Moldova @@ -117700,7 +122341,7 @@ Final figure, complete 2016 14641 - 32,33 + 35,36 Republic of Moldova @@ -117713,7 +122354,7 @@ Final figure, complete 2016 1861 - 32,33 + 35,36 Republic of Moldova @@ -117726,7 +122367,7 @@ Final figure, complete 2016 4277 - 32,33 + 35,36 Republic of Moldova @@ -117739,7 +122380,7 @@ Final figure, complete 2016 3367 - 32,33 + 35,36 Republic of Moldova @@ -117752,7 +122393,7 @@ Final figure, complete 2016 910 - 32,33 + 35,36 Republic of Moldova @@ -117765,7 +122406,7 @@ Final figure, complete 2016 574 - 32,33 + 35,36 Republic of Moldova @@ -117778,7 +122419,7 @@ Final figure, complete 2016 434 - 32,33 + 35,36 Republic of Moldova @@ -117791,7 +122432,7 @@ Final figure, complete 2016 140 - 32,33 + 35,36 Republic of Moldova @@ -117804,7 +122445,7 @@ Final figure, complete 2016 358 - 32,33 + 35,36 Republic of Moldova @@ -117817,7 +122458,7 @@ Final figure, complete 2016 321 - 32,33 + 35,36 Republic of Moldova @@ -117830,7 +122471,7 @@ Final figure, complete 2016 37 - 32,33 + 35,36 Republic of Moldova @@ -117843,7 +122484,7 @@ Final figure, complete 2009 274889 - 34 + 37 Republic of Moldova @@ -117856,7 +122497,7 @@ Final figure, complete 2009 273892 - 34 + 37 Republic of Moldova @@ -117869,7 +122510,7 @@ Final figure, complete 2009 997 - 34 + 37 Republic of Moldova @@ -117882,7 +122523,7 @@ Final figure, complete 2009 3012069 - 34 + 37 Republic of Moldova @@ -117895,7 +122536,7 @@ Final figure, complete 2009 2981602 - 34 + 37 Republic of Moldova @@ -117908,7 +122549,7 @@ Final figure, complete 2009 30025 - 34 + 37 Republic of Moldova @@ -117921,7 +122562,7 @@ Final figure, complete 2009 442 - 34 + 37 Republic of Moldova @@ -117934,7 +122575,7 @@ Final figure, complete 2009 341213 - 34 + 37 Republic of Moldova @@ -117947,7 +122588,7 @@ Final figure, complete 2009 340761 - 34 + 37 Republic of Moldova @@ -117960,7 +122601,7 @@ Final figure, complete 2009 452 - 34 + 37 Republic of Moldova @@ -117973,7 +122614,7 @@ Final figure, complete 2009 297372 - 34 + 37 Republic of Moldova @@ -117986,7 +122627,7 @@ Final figure, complete 2009 297012 - 34 + 37 Republic of Moldova @@ -117999,7 +122640,7 @@ Final figure, complete 2009 360 - 34 + 37 Republic of Moldova @@ -118012,7 +122653,7 @@ Final figure, complete 2009 250698 - 34 + 37 Republic of Moldova @@ -118025,7 +122666,7 @@ Final figure, complete 2009 250445 - 34 + 37 Republic of Moldova @@ -118038,7 +122679,7 @@ Final figure, complete 2009 253 - 34 + 37 Republic of Moldova @@ -118051,7 +122692,7 @@ Final figure, complete 2009 227161 - 34 + 37 Republic of Moldova @@ -118064,7 +122705,7 @@ Final figure, complete 2009 226957 - 34 + 37 Republic of Moldova @@ -118077,7 +122718,7 @@ Final figure, complete 2009 204 - 34 + 37 Republic of Moldova @@ -118090,7 +122731,7 @@ Final figure, complete 2009 217048 - 34 + 37 Republic of Moldova @@ -118103,7 +122744,7 @@ Final figure, complete 2009 216859 - 34 + 37 Republic of Moldova @@ -118116,7 +122757,7 @@ Final figure, complete 2009 189 - 34 + 37 Republic of Moldova @@ -118129,7 +122770,7 @@ Final figure, complete 2009 261304 - 34 + 37 Republic of Moldova @@ -118142,7 +122783,7 @@ Final figure, complete 2009 261115 - 34 + 37 Republic of Moldova @@ -118155,7 +122796,7 @@ Final figure, complete 2009 189 - 34 + 37 Republic of Moldova @@ -118168,7 +122809,7 @@ Final figure, complete 2009 262734 - 34 + 37 Republic of Moldova @@ -118181,7 +122822,7 @@ Final figure, complete 2009 262584 - 34 + 37 Republic of Moldova @@ -118194,7 +122835,7 @@ Final figure, complete 2009 150 - 34 + 37 Republic of Moldova @@ -118207,7 +122848,7 @@ Final figure, complete 2009 238785 - 34 + 37 Republic of Moldova @@ -118220,7 +122861,7 @@ Final figure, complete 2009 238666 - 34 + 37 Republic of Moldova @@ -118233,7 +122874,7 @@ Final figure, complete 2009 119 - 34 + 37 Republic of Moldova @@ -118246,7 +122887,7 @@ Final figure, complete 2009 144434 - 34 + 37 Republic of Moldova @@ -118259,7 +122900,7 @@ Final figure, complete 2009 144371 - 34 + 37 Republic of Moldova @@ -118272,7 +122913,7 @@ Final figure, complete 2009 63 - 34 + 37 Republic of Moldova @@ -118285,7 +122926,7 @@ Final figure, complete 2009 133577 - 34 + 37 Republic of Moldova @@ -118298,7 +122939,7 @@ Final figure, complete 2009 133517 - 34 + 37 Republic of Moldova @@ -118311,7 +122952,7 @@ Final figure, complete 2009 60 - 34 + 37 Republic of Moldova @@ -118324,7 +122965,7 @@ Final figure, complete 2009 126627 - 34 + 37 Republic of Moldova @@ -118337,7 +122978,7 @@ Final figure, complete 2009 124035 - 34 + 37 Republic of Moldova @@ -118350,7 +122991,7 @@ Final figure, complete 2009 2592 - 34 + 37 Republic of Moldova @@ -118363,7 +123004,7 @@ Final figure, complete 2009 224690 - 34 + 37 Republic of Moldova @@ -118376,7 +123017,7 @@ Final figure, complete 2009 200345 - 34 + 37 Republic of Moldova @@ -118389,7 +123030,7 @@ Final figure, complete 2009 24345 - 34 + 37 Republic of Moldova @@ -118402,7 +123043,7 @@ Final figure, complete 2009 11537 - 34 + 37 Republic of Moldova @@ -118415,7 +123056,7 @@ Final figure, complete 2009 11043 - 34 + 37 Republic of Moldova @@ -118428,7 +123069,7 @@ Final figure, complete 2009 52 - 34 + 37 Republic of Moldova @@ -118441,7 +123082,7 @@ Final figure, complete 2009 442 - 34 + 37 Romania @@ -118454,7 +123095,7 @@ Final figure, complete 2014 1090226 - 13 + 16 Romania @@ -118467,7 +123108,7 @@ Final figure, complete 2014 1081161 - 13 + 16 Romania @@ -118480,7 +123121,7 @@ Final figure, complete 2014 9065 - 13,35 + 16,38 Romania @@ -118493,7 +123134,7 @@ Final figure, complete 2014 18022221 - 13 + 16 Romania @@ -118506,7 +123147,7 @@ Final figure, complete 2014 17776834 - 13 + 16 Romania @@ -118519,7 +123160,7 @@ Final figure, complete 2014 245387 - 13,35 + 16,38 Romania @@ -118532,7 +123173,7 @@ Final figure, complete 2014 1108453 - 13 + 16 Romania @@ -118545,7 +123186,7 @@ Final figure, complete 2014 1100469 - 13 + 16 Romania @@ -118558,7 +123199,7 @@ Final figure, complete 2014 7984 - 13,35 + 16,38 Romania @@ -118571,7 +123212,7 @@ Final figure, complete 2014 1366374 - 13 + 16 Romania @@ -118584,7 +123225,7 @@ Final figure, complete 2014 1349503 - 13 + 16 Romania @@ -118597,7 +123238,7 @@ Final figure, complete 2014 16871 - 13,35 + 16,38 Romania @@ -118610,7 +123251,7 @@ Final figure, complete 2014 1303077 - 13 + 16 Romania @@ -118623,7 +123264,7 @@ Final figure, complete 2014 1282999 - 13 + 16 Romania @@ -118636,7 +123277,7 @@ Final figure, complete 2014 20078 - 13,35 + 16,38 Romania @@ -118649,7 +123290,7 @@ Final figure, complete 2014 1522719 - 13 + 16 Romania @@ -118662,7 +123303,7 @@ Final figure, complete 2014 1502121 - 13 + 16 Romania @@ -118675,7 +123316,7 @@ Final figure, complete 2014 20598 - 13,35 + 16,38 Romania @@ -118688,7 +123329,7 @@ Final figure, complete 2014 1538897 - 13 + 16 Romania @@ -118701,7 +123342,7 @@ Final figure, complete 2014 1523525 - 13 + 16 Romania @@ -118714,7 +123355,7 @@ Final figure, complete 2014 15372 - 13,35 + 16,38 Romania @@ -118727,7 +123368,7 @@ Final figure, complete 2014 1743878 - 13 + 16 Romania @@ -118740,7 +123381,7 @@ Final figure, complete 2014 1731609 - 13 + 16 Romania @@ -118753,7 +123394,7 @@ Final figure, complete 2014 12269 - 13,35 + 16,38 Romania @@ -118766,7 +123407,7 @@ Final figure, complete 2014 1076258 - 13 + 16 Romania @@ -118779,7 +123420,7 @@ Final figure, complete 2014 1067434 - 13 + 16 Romania @@ -118792,7 +123433,7 @@ Final figure, complete 2014 8824 - 13,35 + 16,38 Romania @@ -118805,7 +123446,7 @@ Final figure, complete 2014 1332266 - 13 + 16 Romania @@ -118818,7 +123459,7 @@ Final figure, complete 2014 1321813 - 13 + 16 Romania @@ -118831,7 +123472,7 @@ Final figure, complete 2014 10453 - 13,35 + 16,38 Romania @@ -118844,7 +123485,7 @@ Final figure, complete 2014 1448043 - 13 + 16 Romania @@ -118857,7 +123498,7 @@ Final figure, complete 2014 1437846 - 13 + 16 Romania @@ -118870,7 +123511,7 @@ Final figure, complete 2014 10197 - 13,35 + 16,38 Romania @@ -118883,7 +123524,7 @@ Final figure, complete 2014 1244286 - 13 + 16 Romania @@ -118896,7 +123537,7 @@ Final figure, complete 2014 1234840 - 13 + 16 Romania @@ -118909,7 +123550,7 @@ Final figure, complete 2014 9446 - 13,35 + 16,38 Romania @@ -118922,7 +123563,7 @@ Final figure, complete 2014 890340 - 13 + 16 Romania @@ -118935,7 +123576,7 @@ Final figure, complete 2014 880355 - 13 + 16 Romania @@ -118948,7 +123589,7 @@ Final figure, complete 2014 9985 - 13,35 + 16,38 Romania @@ -118961,7 +123602,7 @@ Final figure, complete 2014 901370 - 13 + 16 Romania @@ -118974,7 +123615,7 @@ Final figure, complete 2014 880510 - 13 + 16 Romania @@ -118987,7 +123628,7 @@ Final figure, complete 2014 20860 - 13,35 + 16,38 Romania @@ -119000,7 +123641,7 @@ Final figure, complete 2014 1456034 - 13 + 16 Romania @@ -119013,7 +123654,7 @@ Final figure, complete 2014 1382649 - 13 + 16 Romania @@ -119026,7 +123667,7 @@ Final figure, complete 2014 73385 - 13,35 + 16,38 Romania @@ -122718,7 +127359,7 @@ Final figure, complete 2012 431 - 36 + 39 Saint Helena ex. dep. @@ -122731,7 +127372,7 @@ Final figure, complete 2012 424 - 36 + 39 Saint Helena ex. dep. @@ -122744,7 +127385,7 @@ Final figure, complete 2012 7 - 36 + 39 Saint Helena ex. dep. @@ -122757,7 +127398,7 @@ Final figure, complete 2012 0 - 36 + 39 Saint Helena ex. dep. @@ -122770,7 +127411,7 @@ Final figure, complete 2012 3527 - 36 + 39 Saint Helena ex. dep. @@ -122783,7 +127424,7 @@ Final figure, complete 2012 3333 - 36 + 39 Saint Helena ex. dep. @@ -122796,7 +127437,7 @@ Final figure, complete 2012 186 - 36 + 39 Saint Helena ex. dep. @@ -122809,7 +127450,7 @@ Final figure, complete 2012 8 - 36 + 39 Saint Helena ex. dep. @@ -122822,7 +127463,7 @@ Final figure, complete 2012 317 - 36 + 39 Saint Helena ex. dep. @@ -122835,7 +127476,7 @@ Final figure, complete 2012 279 - 36 + 39 Saint Helena ex. dep. @@ -122848,7 +127489,7 @@ Final figure, complete 2012 38 - 36 + 39 Saint Helena ex. dep. @@ -122861,7 +127502,7 @@ Final figure, complete 2012 0 - 36 + 39 Saint Helena ex. dep. @@ -122874,7 +127515,7 @@ Final figure, complete 2012 466 - 36 + 39 Saint Helena ex. dep. @@ -122887,7 +127528,7 @@ Final figure, complete 2012 418 - 36 + 39 Saint Helena ex. dep. @@ -122900,7 +127541,7 @@ Final figure, complete 2012 48 - 36 + 39 Saint Helena ex. dep. @@ -122913,7 +127554,7 @@ Final figure, complete 2012 0 - 36 + 39 Saint Helena ex. dep. @@ -122926,7 +127567,7 @@ Final figure, complete 2012 664 - 36 + 39 Saint Helena ex. dep. @@ -122939,7 +127580,7 @@ Final figure, complete 2012 633 - 36 + 39 Saint Helena ex. dep. @@ -122952,7 +127593,7 @@ Final figure, complete 2012 31 - 36 + 39 Saint Helena ex. dep. @@ -122965,7 +127606,7 @@ Final figure, complete 2012 0 - 36 + 39 Saint Helena ex. dep. @@ -122978,7 +127619,7 @@ Final figure, complete 2012 614 - 36 + 39 Saint Helena ex. dep. @@ -122991,7 +127632,7 @@ Final figure, complete 2012 586 - 36 + 39 Saint Helena ex. dep. @@ -123004,7 +127645,7 @@ Final figure, complete 2012 28 - 36 + 39 Saint Helena ex. dep. @@ -123017,7 +127658,7 @@ Final figure, complete 2012 0 - 36 + 39 Saint Helena ex. dep. @@ -123030,7 +127671,7 @@ Final figure, complete 2012 1034 - 36 + 39 Saint Helena ex. dep. @@ -123043,7 +127684,7 @@ Final figure, complete 2012 992 - 36 + 39 Saint Helena ex. dep. @@ -123056,7 +127697,7 @@ Final figure, complete 2012 34 - 36 + 39 Saint Helena ex. dep. @@ -123069,7 +127710,7 @@ Final figure, complete 2012 8 - 36 + 39 Saint Helena ex. dep. @@ -123082,7 +127723,7 @@ Final figure, complete 2012 1 - 36 + 39 Saint Helena ex. dep. @@ -123095,7 +127736,7 @@ Final figure, complete 2012 1 - 36 + 39 Saint Helena ex. dep. @@ -123108,7 +127749,7 @@ Final figure, complete 2012 0 - 36 + 39 Saint Helena ex. dep. @@ -123121,7 +127762,7 @@ Final figure, complete 2012 0 - 36 + 39 Saint Helena ex. dep. @@ -127970,7 +132611,7 @@ Final figure, complete 2013 346869 - 37 + 40 Serbia @@ -127983,7 +132624,7 @@ Final figure, complete 2013 344954 - 37 + 40 Serbia @@ -127996,7 +132637,7 @@ Final figure, complete 2013 1915 - 37 + 40 Serbia @@ -128009,7 +132650,7 @@ Final figure, complete 2013 6508453 - 37 + 40 Serbia @@ -128022,7 +132663,7 @@ Final figure, complete 2013 6380990 - 37 + 40 Serbia @@ -128035,7 +132676,7 @@ Final figure, complete 2013 127463 - 37 + 40 Serbia @@ -128048,7 +132689,7 @@ Final figure, complete 2013 401994 - 37 + 40 Serbia @@ -128061,7 +132702,7 @@ Final figure, complete 2013 399399 - 37 + 40 Serbia @@ -128074,7 +132715,7 @@ Final figure, complete 2013 2595 - 37 + 40 Serbia @@ -128087,7 +132728,7 @@ Final figure, complete 2013 439741 - 37 + 40 Serbia @@ -128100,7 +132741,7 @@ Final figure, complete 2013 436517 - 37 + 40 Serbia @@ -128113,7 +132754,7 @@ Final figure, complete 2013 3224 - 37 + 40 Serbia @@ -128126,7 +132767,7 @@ Final figure, complete 2013 480286 - 37 + 40 Serbia @@ -128139,7 +132780,7 @@ Final figure, complete 2013 476882 - 37 + 40 Serbia @@ -128152,7 +132793,7 @@ Final figure, complete 2013 3404 - 37 + 40 Serbia @@ -128165,7 +132806,7 @@ Final figure, complete 2013 496362 - 37 + 40 Serbia @@ -128178,7 +132819,7 @@ Final figure, complete 2013 493174 - 37 + 40 Serbia @@ -128191,7 +132832,7 @@ Final figure, complete 2013 3188 - 37 + 40 Serbia @@ -128204,7 +132845,7 @@ Final figure, complete 2013 493934 - 37 + 40 Serbia @@ -128217,7 +132858,7 @@ Final figure, complete 2013 491137 - 37 + 40 Serbia @@ -128230,7 +132871,7 @@ Final figure, complete 2013 2797 - 37 + 40 Serbia @@ -128243,7 +132884,7 @@ Final figure, complete 2013 469928 - 37 + 40 Serbia @@ -128256,7 +132897,7 @@ Final figure, complete 2013 467044 - 37 + 40 Serbia @@ -128269,7 +132910,7 @@ Final figure, complete 2013 2884 - 37 + 40 Serbia @@ -128282,7 +132923,7 @@ Final figure, complete 2013 483986 - 37 + 40 Serbia @@ -128295,7 +132936,7 @@ Final figure, complete 2013 480728 - 37 + 40 Serbia @@ -128308,7 +132949,7 @@ Final figure, complete 2013 3258 - 37 + 40 Serbia @@ -128321,7 +132962,7 @@ Final figure, complete 2013 520344 - 37 + 40 Serbia @@ -128334,7 +132975,7 @@ Final figure, complete 2013 516223 - 37 + 40 Serbia @@ -128347,7 +132988,7 @@ Final figure, complete 2013 4121 - 37 + 40 Serbia @@ -128360,7 +133001,7 @@ Final figure, complete 2013 596279 - 37 + 40 Serbia @@ -128373,7 +133014,7 @@ Final figure, complete 2013 591261 - 37 + 40 Serbia @@ -128386,7 +133027,7 @@ Final figure, complete 2013 5018 - 37 + 40 Serbia @@ -128399,7 +133040,7 @@ Final figure, complete 2013 528414 - 37 + 40 Serbia @@ -128412,7 +133053,7 @@ Final figure, complete 2013 523242 - 37 + 40 Serbia @@ -128425,7 +133066,7 @@ Final figure, complete 2013 5172 - 37 + 40 Serbia @@ -128438,7 +133079,7 @@ Final figure, complete 2013 339444 - 37 + 40 Serbia @@ -128451,7 +133092,7 @@ Final figure, complete 2013 333062 - 37 + 40 Serbia @@ -128464,7 +133105,7 @@ Final figure, complete 2013 6382 - 37 + 40 Serbia @@ -128477,7 +133118,7 @@ Final figure, complete 2013 354142 - 37 + 40 Serbia @@ -128490,7 +133131,7 @@ Final figure, complete 2013 341130 - 37 + 40 Serbia @@ -128503,7 +133144,7 @@ Final figure, complete 2013 13012 - 37 + 40 Serbia @@ -128516,7 +133157,7 @@ Final figure, complete 2013 298612 - 37 + 40 Serbia @@ -128529,7 +133170,7 @@ Final figure, complete 2013 267793 - 37 + 40 Serbia @@ -128542,7 +133183,7 @@ Final figure, complete 2013 30819 - 37 + 40 Serbia @@ -128555,7 +133196,7 @@ Final figure, complete 2013 176568 - 37 + 40 Serbia @@ -128568,7 +133209,7 @@ Final figure, complete 2013 151258 - 37 + 40 Serbia @@ -128581,7 +133222,7 @@ Final figure, complete 2013 25310 - 37 + 40 Serbia @@ -128594,7 +133235,7 @@ Final figure, complete 2013 67233 - 37 + 40 Serbia @@ -128607,7 +133248,7 @@ Final figure, complete 2013 55972 - 37 + 40 Serbia @@ -128620,7 +133261,7 @@ Final figure, complete 2013 11261 - 37 + 40 Serbia @@ -128633,7 +133274,7 @@ Final figure, complete 2013 12689 - 37 + 40 Serbia @@ -128646,7 +133287,7 @@ Final figure, complete 2013 10004 - 37 + 40 Serbia @@ -128659,7 +133300,7 @@ Final figure, complete 2013 2685 - 37 + 40 Serbia @@ -128672,7 +133313,7 @@ Final figure, complete 2013 1461 - 37 + 40 Serbia @@ -128685,7 +133326,7 @@ Final figure, complete 2013 1103 - 37 + 40 Serbia @@ -128698,7 +133339,7 @@ Final figure, complete 2013 358 - 37 + 40 Serbia @@ -128711,7 +133352,7 @@ Final figure, complete 2013 167 - 37 + 40 Serbia @@ -128724,7 +133365,7 @@ Final figure, complete 2013 107 - 37 + 40 Serbia @@ -128737,7 +133378,7 @@ Final figure, complete 2013 60 - 37 + 40 Serbia @@ -128750,7 +133391,7 @@ Final figure, complete 2003 439830 - 37 + 40 Serbia @@ -128763,7 +133404,7 @@ Final figure, complete 2003 436807 - 37 + 40 Serbia @@ -128776,7 +133417,7 @@ Final figure, complete 2003 3023 - 37 + 40 Serbia @@ -128789,7 +133430,7 @@ Final figure, complete 2003 6761061 - 37 + 40 Serbia @@ -128802,7 +133443,7 @@ Final figure, complete 2003 6528136 - 37 + 40 Serbia @@ -128815,7 +133456,7 @@ Final figure, complete 2003 232925 - 37 + 40 Serbia @@ -128828,7 +133469,7 @@ Final figure, complete 2003 495651 - 37 + 40 Serbia @@ -128841,7 +133482,7 @@ Final figure, complete 2003 492313 - 37 + 40 Serbia @@ -128854,7 +133495,7 @@ Final figure, complete 2003 3338 - 37 + 40 Serbia @@ -128867,7 +133508,7 @@ Final figure, complete 2003 512429 - 37 + 40 Serbia @@ -128880,7 +133521,7 @@ Final figure, complete 2003 509283 - 37 + 40 Serbia @@ -128893,7 +133534,7 @@ Final figure, complete 2003 3146 - 37 + 40 Serbia @@ -128906,7 +133547,7 @@ Final figure, complete 2003 504566 - 37 + 40 Serbia @@ -128919,7 +133560,7 @@ Final figure, complete 2003 501744 - 37 + 40 Serbia @@ -128932,7 +133573,7 @@ Final figure, complete 2003 2822 - 37 + 40 Serbia @@ -128945,7 +133586,7 @@ Final figure, complete 2003 476447 - 37 + 40 Serbia @@ -128958,7 +133599,7 @@ Final figure, complete 2003 473582 - 37 + 40 Serbia @@ -128971,7 +133612,7 @@ Final figure, complete 2003 2865 - 37 + 40 Serbia @@ -128984,7 +133625,7 @@ Final figure, complete 2003 486009 - 37 + 40 Serbia @@ -128997,7 +133638,7 @@ Final figure, complete 2003 482722 - 37 + 40 Serbia @@ -129010,7 +133651,7 @@ Final figure, complete 2003 3287 - 37 + 40 Serbia @@ -129023,7 +133664,7 @@ Final figure, complete 2003 531828 - 37 + 40 Serbia @@ -129036,7 +133677,7 @@ Final figure, complete 2003 527546 - 37 + 40 Serbia @@ -129049,7 +133690,7 @@ Final figure, complete 2003 4282 - 37 + 40 Serbia @@ -129062,7 +133703,7 @@ Final figure, complete 2003 621553 - 37 + 40 Serbia @@ -129075,7 +133716,7 @@ Final figure, complete 2003 616072 - 37 + 40 Serbia @@ -129088,7 +133729,7 @@ Final figure, complete 2003 5481 - 37 + 40 Serbia @@ -129101,7 +133742,7 @@ Final figure, complete 2003 571353 - 37 + 40 Serbia @@ -129114,7 +133755,7 @@ Final figure, complete 2003 565634 - 37 + 40 Serbia @@ -129127,7 +133768,7 @@ Final figure, complete 2003 5719 - 37 + 40 Serbia @@ -129140,7 +133781,7 @@ Final figure, complete 2003 389185 - 37 + 40 Serbia @@ -129153,7 +133794,7 @@ Final figure, complete 2003 382082 - 37 + 40 Serbia @@ -129166,7 +133807,7 @@ Final figure, complete 2003 7103 - 37 + 40 Serbia @@ -129179,7 +133820,7 @@ Final figure, complete 2003 443784 - 37 + 40 Serbia @@ -129192,7 +133833,7 @@ Final figure, complete 2003 428553 - 37 + 40 Serbia @@ -129205,7 +133846,7 @@ Final figure, complete 2003 15231 - 37 + 40 Serbia @@ -129218,7 +133859,7 @@ Final figure, complete 2003 460406 - 37 + 40 Serbia @@ -129231,7 +133872,7 @@ Final figure, complete 2003 417793 - 37 + 40 Serbia @@ -129244,7 +133885,7 @@ Final figure, complete 2003 42613 - 37 + 40 Serbia @@ -129257,7 +133898,7 @@ Final figure, complete 2003 387284 - 37 + 40 Serbia @@ -129270,7 +133911,7 @@ Final figure, complete 2003 334635 - 37 + 40 Serbia @@ -129283,7 +133924,7 @@ Final figure, complete 2003 52649 - 37 + 40 Serbia @@ -129296,7 +133937,7 @@ Final figure, complete 2003 247338 - 37 + 40 Serbia @@ -129309,7 +133950,7 @@ Final figure, complete 2003 205818 - 37 + 40 Serbia @@ -129322,7 +133963,7 @@ Final figure, complete 2003 41520 - 37 + 40 Serbia @@ -129335,7 +133976,7 @@ Final figure, complete 2003 100678 - 37 + 40 Serbia @@ -129348,7 +133989,7 @@ Final figure, complete 2003 78232 - 37 + 40 Serbia @@ -129361,7 +134002,7 @@ Final figure, complete 2003 22446 - 37 + 40 Serbia @@ -129374,7 +134015,7 @@ Final figure, complete 2003 30934 - 37 + 40 Serbia @@ -129387,7 +134028,7 @@ Final figure, complete 2003 22321 - 37 + 40 Serbia @@ -129400,7 +134041,7 @@ Final figure, complete 2003 8613 - 37 + 40 Serbia @@ -129413,7 +134054,7 @@ Final figure, complete 2003 11746 - 37 + 40 Serbia @@ -129426,7 +134067,7 @@ Final figure, complete 2003 7690 - 37 + 40 Serbia @@ -129439,7 +134080,7 @@ Final figure, complete 2003 4056 - 37 + 40 Serbia @@ -129452,7 +134093,7 @@ Final figure, complete 2003 1711 - 37 + 40 Serbia @@ -129465,7 +134106,7 @@ Final figure, complete 2003 960 - 37 + 40 Serbia @@ -129478,7 +134119,7 @@ Final figure, complete 2003 751 - 37 + 40 Serbia @@ -129491,7 +134132,7 @@ Final figure, complete 2003 408 - 37 + 40 Serbia @@ -129504,7 +134145,7 @@ Final figure, complete 2003 318 - 37 + 40 Serbia @@ -129517,7 +134158,7 @@ Final figure, complete 2003 90 - 37 + 40 Serbia @@ -129530,7 +134171,7 @@ Final figure, complete 2003 47921 - 37 + 40 Serbia @@ -129543,7 +134184,7 @@ Final figure, complete 2003 44031 - 37 + 40 Serbia @@ -129556,7 +134197,7 @@ Final figure, complete 2003 3890 - 37 + 40 Seychelles @@ -130297,7 +134938,7 @@ Final figure, complete 2007 65056 - 38 + 41 Seychelles @@ -131792,7 +136433,7 @@ Final figure, complete 2021 458811 - 39,40 + 42,43 Singapore @@ -131805,7 +136446,7 @@ Final figure, complete 2021 457555 - 39,40 + 42,43 Singapore @@ -131818,7 +136459,7 @@ Final figure, complete 2021 1256 - 39,40 + 42,43 Singapore @@ -131831,7 +136472,7 @@ Final figure, complete 2021 3459093 - 39,40 + 42,43 Singapore @@ -131844,7 +136485,7 @@ Final figure, complete 2021 3359881 - 39,40 + 42,43 Singapore @@ -131857,7 +136498,7 @@ Final figure, complete 2021 99212 - 39,40 + 42,43 Singapore @@ -131870,7 +136511,7 @@ Final figure, complete 2021 585602 - 39,40 + 42,43 Singapore @@ -131883,7 +136524,7 @@ Final figure, complete 2021 583918 - 39,40 + 42,43 Singapore @@ -131896,7 +136537,7 @@ Final figure, complete 2021 1684 - 39,40 + 42,43 Singapore @@ -131909,7 +136550,7 @@ Final figure, complete 2021 597228 - 39,40 + 42,43 Singapore @@ -131922,7 +136563,7 @@ Final figure, complete 2021 595343 - 39,40 + 42,43 Singapore @@ -131935,7 +136576,7 @@ Final figure, complete 2021 1885 - 39,40 + 42,43 Singapore @@ -131948,7 +136589,7 @@ Final figure, complete 2021 606077 - 39,40 + 42,43 Singapore @@ -131961,7 +136602,7 @@ Final figure, complete 2021 600656 - 39,40 + 42,43 Singapore @@ -131974,7 +136615,7 @@ Final figure, complete 2021 5421 - 39,40 + 42,43 Singapore @@ -131987,7 +136628,7 @@ Final figure, complete 2021 592375 - 39,40 + 42,43 Singapore @@ -132000,7 +136641,7 @@ Final figure, complete 2021 577078 - 39,40 + 42,43 Singapore @@ -132013,7 +136654,7 @@ Final figure, complete 2021 15296 - 39,40 + 42,43 Singapore @@ -132026,7 +136667,7 @@ Final figure, complete 2021 402983 - 39,40 + 42,43 Singapore @@ -132039,7 +136680,7 @@ Final figure, complete 2021 378707 - 39,40 + 42,43 Singapore @@ -132052,7 +136693,7 @@ Final figure, complete 2021 24277 - 39,40 + 42,43 Singapore @@ -132065,7 +136706,7 @@ Final figure, complete 2021 159780 - 39,40 + 42,43 Singapore @@ -132078,7 +136719,7 @@ Final figure, complete 2021 131051 - 39,40 + 42,43 Singapore @@ -132091,7 +136732,7 @@ Final figure, complete 2021 28729 - 39,40 + 42,43 Singapore @@ -132104,7 +136745,7 @@ Final figure, complete 2021 56238 - 39,40 + 42,43 Singapore @@ -132117,7 +136758,7 @@ Final figure, complete 2021 35573 - 39,40 + 42,43 Singapore @@ -132130,7 +136771,7 @@ Final figure, complete 2021 20665 - 39,40 + 42,43 Singapore @@ -132143,7 +136784,7 @@ Final figure, complete 2011 513346 - 40,41 + 43,44 Singapore @@ -132156,7 +136797,7 @@ Final figure, complete 2011 512073 - 40,41 + 43,44 Singapore @@ -132169,7 +136810,7 @@ Final figure, complete 2011 1273 - 40,41 + 43,44 Singapore @@ -132182,7 +136823,7 @@ Final figure, complete 2011 0 - 40,41 + 43,44 Singapore @@ -132195,7 +136836,7 @@ Final figure, complete 2011 3105748 - 40,41 + 43,44 Singapore @@ -132208,7 +136849,7 @@ Final figure, complete 2011 2977088 - 40,41 + 43,44 Singapore @@ -132221,7 +136862,7 @@ Final figure, complete 2011 128661 - 40,41 + 43,44 Singapore @@ -132234,7 +136875,7 @@ Final figure, complete 2011 0 - 40,41 + 43,44 Singapore @@ -132247,7 +136888,7 @@ Final figure, complete 2011 553118 - 40,41 + 43,44 Singapore @@ -132260,7 +136901,7 @@ Final figure, complete 2011 551363 - 40,41 + 43,44 Singapore @@ -132273,7 +136914,7 @@ Final figure, complete 2011 1755 - 40,41 + 43,44 Singapore @@ -132286,7 +136927,7 @@ Final figure, complete 2011 0 - 40,41 + 43,44 Singapore @@ -132299,7 +136940,7 @@ Final figure, complete 2011 622228 - 40,41 + 43,44 Singapore @@ -132312,7 +136953,7 @@ Final figure, complete 2011 617778 - 40,41 + 43,44 Singapore @@ -132325,7 +136966,7 @@ Final figure, complete 2011 4450 - 40,41 + 43,44 Singapore @@ -132338,7 +136979,7 @@ Final figure, complete 2011 0 - 40,41 + 43,44 Singapore @@ -132351,7 +136992,7 @@ Final figure, complete 2011 623643 - 40,41 + 43,44 Singapore @@ -132364,7 +137005,7 @@ Final figure, complete 2011 609553 - 40,41 + 43,44 Singapore @@ -132377,7 +137018,7 @@ Final figure, complete 2011 14091 - 40,41 + 43,44 Singapore @@ -132390,7 +137031,7 @@ Final figure, complete 2011 0 - 40,41 + 43,44 Singapore @@ -132403,7 +137044,7 @@ Final figure, complete 2011 449345 - 40,41 + 43,44 Singapore @@ -132416,7 +137057,7 @@ Final figure, complete 2011 425782 - 40,41 + 43,44 Singapore @@ -132429,7 +137070,7 @@ Final figure, complete 2011 23563 - 40,41 + 43,44 Singapore @@ -132442,7 +137083,7 @@ Final figure, complete 2011 0 - 40,41 + 43,44 Singapore @@ -132455,7 +137096,7 @@ Final figure, complete 2011 208943 - 40,41 + 43,44 Singapore @@ -132468,7 +137109,7 @@ Final figure, complete 2011 174844 - 40,41 + 43,44 Singapore @@ -132481,7 +137122,7 @@ Final figure, complete 2011 34098 - 40,41 + 43,44 Singapore @@ -132494,7 +137135,7 @@ Final figure, complete 2011 0 - 40,41 + 43,44 Singapore @@ -132507,7 +137148,7 @@ Final figure, complete 2011 107055 - 40,41 + 43,44 Singapore @@ -132520,7 +137161,7 @@ Final figure, complete 2011 70782 - 40,41 + 43,44 Singapore @@ -132533,7 +137174,7 @@ Final figure, complete 2011 36273 - 40,41 + 43,44 Singapore @@ -132546,7 +137187,7 @@ Final figure, complete 2011 0 - 40,41 + 43,44 Singapore @@ -132559,7 +137200,7 @@ Final figure, complete 2011 28071 - 40,41 + 43,44 Singapore @@ -132572,7 +137213,7 @@ Final figure, complete 2011 14914 - 40,41 + 43,44 Singapore @@ -132585,7 +137226,7 @@ Final figure, complete 2011 13158 - 40,41 + 43,44 Singapore @@ -132598,7 +137239,7 @@ Final figure, complete 2011 0 - 40,41 + 43,44 Singapore @@ -132884,7 +137525,7 @@ Final figure, complete 2009 399012 - 42 + 45 Slovakia @@ -132897,7 +137538,7 @@ Final figure, complete 2009 399012 - 42 + 45 Slovakia @@ -132910,7 +137551,7 @@ Final figure, complete 2009 4715450 - 42 + 45 Slovakia @@ -132923,7 +137564,7 @@ Final figure, complete 2009 4715450 - 42 + 45 Slovakia @@ -132936,7 +137577,7 @@ Final figure, complete 2009 440003 - 42 + 45 Slovakia @@ -132949,7 +137590,7 @@ Final figure, complete 2009 440003 - 42 + 45 Slovakia @@ -132962,7 +137603,7 @@ Final figure, complete 2009 466328 - 42 + 45 Slovakia @@ -132975,7 +137616,7 @@ Final figure, complete 2009 466328 - 42 + 45 Slovakia @@ -132988,7 +137629,7 @@ Final figure, complete 2009 432649 - 42 + 45 Slovakia @@ -133001,7 +137642,7 @@ Final figure, complete 2009 432649 - 42 + 45 Slovakia @@ -133014,7 +137655,7 @@ Final figure, complete 2009 359200 - 42 + 45 Slovakia @@ -133027,7 +137668,7 @@ Final figure, complete 2009 359200 - 42 + 45 Slovakia @@ -133040,7 +137681,7 @@ Final figure, complete 2009 380054 - 42 + 45 Slovakia @@ -133053,7 +137694,7 @@ Final figure, complete 2009 380054 - 42 + 45 Slovakia @@ -133066,7 +137707,7 @@ Final figure, complete 2009 398966 - 42 + 45 Slovakia @@ -133079,7 +137720,7 @@ Final figure, complete 2009 398966 - 42 + 45 Slovakia @@ -133092,7 +137733,7 @@ Final figure, complete 2009 410780 - 42 + 45 Slovakia @@ -133105,7 +137746,7 @@ Final figure, complete 2009 410780 - 42 + 45 Slovakia @@ -133118,7 +137759,7 @@ Final figure, complete 2009 343768 - 42 + 45 Slovakia @@ -133131,7 +137772,7 @@ Final figure, complete 2009 343768 - 42 + 45 Slovakia @@ -133144,7 +137785,7 @@ Final figure, complete 2009 255423 - 42 + 45 Slovakia @@ -133157,7 +137798,7 @@ Final figure, complete 2009 255423 - 42 + 45 Slovakia @@ -133170,7 +137811,7 @@ Final figure, complete 2009 218344 - 42 + 45 Slovakia @@ -133183,7 +137824,7 @@ Final figure, complete 2009 218344 - 42 + 45 Slovakia @@ -133196,7 +137837,7 @@ Final figure, complete 2009 197491 - 42 + 45 Slovakia @@ -133209,7 +137850,7 @@ Final figure, complete 2009 197491 - 42 + 45 Slovakia @@ -133222,7 +137863,7 @@ Final figure, complete 2009 175488 - 42 + 45 Slovakia @@ -133235,7 +137876,7 @@ Final figure, complete 2009 175488 - 42 + 45 Slovakia @@ -133248,7 +137889,7 @@ Final figure, complete 2009 135913 - 42 + 45 Slovakia @@ -133261,7 +137902,7 @@ Final figure, complete 2009 135913 - 42 + 45 Slovakia @@ -133274,7 +137915,7 @@ Final figure, complete 2002 237944 - 42 + 45 Slovakia @@ -133287,7 +137928,7 @@ Final figure, complete 2002 237944 - 42 + 45 Slovakia @@ -133300,7 +137941,7 @@ Final figure, complete 2009 57718 - 42 + 45 Slovakia @@ -133313,7 +137954,7 @@ Final figure, complete 2009 57718 - 42 + 45 Slovakia @@ -133326,7 +137967,7 @@ Final figure, complete 2009 31757 - 42 + 45 Slovakia @@ -133339,7 +137980,7 @@ Final figure, complete 2009 31757 - 42 + 45 Slovakia @@ -133352,7 +137993,7 @@ Final figure, complete 2009 10537 - 42 + 45 Slovakia @@ -133365,7 +138006,7 @@ Final figure, complete 2009 10537 - 42 + 45 Slovakia @@ -133378,7 +138019,7 @@ Final figure, complete 2009 1811 - 42 + 45 Slovakia @@ -133391,7 +138032,7 @@ Final figure, complete 2009 1811 - 42 + 45 Slovakia @@ -133404,7 +138045,7 @@ Final figure, complete 2009 208 - 42 + 45 Slovakia @@ -133417,7 +138058,7 @@ Final figure, complete 2009 208 - 42 + 45 Slovakia @@ -133430,7 +138071,7 @@ Final figure, complete 2009 47524 - 42 + 45 Slovakia @@ -133443,7 +138084,7 @@ Final figure, complete 2009 47524 - 42 + 45 South Africa @@ -133508,7 +138149,7 @@ Final figure, complete 2000 31471227 - 43 + 46 South Africa @@ -134277,6 +138918,747 @@ 179886 + + Spain + 2021 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2417282 + + + + Spain + 2021 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2410663 + + + + Spain + 2021 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6619 + + + + Spain + 2021 + Total + Both Sexes + 15 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 40686130 + + + + Spain + 2021 + Total + Both Sexes + 15 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 40550076 + + + + Spain + 2021 + Total + Both Sexes + 15 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 136054 + + + + Spain + 2021 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2376512 + + + + Spain + 2021 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2370028 + + + + Spain + 2021 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6484 + + + + Spain + 2021 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2539851 + + + + Spain + 2021 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2536201 + + + + Spain + 2021 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3650 + + + + Spain + 2021 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2781659 + + + + Spain + 2021 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2778876 + + + + Spain + 2021 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2783 + + + + Spain + 2021 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3249877 + + + + Spain + 2021 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3246929 + + + + Spain + 2021 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2948 + + + + Spain + 2021 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3925856 + + + + Spain + 2021 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3922695 + + + + Spain + 2021 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3161 + + + + Spain + 2021 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3948606 + + + + Spain + 2021 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3944961 + + + + Spain + 2021 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3645 + + + + Spain + 2021 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3702259 + + + + Spain + 2021 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3697886 + + + + Spain + 2021 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4373 + + + + Spain + 2021 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3424428 + + + + Spain + 2021 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3419600 + + + + Spain + 2021 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4828 + + + + Spain + 2021 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3008316 + + + + Spain + 2021 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3003079 + + + + Spain + 2021 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 5237 + + + + Spain + 2021 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2481683 + + + + Spain + 2021 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2476119 + + + + Spain + 2021 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 5564 + + + + Spain + 2021 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2203067 + + + + Spain + 2021 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2194979 + + + + Spain + 2021 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 8088 + + + + Spain + 2021 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1769658 + + + + Spain + 2021 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1757664 + + + + Spain + 2021 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 11994 + + + + Spain + 2021 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1295191 + + + + Spain + 2021 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1271530 + + + + Spain + 2021 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 23661 + + + + Spain + 2021 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 990849 + + + + Spain + 2021 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 964457 + + + + Spain + 2021 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 26392 + + + + Spain + 2021 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 445837 + + + + Spain + 2021 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 433006 + + + + Spain + 2021 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 12831 + + + + Spain + 2021 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 112443 + + + + Spain + 2021 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 109139 + + + + Spain + 2021 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3304 + + + + Spain + 2021 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 12756 + + + + Spain + 2021 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 12264 + + + + Spain + 2021 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 492 + + Spain 2011 @@ -135328,7 +140710,7 @@ Final figure, complete 2009 2100711 - 44 + 47 Spain @@ -135341,7 +140723,7 @@ Final figure, complete 2009 2071326 - 44 + 47 Spain @@ -135354,7 +140736,7 @@ Final figure, complete 2009 29385 - 44 + 47 Spain @@ -135367,7 +140749,7 @@ Final figure, complete 2009 36771052 - 44 + 47 Spain @@ -135380,7 +140762,7 @@ Final figure, complete 2009 35871833 - 44 + 47 Spain @@ -135393,7 +140775,7 @@ Final figure, complete 2009 899219 - 44 + 47 Spain @@ -135406,7 +140788,7 @@ Final figure, complete 2009 2460435 - 44 + 47 Spain @@ -135419,7 +140801,7 @@ Final figure, complete 2009 2449102 - 44 + 47 Spain @@ -135432,7 +140814,7 @@ Final figure, complete 2009 11333 - 44 + 47 Spain @@ -135445,7 +140827,7 @@ Final figure, complete 2009 3177556 - 44 + 47 Spain @@ -135458,7 +140840,7 @@ Final figure, complete 2009 3162962 - 44 + 47 Spain @@ -135471,7 +140853,7 @@ Final figure, complete 2009 14594 - 44 + 47 Spain @@ -135484,7 +140866,7 @@ Final figure, complete 2009 3491005 - 44 + 47 Spain @@ -135497,7 +140879,7 @@ Final figure, complete 2009 3470558 - 44 + 47 Spain @@ -135510,7 +140892,7 @@ Final figure, complete 2009 20447 - 44 + 47 Spain @@ -135523,7 +140905,7 @@ Final figure, complete 2009 3369483 - 44 + 47 Spain @@ -135536,7 +140918,7 @@ Final figure, complete 2009 3346830 - 44 + 47 Spain @@ -135549,7 +140931,7 @@ Final figure, complete 2009 22653 - 44 + 47 Spain @@ -135562,7 +140944,7 @@ Final figure, complete 2009 3284570 - 44 + 47 Spain @@ -135575,7 +140957,7 @@ Final figure, complete 2009 3258975 - 44 + 47 Spain @@ -135588,7 +140970,7 @@ Final figure, complete 2009 25595 - 44 + 47 Spain @@ -135601,7 +140983,7 @@ Final figure, complete 2009 3020664 - 44 + 47 Spain @@ -135614,7 +140996,7 @@ Final figure, complete 2009 2993237 - 44 + 47 Spain @@ -135627,7 +141009,7 @@ Final figure, complete 2009 27427 - 44 + 47 Spain @@ -135640,7 +141022,7 @@ Final figure, complete 2009 2602822 - 44 + 47 Spain @@ -135653,7 +141035,7 @@ Final figure, complete 2009 2573780 - 44 + 47 Spain @@ -135666,7 +141048,7 @@ Final figure, complete 2009 29042 - 44 + 47 Spain @@ -135679,7 +141061,7 @@ Final figure, complete 2009 2425768 - 44 + 47 Spain @@ -135692,7 +141074,7 @@ Final figure, complete 2009 2388602 - 44 + 47 Spain @@ -135705,7 +141087,7 @@ Final figure, complete 2009 37166 - 44 + 47 Spain @@ -135718,7 +141100,7 @@ Final figure, complete 2009 2202650 - 44 + 47 Spain @@ -135731,7 +141113,7 @@ Final figure, complete 2009 2149857 - 44 + 47 Spain @@ -135744,7 +141126,7 @@ Final figure, complete 2009 52793 - 44 + 47 Spain @@ -135757,7 +141139,7 @@ Final figure, complete 2009 1838452 - 44 + 47 Spain @@ -135770,7 +141152,7 @@ Final figure, complete 2009 1758625 - 44 + 47 Spain @@ -135783,7 +141165,7 @@ Final figure, complete 2009 79827 - 44 + 47 Spain @@ -135796,7 +141178,7 @@ Final figure, complete 2009 2071821 - 44 + 47 Spain @@ -135809,7 +141191,7 @@ Final figure, complete 2009 1945324 - 44 + 47 Spain @@ -135822,7 +141204,7 @@ Final figure, complete 2009 126497 - 44 + 47 Spain @@ -135835,7 +141217,7 @@ Final figure, complete 2009 1823131 - 44 + 47 Spain @@ -135848,7 +141230,7 @@ Final figure, complete 2009 1690803 - 44 + 47 Spain @@ -135861,7 +141243,7 @@ Final figure, complete 2009 132328 - 44 + 47 Spain @@ -135874,7 +141256,7 @@ Final figure, complete 2009 1410131 - 44 + 47 Spain @@ -135887,7 +141269,7 @@ Final figure, complete 2009 1298406 - 44 + 47 Spain @@ -135900,7 +141282,7 @@ Final figure, complete 2009 111725 - 44 + 47 Spain @@ -135913,7 +141295,7 @@ Final figure, complete 2009 841808 - 44 + 47 Spain @@ -135926,7 +141308,7 @@ Final figure, complete 2009 756346 - 44 + 47 Spain @@ -135939,7 +141321,7 @@ Final figure, complete 2009 85462 - 44 + 47 Spain @@ -135952,7 +141334,7 @@ Final figure, complete 2009 446662 - 44 + 47 Spain @@ -135965,7 +141347,7 @@ Final figure, complete 2009 389317 - 44 + 47 Spain @@ -135978,7 +141360,7 @@ Final figure, complete 2009 57345 - 44 + 47 Spain @@ -135991,7 +141373,7 @@ Final figure, complete 2009 165685 - 44 + 47 Spain @@ -136004,7 +141386,7 @@ Final figure, complete 2009 137425 - 44 + 47 Spain @@ -136017,7 +141399,7 @@ Final figure, complete 2009 28260 - 44 + 47 Spain @@ -136030,7 +141412,7 @@ Final figure, complete 2009 34108 - 44 + 47 Spain @@ -136043,7 +141425,7 @@ Final figure, complete 2009 27516 - 44 + 47 Spain @@ -136056,7 +141438,7 @@ Final figure, complete 2009 6592 - 44 + 47 Spain @@ -136069,7 +141451,7 @@ Final figure, complete 2009 3590 - 44 + 47 Spain @@ -136082,7 +141464,7 @@ Final figure, complete 2009 2842 - 44 + 47 Spain @@ -136095,7 +141477,7 @@ Final figure, complete 2009 748 - 44 + 47 Sri Lanka @@ -136732,7 +142114,7 @@ Final figure, complete 2009 1525674 - 45 + 48 Sri Lanka @@ -136745,7 +142127,7 @@ Final figure, complete 2009 1427952 - 45 + 48 Sri Lanka @@ -136758,7 +142140,7 @@ Final figure, complete 2009 97722 - 45 + 48 Sri Lanka @@ -136771,7 +142153,7 @@ Final figure, complete 2009 14006337 - 45 + 48 Sri Lanka @@ -136784,7 +142166,7 @@ Final figure, complete 2009 12762747 - 45 + 48 Sri Lanka @@ -136797,7 +142179,7 @@ Final figure, complete 2009 1243590 - 45 + 48 Sri Lanka @@ -136810,7 +142192,7 @@ Final figure, complete 2009 1646827 - 45 + 48 Sri Lanka @@ -136823,7 +142205,7 @@ Final figure, complete 2009 1584914 - 45 + 48 Sri Lanka @@ -136836,7 +142218,7 @@ Final figure, complete 2009 61913 - 45 + 48 Sri Lanka @@ -136849,7 +142231,7 @@ Final figure, complete 2009 1591126 - 45 + 48 Sri Lanka @@ -136862,7 +142244,7 @@ Final figure, complete 2009 1515281 - 45 + 48 Sri Lanka @@ -136875,7 +142257,7 @@ Final figure, complete 2009 75845 - 45 + 48 Sri Lanka @@ -136888,7 +142270,7 @@ Final figure, complete 2009 1340562 - 45 + 48 Sri Lanka @@ -136901,7 +142283,7 @@ Final figure, complete 2009 1260513 - 45 + 48 Sri Lanka @@ -136914,7 +142296,7 @@ Final figure, complete 2009 80049 - 45 + 48 Sri Lanka @@ -136927,7 +142309,7 @@ Final figure, complete 2009 1290121 - 45 + 48 Sri Lanka @@ -136940,7 +142322,7 @@ Final figure, complete 2009 1190083 - 45 + 48 Sri Lanka @@ -136953,7 +142335,7 @@ Final figure, complete 2009 100038 - 45 + 48 Sri Lanka @@ -136966,7 +142348,7 @@ Final figure, complete 2009 1258112 - 45 + 48 Sri Lanka @@ -136979,7 +142361,7 @@ Final figure, complete 2009 1140243 - 45 + 48 Sri Lanka @@ -136992,7 +142374,7 @@ Final figure, complete 2009 117869 - 45 + 48 Sri Lanka @@ -137005,7 +142387,7 @@ Final figure, complete 2009 1170941 - 45 + 48 Sri Lanka @@ -137018,7 +142400,7 @@ Final figure, complete 2009 1065386 - 45 + 48 Sri Lanka @@ -137031,7 +142413,7 @@ Final figure, complete 2009 105555 - 45 + 48 Sri Lanka @@ -137044,7 +142426,7 @@ Final figure, complete 2009 1030560 - 45 + 48 Sri Lanka @@ -137057,7 +142439,7 @@ Final figure, complete 2009 935346 - 45 + 48 Sri Lanka @@ -137070,7 +142452,7 @@ Final figure, complete 2009 95214 - 45 + 48 Sri Lanka @@ -137083,7 +142465,7 @@ Final figure, complete 2009 2084719 - 45 + 48 Sri Lanka @@ -137096,7 +142478,7 @@ Final figure, complete 2009 1821715 - 45 + 48 Sri Lanka @@ -137109,7 +142491,7 @@ Final figure, complete 2009 263004 - 45 + 48 Sri Lanka @@ -137122,7 +142504,7 @@ Final figure, complete 2009 1067695 - 45 + 48 Sri Lanka @@ -137135,7 +142517,7 @@ Final figure, complete 2009 821314 - 45 + 48 Sri Lanka @@ -137148,7 +142530,7 @@ Final figure, complete 2009 246381 - 45 + 48 State of Palestine @@ -138201,7 +143583,7 @@ Final figure, complete 2013 2457013 - 46,47 + 49,50 State of Palestine @@ -138214,7 +143596,7 @@ Final figure, complete 2013 134374 - 46,47 + 49,50 State of Palestine @@ -138227,7 +143609,7 @@ Final figure, complete 2013 2272577 - 46,47 + 49,50 State of Palestine @@ -138240,7 +143622,7 @@ Final figure, complete 2013 50062 - 46,47 + 49,50 State of Palestine @@ -138253,7 +143635,7 @@ Final figure, complete 2013 466273 - 46,47 + 49,50 State of Palestine @@ -138266,7 +143648,7 @@ Final figure, complete 2013 2661 - 46,47 + 49,50 State of Palestine @@ -138279,7 +143661,7 @@ Final figure, complete 2013 463225 - 46,47 + 49,50 State of Palestine @@ -138292,7 +143674,7 @@ Final figure, complete 2013 387 - 46,47 + 49,50 State of Palestine @@ -138305,7 +143687,7 @@ Final figure, complete 2013 414439 - 46,47 + 49,50 State of Palestine @@ -138318,7 +143700,7 @@ Final figure, complete 2013 3069 - 46,47 + 49,50 State of Palestine @@ -138331,7 +143713,7 @@ Final figure, complete 2013 410969 - 46,47 + 49,50 State of Palestine @@ -138344,7 +143726,7 @@ Final figure, complete 2013 401 - 46,47 + 49,50 State of Palestine @@ -138357,7 +143739,7 @@ Final figure, complete 2013 309935 - 46,47 + 49,50 State of Palestine @@ -138370,7 +143752,7 @@ Final figure, complete 2013 3228 - 46,47 + 49,50 State of Palestine @@ -138383,7 +143765,7 @@ Final figure, complete 2013 306329 - 46,47 + 49,50 State of Palestine @@ -138396,7 +143778,7 @@ Final figure, complete 2013 378 - 46,47 + 49,50 State of Palestine @@ -138409,7 +143791,7 @@ Final figure, complete 2013 252227 - 46,47 + 49,50 State of Palestine @@ -138422,7 +143804,7 @@ Final figure, complete 2013 3565 - 46,47 + 49,50 State of Palestine @@ -138435,7 +143817,7 @@ Final figure, complete 2013 248268 - 46,47 + 49,50 State of Palestine @@ -138448,7 +143830,7 @@ Final figure, complete 2013 394 - 46,47 + 49,50 State of Palestine @@ -138461,7 +143843,7 @@ Final figure, complete 2013 215288 - 46,47 + 49,50 State of Palestine @@ -138474,7 +143856,7 @@ Final figure, complete 2013 4031 - 46,47 + 49,50 State of Palestine @@ -138487,7 +143869,7 @@ Final figure, complete 2013 210909 - 46,47 + 49,50 State of Palestine @@ -138500,7 +143882,7 @@ Final figure, complete 2013 348 - 46,47 + 49,50 State of Palestine @@ -138513,7 +143895,7 @@ Final figure, complete 2013 177060 - 46,47 + 49,50 State of Palestine @@ -138526,7 +143908,7 @@ Final figure, complete 2013 4680 - 46,47 + 49,50 State of Palestine @@ -138539,7 +143921,7 @@ Final figure, complete 2013 172085 - 46,47 + 49,50 State of Palestine @@ -138552,7 +143934,7 @@ Final figure, complete 2013 295 - 46,47 + 49,50 State of Palestine @@ -138565,7 +143947,7 @@ Final figure, complete 2013 156514 - 46,47 + 49,50 State of Palestine @@ -138578,7 +143960,7 @@ Final figure, complete 2013 5812 - 46,47 + 49,50 State of Palestine @@ -138591,7 +143973,7 @@ Final figure, complete 2013 150518 - 46,47 + 49,50 State of Palestine @@ -138604,7 +143986,7 @@ Final figure, complete 2013 184 - 46,47 + 49,50 State of Palestine @@ -138617,7 +143999,7 @@ Final figure, complete 2013 117580 - 46,47 + 49,50 State of Palestine @@ -138630,7 +144012,7 @@ Final figure, complete 2013 7086 - 46,47 + 49,50 State of Palestine @@ -138643,7 +144025,7 @@ Final figure, complete 2013 110329 - 46,47 + 49,50 State of Palestine @@ -138656,7 +144038,7 @@ Final figure, complete 2013 165 - 46,47 + 49,50 State of Palestine @@ -138669,7 +144051,7 @@ Final figure, complete 2013 83301 - 46,47 + 49,50 State of Palestine @@ -138682,7 +144064,7 @@ Final figure, complete 2013 7987 - 46,47 + 49,50 State of Palestine @@ -138695,7 +144077,7 @@ Final figure, complete 2013 75189 - 46,47 + 49,50 State of Palestine @@ -138708,7 +144090,7 @@ Final figure, complete 2013 125 - 46,47 + 49,50 State of Palestine @@ -138721,7 +144103,7 @@ Final figure, complete 2013 63010 - 46,47 + 49,50 State of Palestine @@ -138734,7 +144116,7 @@ Final figure, complete 2013 10841 - 46,47 + 49,50 State of Palestine @@ -138747,7 +144129,7 @@ Final figure, complete 2013 52061 - 46,47 + 49,50 State of Palestine @@ -138760,7 +144142,7 @@ Final figure, complete 2013 108 - 46,47 + 49,50 State of Palestine @@ -138773,7 +144155,7 @@ Final figure, complete 2013 47829 - 46,47 + 49,50 State of Palestine @@ -138786,7 +144168,7 @@ Final figure, complete 2013 15376 - 46,47 + 49,50 State of Palestine @@ -138799,7 +144181,7 @@ Final figure, complete 2013 32351 - 46,47 + 49,50 State of Palestine @@ -138812,7 +144194,7 @@ Final figure, complete 2013 102 - 46,47 + 49,50 State of Palestine @@ -138825,7 +144207,7 @@ Final figure, complete 2013 33697 - 46,47 + 49,50 State of Palestine @@ -138838,7 +144220,7 @@ Final figure, complete 2013 17443 - 46,47 + 49,50 State of Palestine @@ -138851,7 +144233,7 @@ Final figure, complete 2013 16162 - 46,47 + 49,50 State of Palestine @@ -138864,7 +144246,7 @@ Final figure, complete 2013 92 - 46,47 + 49,50 State of Palestine @@ -138877,7 +144259,7 @@ Final figure, complete 2013 29316 - 46,47 + 49,50 State of Palestine @@ -138890,7 +144272,7 @@ Final figure, complete 2013 18211 - 46,47 + 49,50 State of Palestine @@ -138903,7 +144285,7 @@ Final figure, complete 2013 11015 - 46,47 + 49,50 State of Palestine @@ -138916,7 +144298,7 @@ Final figure, complete 2013 90 - 46,47 + 49,50 State of Palestine @@ -138929,7 +144311,7 @@ Final figure, complete 2013 21135 - 46,47 + 49,50 State of Palestine @@ -138942,7 +144324,7 @@ Final figure, complete 2013 14653 - 46,47 + 49,50 State of Palestine @@ -138955,7 +144337,7 @@ Final figure, complete 2013 6421 - 46,47 + 49,50 State of Palestine @@ -138968,7 +144350,7 @@ Final figure, complete 2013 61 - 46,47 + 49,50 State of Palestine @@ -138981,7 +144363,7 @@ Final figure, complete 2013 11749 - 46,47 + 49,50 State of Palestine @@ -138994,7 +144376,7 @@ Final figure, complete 2013 8586 - 46,47 + 49,50 State of Palestine @@ -139007,7 +144389,7 @@ Final figure, complete 2013 3110 - 46,47 + 49,50 State of Palestine @@ -139020,7 +144402,7 @@ Final figure, complete 2013 53 - 46,47 + 49,50 State of Palestine @@ -139033,7 +144415,7 @@ Final figure, complete 2013 5344 - 46,47 + 49,50 State of Palestine @@ -139046,7 +144428,7 @@ Final figure, complete 2013 4187 - 46,47 + 49,50 State of Palestine @@ -139059,7 +144441,7 @@ Final figure, complete 2013 1131 - 46,47 + 49,50 State of Palestine @@ -139072,7 +144454,7 @@ Final figure, complete 2013 26 - 46,47 + 49,50 State of Palestine @@ -139085,7 +144467,7 @@ Final figure, complete 2013 2004 - 46,47 + 49,50 State of Palestine @@ -139098,7 +144480,7 @@ Final figure, complete 2013 1682 - 46,47 + 49,50 State of Palestine @@ -139111,7 +144493,7 @@ Final figure, complete 2013 312 - 46,47 + 49,50 State of Palestine @@ -139124,7 +144506,7 @@ Final figure, complete 2013 10 - 46,47 + 49,50 State of Palestine @@ -139137,7 +144519,7 @@ Final figure, complete 2013 1061 - 46,47 + 49,50 State of Palestine @@ -139150,7 +144532,7 @@ Final figure, complete 2013 930 - 46,47 + 49,50 State of Palestine @@ -139163,7 +144545,7 @@ Final figure, complete 2013 124 - 46,47 + 49,50 State of Palestine @@ -139176,7 +144558,7 @@ Final figure, complete 2013 7 - 46,47 + 49,50 State of Palestine @@ -139189,7 +144571,7 @@ Final figure, complete 2013 49251 - 46,47 + 49,50 State of Palestine @@ -139202,7 +144584,7 @@ Final figure, complete 2013 346 - 46,47 + 49,50 State of Palestine @@ -139215,7 +144597,7 @@ Final figure, complete 2013 2069 - 46,47 + 49,50 State of Palestine @@ -139228,7 +144610,7 @@ Final figure, complete 2013 46836 - 46,47 + 49,50 State of Palestine @@ -139241,7 +144623,7 @@ Final figure, complete 2001 321446 - 48 + 51 State of Palestine @@ -139254,7 +144636,7 @@ Final figure, complete 2001 314709 - 48 + 51 State of Palestine @@ -139267,7 +144649,7 @@ Final figure, complete 2001 6529 - 48 + 51 State of Palestine @@ -139280,7 +144662,7 @@ Final figure, complete 2001 208 - 48 + 51 State of Palestine @@ -139293,7 +144675,7 @@ Final figure, complete 2001 1694959 - 48 + 51 State of Palestine @@ -139306,7 +144688,7 @@ Final figure, complete 2001 1490359 - 48 + 51 State of Palestine @@ -139319,7 +144701,7 @@ Final figure, complete 2001 196915 - 48 + 51 State of Palestine @@ -139332,7 +144714,7 @@ Final figure, complete 2001 7685 - 48 + 51 State of Palestine @@ -139345,7 +144727,7 @@ Final figure, complete 2001 273047 - 48 + 51 State of Palestine @@ -139358,7 +144740,7 @@ Final figure, complete 2001 265486 - 48 + 51 State of Palestine @@ -139371,7 +144753,7 @@ Final figure, complete 2001 7321 - 48 + 51 State of Palestine @@ -139384,7 +144766,7 @@ Final figure, complete 2001 240 - 48 + 51 State of Palestine @@ -139397,7 +144779,7 @@ Final figure, complete 2001 235995 - 48 + 51 State of Palestine @@ -139410,7 +144792,7 @@ Final figure, complete 2001 227985 - 48 + 51 State of Palestine @@ -139423,7 +144805,7 @@ Final figure, complete 2001 7697 - 48 + 51 State of Palestine @@ -139436,7 +144818,7 @@ Final figure, complete 2001 313 - 48 + 51 State of Palestine @@ -139449,7 +144831,7 @@ Final figure, complete 2001 190222 - 48 + 51 State of Palestine @@ -139462,7 +144844,7 @@ Final figure, complete 2001 181875 - 48 + 51 State of Palestine @@ -139475,7 +144857,7 @@ Final figure, complete 2001 7987 - 48 + 51 State of Palestine @@ -139488,7 +144870,7 @@ Final figure, complete 2001 360 - 48 + 51 State of Palestine @@ -139501,7 +144883,7 @@ Final figure, complete 2001 164884 - 48 + 51 State of Palestine @@ -139514,7 +144896,7 @@ Final figure, complete 2001 155314 - 48 + 51 State of Palestine @@ -139527,7 +144909,7 @@ Final figure, complete 2001 9207 - 48 + 51 State of Palestine @@ -139540,7 +144922,7 @@ Final figure, complete 2001 363 - 48 + 51 State of Palestine @@ -139553,7 +144935,7 @@ Final figure, complete 2001 123429 - 48 + 51 State of Palestine @@ -139566,7 +144948,7 @@ Final figure, complete 2001 113065 - 48 + 51 State of Palestine @@ -139579,7 +144961,7 @@ Final figure, complete 2001 9975 - 48 + 51 State of Palestine @@ -139592,7 +144974,7 @@ Final figure, complete 2001 389 - 48 + 51 State of Palestine @@ -139605,7 +144987,7 @@ Final figure, complete 2001 88349 - 48 + 51 State of Palestine @@ -139618,7 +145000,7 @@ Final figure, complete 2001 77865 - 48 + 51 State of Palestine @@ -139631,7 +145013,7 @@ Final figure, complete 2001 10088 - 48 + 51 State of Palestine @@ -139644,7 +145026,7 @@ Final figure, complete 2001 396 - 48 + 51 State of Palestine @@ -139657,7 +145039,7 @@ Final figure, complete 2001 68100 - 48 + 51 State of Palestine @@ -139670,7 +145052,7 @@ Final figure, complete 2001 55196 - 48 + 51 State of Palestine @@ -139683,7 +145065,7 @@ Final figure, complete 2001 12414 - 48 + 51 State of Palestine @@ -139696,7 +145078,7 @@ Final figure, complete 2001 490 - 48 + 51 State of Palestine @@ -139709,7 +145091,7 @@ Final figure, complete 2001 55818 - 48 + 51 State of Palestine @@ -139722,7 +145104,7 @@ Final figure, complete 2001 37356 - 48 + 51 State of Palestine @@ -139735,7 +145117,7 @@ Final figure, complete 2001 17785 - 48 + 51 State of Palestine @@ -139748,7 +145130,7 @@ Final figure, complete 2001 677 - 48 + 51 State of Palestine @@ -139761,7 +145143,7 @@ Final figure, complete 2001 41859 - 48 + 51 State of Palestine @@ -139774,7 +145156,7 @@ Final figure, complete 2001 20236 - 48 + 51 State of Palestine @@ -139787,7 +145169,7 @@ Final figure, complete 2001 20883 - 48 + 51 State of Palestine @@ -139800,7 +145182,7 @@ Final figure, complete 2001 740 - 48 + 51 State of Palestine @@ -139813,7 +145195,7 @@ Final figure, complete 2001 41794 - 48 + 51 State of Palestine @@ -139826,7 +145208,7 @@ Final figure, complete 2001 16257 - 48 + 51 State of Palestine @@ -139839,7 +145221,7 @@ Final figure, complete 2001 24607 - 48 + 51 State of Palestine @@ -139852,7 +145234,7 @@ Final figure, complete 2001 930 - 48 + 51 State of Palestine @@ -139865,7 +145247,7 @@ Final figure, complete 2001 34380 - 48 + 51 State of Palestine @@ -139878,7 +145260,7 @@ Final figure, complete 2001 11142 - 48 + 51 State of Palestine @@ -139891,7 +145273,7 @@ Final figure, complete 2001 22362 - 48 + 51 State of Palestine @@ -139904,7 +145286,7 @@ Final figure, complete 2001 876 - 48 + 51 State of Palestine @@ -139917,7 +145299,7 @@ Final figure, complete 2001 24896 - 48 + 51 State of Palestine @@ -139930,7 +145312,7 @@ Final figure, complete 2001 7416 - 48 + 51 State of Palestine @@ -139943,7 +145325,7 @@ Final figure, complete 2001 16835 - 48 + 51 State of Palestine @@ -139956,7 +145338,7 @@ Final figure, complete 2001 645 - 48 + 51 State of Palestine @@ -139969,7 +145351,7 @@ Final figure, complete 2001 30740 - 48 + 51 State of Palestine @@ -139982,7 +145364,7 @@ Final figure, complete 2001 6457 - 48 + 51 State of Palestine @@ -139995,7 +145377,7 @@ Final figure, complete 2001 23225 - 48 + 51 State of Palestine @@ -140008,7 +145390,7 @@ Final figure, complete 2001 1058 - 48 + 51 Suriname @@ -140021,7 +145403,7 @@ Final figure, complete 2007 44503 - 49 + 52 Suriname @@ -140047,7 +145429,7 @@ Final figure, complete 2007 35183 - 49 + 52 Suriname @@ -140072,8 +145454,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 3136 - + 3089 + 52 Suriname @@ -140085,8 +145467,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 3089 - 49 + 3136 + Suriname @@ -140098,8 +145480,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 6280 - + 6231 + 52 Suriname @@ -140111,8 +145493,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 6231 - 49 + 6280 + Suriname @@ -140125,7 +145507,7 @@ Final figure, complete 2007 385960 - 49 + 52 Suriname @@ -140164,7 +145546,7 @@ Final figure, complete 2007 292635 - 49 + 52 Suriname @@ -140176,8 +145558,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 33711 - + 33054 + 52 Suriname @@ -140189,8 +145571,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 33054 - 49 + 33711 + Suriname @@ -140216,7 +145598,7 @@ Final figure, complete 2007 60271 - 49 + 52 Suriname @@ -140229,7 +145611,7 @@ Final figure, complete 2007 45821 - 49 + 52 Suriname @@ -140268,7 +145650,7 @@ Final figure, complete 2007 36816 - 49 + 52 Suriname @@ -140281,7 +145663,7 @@ Final figure, complete 2007 1872 - 49 + 52 Suriname @@ -140320,7 +145702,7 @@ Final figure, complete 2007 7133 - 49 + 52 Suriname @@ -140333,7 +145715,7 @@ Final figure, complete 2007 43084 - 49 + 52 Suriname @@ -140372,7 +145754,7 @@ Final figure, complete 2007 33990 - 49 + 52 Suriname @@ -140384,8 +145766,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 1948 - 49 + 1982 + Suriname @@ -140397,8 +145779,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 1982 - + 1948 + 52 Suriname @@ -140424,7 +145806,7 @@ Final figure, complete 2007 7146 - 49 + 52 Suriname @@ -140436,8 +145818,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 37364 - 49 + 37901 + Suriname @@ -140449,8 +145831,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 37901 - + 37364 + 52 Suriname @@ -140476,7 +145858,7 @@ Final figure, complete 2007 29437 - 49 + 52 Suriname @@ -140489,7 +145871,7 @@ Final figure, complete 2007 1921 - 49 + 52 Suriname @@ -140528,7 +145910,7 @@ Final figure, complete 2007 6006 - 49 + 52 Suriname @@ -140540,8 +145922,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 38542 - 49 + 38994 + Suriname @@ -140553,8 +145935,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 38994 - + 38542 + 52 Suriname @@ -140566,8 +145948,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 30893 - + 30583 + 52 Suriname @@ -140579,8 +145961,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 30583 - 49 + 30893 + Suriname @@ -140592,8 +145974,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 1963 - 49 + 1985 + Suriname @@ -140605,8 +145987,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 1985 - + 1963 + 52 Suriname @@ -140619,7 +146001,7 @@ Final figure, complete 2007 5996 - 49 + 52 Suriname @@ -140658,7 +146040,7 @@ Final figure, complete 2007 36854 - 49 + 52 Suriname @@ -140684,7 +146066,7 @@ Final figure, complete 2007 29450 - 49 + 52 Suriname @@ -140697,7 +146079,7 @@ Final figure, complete 2007 2012 - 49 + 52 Suriname @@ -140722,8 +146104,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 5535 - + 5392 + 52 Suriname @@ -140735,8 +146117,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 5392 - 49 + 5535 + Suriname @@ -140762,7 +146144,7 @@ Final figure, complete 2007 33640 - 49 + 52 Suriname @@ -140775,7 +146157,7 @@ Final figure, complete 2007 27050 - 49 + 52 Suriname @@ -140814,7 +146196,7 @@ Final figure, complete 2007 2112 - 49 + 52 Suriname @@ -140826,8 +146208,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 4593 - + 4478 + 52 Suriname @@ -140839,8 +146221,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 4478 - 49 + 4593 + Suriname @@ -140852,8 +146234,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 25635 - + 25401 + 52 Suriname @@ -140865,8 +146247,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 25401 - 49 + 25635 + Suriname @@ -140892,7 +146274,7 @@ Final figure, complete 2007 20315 - 49 + 52 Suriname @@ -140904,8 +146286,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 2057 - + 2045 + 52 Suriname @@ -140917,8 +146299,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 2045 - 49 + 2057 + Suriname @@ -140930,8 +146312,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 3133 - + 3041 + 52 Suriname @@ -140943,8 +146325,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 3041 - 49 + 3133 + Suriname @@ -140957,7 +146339,7 @@ Final figure, complete 2007 20268 - 49 + 52 Suriname @@ -140982,8 +146364,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 14603 - + 14535 + 52 Suriname @@ -140995,8 +146377,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 14535 - 49 + 14603 + Suriname @@ -141009,7 +146391,7 @@ Final figure, complete 2007 2082 - 49 + 52 Suriname @@ -141048,7 +146430,7 @@ Final figure, complete 2007 3651 - 49 + 52 Suriname @@ -141060,8 +146442,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 14982 - + 14887 + 52 Suriname @@ -141073,8 +146455,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 14887 - 49 + 14982 + Suriname @@ -141087,7 +146469,7 @@ Final figure, complete 2007 10643 - 49 + 52 Suriname @@ -141112,8 +146494,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 2151 - + 2139 + 52 Suriname @@ -141125,8 +146507,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 2139 - 49 + 2151 + Suriname @@ -141138,8 +146520,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 2151 - + 2105 + 52 Suriname @@ -141151,8 +146533,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 2105 - 49 + 2151 + Suriname @@ -141164,8 +146546,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 13259 - + 13154 + 52 Suriname @@ -141177,8 +146559,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 13154 - 49 + 13259 + Suriname @@ -141204,7 +146586,7 @@ Final figure, complete 2007 8504 - 49 + 52 Suriname @@ -141216,8 +146598,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 2610 - + 2585 + 52 Suriname @@ -141229,8 +146611,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 2585 - 49 + 2610 + Suriname @@ -141242,8 +146624,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 2087 - + 2065 + 52 Suriname @@ -141255,8 +146637,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 2065 - 49 + 2087 + Suriname @@ -141282,7 +146664,7 @@ Final figure, complete 2007 10453 - 49 + 52 Suriname @@ -141294,8 +146676,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 6384 - + 6303 + 52 Suriname @@ -141307,8 +146689,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 6303 - 49 + 6384 + Suriname @@ -141321,7 +146703,7 @@ Final figure, complete 2007 2946 - 49 + 52 Suriname @@ -141360,7 +146742,7 @@ Final figure, complete 2007 1204 - 49 + 52 Suriname @@ -141372,8 +146754,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 8659 - + 8475 + 52 Suriname @@ -141385,8 +146767,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 8475 - 49 + 8659 + Suriname @@ -141398,8 +146780,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 4658 - + 4554 + 52 Suriname @@ -141411,8 +146793,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 4554 - 49 + 4658 + Suriname @@ -141425,7 +146807,7 @@ Final figure, complete 2007 2786 - 49 + 52 Suriname @@ -141451,7 +146833,7 @@ Final figure, complete 2007 1135 - 49 + 52 Suriname @@ -141476,8 +146858,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 5152 - + 4944 + 52 Suriname @@ -141489,8 +146871,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 4944 - 49 + 5152 + Suriname @@ -141503,7 +146885,7 @@ Final figure, complete 2007 2628 - 49 + 52 Suriname @@ -141528,8 +146910,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 1852 - + 1775 + 52 Suriname @@ -141541,8 +146923,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 1775 - 49 + 1852 + Suriname @@ -141554,8 +146936,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 541 - 49 + 568 + Suriname @@ -141567,8 +146949,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 568 - + 541 + 52 Suriname @@ -141580,8 +146962,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 2853 - + 2656 + 52 Suriname @@ -141593,8 +146975,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 2656 - 49 + 2853 + Suriname @@ -141606,8 +146988,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 1365 - 49 + 1470 + Suriname @@ -141619,8 +147001,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 1470 - + 1365 + 52 Suriname @@ -141646,7 +147028,7 @@ Final figure, complete 2007 1007 - 49 + 52 Suriname @@ -141658,8 +147040,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 284 - 49 + 296 + Suriname @@ -141671,8 +147053,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 296 - + 284 + 52 Suriname @@ -141684,8 +147066,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 1664 - + 1415 + 52 Suriname @@ -141697,8 +147079,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 1415 - 49 + 1664 + Suriname @@ -141710,8 +147092,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 667 - 49 + 754 + Suriname @@ -141723,8 +147105,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 754 - + 667 + 52 Suriname @@ -141736,8 +147118,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 764 - + 625 + 52 Suriname @@ -141749,8 +147131,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 625 - 49 + 764 + Suriname @@ -141762,8 +147144,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 123 - 49 + 146 + Suriname @@ -141775,8 +147157,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 146 - + 123 + 52 Suriname @@ -141802,7 +147184,7 @@ Final figure, complete 2007 4499 - 49 + 52 Suriname @@ -141814,8 +147196,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 612 - 49 + 620 + Suriname @@ -141827,8 +147209,8 @@ Census - de jure - complete tabulation Final figure, complete 2007 - 620 - + 612 + 52 Suriname @@ -141854,7 +147236,7 @@ Final figure, complete 2007 147 - 49 + 52 Suriname @@ -141867,7 +147249,7 @@ Final figure, complete 2007 3740 - 49 + 52 Suriname @@ -143830,7 +149212,7 @@ Final figure, complete 2009 6131605 - 50 + 53 Thailand @@ -143843,7 +149225,7 @@ Final figure, complete 2009 4503800 - 50 + 53 Thailand @@ -143856,7 +149238,7 @@ Final figure, complete 2009 1626288 - 50 + 53 Thailand @@ -143869,7 +149251,7 @@ Final figure, complete 2009 1517 - 50 + 53 Thailand @@ -143882,7 +149264,7 @@ Final figure, complete 2009 55278397 - 50 + 53 Thailand @@ -143895,7 +149277,7 @@ Final figure, complete 2009 50211058 - 50 + 53 Thailand @@ -143908,7 +149290,7 @@ Final figure, complete 2009 5060178 - 50 + 53 Thailand @@ -143921,7 +149303,7 @@ Final figure, complete 2009 7161 - 50 + 53 Thailand @@ -143934,7 +149316,7 @@ Final figure, complete 2009 3074249 - 50 + 53 Thailand @@ -143947,7 +149329,7 @@ Final figure, complete 2009 3027604 - 50 + 53 Thailand @@ -143960,7 +149342,7 @@ Final figure, complete 2009 46360 - 50 + 53 Thailand @@ -143973,7 +149355,7 @@ Final figure, complete 2009 285 - 50 + 53 Thailand @@ -143986,7 +149368,7 @@ Final figure, complete 2009 3152977 - 50 + 53 Thailand @@ -143999,7 +149381,7 @@ Final figure, complete 2009 3100349 - 50 + 53 Thailand @@ -144012,7 +149394,7 @@ Final figure, complete 2009 52426 - 50 + 53 Thailand @@ -144025,7 +149407,7 @@ Final figure, complete 2009 202 - 50 + 53 Thailand @@ -144038,7 +149420,7 @@ Final figure, complete 2009 4252389 - 50 + 53 Thailand @@ -144051,7 +149433,7 @@ Final figure, complete 2009 4163348 - 50 + 53 Thailand @@ -144064,7 +149446,7 @@ Final figure, complete 2009 88697 - 50 + 53 Thailand @@ -144077,7 +149459,7 @@ Final figure, complete 2009 344 - 50 + 53 Thailand @@ -144090,7 +149472,7 @@ Final figure, complete 2009 3143808 - 50 + 53 Thailand @@ -144103,7 +149485,7 @@ Final figure, complete 2009 3071170 - 50 + 53 Thailand @@ -144116,7 +149498,7 @@ Final figure, complete 2009 72442 - 50 + 53 Thailand @@ -144129,7 +149511,7 @@ Final figure, complete 2009 196 - 50 + 53 Thailand @@ -144142,7 +149524,7 @@ Final figure, complete 2009 5407796 - 50 + 53 Thailand @@ -144155,7 +149537,7 @@ Final figure, complete 2009 5256149 - 50 + 53 Thailand @@ -144168,7 +149550,7 @@ Final figure, complete 2009 151216 - 50 + 53 Thailand @@ -144181,7 +149563,7 @@ Final figure, complete 2009 431 - 50 + 53 Thailand @@ -144194,7 +149576,7 @@ Final figure, complete 2009 5525944 - 50 + 53 Thailand @@ -144207,7 +149589,7 @@ Final figure, complete 2009 5325133 - 50 + 53 Thailand @@ -144220,7 +149602,7 @@ Final figure, complete 2009 200295 - 50 + 53 Thailand @@ -144233,7 +149615,7 @@ Final figure, complete 2009 516 - 50 + 53 Thailand @@ -144246,7 +149628,7 @@ Final figure, complete 2009 5259357 - 50 + 53 Thailand @@ -144259,7 +149641,7 @@ Final figure, complete 2009 5031026 - 50 + 53 Thailand @@ -144272,7 +149654,7 @@ Final figure, complete 2009 227722 - 50 + 53 Thailand @@ -144285,7 +149667,7 @@ Final figure, complete 2009 609 - 50 + 53 Thailand @@ -144298,7 +149680,7 @@ Final figure, complete 2009 4685044 - 50 + 53 Thailand @@ -144311,7 +149693,7 @@ Final figure, complete 2009 4429756 - 50 + 53 Thailand @@ -144324,7 +149706,7 @@ Final figure, complete 2009 254729 - 50 + 53 Thailand @@ -144337,7 +149719,7 @@ Final figure, complete 2009 559 - 50 + 53 Thailand @@ -144350,7 +149732,7 @@ Final figure, complete 2009 3719822 - 50 + 53 Thailand @@ -144363,7 +149745,7 @@ Final figure, complete 2009 3460475 - 50 + 53 Thailand @@ -144376,7 +149758,7 @@ Final figure, complete 2009 258957 - 50 + 53 Thailand @@ -144389,7 +149771,7 @@ Final figure, complete 2009 390 - 50 + 53 Thailand @@ -144402,7 +149784,7 @@ Final figure, complete 2009 2848159 - 50 + 53 Thailand @@ -144415,7 +149797,7 @@ Final figure, complete 2009 2596856 - 50 + 53 Thailand @@ -144428,7 +149810,7 @@ Final figure, complete 2009 250901 - 50 + 53 Thailand @@ -144441,7 +149823,7 @@ Final figure, complete 2009 402 - 50 + 53 Thailand @@ -144454,7 +149836,7 @@ Final figure, complete 2009 2284277 - 50 + 53 Thailand @@ -144467,7 +149849,7 @@ Final figure, complete 2009 2010705 - 50 + 53 Thailand @@ -144480,7 +149862,7 @@ Final figure, complete 2009 273253 - 50 + 53 Thailand @@ -144493,7 +149875,7 @@ Final figure, complete 2009 319 - 50 + 53 Thailand @@ -144506,7 +149888,7 @@ Final figure, complete 2009 1970687 - 50 + 53 Thailand @@ -144519,7 +149901,7 @@ Final figure, complete 2009 1618678 - 50 + 53 Thailand @@ -144532,7 +149914,7 @@ Final figure, complete 2009 351694 - 50 + 53 Thailand @@ -144545,7 +149927,7 @@ Final figure, complete 2009 315 - 50 + 53 Thailand @@ -144558,7 +149940,7 @@ Final figure, complete 2009 1530021 - 50 + 53 Thailand @@ -144571,7 +149953,7 @@ Final figure, complete 2009 1205480 - 50 + 53 Thailand @@ -144584,7 +149966,7 @@ Final figure, complete 2009 324194 - 50 + 53 Thailand @@ -144597,7 +149979,7 @@ Final figure, complete 2009 347 - 50 + 53 Thailand @@ -144610,7 +149992,7 @@ Final figure, complete 2009 1080103 - 50 + 53 Thailand @@ -144623,7 +150005,7 @@ Final figure, complete 2009 777059 - 50 + 53 Thailand @@ -144636,7 +150018,7 @@ Final figure, complete 2009 302736 - 50 + 53 Thailand @@ -144649,7 +150031,7 @@ Final figure, complete 2009 308 - 50 + 53 Thailand @@ -144662,7 +150044,7 @@ Final figure, complete 2009 626282 - 50 + 53 Thailand @@ -144675,7 +150057,7 @@ Final figure, complete 2009 377532 - 50 + 53 Thailand @@ -144688,7 +150070,7 @@ Final figure, complete 2009 248572 - 50 + 53 Thailand @@ -144701,7 +150083,7 @@ Final figure, complete 2009 178 - 50 + 53 Thailand @@ -144714,7 +150096,7 @@ Final figure, complete 2009 340550 - 50 + 53 Thailand @@ -144727,7 +150109,7 @@ Final figure, complete 2009 159258 - 50 + 53 Thailand @@ -144740,7 +150122,7 @@ Final figure, complete 2009 181143 - 50 + 53 Thailand @@ -144753,7 +150135,7 @@ Final figure, complete 2009 149 - 50 + 53 Thailand @@ -144766,7 +150148,7 @@ Final figure, complete 2009 245327 - 50 + 53 Thailand @@ -144779,7 +150161,7 @@ Final figure, complete 2009 96680 - 50 + 53 Thailand @@ -144792,7 +150174,7 @@ Final figure, complete 2009 148553 - 50 + 53 Thailand @@ -144805,7 +150187,7 @@ Final figure, complete 2009 94 - 50 + 53 Timor-Leste @@ -144818,7 +150200,7 @@ Final figure, complete 2010 118213 - 51 + 54 Timor-Leste @@ -144831,7 +150213,7 @@ Final figure, complete 2010 60655 - 51 + 54 Timor-Leste @@ -144844,7 +150226,7 @@ Final figure, complete 2010 57558 - 51 + 54 Timor-Leste @@ -144857,7 +150239,7 @@ Final figure, complete 2010 638478 - 51 + 54 Timor-Leste @@ -144870,7 +150252,7 @@ Final figure, complete 2010 319976 - 51 + 54 Timor-Leste @@ -144883,7 +150265,7 @@ Final figure, complete 2010 318502 - 51 + 54 Timor-Leste @@ -144896,7 +150278,7 @@ Final figure, complete 2010 94283 - 51 + 54 Timor-Leste @@ -144909,7 +150291,7 @@ Final figure, complete 2010 70090 - 51 + 54 Timor-Leste @@ -144922,7 +150304,7 @@ Final figure, complete 2010 24193 - 51 + 54 Timor-Leste @@ -144935,7 +150317,7 @@ Final figure, complete 2010 74561 - 51 + 54 Timor-Leste @@ -144948,7 +150330,7 @@ Final figure, complete 2010 52391 - 51 + 54 Timor-Leste @@ -144961,7 +150343,7 @@ Final figure, complete 2010 22170 - 51 + 54 Timor-Leste @@ -144974,7 +150356,7 @@ Final figure, complete 2010 56559 - 51 + 54 Timor-Leste @@ -144987,7 +150369,7 @@ Final figure, complete 2010 36912 - 51 + 54 Timor-Leste @@ -145000,7 +150382,7 @@ Final figure, complete 2010 19647 - 51 + 54 Timor-Leste @@ -145013,7 +150395,7 @@ Final figure, complete 2010 61970 - 51 + 54 Timor-Leste @@ -145026,7 +150408,7 @@ Final figure, complete 2010 36650 - 51 + 54 Timor-Leste @@ -145039,7 +150421,7 @@ Final figure, complete 2010 25320 - 51 + 54 Timor-Leste @@ -145052,7 +150434,7 @@ Final figure, complete 2010 48518 - 51 + 54 Timor-Leste @@ -145065,7 +150447,7 @@ Final figure, complete 2010 23181 - 51 + 54 Timor-Leste @@ -145078,7 +150460,7 @@ Final figure, complete 2010 25337 - 51 + 54 Timor-Leste @@ -145091,7 +150473,7 @@ Final figure, complete 2010 45724 - 51 + 54 Timor-Leste @@ -145104,7 +150486,7 @@ Final figure, complete 2010 15433 - 51 + 54 Timor-Leste @@ -145117,7 +150499,7 @@ Final figure, complete 2010 30291 - 51 + 54 Timor-Leste @@ -145130,7 +150512,7 @@ Final figure, complete 2010 34175 - 51 + 54 Timor-Leste @@ -145143,7 +150525,7 @@ Final figure, complete 2010 9460 - 51 + 54 Timor-Leste @@ -145156,7 +150538,7 @@ Final figure, complete 2010 24715 - 51 + 54 Timor-Leste @@ -145169,7 +150551,7 @@ Final figure, complete 2010 32808 - 51 + 54 Timor-Leste @@ -145182,7 +150564,7 @@ Final figure, complete 2010 6565 - 51 + 54 Timor-Leste @@ -145195,7 +150577,7 @@ Final figure, complete 2010 26243 - 51 + 54 Timor-Leste @@ -145208,7 +150590,7 @@ Final figure, complete 2010 19134 - 51 + 54 Timor-Leste @@ -145221,7 +150603,7 @@ Final figure, complete 2010 3203 - 51 + 54 Timor-Leste @@ -145234,7 +150616,7 @@ Final figure, complete 2010 15931 - 51 + 54 Timor-Leste @@ -145247,7 +150629,7 @@ Final figure, complete 2010 20462 - 51 + 54 Timor-Leste @@ -145260,7 +150642,7 @@ Final figure, complete 2010 2382 - 51 + 54 Timor-Leste @@ -145273,7 +150655,7 @@ Final figure, complete 2010 18080 - 51 + 54 Timor-Leste @@ -145286,7 +150668,7 @@ Final figure, complete 2010 32071 - 51 + 54 Timor-Leste @@ -145299,7 +150681,7 @@ Final figure, complete 2010 3054 - 51 + 54 Timor-Leste @@ -145312,7 +150694,7 @@ Final figure, complete 2010 29017 - 51 + 54 Tokelau @@ -145325,7 +150707,7 @@ Final figure, complete 2013 109 - 52 + 55 Tokelau @@ -145338,7 +150720,7 @@ Final figure, complete 2013 105 - 52 + 55 Tokelau @@ -145351,7 +150733,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145364,7 +150746,7 @@ Final figure, complete 2013 4 - 52 + 55 Tokelau @@ -145377,7 +150759,7 @@ Final figure, complete 2013 755 - 52 + 55 Tokelau @@ -145390,7 +150772,7 @@ Final figure, complete 2013 736 - 52 + 55 Tokelau @@ -145403,7 +150785,7 @@ Final figure, complete 2013 3 - 52 + 55 Tokelau @@ -145416,7 +150798,7 @@ Final figure, complete 2013 16 - 52 + 55 Tokelau @@ -145429,7 +150811,7 @@ Final figure, complete 2013 95 - 52 + 55 Tokelau @@ -145442,7 +150824,7 @@ Final figure, complete 2013 95 - 52 + 55 Tokelau @@ -145455,7 +150837,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145468,7 +150850,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145481,7 +150863,7 @@ Final figure, complete 2013 76 - 52 + 55 Tokelau @@ -145494,7 +150876,7 @@ Final figure, complete 2013 72 - 52 + 55 Tokelau @@ -145507,7 +150889,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145520,7 +150902,7 @@ Final figure, complete 2013 4 - 52 + 55 Tokelau @@ -145533,7 +150915,7 @@ Final figure, complete 2013 49 - 52 + 55 Tokelau @@ -145546,7 +150928,7 @@ Final figure, complete 2013 48 - 52 + 55 Tokelau @@ -145559,7 +150941,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145572,7 +150954,7 @@ Final figure, complete 2013 1 - 52 + 55 Tokelau @@ -145585,7 +150967,7 @@ Final figure, complete 2013 64 - 52 + 55 Tokelau @@ -145598,7 +150980,7 @@ Final figure, complete 2013 63 - 52 + 55 Tokelau @@ -145611,7 +150993,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145624,7 +151006,7 @@ Final figure, complete 2013 1 - 52 + 55 Tokelau @@ -145637,7 +151019,7 @@ Final figure, complete 2013 55 - 52 + 55 Tokelau @@ -145650,7 +151032,7 @@ Final figure, complete 2013 52 - 52 + 55 Tokelau @@ -145663,7 +151045,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145676,7 +151058,7 @@ Final figure, complete 2013 3 - 52 + 55 Tokelau @@ -145689,7 +151071,7 @@ Final figure, complete 2013 58 - 52 + 55 Tokelau @@ -145702,7 +151084,7 @@ Final figure, complete 2013 58 - 52 + 55 Tokelau @@ -145715,7 +151097,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145728,7 +151110,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145741,7 +151123,7 @@ Final figure, complete 2013 60 - 52 + 55 Tokelau @@ -145754,7 +151136,7 @@ Final figure, complete 2013 58 - 52 + 55 Tokelau @@ -145767,7 +151149,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145780,7 +151162,7 @@ Final figure, complete 2013 2 - 52 + 55 Tokelau @@ -145793,7 +151175,7 @@ Final figure, complete 2013 59 - 52 + 55 Tokelau @@ -145806,7 +151188,7 @@ Final figure, complete 2013 58 - 52 + 55 Tokelau @@ -145819,7 +151201,7 @@ Final figure, complete 2013 1 - 52 + 55 Tokelau @@ -145832,7 +151214,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145845,7 +151227,7 @@ Final figure, complete 2013 31 - 52 + 55 Tokelau @@ -145858,7 +151240,7 @@ Final figure, complete 2013 31 - 52 + 55 Tokelau @@ -145871,7 +151253,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145884,7 +151266,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145897,7 +151279,7 @@ Final figure, complete 2013 33 - 52 + 55 Tokelau @@ -145910,7 +151292,7 @@ Final figure, complete 2013 33 - 52 + 55 Tokelau @@ -145923,7 +151305,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145936,7 +151318,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145949,7 +151331,7 @@ Final figure, complete 2013 31 - 52 + 55 Tokelau @@ -145962,7 +151344,7 @@ Final figure, complete 2013 31 - 52 + 55 Tokelau @@ -145975,7 +151357,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -145988,7 +151370,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -146001,7 +151383,7 @@ Final figure, complete 2013 33 - 52 + 55 Tokelau @@ -146014,7 +151396,7 @@ Final figure, complete 2013 30 - 52 + 55 Tokelau @@ -146027,7 +151409,7 @@ Final figure, complete 2013 2 - 52 + 55 Tokelau @@ -146040,7 +151422,7 @@ Final figure, complete 2013 1 - 52 + 55 Tokelau @@ -146053,7 +151435,7 @@ Final figure, complete 2013 2 - 52 + 55 Tokelau @@ -146066,7 +151448,7 @@ Final figure, complete 2013 2 - 52 + 55 Tokelau @@ -146079,7 +151461,7 @@ Final figure, complete 2013 0 - 52 + 55 Tokelau @@ -146092,7 +151474,7 @@ Final figure, complete 2013 0 - 52 + 55 Tonga @@ -148837,6 +154219,1046 @@ 541400 + + Türkiye + 2021 + Total + Both Sexes + 10 - 14 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6328636 + + + + Türkiye + 2021 + Total + Both Sexes + 10 - 14 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6298805 + + + + Türkiye + 2021 + Total + Both Sexes + 10 - 14 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 371 + + + + Türkiye + 2021 + Total + Both Sexes + 10 - 14 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 29460 + + + + Türkiye + 2021 + Total + Both Sexes + 10 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 70544011 + + + + Türkiye + 2021 + Total + Both Sexes + 10 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 68014478 + + + + Türkiye + 2021 + Total + Both Sexes + 10 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1814042 + + + + Türkiye + 2021 + Total + Both Sexes + 10 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 715491 + + + + Türkiye + 2021 + Total + Both Sexes + 15 - 19 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6100329 + + + + Türkiye + 2021 + Total + Both Sexes + 15 - 19 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6073200 + + + + Türkiye + 2021 + Total + Both Sexes + 15 - 19 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 125 + + + + Türkiye + 2021 + Total + Both Sexes + 15 - 19 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 27004 + + + + Türkiye + 2021 + Total + Both Sexes + 20 - 24 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6526989 + + + + Türkiye + 2021 + Total + Both Sexes + 20 - 24 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6489354 + + + + Türkiye + 2021 + Total + Both Sexes + 20 - 24 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4970 + + + + Türkiye + 2021 + Total + Both Sexes + 20 - 24 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 32665 + + + + Türkiye + 2021 + Total + Both Sexes + 25 - 29 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6253216 + + + + Türkiye + 2021 + Total + Both Sexes + 25 - 29 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6180878 + + + + Türkiye + 2021 + Total + Both Sexes + 25 - 29 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 30382 + + + + Türkiye + 2021 + Total + Both Sexes + 25 - 29 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 41956 + + + + Türkiye + 2021 + Total + Both Sexes + 30 - 34 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6137660 + + + + Türkiye + 2021 + Total + Both Sexes + 30 - 34 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6019565 + + + + Türkiye + 2021 + Total + Both Sexes + 30 - 34 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 59320 + + + + Türkiye + 2021 + Total + Both Sexes + 30 - 34 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 58775 + + + + Türkiye + 2021 + Total + Both Sexes + 35 - 39 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6214379 + + + + Türkiye + 2021 + Total + Both Sexes + 35 - 39 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6085098 + + + + Türkiye + 2021 + Total + Both Sexes + 35 - 39 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 64652 + + + + Türkiye + 2021 + Total + Both Sexes + 35 - 39 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 64629 + + + + Türkiye + 2021 + Total + Both Sexes + 40 - 44 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6409238 + + + + Türkiye + 2021 + Total + Both Sexes + 40 - 44 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 6277385 + + + + Türkiye + 2021 + Total + Both Sexes + 40 - 44 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 71131 + + + + Türkiye + 2021 + Total + Both Sexes + 40 - 44 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 60722 + + + + Türkiye + 2021 + Total + Both Sexes + 45 - 49 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 5552735 + + + + Türkiye + 2021 + Total + Both Sexes + 45 - 49 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 5423196 + + + + Türkiye + 2021 + Total + Both Sexes + 45 - 49 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 69464 + + + + Türkiye + 2021 + Total + Both Sexes + 45 - 49 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 60075 + + + + Türkiye + 2021 + Total + Both Sexes + 50 - 54 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4663521 + + + + Türkiye + 2021 + Total + Both Sexes + 50 - 54 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4525966 + + + + Türkiye + 2021 + Total + Both Sexes + 50 - 54 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 76310 + + + + Türkiye + 2021 + Total + Both Sexes + 50 - 54 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 61245 + + + + Türkiye + 2021 + Total + Both Sexes + 55 - 59 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4632819 + + + + Türkiye + 2021 + Total + Both Sexes + 55 - 59 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 4434239 + + + + Türkiye + 2021 + Total + Both Sexes + 55 - 59 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 128520 + + + + Türkiye + 2021 + Total + Both Sexes + 55 - 59 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 70060 + + + + Türkiye + 2021 + Total + Both Sexes + 60 - 64 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3558328 + + + + Türkiye + 2021 + Total + Both Sexes + 60 - 64 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3348874 + + + + Türkiye + 2021 + Total + Both Sexes + 60 - 64 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 152289 + + + + Türkiye + 2021 + Total + Both Sexes + 60 - 64 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 57165 + + + + Türkiye + 2021 + Total + Both Sexes + 65 - 69 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3118812 + + + + Türkiye + 2021 + Total + Both Sexes + 65 - 69 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2827387 + + + + Türkiye + 2021 + Total + Both Sexes + 65 - 69 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 237623 + + + + Türkiye + 2021 + Total + Both Sexes + 65 - 69 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 53802 + + + + Türkiye + 2021 + Total + Both Sexes + 70 - 74 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 2153090 + + + + Türkiye + 2021 + Total + Both Sexes + 70 - 74 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1845121 + + + + Türkiye + 2021 + Total + Both Sexes + 70 - 74 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 265676 + + + + Türkiye + 2021 + Total + Both Sexes + 70 - 74 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 42293 + + + + Türkiye + 2021 + Total + Both Sexes + 75 - 79 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1381434 + + + + Türkiye + 2021 + Total + Both Sexes + 75 - 79 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1112330 + + + + Türkiye + 2021 + Total + Both Sexes + 75 - 79 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 241382 + + + + Türkiye + 2021 + Total + Both Sexes + 75 - 79 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 27722 + + + + Türkiye + 2021 + Total + Both Sexes + 80 - 84 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 856130 + + + + Türkiye + 2021 + Total + Both Sexes + 80 - 84 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 640036 + + + + Türkiye + 2021 + Total + Both Sexes + 80 - 84 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 200513 + + + + Türkiye + 2021 + Total + Both Sexes + 80 - 84 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 15581 + + + + Türkiye + 2021 + Total + Both Sexes + 85 - 89 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 454607 + + + + Türkiye + 2021 + Total + Both Sexes + 85 - 89 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 315755 + + + + Türkiye + 2021 + Total + Both Sexes + 85 - 89 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 131323 + + + + Türkiye + 2021 + Total + Both Sexes + 85 - 89 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 7529 + + + + Türkiye + 2021 + Total + Both Sexes + 90 - 94 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 162983 + + + + Türkiye + 2021 + Total + Both Sexes + 90 - 94 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 98223 + + + + Türkiye + 2021 + Total + Both Sexes + 90 - 94 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 61501 + + + + Türkiye + 2021 + Total + Both Sexes + 90 - 94 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3259 + + + + Türkiye + 2021 + Total + Both Sexes + 95 - 99 + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 33347 + + + + Türkiye + 2021 + Total + Both Sexes + 95 - 99 + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 17202 + + + + Türkiye + 2021 + Total + Both Sexes + 95 - 99 + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 15049 + + + + Türkiye + 2021 + Total + Both Sexes + 95 - 99 + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1096 + + + + Türkiye + 2021 + Total + Both Sexes + 100 + + Total + Census - de jure - complete tabulation + Final figure, complete + 2023 + 5758 + + + + Türkiye + 2021 + Total + Both Sexes + 100 + + Literate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 1864 + + + + Türkiye + 2021 + Total + Both Sexes + 100 + + Illiterate + Census - de jure - complete tabulation + Final figure, complete + 2023 + 3441 + + + + Türkiye + 2021 + Total + Both Sexes + 100 + + Unknown + Census - de jure - complete tabulation + Final figure, complete + 2023 + 453 + + Türkiye 2011 @@ -148848,7 +155270,7 @@ Final figure, complete 2013 6604000 - 2,53,54 + 2,56,57 Türkiye @@ -148861,7 +155283,7 @@ Final figure, complete 2013 6598000 - 2,53,54 + 2,56,57 Türkiye @@ -148874,7 +155296,7 @@ Final figure, complete 2013 7000 - 2,53,54 + 2,56,57 Türkiye @@ -148887,7 +155309,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -148900,7 +155322,7 @@ Final figure, complete 2013 62243000 - 2,53,54 + 2,56,57 Türkiye @@ -148913,7 +155335,7 @@ Final figure, complete 2013 59220000 - 2,53,54 + 2,56,57 Türkiye @@ -148926,7 +155348,7 @@ Final figure, complete 2013 3006000 - 2,53,54 + 2,56,57 Türkiye @@ -148939,7 +155361,7 @@ Final figure, complete 2013 17000 - 2,53,54 + 2,56,57 Türkiye @@ -148952,7 +155374,7 @@ Final figure, complete 2013 6314000 - 2,53,54 + 2,56,57 Türkiye @@ -148965,7 +155387,7 @@ Final figure, complete 2013 6271000 - 2,53,54 + 2,56,57 Türkiye @@ -148978,7 +155400,7 @@ Final figure, complete 2013 43000 - 2,53,54 + 2,56,57 Türkiye @@ -148991,7 +155413,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149004,7 +155426,7 @@ Final figure, complete 2013 6251000 - 2,53,54 + 2,56,57 Türkiye @@ -149017,7 +155439,7 @@ Final figure, complete 2013 6138000 - 2,53,54 + 2,56,57 Türkiye @@ -149030,7 +155452,7 @@ Final figure, complete 2013 98000 - 2,53,54 + 2,56,57 Türkiye @@ -149043,7 +155465,7 @@ Final figure, complete 2013 15000 - 2,53,54 + 2,56,57 Türkiye @@ -149056,7 +155478,7 @@ Final figure, complete 2013 6311000 - 2,53,54 + 2,56,57 Türkiye @@ -149069,7 +155491,7 @@ Final figure, complete 2013 6202000 - 2,53,54 + 2,56,57 Türkiye @@ -149082,7 +155504,7 @@ Final figure, complete 2013 109000 - 2,53,54 + 2,56,57 Türkiye @@ -149095,7 +155517,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149108,7 +155530,7 @@ Final figure, complete 2013 6466000 - 2,53,54 + 2,56,57 Türkiye @@ -149121,7 +155543,7 @@ Final figure, complete 2013 6354000 - 2,53,54 + 2,56,57 Türkiye @@ -149134,7 +155556,7 @@ Final figure, complete 2013 111000 - 2,53,54 + 2,56,57 Türkiye @@ -149147,7 +155569,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149160,7 +155582,7 @@ Final figure, complete 2013 5634000 - 2,53,54 + 2,56,57 Türkiye @@ -149173,7 +155595,7 @@ Final figure, complete 2013 5529000 - 2,53,54 + 2,56,57 Türkiye @@ -149186,7 +155608,7 @@ Final figure, complete 2013 105000 - 2,53,54 + 2,56,57 Türkiye @@ -149199,7 +155621,7 @@ Final figure, complete 2013 1000 - 2,53,54 + 2,56,57 Türkiye @@ -149212,7 +155634,7 @@ Final figure, complete 2013 4691000 - 2,53,54 + 2,56,57 Türkiye @@ -149225,7 +155647,7 @@ Final figure, complete 2013 4582000 - 2,53,54 + 2,56,57 Türkiye @@ -149238,7 +155660,7 @@ Final figure, complete 2013 108000 - 2,53,54 + 2,56,57 Türkiye @@ -149251,7 +155673,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149264,7 +155686,7 @@ Final figure, complete 2013 4825000 - 2,53,54 + 2,56,57 Türkiye @@ -149277,7 +155699,7 @@ Final figure, complete 2013 4654000 - 2,53,54 + 2,56,57 Türkiye @@ -149290,7 +155712,7 @@ Final figure, complete 2013 171000 - 2,53,54 + 2,56,57 Türkiye @@ -149303,7 +155725,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149316,7 +155738,7 @@ Final figure, complete 2013 3733000 - 2,53,54 + 2,56,57 Türkiye @@ -149329,7 +155751,7 @@ Final figure, complete 2013 3544000 - 2,53,54 + 2,56,57 Türkiye @@ -149342,7 +155764,7 @@ Final figure, complete 2013 189000 - 2,53,54 + 2,56,57 Türkiye @@ -149355,7 +155777,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149368,7 +155790,7 @@ Final figure, complete 2013 3439000 - 2,53,54 + 2,56,57 Türkiye @@ -149381,7 +155803,7 @@ Final figure, complete 2013 3152000 - 2,53,54 + 2,56,57 Türkiye @@ -149394,7 +155816,7 @@ Final figure, complete 2013 287000 - 2,53,54 + 2,56,57 Türkiye @@ -149407,7 +155829,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149420,7 +155842,7 @@ Final figure, complete 2013 2530000 - 2,53,54 + 2,56,57 Türkiye @@ -149433,7 +155855,7 @@ Final figure, complete 2013 2198000 - 2,53,54 + 2,56,57 Türkiye @@ -149446,7 +155868,7 @@ Final figure, complete 2013 331000 - 2,53,54 + 2,56,57 Türkiye @@ -149459,7 +155881,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149472,7 +155894,7 @@ Final figure, complete 2013 1845000 - 2,53,54 + 2,56,57 Türkiye @@ -149485,7 +155907,7 @@ Final figure, complete 2013 1506000 - 2,53,54 + 2,56,57 Türkiye @@ -149498,7 +155920,7 @@ Final figure, complete 2013 339000 - 2,53,54 + 2,56,57 Türkiye @@ -149511,7 +155933,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149524,7 +155946,7 @@ Final figure, complete 2013 1437000 - 2,53,54 + 2,56,57 Türkiye @@ -149537,7 +155959,7 @@ Final figure, complete 2013 1088000 - 2,53,54 + 2,56,57 Türkiye @@ -149550,7 +155972,7 @@ Final figure, complete 2013 349000 - 2,53,54 + 2,56,57 Türkiye @@ -149563,7 +155985,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149576,7 +155998,7 @@ Final figure, complete 2013 1113000 - 2,53,54 + 2,56,57 Türkiye @@ -149589,7 +156011,7 @@ Final figure, complete 2013 778000 - 2,53,54 + 2,56,57 Türkiye @@ -149602,7 +156024,7 @@ Final figure, complete 2013 335000 - 2,53,54 + 2,56,57 Türkiye @@ -149615,7 +156037,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149628,7 +156050,7 @@ Final figure, complete 2013 685000 - 2,53,54 + 2,56,57 Türkiye @@ -149641,7 +156063,7 @@ Final figure, complete 2013 422000 - 2,53,54 + 2,56,57 Türkiye @@ -149654,7 +156076,7 @@ Final figure, complete 2013 263000 - 2,53,54 + 2,56,57 Türkiye @@ -149667,7 +156089,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149680,7 +156102,7 @@ Final figure, complete 2013 283000 - 2,53,54 + 2,56,57 Türkiye @@ -149693,7 +156115,7 @@ Final figure, complete 2013 164000 - 2,53,54 + 2,56,57 Türkiye @@ -149706,7 +156128,7 @@ Final figure, complete 2013 119000 - 2,53,54 + 2,56,57 Türkiye @@ -149719,7 +156141,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149732,7 +156154,7 @@ Final figure, complete 2013 62000 - 2,53,54 + 2,56,57 Türkiye @@ -149745,7 +156167,7 @@ Final figure, complete 2013 32000 - 2,53,54 + 2,56,57 Türkiye @@ -149758,7 +156180,7 @@ Final figure, complete 2013 30000 - 2,53,54 + 2,56,57 Türkiye @@ -149771,7 +156193,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149784,7 +156206,7 @@ Final figure, complete 2013 15000 - 2,53,54 + 2,56,57 Türkiye @@ -149797,7 +156219,7 @@ Final figure, complete 2013 6000 - 2,53,54 + 2,56,57 Türkiye @@ -149810,7 +156232,7 @@ Final figure, complete 2013 9000 - 2,53,54 + 2,56,57 Türkiye @@ -149823,7 +156245,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -149836,7 +156258,7 @@ Final figure, complete 2013 4000 - 2,53,54 + 2,56,57 Türkiye @@ -149849,7 +156271,7 @@ Final figure, complete 2013 1000 - 2,53,54 + 2,56,57 Türkiye @@ -149862,7 +156284,7 @@ Final figure, complete 2013 3000 - 2,53,54 + 2,56,57 Türkiye @@ -149875,7 +156297,7 @@ Final figure, complete 2013 0 - 2,53,54 + 2,56,57 Türkiye @@ -151565,7 +157987,7 @@ Final figure, complete 2005 3509035 - 55 + 58 Uganda @@ -151578,7 +158000,7 @@ Final figure, complete 2005 2569581 - 55 + 58 Uganda @@ -151591,7 +158013,7 @@ Final figure, complete 2005 939454 - 55 + 58 Uganda @@ -151604,7 +158026,7 @@ Final figure, complete 2005 15887760 - 55 + 58 Uganda @@ -151617,7 +158039,7 @@ Final figure, complete 2005 10839209 - 55 + 58 Uganda @@ -151630,7 +158052,7 @@ Final figure, complete 2005 5048551 - 55 + 58 Uganda @@ -151643,7 +158065,7 @@ Final figure, complete 2005 6658172 - 55 + 58 Uganda @@ -151656,7 +158078,7 @@ Final figure, complete 2005 5102601 - 55 + 58 Uganda @@ -151669,7 +158091,7 @@ Final figure, complete 2005 1555571 - 55 + 58 Uganda @@ -151682,7 +158104,7 @@ Final figure, complete 2005 3265852 - 55 + 58 Uganda @@ -151695,7 +158117,7 @@ Final figure, complete 2005 2100094 - 55 + 58 Uganda @@ -151708,7 +158130,7 @@ Final figure, complete 2005 1165758 - 55 + 58 Uganda @@ -151721,7 +158143,7 @@ Final figure, complete 2005 1353844 - 55 + 58 Uganda @@ -151734,7 +158156,7 @@ Final figure, complete 2005 704687 - 55 + 58 Uganda @@ -151747,7 +158169,7 @@ Final figure, complete 2005 649157 - 55 + 58 Uganda @@ -151760,7 +158182,7 @@ Final figure, complete 2005 806790 - 55 + 58 Uganda @@ -151773,7 +158195,7 @@ Final figure, complete 2005 289463 - 55 + 58 Uganda @@ -151786,7 +158208,7 @@ Final figure, complete 2005 517327 - 55 + 58 Uganda @@ -151799,7 +158221,7 @@ Final figure, complete 2005 294067 - 55 + 58 Uganda @@ -151812,7 +158234,7 @@ Final figure, complete 2005 72783 - 55 + 58 Uganda @@ -151825,7 +158247,7 @@ Final figure, complete 2005 221284 - 55 + 58 Ukraine @@ -153125,7 +159547,7 @@ Final figure, complete 2013 256552 - 56 + 59 Uruguay @@ -153138,7 +159560,7 @@ Final figure, complete 2013 245301 - 56 + 59 Uruguay @@ -153151,7 +159573,7 @@ Final figure, complete 2013 3297 - 56 + 59 Uruguay @@ -153164,7 +159586,7 @@ Final figure, complete 2013 7570 - 56 + 59 Uruguay @@ -153177,7 +159599,7 @@ Final figure, complete 2013 2827464 - 56 + 59 Uruguay @@ -153190,7 +159612,7 @@ Final figure, complete 2013 2684825 - 56 + 59 Uruguay @@ -153203,7 +159625,7 @@ Final figure, complete 2013 41759 - 56 + 59 Uruguay @@ -153216,7 +159638,7 @@ Final figure, complete 2013 100496 - 56 + 59 Uruguay @@ -153229,7 +159651,7 @@ Final figure, complete 2013 261691 - 56 + 59 Uruguay @@ -153242,7 +159664,7 @@ Final figure, complete 2013 250380 - 56 + 59 Uruguay @@ -153255,7 +159677,7 @@ Final figure, complete 2013 2229 - 56 + 59 Uruguay @@ -153268,7 +159690,7 @@ Final figure, complete 2013 9082 - 56 + 59 Uruguay @@ -153281,7 +159703,7 @@ Final figure, complete 2013 241006 - 56 + 59 Uruguay @@ -153294,7 +159716,7 @@ Final figure, complete 2013 229541 - 56 + 59 Uruguay @@ -153307,7 +159729,7 @@ Final figure, complete 2013 2004 - 56 + 59 Uruguay @@ -153320,7 +159742,7 @@ Final figure, complete 2013 9461 - 56 + 59 Uruguay @@ -153333,7 +159755,7 @@ Final figure, complete 2013 228385 - 56 + 59 Uruguay @@ -153346,7 +159768,7 @@ Final figure, complete 2013 217522 - 56 + 59 Uruguay @@ -153359,7 +159781,7 @@ Final figure, complete 2013 2081 - 56 + 59 Uruguay @@ -153372,7 +159794,7 @@ Final figure, complete 2013 8782 - 56 + 59 Uruguay @@ -153385,7 +159807,7 @@ Final figure, complete 2013 233365 - 56 + 59 Uruguay @@ -153398,7 +159820,7 @@ Final figure, complete 2013 222538 - 56 + 59 Uruguay @@ -153411,7 +159833,7 @@ Final figure, complete 2013 2213 - 56 + 59 Uruguay @@ -153424,7 +159846,7 @@ Final figure, complete 2013 8614 - 56 + 59 Uruguay @@ -153437,7 +159859,7 @@ Final figure, complete 2013 222521 - 56 + 59 Uruguay @@ -153450,7 +159872,7 @@ Final figure, complete 2013 213085 - 56 + 59 Uruguay @@ -153463,7 +159885,7 @@ Final figure, complete 2013 2049 - 56 + 59 Uruguay @@ -153476,7 +159898,7 @@ Final figure, complete 2013 7387 - 56 + 59 Uruguay @@ -153489,7 +159911,7 @@ Final figure, complete 2013 203098 - 56 + 59 Uruguay @@ -153502,7 +159924,7 @@ Final figure, complete 2013 194813 - 56 + 59 Uruguay @@ -153515,7 +159937,7 @@ Final figure, complete 2013 2004 - 56 + 59 Uruguay @@ -153528,7 +159950,7 @@ Final figure, complete 2013 6281 - 56 + 59 Uruguay @@ -153541,7 +159963,7 @@ Final figure, complete 2013 198773 - 56 + 59 Uruguay @@ -153554,7 +159976,7 @@ Final figure, complete 2013 190971 - 56 + 59 Uruguay @@ -153567,7 +159989,7 @@ Final figure, complete 2013 2188 - 56 + 59 Uruguay @@ -153580,7 +160002,7 @@ Final figure, complete 2013 5614 - 56 + 59 Uruguay @@ -153593,7 +160015,7 @@ Final figure, complete 2013 194565 - 56 + 59 Uruguay @@ -153606,7 +160028,7 @@ Final figure, complete 2013 186461 - 56 + 59 Uruguay @@ -153619,7 +160041,7 @@ Final figure, complete 2013 2287 - 56 + 59 Uruguay @@ -153632,7 +160054,7 @@ Final figure, complete 2013 5817 - 56 + 59 Uruguay @@ -153645,7 +160067,7 @@ Final figure, complete 2013 173007 - 56 + 59 Uruguay @@ -153658,7 +160080,7 @@ Final figure, complete 2013 165036 - 56 + 59 Uruguay @@ -153671,7 +160093,7 @@ Final figure, complete 2013 2814 - 56 + 59 Uruguay @@ -153684,7 +160106,7 @@ Final figure, complete 2013 5157 - 56 + 59 Uruguay @@ -153697,7 +160119,7 @@ Final figure, complete 2013 150775 - 56 + 59 Uruguay @@ -153710,7 +160132,7 @@ Final figure, complete 2013 143192 - 56 + 59 Uruguay @@ -153723,7 +160145,7 @@ Final figure, complete 2013 2901 - 56 + 59 Uruguay @@ -153736,7 +160158,7 @@ Final figure, complete 2013 4682 - 56 + 59 Uruguay @@ -153749,7 +160171,7 @@ Final figure, complete 2013 131563 - 56 + 59 Uruguay @@ -153762,7 +160184,7 @@ Final figure, complete 2013 124601 - 56 + 59 Uruguay @@ -153775,7 +160197,7 @@ Final figure, complete 2013 2956 - 56 + 59 Uruguay @@ -153788,7 +160210,7 @@ Final figure, complete 2013 4006 - 56 + 59 Uruguay @@ -153801,7 +160223,7 @@ Final figure, complete 2013 112395 - 56 + 59 Uruguay @@ -153814,7 +160236,7 @@ Final figure, complete 2013 105124 - 56 + 59 Uruguay @@ -153827,7 +160249,7 @@ Final figure, complete 2013 3374 - 56 + 59 Uruguay @@ -153840,7 +160262,7 @@ Final figure, complete 2013 3897 - 56 + 59 Uruguay @@ -153853,7 +160275,7 @@ Final figure, complete 2013 93659 - 56 + 59 Uruguay @@ -153866,7 +160288,7 @@ Final figure, complete 2013 86229 - 56 + 59 Uruguay @@ -153879,7 +160301,7 @@ Final figure, complete 2013 3466 - 56 + 59 Uruguay @@ -153892,7 +160314,7 @@ Final figure, complete 2013 3964 - 56 + 59 Uruguay @@ -153905,7 +160327,7 @@ Final figure, complete 2013 70505 - 56 + 59 Uruguay @@ -153918,7 +160340,7 @@ Final figure, complete 2013 63382 - 56 + 59 Uruguay @@ -153931,7 +160353,7 @@ Final figure, complete 2013 2869 - 56 + 59 Uruguay @@ -153944,7 +160366,7 @@ Final figure, complete 2013 4254 - 56 + 59 Uruguay @@ -153957,7 +160379,7 @@ Final figure, complete 2013 37426 - 56 + 59 Uruguay @@ -153970,7 +160392,7 @@ Final figure, complete 2013 32183 - 56 + 59 Uruguay @@ -153983,7 +160405,7 @@ Final figure, complete 2013 1862 - 56 + 59 Uruguay @@ -153996,7 +160418,7 @@ Final figure, complete 2013 3381 - 56 + 59 Uruguay @@ -154009,7 +160431,7 @@ Final figure, complete 2013 14113 - 56 + 59 Uruguay @@ -154022,7 +160444,7 @@ Final figure, complete 2013 11432 - 56 + 59 Uruguay @@ -154035,7 +160457,7 @@ Final figure, complete 2013 843 - 56 + 59 Uruguay @@ -154048,7 +160470,7 @@ Final figure, complete 2013 1838 - 56 + 59 Uruguay @@ -154061,7 +160483,7 @@ Final figure, complete 2013 3546 - 56 + 59 Uruguay @@ -154074,7 +160496,7 @@ Final figure, complete 2013 2667 - 56 + 59 Uruguay @@ -154087,7 +160509,7 @@ Final figure, complete 2013 264 - 56 + 59 Uruguay @@ -154100,7 +160522,7 @@ Final figure, complete 2013 615 - 56 + 59 Uruguay @@ -154113,7 +160535,7 @@ Final figure, complete 2013 519 - 56 + 59 Uruguay @@ -154126,7 +160548,7 @@ Final figure, complete 2013 367 - 56 + 59 Uruguay @@ -154139,7 +160561,7 @@ Final figure, complete 2013 58 - 56 + 59 Uruguay @@ -154152,7 +160574,7 @@ Final figure, complete 2013 94 - 56 + 59 Uruguay @@ -155738,7 +162160,7 @@ Provisional figure 2002 2513224 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155751,7 +162173,7 @@ Provisional figure 2002 2441696 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155764,7 +162186,7 @@ Provisional figure 2002 71528 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155777,7 +162199,7 @@ Provisional figure 2002 17932872 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155790,7 +162212,7 @@ Provisional figure 2002 16778859 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155803,7 +162225,7 @@ Provisional figure 2002 1154013 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155816,7 +162238,7 @@ Provisional figure 2002 2300721 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155829,7 +162251,7 @@ Provisional figure 2002 2240998 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155842,7 +162264,7 @@ Provisional figure 2002 59723 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155855,7 +162277,7 @@ Provisional figure 2002 2170254 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155868,7 +162290,7 @@ Provisional figure 2002 2104760 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155881,7 +162303,7 @@ Provisional figure 2002 65494 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155894,7 +162316,7 @@ Provisional figure 2002 3629093 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155907,7 +162329,7 @@ Provisional figure 2002 3500464 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155920,7 +162342,7 @@ Provisional figure 2002 128629 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155933,7 +162355,7 @@ Provisional figure 2002 3005839 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155946,7 +162368,7 @@ Provisional figure 2002 2848221 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155959,7 +162381,7 @@ Provisional figure 2002 157618 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155972,7 +162394,7 @@ Provisional figure 2002 2075050 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155985,7 +162407,7 @@ Provisional figure 2002 1906824 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -155998,7 +162420,7 @@ Provisional figure 2002 168226 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -156011,7 +162433,7 @@ Provisional figure 2002 2238691 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -156024,7 +162446,7 @@ Provisional figure 2002 1735896 - 57 + 60 Venezuela (Bolivarian Republic of) @@ -156037,7 +162459,7 @@ Provisional figure 2002 502795 - 57 + 60 Viet Nam @@ -158305,60 +164727,63 @@ Data refer to population in housing units and collective living quarters only. Because of rounding, totals are not in all cases the sum of the respective components. - Data have not been adjusted for underenumeration, estimated at 4.96 per cent. - Data include persons in remote areas, military personnel outside the country, merchant seamen at sea, civilian seasonal workers outside the country, and other civilians outside the country, and exclude nomads, foreign military, civilian aliens temporarily in the country, transients on ships and Indian jungle population. - For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan province of China. - Data refer to the civilian population of 31 provinces, municipalities and autonomous regions. - Data are estimates from the detailed sample enquiry of about one-tenth households in the Hong Kong 2021 Population Census. Data refer to Hong Kong resident population at the census moment, which covers usual residents and mobile residents. Usual residents refer to two categories of people: (1) Hong Kong permanent residents who had stayed in Hong Kong for at least three months during the six months before or for at least three months during the six months after the census moment, regardless of whether they were in Hong Kong or not at the census moment; and (2) Hong Kong non-permanent residents who were in Hong Kong at the census moment. Mobile Residents, they are Hong Kong permanent residents who had stayed in Hong Kong for at least one month but less than three months during the six months before or for at least one month but less than three months during the six months after the census moment, regardless of whether they were in Hong Kong or not at the census moment. - Data are estimates from sample enquiry. Data refer to Hong Kong resident population at the census moment, which covers usual residents and mobile residents. Usual residents refer to two categories of people: (1) Hong Kong permanent residents who had stayed in Hong Kong for at least three months during the six months before or for at least three months during the six months after the census moment, regardless of whether they were in Hong Kong or not at the census moment; and (2) Hong Kong non-permanent residents who were in Hong Kong at the census moment. Mobile Residents, they are Hong Kong permanent residents who had stayed in Hong Kong for at least one month but less than three months during the six months before or for at least one month but less than three months during the six months after the census moment, regardless of whether they were in Hong Kong or not at the census moment. - Population by-census is conducted between two population censuses, adopting a sampling method to select 29,421 housing units in Macao for enumeration, with the unit of observation being the individuals residing in the selected housing units. - Data refer to government controlled areas. - Including all persons irrespective of citizenship, who at the time of the census resided in the country or intended to reside for a period of at least one year. It does not distinguish between those present or absent at the time of census. - Excludes nomadic Indian tribes. - Data refer to usual resident population. - Data from Estonian Education Information System. - Data for certain cells suppressed by national statistical office for confidentiality reasons. - Including pre-primary education. - Excluding Mao-Maram, Paomata and Purul sub-divisions of Senapati district of Manipur. The population of Manipur including the estimated population of the three sub-divisions of Senapati district is 2,291,125 (Males 1,161,173 and females 1,129,952). - Includes data for the Indian-held part of Jammu and Kashmir, the final status of which has not yet been determined. - Excluding Province Nanggroe Aceh Darussalam, Regency Nias & Nias Selatan, Regency Boven Digul & Teluk Wondama. - Data refer to the "Intercensal Population Survey". - Data refer to literacy in Kiribati language. - Age classification is based on the difference between the year of birth and the year of the census, rather than on completed years of age. - Excludes the islands of St. Brandon and Agalega. - Data comprise mostly residents of institutions and collective quarters. - Data have been adjusted for underenumeration, estimated at 5.1 per cent. - Data refer to population in conventional households only. - E-census data based 100% on administrative registers. - Excluding data for Azad Jammu and Kashmir, and Gilgit Baltistan. - Excluding data for the Pakistan-held part of Jammu and Kashmir, the final status of which has not yet been determined. - Population in households only. - Including armed forces stationed in the area. - Tiraspol, Bender, Slobozia, Ribnita, Camenca Yrigoricpol/Grigoriopol are districts from Transnistria where the census was not conducted. - Excludes non-residents present in country at time of census (visitors, foreigners temporarily residing in country, etc.). - Excluding non-residents present in country at time of census. - Data refer to the persons who declared they could not read or write, or those who could only read. - Data refer to Saint Helenian resident population. - Excludes data for Kosovo and Metohia. - Data have not been adjusted for underenumeration, estimated at 2.4 per cent. - Data are based on the latest register-based population estimates for 2020. - Data refer to resident population which comprises Singapore citizens and permanent residents. - Data are based on the latest register-based population estimates for 2010. - Everyone is assumed literate as school attendance is mandatory. - Data have been adjusted for underenumeration, estimated at 10.69 per cent. - Data exclude population in collective living quarters. - The Population and Housing Census 2001 did not cover the whole area of the country due to the security problems; data refer to the 18 districts for which the census was completed only (in three districts it was not possible to conduct the census at all and in four districts it was partially conducted). - Excluding data from the parts of Jerusalem which were annexed by Israel in 1967. - Data have not been adjusted for underenumeration. - Total population does not include Palestinian population living in those parts of Jerusalem governorate which were annexed by Israel in 1967, amounting to 210 209 persons. Likewise, the results does not include the estimates of not enumerated population based on the findings of the post enumeration study, i.e 83 805 persons. - Excluding the institutional population. - All persons falling within the scope of the census were enumerated on a de jure basis, except students who were enumerated on a de facto basis. - Data refer to population in private households. - Data refer to usually resident population present on census night. - Based on a sample taken at the time of census. - The figures were calculated by dividing and rounding to thousand. Therefore, “0” may indicate value of less than 500. - Excluding population enumerated in hotels. - Excluding homeless persons. - Excluding Indian jungle population. + Data refer to enumerated population. + Figures for male and female may not add up to the total, since the total includes Hijra (transgender) population. + Data have not been adjusted for underenumeration, estimated at 4.96 per cent. + Data include persons in remote areas, military personnel outside the country, merchant seamen at sea, civilian seasonal workers outside the country, and other civilians outside the country, and exclude nomads, foreign military, civilian aliens temporarily in the country, transients on ships and Indian jungle population. + For statistical purposes, the data for China do not include those for the Hong Kong Special Administrative Region (Hong Kong SAR), Macao Special Administrative Region (Macao SAR) and Taiwan province of China. + Data refer to the civilian population of 31 provinces, municipalities and autonomous regions. + Data are estimates from the detailed sample enquiry of about one-tenth households in the Hong Kong 2021 Population Census. Data refer to Hong Kong resident population at the census moment, which covers usual residents and mobile residents. Usual residents refer to two categories of people: (1) Hong Kong permanent residents who had stayed in Hong Kong for at least three months during the six months before or for at least three months during the six months after the census moment, regardless of whether they were in Hong Kong or not at the census moment; and (2) Hong Kong non-permanent residents who were in Hong Kong at the census moment. Mobile Residents, they are Hong Kong permanent residents who had stayed in Hong Kong for at least one month but less than three months during the six months before or for at least one month but less than three months during the six months after the census moment, regardless of whether they were in Hong Kong or not at the census moment. + Data are estimates from sample enquiry. Data refer to Hong Kong resident population at the census moment, which covers usual residents and mobile residents. Usual residents refer to two categories of people: (1) Hong Kong permanent residents who had stayed in Hong Kong for at least three months during the six months before or for at least three months during the six months after the census moment, regardless of whether they were in Hong Kong or not at the census moment; and (2) Hong Kong non-permanent residents who were in Hong Kong at the census moment. Mobile Residents, they are Hong Kong permanent residents who had stayed in Hong Kong for at least one month but less than three months during the six months before or for at least one month but less than three months during the six months after the census moment, regardless of whether they were in Hong Kong or not at the census moment. + Data refer to local population, which consists mainly of local residents, excluding non-resident workers and non-local students living in Macao SAR. + Population by-census is conducted between two population censuses, adopting a sampling method to select 29,421 housing units in Macao for enumeration, with the unit of observation being the individuals residing in the selected housing units. + Data refer to government controlled areas. + Including all persons irrespective of citizenship, who at the time of the census resided in the country or intended to reside for a period of at least one year. It does not distinguish between those present or absent at the time of census. + Excludes nomadic Indian tribes. + Data refer to usual resident population. + Data from Estonian Education Information System. + Data for certain cells suppressed by national statistical office for confidentiality reasons. + Including pre-primary education. + Excluding Mao-Maram, Paomata and Purul sub-divisions of Senapati district of Manipur. The population of Manipur including the estimated population of the three sub-divisions of Senapati district is 2,291,125 (Males 1,161,173 and females 1,129,952). + Includes data for the Indian-held part of Jammu and Kashmir, the final status of which has not yet been determined. + Excluding Province Nanggroe Aceh Darussalam, Regency Nias & Nias Selatan, Regency Boven Digul & Teluk Wondama. + Data refer to the "Intercensal Population Survey". + Data refer to literacy in Kiribati language. + Age classification is based on the difference between the year of birth and the year of the census, rather than on completed years of age. + Excludes the islands of St. Brandon and Agalega. + Data comprise mostly residents of institutions and collective quarters. + Data have been adjusted for underenumeration, estimated at 5.1 per cent. + Data refer to population in conventional households only. + E-census data based 100% on administrative registers. + Excluding data for Azad Jammu and Kashmir, and Gilgit Baltistan. + Excluding data for the Pakistan-held part of Jammu and Kashmir, the final status of which has not yet been determined. + Population in households only. + Including armed forces stationed in the area. + Tiraspol, Bender, Slobozia, Ribnita, Camenca Yrigoricpol/Grigoriopol are districts from Transnistria where the census was not conducted. + Excludes non-residents present in country at time of census (visitors, foreigners temporarily residing in country, etc.). + Excluding non-residents present in country at time of census. + Data refer to the persons who declared they could not read or write, or those who could only read. + Data refer to Saint Helenian resident population. + Excludes data for Kosovo and Metohia. + Data have not been adjusted for underenumeration, estimated at 2.4 per cent. + Data are based on the latest register-based population estimates for 2020. + Data refer to resident population which comprises Singapore citizens and permanent residents. + Data are based on the latest register-based population estimates for 2010. + Everyone is assumed literate as school attendance is mandatory. + Data have been adjusted for underenumeration, estimated at 10.69 per cent. + Data exclude population in collective living quarters. + The Population and Housing Census 2001 did not cover the whole area of the country due to the security problems; data refer to the 18 districts for which the census was completed only (in three districts it was not possible to conduct the census at all and in four districts it was partially conducted). + Excluding data from the parts of Jerusalem which were annexed by Israel in 1967. + Data have not been adjusted for underenumeration. + Total population does not include Palestinian population living in those parts of Jerusalem governorate which were annexed by Israel in 1967, amounting to 210 209 persons. Likewise, the results does not include the estimates of not enumerated population based on the findings of the post enumeration study, i.e 83 805 persons. + Excluding the institutional population. + All persons falling within the scope of the census were enumerated on a de jure basis, except students who were enumerated on a de facto basis. + Data refer to population in private households. + Data refer to usually resident population present on census night. + Based on a sample taken at the time of census. + The figures were calculated by dividing and rounding to thousand. Therefore, “0” may indicate value of less than 500. + Excluding population enumerated in hotels. + Excluding homeless persons. + Excluding Indian jungle population. \ No newline at end of file diff --git a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/world_bank_data.csv b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/world_bank_data.csv index 7247bd0821e..e33da2d8aa5 100644 --- a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/world_bank_data.csv +++ b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/world_bank_data.csv @@ -1,538 +1,440 @@ -Country Name,Country Code,Series Name,Series Code,2000 [YR2000],2001 [YR2001],2002 [YR2002],2003 [YR2003],2004 [YR2004],2005 [YR2005],2006 [YR2006],2007 [YR2007],2008 [YR2008],2009 [YR2009],2010 [YR2010],2011 [YR2011],2012 [YR2012],2013 [YR2013],2014 [YR2014],2015 [YR2015],2016 [YR2016],2017 [YR2017],2018 [YR2018],2019 [YR2019],2020 [YR2020],2021 [YR2021],2022 [YR2022] -Afghanistan,AFG,"Population, total",SP.POP.TOTL,19542982,19688632,21000256,22645130,23553551,24411191,25442944,25903301,26427199,27385307,28189672,29249157,30466479,31541209,32716210,33753499,34636207,35643418,36686784,37769499,38972230,40099462,41128771 -Afghanistan,AFG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,35304957443.1429,43009154649.9821,50021140843.8365,51116377178.898,59828650003.497,65243022274.6353,69269064108.3461,72264460583.4333,71002992402.2763,75541822529.0687,78452629305.5163,83114293808.3467,81613248721.1909,67497245890.7719,.. -Albania,ALB,"Population, total",SP.POP.TOTL,3089027,3060173,3051010,3039616,3026939,3011487,2992547,2970017,2947314,2927519,2913021,2905195,2900401,2895092,2889104,2880703,2876101,2873457,2866376,2854191,2837849,2811666,2777689 -Albania,ALB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12286421765.5495,13582158059.1547,14578898002.6769,15606803804.4588,16816639912.577,18018684855.0701,20227034212.5993,22237723231.5777,24373830536.1474,25391433784.8499,27768115043.705,29663113513.8575,30302683016.9371,31131463018.4765,32827519380.2111,33983933600.3434,35303753953.2809,36786681442.605,38643987272.43,40583177886.8439,39293117640.589,42893918405.8024,50726571305.5172 -Algeria,DZA,"Population, total",SP.POP.TOTL,30774621,31200985,31624696,32055883,32510186,32956690,33435080,33983827,34569592,35196037,35856344,36543541,37260563,38000626,38760168,39543154,40339329,41136546,41927007,42705368,43451666,44177969,44903225 -Algeria,DZA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,248948935948.487,267745804336.254,284220886795.88,311380241646.746,331728480780.195,359612549048.173,381244409880.702,415419245788.917,436091592079.418,444815149747.257,469889943457.945,489874209849.271,491032042032.186,488124391408.29,494451390132.55,464956187403.212,466787785435.932,478552633868.987,490775041727.01,504951788300.27,487566225423.157,528115992891.357,581573909062.74 -American Samoa,ASM,"Population, total",SP.POP.TOTL,58230,58324,58177,57941,57626,57254,56837,56383,55891,55366,54849,54310,53691,52995,52217,51368,50448,49463,48424,47321,46189,45035,44273 -American Samoa,ASM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Andorra,AND,"Population, total",SP.POP.TOTL,66097,67820,70849,73907,76933,79826,80221,78168,76055,73852,71519,70567,71013,71367,71621,71746,72540,73837,75013,76343,77700,79034,79824 -Andorra,AND,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Angola,AGO,"Population, total",SP.POP.TOTL,16394062,16941587,17516139,18124342,18771125,19450959,20162340,20909684,21691522,22507674,23364185,24259111,25188292,26147002,27128337,28127721,29154746,30208628,31273533,32353588,33428486,34503774,35588987 -Angola,AGO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,45772315254.3698,49213910365.9721,59175578993.5397,62844806635.9541,70905271597.5722,83803345013.3697,95403168926.3056,111899908428.72,121260301272.988,131518248036.708,139036880719.971,148439200654.428,170976260040.987,185392062309.03,206980819803.485,194201093550.639,194190298891.968,204590021604.228,203271990590.934,202535402620.151,193734766839.983,206625791722.663,229564126513.46 -Antigua and Barbuda,ATG,"Population, total",SP.POP.TOTL,75055,76215,77195,78075,78941,79869,80895,82016,83251,84534,85695,86729,87674,88497,89236,89941,90564,91119,91626,92117,92664,93219,93763 -Antigua and Barbuda,ATG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1371374700.96477,1367084680.31725,1377138460.00608,1497558848.7734,1620672868.76659,1792794061.42793,2084353489.03188,2340651906.97128,2375397191.66091,2110887079.84261,2000047402.64945,1989464693.26504,1901046386.74869,1873511840.29188,1858657765.77635,1791853932.76206,1825199679.71101,1876707882.73479,2058386525.84355,2164267402.3151,1838937343.79421,2025526062.68614,2395273758.3918 -Argentina,ARG,"Population, total",SP.POP.TOTL,37070774,37480493,37885028,38278164,38668796,39070501,39476851,39876111,40273769,40684338,40788453,41261490,41733271,42202935,42669500,43131966,43590368,44044811,44494502,44938712,45376763,45808747,46234830 -Argentina,ARG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,416543213705.884,406229568312.825,359287109112.954,403170047755.339,418044160252.763,467987564262.799,568706551176.912,641116244910.274,680954189844.421,640794035796.418,711692954086.858,774475577247.848,800317625378.88,831394119040.572,822682190494.641,850943025662.517,865728756878.777,1012802784987.51,999477911340.463,993329077050.985,918298042996.465,1069805554258.12,1203325015659.96 -Armenia,ARM,"Population, total",SP.POP.TOTL,3168523,3133133,3105037,3084102,3065745,3047246,3026486,3004393,2983421,2964296,2946293,2928976,2914421,2901385,2889930,2878595,2865835,2851923,2836557,2820602,2805608,2790974,2780469 -Armenia,ARM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8402228179.66485,9408755566.66737,10865435005.7348,12611808302.9975,14426393524.0208,16956037657.7612,19886529023.2614,23371139898.2539,25589642245.0294,21750889670.9294,22669393132.4502,23905121367.1988,28085043286.0165,30249264888.7339,30546350169.5526,30350856297.5624,32159509361.2082,36931688582.4612,39052063120.3201,42652316566.7278,38961302963.8699,42471212172.4859,50440272220.046 -Aruba,ABW,"Population, total",SP.POP.TOTL,89101,90691,91781,92701,93540,94483,95606,96787,97996,99212,100341,101288,102112,102880,103594,104257,104874,105439,105962,106442,106585,106537,106445 -Aruba,ABW,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2701341765.05967,2830330548.85077,2732825493.34063,2948154409.06483,3225142561.19387,2731089989.38386,3418951190.49316,3238653855.78611,3764169074.84711,3367789337.97827,3238190996.06096,3285948815.775,3394609470.00529,3570577791.51326,3676303526.63929,3729142478.29994,3762715342.46141,3872113603.24205,4015089998.57761,4080041119.3874,3203000775.91083,4256039165.50417,5009515336.11602 -Australia,AUS,"Population, total",SP.POP.TOTL,19028802,19274701,19495210,19720737,19932722,20176844,20450966,20827622,21249199,21691653,22031750,22340024,22733465,23128129,23475686,23815995,24190907,24592588,24963258,25334826,25649248,25685412,26005540 -Australia,AUS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,490505152124.87,517957220250.327,550653577654.902,577323743433.695,615130303911.792,641891560954.107,684978180322.294,729421949920.085,764950073458.173,843713216587.664,833788234292.616,901135103226.097,944830743158.79,1035928528535.58,1072525161980.57,1079982845793.32,1116837774694.58,1158118862741.3,1214893467981.23,1273416087790.9,1334136199257.48,1427353137447.52,1581853923875.82 -Austria,AUT,"Population, total",SP.POP.TOTL,8011566,8042293,8081957,8121423,8171966,8227829,8268641,8295487,8321496,8343323,8363404,8391643,8429991,8479823,8546356,8642699,8736668,8797566,8840521,8879920,8916864,8955797,9041851 -Austria,AUT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,233343398222.482,235657227426.92,250522395607.009,260413816554.689,275619794709.552,287476798281.967,312122128174.123,326807776801.153,346680570770.484,341248490322.061,354262775265.277,374289188740.567,392030460346.489,407466618825.439,417609480255.935,426732539405.343,460248078658.205,472121614071.579,498431937162.513,528620894948.594,515638118693.145,544155555673.086,613316618773.551 -Azerbaijan,AZE,"Population, total",SP.POP.TOTL,8048600,8111200,8171950,8234100,8306500,8391850,8484550,8581300,8763400,8947243,9054332,9173082,9295784,9416801,9535079,9649341,9757812,9854033,9939771,10024283,10093121,10137750,10141756 -Azerbaijan,AZE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,26729639909.0101,29810493441.7179,32937271772.0775,36882488244.2552,40324484427.6371,50112940094.2678,69038045043.0504,85968516583.8538,101974605603.795,115787865664.861,124948063267.161,126513330052.276,139942118752.313,153814756946.049,161560771985.524,139536668196.983,131802753631.7,133891980747.811,137699257103.595,145097815681.857,145380742379.547,158114382737.908,168674752369.777 -"Bahamas, The",BHS,"Population, total",SP.POP.TOTL,325014,329626,334002,338490,343089,347804,352664,357666,362795,368057,373272,377950,382061,385650,389131,392697,395976,399020,401906,404557,406471,407906,409984 -"Bahamas, The",BHS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8220336605.09602,8569517623.28768,8966993336.60868,9060798177.32148,9400981925.22917,9995890289.00957,10532514401.3731,10969493484.3652,11078885585.4302,10600912311.3584,10805872879.6104,11096143557.5883,11432980687.4643,11206015634.0711,11680005145.6034,11938397478.681,12114062811.6163,12988586789.9007,13381272119.5968,13785680368.8127,10604493547.3859,13109381230.9433,15915431447.1651 -Bahrain,BHR,"Population, total",SP.POP.TOTL,711442,730257,748324,778256,833451,901921,970981,1040532,1110343,1179453,1213645,1212077,1224939,1261673,1311134,1362142,1409661,1456834,1487340,1494188,1477469,1463265,1472233 -Bahrain,BHR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,27311709164.616,28295453131.7053,29116729676.1554,31901610889.7913,35074326852.3588,39345206906.1066,43404762401.311,48622926281.6891,51466159944.9602,49326998905.5529,52801027932.7423,52634201219.1065,63717186823.4415,65227977632.6593,64937397694.8038,59027883384.9117,60275901158.781,67284010435.2343,70443505663.1055,72984436635.5147,69563635415.2447,75166336870.9986,86183451311.2574 -Bangladesh,BGD,"Population, total",SP.POP.TOTL,129193327,131670484,134139826,136503206,138789725,140912590,142628831,144135934,145421318,146706810,148391139,150211005,152090649,154030139,155961299,157830000,159784568,161793964,163683958,165516222,167420951,169356251,171186372 -Bangladesh,BGD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,208903159541.59,224071251607.42,238125614090.902,254417193062.954,275590314037.615,303067115063.122,336505561948.372,372281153126.807,406321271060.039,430336315712.769,460392531150.933,499623842867.126,568934789557.357,613884173762.715,658105717590.998,701591060059.261,762513773147.244,808575894587.825,893313314637.336,981928369995.099,1029466189634.51,1162778260266.77,1316527886963.21 -Barbados,BRB,"Population, total",SP.POP.TOTL,264657,265377,266455,267499,268505,269477,270425,271444,272635,273791,274711,275486,276197,276865,277493,278083,278649,279187,279688,280180,280693,281200,281635 -Barbados,BRB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3339383133.92558,3317393367.57262,3387139119.08228,3516487359.28741,3691707072.97344,3909345544.84585,4206522595.07432,4506811843.60102,4569201474.59413,4407617753.7727,4440521543.7973,4315500082.19215,4184641098.58336,4186176287.52046,4150863793.33503,4243571556.66868,4362578418.72657,4329135010.29111,4384691450.00064,4446843066.19397,4086160977.77421,4131313872.35273,4921665398.76923 -Belarus,BLR,"Population, total",SP.POP.TOTL,9979610,9928549,9865548,9796749,9730146,9663915,9604924,9560953,9527985,9504583,9483836,9461643,9446836,9443211,9448515,9461076,9469379,9458989,9438785,9419758,9379952,9302585,9228071 -Belarus,BLR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,57659972968.0428,61784186322.8842,66007857216.1954,72302377930.7824,82560911752.8275,93400148657.3812,105387913106.487,116840196909.485,130712030595.675,130621331445.913,142729488426.014,154983303603.245,167209008145.489,173067538960.123,174210252072.527,163947995272.129,160480473070.668,167108118023.774,176774543803.611,183777198957.76,182821976446.329,196504613002.174,200334702619.202 -Belgium,BEL,"Population, total",SP.POP.TOTL,10251250,10286570,10332785,10376133,10421137,10478617,10547958,10625700,10709973,10796493,10895586,11038264,11106932,11159407,11209057,11274196,11331422,11375158,11427054,11488980,11538604,11586195,11685814 -Belgium,BEL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,292223592683.957,301727924451.347,318307798007.558,327108740417.411,338775285060.243,352001708926.337,377236839847.883,396420257105.211,415597849908.875,415145847375.782,440721000699.246,452655752838.946,480620383220.801,499349513623.745,514186705056.397,528249820624.552,555959647175.261,579048881302.262,605582412477.963,647342556465.905,637403701056.313,696818318795.253,776989729049.648 -Belize,BLZ,"Population, total",SP.POP.TOTL,240406,248100,255987,263998,272128,280375,288729,297173,305671,314171,322106,329538,337059,344688,352335,359871,367313,374693,382066,389095,394921,400031,405272 -Belize,BLZ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1724717053.41452,1830698775.61858,1965810231.23175,2165267715.0669,2291962520.17578,2431566083.69501,2616430898.78703,2732144279.21716,2736175011.02943,2866951492.99106,2857491266.54221,2990947886.18442,2872110278.74816,3009688922.0672,3028343613.2923,3184229772.53787,3173398567.85517,3114639004.34618,3179212919.31383,3372045132.93776,3073099000.04827,3771095564.32587,4322678327.32867 -Benin,BEN,"Population, total",SP.POP.TOTL,6998023,7212041,7431783,7659208,7894554,8149419,8402631,8647761,8906469,9172514,9445710,9726380,10014078,10308730,10614844,10932783,11260085,11596779,11940683,12290444,12643123,12996895,13352864 -Benin,BEN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12026254072.2015,12946713962.0525,13720836586.4983,14467663511.7471,15532068457.8216,16347374768.4514,17488379961.1496,19004845069.4699,20415476948.705,20975678924.417,21628404646.4189,22827277379.615,24162896617.311,26561886938.3552,29012509444.3848,30282958642.7141,32384504143.6299,33647417490.4049,36766633595.0317,40036155688.8566,42101497593.256,47393221446.7611,53718714711.5151 -Bermuda,BMU,"Population, total",SP.POP.TOTL,61833,62504,62912,63325,63740,64154,64523,64888,65273,65636,65124,64564,64798,65001,65138,65237,64554,63873,63918,63911,63893,63764,63532 -Bermuda,BMU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,4700905409.07144,4635082852.05734,4565102131.19074,4691734061.22244,4650207512.13465,4857325794.21895,5069411917.91031,5441446654.03734,5502445451.27569,5515855315.31481,5287251895.73167,5769769111.89458,6266926349.07207 -Bhutan,BTN,"Population, total",SP.POP.TOTL,587207,603234,619048,634627,649991,663323,673260,681614,689737,697678,705516,713331,721145,728889,736357,743274,749761,756121,762096,767459,772506,777486,782455 -Bhutan,BTN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1681517668.17299,1864106984.81897,2071585862.44438,2261569425.39561,2460463237.09723,2745949678.81683,3059172535.6092,3681386742.76799,3882798431.24975,4117616088.28373,4592150292.83972,5025027934.76435,5427558614.93035,5602230793.66315,6149107935.26414,6820498921.72026,7485314870.70246,8063888272.9059,8518002240.38172,9183114571.27457,8587390822.78439,9385514936.37637,.. -Bolivia,BOL,"Population, total",SP.POP.TOTL,8592656,8746084,8900583,9057378,9216279,9377388,9542663,9711152,9880593,10051317,10223270,10396246,10569697,10743349,10916987,11090085,11263015,11435533,11606905,11777315,11936162,12079472,12224110 -Bolivia,BOL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,28129616809.3607,29275315682.1106,30471917020.7801,31540570279.8615,33510905394.8558,36257389727.6557,39361711666.7343,42156083523.0996,45849622668.7466,47362830022.5297,49578723011.0154,53471345613.9369,57756234187.7259,65495334662.9702,71666096539.7519,74894854628.5889,81222638731.8631,91495898240.3683,98192891933.4671,102565612345.555,95701615409.1369,104601224549.985,115588484469.457 -Bosnia and Herzegovina,BIH,"Population, total",SP.POP.TOTL,4179350,4194932,4198410,4183757,4142860,4094297,4058086,4007876,3943392,3877750,3811088,3743142,3674374,3617559,3571068,3524324,3480986,3440027,3400129,3360711,3318407,3270943,3233526 -Bosnia and Herzegovina,BIH,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,18889356996.3574,19490201311.4634,20785396593.6038,21527480222.871,24474152837.8233,25415388799.3059,28763129831.0069,31761603458.41,35149093673.4469,35031242592.5831,35203327342.1838,36819353484.6671,37435828107.2448,39546697184.7206,40137290056.7482,41959768430.2858,44859179661.8472,46336487125.7596,50037539747.5089,54078367779.8751,52374076359.8815,56366425159.5296,64152684866.617 -Botswana,BWA,"Population, total",SP.POP.TOTL,1726985,1761930,1795130,1826863,1859085,1892807,1928704,1966977,2007320,2048997,2091664,2134037,2175425,2217278,2260376,2305171,2352416,2401840,2451409,2499702,2546402,2588423,2630296 -Botswana,BWA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,14430530808.5912,15383702181.5643,14735988509.5954,16348755128.673,17005214944.9077,18832928500.1417,21744952298.3796,24170893447.0788,25028018227.6489,22578913607.9649,24387025553.8248,27515399832.0169,26752346286.0876,27131166276.9944,31422442293.3106,29898756384.6637,32863012968.62,32216118442.305,34065962149.8778,37329145114.4025,36457062061.6225,42166381281.2866,46830575768.1281 -Brazil,BRA,"Population, total",SP.POP.TOTL,175873720,178211881,180476685,182629278,184722043,186797334,188820682,190779453,192672317,194517549,196353492,198185302,199977707,201721767,203459650,205188205,206859578,208504960,210166592,211782878,213196304,214326223,215313498 -Brazil,BRA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1536381998062.15,1586812024441.31,1658897262281.92,1714146776163.78,1865757891010.53,1987185833915.89,2138178911419.6,2338293554914.52,2496150291961.41,2515143574924.61,2712465332008.37,2894294561187.9,2923719823241.02,3090347659210.83,3127764536961.12,2958026429307.17,2876740136507.09,2962271099129.21,3058925247017.94,3154920115524.25,3110372767955.17,3374852690568.63,3717886862698.14 -British Virgin Islands,VGB,"Population, total",SP.POP.TOTL,20104,20657,21288,21982,22715,23497,24323,25191,26115,27044,27556,27962,28421,28657,28971,29366,29739,30060,30335,30610,30910,31122,31305 -British Virgin Islands,VGB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Brunei Darussalam,BRN,"Population, total",SP.POP.TOTL,333926,340748,347463,354045,360461,366717,372808,378748,384568,390311,396053,401506,406634,411702,416656,421437,425994,430276,434274,438048,441725,445373,449002 -Brunei Darussalam,BRN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,22110111947.6952,23228621563.6443,24504099645.9353,25713344431.5388,26536753668.7613,27474956035.5065,29568272358.0279,30569261041.0941,30511462552.2694,30197283909.5026,30974245587.3837,32155106321.3359,34364760477.9712,33509559006.4759,33313972350.9287,27254603848.3947,25364170400.1577,27428959648.7296,26691246249.6264,28799884531.4937,29602012900.2555,29738589013.7615,30425463488.1113 -Bulgaria,BGR,"Population, total",SP.POP.TOTL,8170172,8009142,7837161,7775327,7716860,7658972,7601022,7545338,7492561,7444443,7395599,7348328,7305888,7265115,7223938,7177991,7127822,7075947,7025037,6975761,6934015,6877743,6465097 -Bulgaria,BGR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,51194415848.9179,55842158704.5368,62301575895.0828,66512057433.9088,71836514090.1879,79042085273.0348,84554463845.7296,89609299215.1024,102296346332.528,102194764312.351,108309718661.176,112094354153.172,117702185792.663,118281452875.965,126167531134.911,127908343125.165,138636762057.469,148501536807.233,156380825726.585,170543104255.975,168059763455.733,184763037732.722,211657908289.717 -Burkina Faso,BFA,"Population, total",SP.POP.TOTL,11882888,12249764,12632269,13030591,13445977,13876127,14316242,14757074,15197915,15650022,16116845,16602651,17113732,17636408,18169842,18718019,19275498,19835858,20392723,20951639,21522626,22100683,22673762 -Burkina Faso,BFA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,10676159089.9054,11609255790.9519,12233262543.8659,13420064205.9361,14444026612.8686,16153195620.5176,17828409497.8801,19060982138.2983,20533902076.6377,21095086885.4214,22742733266.3775,24485121959.0513,26157122985.3763,27958185156.6621,28468442315.1301,29619149700.6198,33766175223.7979,37765264713.5699,41481933114.0071,43969867561.5212,45833192546.2252,50574187504.5394,55388452692.6325 -Burundi,BDI,"Population, total",SP.POP.TOTL,6307659,6465729,6648938,6860846,7120496,7388874,7658190,7944609,8278109,8709366,9126605,9455733,9795479,10149577,10494913,10727148,10903327,11155593,11493472,11874838,12220227,12551213,12889576 -Burundi,BDI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3413530970.7128,3455386002.32066,3655865389.10312,3659077807.18507,3910617249.29648,4127881290.60415,4526607288.19746,4821960531.8341,5162014020.35365,5356075850.63316,5722262798.4003,6061589359.64675,6368379910.21901,7074295572.52413,7628334837.90584,8551056104.25342,8354333752.75671,8380014255.21821,8733392580.38043,9058044730.40005,9230236284.33632,9918555432.97258,10826840153.3239 -Cabo Verde,CPV,"Population, total",SP.POP.TOTL,458251,465958,473231,480089,486583,492827,498884,504733,510336,515638,521212,527521,533864,539940,546076,552166,558394,564954,571202,577030,582640,587925,593149 -Cabo Verde,CPV,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1384658786.56332,1466812143.04251,1550368394.0334,1655429993.41638,1870220176.97844,2035400800.32387,2253832638.16985,2709187267.91099,2940463831.93146,2917196678.44193,2954553041.10892,3148523869.00776,3103149443.0161,3146837691.62509,3122290190.70582,3330671889.32497,3615507976.23575,3905420152.19532,4187655521.33616,4570017331.62071,3657988037.28042,4065407685.35113,5103526866.64374 -Cambodia,KHM,"Population, total",SP.POP.TOTL,12118841,12338192,12561779,12787710,13016371,13246583,13477779,13714791,13943888,14155740,14363532,14573885,14786640,14999683,15210817,15417523,15624584,15830689,16025238,16207746,16396860,16589023,16767842 -Cambodia,KHM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12627752883.4657,13926743835.4375,14944527020.3757,16636350258.4187,18807506928.6444,21840398104.5699,24987674330.7747,28465506486.742,30841551003.0878,30994790312.9039,33509040087.7333,36394815884.1828,40352333047.8929,43284451677.1755,45941913407.5674,49695125105.4018,54905400965.1813,59657647125.7637,65478977944.1063,71070686301.2427,71047705349.8647,75564500512.7161,85076198344.7568 -Cameroon,CMR,"Population, total",SP.POP.TOTL,15091594,15493253,15914033,16354326,16809407,17275171,17751333,18251866,18777081,19319274,19878036,20448873,21032684,21632850,22299585,23012646,23711630,24393181,25076747,25782341,26491087,27198628,27914536 -Cameroon,CMR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,29669205885.7306,31405379464.0404,33648084576.7491,37004325452.1082,41162165284.7818,43237811775.1437,46886691863.0946,49786529897.6895,52505684250.0515,54802798858.7002,56752933817.1938,59871368067.6563,62629408092.919,67829555750.8476,74535991979.3048,78039557072.8874,82998880759.8221,88388067006.1336,94074925275.3304,98813503342.5367,100318472355.47,108929716386.904,120952084612.51 -Canada,CAN,"Population, total",SP.POP.TOTL,30685730,31020902,31360079,31644028,31940655,32243753,32571174,32889025,33247118,33628895,34004889,34339328,34714222,35082954,35437435,35702908,36109487,36545236,37065084,37601230,38007166,38226498,38929902 -Canada,CAN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,877363047705.317,911387800049.817,946440061399.149,998506176807.967,1060259016664.75,1147390008931.78,1221860598242.03,1282434850618.64,1322673547258.16,1284496325205.2,1336628963349.76,1403781260484.68,1442044757903.5,1530453431372.55,1595196682591.57,1570419104485.27,1657591887626.39,1743306959310.54,1821483037220.98,1851430732710.42,1780949928557.57,2015126526867.38,2248656780747.11 -Cayman Islands,CYM,"Population, total",SP.POP.TOTL,39658,41054,42456,43862,45286,46727,48177,49647,51123,52602,54074,55492,56860,58212,59559,60911,62255,63581,64884,66134,67311,68136,68706 -Cayman Islands,CYM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,3395415127.17075,3579426001.18982,2506666954.65396,2247527709.29713,2213929718.77153,2351877741.07651,2635204595.37926,2961317695.44801,3295382041.34973,3700878296.23475,3275562304.22552,3610661900.75068,.. -Central African Republic,CAF,"Population, total",SP.POP.TOTL,3759170,3844773,3930648,4026841,4115138,4208834,4294352,4375569,4467233,4564540,4660067,4732022,4773306,4802428,4798734,4819333,4904177,4996741,5094780,5209324,5343020,5457154,5579144 -Central African Republic,CAF,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2417424124.70628,2597681143.9089,2731476980.17601,2652892908.95483,2863010680.63613,2989349235.06357,3227924998.25856,3473342637.81441,3593675341.58467,3961831385.66895,4225957538.35488,4492422406.61788,4910903587.89207,3314143517.70327,3249088436.38074,3580087008.65921,3910067806.77701,4409011233.54022,4791717956.33572,5026635640.06434,5050742580.14359,5391770268.62664,5718673276.43244 -Chad,TCD,"Population, total",SP.POP.TOTL,8259137,8538804,8838369,9196366,9613503,10005012,10365614,10722731,11098664,11496128,11894727,12317730,12754906,13216766,13697126,14140274,14592585,15085884,15604210,16126866,16644701,17179740,17723315 -Chad,TCD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,6312312698.41727,7203023006.41555,7806188192.41844,7894652187.71089,10954453969.8081,13207587568.753,13557476563.6375,14799621692.2587,15149189551.8909,18140049198.8271,21026365631.7118,21644734483.3347,21591587636.4981,19796873664.8052,21921934523.2352,24904346467.7966,23791406629.63,23520168178.8231,24619506688.2696,25854763156.0053,25799718685.8794,26623924772.7001,29133955763.8116 -Channel Islands,CHI,"Population, total",SP.POP.TOTL,145306,146044,147167,148341,149538,150763,151985,153225,154475,155721,156933,157819,158621,159794,160912,162190,163721,165215,167259,169410,171113,172683,174079 -Channel Islands,CHI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Chile,CHL,"Population, total",SP.POP.TOTL,15351799,15523978,15693790,15859112,16017966,16175311,16334575,16495538,16661462,16833447,17004162,17173573,17341771,17509925,17687108,17870124,18083879,18368577,18701450,19039485,19300315,19493184,19603733 -Chile,CHL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,140272785551.141,148284323495.085,154513890929.323,162909670366.872,174121572676.65,188981195876.412,228711518847.374,251050128189.555,254057986121.321,252743553342.144,287919841654.98,318741871194.529,353816711368.114,375186612617.18,385025200175.766,395546267618.996,413012764334.869,433363834230.02,458498081287.065,469155277561.128,451355878982.661,520167561588.666,559603637817.867 -China,CHN,"Population, total",SP.POP.TOTL,1262645000,1271850000,1280400000,1288400000,1296075000,1303720000,1311020000,1317885000,1324655000,1331260000,1337705000,1345035000,1354190000,1363240000,1371860000,1379860000,1387790000,1396215000,1402760000,1407745000,1411100000,1412360000,1412175000 -China,CHN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3638846981214.98,4021977814892.44,4476515568145.3,5043427337791.93,5722835292866.35,6545682659408.01,7645686953048.79,9006909238911.52,10105251737558.4,11038634381698.2,12327139534868.8,13715341860950.3,15089408821925.6,16053445265520.6,17143013848408.6,17711827416520.5,18619312059573.2,19860975136118.3,21644244590428.5,23380863060039.8,24089799612583.7,27327396135942.7,30012338566243.8 -Colombia,COL,"Population, total",SP.POP.TOTL,39215135,39837875,40454050,41057687,41648268,42220940,42772910,43306582,43815313,44313917,44816108,45308899,45782417,46237930,46677947,47119728,47625955,48351671,49276961,50187406,50930662,51516562,51874024 -Colombia,COL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,259119851681.519,268553175357.698,278942606993.311,293377825619.196,317135587242.227,346128974009.171,380374244244.361,415161123434.6,435339701109.348,445336792761.156,468494515041.585,507405547213.148,532590461643.626,571320090863.889,607259189846.402,622183968337.135,658039414706.677,681250506662.521,728608189905.724,779204426067.981,761137697728.106,865813861963.849,1009795123025.52 -Comoros,COM,"Population, total",SP.POP.TOTL,536758,547741,559047,570130,581154,592683,604658,616899,629470,642493,656024,670071,684553,699393,714612,730216,746232,761664,776313,790986,806166,821625,836774 -Comoros,COM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,976788311.072541,1023026151.90821,1059240103.27356,1102100585.56448,1152318820.44598,1223230352.37198,1294996630.1933,1346023484.64695,1420672307.42057,1476965338.29748,1551863140.44777,1650025527.79945,1814962014.89786,1955354402.02041,2071221657.94722,2117437030.24571,2290888118.1283,2479457610.11061,2633149344.5423,2726064431.91739,2753906825.17943,2941322623.58321,3223916305.0913 -"Congo, Dem. Rep.",COD,"Population, total",SP.POP.TOTL,48616317,50106657,51662071,53205639,54815607,56550247,58381630,60289422,62249724,64270232,66391257,68654269,70997870,73460021,76035588,78656904,81430977,84283273,87087355,89906890,92853164,95894118,99010212 -"Congo, Dem. Rep.",COD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,20608363195.4106,19992879403.8804,21266093204.0851,23102819145.1526,25202900383.3811,27232749597.6436,29872916478.1036,32418993552.8375,34028500655.5069,36170952290.1952,39203673075.938,42414784447.5133,43696967208.0706,49142683508.0334,57377953169.9898,63954295208.4024,74312567453.5459,83831229357.6501,90135190414.5636,93934103991.5429,99711065803.5815,109521596026.949,127299527559.27 -"Congo, Rep.",COG,"Population, total",SP.POP.TOTL,3134030,3254101,3331158,3424653,3543012,3672839,3813323,3956329,4089602,4257230,4437884,4584216,4713257,4828066,4944861,5064386,5186824,5312340,5441062,5570733,5702174,5835806,5970424 -"Congo, Rep.",COG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8451311511.90226,8943215089.608,9682774987.32851,10173414219.2203,10062158423.0095,11994945580.8897,14913258216.0597,14168468353.416,16040253074.6069,18942968901.5366,21254381086.756,21470355525.6044,27030906925.2395,27412885857.6535,27693342857.7399,23687637840.2868,21190855495.8002,26125070234.1389,24382175452.2977,26169187618.1983,22698006321.5662,22889482026.4892,24175152349.299 -Costa Rica,CRI,"Population, total",SP.POP.TOTL,3979193,4053222,4122623,4188610,4252800,4315887,4378172,4440019,4501921,4563127,4622252,4679926,4736593,4791535,4844288,4895242,4945205,4993842,5040734,5084532,5123105,5153957,5180829 -Costa Rica,CRI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,29599783943.8605,31321613298.9132,32893941529.3186,34986774589.2915,37665124458.1966,40592113664.9385,45305902567.5191,50536706953.3207,54302452210.9189,53431148071.3225,57034446187.5732,60678375079.9581,65069631805.126,68606627464.7249,73917762456.0251,79359173155.0658,89560838875.14,95456051415.6463,100873416317.615,108117707476.064,104666088592.429,109647620660.148,121064365758.727 -Cote d'Ivoire,CIV,"Population, total",SP.POP.TOTL,16799670,17245468,17683897,18116451,18544903,18970215,19394057,19817700,20244449,20677762,21120042,21562914,22010712,22469268,22995555,23596741,24213622,24848016,25493988,26147551,26811790,27478249,28160542 -Cote d'Ivoire,CIV,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,31593481596.3013,31751339765.3689,31964849050.2473,31703665392.8448,34420921509.9308,39000296860.4881,40895630597.8841,42683677988.2208,46061032802.4283,48329387834.2861,51898403217.5467,48585323041.0442,54762839530.7784,59653079618.0681,96007042384.6619,105693634422.082,111124117363.021,116644132399.153,125423473406.755,135960423768.875,139950850332.607,156178558437.327,178437764982.649 -Croatia,HRV,"Population, total",SP.POP.TOTL,4468302,4299642,4302174,4303399,4304600,4310145,4311159,4310217,4309705,4305181,4295427,4280622,4267558,4255689,4238389,4203604,4174349,4124531,4087843,4065253,4047680,3879000,3855600 -Croatia,HRV,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,46805293068.5858,49046140218.4306,54018270477.6796,56996826402.3026,62158534605.8347,64995463073.8942,74032288061.2919,82394225634.0396,87608217462.0173,83993622200.6613,83310436794.2101,87548812854.3124,88724109401.225,92607700122.0564,93597555575.7581,98859861926.2976,103867195360.673,112214767706.529,117978357768.613,128815489059.665,123164177267.101,137562844639.838,156562983028.07 -Cuba,CUB,"Population, total",SP.POP.TOTL,11105791,11139127,11170051,11199217,11225294,11246114,11260630,11269887,11276609,11283185,11290417,11298710,11309290,11321579,11332026,11339894,11342012,11336405,11328244,11316697,11300698,11256372,11212191 -Cuba,CUB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Curacao,CUW,"Population, total",SP.POP.TOTL,133860,129047,129205,131897,134192,137658,141239,144056,145880,146833,148703,150831,152088,153822,155909,157980,159664,160175,159336,157441,154947,152369,149996 -Curacao,CUW,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,3369627405.04248,3538534802.72725,3724708899.89033,3796820810.77193,3746172940.12007,3845347702.94284,3911807569.75987,3752841478.91487,3738320739.13856,3750457567.29963,3791059547.85258,3764832964.17927,3925553140.61197,3957953922.04198,3939262312.6456,3279949819.50364,3567469084.95583,.. -Cyprus,CYP,"Population, total",SP.POP.TOTL,948237,964830,982194,1000350,1018684,1037062,1055438,1073873,1092390,1110974,1129686,1145086,1156556,1166968,1176995,1187280,1197881,1208523,1218831,1228836,1237537,1244188,1251488 -Cyprus,CYP,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,13508160829.5127,14896307187.9481,15854144524.8343,16730194441.939,17824632148.141,19438133153.0286,21288157031.5546,23610745079.7377,26949237503.8721,27305326459.3236,27398530574.0825,29170325403.7432,27387960617.5528,25902906234.4153,25019054275.3719,26876819266.3675,29340996985.8045,32014349879.759,34096877750.8601,36742243105.6023,34633186090.578,37872866993.0007,43321800295.0734 -Czechia,CZE,"Population, total",SP.POP.TOTL,10255063,10216605,10196916,10193998,10197101,10211216,10238905,10298828,10384603,10443936,10474410,10496088,10510785,10514272,10525347,10546059,10566332,10594438,10629928,10671870,10697858,10505772,10672118 -Czechia,CZE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,163289184102.592,174990894366.907,179426297147.504,192484603500.455,203337684952.78,215196463957.099,229692877464.26,253278202423.726,272806085747.403,269926282568.773,270169548771.739,279834668447.068,287718348866.221,303447928479.576,318616318237.674,332984669940.748,355688613136.584,388039149500.853,413345788814.445,443315371395.955,435313277572.419,459814285286.038,500401699703.477 -Denmark,DNK,"Population, total",SP.POP.TOTL,5339616,5358783,5375931,5390574,5404523,5419432,5437272,5461438,5493621,5523095,5547683,5570572,5591572,5614932,5643475,5683483,5728010,5764980,5793636,5814422,5831404,5856733,5903037 -Denmark,DNK,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,149568949160.096,155451305026.554,162670765274.646,164660673356.909,178237774088.162,186566260237.836,205442946149.714,214126550650.794,229296531979.344,224979284842.662,242457179177.274,252568140433.285,256181803182.809,270675687839.011,280163778604.424,287305055728.283,305037277594.345,326115786258.35,342287470715.698,358440302432.242,365985626551.361,402336760039.138,456741995213.202 -Djibouti,DJI,"Population, total",SP.POP.TOTL,742033,765490,789129,806411,818373,830861,846947,865196,882886,901103,919199,936811,954297,971753,989087,1006259,1023261,1040233,1057198,1073994,1090156,1105557,1120849 -Djibouti,DJI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,3640367439.63263,3939195109.04181,4301609937.92259,4422462225.9087,4615591697.45204,4933336290.1331,5383056941.96004,5517496175.25893,6085216796.39059,6732773700.70235 -Dominica,DMA,"Population, total",SP.POP.TOTL,68346,68153,68262,68442,68574,68674,68742,68775,68782,68787,68755,68742,68888,68819,69371,70007,70075,70403,70823,71428,71995,72412,72737 -Dominica,DMA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,399891562.555747,429072984.438737,418853475.437719,456800296.4661,477032748.67028,501328468.809462,565034929.073372,611971564.345754,672700084.289188,677525203.199246,696531243.385957,708013848.57651,691928396.38625,692344687.139737,751075194.046559,765269555.706674,820840503.84638,813271710.286844,860634484.250754,906804038.762616,790898103.448544,872285185.973601,982245124.416585 -Dominican Republic,DOM,"Population, total",SP.POP.TOTL,8540791,8669040,8795101,8919852,9043127,9164768,9284168,9402206,9522948,9648061,9775755,9903737,10030882,10157051,10282115,10405832,10527592,10647244,10765531,10881882,10999664,11117873,11228821 -Dominican Republic,DOM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,54795340763.4849,57420258830.929,60947905837.3844,59868229227.1213,62009311689.6216,72079439405.5664,81482933426.3781,89737081386.4283,95716906105.3495,97308812710.2115,106678083148.086,111949190644.908,113509281367.5,119476175531.955,130354685179.135,145306712793.565,160308245042.034,167596990114.477,184433746623.663,196691855878.065,185329299211.708,217085464875.688,246147069175.89 -Ecuador,ECU,"Population, total",SP.POP.TOTL,12626507,12845521,13070609,13301184,13534593,13770012,14009061,14251835,14496797,14742766,14989585,15237728,15483883,15722989,15957994,16195902,16439585,16696944,17015672,17343740,17588595,17797737,18001000 -Ecuador,ECU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,69019538867.9904,74700827123.7799,79512467990.9829,83103548346.2177,91927899807.2355,100515339271.019,108710227984.446,113994194611.944,125631527132.266,127594993472.713,134535683705.727,147975619638.375,157133177890.528,172493513104.366,183940790238.329,176078605364.199,178491385667.622,190452902888.886,196713748004.245,199882255337.957,186008276986.111,206228427781.489,227146176190.793 -"Egypt, Arab Rep.",EGY,"Population, total",SP.POP.TOTL,71371371,72854261,74393759,75963322,77522427,79075310,80629670,82218755,83844783,85501064,87252413,89200054,91240376,93377890,95592324,97723799,99784030,101789386,103740765,105618671,107465134,109262178,110990103 -"Egypt, Arab Rep.",EGY,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,400228934890.431,426414972799.404,439045031580.628,460872033704.439,491973618665.921,529979703117.61,588272785674.453,649622504544.298,708989489351.388,741297423322.699,772471367883.906,797765801524.506,936405442609.556,966549119173.092,961846565220.621,1045815284633.65,1042867889031.84,1098588254427.46,1178310551513.97,1252250922533.66,1320385566639.65,1425673854628.33,1620106530367.13 -El Salvador,SLV,"Population, total",SP.POP.TOTL,5958482,5988095,6011275,6026849,6035655,6037817,6034436,6044131,6068099,6091188,6114034,6137349,6161289,6185642,6209526,6231066,6250510,6266654,6276342,6280217,6292731,6314167,6336392 -El Salvador,SLV,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,25716544653.0733,26523006149.5229,27250880999.0137,28038045014.3381,29004384027.4345,30715883811.6663,33242409204.2337,34790366024.8658,36414694483.7471,35510178284.5481,36802513506.9704,38932390718.9747,39142615687.2106,41152360305.4393,43447081739.4438,45817642299.8657,48462157551.1229,51005469953.4391,53442565171.7254,56077069898.7659,52338663446.0644,60628121646.2066,66280863085.3055 -Equatorial Guinea,GNQ,"Population, total",SP.POP.TOTL,684977,719270,754115,789681,826355,864726,905418,948814,994971,1043686,1094524,1144588,1193636,1243941,1295183,1346973,1398927,1450694,1502091,1553031,1596049,1634466,1674908 -Equatorial Guinea,GNQ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3565421438.58805,4053646525.63044,5414526832.0242,5382753717.18802,7065291700.21971,10648905085.5563,18326292446.1798,22038350231.5449,24526716413.0493,22323793413.9795,18265924518.9923,21889346128.883,25687593216.8693,25581464599.311,25707960045.8039,21190569158.2367,19263632756.1753,20954718048.3485,20920681047.1645,19271673467.2209,19106433533.0952,20077171651.3201,21416276863.0714 -Eritrea,ERI,"Population, total",SP.POP.TOTL,2392880,2461927,2547424,2653390,2763140,2831732,2880093,2926168,3005779,3083888,3147727,3207570,3252596,3296367,3323425,3340006,3365287,3396933,3445374,3498818,3555868,3620312,3684032 -Eritrea,ERI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3502520683.28036,3880182235.80024,4037777641.88576,3997060844.34791,4152637317.32313,4416336075.57327,4514814625.57345,4711046752.24592,4318471379.56046,4513771671.91731,4651089673.59473,5164760114.43522,..,..,..,..,..,..,..,..,..,..,.. -Estonia,EST,"Population, total",SP.POP.TOTL,1396985,1388115,1379350,1370720,1362550,1354775,1346810,1340680,1337090,1334515,1331475,1327439,1322696,1317997,1314545,1315407,1315790,1317384,1321977,1326898,1329522,1330932,1348840 -Estonia,EST,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12667492838.5403,13617838206.7515,15237943834.898,16957852631.4056,18696395797.7984,21499501319.2193,24613079249.268,27450518224.9706,28894882167.8546,26495511627.9969,27236620889.9034,30933346364.3471,32958010835.542,35321118478.4772,36967108884.2073,37534878529.7072,40284437405.3942,43460557703.3808,47113819402.8105,51091852028.604,51647436864.3233,56440402560.8136,60962850854.9651 -Eswatini,SWZ,"Population, total",SP.POP.TOTL,1030496,1041396,1050809,1058797,1065764,1071886,1077735,1084008,1089870,1094886,1099920,1105371,1111444,1118319,1125865,1133936,1142524,1151390,1160428,1169613,1180655,1192271,1201670 -Eswatini,SWZ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,4835544007.13925,5225310826.08034,5206397970.85704,5397562738.02488,5860596695.07402,6760034398.51757,7023595891.75963,7590309941.20346,7695967640.23254,7712694582.01823,7854478217.59055,8114103567.84471,8346171990.2146,9058385441.98997,9226708730.12028,9347907543.56745,9176866992.06291,8823555611.37799,9234790733.90683,9313972658.84204,9302155225.89224,11014786460.5919,11815171641.8058 -Ethiopia,ETH,"Population, total",SP.POP.TOTL,67031867,69018932,71073215,73168838,75301026,77469940,79691050,81996185,84357105,86755585,89237791,91817929,94451280,97084366,99746766,102471895,105293228,108197950,111129438,114120594,117190911,120283026,123379924 -Ethiopia,ETH,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,31709569421.4444,35153364909.1578,36220115501.7844,36106147528.8372,42166685855.7056,48794472563.372,55770778598.6658,64046772909.527,72318569548.452,79028887577.0133,89806292572.8253,102066933556.261,112283157655.966,122160005499.923,148077638928.901,166439908210.722,194015690748.877,213816795462.579,234225274025.696,257936024325.075,277262954043.391,306228964374.369,345439467982.422 -Faroe Islands,FRO,"Population, total",SP.POP.TOTL,45660,46245,46813,47392,47989,48291,48313,48361,48411,48429,48410,48386,48392,48418,48465,48816,49500,50230,50955,51681,52415,52889,53090 -Faroe Islands,FRO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Fiji,FJI,"Population, total",SP.POP.TOTL,832509,841320,849891,858306,866694,874923,883083,890648,896731,901383,905169,908355,911059,913453,915560,917200,918371,919019,918996,918465,920422,924610,929766 -Fiji,FJI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,4821962312.54806,4889918722.4298,5210367836.91124,5325630856.76595,5756533515.64823,6064912270.60871,6029914207.19363,6248426739.27117,6418545735.77951,6505552157.38816,6593835894.43265,6915550183.69762,7364419211.78208,8093222996.08199,9375291022.39162,10126984895.8987,10412234870.8023,10852371080.1822,11719392209.1653,11628233337.9505,9979030706.09105,9974208272.1513,12881055233.9484 -Finland,FIN,"Population, total",SP.POP.TOTL,5176209,5188008,5200598,5213014,5228172,5246096,5266268,5288720,5313399,5338871,5363352,5388272,5413971,5438972,5461512,5479531,5495303,5508214,5515525,5521606,5529543,5541017,5556106 -Finland,FIN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,137806131108.521,144179084234.692,149214583627.633,150561254991.512,164276796769.437,168848220995.197,183088910459.9,200726865789.806,213338084144.169,205248674557.414,211629477125.489,221315089725.945,222320431042.548,226606741870.886,230341376307.58,235157775065.327,248052265025.91,262157314767.321,274554727049.966,287558398465.687,293943539783.871,308265492506.26,333224276937.647 -France,FRA,"Population, total",SP.POP.TOTL,60921384,61367388,61816234,62256970,62716306,63188395,63628261,64021737,64379696,64710879,65030575,65345233,65662240,66002289,66312067,66548272,66724104,66918020,67158348,67388001,67571107,67764304,67971311 -France,FRA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1614662595813.76,1717459279886.55,1781288096300.79,1776968684095.34,1847472145315.95,1959874866060.42,2106888554839.65,2227989588807.41,2308471504999.58,2295545432738.83,2388599175125.05,2511515271090.53,2528097207038.72,2666952095933.8,2719730300347.34,2777204974934.9,2924692709642.01,3050429224953.88,3197837511869.07,3476171529249.48,3288242581226.43,3558269685403.67,3831439131867.51 -French Polynesia,PYF,"Population, total",SP.POP.TOTL,250927,255049,259137,263173,267132,271060,274901,278178,280558,282283,283788,285265,286584,288032,289873,291787,293541,295450,297606,299717,301920,304032,306279 -French Polynesia,PYF,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Gabon,GAB,"Population, total",SP.POP.TOTL,1272935,1306590,1341696,1378398,1417110,1458353,1502534,1549774,1599978,1653542,1711105,1772500,1836705,1902226,1966855,2028517,2086206,2140215,2192012,2242785,2292573,2341179,2388992 -Gabon,GAB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,14543817534.591,15525160679.1476,16360915716.1702,16691206135.5662,16408010278.0054,18475912132.9124,17857864991.8186,19101023570.8293,18999300104.9307,19708741354.0316,20934089130.2157,22729974762.4942,24187166236.5611,24803028471.2847,27448373201.6419,26252661543.3818,26457471076.3386,29027529828.7639,29887001626.8806,31113608660.0589,31876723949.6743,30117860004.1999,35527951625.548 -"Gambia, The",GMB,"Population, total",SP.POP.TOTL,1437539,1479449,1522223,1566257,1612225,1660368,1711294,1764883,1820542,1878119,1937275,1998212,2061014,2124869,2189019,2253133,2317206,2381182,2444916,2508883,2573995,2639916,2705992 -"Gambia, The",GMB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2388380089.46494,2578165470.13148,2505436376.39486,2781914365.26791,3138810917.84187,3159831995.24929,3232764662.2328,3433757906.83412,3733035877.90226,3995499235.45418,4282096918.38596,4002461735.10188,4103967194.68281,4076131550.67062,4006121655.97443,4207793058.65318,4362686911.60081,4502345653.44125,4950842109.36375,5358326266.56029,5469746726.47597,5897028783.27854,6659395197.83357 -Georgia,GEO,"Population, total",SP.POP.TOTL,4077131,4014373,3978515,3951736,3927340,3902469,3880347,3860158,3848449,3814419,3786695,3756441,3728874,3717668,3719414,3725276,3727505,3728004,3726549,3720161,3722716,3708610,3712502 -Georgia,GEO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12804550170.5559,13640598614.8269,14565758055.3987,16484579453.8,18122655110.6218,20384085510.434,23250161215.7141,26427619848.6316,27361237697.1256,26546979472.6972,28147602157.8712,30519613226.4118,36257009738.4886,38723289569.7477,42492961933.5167,44015459770.8487,45709833895.1989,48181537162.6113,52276879822.4951,55540122569.9118,52345319525.4402,59397576296.504,69637465090.8984 -Germany,DEU,"Population, total",SP.POP.TOTL,82211508,82349925,82488495,82534176,82516260,82469422,82376451,82266372,82110097,81902307,81776930,80274983,80425823,80645605,80982500,81686611,82348669,82657002,82905782,83092962,83160871,83196078,83797985 -Germany,DEU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2223925245140.92,2320182320935.18,2381368004844.2,2443495916355.9,2601184150079.19,2643689105682.11,2861415784500.06,3028970481260.68,3133424995825.21,3083319155021.96,3249163748740.81,3502470398953.27,3570904139239.83,3712581829258.22,3883389666513.64,3977709151007.17,4268495684340.31,4491247786267.96,4730327637032.14,4949031169284.13,4828839092857.67,5102420692212.32,5530047562033.85 -Ghana,GHA,"Population, total",SP.POP.TOTL,19665502,20195577,20758326,21329514,21906444,22496951,23098586,23708320,24326087,24950762,25574719,26205941,26858762,27525597,28196358,28870939,29554303,30222262,30870641,31522290,32180401,32833031,33475870 -Ghana,GHA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,44843292547.3196,47890616150.9889,50810251354.8494,54491599254.213,59068691969.1854,64817311035.8881,70023435689.2601,76291751640.7797,84971365836.6861,89689041974.0898,96981351069.8425,111658379163.482,126012760957.806,136957246170.144,143670731901.312,140624612115.261,136623482244.943,141646107789.028,154730989863.269,168439527387.336,180743097569.356,190378378899.62,214410418943.175 -Gibraltar,GIB,"Population, total",SP.POP.TOTL,27741,27721,27892,28301,28716,29155,29587,29996,30398,30819,31262,31701,32160,32411,32452,32520,32565,32602,32648,32685,32709,32669,32649 -Gibraltar,GIB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Greece,GRC,"Population, total",SP.POP.TOTL,10805808,10862132,10902022,10928070,10955141,10987314,11020362,11048473,11077841,11107017,11121341,11104899,11045011,10965211,10892413,10820883,10775971,10754679,10732882,10721582,10698599,10569207,10426919 -Greece,GRC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,308763168231.047,315638048469.423,331637075164.807,329717647726.869,303548758817.362,277177153049.163,277445806184.941,284938615777.952,291893761607.501,289335045232.896,295022258656.427,306093821136.232,314377061805.023,331031374285.147,302083158722.807,330131332887.296,382567947777.672 -Greenland,GRL,"Population, total",SP.POP.TOTL,56200,56350,56609,56765,56911,56935,56774,56555,56328,56323,56905,56890,56810,56483,56295,56114,56186,56172,56023,56225,56367,56653,56661 -Greenland,GRL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Grenada,GRD,"Population, total",SP.POP.TOTL,107432,107936,108231,108740,109516,110254,110988,111725,112478,113249,114039,114918,115912,116945,117972,118980,119966,120921,121838,122724,123663,124610,125438 -Grenada,GRD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,733974071.115943,723731280.153633,753291982.260362,843304275.921427,838339694.406903,1054320264.13558,1042689734.93986,1121243485.11449,1156566507.50408,1052580068.07276,1094428581.66484,1138673428.05648,1148161514.25938,1246679156.75531,1291260565.40894,1369067757.03206,1505244506.19547,1603862847.11622,1732027111.65556,1776218154.56181,1597573364.24812,1733981013.35711,1958599175.69483 -Guam,GUM,"Population, total",SP.POP.TOTL,160188,161524,162563,163385,164004,164430,164675,164763,164725,164580,164905,165649,166392,167054,167543,167978,168346,168606,168678,168624,169231,170534,171774 -Guam,GUM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Guatemala,GTM,"Population, total",SP.POP.TOTL,11589761,11871565,12147518,12415334,12682108,12948292,13213330,13477017,13739299,14000190,14259687,14521515,14781942,15043981,15306316,15567419,15827690,16087418,16346950,16604026,16858333,17109746,17357886 -Guatemala,GTM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,54463891154.5771,57440007121.4572,59906378594.8518,62706303613.8299,66230666005.1143,70494035986.7824,76186339569.8788,83014420336.9212,88167498292.8651,88867704977.67,91985130673.0567,97566174068.503,104298818856.498,109413614759.15,115639774629.872,124517142875.708,127323281384.073,131078217588.09,138868111220.923,147383098889.533,146650525628.685,164379823401.238,184024963449.263 -Guinea,GIN,"Population, total",SP.POP.TOTL,8336967,8445717,8577790,8772254,8961039,9140114,9330625,9547082,9779785,10021323,10270728,10527712,10788692,11055430,11333365,11625998,11930985,12240789,12554864,12877539,13205153,13531906,13859341 -Guinea,GIN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9909271556.554,10456615817.2891,11322277520.3711,11203897478.7177,11750601774.3206,12292234695.6462,13583626121.4796,14896100221.6699,15760668716.0795,15493779478.8836,16667173170.9181,17815489450.0403,18819737532.1312,18776195192.3567,19471089653.473,20460340883.4776,23977048840.5844,29033817415.4821,30683947839.9874,32701274013.0599,32577037089.7884,33879699045.2103,39775506660.1207 -Guinea-Bissau,GNB,"Population, total",SP.POP.TOTL,1230849,1257380,1285678,1315653,1347009,1379713,1414091,1450572,1488431,1527196,1567220,1609017,1652717,1697753,1743309,1788919,1834552,1879826,1924955,1970457,2015828,2060721,2105566 -Guinea-Bissau,GNB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1243835258.82085,1290274910.66864,1323827827.35158,1354737412.43909,1434996790.57898,1542942633.95469,1643949134.06291,1751200254.89373,1822285316.90993,1902174064.03593,2030228734.21679,2262774007.23512,2187093803.73918,2205787895.62385,2415238570.21739,2842389875.31444,3191999767.76646,3526798653.49018,3526447615.19273,3965150370.87223,3905155802.51003,4170290340.56063,4674576493.11233 -Guyana,GUY,"Population, total",SP.POP.TOTL,759051,759809,760323,760562,760424,759709,758367,756521,754150,751258,747932,744230,743966,747420,751115,755031,759087,763252,785514,798753,797202,804567,808726 -Guyana,GUY,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,4370645986.30391,4551575568.88511,4667771311.60953,4764832874.73066,5004514206.46634,5092990914.35309,5406445629.93779,6112072117.16231,6333531399.86381,6601380258.55863,7020540230.15024,7491848905.65813,7962994678.15606,8426962216.80912,8414360301.65355,8643543597.91463,8704968441.42526,9284265203.32933,9896200509.70331,10578576209.6018,15066427326.6883,18395416683.8318,30935786479.0778 -Haiti,HTI,"Population, total",SP.POP.TOTL,8360225,8511728,8661546,8812245,8961489,9111900,9266288,9420826,9575247,9730638,9842880,9954312,10108539,10261206,10412740,10563757,10713849,10863543,11012421,11160438,11306801,11447569,11584996 -Haiti,HTI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,18476349981.439,18825088588.8413,19305894330.9875,20359669456.0773,20647008652.6019,21883626443.3199,23092847751.3537,24817619085.8354,25973515216.3268,27695557256.6333,26464857343.8593,28421083478.0413,28430225571.7826,30770903952.9245,31400066068.2763,31121716603.0832,33740329297.4266,34898553350.8227,36304204752.1323,36327453896.9087,35537648923.297,36435008232.5219,38346797634.9995 -Honduras,HND,"Population, total",SP.POP.TOTL,6656725,6837861,7019908,7201881,7383407,7564613,7745200,7924462,8101777,8277302,8450933,8622504,8792367,8960657,9127846,9294505,9460798,9626842,9792850,9958829,10121763,10278345,10432860 -Honduras,HND,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,16489981943.9831,17270928444.3925,18119495900.194,19185327117.2087,20779706441.4082,22835465525.1433,25035171357.1606,27773885528.1795,29596899240.9045,29347467679.6956,29984357601.5414,31543206984.345,32434184466.3081,33877209105.7523,36670949177.8273,40958557201.2629,44378738267.0099,49236539040.6263,51379944315.9186,53661323998.9654,50006582940.2238,57934180748.8276,64937900505.7671 -"Hong Kong SAR, China",HKG,"Population, total",SP.POP.TOTL,6665000,6714300,6744100,6730800,6783500,6813200,6857100,6916300,6957800,6972800,7024200,7071600,7150100,7178900,7229500,7291300,7336600,7393200,7452600,7507900,7481000,7413100,7346100 -"Hong Kong SAR, China",HKG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,189604452124.468,197867815964.486,200969454371.108,215223345797.095,239197589331.266,260784898902.045,292986040326.05,322976357796.176,344928261544.409,329370142960.759,352837599993.759,379780810643.688,378882956243.058,392752239125.688,404211342098.222,418904765973.878,430388834197.364,461647487796.236,488114728882.808,489945876552.516,467306093620.183,525143925276.168,543338378965.212 -Hungary,HUN,"Population, total",SP.POP.TOTL,10210971,10187576,10158608,10129552,10107146,10087065,10071370,10055780,10038188,10022650,10000023,9971727,9920362,9893082,9866468,9843028,9814023,9787966,9775564,9771141,9750149,9709891,9643048 -Hungary,HUN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,114024484849.544,126771603182.422,139177319914.304,148019696401.916,154386028292.569,161749529490.752,173685327804.877,177474543501.188,194321209236.065,198657603769.961,207182793029.148,218522658665.798,221049096122.124,235791190025.572,242043953893.62,251155582375.752,266826704983.726,277026584081.588,299709601062.391,329591186689.154,325203886045.65,345356195038.318,390028413045.834 -Iceland,ISL,"Population, total",SP.POP.TOTL,281205,284968,287523,289521,292074,296734,303782,311566,317414,318499,318041,319014,320716,323764,327386,330815,335439,343400,352721,360563,366463,372520,382003 -Iceland,ISL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8062590839.41794,8779666005.49259,9390431859.41103,9392200309.12645,10034394856.0971,10526296722.7951,11038782750.9531,12087150553.0472,10807260433.594,10697949151.33,10229671486.1867,11022605832.7629,11766282593.5493,13631427233.6515,14240759323.4076,15371988994.7328,17105490646.8223,18517234339.2321,19149077697.5175,21466829308.7845,19458107844.9828,20681740044.9856,25180548142.9124 -India,IND,"Population, total",SP.POP.TOTL,1059633675,1078970907,1098313039,1117415123,1136264583,1154638713,1172373788,1189691809,1206734806,1223640160,1240613620,1257621191,1274487215,1291132063,1307246509,1322866505,1338636340,1354195680,1369003306,1383112050,1396387127,1407563842,1417173173 -India,IND,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2188197810580.6,2350069155250.24,2482413330532.69,2728406064263.61,3024818504470.17,3366286523972.84,3747530644432.66,4158793573561.99,4361562882389.68,4734626196573.87,5173866049799.72,5568974800594.08,6080904818580.88,6396857208765.58,6700838433954.79,7076731493415.84,7646352507337.46,8187427038375.65,8926347411366.43,9448744555456.34,8978916905861.19,10163358058116.3,11666714989403.6 -Indonesia,IDN,"Population, total",SP.POP.TOTL,214072421,217112437,220115092,223080121,225938595,228805144,231797427,234858289,237936543,240981299,244016173,247099697,250222695,253275918,256229761,259091970,261850182,264498852,267066843,269582878,271857970,273753191,275501339 -Indonesia,IDN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,935804878101.089,1022800950350.48,1093552336399.38,1158177645421.18,1239428936328.46,1347135352959.08,1474420561364.14,1612836138271.13,1752776678972.4,1846693209644.41,2002429397248.77,2167767372901.2,2345311900448.7,2459271038451.8,2534329758229.12,2559879525249.97,2657025035417.73,2802422575150.81,3024166767768.49,3230929292162.19,3215211155228.02,3485182675504.41,3927214417167.51 -"Iran, Islamic Rep.",IRN,"Population, total",SP.POP.TOTL,65544383,66674851,67327117,67954699,69061674,70182594,71275760,72319418,73318394,74322685,75373855,76342971,77324451,78458928,79961672,81790841,83306231,84505076,85617562,86564202,87290193,87923432,88550570 -"Iran, Islamic Rep.",IRN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,713734871284.961,747649588231.866,820996390270.385,908738466529.059,970447651737.183,1032625475518.74,1120025206676.55,1246771188234.44,1274532713979.18,1291331768119.84,1383206654511.67,1450159210166.74,1304208891173.45,1258586972971.48,1262255381766.87,1131882731796.44,1222831727825.07,1282944257114.51,1294776881215.48,1271144096869.77,1328132616411.54,1455270397065.84,1614694122984.95 -Iraq,IRQ,"Population, total",SP.POP.TOTL,24628858,25425663,26255343,27068823,27858948,28698684,28905607,28660887,29218381,30289040,31264875,32378061,33864447,35481800,36746488,37757813,38697943,39621162,40590700,41563520,42556984,43533592,44496122 -Iraq,IRQ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,257916016422.328,268149102389.737,247479656926.688,162820327521.143,256524071287.962,244264308521.47,276607450184.409,295532744749.53,346581027009.635,361024504166.723,382621510097.688,414738530059.061,485908868995.167,512778423816.27,475188243983.579,344166566458.249,341955300330.615,392252667154.881,412254453644.223,444003659896.34,393669333933.365,417890434575.841,481737455267.964 -Ireland,IRL,"Population, total",SP.POP.TOTL,3805174,3866243,3931947,3996521,4070262,4159914,4273591,4398942,4489544,4535375,4560155,4580084,4599533,4623816,4657740,4701957,4755335,4807388,4867316,4934340,4985382,5033164,5127170 -Ireland,IRL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,100216654340.165,107579606888.477,116111294637.356,125018857737.689,136082412681.885,145786461890.646,165758815081.34,177906448039.045,171652233529.25,157128965077.252,165623062200.281,168093133841.564,172565498522.608,187003217344.569,201474192378.648,250021710885.454,277425395542.43,298079147286.335,319737719858.523,343851263269.983,352564780468.318,407031350191.008,467018703509.365 -Isle of Man,IMN,"Population, total",SP.POP.TOTL,75562,76398,77183,77939,78677,79415,80228,81100,81997,82915,83828,84350,84338,84144,83896,83593,83450,83580,83775,83933,84046,84263,84519 -Isle of Man,IMN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Israel,ISR,"Population, total",SP.POP.TOTL,6289000,6439000,6570000,6689700,6809000,6930100,7053700,7180100,7308800,7485600,7623600,7765800,7910500,8059500,8215700,8380100,8546000,8713300,8882800,9054000,9215100,9371400,9557500 -Israel,ISR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,151976513599.429,159032578622.611,165064002811.698,159142952554.679,172309766714.997,176114620721.309,185109887837.487,202056410309.922,200721110207.501,204468865966.878,219809559469.434,239356485294.554,249851617224.029,274305757734.077,283493605069.756,297313043699.867,322442106410.672,341030566156.125,355650262480.368,366284237884.984,365809890894.312,407282313522.876,471445791032.286 -Italy,ITA,"Population, total",SP.POP.TOTL,56942108,56974100,57059007,57313203,57685327,57969484,58143979,58438310,58826731,59095365,59277417,59379449,59539717,60233948,60789140,60730582,60627498,60536709,60421760,59729081,59438851,59133173,58940425 -Italy,ITA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1535971291818.49,1592612450389.53,1632366431124.16,1665385842946.31,1702061374006.73,1749401793158.77,1894344600465.43,1996948020334.17,2070619017116.37,2043604752921.96,2079581022494.46,2167673493812.34,2169728418375.06,2183586848754.71,2200447242186.78,2225428932683.9,2427621534122.07,2531219823306.44,2629049101683.88,2757339316139.1,2597495789004.01,2850173116718.66,3140288799313.1 -Jamaica,JAM,"Population, total",SP.POP.TOTL,2612205,2625405,2638244,2651027,2664024,2676863,2689660,2701221,2711373,2722401,2733896,2746169,2759817,2773129,2784543,2794445,2802695,2808376,2811835,2813773,2820436,2827695,2827377 -Jamaica,JAM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,16198819227.8864,16633576266.9581,16964886781.5158,17966244610.5084,18759162113.9927,19460574187.2782,20830164342.1713,21697481695.2185,22170926804.9116,21039396821.9189,21374885138.9298,22231688676.0653,22955384111.7384,23571567007.3424,24040872097.6023,24629832105.9002,25591030546.743,27243293670.6711,28148755838.5433,29209840318.0254,26518127107.1689,29114616765.1544,33071093552.7509 -Japan,JPN,"Population, total",SP.POP.TOTL,126843000,127149000,127445000,127718000,127761000,127773000,127854000,128001000,128063000,128047000,128070000,127833000,127629000,127445000,127276000,127141000,127076000,126972000,126811000,126633000,126261000,125681593,125124989 -Japan,JPN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3511271813876.38,3608076636937.38,3701173656289.74,3814570895476.81,4014995178768.02,4201587695067.98,4415235266797.66,4619429794420.16,4638617178018.89,4403592894666.1,4645945128260.86,4764015870154.12,4932125343801.04,5194308150190.67,5221591072071.17,5404452911056.24,5338418864031.4,5456929841830.38,5548453034657.65,5562601947410.04,5454176946275.29,5644756120946.17,6065805409344.57 -Jordan,JOR,"Population, total",SP.POP.TOTL,5056174,5163310,5275532,5396117,5532423,5678534,6075548,6473457,6632873,6780493,6931258,7109980,7211863,7694814,8658026,9494246,9964656,10215381,10459865,10698683,10928721,11148278,11285869 -Jordan,JOR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,30742778322.5432,33292804639.9135,35387451224.7076,37794503685.6467,42601406820.1849,47646608240.3313,53266868176.73,59379550274.7365,63916101422.2394,67367370847.0694,68160327684.8568,71405408210.784,73428347047.9583,78636175000.5472,80958153787.5014,86720642817.8973,89557524105.0722,97876027659.4275,102190698549.227,106352894443.719,106231772857.549,114812644321.281,125198270363.431 -Kazakhstan,KAZ,"Population, total",SP.POP.TOTL,14883626,14858335,14858948,14909019,15012984,15147029,15308085,15484192,15776938,16092822,16321872,16557202,16792090,17035551,17288285,17542806,17794055,18037776,18276452,18513673,18755666,19000988,19621972 -Kazakhstan,KAZ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,107816757151.966,126845695040.868,142850336882.561,157217723162.687,174878876408.993,190634986132.239,213164964906.706,236242961203.028,242554086610.529,257877751542.793,272752178464.443,294494040832.3,319954479745.24,373088584431.434,383650191925.914,381745816544.331,382306984208.954,399678715602.478,419272685495.827,445033960334.39,458061076226.162,480272457620.914,536322534923.297 -Kenya,KEN,"Population, total",SP.POP.TOTL,30851606,31800343,32779823,33767122,34791836,35843010,36925253,38036793,39186895,40364444,41517895,42635144,43725806,44792368,45831863,46851488,47894670,48948137,49953304,50951450,51985780,53005614,54027487 -Kenya,KEN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,57970414713.3763,61462961144.6165,62864170762.5831,65888657462.2014,71239152959.8157,78318823657.7625,85778707119.1403,93983872113.6827,96314771272.9306,87505887031.7327,96188911697.7088,105284725887.098,111702555544.44,124600115565.074,139107161405.764,158922253444.33,190212512400.661,207091719434.378,224949122976.306,240474148155.871,242638026922.185,272927730736.351,306731346394.396 -Kiribati,KIR,"Population, total",SP.POP.TOTL,88826,90531,92400,94302,96224,98164,100083,101998,103966,105996,107995,109871,111618,113311,114985,116707,118513,120362,122261,124241,126463,128874,131232 -Kiribati,KIR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,215740256.78469,231271151.282476,225820204.359753,221387863.824186,216182559.825928,227357084.376593,237386711.332727,250593940.656262,253097068.840189,243645467.580243,258091452.650767,252153113.824601,296627434.894241,340504158.14849,393855035.675671,477001523.197292,414126119.021402,452440395.666278,474186954.732428,536492401.486905,473681510.008661,488189629.769695,508275623.644807 -"Korea, Dem. People's Rep.",PRK,"Population, total",SP.POP.TOTL,23367059,23512522,23638411,23781707,23948930,24100982,24235761,24356506,24469047,24581509,24686435,24783789,24887770,25001819,25126131,25258015,25389611,25516321,25638149,25755441,25867467,25971909,26069416 -"Korea, Dem. People's Rep.",PRK,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -"Korea, Rep.",KOR,"Population, total",SP.POP.TOTL,47008111,47370164,47644736,47892330,48082519,48184561,48438292,48683638,49054708,49307835,49554112,49936638,50199853,50428893,50746659,51014947,51217803,51361911,51585058,51764822,51836239,51744876,51628117 -"Korea, Rep.",KOR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,865644442260.788,928025906793.228,1015663096721.17,1054530303017.17,1141124345956.41,1205046439840.2,1298424910845.66,1411398167221.23,1469369248901.13,1452739634577.62,1575029690364.29,1635336002448.05,1702177999918.46,1737909546523.48,1801276221059.28,1939637111593.39,2034377961086.03,2112226195329.95,2229385035793.88,2266520881778.47,2337034007241.07,2462968771507.94,2636639014686.19 -Kosovo,XKX,"Population, total",SP.POP.TOTL,1700000,1701154,1702310,1703466,1704622,1705780,1719536,1733404,1747383,1761474,1775680,1791000,1807106,1818117,1812771,1788196,1777557,1791003,1797085,1788878,1790133,1786038,1761985 -Kosovo,XKX,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,11967559313.1508,12297158128.054,13054785492.8913,14275227103.3244,14992886310.828,15607262124.9176,16014472672.689,17005559029.9495,18008772529.4571,19065769873.3943,20128080403.8767,21586478954.4192,20729776378.0854,23867080594.5137,26719926714.0611 -Kuwait,KWT,"Population, total",SP.POP.TOTL,1934901,1991674,2047364,2101506,2153481,2235403,2363409,2506769,2650930,2795550,2943356,3143825,3394663,3646518,3761584,3908743,4048085,4124904,4317185,4441100,4360444,4250114,4268873 -Kuwait,KWT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,135146081370.487,134117731373.633,133816938164.126,157524605800.541,183806011959.534,210918124303.062,237989613021.596,254129076730.206,256985116236.613,238649571821.201,239386659995.866,262123336778.361,291438375133.72,296212687021.712,283545175393.602,201226216155.384,197466766535.322,238367604379.734,245085071637.267,251166771081.719,233368212770.549,251315166443.091,286854665438.209 -Kyrgyz Republic,KGZ,"Population, total",SP.POP.TOTL,4898400,4945100,4990700,5043300,5104700,5162600,5218400,5268400,5318700,5383300,5447900,5514600,5607200,5719600,5835500,5956900,6079500,6198200,6322800,6456200,6579900,6773400,6974900 -Kyrgyz Republic,KGZ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8573036595.76148,9440063161.64065,9612982381.30177,10532020173.4172,11408908936.2224,11873569554.1155,12866290046.7583,14396713748.8664,15471423790.5823,16045652967.8889,15742285061.6136,16250508927.9969,19767684148.4975,21790220340.6309,23953408500.4251,24127188672.2475,26964623069.93,29771394477.5488,32227544353.033,32445979226.5541,32255648936.1439,34231117830.268,39567641322.0408 -Lao PDR,LAO,"Population, total",SP.POP.TOTL,5430853,5519707,5606101,5689065,5768167,5852970,5946593,6041348,6135861,6229930,6323418,6416327,6508803,6600742,6691454,6787419,6891363,6997917,7105006,7212053,7319399,7425057,7529475 -Lao PDR,LAO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9343426247.31824,10123229259.7049,10917173172.5153,11569514906.4782,12836707097.9608,14431004985.1643,15642850425.7694,17656220725.765,19161875886.4825,21136802978.8296,22376117248.2891,24562505655.0219,29339581968.0931,32738513911.8901,37279715376.9593,39733495397.8879,44835845956.4027,47800441425.8902,52527715514.003,55530353839.4467,56443933475.2408,60630662646.3148,65392913286.9756 -Latvia,LVA,"Population, total",SP.POP.TOTL,2367550,2337170,2310173,2287955,2263122,2238799,2218357,2200325,2177322,2141669,2097555,2059709,2034319,2012647,1993782,1977527,1959537,1942248,1927174,1913822,1900449,1884490,1879383 -Latvia,LVA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,19012909949.0864,21205811439.5028,23329055779.9609,25185032125.0099,27214999586.8089,30828211640.8872,34297098752.0503,38938891196.5638,42076402764.6983,39000708113.3672,37513715352.283,39603982323.0753,43008087664.435,45461971554.5265,47544149626.7772,49153645022.0974,52287488003.9626,55551446019.6022,58562307753.5406,61885837592.2307,62357678158.6339,64306374701.6001,73736516684.0933 -Lebanon,LBN,"Population, total",SP.POP.TOTL,4320642,4389200,4446666,4504807,4574797,4643044,4719864,4809608,4887613,4951135,4995800,5045056,5178337,5678851,6274342,6398940,6258619,6109252,5950839,5781907,5662923,5592631,5489739 -Lebanon,LBN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,35000922472.8739,36332169919.4122,36580615021.805,33668289651.5786,42488375011.0956,46367937406.1197,49326260762.7923,56649574913.4081,62046483200.5245,67392832626.654,73134255688.4528,75853128477.2818,81648987857.306,88090342201.5239,92895674923.3935,97410823179.901,102158566760.467,108364764340.338,107094633688.52,101073207043.818,79834717936.0667,74926890291.4355,.. -Lesotho,LSO,"Population, total",SP.POP.TOTL,1998630,1999473,1997534,1993030,1985384,1977424,1976780,1983465,1995014,2009169,2022747,2037677,2054718,2073939,2095242,2118521,2143872,2170617,2198017,2225702,2254100,2281454,2305825 -Lesotho,LSO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3249689406.43586,3906802573.1782,4000408990.87758,4210403744.67862,4219280539.89186,4260129160.2646,4395428931.55221,5260150369.81626,5495949252.18306,5312930713.73301,5522679055.29462,5495695560.89784,5431655614.27274,5971898622.24792,6384113046.41901,7086503968.01909,7046117965.89212,6340290197.84099,6701987717.33389,6755190460.18461,6274592706.10752,6582732621.75334,7355314349.81155 -Liberia,LBR,"Population, total",SP.POP.TOTL,2895224,2981648,3060599,3085173,3122447,3266318,3455397,3632740,3783887,3905066,4019956,4181150,4331740,4427313,4519398,4612329,4706097,4796631,4889391,4985289,5087584,5193416,5302681 -Liberia,LBR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2498523526.57495,2460710818.44476,2580683979.62937,1776432935.49818,1916651001.79837,2135909125.65634,2458958754.98032,2841527780.72464,3172321790.40873,3401448923.59009,3620472461.07019,4164518138.6144,4514003068.97862,5334913744.81698,5542938998.85639,5360350195.46655,6015889037.98666,6698170705.57433,6646436842.79272,6758406605.35795,7062960355.70508,7658716930.11754,.. -Libya,LBY,"Population, total",SP.POP.TOTL,5154790,5275916,5405326,5542641,5687563,5837986,5973369,6097177,6228370,6360191,6491988,6188132,5869870,5985221,6097764,6192235,6282196,6378261,6477793,6569088,6653942,6735277,6812341 -Libya,LBY,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,111924519566.527,129958818553.248,136387742132.517,155959129786.904,172916947077.544,191080685725.486,193642222502.472,186552955126.352,196352044386.692,99691267237.2912,168937876910.8,143665231122.133,128179493979.536,140722108993.597,139469629883.064,157384574068.676,172913117039.119,158392951889.998,111729109304.766,148252326788.054,160790356479.682 -Liechtenstein,LIE,"Population, total",SP.POP.TOTL,33026,33376,33693,34000,34300,34603,34889,35150,35401,35675,35926,36189,36505,36806,37096,37355,37609,37889,38181,38482,38756,39039,39327 -Liechtenstein,LIE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Lithuania,LTU,"Population, total",SP.POP.TOTL,3499536,3470818,3443067,3415213,3377075,3322528,3269909,3231294,3198231,3162916,3097282,3028115,2987773,2957689,2932367,2904910,2868231,2828403,2801543,2794137,2794885,2800839,2831639 -Lithuania,LTU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,29029544151.2809,32313319069.8878,35703851154.3005,40193557490.2283,42974330734.5255,47408986558.9977,52802573501.4048,59292937908.3855,64177341430.8005,58599423907.4161,61840267863.2885,67271318532.7459,71500144701.1755,77288358779.9173,81671309475.3965,80739607677.7808,85539531064.6837,92039528370.0757,98750006717.1197,107857242304.866,109152956208.409,118672784745.144,133438304563.547 -Luxembourg,LUX,"Population, total",SP.POP.TOTL,436300,441525,446175,451630,458095,465158,472637,479993,488650,497783,506953,518347,530946,543360,556319,569604,582014,596336,607950,620001,630419,640064,653103 -Luxembourg,LUX,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,21279260161.4787,22075984157.1662,22046814197.7605,22012600202.9716,26742196986.3426,29141028336.9067,29850892827.9247,34736403195.047,34794463610.1528,27579690275.4829,31130318488.1266,33946894207.153,39411330076.4234,39343582938.4733,42551389036.5531,39536868192.2836,43719406405.0222,49076634720.7979,50626129447.9929,50819126700.5479,52948149428.4959,57717954360.4848,61861379148.5924 -"Macao SAR, China",MAC,"Population, total",SP.POP.TOTL,431896,439122,449665,462533,475529,488619,501863,515330,529038,543021,557297,571003,582766,593374,604167,615239,626688,638609,650991,663653,676283,686607,695168 -"Macao SAR, China",MAC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,13665594982.2731,15602155691.4324,17188892294.2352,19290169815.2815,24238684747.9057,26685082354.738,29856612201.1898,38593049726.7391,36394765062.6907,37769842557.8934,47277393455.7893,56959985933.7459,63620699006.4561,73602607064.8824,75796054375.185,62556810027.0314,63493583929.0677,69810522615.9816,75380352620.4252,75004112899.1268,46505669730.2914,50243460175.8433,50866496031.3188 -Madagascar,MDG,"Population, total",SP.POP.TOTL,16216431,16709665,17211934,17724310,18250774,18792171,19350299,19924958,20513599,21117092,21731053,22348158,22966240,23588073,24215976,24850912,25501941,26169542,26846541,27533134,28225177,28915653,29611714 -Madagascar,MDG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,19977597576.2023,21707934790.1929,19318033675.6565,21656048774.7091,23472720349.8462,25182036217.0586,27301873792.3441,30032347138.2638,32688637456.4427,31399074509.5161,31885721689.3466,33049341711.3734,33114683610.6242,34055255226.3951,35676221133.717,36068431289.2327,38413305508.975,39234604622.8211,41381116791.8314,43915945484.9234,41546864839.2679,46322231523.0578,51109480245.2962 -Malawi,MWI,"Population, total",SP.POP.TOTL,11229387,11498818,11784498,12087965,12411342,12755648,13118307,13495463,13889423,14298932,14718422,15146094,15581251,16024775,16477966,16938942,17405624,17881167,18367883,18867337,19377061,19889742,20405317 -Malawi,MWI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,10966636790.2136,10612042652.7666,10966837005.3769,11819348226.8778,12792240954.9904,13646266610.6984,14743238198.2316,16649624390.4271,18271853718.5024,19853280738.2021,21379434977.569,22915931818.7053,22812143610.5777,25044833108.1261,25110983966.7566,24094015282.6412,25600457509.335,25567540132.1443,27346881334.3369,29351716347.8553,29965897205.8003,32117969454.2768,34708748609.0263 -Malaysia,MYS,"Population, total",SP.POP.TOTL,22945150,23542517,24142445,24739411,25333247,25923536,26509413,27092604,27664296,28217204,28717731,29184133,29660212,30134807,30606459,31068833,31526418,31975806,32399271,32804020,33199993,33573874,33938221 -Malaysia,MYS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,274904261897.927,285148343851.574,307599071355.135,335937974571.712,369267337840.23,404296005880.994,446983228722.7,491978362693.131,520864348772.878,521578437866.568,560169718555.714,607129184341.237,643498757192.916,668794343781.363,710620293507.506,730292729357.474,762176005888.175,805935510019.48,862637651371.256,921626009055.615,888145204225.747,951696833579.969,1100052056615.08 -Maldives,MDV,"Population, total",SP.POP.TOTL,282507,287324,292284,297226,302135,307018,314401,325126,336883,349037,361575,374440,387539,400728,416738,435582,454252,472442,489758,504508,514438,521457,523787 -Maldives,MDV,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2290748392.93742,2297236888.68502,2509754316.38083,2883515398.48646,3153032714.71698,2891909103.62452,3687616152.80919,3536160900.6805,4048931267.84242,3808008670.96402,4064262096.66055,4576759273.88666,4895019471.57329,5427803411.84805,6249990156.79248,7048469100.24056,7670216999.66925,8373108482.20823,9184924374.17071,9958607080.02559,6884071175.67974,9791307353.58602,11965333086.4347 -Mali,MLI,"Population, total",SP.POP.TOTL,11239101,11583824,11952660,12342165,12751995,13180551,13623541,14080912,14551117,15032635,15529181,16039734,16514687,17004033,17551814,18112907,18700106,19311355,19934298,20567424,21224040,21904983,22593590 -Mali,MLI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12278775910.5507,13933816258.0789,14378515201.1902,16472759392.4294,17189614519.1294,18892790391.5997,20294820135.0021,21585436309.0643,23164031281.258,24085110760.3815,25842327187.881,27331464772.5263,27142665899.9272,28848666648.5951,31565052224.5886,34646998121.6541,38276068960.858,40237794150.9203,43281770855.0279,45661038953.3066,45587605239.6839,48895142269.7684,54616092531.0994 -Malta,MLT,"Population, total",SP.POP.TOTL,390087,393028,395969,398582,401268,403834,405308,406724,409379,412477,414508,416268,420028,425967,434558,445053,455356,467999,484630,504062,515332,518536,531113 -Malta,MLT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,6892040937.08569,7320604547.94969,7819228984.56382,8308956875.93491,8611730410.59941,8733491082.35771,9066860756.68121,9686156873.84558,10690588468.5813,10413913505.157,11293019732.3272,11778079503.6065,12104448720.2804,13074253749.3043,14147661907.2111,15748228246.4777,16310103361.4933,18319542075.9529,20159643562.3971,22703740810.8302,20934144510.4304,23661341697.4132,26678640410.8055 -Marshall Islands,MHL,"Population, total",SP.POP.TOTL,54224,54413,54496,54493,54435,54337,54208,54038,53816,53593,53416,52971,52203,51352,50419,49410,48329,47187,45989,44728,43413,42050,41569 -Marshall Islands,MHL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,162510014.241522,176052941.403556,180962250.170857,182302181.510202,188846099.73328,202592822.94274,204376559.749056,218398756.309765,208270938.09098,212814663.43125,220198046.000882,221289867.960213,213166601.058821,231126418.202301,238955513.053999,265505359.011569,262984525.223637,268321424.299098,289178033.455879,323749276.054688,311935928.065215,304080546.905452,337835015.216859 -Mauritania,MRT,"Population, total",SP.POP.TOTL,2695003,2761823,2821703,2883326,2946575,3012360,3081229,3153508,3233336,3322616,3419461,3524249,3636113,3742959,3843174,3946220,4051890,4160015,4270712,4383849,4498604,4614974,4736139 -Mauritania,MRT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8053334196.23677,7950168162.54146,8614481600.15398,9362192891.06308,10064481619.4069,11204528371.9699,13103870720.4128,13261820217.9062,13606215758.5509,13925622557.9457,14119748206.4632,14841521503.2747,15331799325.0023,16624623434.4163,16238197197.5205,16498775890.9074,19213092379.4617,21566790208.5217,23353530217.2559,24344802430.9436,24556821823.0181,25772155806.3143,29640876584.7506 -Mauritius,MUS,"Population, total",SP.POP.TOTL,1186873,1196287,1204621,1213370,1221003,1228254,1233996,1239630,1244121,1247429,1250400,1252404,1255882,1258927,1261208,1262879,1263747,1264887,1265577,1265985,1266014,1266334,1262523 -Mauritius,MUS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,10808123811.0252,11495031288.9678,11860445880.8011,12712051983.1077,13658712662.5191,14350288171.7125,15601363494.3378,17269569948.8926,18360008204.2331,18754475553.4195,20130497968.9992,20741526647.5437,22348410420.3769,23425332113.6887,24496065562.9797,25773869285.8811,27393101443.6878,28700639628.6308,31278347775.5084,32798117377.7664,28328003243.4227,30809703796.7137,33398673071.7893 -Mexico,MEX,"Population, total",SP.POP.TOTL,97873442,99394288,100917081,102429341,103945813,105442402,106886790,108302973,109684489,111049428,112532401,114150481,115755909,117290686,118755887,120149897,121519221,122839258,124013861,125085311,125998302,126705138,127504125 -Mexico,MEX,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1126248639362.43,1154386462813.79,1179862637988.91,1229173416066.06,1311964939668.08,1382607362679.39,1530791121503.23,1608391808085.87,1707467194598,1688836145275.53,1798797752817.77,1960111492968.93,2059132523819.44,2088045247051.79,2200816239457.53,2251299551791.36,2393565436145.66,2464263195076.44,2538887671385.85,2528644103602.35,2321693122507.88,2492257785838.38,2777738790402.25 -"Micronesia, Fed. Sts.",FSM,"Population, total",SP.POP.TOTL,111709,111948,111992,111805,111438,110940,110301,109532,108704,107868,107588,107887,108232,108609,109024,109462,109925,110430,110929,111379,112106,113131,114164 -"Micronesia, Fed. Sts.",FSM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,274019057.561926,284841432.004158,289882828.843481,299591934.847365,302033180.605405,319381991.618557,329074045.591923,333900604.332016,327992538.659619,343870371.801529,348068965.247075,364901630.785689,370538704.813825,374747889.601257,372654859.083712,433197513.718828,432990338.381799,441895880.005532,409361730.218139,456856383.609501,450991342.283643,456534317.287187,488560154.144782 -Moldova,MDA,"Population, total",SP.POP.TOTL,2924668,2918135,2911385,2903198,2896023,2888985,2880967,2874299,2868833,2865213,2862354,2860699,2860324,2859558,2857815,2835978,2803186,2755189,2707203,2664224,2635130,2595809,2538894 -Moldova,MDA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9275595970.76798,10271494756.8889,11463848840.2772,12624699260.6829,14139412287.9293,15656884515.5988,16692771552.5355,17325213100.0278,19108348177.2384,17488526036.3563,19423089873.3531,20903838967.2382,22773855801.1692,25944876137.8122,27117590096.3403,27944955743.7236,31104771216.6284,33429890813.0338,35265818725.7688,37343675170.9256,34087964113.335,40017171978.8409,40073742580.6463 -Monaco,MCO,"Population, total",SP.POP.TOTL,32465,32444,32386,32316,32236,32141,32011,31823,31862,32401,33178,33945,34700,35425,36110,36760,37071,37044,37029,37034,36922,36686,36469 -Monaco,MCO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Mongolia,MNG,"Population, total",SP.POP.TOTL,2450979,2472601,2494617,2516454,2537949,2559255,2581242,2605643,2633887,2666713,2702520,2743938,2792349,2845153,2902823,2964749,3029555,3096030,3163991,3232430,3294335,3347782,3398366 -Mongolia,MNG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8889575369.68436,9386347489.49958,9967434697.80234,10832615939.0583,12325867424.1354,13429210427.3372,15151223341.2411,16972301015.3188,18686160064.0011,18340394740.5595,18959957456.9795,22657114468.2463,26658538160.1693,28685437151.2634,29864062852.3373,29269896449.9852,30113720788.5658,30433015398.7048,35392080243.9649,37332548047.6657,36745890376.6917,36811688008.6993,42587018925.6047 -Montenegro,MNE,"Population, total",SP.POP.TOTL,604950,607389,609828,612267,613353,614261,615025,615875,616969,618294,619428,620079,620601,621207,621810,622159,622303,622373,622227,622028,621306,619211,617213 -Montenegro,MNE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3814884916.92585,4318498794.22642,4572067883.4916,4756482177.14467,5058564012.19997,5163047423.64849,6538858657.62909,7763427123.91441,8650146061.80148,8066391395.19546,8387662192.03403,9046251638.8696,8749438793.40745,9417446772.07409,9684824130.11488,10384221384.4968,11424393624.1254,12501389758.7096,13544005947.2884,14965813274.8289,12928605548.7175,14736986999.9966,17014056804.2767 -Morocco,MAR,"Population, total",SP.POP.TOTL,28554415,28930097,29301817,29661270,30033125,30431902,30833022,31232633,31634992,32042877,32464865,32903699,33352169,33803527,34248603,34680458,35107264,35528115,35927511,36304408,36688772,37076584,37457971 -Morocco,MAR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,110763505226.779,122132672356.544,129040121286.792,139978327271.905,150805092475.773,161255039179.659,178998934347.637,190495582833.924,205457657123.706,212210957585.647,222263622299.819,238736288506.998,241513083183.451,253191001795.276,243275019392.236,265589514966.884,270172515559.355,281151427260.723,296845428782.863,310901208932.932,293982786102.004,330405929641.357,357967800930.54 -Mozambique,MOZ,"Population, total",SP.POP.TOTL,17768505,18220716,18694946,19186754,19694411,20211114,20735982,21280513,21845571,22436660,23073723,23760421,24487611,25251731,26038704,26843246,27696493,28569441,29423878,30285595,31178239,32077072,32969518 -Mozambique,MOZ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,7881683389.03014,9038375456.69105,9375479308.58646,11208438571.7893,12554049773.8212,13512905246.8626,14906437532.1487,16730812370.144,18428539378.3354,20208612473.824,21657061364.5523,24306280893.487,25627026605.0556,27637286756.5429,29600088338.2311,34261446171.8804,37202263213.2845,35713824096.3272,37906025450.2374,39677698584.8694,38684942770.9098,39511200326.7133,39993304983.6764 -Myanmar,MMR,"Population, total",SP.POP.TOTL,45538332,46014826,46480230,46924293,47338446,47724471,48088274,48445647,48729486,49015836,49390988,49794522,50218185,50648334,51072436,51483949,51892349,52288341,52666014,53040212,53423198,53798084,54179306 -Myanmar,MMR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,42943590579.5089,48859667323.2646,55614652561.5439,64568895157.4904,75288576168.1636,88200540186.8883,102822806156.215,118275110306.161,132901189741.758,147875187418.945,164076352260.546,176855940964.642,184012699991.495,201673931742.091,211836355705.851,219918794778.058,223652554736.806,236447470535.94,258351638001.319,278993023956.882,260606474370.579,240281140285.416,265861526074.258 -Namibia,NAM,"Population, total",SP.POP.TOTL,1819141,1856402,1888525,1915425,1939406,1962865,1986558,2011492,2038552,2067919,2099271,2132340,2167470,2204510,2243001,2282704,2323352,2364534,2405680,2446644,2489098,2530151,2567012 -Namibia,NAM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9372658593.32269,9616760494.78709,10408608669.9701,11432521448.6611,12737085937.0497,13086273923.3361,14558283420.4779,15404712914.2608,16145486203.8066,16257753152.9489,17073255821.5508,18530827058.6351,19680724579.4145,21687844058.2908,23658891263.6622,24575695883.1358,24104306019.6974,23995278502.8202,24356875483.4075,24902097922.6723,23667944444.0749,25030413086.7639,28734703797.1783 -Nauru,NRU,"Population, total",SP.POP.TOTL,10377,10363,10351,10344,10335,10318,10294,10267,10243,10233,10241,10283,10444,10694,10940,11185,11437,11682,11924,12132,12315,12511,12668 -Nauru,NRU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,45264608.2404656,69288447.2902685,69945610.3063687,71059830.9028965,82081790.6299374,106451945.428964,118146626.019228,135597457.874242,144479262.427162,157127993.326579,152779074.020783,162098704.436564,188258141.968101,211307347.056556,243756641.227884,248701077.759174 -Nepal,NPL,"Population, total",SP.POP.TOTL,24559500,24956071,25332178,25682908,26003965,26285110,26518971,26713655,26881544,27026941,27161567,27266399,27330694,27381555,27462106,27610325,27861186,28183426,28506712,28832496,29348627,30034989,30547580 -Nepal,NPL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,32429170503.2006,34767447624.8158,35169648123.7417,37276484749.7815,39998721663.0023,42941490695.4026,45974965142.8305,48955959300.815,52916271057.2124,55787831010.2178,58929298072.8811,62039011556.5258,68091085866.6447,73223254156.6986,80463801554.6355,82086601883.6847,82571469849.0625,99508296434.7066,109284623528.601,119098699249.715,117965613029.542,128403325726.924,145231892504.011 -Netherlands,NLD,"Population, total",SP.POP.TOTL,15925513,16046180,16148929,16225302,16281779,16319868,16346101,16381696,16445593,16530388,16615394,16693074,16754962,16804432,16865008,16939923,17030314,17131296,17231624,17344874,17441500,17533044,17700982 -Netherlands,NLD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,504621065860.718,518833875559.17,540563881522.496,546743443232.309,574388513617.717,603444951116.828,665587885849.546,711847932369.947,726499365987.438,708684658772.773,741743844325.539,775272257539.785,783223840622.604,821573457150.518,821940707073.954,843205617930.364,868877663907.632,932892667646.87,992691313902.726,1023064404881.33,1009297914453.42,1148758903013.65,1242776601397.17 -New Caledonia,NCL,"Population, total",SP.POP.TOTL,213230,217324,221490,225296,228750,232250,235750,239250,242750,245950,249750,254350,259000,263650,268050,269460,270220,270810,271170,271240,271080,270390,269220 -New Caledonia,NCL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -New Zealand,NZL,"Population, total",SP.POP.TOTL,3857700,3880500,3948500,4027200,4087500,4133900,4184600,4223800,4259800,4302600,4350700,4384000,4408100,4442100,4516500,4609400,4714100,4813600,4900600,4979200,5090200,5111400,5124100 -New Zealand,NZL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,78235313661.1054,82991894434.0875,87388918161.2594,92022296198.1866,96829339053.3892,99289902280.1303,108257744840.596,115057463025.351,117838558699.25,126588710669.03,129096523425.026,136864490902.912,139364090659.271,154647474133.442,161650690969.161,167027511241.436,182187052396.656,195520626377.136,200790443927.459,222660796732.715,227248096727.688,240947563925.954,260893539203.173 -Nicaragua,NIC,"Population, total",SP.POP.TOTL,5123222,5192764,5259006,5323062,5386223,5454678,5529811,5607453,5687744,5770639,5855734,5942553,6030607,6119379,6208676,6298598,6389235,6480532,6572233,6663924,6755895,6850540,6948392 -Nicaragua,NIC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,13536028839.3105,14167257327.5114,14583525369.6212,15280718771.4395,16594686840.4713,18021835159.5667,19188021924.4326,20825529014.112,21966454430.9825,21284428172.9648,22542004601.6246,24473869957.8934,25444391410.987,26590318591.1914,29211123155.3433,31682119556.9192,34181725303.4995,36355829954.2575,36036855065.9753,36121011574.4806,34890942919.1657,40298079656.9994,44344259111.4383 -Niger,NER,"Population, total",SP.POP.TOTL,11622665,12031430,12456517,12900790,13366885,13855221,14365168,14897873,15455175,16037915,16647543,17283112,17954407,18653199,19372014,20128124,20921743,21737922,22577058,23443393,24333639,25252722,26207977 -Niger,NER,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9167124719.41015,10093689378.0884,10799487288.4144,11218351223.0095,11716089227.5607,12982610508.1125,14170856524.6834,14961650684.7794,16360264526.2778,16799237834.0754,18461978009.9403,19437967993.4845,21317946498.7089,21679918301.7098,22970934374.4788,24039021555.5079,24750653852.382,26061195031.7929,28810394006.6256,31112354732.4808,29873665096.4096,33668897416.389,36155988847.4418 -Nigeria,NGA,"Population, total",SP.POP.TOTL,122851984,126152678,129583026,133119801,136756848,140490722,144329764,148294028,152382506,156595758,160952853,165463745,170075932,174726123,179379016,183995785,188666931,193495907,198387623,203304492,208327405,213401323,218541212 -Nigeria,NGA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,596822437106.174,645411772557.931,705585065040.296,757020089798.537,793304213811.519,853107218076.49,939070535801.287,957577571582.888,958379885992.547,968695761464.314,1006435161407.03,1055049126480.92,1058497531385.14,1136609999735.26,1246246371795.95 -North Macedonia,MKD,"Population, total",SP.POP.TOTL,2026350,2034882,2020157,2026773,2032544,2036855,2040228,2043559,2046898,2050671,2055004,2058539,2061044,2064032,2067471,2070226,2072490,2074502,2076217,2076694,2072531,2065092,2057679 -North Macedonia,MKD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12236032652.8579,12222372998.547,12772266390.3232,13206146103.8384,14487010234.7498,15708182802.4092,17656495950.652,18218810611.3748,21276888133.1395,22418570317.6829,23021357764.4749,23634672192.1852,24026585809.9329,25647067573.3303,27256431180.2274,27846077152.2071,30124996498.7124,31293259857.1491,33410083051.5274,35669817036.8546,34761809733.7447,37384567693.2277,39986822702.6398 -Northern Mariana Islands,MNP,"Population, total",SP.POP.TOTL,80338,79479,77162,74623,71898,69025,66060,63050,60032,57056,54087,52520,52359,52141,51856,51514,51133,50729,50304,49858,49587,49481,49551 -Northern Mariana Islands,MNP,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Norway,NOR,"Population, total",SP.POP.TOTL,4490967,4513751,4538159,4564855,4591910,4623291,4660677,4709153,4768212,4828726,4889252,4953088,5018573,5079623,5137232,5188607,5234519,5276968,5311916,5347896,5379475,5408320,5457127 -Norway,NOR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,163841711517.198,170831790691.442,173175417617.617,177592179032.754,196320811379.067,224191811756.846,253574521805.531,263744069029.924,294675606293.558,270102585707.619,287756639617.033,312318997271.307,332876807067.766,345878977543.121,351471225067.786,328161968226.379,323801372250.271,353252620814.927,388270908625.928,385332127362.121,364853557417.048,452973705122.822,646524627755.768 -Oman,OMN,"Population, total",SP.POP.TOTL,2344253,2374653,2403659,2431600,2468855,2515192,2560649,2605700,2651028,2697537,2881914,3206870,3535579,3816680,4009267,4191776,4398070,4541854,4601157,4602768,4543399,4520471,4576298 -Oman,OMN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,89299977164.278,95301719585.5576,95391852400.8966,96660099017.7311,101370184610.543,105522615503.647,116171655809.333,124490156232.899,134077326754.688,141212276320.557,145045688745.096,152594727697.303,168703166583.162,174844325113.631,170446078355.22,148394302833.03,144570028932.727,149796082690.16,152517464821.985,151463104338.644,147696944383.366,159474561904.171,176835539301.086 -Pakistan,PAK,"Population, total",SP.POP.TOTL,154369924,159217727,163262807,166876680,170648620,174372098,178069984,181924521,185931955,190123222,194454498,198602738,202205861,205337562,208251628,210969298,213524840,216379655,219731479,223293280,227196741,231402117,235824862 -Pakistan,PAK,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,389180958985.276,411666925704.585,428296530452.618,462228462075.205,513364110742.096,568139653355.589,621084642974.189,664205542864.752,691334920270.487,716899812072.281,741568944550.787,780110472311.759,828026049259.045,865549158119.634,905996807116.037,952063379046.042,993504432307.737,1042822782433.41,1133027972494,1179501703984.12,1178841538842.22,1319453969116.94,1476747212401.78 -Palau,PLW,"Population, total",SP.POP.TOTL,19726,19828,19851,19880,19907,19831,19619,19366,19102,18826,18540,18240,17946,17805,17796,17794,17816,17837,17864,17916,17972,18024,18055 -Palau,PLW,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,212083121.120707,232531414.760221,244674552.531202,234994101.032148,248586167.927912,269068775.937354,279264369.577248,296476904.061125,286261641.9199,259666699.884096,264375528.254417,287451868.833676,298454902.473557,294014432.715432,314941901.346617,342652395.393948,348636485.329927,333948336.493243,317408225.165214,329946804.999138,319183865.051961,290565282.559625,.. -Panama,PAN,"Population, total",SP.POP.TOTL,3001731,3061024,3120990,3181608,3243311,3305868,3368573,3431614,3495276,3559343,3623617,3688674,3754862,3821556,3888793,3957099,4026336,4096063,4165255,4232532,4294396,4351267,4408581 -Panama,PAN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,25097478700.0123,25766764915.3451,27461430716.7633,28086229064.8919,30726836974.8289,33853651429.2046,37900125904.3865,44168106845.4067,49400570646.6096,50670827332.4596,52882201620.7836,61551447498.5406,68228363334.8372,77633046554.9202,84792019830.6953,97728232987.9235,108411125500.528,121927486564.245,128947304029.871,134480993238.59,115579983633.355,134893995189.297,165506760115.342 -Papua New Guinea,PNG,"Population, total",SP.POP.TOTL,5508297,5698489,5892596,6090980,6293166,6498818,6708217,6921066,7137988,7358890,7583269,7806637,8026545,8245627,8464153,8682174,8899169,9114796,9329227,9542486,9749640,9949437,10142619 -Papua New Guinea,PNG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,11676627329.5293,11775607863.9045,11985608876.7409,12154730987.915,13007994258.0036,14501521736.7631,14967232044.0004,16982430734.2995,17570546845.2492,18532804586.6035,20626807204.1911,20754466387.4553,23194710479.6786,23745341183.964,29365484974.8416,30023240061.1054,32745018474.1272,34471542801.9344,34915257874.4304,36543283665.9053,37349039468.6262,38186736187.1798,42391407134.7819 -Paraguay,PRY,"Population, total",SP.POP.TOTL,5123819,5211541,5286512,5353254,5416324,5476878,5534675,5590145,5645148,5702574,5768613,5843939,5923322,6005652,6090721,6177950,6266615,6355404,6443328,6530026,6618695,6703799,6780744 -Paraguay,PRY,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,30932049218.9213,31977701943.7466,33400586585.016,32968220650.1005,35890825666.6254,38034258962.6656,42489069399.9784,48179571341.4482,52707854110.8734,52673329692.3288,59239626883.3391,63703941129.2633,61554079763.1491,69010656476.3992,72688550351.3536,73864619262.4052,78648101619.9549,83532002369.899,88186177811.3549,89815794627.3846,89940706089.7872,97759130940.8663,105351906103.705 -Peru,PER,"Population, total",SP.POP.TOTL,26654439,27014909,27334503,27623341,27893911,28147267,28381078,28600387,28806185,29009326,29229572,29477721,29749589,30038809,30353951,30711863,31132779,31605486,32203944,32824861,33304756,33715471,34049588 -Peru,PER,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,130304055181.181,134900896441.543,143672337855.504,151057336428.231,159643138970.159,172861106876.73,187799262514.383,210103268393.824,235794449306.48,241631775606.173,261734026525.648,283964927266.9,297710295468.343,318997109857.16,330667402340.409,340543090251.254,356119980475.884,375165985596.124,398046938008.295,420000696534.995,383024983567.168,429831818255.842,477162438418.771 -Philippines,PHL,"Population, total",SP.POP.TOTL,77958223,79626086,81285572,82942837,84607501,86261250,87901835,89561377,91252326,92946951,94636700,96337913,98032317,99700107,101325201,103031365,104875266,106738501,108568836,110380804,112190977,113880328,115559009 -Philippines,PHL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,293212948185.075,309378404511.386,325751564965.746,348687771877.553,381278971148.777,414300912069.913,447487087842.009,488570894180.182,521417733387.04,542974940202.547,588065190367.855,621050497550.466,679680535090.599,730910824387.471,780292861548.741,817730803205.319,887291422579.327,948319217864.06,1029245337670.26,1105301765108.64,990730276804.404,1053491342956.03,1240421279882.86 -Poland,POL,"Population, total",SP.POP.TOTL,38258629,38248076,38230364,38204570,38182222,38165445,38141267,38120560,38125759,38151603,38042794,38063255,38063164,38040196,38011735,37986412,37970087,37974826,37974750,37965475,37899070,37747124,36821749 -Poland,POL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,406673461326.093,424050471002.088,449791781841.821,464996724625.826,493818970675.424,519899121597.563,562940539465.635,618675827439.269,683247541176.707,711308480865.769,768347067189.611,831848026894.279,863766084241.563,891530579525.495,925613787686.558,980763303941.497,1027975990900.51,1089434780039.24,1164972380872.85,1272412042369.37,1287595601446.03,1378105312358.05,1560996568580.45 -Portugal,PRT,"Population, total",SP.POP.TOTL,10289898,10362722,10419631,10458821,10483861,10503330,10522288,10542964,10558177,10568247,10573100,10557560,10514844,10457295,10401062,10358076,10325452,10300300,10283822,10286263,10297081,10361831,10409704 -Portugal,PRT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,191127628640.762,198899312143.682,208897263871.468,215901981745.782,222342687863.366,235520718575.134,252325651322.952,263542356606.647,272098077805.794,270286412262.901,279057919872.134,278041334782.043,271411027125.957,288230115471.542,292835641286.096,298988604095.756,318436286348.298,332380808701.934,350426662255.11,373703823018.289,354340042040.112,376797732085.166,429793431155.708 -Puerto Rico,PRI,"Population, total",SP.POP.TOTL,3810605,3818774,3823701,3826095,3826878,3821362,3805214,3782995,3760866,3740410,3721525,3678732,3634488,3593077,3534874,3473232,3406672,3325286,3193354,3193694,3281557,3262693,3221789 -Puerto Rico,PRI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,58667029711.589,60466420041.3541,61275044788.1266,63038133449.682,71581876811.8341,73318627702.7486,75553445959.7957,78370778335.7001,77502085837.7489,75380899418.8454,75222164405.1307,76671237933.7386,79385642494.7194,80211595023.5961,79957879558.6487,79546562680.8065,78484982368.6929,76274336611.4748,74936962082.5515,77969932013.6949,76682943992.9995,80905594934.9639,89693152036.0819 -Qatar,QAT,"Population, total",SP.POP.TOTL,645937,678831,713186,748525,777943,848710,1015060,1231893,1444277,1610274,1713504,1804171,1905660,2035501,2214465,2414573,2595166,2711755,2766732,2807235,2760385,2688235,2695122 -Qatar,QAT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,52784229689.2306,58431229204.8738,63192748615.1375,68844245251.7161,79736100423.4013,82908858330.0087,117047075812.425,141936404572.005,169224653348.369,183059952683.407,219790796432.323,261273736298.264,290855585760.172,306140973565.76,303090986918.208,233271212305.927,218972397312.528,249312147644.142,253839441323.729,258956934728.999,254020347079.339,271324529722.577,296592778599.252 -Romania,ROU,"Population, total",SP.POP.TOTL,22442971,22131970,21730496,21574326,21451748,21319685,21193760,20882982,20537875,20367487,20246871,20147528,20058035,19983693,19908979,19815616,19702267,19588715,19473970,19371648,19265250,19122059,19047009 -Romania,ROU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,130440480062.927,143487806662.009,154083007715.636,159294634561.717,184761278367.994,198699337527.107,236716858808.915,276874304621.325,337095343690.191,334469947313.037,347328775158.245,374237967517.277,390760800445.207,387447590351.733,408831250294.166,424001758910.936,464625797425.121,520234535252.389,565287592504.879,631440341725.304,634558432891.58,676899040890.049,762471210408.654 -Russian Federation,RUS,"Population, total",SP.POP.TOTL,146596869,145976482,145306497,144648618,144067316,143518814,143049637,142805114,142742366,142785349,142849468,142960908,143201721,143506995,143819667,144096870,144342397,144496739,144477859,144406261,144073139,144130482,144236933 -Russian Federation,RUS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,974627421657.533,1059732182384.88,1145642785078.87,1297686739867.8,1441505486230.11,1655585780406.94,2071121544063.66,2324720237537.22,2797648415306.51,2678612196779.7,2836588557956.18,3163098238376.85,3373665030002.67,3611852783396.68,3639325111273.82,3428609968105.43,3440587138811.77,3705398029014.95,4128705266499.84,4273387015298.7,4292438416029.75,4849417013659.05,5214810120545.38 -Rwanda,RWA,"Population, total",SP.POP.TOTL,8109989,8223941,8372306,8567992,8791853,9026299,9270066,9523168,9781996,10043737,10309031,10576932,10840334,11101350,11368451,11642959,11930899,12230339,12531808,12835028,13146362,13461888,13776698 -Rwanda,RWA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,4967129526.87869,5487691972.6085,6319583903.79121,6555668711.9853,7234424080.76499,8200949108.78006,9237741113.92831,10259385718.6854,11589168070.4182,12400474819.6415,13444387649.7391,14816777136.2309,15504756717.3744,16414794519.4769,18494760709.7228,20139387487.5036,21376753782.241,22919984687.4373,25353830796.5817,28322502593.8411,28020673195.7458,32557648867.0323,37671824591.6998 -Samoa,WSM,"Population, total",SP.POP.TOTL,184008,185530,186630,187440,188073,188626,189379,190478,191787,193176,194672,196351,198124,199939,201757,203571,205544,207630,209701,211905,214929,218764,222382 -Samoa,WSM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,609194559.804923,651749681.141976,692613969.095295,758910182.437361,801427127.509591,832302119.23346,879249193.297421,894417411.405227,979703816.71274,1029666341.52497,1012716381.59222,1031839441.99129,1054839275.03946,1126639460.58774,1225855629.09299,1257451142.39343,1274721592.30615,1346840019.66422,1333979087.64176,1313646128.68121,1318930060.92303 -San Marino,SMR,"Population, total",SP.POP.TOTL,26823,27335,27969,28601,29093,29508,29959,30372,30700,31059,31608,32495,33132,33285,33389,33570,33834,34056,34156,34178,34007,33745,33660 -San Marino,SMR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,1836079712.68301,1876010424.88781,1959495823.07693,1827533308.24349,2060327985.50079,.. -Sao Tome and Principe,STP,"Population, total",SP.POP.TOTL,143714,146258,149841,153762,157697,161680,165725,169845,174004,178128,182138,186044,189924,193757,197497,201124,204632,208036,211344,214599,218641,223107,227380 -Sao Tome and Principe,STP,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,266253794.51613,280137758.347792,314045144.902411,333077491.920106,368340171.204148,431405598.408239,463138684.647295,491199055.436042,509660589.874828,518579882.694571,539938657.991595,500168037.345019,571529083.25992,642719405.694566,627694923.490874,670662992.98741,699655107.763569,750274279.997918,775814565.850754,817905341.029203,866573219.853202,934656805.823445 -Saudi Arabia,SAU,"Population, total",SP.POP.TOTL,21547390,22085929,22623415,23150847,23661808,24397644,25382870,26400068,27437353,28483797,29411929,30150945,30821543,31482498,32125564,32749848,33416270,34193122,35018133,35827362,35997107,35950396,36408820 -Saudi Arabia,SAU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,826226620796.021,838702526685.182,825491377934.44,933227785557.17,1037857703995.27,1131881360136.89,1201613547097.03,1263356062788.76,1371094522720.29,1354791018426.64,1430569727750.08,1622396165226.55,1710792899405.1,1726915910247.01,1783866457587.7,1618407633608.39,1559853238916.71,1650274272556.44,1726612084224.36,1772762202064.7,1734225684045.41,1887572087163.69,2179908509603.46 -Senegal,SEN,"Population, total",SP.POP.TOTL,9704287,9938027,10180950,10434504,10698691,10974057,11263387,11563869,11872929,12195029,12530121,12875880,13231833,13595566,13970308,14356181,14751356,15157793,15574909,16000781,16436120,16876720,17316449 -Senegal,SEN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,19272484162.6567,20621640804.2512,20901943745.3234,22594290411.1997,24322014009.9643,26187693536.3792,27700442941.1745,29257581084.4622,30998501692.9897,31808174049.0295,33323804628.0025,34243503559.0008,36087281194.4929,37152209717.441,39337219185.8395,42190979350.4886,44911774014.637,48021072807.1348,52332876905.6099,55726141751.7154,57765268184.384,63616863620.7022,70269664247.1504 -Serbia,SRB,"Population, total",SP.POP.TOTL,7516346,7503433,7496522,7480591,7463157,7440769,7411569,7381579,7350222,7320807,7291436,7234099,7199077,7164132,7130576,7095383,7058322,7020858,6982604,6945235,6899126,6834326,6664449 -Serbia,SRB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,45246251203.3257,48667495622.1207,53939967273.4233,56853568879.7743,62820773396.9328,66754495942.4828,73430808046.6223,80375561228.183,90298469512.8415,90415631780.2584,91332703725.5651,95624766030.9405,96995072871.4641,100693863657.509,100543949790.826,100991996092.171,105752054631.949,109077468948.379,117403438672.282,127484771233.315,130892362898.968,141115595041.187,151426827091.392 -Seychelles,SYC,"Population, total",SP.POP.TOTL,81131,81202,83723,82781,82475,82858,84600,85033,86956,87298,89770,87441,88303,89949,91359,93419,94677,95843,96762,97625,98462,99258,119878 -Seychelles,SYC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1130381635.96366,1155733631.25053,1108303022.9587,1103897476.67613,1180450030.64755,1326403112.94411,1495263616.55174,1546576733.74328,1510053631.38609,1506594890.5712,1610235010.86528,1772093986.20476,1952325435.70159,1882402053.18342,2089354945.2998,2099080355.93439,2468921245.11907,2893245688.31468,2569082625.5041,2778262215.44448,2618254301.5156,2862711283.79452,3398471793.73971 -Sierra Leone,SLE,"Population, total",SP.POP.TOTL,4584067,4857096,5140113,5350907,5533329,5683334,5809774,5939163,6090860,6259842,6436698,6612385,6788587,6964859,7140688,7314773,7493913,7677565,7861281,8046828,8233970,8420641,8605718 -Sierra Leone,SLE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3035103965.42014,2967529607.94342,3814367000.67011,4269398447.26747,4660029847.46275,5018859559.37982,4696717642.91498,6427903784.25211,7145450125.19172,7423684273.45659,7352386259.96737,8157133364.73393,8535742064.48388,11922760552.7097,12246576750.3554,11405736695.0893,12201293076.7967,12039006085.8042,12848771693.4919,13714258176.6335,13528738746.356,14832673352.6266,19332951067.3415 -Singapore,SGP,"Population, total",SP.POP.TOTL,4027887,4138012,4175950,4114826,4166664,4265762,4401365,4588599,4839396,4987573,5076732,5183688,5312437,5399162,5469724,5535002,5607283,5612253,5638676,5703569,5685807,5453566,5637022 -Singapore,SGP,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,175246409685.841,177173352054.204,184506695895.583,195365188379.584,212867300362.186,236695126165.746,274279821554.304,307363030360.568,315661250608.59,313109402371.584,378598351938.957,400707778808.442,416578549823.047,424002358121.386,445708256666.976,448557736908.24,471188981934.025,497811185748.379,497909179556.164,518432255364.485,492610107246.098,542201965477.519,603534284988.51 -Sint Maarten (Dutch part),SXM,"Population, total",SP.POP.TOTL,30519,30600,30777,31472,32488,33011,33441,33811,33964,34238,34056,33435,34640,36607,37685,38825,39969,40574,40895,41608,42310,42668,42848 -Sint Maarten (Dutch part),SXM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,1180532464.22831,1231574041.51292,1317707578.47598,1209912238.78031,1273969553.94461,1550752894.79715,1629462441.30041,1682265083.46241,1713075704.93613,1628637846.81035,1815600791.39355,1611318016.96137,1763643843.20685,2072074404.03556 -Slovak Republic,SVK,"Population, total",SP.POP.TOTL,5388720,5378867,5376912,5373374,5372280,5372807,5373054,5374622,5379233,5386406,5391428,5398384,5407579,5413393,5418649,5423801,5430798,5439232,5446771,5454147,5458827,5447247,5431752 -Slovak Republic,SVK,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,61072872910.0941,66679618013.4762,71403065665.9981,72532912624.9265,78668756477.1429,87124402574.7501,98800339684.6918,110920455776.858,125448397000.54,123664334565.655,134102656583.903,136867227348.753,143538744049.058,150563501274.627,155526111839.015,159033054757.623,157244994972.118,160996632670.647,168173568111.087,178081349716.249,178162806620.738,182669169521.046,200119274532.944 -Slovenia,SVN,"Population, total",SP.POP.TOTL,1988925,1992060,1994530,1995733,1997012,2000474,2006868,2018122,2021316,2039669,2048583,2052843,2057159,2059953,2061980,2063531,2065042,2066388,2073894,2088385,2102419,2108079,2111986 -Slovenia,SVN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,35723043931.6437,37722338558.6541,40019700455.6941,41688204520.7778,44819092964.1049,47268199660.7308,50966612707.7378,54367951006.2908,58273324402.9164,55236945905.9163,56247692544.0329,58585326217.6066,58814142549.4361,60918132745.7161,63069195484.7287,63252911986.9376,68303098564.2149,74079096867.6607,79621394544.1603,86642369185.52,85529328452.7201,91708901306.316,100047505432.693 -Solomon Islands,SLB,"Population, total",SP.POP.TOTL,429978,440395,450760,461216,471785,482486,493430,504619,516001,527833,540394,553721,567763,582365,597375,612660,628102,643634,659249,674993,691191,707851,724273 -Solomon Islands,SLB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,656303933.376954,623098445.554077,603709889.068129,662513252.619845,742101960.091026,820244846.304703,858306285.022014,889339152.803046,938944588.779175,974761216.503023,1106033815.08426,1186724881.69956,1266928176.94379,1429607508.46002,1452497262.15072,1480960144.72025,1558691910.32521,1655576746.77996,1755102318.95883,1822443106.66527,1844393174.76267,1898173458.97452,1932908968.3166 -Somalia,SOM,"Population, total",SP.POP.TOTL,8721465,9070747,9411103,9758281,10117354,10467292,10784973,11118092,11444870,11730037,12026649,12216837,12440326,12852485,13309235,13763906,14292847,14864221,15411094,15981300,16537016,17065581,17597511 -Somalia,SOM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,13442880285.8901,16192959466.6227,19491461566.6587,21440905381.0176,23071440239.8151,24329246156.4845,25672395729.2355,25332927407.9828,27342856485.1715,29978643961.9149 -South Africa,ZAF,"Population, total",SP.POP.TOTL,46813266,47229714,47661514,48104048,48556071,49017147,49491756,49996094,50565812,51170779,51784921,52443325,53145033,53873616,54729551,55876504,56422274,56641209,57339635,58087055,58801927,59392255,59893885 -South Africa,ZAF,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,373741836844.975,389801119697.223,413053924512.154,432834791125.312,467809549732.874,507809327335.713,552928701696.482,590750377588.724,621958344648.529,621510984850.456,648506796343.6,680230630915.234,680727254309.896,712857594431.254,723516271348.345,741514470950.206,752967638886.374,768262744304.346,798813742746.282,817745531261.199,785647045531.313,857412102971.096,933629269724.338 -South Sudan,SSD,"Population, total",SP.POP.TOTL,6114440,6394431,6686100,6992367,7317118,7662654,8029517,8417823,8823888,9229227,9714419,10243050,10701604,11106031,11213284,11194299,11066105,10658226,10395329,10447666,10606227,10748272,10913164 -South Sudan,SSD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,16038626934.766,14790639635.8154,20542512085.5034,13514791883.5209,11604302036.8601,..,..,..,..,..,..,.. -Spain,ESP,"Population, total",SP.POP.TOTL,40567864,40850412,41431558,42187645,42921895,43653155,44397319,45226803,45954106,46362946,46576897,46742697,46773055,46620045,46480882,46444832,46484062,46593236,46797754,47134837,47365655,47415794,47778340 -Spain,ESP,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,869533125689.443,924685257813.043,998316071948.184,1048018703282.95,1111677771380,1188490567999.29,1338583918102.83,1432639143977.27,1486151637639.11,1459424522696.69,1454101389207.95,1463308449873.9,1471787514964.55,1502464433906.34,1553280018841.75,1621468544092.43,1738407267476.24,1843464021723.47,1908195340915.93,2035518751264.33,1805583765331.86,1967871184393.63,2224163783918.87 -Sri Lanka,LKA,"Population, total",SP.POP.TOTL,18776371,18920275,19110707,19303180,19490431,19673866,19870706,20078655,20285643,20482477,20668557,20859743,21017147,21131756,21239457,21336697,21425494,21506813,21670000,21803000,21919000,22156000,22181000 -Sri Lanka,LKA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,82988269622.6823,83541983417.2558,88411491732.7414,96012950959.3527,103884002170.679,113602522780.278,125925922716.871,138455201173.249,147861397408.608,155706760890.126,170076959825.749,188834948123.676,213147269607.961,226188572151.216,237915156634.958,249921423253.422,269933518608.934,284155176162.371,297448301748.335,301384076381.572,291420844276.963,316673889890.606,311407815675.533 -St. Kitts and Nevis,KNA,"Population, total",SP.POP.TOTL,45461,45986,46264,46431,46580,46725,46874,47015,47156,47286,47403,47581,47727,47767,47789,47790,47788,47785,47761,47712,47642,47606,47657 -St. Kitts and Nevis,KNA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,640620545.57346,686793055.345933,704194376.005054,679343156.199586,738638404.191664,847290425.950031,914458106.497101,950075591.751273,1077661957.65415,1048041659.50596,1068102257.2052,1110245488.06901,1073498706.85189,1142184425.82148,1174961664.49452,1183839133.71751,1257164933.10445,1336213140.23249,1399998240.98111,1527016159.1594,1305456561.22881,1331719906.14346,1554401066.09515 -St. Lucia,LCA,"Population, total",SP.POP.TOTL,159500,160594,161799,163047,164239,165386,166470,167518,168576,169688,170935,172145,173124,173978,174804,175623,176413,177163,177888,178583,179237,179651,179857 -St. Lucia,LCA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1406483412.4609,1382133620.49183,1427791128.79555,1500458782.3486,1629720545.24146,1675404496.54049,1875026004.41739,1942083654.54734,2079234195.92775,2071396689.2377,2115205805.39024,2285087851.94366,2246338408.18716,2333492456.39647,2295943779.3575,2221041226.94577,2415529837.87794,2540700877.2934,2702033217.78176,2705380685.48274,2161037010.0323,2507996532.18139,3066623108.68828 -St. Martin (French part),MAF,"Population, total",SP.POP.TOTL,29610,30387,31160,31929,32697,33452,34183,34887,35541,36132,36458,36350,36026,35639,35261,35020,34811,34496,33852,33121,32553,31948,31791 -St. Martin (French part),MAF,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -St. Vincent and the Grenadines,VCT,"Population, total",SP.POP.TOTL,113813,113641,113450,113108,112608,112043,111427,110824,110316,109840,109308,108703,108083,107450,106912,106482,105963,105549,105281,104924,104632,104332,103948 -St. Vincent and the Grenadines,VCT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,703582354.311366,739369192.704474,790647313.460333,850141450.199767,901878370.566713,956229961.352408,1067691527.60037,1144266752.16478,1172349475.08695,1179170683.89769,1141354794.55347,1156723256.63846,1188381830.18514,1250490057.14996,1253778515.99004,1292445392.30261,1422476044.9099,1427156244.50113,1511182293.48738,1549277896.70996,1500974931.84845,1561044423.13326,1747889281.76494 -Sudan,SDN,"Population, total",SP.POP.TOTL,26298773,26947253,27570318,28188977,28831550,29540577,30332968,31191163,32065241,32948155,33739933,34419624,35159792,35990704,37003245,38171178,39377169,40679828,41999059,43232093,44440486,45657202,46874204 -Sudan,SDN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,84097167806.6058,92847116083.5445,99345405315.2686,107947291755.31,116415115774.775,127305810679.5,138897934129.316,151873154317.614,159308583960.961,158635048040.135,159694908589.926,158104726209.039,130339540706.188,133036641534.065,164924996239.691,168635354598.952,185703607000.565,180187070156.707,176569477488.282,176930479723.973,171934190924.646,179139346569.013,194419264999.101 -Suriname,SUR,"Population, total",SP.POP.TOTL,478998,487394,495666,503780,510572,516220,522023,527946,533938,539987,546080,552146,558111,563947,569682,575475,581453,587559,593715,600301,607065,612985,618040 -Suriname,SUR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3451176174.00143,3450258372.44995,3866234859.25178,4194484935.47843,4656956431.29607,5104601419.43948,5553074242.76563,6116274441.36033,6535134310.06833,6744679856.85135,6998483891.90007,7287563034.49645,8213418033.82234,8968094623.77967,9422022464.70498,9597775254.14773,8081836080.83801,9286632504.70056,10123317833.1595,10360196632.6335,8255118017.89215,8740091994.84002,10051574451.9078 -Sweden,SWE,"Population, total",SP.POP.TOTL,8872109,8895960,8924958,8958229,8993531,9029572,9080505,9148092,9219637,9298515,9378126,9449213,9519374,9600379,9696110,9799186,9923085,10057698,10175214,10278887,10353442,10415811,10486941 -Sweden,SWE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,262986733402.565,266489187516.532,276807254992.88,289821711107.813,306230411275.789,313423457846.89,351478207428.625,385461212146.146,402088350522.486,383326930585.432,406717211717.919,430123918452.671,442391061204.645,454602118873.682,467164180301.636,485242506451.325,503532637709.624,531738212907.978,555475423141.82,597296421598.038,602405403575.23,653864199337.091,709264438227.649 -Switzerland,CHE,"Population, total",SP.POP.TOTL,7184250,7229854,7284753,7339001,7389625,7437115,7483934,7551117,7647675,7743831,7824909,7912398,7996861,8089346,8188649,8282396,8373338,8451840,8514329,8575280,8638167,8704546,8775760 -Switzerland,CHE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,280337676722.157,283496027824.451,288737709386.113,302156900630.961,314509281550.919,333621322369.716,370903479218.563,386085343532.18,384345570038.224,416140530880.985,448117548360.078,457549580035.177,483354670209.561,506846623597.975,518723984424.553,546014360068.232,560671216442.423,568390809833.244,580121823006.177,601514487109.723,592472246339.165,661163286720.868,727862269250.187 -Syrian Arab Republic,SYR,"Population, total",SP.POP.TOTL,16307654,16727948,17164021,17611356,18084007,18583557,19432009,20703005,21474059,21827220,22337563,22730733,22605577,21495821,20072232,19205178,18964252,18983373,19333463,20098251,20772595,21324367,22125249 -Syrian Arab Republic,SYR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Tajikistan,TJK,"Population, total",SP.POP.TOTL,6272998,6408810,6541755,6672492,6801204,6929145,7057417,7188391,7324627,7468596,7621779,7784819,7956382,8136610,8326348,8524063,8725318,8925525,9128132,9337003,9543207,9750064,9952787 -Tajikistan,TJK,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,6237636650.61234,6953402898.17859,7932949451.63682,8872316221.32272,10232911595.715,13325769862.8756,15620395792.0756,17984708078.3152,20037704177.2754,19444731466.8155,21653486077.4243,24502585880.9376,27649805633.739,32099463306.2014,33792660554.7335,31549266606.6269,31190408619.8857,33106245229.3144,36853728137.6968,40375741625.0548,42975668872.7254,50644104069.0054,56513238015.2944 -Tanzania,TZA,"Population, total",SP.POP.TOTL,34463704,35414469,36353531,37333918,38360879,39439505,40562052,41716497,42870884,43957933,45110527,46416031,47786137,49253643,50814552,52542823,54401802,56267032,58090443,59872579,61704518,63588334,65497748 -Tanzania,TZA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,38397635129.2322,41035412847.7596,45424728619.1597,49137528449.6002,54215734491.8861,59756729332.5652,66793990556.825,72367362666.9604,78060601465.5184,82817093799.6649,88311391822.3409,97008341944.4486,94538848699.5473,101730421565.391,107666768641.17,115570968933.768,125227944469.82,131803637503.483,143320450208.403,153509154705.459,158202117000.623,172853752274.816,193419003366.565 -Thailand,THA,"Population, total",SP.POP.TOTL,63066603,63649892,64222580,64776956,65311166,65821360,66319525,66826754,67328239,67813654,68270489,68712846,69157023,69578602,69960943,70294397,70607037,70898202,71127802,71307763,71475664,71601103,71697030 -Thailand,THA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,450159524202.036,472148769887.008,505227662645.979,548965599952.189,597546308079.328,641156751077.724,699341325027.401,759751788274.693,785699069829.505,786436832216.09,849612883329.73,890774204971.964,962565591015.47,982839168917.538,1004937827301.52,1031140794620.07,1092206862235.57,1151820944657.23,1224779671359.09,1288581409510.32,1245069120884.82,1301911369163.73,1438888014301.17 -Timor-Leste,TLS,"Population, total",SP.POP.TOTL,878360,893001,909639,926721,945989,969313,994564,1019362,1043076,1065540,1088486,1112976,1137676,1161555,1184830,1205813,1224562,1243235,1261845,1280438,1299995,1320942,1341296 -Timor-Leste,TLS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1551665272.8695,1742653465.02361,2015103126.30714,1677163851.29111,1979567524.16478,2486896883.29534,3855443750.86486,5525311037.54307,8700495025.86968,6653494710.16553,7993085805.28958,10078657009.3812,9889667906.51378,8520448620.71562,7369154340.18707,6104768449.31022,5162933810.4797,5552917215.3913,5699052076.40954,7711987601.3052,8984439845.83038,8000828530.39964,6351732623.33077 -Togo,TGO,"Population, total",SP.POP.TOTL,5008035,5145426,5281538,5421001,5565218,5711597,5874240,6047537,6222482,6398624,6571855,6748672,6926635,7106229,7288383,7473229,7661354,7852795,8046679,8243094,8442580,8644829,8848699 -Togo,TGO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,6625361847.62582,6828010463.41618,7251589285.61529,7904907973.26669,8007041597.70803,7868218735.02418,8320543683.37169,8513889122.16921,9070626134.4757,9619449825.10774,10295659582.7829,11658821608.3062,11630842652.1446,12410504704.7497,13346253763.5958,14431017001.3743,14918456052.8948,15490160488.4356,16594413406.6961,17705189797.9128,18457916601.9712,20351026849.7021,23062972627.4944 -Tonga,TON,"Population, total",SP.POP.TOTL,102603,103210,103804,104410,105036,105633,106190,106638,106932,107144,107383,107611,107502,107089,106626,106122,105707,105415,105150,104951,105254,106017,106858 -Tonga,TON,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,361622227.367427,380240692.331559,410888878.141886,422652886.52712,425955890.39642,434237918.080783,455998842.215565,468636440.260326,500892956.540649,484716108.608521,495058194.084831,537942935.82851,552761614.875389,561804187.765555,573717401.117351,588033122.266908,629815341.018984,685756060.940546,718645426.171441,750090865.881889,766805071.876801,758733510.66286,.. -Trinidad and Tobago,TTO,"Population, total",SP.POP.TOTL,1332203,1338567,1345964,1353548,1361172,1369075,1376919,1384861,1392803,1401191,1410296,1420020,1430377,1440729,1450661,1460177,1469330,1478607,1504709,1519955,1518147,1525663,1531044 -Trinidad and Tobago,TTO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,16993546388.4667,18413837917.6837,20353802724.084,23578050186.3713,26978737731.8378,28952201695.7354,33700937292.9837,36535998565.8624,38528176947.5523,36723522030.7503,38575620549.3142,36695932591.946,39292030318.0085,40505017248.2784,40984933416.6442,40292017000.2871,37833180174.1863,39234907799.7809,38719355929.8584,39676881565.4972,35599967260.4968,38637593334.9158,40204277751.8529 -Tunisia,TUN,"Population, total",SP.POP.TOTL,9893316,9995123,10094561,10193798,10292225,10388344,10483558,10580395,10680380,10784504,10895063,11032528,11174383,11300284,11428948,11557779,11685667,11811443,11933041,12049314,12161723,12262946,12356117 -Tunisia,TUN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,58753368531.7036,62436975890.7914,64270951027.5391,68851330517.1055,74963610646.886,79166554902.2556,86362089313.1694,94073188793.2461,99585626249.0272,103981568731.589,108536994684.885,108506651045.141,111717263320.367,112967779635.07,117835570030.497,117904107351.281,121591546576.597,125425319932.646,131712352671.042,135954766042.7,124711572450.097,136967395856.393,150185068081.808 -Turkiye,TUR,"Population, total",SP.POP.TOTL,64113547,65072018,65988663,66867327,67785075,68704715,69601333,70158112,71051678,72039206,73142150,74223629,75175827,76147624,77181884,78218479,79277962,80312698,81407204,82579440,83384680,84147318,84979913 -Turkiye,TUR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,600165353581.271,581067122980.684,600837645602.291,629770001452.8,725675827980.933,806457687915.848,935081291782.482,1033285645005.53,1128304119846.36,1099362418432.51,1258071590993.05,1441544335504.09,1539087089647.95,1688340181950.02,1844207553526.28,1999739226479.89,2094055826427.9,2235991452622.14,2271021127029.73,2280349021411.87,2305017222253.02,2550547403574.01,3152014155938.55 -Turkmenistan,TKM,"Population, total",SP.POP.TOTL,4569132,4635094,4698968,4758988,4819792,4885775,4954029,5024894,5100083,5180957,5267970,5360811,5458682,5560095,5663152,5766431,5868561,5968383,6065066,6158420,6250438,6341855,6430770 -Turkmenistan,TKM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,18586983755.2961,20157529288.5995,20496346465.1716,21803917776.67,23414668603.199,25805435128.5124,29790477975.2709,35142048447.591,40024737819.5753,42357872179.9153,45727936308.379,52789503109.1211,57503025651.6309,62407231340.9251,67102532122.3818,71735322172.8103,76445710804.7088,78393490626.9716,85191175571.1163,92720533176.0789,..,..,.. -Turks and Caicos Islands,TCA,"Population, total",SP.POP.TOTL,18744,19578,20598,21739,22869,23995,25128,26268,27422,28581,29726,30816,32081,33594,34985,36538,38246,39844,41487,43080,44276,45114,45703 -Turks and Caicos Islands,TCA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,731508820.885078,809069265.797354,925067265.206291,1006443905.16151,1083504702.38293,1137365458.8574,864092281.580884,988753978.797377,1115573697.24627 -Tuvalu,TUV,"Population, total",SP.POP.TOTL,9638,9621,9609,9668,9791,9912,10030,10149,10272,10408,10550,10700,10854,10918,10899,10877,10852,10828,10865,10956,11069,11204,11312 -Tuvalu,TUV,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,45811849.6850482,56990726.270419,40676062.3861608,44949724.9392613,44706682.481988,45530114.8115714,53926708.8883799,53627448.8074876,54656008.5446022,50074481.8242334,50859234.0143498,44311196.5324125,55489699.3825566,48739778.0046761,63734094.5960075,63899190.5302593,63578028.9435007,68971344.0796367,73589570.387921,72808729.8755449,76764133.7595897,82667450.0538524 -Uganda,UGA,"Population, total",SP.POP.TOTL,24020697,24763325,25545090,26354736,27146084,27946588,28773227,29629804,30509862,31412520,32341728,33295738,34273295,35273570,36336539,37477356,38748299,40127085,41515395,42949080,44404611,45853778,47249585 -Uganda,UGA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,26688015524.199,28460693338.1508,31611638582.5216,34342397047.5727,37516397573.4908,41080720137.0884,47049184546.9209,52573873295.4984,58286886293.6208,62341532650.9487,66614102246.2257,74468592859.5027,68126892520.7261,70302250671.9997,75321006669.7416,79794449795.9613,81510174710.0033,83396719988.871,90357340620.6766,98124399982.6317,102910722959.95,110754111500.427,124812296590.987 -Ukraine,UKR,"Population, total",SP.POP.TOTL,49176500,48662400,48202470,47812949,47451626,47105171,46787786,46509355,46258189,46053331,45870741,45706086,45593342,45489648,45272155,45154036,45004673,44831135,44622518,44386203,44132049,43822901,38000000 -Ukraine,UKR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,196199673457.923,221416639063.408,237045895761.154,265307945727.867,305493612942.725,324281515178.167,357116751794.51,400020305816.22,413752309595.278,351979442975.055,378049961958.927,401845866680.09,437679568682.99,498056033904.966,456705360942.42,453680175666.236,480655522169.114,511217276081.942,539212440438.066,567958984674.642,558933550616.237,574083981170.9,472420412769.705 -United Arab Emirates,ARE,"Population, total",SP.POP.TOTL,3275333,3454198,3633655,3813443,3993339,4280993,4898954,5872624,6988685,7992644,8481771,8575205,8664969,8751847,8835951,8916899,8994263,9068296,9140169,9211657,9287289,9365145,9441129 -United Arab Emirates,ARE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,334552880543.027,346949412469.582,346950158671.415,381564402538.566,431534089054.952,471872521377.034,537098185011.825,575383498868.561,593176158484.32,564702188549.929,574562789064.781,623375349052.562,649109022131.562,664840707156.936,697894669879.56,624484063528.05,622805743361.848,650096171932.06,671941468364.142,692688775759.488,660089089173.365,722391372288.152,831334764986.589 -United Kingdom,GBR,"Population, total",SP.POP.TOTL,58892514,59119673,59370479,59647577,59987905,60401206,60846820,61322463,61806995,62276270,62766365,63258810,63700215,64128273,64602298,65116219,65611593,66058859,66460344,66836327,67081234,67026292,66971395 -United Kingdom,GBR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1566824135953.53,1659095326607.63,1747018671444.33,1829051955685.41,1938726584137.18,1997217429153.26,2105087777733.11,2158268572613.09,2241113253554.63,2162883450270.82,2291482445011.17,2364606289621.73,2419711701542.4,2516786815639.89,2619024574625.88,2706922667067.12,2824431493908.68,3009161540809.9,3087113247658.17,3284442488660.23,3004020030135.63,3394051352381.87,3697343158265.57 -United States,USA,"Population, total",SP.POP.TOTL,282162411,284968955,287625193,290107933,292805298,295516599,298379912,301231207,304093966,306771529,309327143,311583481,313877662,316059947,318386329,320738994,323071755,325122128,326838199,328329953,331511512,332031554,333287557 -United States,USA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,10383667000000,10746067000000,11052223000000,11534846000000,12317643000000,13166516000000,14066382000000,14550103000000,14718111000000,14426269000000,15172073000000,15849978000000,16675595000000,17188331000000,18043094000000,18660910000000,19020479000000,19885550999999.9,20937355000000.1,21764537000000,21472360000000,23617113000000,25978300000000.1 -Uruguay,URY,"Population, total",SP.POP.TOTL,3292224,3300939,3306441,3310202,3313801,3317665,3322282,3328651,3336126,3344156,3352651,3361637,3371133,3381180,3391662,3402818,3413766,3422200,3427042,3428409,3429086,3426260,3422794 -Uruguay,URY,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,35589399118.3675,34979755778.9124,33072679914.8261,32427632312.7185,34875142077.016,39233227332.6862,42390580165.8267,46400674416.6226,50302436829.321,52631732294.5872,57178942191.0687,61598786878.5658,60411128296.5582,65675805180.8987,68951077256.0812,71517949806.8711,73641315016.2191,75648575039.5166,77463105750.1885,80068688779.9749,75575916033.3613,79288700401.961,89844458474.6916 -Uzbekistan,UZB,"Population, total",SP.POP.TOTL,24650400,24964450,25271850,25567650,25864350,26167000,26488250,26868000,27302800,27767400,28562400,29339400,29774500,30243200,30757700,31298900,31847900,32388600,32956100,33580350,34232050,34915100,35648100 -Uzbekistan,UZB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,64557094315.5386,68624937389.4293,72672083251.4133,77501739341.9236,86107396124.9036,95192827565.7445,105101693799.491,123386896239.69,139155898214.845,147063406225.707,158919215599.993,174714953009.755,182611507380.273,193795439653.462,202521833728.445,212542989618.661,218609964316.417,225889693622.919,247077796724.794,262329620904.193,268497524898.419,302087811540.111,343720096367.339 -Vanuatu,VUT,"Population, total",SP.POP.TOTL,192074,197034,202125,207258,212422,217632,222923,228345,233952,239689,245453,251294,257313,263534,269927,276438,283218,290239,297298,304404,311685,319137,326740 -Vanuatu,VUT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,391317341.570996,399589494.361886,373626619.570006,396565877.866851,421000785.230455,450214138.024154,514191804.12237,542060905.364602,610440646.944343,611669964.476787,630275190.52202,668614871.783441,664756175.902784,720803973.036473,769565517.034554,781705766.9819,830238932.026342,882095673.096665,953999761.381795,1113604991.45269,1044620544.3876,1125261136.96064,1235359571.04038 -"Venezuela, RB",VEN,"Population, total",SP.POP.TOTL,24427729,24880203,25330929,25782029,26226927,26668785,27102081,27525097,27933833,28327892,28715022,29096159,29470426,29838021,30193258,30529716,30741464,30563433,29825653,28971683,28490453,28199867,28301696 -"Venezuela, RB",VEN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,280536746831.33,295206724163.785,269623209646.254,254519413450.806,307599608041.798,355723801300.599,406850018364.289,461741852867.68,491315697229.264,473744694391.916,470272931256.651,493557717634.178,..,..,..,..,..,..,..,..,..,..,.. -Viet Nam,VNM,"Population, total",SP.POP.TOTL,79001142,79817777,80642308,81475825,82311227,83142095,83951800,84762269,85597241,86482923,87411012,88349117,89301326,90267739,91235504,92191398,93126529,94033048,94914330,95776716,96648685,97468029,98186856 -Viet Nam,VNM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,199389527019.232,216670895823.92,233422304894.208,254521489360.899,280415651915.467,311130013571.81,342252549507.172,374584659410.909,402828110615.816,422703280321.076,456627074584.79,497552154232.623,550299080607.805,586178170078.543,635581021807.564,664721542586.763,728466205199.109,799648198230.875,888802295163.323,972125887433.972,1021018355191.42,1084550065962.56,1257308749200.26 -Virgin Islands (U.S.),VIR,"Population, total",SP.POP.TOTL,108642,108549,108509,108505,108466,108453,108369,108337,108397,108404,108357,108290,108188,108041,107882,107712,107516,107281,107001,106669,106290,105870,105413 -Virgin Islands (U.S.),VIR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -West Bank and Gaza,PSE,"Population, total",SP.POP.TOTL,2922153,2997784,3075373,3154969,3236626,3320396,3406334,3494496,3591977,3689099,3786161,3882986,3979998,4076708,4173398,4270092,4367088,4454805,4569087,4685306,4803269,4922749,5043612 -West Bank and Gaza,PSE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9038545157.60845,8111957370.27575,7093716702.64508,8248193871.31381,10214336224.2082,11921729599.0358,12286184596.1772,13282110142.1397,14501954117.2174,15487466673.2466,16520692429.7893,18568276886.8443,22319464164.0717,23691827250.3597,25433044780.3951,28541925647.3697,30924647527.1429,32283134198.3557,34624915218.2751,35899329307.0678,31801395811.6039,36780214110.3788,41230387432.0062 -"Yemen, Rep.",YEM,"Population, total",SP.POP.TOTL,18628700,19143457,19660653,20188799,20733406,21320671,21966298,22641538,23329004,24029589,24743946,25475610,26223391,26984002,27753304,28516545,29274002,30034389,30790513,31546691,32284046,32981641,33696614 -"Yemen, Rep.",YEM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,57828818707.752,61256457198.6551,63844926180.3964,67076583752.7898,70771725796.7412,76029654151.3063,74982896484.5914,84633223924.6885,88661597536.8846,92108906866.8183,100773727204.536,89257459982.9185,92221548846.2957,100075915958.78,..,..,..,..,..,..,..,..,.. -Zambia,ZMB,"Population, total",SP.POP.TOTL,9891136,10191964,10508294,10837973,11188040,11564870,11971567,12402073,12852966,13318087,13792086,14265814,14744658,15234976,15737793,16248230,16767761,17298054,17835893,18380477,18927715,19473125,20017675 -Zambia,ZMB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,16371894317.7722,17687460524.4409,18858562550.9388,20709284241.0536,21942432508.0209,23963689063.6113,26200399241.6667,28569455268.9916,32501685763.1422,37693437337.6833,40347137350.2459,44313413076.5895,48670115552.996,51230925385.5009,53398105822.3561,53416507706.8293,53992049816.7248,56131829918.0733,61606396630.7654,63492882556.9054,61846210564.3045,70639394403.0205,79582232975.723 -Zimbabwe,ZWE,"Population, total",SP.POP.TOTL,11834676,11910978,11984644,12075828,12160881,12224753,12330490,12450568,12550347,12679810,12839771,13025785,13265331,13555422,13855753,14154937,14452704,14751101,15052184,15354608,15669666,15993524,16320537 -Zimbabwe,ZWE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,20605204751.6883,21967424731.1862,20968973569.3116,18115604167.9482,16628036062.9445,16263785266.7528,15378279697.6889,14312403425.106,9818536190.14037,17179075418.7588,21303117810.3071,24052481285.9971,27757848028.1536,30838319662.783,31498177130.9232,32643690895.2897,34496858343.3466,30501640057.1103,36215581648.8175,34642059041.2423,32274863346.2451,36480599220.0453,41569661536.4411 -Africa Eastern and Southern,AFE,"Population, total",SP.POP.TOTL,401600588,412001885,422741118,433807484,445281555,457153837,469508516,482406426,495748900,509410477,523459657,537792950,552530654,567892149,583651101,600008424,616377605,632746570,649757148,667242986,685112979,702977106,720859132 -Africa Eastern and Southern,AFE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,824901414536.993,873832919689.574,925910392631.608,978169046243.989,1061254431928.62,1162185189494.48,1276233307012.9,1391273320644,1474004751756.91,1506300160838.72,1591825480165.32,1694115534085.52,1710201040898.69,1821140901768.17,1958330538404.94,2035249028186.71,2162052843714.76,2238270715627.01,2354643378757.02,2452005524224.94,2428280918219.67,2653519342015.35,2939589589046.14 -Africa Western and Central,AFW,"Population, total",SP.POP.TOTL,269611898,277160097,284952322,292977949,301265247,309824829,318601484,327612838,336893835,346475221,356337762,366489204,376797999,387204553,397855507,408690375,419778384,431138704,442646825,454306063,466189102,478185907,490330870 -Africa Western and Central,AFW,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,1027392898558.72,1094752528969.29,1180246037164.44,1263738572717.65,1343211628276.08,1435154117256.04,1587047865456.49,1620866860072.07,1645324950363.69,1701905819739.01,1790731286445.75,1891321433202.05,1914419170555.99,2057972173233.77,2282913200805.92 -Arab World,ARB,"Population, total",SP.POP.TOTL,287065982,293512340,300018650,306573087,313249616,320558754,328703057,337498222,346630443,355754908,364427661,372351065,380383408,389131555,397922915,406501999,415077960,423664839,432545676,441467739,449228296,456520777,464684914 -Arab World,ARB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2873661048737.46,3000146966401.12,3021381144904.77,3208267280058.09,3604889334587.85,3893759577868.9,4280198457995.38,4623824290826.29,4969034425863.78,4997215514198.59,5247404215618.67,5552498289697.88,6026266786596.86,6152580427265.22,6209979210294.29,5764514525777.94,5718721505037.15,6090100375069.09,6363797833949.44,6572459734743.35,6363790504374.45,6914509575066.54,7829695832236.61 -Caribbean small states,CSS,"Population, total",SP.POP.TOTL,6582141,6626803,6671842,6716747,6760372,6802474,6844183,6884705,6923924,6964240,7004428,7044357,7088996,7135884,7181044,7224602,7265272,7303634,7374650,7424102,7444768,7481877,7505478 -Caribbean small states,CSS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,59554551216.0767,62095042705.9076,65644555099.3489,71073772668.6734,76990304633.8149,81774537812.5725,90395343194.6528,96780569381.6818,100485940945.573,97124061909.9573,100189085585.093,100497833300.68,105162914449.14,108412224563.423,110347078317.91,111152883764.604,109107510547.036,115079372685.185,118097068474.176,122059027630.694,112398270552.055,125932062569.839,151127538923.904 -Central Europe and the Baltics,CEB,"Population, total",SP.POP.TOTL,108447824,107660041,106959751,106624167,106331716,106041911,105772481,105378748,105001883,104800475,104421447,104174038,103935318,103713726,103496179,103257886,102994278,102740078,102538451,102398537,102180124,101413176,100108221 -Central Europe and the Baltics,CEB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1069933183039.31,1145727999424.67,1224491869882.88,1284862102318.47,1382672586545.17,1473711302674.03,1623102059345.86,1789277156947.72,1996245091411.72,2003547625150.9,2101589292837.54,2237347689318.43,2319539754668.65,2398659524213.66,2499648272132.81,2605387618194.54,2761280613874.46,2961578615019.2,3169895643278.48,3461676186322.89,3460745344983.34,3696298348779.93,4150423235124.44 -Early-demographic dividend,EAR,"Population, total",SP.POP.TOTL,2499206970,2545843129,2591204247,2635731526,2680567394,2725013738,2769421149,2813790790,2857587007,2901329923,2946285613,2991403487,3035159632,3078407213,3121656203,3165214886,3208369547,3250752755,3292896609,3334561751,3374383528,3411268373,3447398652 -Early-demographic dividend,EAR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,10241094743730.5,10734302759209.3,11132303464709.1,11955564162430,13051668306974.1,14277676267038.3,15770444814595,17266056334304.5,18360944442841.1,18900288317260.6,20349557431255.4,21866042996982.2,23287417058237.8,24291648931651.7,25323735094500.6,26013734649783.6,27342377677264.6,29040011758023.6,30858232735344.4,32139739889314.9,31193653036002.9,34533053820661.5,39424004197287 -East Asia & Pacific,EAS,"Population, total",SP.POP.TOTL,2048148696,2066530023,2083969920,2100610344,2116651449,2132517760,2148405823,2164155292,2179914111,2195169711,2210203758,2225992094,2243776727,2261274500,2278232287,2294507020,2310721864,2327132966,2341383691,2353856866,2363934334,2370189840,2375162207 -East Asia & Pacific,EAS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,11737405819272.6,12494670021525.5,13388042316013.8,14398754495039.6,15752978584563.6,17227103530488.6,19140659420012,21362156154055.7,22907871468751.9,23812306917841.1,26015575055741.6,28122531187200.2,30260953581080.6,31975587566720.5,33552363898240.3,34643048697799.1,36018229610536.7,38015400761985.3,40724752293714.2,43209220116092.3,43760120164529,48187621603374.5,53023601600466.3 -East Asia & Pacific (excluding high income),EAP,"Population, total",SP.POP.TOTL,1817006555,1834101877,1850472928,1866240858,1881561559,1896788261,1911721676,1926306467,1940768141,1955042105,1969186913,1984267781,2001264155,2018068461,2034264880,2049757846,2065173002,2080919319,2094524854,2106391925,2116378687,2123628421,2129112126 -East Asia & Pacific (excluding high income),EAP,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,5894393879578.5,6439839974871.07,7064585037348.79,7825415893231.67,8745032359930.84,9840532563069.67,11257482317938.3,12964912727211.5,14345179730487.5,15432507811513.8,17083970911894.5,18826060254580.1,20622177313100.6,21860654775126.5,23214160656490.8,23936063821374.5,25185680057350.2,26834054245918.9,29180843370438,31444453305531.8,31977880229802,35725224568985.2,39553470015273.4 -East Asia & Pacific (IDA & IBRD countries),TEA,"Population, total",SP.POP.TOTL,1793649873,1810599718,1826844868,1842469495,1857622964,1872697597,1887496209,1901960228,1916309337,1930470829,1944510719,1959494275,1976386829,1993077336,2009149689,2024511016,2039794828,2055414680,2068898629,2080648616,2090523535,2097669023,2103055378 -East Asia & Pacific (IDA & IBRD countries),TEA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,5887017113831.52,6431780589646.19,7055743790906.02,7815622475774.95,8734088053105.25,9828217250413.9,11243393709057.2,12948687288926.8,14327246108907.5,15413210272376.8,17062601934234.5,18802516012037.4,20596403350181.2,21833338242755.8,23185162952483.6,23906169025320.7,25154229666959.7,26800530830387.2,29144384101715.2,31405179411623.1,31937959945112,35680633892339.1,39504079911939.8 -Euro area,EMU,"Population, total",SP.POP.TOTL,321324622,322562386,324141533,325904835,327702192,329398861,330939600,332660837,334290264,335377620,336171621,335442349,336183135,337328817,338486932,339514675,340509447,341246081,342065158,342452734,342913447,343063979,344475911 -Euro area,EMU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8135465349661.17,8521547715445.88,8862013834717.92,9062612188487.71,9511671456685.38,9909604995466.59,10787801871386.1,11438440978822.5,11867475050240.5,11677650413834.8,12054794995901.6,12599968024149.1,12768857595898,13228627313673.2,13593625072384.9,13945378729637.4,14876268847657.5,15624672899472.2,16378315173302.8,17349057242716.4,16580798169972.3,17923743159765.8,19671792857656.8 -Europe & Central Asia,ECS,"Population, total",SP.POP.TOTL,862786211,863909133,865474170,867701442,870270838,872913705,875627934,878456268,882088404,885659803,889169629,891329416,894660467,898607432,902670860,906695444,910633273,914078289,917380453,920277481,922353365,923564027,920375568 -Europe & Central Asia,ECS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,13671295515260.8,14366080993283.9,15049076292633.3,15671050243794.4,16719709841992.4,17693300615337.5,19604646169898.2,21011634721340.6,22430591472856.4,21994381170129.2,23080976934476.6,24500044282044.3,25283314576838.3,26526480813780.4,27308332061493.2,27806468452664.2,29202687525179.9,30899090776740.8,32581096375727.6,34366611785885,33335977307480.7,36486334811394.6,40366731747862.4 -Europe & Central Asia (excluding high income),ECA,"Population, total",SP.POP.TOTL,370646199,370739184,370807684,371072025,371533136,372077135,372780224,373485209,375012208,376867673,379079046,381328678,383374474,385623200,387912182,390267733,392579664,394705361,396674671,398690076,400061023,401682855,397824705 -Europe & Central Asia (excluding high income),ECA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2240272182215.81,2378551561493.06,2547531737211.25,2804280728568.09,3150773546895.92,3537615907616.28,4214637594209.32,4715537586022.42,5395706893242.87,5220754257172.12,5632500519498.89,6247222977654.53,6682389907318.94,7243554918033.77,7439818597177.61,7369605787962.1,7536183432560.92,8042552106421.18,8630178287647.39,8923923516020.78,8963952362509.13,9942217171979.75,11020720412879.1 -Europe & Central Asia (IDA & IBRD countries),TEC,"Population, total",SP.POP.TOTL,435816101,435418872,435070718,435154320,435471706,435872410,436426410,436798968,437985547,439691944,441664138,443820083,445763231,447902778,450071285,452273365,454426367,456393433,458211234,460092452,461273023,462431038,457549063 -Europe & Central Asia (IDA & IBRD countries),TEC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2824419834547.46,2995372270888.36,3205673275084.13,3485763329760.76,3891685180613.69,4321315246086.19,5088342505474.59,5693499749902.48,6503657995571.78,6350526307551.59,6831486798640.96,7540857784920.4,8025640901406.94,8615140788033.06,8867861190734.09,8873230712740.83,9132652416247.22,9764436189419.34,10478416618793.7,10956591389175.1,11009300724629.9,12134169483652.5,13500493083710.3 -European Union,EUU,"Population, total",SP.POP.TOTL,429342455,429910140,430898141,432434810,434059923,435600393,437014860,438484072,439892213,440934530,441552554,440769682,441419873,442496175,443601373,444570054,445515422,446215182,447001100,447367191,447692315,447178112,447370510 -European Union,EUU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9457413440911.87,9914704241228.33,10337854940870,10603682099711.7,11165521535986.4,11648609128615.4,12706345380415.1,13536335144454,14176234676387.3,13986507330293.4,14488617726400.9,15186746571566.9,15437151085154.5,15983011561766.3,16455823428113.6,16933599812037.4,18042459826825.5,19017978252026.3,19993752613910.1,21280911502242.1,20523084338777.4,22162444835087.1,24419918074153.9 -Fragile and conflict affected situations,FCS,"Population, total",SP.POP.TOTL,612628069,626414685,641818620,658026690,674005044,690401342,707149927,723853346,741306396,759795159,778717407,797785010,817412582,837410155,857018106,876436311,896272698,916427867,936721531,957785553,979763631,1001844479,1019139254 -Fragile and conflict affected situations,FCS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,2927847938321.14,2966686251557.29,3158343235299.86,3234666057909.96,3525086893170.6,3761728925599.71,3880173759097.13,3832872720261.04,3970016736295.29,4187283203276.87,4406093557288.28,4609995459418.57,4447454047610.09,4692736629551.6,4990432023698.62 -Heavily indebted poor countries (HIPC),HPC,"Population, total",SP.POP.TOTL,475127894,488040621,502494432,517663749,532571131,547936900,563930944,579864063,596301357,613535903,630953183,648927117,667520863,686620331,706617213,727129254,748356635,770390212,792615894,815100831,838066650,861156745,884288332 -Heavily indebted poor countries (HIPC),HPC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,595689360875.899,634263438381.654,668374197331.82,712750208855.363,774032557399.988,846639533688.875,925593092171.286,1005983124398.55,1085179434801.34,1141750100585.22,1213163116133.02,1293284405804.79,1328724358782.05,1416913947886.51,1585207913268.52,1670188467875.02,1786240494136.34,1888962304884.29,2010163638267.08,2133429575782.96,2168739195508.15,2339906859619.13,2625809615284.35 -High income,HIC,"Population, total",SP.POP.TOTL,1102139639,1108870086,1115681856,1122515138,1129571825,1136981371,1145510251,1154791752,1164409232,1173066945,1180459116,1185474102,1192042103,1198818424,1205686277,1212444178,1219354936,1225544265,1231508785,1236709936,1241718902,1241268556,1244364814 -High income,HIC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,30479726472759.4,31698663859406.3,32828008311408.6,34162821191010.8,36387686832957.8,38494222733244,41468375880094.7,43644641364136.7,44938603738859.9,44120239115173.6,46335563630323.9,48625900478656.5,50436223792499.4,52317857537440.7,54147653339074,55300031094924.6,57074155668128.3,59822989683870.4,62574378084873.6,65261025330599.1,63695600815552,69347913869508.9,76420387459690.2 -IBRD only,IBD,"Population, total",SP.POP.TOTL,3980362565,4027427875,4073344085,4118689510,4164013241,4208938572,4252600296,4294824957,4338065967,4382047562,4425784776,4471184320,4518973677,4567977613,4616584921,4663653202,4709004177,4753252242,4794555928,4832928887,4867091692,4895372787,4913887020 -IBRD only,IBD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,17427524072851.2,18550265412526.2,19704711709715.2,21260209229750.2,23521865056757.5,25963117431943.1,29399692924602.7,32961228313571.5,35967850974712.6,37301308035691,40561139956410.9,44055238372271.7,47285376189654,49842789113288.9,51990680044499.5,52905315752337.9,55295802594453.8,58802222110618.9,63092977981430.4,66671944541823.1,66233356468344.3,73745835413734.3,82232892843011.9 -IDA & IBRD total,IBT,"Population, total",SP.POP.TOTL,5093905754,5168706338,5243283354,5317576423,5391795246,5465994258,5539726956,5612590218,5686534868,5761985631,5838720255,5917716358,5998432110,6079501853,6160290229,6240231201,6319805369,6399653365,6477695468,6553978299,6627317499,6695487825,6754029970 -IDA & IBRD total,IBT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,19315983587165.4,20558927851197.7,21819875372506.7,23527566980513.6,26004992333587.3,28697713537918.8,32411486428923.1,36271477316446.8,39523418077089.9,41046647043969.9,44569024130337.6,48333242355791.3,51823812315436.9,54695188144520.6,57246442024818.1,58413056269323.9,61102936084895.1,64894844749965.8,69632619024229.2,73604836478999.1,73232575988415.6,81382132900636.7,90738205843678.5 -IDA blend,IDB,"Population, total",SP.POP.TOTL,370910722,381142622,390704440,399995493,409622323,419337831,429250772,439576756,450269469,461410153,473204510,484919898,495868522,506443358,516900084,527175885,537358412,547984961,559155599,570633332,582637127,595016031,607735968 -IDA blend,IDB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,1642703402080.87,1727395441843.65,1844788371973.06,1968710141721.16,2081889246231.6,2212161549535.77,2375248128602.43,2470710568728.01,2557493175640.81,2650681977181.31,2829489970767.1,2964370552239.37,2969786945538.65,3266281796591.83,3634625004006.98 -IDA only,IDX,"Population, total",SP.POP.TOTL,742632467,760135841,779234829,798891420,818159682,837717855,857875888,878188505,898199432,918527916,939730969,961612140,983589911,1005080882,1026805224,1049402114,1073442780,1098416162,1123983941,1150416080,1177588680,1205099007,1232406982 -IDA only,IDX,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1010975636737.9,1078877568334.66,1141719800997.85,1225484525987.72,1334415028089.2,1468614376382.45,1610926426394.7,1775907939314.21,1922746665823.7,2028556518903.59,2174295110669.59,2321025306736.03,2469530604794.16,2653521837538.5,2896909160079.23,3055871219345.2,3271869080520.2,3465953666055.87,3736592460907.64,3998186511648.55,4061072432094.73,4402429411836.69,4906838581711.69 -IDA total,IDA,"Population, total",SP.POP.TOTL,1113543189,1141278463,1169939269,1198886913,1227782005,1257055686,1287126660,1317765261,1348468901,1379938069,1412935479,1446532038,1479458433,1511524240,1543705308,1576577999,1610801192,1646401123,1683139540,1721049412,1760225807,1800115038,1840142950 -IDA total,IDA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1925560016020.17,2047858822098.28,2153068897984.01,2305188785014.43,2519705619610.67,2773674650592.16,3038455687143.53,3326362982235.27,3561399296540.33,3751656162335.83,4014453064861.56,4284790335323.78,4546141417699.18,4859978815424.99,5265183157882.61,5518571303047.44,5818946747792.19,6104377462807.65,6552277457864.29,6946462651020.89,7013649304449.55,7651035464257.79,8521570074535.25 -Late-demographic dividend,LTE,"Population, total",SP.POP.TOTL,2046026051,2060709239,2074581734,2088091467,2101411095,2114895075,2128519993,2142132712,2156046215,2169857353,2182768187,2196512073,2212381413,2228485037,2244043359,2258406242,2272340223,2286627723,2298987594,2309491804,2317277554,2322606486,2325542891 -Late-demographic dividend,LTE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9614341441287.29,10328927370181.6,11141094759689.5,12193515261596.8,13574899367139,15113388709796.9,17374385789590.8,19728059902818.1,21857953120498,22746321917851.2,24808141071998,27222876346226.1,29338271791304.3,31076369111783.8,32538285353344.3,32731034520230.9,33938092507154.1,36097655658452.2,38989189464127.9,41586120870289.9,42092128613231,47000779924575.9,51824817663847.4 -Latin America & Caribbean,LCN,"Population, total",SP.POP.TOTL,521281149,528688278,535935546,542976557,549897638,556739532,563424119,569972223,576386180,582738079,588873862,595510008,602139396,608642242,615046755,621390109,627668470,633797190,639628226,645295804,650534986,654980630,659310564 -Latin America & Caribbean,LCN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,4431014917841.7,4558815545622.42,4631067821552.05,4814434645413,5208069108814.52,5607657622341.58,6211378857000.09,6759041872945.9,7188903176936.46,7148324585888.93,7646662796533.35,8228708456775.27,8512587729025.14,8916896297802.52,9198066572191.58,9193026405572.49,9414505986622.42,9884802538361.69,10223806681865.6,10459488935155,9945406834578.8,10973634871173.3,12241633120450.3 -Latin America & Caribbean (excluding high income),LAC,"Population, total",SP.POP.TOTL,468125382,474817217,481353718,487688819,493917791,500076606,506094784,511989821,517759389,523473668,528978305,535014773,541048298,546954103,552781789,558562792,564377885,570381211,576620516,582701622,588011178,592503434,596596955 -Latin America & Caribbean (excluding high income),LAC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3899254817174.4,4001574752113.35,4091317463401.33,4278122743735.94,4592780071167.48,4921268725226.51,5423739872391.03,5882129047497.51,6272930973154.88,6252484911716.88,6716056136722.27,7237184754071.71,7461713760449.59,7807979442323.62,8054223102559.57,8023153270188.48,8206061310137.89,8616256566375.78,8904800823140.64,9104103583717.78,8663647305081.58,9534503501799.78,10631233693501.8 -Latin America & the Caribbean (IDA & IBRD countries),TLA,"Population, total",SP.POP.TOTL,505304844,512664811,519865563,526861169,533741619,540553499,547224720,553771247,560186837,566539590,572674666,579334666,585986944,592507619,598949385,605335594,611668087,617875842,623841282,629515571,634680385,639188695,643602758 -Latin America & the Caribbean (IDA & IBRD countries),TLA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,4285132264418.85,4408575042609.76,4478459242854.26,4656595266835.7,5034448226611.91,5425346071778.75,6015485219947.85,6550827722379.63,6973876457435.49,6937117989401.62,7427427494658.77,7998492360624.11,8276432249487.77,8674216094353.97,8950689239477.32,8945378216187.77,9163951955873.26,9628086915537.19,9962555469244.68,10190393040752.6,9691449379311.64,10695510333825.1,11929875923464 -Least developed countries: UN classification,LDC,"Population, total",SP.POP.TOTL,662018171,678096204,695718323,713914587,731736892,749852827,768211301,786317083,804637337,823699833,843512714,864134636,885375140,907133963,929398042,951928215,975265947,999288864,1023493788,1048193552,1073743450,1099568566,1125179454 -Least developed countries: UN classification,LDC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,832816570791.311,896666488021.526,958404596066.606,1029283686885.49,1124435921014.65,1243507417673.45,1369889956971.46,1521855928841.04,1651160596524.43,1750369847065.85,1873556673072.53,1991600401594.98,2106772193393.96,2263132294959.49,2459845932877.67,2577710777763.04,2759763634283.07,2924523796540.12,3146354731729.59,3370265886883.03,3420823966950.93,3687715370547.7,4130479282375.58 -Low & middle income,LMY,"Population, total",SP.POP.TOTL,5017754094,5092597797,5167128185,5241165329,5315125594,5389050292,5462498035,5535250735,5609097906,5684268515,5760811387,5839474111,5919873728,6000646643,6081160760,6160876270,6240319049,6320334263,6399036689,6476092964,6549996251,6618837270,6678280291 -Low & middle income,LMY,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,18314255265311.7,19504601995749.7,20747148901804.5,22444561056011,24801578246846.1,27392043189193.1,30928014364419.7,34609681477537.5,37702327603729.8,39228556137285.9,42657166063290.7,46278840388249,49659143560634.1,52448867966654.9,54909288011132.5,55970668720747.6,58525564095526.6,62132257566071.7,66683830983573.8,70427977541694,70082728808370.2,77943069401733.7,86864137142090.2 -Low income,LIC,"Population, total",SP.POP.TOTL,382593480,392924294,404771898,417212831,429354375,441886612,455313027,469010772,482640782,496609143,510897321,525506329,540002626,553835758,567702296,582173028,597683499,613946858,630865826,648755452,667053670,685250041,703727949 -Low income,LIC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,365930147641.853,393986802499.459,413975507291.778,442768022675.165,482112996712.566,527777723107.377,569863149290.381,630460988523.352,676393526895.414,711510086838.924,763425949472.438,791495539420.271,785837947455.138,839283540240.076,938462050478.478,1000583448368.97,1089457971775.78,1138728692577.29,1205256948788.35,1279317632967.59,1304805307981.27,1389913929626.71,1550061024236.5 -Lower middle income,LMC,"Population, total",SP.POP.TOTL,2259879800,2303146181,2345451008,2387347922,2429871397,2471959522,2513577643,2555229019,2596637908,2638537324,2681991417,2726052485,2769675465,2813932332,2858673420,2902878488,2946639176,2990172548,3033153113,3075311775,3117225754,3157462375,3190184199 -Lower middle income,LMC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,6104095976626.89,6523817450771.15,6917526336500.94,7521888262963.16,8248632157305.17,9048802708507.13,9968857210066.36,11005831905044.9,11617287055442.5,12215220635208.2,13150419820220,14035163837217.3,14997747629527.8,15751771043101.6,16459556202019.8,17038170195350.3,18097053338057.6,19213198157013.6,20668198796634.7,21785558810861.7,21329145315983,23546071783478.6,26511257443818.4 -Middle East & North Africa,MEA,"Population, total",SP.POP.TOTL,321037453,327691655,333949565,340215354,347044925,354462370,362633997,371324802,380294099,389332369,397997557,406045323,414117603,422790409,431664579,440506473,448917409,456885486,465073490,473201775,479966649,486174763,493279469 -Middle East & North Africa,MEA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3644130371713.18,3802882352376.29,3898557644942.74,4157848756380.11,4619525535700.67,4961727892585.97,5430411870587.07,5904227633198.81,6268306492497.69,6316958129361.67,6673206309618.55,7065282594061.5,7430343392399.47,7532135735136.38,7568723041266.45,7000846738754.81,7050934859374.28,7504272207654.68,7806267168338.82,8000989925539.59,7853361628471.68,8565080938586.13,9684467988734.52 -Middle East & North Africa (excluding high income),MNA,"Population, total",SP.POP.TOTL,283899110,289544085,294813993,300102895,305945780,311948573,317983066,324080392,330293304,336675037,343313330,349770162,356239722,363310225,370756356,378137339,385054538,391607422,398375344,405259403,411810124,418047201,424328381 -Middle East & North Africa (excluding high income),MNA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2025895249421.83,2142379799421.45,2241872398503.09,2331454691779.16,2581195160898.44,2747265012459.98,2996947779237.27,3299865979180.98,3497107761313.4,3586751698377.48,3797298651639.41,3857977554375.42,4012900526989.27,4029930994099.61,3985155928535.97,3822882619701.83,3930275851360.19,4162743986748.76,4333986407536.64,4436404554066.89,4392571474996.89,4794156163105.39,5356877961969.33 -Middle East & North Africa (IDA & IBRD countries),TMN,"Population, total",SP.POP.TOTL,280976957,286546301,291738620,296947926,302709154,308628177,314576732,320585896,326701327,332985938,339527169,345887176,352259724,359233517,366582958,373867247,380687450,387152617,393806257,400574097,407006855,413124452,419284769 -Middle East & North Africa (IDA & IBRD countries),TMN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2016975681903.03,2134471537797.05,2235066950840.36,2323505397768.01,2571310638293.1,2735693245413.18,2985044096317.47,3287005283000.1,3483051975936.59,3571721211654.96,3781261637957.96,3839898866748.56,3991087248035.03,4006746197677.97,3960172702020.55,3794665548328.36,3899644503329.74,4130783610951.78,4299671441784.98,4400810760215.75,4361168918057.12,4757757948682.03,5316068748204.5 -Middle income,MIC,"Population, total",SP.POP.TOTL,4635160614,4699673503,4762356287,4823952498,4885771219,4947163680,5007185008,5066239963,5126457124,5187659372,5249914066,5313967782,5379871102,5446810885,5513458464,5578703242,5642635550,5706387405,5768170863,5827337512,5882942581,5933587229,5974552342 -Middle income,MIC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,17957352191496.1,19120569905339,20343354450894.6,22012375560436.7,24330551187161.2,26876110605851.4,30369311790812.3,33991094371686.9,37037984685989.1,38529953643069.7,41907285686752.9,45500286788181.8,48885038544582.7,51622292119906.6,53992356089761.8,54998081077050.1,57471824572985.5,61028782927117.1,65513890907668.7,69186912742459.7,68820690273552.9,76591653836894.4,85357194966636.2 -North America,NAC,"Population, total",SP.POP.TOTL,312909974,316052361,319048184,321815286,324809693,327824506,331015609,334185120,337406357,340466060,343397156,345987373,348656682,351207902,353888902,356507139,359245796,361731237,363967201,365995094,369582571,370321816,372280991 -North America,NAC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,11264236661840.1,11660774297394.1,12002079718881.5,12536921088717.1,13381711416827.9,14317981939209.7,15292595973963.8,15837046216145.3,16045352211694.2,15715239015617.8,16513402868758.8,17258394343336.7,18122204860034.7,18723476165433.8,19642940890103.7,20236186430279.5,20683140299544.3,21634299405964.5,22764340482672.4,23621483588025.7,23258597180453.3,25638009295979.3,28233223707096.3 -Not classified,INX,"Population, total",SP.POP.TOTL,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -Not classified,INX,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. -OECD members,OED,"Population, total",SP.POP.TOTL,1200179492,1209244377,1218395986,1227425785,1236496893,1245447053,1254649810,1263898853,1273582053,1282495531,1290948297,1297593939,1305513492,1313643972,1322075502,1330315361,1338790910,1346867343,1354836308,1362014902,1369465369,1371917156,1376606817 -OECD members,OED,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,29740768883793,30900337288771.6,32022986480342.2,33192965385941.3,35264838332180.6,37249459401303.3,40121803981249.8,42142672595942.5,43354288803679.1,42569532978068.8,44731252795812.2,46936363339366.9,48683867012540.2,50636224150884.8,52581574297571.4,54304546500170.5,56336257471619.1,58939024817853.9,61580403141572.2,64056344736152.5,62438123655316.3,67984537455247.5,75179946666968.2 -Other small states,OSS,"Population, total",SP.POP.TOTL,21437978,21823886,22208079,22590088,22986615,23450481,24035320,24697686,25375277,26013714,26565994,27072916,27617274,28225790,28907552,29621042,30309997,30940313,31494491,32005477,32381464,32708277,33169026 -Other small states,OSS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,222779915112.234,239854267529.811,254298798480.837,272270371073.193,297806841848.68,322071634633.605,386371203318.39,440364656815.904,486202704693.487,489333866494.785,536518880826.928,601289525551.059,653869346172.577,679149741014.711,690072742836.461,611108255973.513,608728201532.011,665700535271.727,690681094232.742,723952268347.231,699197883774.476,751950163585.387,833617006781.899 -Pacific island small states,PSS,"Population, total",SP.POP.TOTL,2035672,2064193,2091909,2119122,2146140,2172802,2199540,2226078,2251506,2276149,2301401,2327284,2353058,2379069,2405308,2431426,2457814,2484263,2510226,2536070,2566819,2602173,2639019 -Pacific island small states,PSS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,7747649241.11453,7880845944.47058,8242771636.53909,8475753996.52153,9079176401.48459,9634468488.7885,9799043662.68626,10179326879.4206,10546611204.9495,10655715679.9298,11016775215.7168,11597236720.5826,12191132346.2981,13251307331.4046,14730655022.7726,15830893538.8003,16336601335.0795,17046213842.8213,18143066300.0713,18570104900.1208,16808737307.1015,16929913058.94,20291968740.0881 -Post-demographic dividend,PST,"Population, total",SP.POP.TOTL,1020793420,1025680403,1030818658,1035935060,1041241254,1046468599,1052106032,1058252873,1064631968,1070085408,1075046427,1077987051,1082488958,1087230525,1092179620,1097061415,1102020063,1106212920,1110123356,1113305347,1117418072,1116569892,1113495082 -Post-demographic dividend,PST,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,27635244576054.2,28777250153061.7,29834236104549.8,30950801081514.8,32856832478421.6,34680322643835,37246661984097.9,39070849409579.8,40066399824115,39226880293815.7,41114253366136.5,42914269386617.3,44420671321832.3,46158940032039.9,47725910214789.8,49091512373401.3,50798446937279.7,53154056117891,55575047555325.1,57915278095230.2,56394230528019.3,61333879683830.5,67154951000696 -Pre-demographic dividend,PRE,"Population, total",SP.POP.TOTL,553089230,568734640,586023563,604077372,621974508,640493810,659115651,677333522,697003893,718121906,739525992,761717101,784822780,808542070,832469778,856420253,880891473,905987912,931467165,957503246,984213438,1011043183,1038012552 -Pre-demographic dividend,PRE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,1992914834919.7,2095531999658.68,2240761810586.88,2391470759180.08,2534307304074.06,2705821952520.24,2903330581319.3,2847925275978.36,2951421620414.4,3099185966351.86,3248726095048.8,3420227747044.14,3379473368406.44,3627350299901.33,4039016635968.44 -Small states,SST,"Population, total",SP.POP.TOTL,30055791,30514882,30971830,31425957,31893127,32425757,33079043,33808469,34550707,35254103,35871823,36444557,37059328,37740743,38493904,39277070,40033083,40728210,41379367,41965649,42393051,42792327,43313523 -Small states,SST,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,290227722327.561,310000380149.273,328372689893.912,352024488345.638,384093962999.051,413704398876.222,486771531598.186,547509900722.721,597387988975.041,597238190209.382,647810080717.025,713388078387.311,771193780958.97,800780841733.421,815121545145.717,738111167209.144,734188488902.872,797829850739.997,826924717698.933,864584077810.044,828404496192.29,894813474760.336,1005132937872.03 -South Asia,SAS,"Population, total",SP.POP.TOTL,1406945493,1434314654,1462070145,1489358080,1515703001,1541263909,1565892885,1589454615,1612709085,1636411632,1660546144,1684898004,1708706729,1731683901,1754030304,1775545180,1797072648,1818931519,1840534093,1861598514,1882531620,1901911604,1919348000 -South Asia,SAS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2923770772207.83,3127639259766.58,3297410046393.26,3605807415974.06,3987955954688.71,4427080299563.09,4914189029765.45,5423482179595.36,5703233429328.26,6144291695668.49,6663511336633.41,7160301239840.72,7829255240961.89,8251975423435.99,8664988079051.82,9148527386263.64,9841034225523.09,10514468007278.1,11455577179694.8,12132913420526.5,11693695802364.1,13177341571298.3,15016206688184.8 -South Asia (IDA & IBRD),TSA,"Population, total",SP.POP.TOTL,1406945493,1434314654,1462070145,1489358080,1515703001,1541263909,1565892885,1589454615,1612709085,1636411632,1660546144,1684898004,1708706729,1731683901,1754030304,1775545180,1797072648,1818931519,1840534093,1861598514,1882531620,1901911604,1919348000 -South Asia (IDA & IBRD),TSA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2923770772207.83,3127639259766.58,3297410046393.26,3605807415974.07,3987955954688.71,4427080299563.09,4914189029765.45,5423482179595.36,5703233429328.26,6144291695668.49,6663511336633.41,7160301239840.72,7829255240961.89,8251975423435.99,8664988079051.82,9148527386263.64,9841034225523.09,10514468007278.1,11455577179694.8,12132913420526.5,11693695802364.1,13177341571298.3,15016206688184.8 -Sub-Saharan Africa,SSF,"Population, total",SP.POP.TOTL,671212486,689161982,707693440,726785433,746546802,766978666,788110000,810019264,832642735,855885698,879797419,904282154,929328653,955096702,981506608,1008698799,1036155989,1063885274,1092403973,1121549049,1151302081,1181163013,1211190002 -Sub-Saharan Africa,SSF,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1397899422636.66,1481330891066.04,1569175825919.09,1657547141043.21,1797556393134.95,1972294961076.48,2164363066574.3,2351495728427.28,2500276010664.07,2600312284957.54,2771500216581.74,2957315317415.39,3053227612288.66,3256123533635.19,3545244919741.32,3655943995269.42,3806861936826.05,3939636304726.03,4144807825640.68,4342852275184.65,4342410271310.28,4711026663041.75,5221994753243.29 -Sub-Saharan Africa (excluding high income),SSA,"Population, total",SP.POP.TOTL,671131355,689080780,707609717,726702652,746464327,766895808,788025400,809934231,832555779,855798400,879707649,904194713,929240350,955006753,981415249,1008605380,1036061312,1063789431,1092307211,1121451424,1151203619,1181063755,1211070124 -Sub-Saharan Africa (excluding high income),SSA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1396674851317.92,1480089234496.94,1568014712095.15,1656409474292.73,1796344820622.4,1970924129779.74,2162805971199.75,2349907662086.69,2498766114882.58,2598806432557.01,2769890732601.87,2955543536803.11,3051274957114.22,3254241842454.95,3543156292454.87,3653845729908.17,3804392630242.73,3936741186522.95,4142238842051.82,4340073740147.45,4339792440202.05,4708164314141.11,5218595331327.21 -Sub-Saharan Africa (IDA & IBRD countries),TSS,"Population, total",SP.POP.TOTL,671212486,689161982,707693440,726785433,746546802,766978666,788110000,810019264,832642735,855885698,879797419,904282154,929328653,955096702,981506608,1008698799,1036155989,1063885274,1092403973,1121549049,1151302081,1181163013,1211190002 -Sub-Saharan Africa (IDA & IBRD countries),TSS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1397899422636.66,1481330891066.04,1569175825919.09,1657547141043.21,1797556393134.95,1972294961076.48,2164363066574.3,2351495728427.28,2500276010664.07,2600312284957.54,2771500216581.74,2957315317415.39,3053227612288.66,3256123533635.19,3545244919741.32,3655943995269.42,3806861936826.05,3939636304726.03,4144807825640.68,4342852275184.65,4342410271310.28,4711026663041.75,5221994753243.29 -Upper middle income,UMC,"Population, total",SP.POP.TOTL,2375280814,2396527322,2416905279,2436604576,2455899822,2475204158,2493607365,2511010944,2529819216,2549122048,2567922649,2587915297,2610195637,2632878553,2654785044,2675824754,2695996374,2716214857,2735017750,2752025737,2765716827,2776124854,2784368143 -Upper middle income,UMC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,11868695135513.4,12614153895613.5,13443413338666.6,14511264015946.9,16101778311017.1,17846261469263.4,20409713680992.1,22988413773894.2,25406321835977.2,26299304966941.9,28740578878623.6,31448323276937.8,33869538188470.9,35852086518660.7,37513578625332.4,37939278139010.2,39352077590486.3,41791501671396,44819672616927.3,47374035981465.9,47466366670691.1,53018680674570.4,58815344236937.2 -World,WLD,"Population, total",SP.POP.TOTL,6144321462,6226348086,6308140970,6389462496,6470924346,6552700448,6635110367,6717567584,6801440971,6885663352,6969985525,7054044372,7141386257,7229303088,7317040295,7403850164,7490415449,7576441961,7660371127,7741774583,7820205606,7888305693,7950946801 -World,WLD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,49028220440349,51444942286969.5,53782322941435.3,56789361335088.9,61412490400434.1,66143351455240.4,72685204801903.1,78565862446169.7,82951372526384,83637589964542.6,89263880618383.2,95184138595625.2,100388287954759,105072338784764,109373924016297,111594312708776,115934456288444,122306875101005,129627637898776,136075140414300,134155638594144,147702304077000,163737216401212 -,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,, -,,,,,,,,,,,,,,,,,,,,,,,,,, -Data from database: World Development Indicators,,,,,,,,,,,,,,,,,,,,,,,,,, -Last Updated: 12/19/2023,,,,,,,,,,,,,,,,,,,,,,,,,, +Country Name,Country Code,Series Name,Series Code,2000 [YR2000],2001 [YR2001],2002 [YR2002],2003 [YR2003],2004 [YR2004],2005 [YR2005],2006 [YR2006],2007 [YR2007],2008 [YR2008],2009 [YR2009],2010 [YR2010],2011 [YR2011],2012 [YR2012],2013 [YR2013],2014 [YR2014],2015 [YR2015],2016 [YR2016],2017 [YR2017],2018 [YR2018],2019 [YR2019],2020 [YR2020],2021 [YR2021],2022 [YR2022],2023 [YR2023] +Afghanistan,AFG,"Population, total",SP.POP.TOTL,19542982,19688632,21000256,22645130,23553551,24411191,25442944,25903301,26427199,27385307,28189672,29249157,30466479,31541209,32716210,33753499,34636207,35643418,36686784,37769499,38972230,40099462,41128771,42239854 +Afghanistan,AFG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,15864189723.0093,15224554096.961,20123047324.3399,22278932459.8065,23184760643.3197,26587457905.118,29047794272.6439,33788985659.7922,35313783777.5505,43009573651.2942,50028298435.8574,51116377179.4871,60931092223.9816,67669597049.6616,73169249312.8305,77739868999.5339,77790300893.8725,84288052074.0782,90563706789.4257,99263716985.9417,100842500976.582,86285361406.7876,86333168214.824,.. +Albania,ALB,"Population, total",SP.POP.TOTL,3089027,3060173,3051010,3039616,3026939,3011487,2992547,2970017,2947314,2927519,2913021,2905195,2900401,2895092,2889104,2880703,2876101,2873457,2866376,2854191,2837849,2811666,2777689,2745972 +Albania,ALB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12286344006.8231,13584095381.8913,14861688994.3177,15606845726.8006,16816731085.6916,18018522813.9143,20229747411.4219,22240041784.3111,24373298205.4058,25388935979.5677,27762513764.8916,29661501021.1495,30301420508.8664,31130058120.0308,32825051619.8441,33981401261.2125,35302726459.8297,36782961160.9397,38641123830.7587,41175886638.3638,40292463124.0392,45086289512.0665,53151651063.5617,57976724227.2406 +Algeria,DZA,"Population, total",SP.POP.TOTL,30774621,31200985,31624696,32055883,32510186,32956690,33435080,33983827,34569592,35196037,35856344,36543541,37260563,38000626,38760168,39543154,40339329,41136546,41927007,42705368,43451666,44177969,44903225,45606480 +Algeria,DZA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,270969277255.185,290980239979.281,308647303003.655,335974932263.066,358731640787.53,388091365326.309,414635348528.373,449937338165.768,472556861563.345,480773540052.305,513685333409.863,535948921230.911,538443804097.457,543013544899.97,565280032550.007,541233810012.029,545393972006.106,556023170169.916,570984006976.819,589311312706.742,549034369411.233,636322358369.822,702937933908.706,765521472667.627 +American Samoa,ASM,"Population, total",SP.POP.TOTL,58230,58324,58177,57941,57626,57254,56837,56383,55891,55366,54849,54310,53691,52995,52217,51368,50448,49463,48424,47321,46189,45035,44273,43914 +American Samoa,ASM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +Andorra,AND,"Population, total",SP.POP.TOTL,66097,67820,70849,73907,76933,79826,80221,78168,76055,73852,71519,70567,71013,71367,71621,71746,72540,73837,75013,76343,77700,79034,79824,80088 +Andorra,AND,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,4823308625.14387,4557679109.75531,5001856284.98537,5993774368.34791,.. +Angola,AGO,"Population, total",SP.POP.TOTL,16394062,16941587,17516139,18124342,18771125,19450959,20162340,20909684,21691522,22507674,23364185,24259111,25188292,26147002,27128337,28127721,29154746,30208628,31273533,32353588,33428486,34503774,35588987,36684202 +Angola,AGO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,45777957862.8754,49219369555.8478,59179499478.8503,62849411126.0754,70913698209.8935,83813004192.3481,95412548852.1187,111918245800.688,121290616671.971,131519529290.113,139056775690.597,148439200654.428,170107319475.488,183512440853.283,203841059003.604,190283189910.917,189305603971.898,198430111559.404,212200392146.37,221700228850.388,196402587485.498,234841696167.61,260438906203.678,268199376010.248 +Antigua and Barbuda,ATG,"Population, total",SP.POP.TOTL,75055,76215,77195,78075,78941,79869,80895,82016,83251,84534,85695,86729,87674,88497,89236,89941,90564,91119,91626,92117,92664,93219,93763,94298 +Antigua and Barbuda,ATG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1369236194.67577,1322836027.39132,1361717253.53257,1471947475.85367,1598392946.15268,1771461330.45719,2057155906.83539,2307991593.77771,2358646635.53339,2083877076.56194,1937718111.57023,1933247647.83594,1824989318.88407,1814560273.01344,1839099536.96228,1766297473.0632,1792865125.8914,1837175016.56012,2126474732.96598,2323489925.70103,2044938020.80673,2294796015.84831,2651212252.20592,2861742846.93607 +Argentina,ARG,"Population, total",SP.POP.TOTL,37070774,37480493,37885028,38278164,38668796,39070501,39476851,39876111,40273769,40684338,40788453,41261490,41733271,42202935,42669500,43131966,43590368,44044811,44494502,44938712,45376763,45808747,46234830,46654581 +Argentina,ARG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,416594563310.281,406274630457.452,359310912510.531,403199587069.747,418093841975.885,468041504539.791,568762465726.913,641221306542.789,681124430209.466,640800278424.74,711794791170.247,774475577247.848,799850880557.188,830424664582.524,821243666294.275,848959683417.303,863207236895.477,1009263951777.66,1051149861699.34,1016089122555.92,984724060445.269,1170900901138.4,1317041518448.73,1339423418009.87 +Armenia,ARM,"Population, total",SP.POP.TOTL,3168523,3133133,3105037,3084102,3065745,3047246,3026486,3004393,2983421,2964296,2946293,2928976,2914421,2901385,2889930,2878595,2865835,2851923,2836557,2820602,2805608,2790974,2780469,2777970 +Armenia,ARM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8403263969.17936,9409799259.04517,10866154859.7533,12612732340.3183,14428108003.3914,16957992011.7607,19888484243.0828,23374969796.702,25596039723.8938,21751101568.5319,22672636925.8102,23905121367.1988,28120737961.2501,30326204334.4994,30662966874.8916,30505448341.392,32364395080.3965,37214214838.3669,38848121649.4888,44951068638.4951,42876665493.623,45783936975.8928,54374731968.6476,62338776602.3953 +Aruba,ABW,"Population, total",SP.POP.TOTL,89101,90691,91781,92701,93540,94483,95606,96787,97996,99212,100341,101288,102112,102880,103594,104257,104874,105439,105962,106442,106585,106537,106445,106277 +Aruba,ABW,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2701674799.68046,2830644520.83375,2733006561.59101,2948370456.57127,3225525867.9079,2731404792.87781,3419287359.85238,3239184627.29661,3765110155.12676,3367822203.98781,3238654364.53009,3285948781.36833,3392124836.40284,3565352798.44846,3668236882.17076,3718236361.46908,3748965003.99227,3855139712.91164,3998225782.92506,4078019692.56843,3157719618.33679,3949220211.10119,4648391243.13954,.. +Australia,AUS,"Population, total",SP.POP.TOTL,19028802,19274701,19495210,19720737,19932722,20176844,20450966,20827622,21249199,21691653,22031750,22340024,22733465,23128129,23475686,23815995,24190907,24592588,24963258,25334826,25649248,25685412,26014399,26638544 +Australia,AUS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,490505152124.87,517956830088.622,550653577654.902,577323743433.695,615130754632.649,641891560954.107,684978180322.294,729421949920.085,764950073458.173,843713216587.664,833788788812.089,901135103226.097,944830743158.79,1035928528535.58,1072525161980.57,1079982845793.32,1116837774694.58,1158118862741.3,1214893467981.23,1291416224602.59,1355385794629.96,1458480831632.76,1636205420099.63,1764942550218.24 +Austria,AUT,"Population, total",SP.POP.TOTL,8011566,8042293,8081957,8121423,8171966,8227829,8268641,8295487,8321496,8343323,8363404,8391643,8429991,8479823,8546356,8642699,8736668,8797566,8840521,8879920,8916864,8955797,9041851,9132383 +Austria,AUT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,233327970644.79,235681740609.712,250522395607.009,260414989432.722,275626072685.817,287476798281.967,312140274176.482,326840910112.088,346680570770.484,341235143809.348,354219456368.955,374289188740.567,392030460346.489,407466618825.439,417609480255.935,426732539405.343,460248078658.205,472121614071.579,498431937162.513,536357627733.865,528028166888.264,576828425621.856,641335543214.658,671449625520.23 +Azerbaijan,AZE,"Population, total",SP.POP.TOTL,8048600,8111200,8171950,8234100,8306500,8391850,8484550,8581300,8763400,8947243,9054332,9173082,9295784,9416801,9535079,9649341,9757812,9854033,9939771,10024283,10093121,10137750,10141756,10112555 +Azerbaijan,AZE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,26732935020.7533,29813800253.6087,32939453923.7753,36885190536.8052,40329276720.0812,50118716114.9914,69044832781.3201,85982604501.246,102000099527.384,115788993672.566,124965942250.317,126513330052.276,140261574405.538,154517805868.261,162669717796.334,140815158037.451,133314014398.87,135736345883.151,144624337797.583,160719056708.669,152079420500.552,199651899134.305,213204046296.152,228931245959.814 +"Bahamas, The",BHS,"Population, total",SP.POP.TOTL,325014,329626,334002,338490,343089,347804,352664,357666,362795,368057,373272,377950,382061,385650,389131,392697,395976,399020,401906,404557,406471,407906,409984,412623 +"Bahamas, The",BHS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8228386210.64413,8577851826.78754,8975288589.32165,9069215923.03469,9410131817.6304,10005608274.1858,10542602176.4038,10980723017.9429,11091045604.7194,10610069269.1479,10816723816.5052,11105698465.0838,11373834904.1345,11090797233.5774,11499211697.0845,11693074156.7878,11799009288.3048,12573916227.2133,12713786884.9466,13306122022.9396,9794942120.75456,11111812556.4694,13088709502.244,13942396842.8868 +Bahrain,BHR,"Population, total",SP.POP.TOTL,711442,730257,748324,778256,833451,901921,970981,1040532,1110343,1179453,1213645,1212077,1224939,1261673,1311134,1362142,1409661,1456834,1487340,1494188,1477469,1463265,1472233,1485509 +Bahrain,BHR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,27315076031.2815,28298591883.5361,29118658710.2761,31903948245.2556,35078495199.0578,39349741837.2049,43409029905.796,48630894265.7378,51479026622.3186,49327479450.1634,52808583301.4634,52634201219.1065,63798219076.2208,65393990327.0038,65185465070.1681,59328731229.3326,60660156278.7245,67799055665.021,70562270723.5338,75562274918.3153,70601878172.8456,74413767935.1383,85345751939.9062,89259103217.6146 +Bangladesh,BGD,"Population, total",SP.POP.TOTL,129193327,131670484,134139826,136503206,138789725,140912590,142628831,144135934,145421318,146706810,148391139,150211005,152090649,154030139,155961299,157830000,159784568,161793964,163683958,165516222,167420951,169356251,171186372,172954319 +Bangladesh,BGD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,208928912198.81,224096107334.166,238141390328.128,254435833608.052,275623066083.88,303102046598.448,336538646773.985,372342159950.471,406422852462.346,430340508057.769,460458409325.385,499623842867.126,570177672917.888,616569261196.949,662428199724.602,707741905118.267,770879103187.534,819232336678.198,933669359748.506,1038098559456.84,1150025815983.89,1313226689114.99,1486873730612.94,1630531886200.66 +Barbados,BRB,"Population, total",SP.POP.TOTL,264657,265377,266455,267499,268505,269477,270425,271444,272635,273791,274711,275486,276197,276865,277493,278083,278649,279187,279688,280180,280693,281200,281635,281995 +Barbados,BRB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3342213034.1573,3320163640.82105,3389816201.76318,3519291363.67993,3694819169.07002,3912627091.39112,4210967388.74795,4511950536.21739,4574135212.79547,4411962996.68052,4448002097.21606,4321387979.70537,4193780752.47288,4195169150.71022,4157182161.11853,4251232356.92417,4371449108.77435,4341588837.79082,4521584394.57969,4648356510.28687,4064780241.18211,4067837442.78374,4895849497.06871,5230668753.70261 +Belarus,BLR,"Population, total",SP.POP.TOTL,9979610,9928549,9865548,9796749,9730146,9663915,9604924,9560953,9527985,9504583,9483836,9461643,9446836,9443211,9448515,9461076,9469379,9458989,9438785,9419758,9379952,9302585,9228071,9178298 +Belarus,BLR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,57667081034.3945,61791039905.5796,66012230351.854,72307675354.7505,82570723559.2074,93410913964.5695,105398274720.442,116859343861.271,130744708952.218,130622603961.538,142749911776.746,154983303603.245,167296412997.24,173248520791.099,174483588700.132,164291065067.72,160900350090.374,167632916104.313,182188717864.165,203844984018.9,223810524831.542,247425875072.912,251739563898.719,272033536611.949 +Belgium,BEL,"Population, total",SP.POP.TOTL,10251250,10286570,10332785,10376133,10421137,10478617,10547958,10625700,10709973,10796493,10895586,11038264,11106932,11159407,11209057,11274196,11331422,11375158,11427054,11488980,11538604,11586195,11685814,11822592 +Belgium,BEL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,292204111111.111,301759031608.107,318307798007.558,327110233955.51,338782912548.787,352001708926.337,377258845625.056,396459954436.522,415597849908.875,415129244178.866,440667274598.221,452655752838.946,480620383220.801,499349513623.745,514186705056.397,528249820624.552,555959647175.261,579048881302.262,605582412477.963,656816501592.756,649964603129.167,727244303089.119,809917468397.437,851158531765.451 +Belize,BLZ,"Population, total",SP.POP.TOTL,240406,248100,255987,263998,272128,280375,288729,297173,305671,314171,322106,329538,337059,344688,352335,359871,367313,374693,382066,389095,394921,400031,405272,410825 +Belize,BLZ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1724929668.90188,1830901850.97161,1965940469.58796,2165426359.1035,2292234904.43123,2431846346.15941,2616688143.15323,2732592003.85449,2736859062.08551,2866979422.88989,2857900148.73602,2990973424.12488,2887640376.05437,3042141748.39254,3077542631.76086,3253391316.15524,3259789089.24638,3216663045.8666,3375131488.40774,3782550945.286,3659921189.8675,4475681202.59544,5130335308.57904,5634300802.3085 +Benin,BEN,"Population, total",SP.POP.TOTL,6998023,7212041,7431783,7659208,7894554,8149419,8402631,8647761,8906469,9172514,9445710,9726380,10014078,10308730,10614844,10932783,11260085,11596779,11940683,12290444,12643123,12996895,13352864,13712828 +Benin,BEN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12027736615.5936,12948150112.3048,13721745615.8513,14468723523.183,15533914339.1855,16349258967.9268,17490099397.8147,19007959450.1528,20420580872.4347,20975883269.9009,21631499483.3635,22827277379.615,24247664236.3808,26748581226.6548,29318924590.0871,30710151501.0996,32956556000.0748,34361903992.5009,36317641548.3477,39676734351.7736,41966458415.2945,46230987531.0512,52401507656.7081,57890755279.0819 +Bermuda,BMU,"Population, total",SP.POP.TOTL,61833,62504,62912,63325,63740,64154,64523,64888,65273,65636,65124,64564,64798,65001,65138,65237,64554,63873,63918,63911,63893,63764,63595,63489 +Bermuda,BMU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,4701578067.82602,4635082852.05734,4596631368.50352,4756765522.24698,4747225573.39698,4992912409.27508,5246908291.18516,5670866795.2919,5666125729.75487,5912156946.15506,5643362963.15721,6220347840.73977,7163893276.50997,.. +Bhutan,BTN,"Population, total",SP.POP.TOTL,587207,603234,619048,634627,649991,663323,673260,681614,689737,697678,705516,713331,721145,728889,736357,743274,749761,756121,762096,767459,772506,777486,782455,787424 +Bhutan,BTN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1822242295.83077,2001018302.91121,2213130073.64332,2415849328.36879,2607238252.31113,2899784763.89437,3188775101.12144,3765048309.25269,3961801460.94891,4238270347.51079,4728842319.69061,5193202681.56102,5604389215.81243,5787944543.79415,6289784396.37516,6957141131.44391,7643208321.02635,8085241617.61849,8318863680.93342,9044743246.43476,9047496316.55158,9846215601.24434,11143224437.2902,.. +Bolivia,BOL,"Population, total",SP.POP.TOTL,8592656,8746084,8900583,9057378,9216279,9377388,9542663,9711152,9880593,10051317,10223270,10396246,10569697,10743349,10916987,11090085,11263015,11435533,11606905,11777315,11936162,12079472,12224110,12388571 +Bolivia,BOL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,28133084504.062,29278563127.92,30473935838.4259,31542881182.7357,33514887939.4808,36261568756.7457,39365581663.2915,42162991766.3246,45861085196.7945,47363291432.1677,49585817295.8761,53471345613.9369,57984722863.5605,66014570163.9237,72520017730.237,76087068286.0695,82842020015.174,93689285686.7899,100534582613.153,104889828092.05,96888583667.5301,109984070551.265,121537085818.973,129977431004.358 +Bosnia and Herzegovina,BIH,"Population, total",SP.POP.TOTL,4179350,4194932,4198410,4183757,4142860,4094297,4058086,4007876,3943392,3877750,3811088,3743142,3674374,3617559,3571068,3524324,3480986,3440027,3400129,3360711,3318407,3270943,3233526,3210847 +Bosnia and Herzegovina,BIH,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,18889245907.4984,19492989470.5051,21188584756.6974,21527558315.931,24474328812.8054,25415158658.3276,28767022679.8193,31764918535.5479,35148352136.2888,35027793745.905,35196241552.0374,36817329030.8083,37434225161.1948,39544944696.2023,40134318607.5077,41956685718.0817,44857923167.8441,46331774323.0275,50033779801.3594,54868462626.3982,53706002827.6516,59408516652.3786,67113806596.3213,73166634340.2666 +Botswana,BWA,"Population, total",SP.POP.TOTL,1726985,1761930,1795130,1826863,1859085,1892807,1928704,1966977,2007320,2048997,2091664,2134037,2175425,2217278,2260376,2305171,2352416,2401840,2451409,2499702,2546402,2588423,2630296,2675352 +Botswana,BWA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,14432309740.5816,15385408661.5123,14736964794.5338,16349952963.2359,17007235899.7754,18835099184.7013,21747090236.1615,24174854403.5278,25034275299.0099,22579133572.1932,24390515125.4732,27515399832.0169,26801040476.3942,27230023589.1521,31594338668.7767,30117036387.5285,33163187364.1,32569558909.601,32918171740.0772,35270595799.5677,36213064827.339,42718599230.4037,47300541579.5589,51208714222.2291 +Brazil,BRA,"Population, total",SP.POP.TOTL,175873720,178211881,180476685,182629278,184722043,186797334,188820682,190779453,192672317,194517549,196353492,198185302,199977707,201721767,203459650,205188205,206859578,208504960,210166592,211782878,213196304,214326223,215313498,216422446 +Brazil,BRA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1536571396437.17,1586988045978.2,1659007167118.67,1714272367637.77,1865979623726.29,1987414877083.92,2138389134620.67,2338676738058.18,2496774336197.05,2515168077503.67,2712853462249.96,2894294561187.9,2917485070078.82,3077181547383.86,3107797557672.48,2932875379050,2846197824606.73,2924570810530.11,3098565570921.3,3244270827745.74,3289682051501.6,3669595464809.27,4055711022422.35,4325589161713.06 +British Virgin Islands,VGB,"Population, total",SP.POP.TOTL,20104,20657,21288,21982,22715,23497,24323,25191,26115,27044,27556,27962,28421,28657,28971,29366,29739,30060,30335,30610,30910,31122,31305,31538 +British Virgin Islands,VGB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +Brunei Darussalam,BRN,"Population, total",SP.POP.TOTL,333926,340748,347463,354045,360461,366717,372808,378748,384568,390311,396053,401506,406634,411702,416656,421437,425994,430276,434274,438048,441725,445373,449002,452524 +Brunei Darussalam,BRN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,22112837584.4703,23231198263.0921,24505723085.2721,25715228387.378,26539907382.5881,27478122800.72,29571179475.3098,30574270517.1371,30519090499.3479,30197578092.0469,30978677733.0339,32155106321.3359,34537927950.8178,33848125952.8092,33820131730.3106,27808124919.1653,26009706527.79,28268781132.2562,28699143192.1537,31524538109.2571,32164318056.0454,35572863604.9611,36394595738.9437,39620448196.1798 +Bulgaria,BGR,"Population, total",SP.POP.TOTL,8170172,8009142,7837161,7775327,7716860,7658972,7601022,7545338,7492561,7444443,7395599,7348328,7305888,7265115,7223938,7177991,7127822,7075947,7025037,6975761,6934015,6877743,6465097,6430370 +Bulgaria,BGR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,51194149323.5779,55850182237.8709,63510047412.8945,66512310831.58,71836979829.2843,79041434237.7512,84565801408.9346,89618616783.0822,102294094975.353,102184607809.181,108287906148.157,112088278849.597,117697159459.805,118276156197.356,126158370637.479,127898889122.683,138632814167.05,148486492458.614,156368852054.235,173033295033.907,172334104062.637,194206111794.21,221776157400.804,240388856827.33 +Burkina Faso,BFA,"Population, total",SP.POP.TOTL,11882888,12249764,12632269,13030591,13445977,13876127,14316242,14757074,15197915,15650022,16116845,16602651,17113732,17636408,18169842,18718019,19275498,19835858,20392723,20951639,21522626,22100683,22673762,23251485 +Burkina Faso,BFA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,10677475199.5615,11610543579.937,12234073018.8443,13421047462.2523,14445743187.8126,16155057438.8918,17830162365.8439,19064105718.3303,20539035606.9654,21095292394.1801,22745987554.074,24485121959.0513,26309756409.365,28285423291.7266,28969717707.3022,30316565398.2552,34762910787.0786,39106923342.4676,41036118953.7406,44729069839.133,49348669869.3867,51973743214.0992,56920930724.0393,60785406924.2483 +Burundi,BDI,"Population, total",SP.POP.TOTL,6307659,6465729,6648938,6860846,7120496,7388874,7658190,7944609,8278109,8709366,9126605,9455733,9795479,10149577,10494913,10727148,10903327,11155593,11493472,11874838,12220227,12551213,12889576,13238559 +Burundi,BDI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3413951775.70776,3455769300.62271,3656107596.56099,3659345899.14874,3911081999.72693,4128357070.46926,4527052338.82865,4822750720.89795,5163304537.63706,5356128029.63131,5723081604.53069,6061589359.64675,6416170661.33507,7180870389.52989,7801364647.63404,8810641482.9621,8672544526.83245,8764485319.4998,8954511427.0355,9576815858.5797,9977971277.88053,10879490984.4508,11875806300.5593,12615925845.8997 +Cabo Verde,CPV,"Population, total",SP.POP.TOTL,458251,465958,473231,480089,486583,492827,498884,504733,510336,515638,521212,527521,533864,539940,546076,552166,558394,564954,571202,577030,582640,587925,593149,598682 +Cabo Verde,CPV,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1384829481.17213,1466974853.25881,1550471108.64335,1655551282.85078,1870442440.00672,2035635400.75204,2254054232.30743,2709631230.51437,2941198955.73805,2917225097.83037,2954975812.00007,3148523869.00776,3108466201.68503,3157630152.5317,3138366363.25717,3353556950.78495,3646587315.33736,3945740453.85099,3978218736.62247,4361122121.62996,3452488973.76489,3915787458.77805,4929118990.53817,5419222168.54376 +Cambodia,KHM,"Population, total",SP.POP.TOTL,12118841,12338192,12561779,12787710,13016371,13246583,13477779,13714791,13943888,14155740,14363532,14573885,14786640,14999683,15210817,15417523,15624584,15830689,16025238,16207746,16396860,16589023,16767842,16944826 +Cambodia,KHM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12629309576.9699,13928288698.229,14945517121.3541,16637569164.3955,18809742073.7338,21842915430.2711,24990131089.1205,28470171214.2474,30849261473.16,30995092264.7717,33513834940.4714,36394815884.1828,40182817291.5785,42921549004.2568,45365351355.5556,48865317115.5281,53761791721.0954,58169659392.5806,64110656866.6272,70571793149.9202,70867363071.8177,73412513745.4902,82653563630.1079,92440508841.9665 +Cameroon,CMR,"Population, total",SP.POP.TOTL,15091594,15493253,15914033,16354326,16809407,17275171,17751333,18251866,18777081,19319274,19878036,20448873,21032684,21632850,22299585,23012646,23711630,24393181,25076747,25782341,26491087,27198628,27914536,28647293 +Cameroon,CMR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,29672863374.1612,31408863193.0988,33650313821.0348,37007036671.3818,41167057129.9343,43242795368.1315,46891301706.7324,49794688564.9356,52518810811.2609,54803332748.6634,56761054669.7612,59872437223.2221,62730540299.587,68054890189.4943,74076522623.9515,78538750618.6809,83664911616.3662,89235394974.8846,97651753918.3907,105876092300.995,112063496623.243,126874913311.532,139369781532.614,150937638092.767 +Canada,CAN,"Population, total",SP.POP.TOTL,30685730,31020855,31359199,31642461,31938807,32242732,32571193,32888886,33247298,33630069,34005902,34339221,34713395,35080992,35434066,35704498,36110803,36545075,37072620,37618495,38028638,38239864,38939056,40097761 +Canada,CAN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,877363047705.317,911387800049.817,946440061399.149,998506176807.967,1060259016664.75,1147390008931.78,1221860598242.03,1282434850618.64,1322673547258.16,1284496325205.2,1336628963349.76,1403781260484.68,1442044757903.5,1530453431372.55,1595196682591.57,1570419104485.27,1657591887626.4,1743306959310.54,1821483037220.98,1877057297226.28,1834448846581.77,2114747054970.22,2384384784090.94,2433891658290.08 +Cayman Islands,CYM,"Population, total",SP.POP.TOTL,39658,41054,42456,43862,45286,46727,48177,49647,51123,52602,54074,55492,56860,58212,59559,60911,62255,63581,64884,66134,67311,68136,68706,69310 +Cayman Islands,CYM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,3395901012.86997,3579426050.65664,2503674785.89608,2242165343.57296,2206011043.16187,2340668351.15423,2619514300.11203,2940171870.6813,3305697523.41615,3627574907.59039,3101020052.37239,3605652284.67553,4130378759.67205,.. +Central African Republic,CAF,"Population, total",SP.POP.TOTL,3759170,3844773,3930648,4026841,4115138,4208834,4294352,4375569,4467233,4564540,4660067,4732022,4773306,4802428,4798734,4819333,4904177,4996741,5094780,5209324,5343020,5457154,5579144,5742315 +Central African Republic,CAF,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2417722134.05652,2597969298.91417,2731657945.28966,2653087280.13435,2863350930.10607,2989693787.65017,3228242363.99551,3473911824.83892,3594573770.0122,3961869981.90961,4226562236.19227,4492422406.61788,4918926831.37993,3324981401.57609,3265039171.08106,3603540434.67345,3942112928.35926,4452407772.46887,4749006361.38565,5230877201.10181,5659466490.56345,6162917245.35656,6536593385.21386,6872225950.1283 +Chad,TCD,"Population, total",SP.POP.TOTL,8259137,8538804,8838369,9196366,9613503,10005012,10365614,10722731,11098664,11496128,11894727,12317730,12754906,13216766,13697126,14140274,14592585,15085884,15604210,16126866,16644701,17179740,17723315,18278568 +Chad,TCD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,6313090852.39802,7203822021.77478,7806705366.00022,7895230610.17661,10955755832.6276,13209109876.1523,13558809518.5677,14802046950.436,15152976889.7147,18140225919.5496,21029374322.0998,21644734483.3347,21697835777.4912,19992186416.3294,22247150761.7557,25398175029.5895,24382561174.0201,24223197272.7243,26008434842.5205,29327994916.189,26630772996.9686,29863101072.8401,32860273764.5217,35468465277.0931 +Channel Islands,CHI,"Population, total",SP.POP.TOTL,145306,146044,147167,148341,149538,150763,151985,153225,154475,155721,156933,157819,158621,159794,160912,162190,163721,165215,167259,169410,171113,172683,174079,175346 +Channel Islands,CHI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +Chile,CHL,"Population, total",SP.POP.TOTL,15351799,15523978,15693790,15859112,16017966,16175311,16334575,16495538,16661462,16833447,17004162,17173573,17341771,17509925,17687108,17870124,18083879,18368577,18701450,19039485,19300315,19493184,19603733,19629590 +Chile,CHL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,140272785068.15,148284305471.164,154513892980.127,162909681465.401,174121563463.232,188981195876.412,228711518847.374,251050128189.555,254057986121.321,252743553342.144,287919841654.98,318741871194.529,353816711368.114,375186612617.18,385025200175.766,395546267618.996,413012764334.869,433363834230.02,458498081287.065,473247900288.57,460414037004.302,534250853280.618,589663094922.153,620096013901.947 +China,CHN,"Population, total",SP.POP.TOTL,1262645000,1271850000,1280400000,1288400000,1296075000,1303720000,1311020000,1317885000,1324655000,1331260000,1337705000,1345035000,1354190000,1363240000,1371860000,1379860000,1387790000,1396215000,1402760000,1407745000,1411100000,1412360000,1412175000,1410710000 +China,CHN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3639295562025.58,4022423964124.14,4476812145167.26,5043796857552.61,5723515413162.85,6546437115117.82,7646438667782.58,9008385227844.28,10107778077318.6,11038741920461.8,12328903441552.9,13715341860808.5,15177598896780.6,16241642397322.3,17445351113071.7,18129538824739.2,19169812362362,20567696024679.6,22355235407453.8,24232656456410.3,25044516316641.5,28620861782223.2,31576043076313.8,34388533588300.2 +Colombia,COL,"Population, total",SP.POP.TOTL,39215135,39837875,40454050,41057687,41648268,42220940,42772910,43306582,43815313,44313917,44816108,45308899,45782417,46237930,46677947,47119728,47625955,48351671,49276961,50187406,50930662,51516562,51874024,52085168 +Colombia,COL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,259151794830.363,268582965365.545,278961087427.501,293399320717.555,317173276663.432,346168868857.151,380411642186.509,415229157126.979,435448537196.622,445341131241.106,468561552539.599,507405547213.148,531702488598.185,569416587290.375,604226852874.651,618044934989.2,658039414706.677,681250506662.521,728608189905.724,789964918998.858,778428458201.729,891767473484.366,1068671454373.46,1115520221571.18 +Comoros,COM,"Population, total",SP.POP.TOTL,536758,547741,559047,570130,581154,592683,604658,616899,629470,642493,656024,670071,684553,699393,714612,730216,746232,761664,776313,790986,806166,821625,836774,852075 +Comoros,COM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,976908725.213744,1023139633.92924,1059310279.77773,1102181333.86383,1152455765.74992,1223371341.98168,1295123952.71787,1346244061.53269,1421027479.28944,1476979726.92338,1552085198.59115,1650025527.79945,1822841660.2235,1972369573.49385,2098315530.60042,2154448542.20912,2341051172.79661,2544749985.26578,2563226038.80776,2618043788.81553,2626466737.30848,2829213812.92296,3101045181.34243,3291423110.31213 +"Congo, Dem. Rep.",COD,"Population, total",SP.POP.TOTL,48616317,50106657,51662071,53205639,54815607,56550247,58381630,60289422,62249724,64270232,66391257,68654269,70997870,73460021,76035588,78656904,81430977,84283273,87087355,89906890,92853164,95894118,99010212,102262808 +"Congo, Dem. Rep.",COD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,20610903703.2439,19995097169.6303,21267502119.8481,23104511833.9877,25205895577.7597,27235888446.1275,29875853547.6321,32424306150.0681,34037007871.4988,36171304668.3363,39209282781.2206,42414784447.5133,43789322451.6016,49350632985.1287,57742534263.722,64496691329.5989,75101206594.6825,84899945809.1609,92837443700.7485,102602326074.937,106207331186.126,125559362001.543,143739493034.422,165473157756.197 +"Congo, Rep.",COG,"Population, total",SP.POP.TOTL,3134030,3254101,3331158,3424653,3543012,3672839,3813323,3956329,4089602,4257230,4437884,4584216,4713257,4828066,4944861,5064386,5186824,5312340,5441062,5570733,5702174,5835806,5970424,6106869 +"Congo, Rep.",COG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8452353352.19277,8944207140.61371,9683416488.05826,10174159601.1824,10063354242.5337,11996328119.0948,14914724469.8253,14170790182.612,16044263180.6898,18943153444.3188,21257422404.1762,21470355525.6044,27165523910.1258,27686604305.841,28946115799.8532,23908515204.201,20224120130.4975,20651135353.0463,28959041247.2517,28888183753.4423,27296171963.3788,35450234462.4837,37441534691.55,40030244851.14 +Costa Rica,CRI,"Population, total",SP.POP.TOTL,3979193,4053222,4122623,4188610,4252800,4315887,4378172,4440019,4501921,4563127,4622252,4679926,4736593,4791535,4844288,4895242,4945205,4993842,5040734,5084532,5123105,5153957,5180829,5212173 +Costa Rica,CRI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,29603432874.2613,31325087735.9766,32896120810.312,34989337987.3923,37669600703.6814,40596792314.5907,45310356989.8382,50544988554.3198,54316027968.9144,53431668598.5017,57042312688.6464,60678188418.1591,65378849487.91,69259202570.9078,74975230822.7509,80876470644.983,89561552597.1962,95456146572.4278,100873430242.495,109750406810.11,104777369677.288,114156994275.999,125581666100.127,134470457108.999 +Cote d'Ivoire,CIV,"Population, total",SP.POP.TOTL,16799670,17245468,17683897,18116451,18544903,18970215,19394057,19817700,20244449,20677762,21120042,21562914,22010712,22469268,22995555,23596741,24213622,24848016,25493988,26147551,26811790,27478249,28160542,28873034 +Cote d'Ivoire,CIV,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,31597376300.9277,31754861871.0358,31966966777.2437,31705988245.3116,34425012203.8209,39004792037.2323,40899651407.5218,42690672689.9254,46072548183.5737,48329858660.1497,51905829428.5072,48585323041.0442,55152187769.3865,60504327879.6374,98069384225.3277,108731649059.199,115130993832.18,121709257256.731,132046527045.751,151190324519.851,155606848537.078,173671121074.45,197045577173.807,215858823580.318 +Croatia,HRV,"Population, total",SP.POP.TOTL,4468302,4299642,4302174,4303399,4304600,4310145,4311159,4310217,4309705,4305181,4295427,4280622,4267558,4255689,4238389,4203604,4174349,4124531,4087843,4065253,4047680,3878981,3855641,3853200 +Croatia,HRV,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,46805047377.0214,49053164664.4394,55066069867.2621,56997097050.5464,62158975461.5844,64994887985.3306,74042203289.8914,82402872805.5904,87613237181.9774,83994966615.7469,83319537691.0527,87593623206.0421,88810419651.3987,92769634573.399,93830534736.0456,99152112713.9123,104288771997.206,112607886675.499,118512574386.737,131065202933.756,126683372123.927,144453308146.48,163887143358.99,177055813742.33 +Cuba,CUB,"Population, total",SP.POP.TOTL,11105791,11139127,11170051,11199217,11225294,11246114,11260630,11269887,11276609,11283185,11290417,11298710,11309290,11321579,11332026,11339894,11342012,11336405,11328244,11316697,11300698,11256372,11212191,11194449 +Cuba,CUB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +Curacao,CUW,"Population, total",SP.POP.TOTL,133860,129047,129205,131897,134192,137658,141239,144056,145880,146833,148703,150831,152088,153822,155909,157980,159664,160175,159336,157441,154947,152369,149996,147862 +Curacao,CUW,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,3370015788.51561,3538882707.24982,3725319279.05446,3797770026.109,3746209435.41185,3845897938.81695,3911807566.19948,3740792304.61982,3714354165.19598,3714448849.93696,3742606010.52491,3704781412.94964,3850535354.04104,3900097602.24333,4015082849.61069,3400840480.08901,3878700958.46701,4419903313.05903,.. +Cyprus,CYP,"Population, total",SP.POP.TOTL,948237,964830,982194,1000350,1018684,1037062,1055438,1073873,1092390,1110974,1129686,1145086,1156556,1166968,1176995,1187280,1197881,1208523,1218831,1228836,1237537,1244188,1251488,1260138 +Cyprus,CYP,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,13508064286.1875,14898455134.8164,16161660902.1936,16730238542.7576,17824744743.3793,19437957005.1993,21291036201.4301,23613191826.5528,26948663057.9197,27302635704.5844,27392992125.6152,29168707771.5735,27386789678.3392,25901733422.5017,25017234387.4496,26874819794.0467,29340152904.5478,32011092224.0891,34094306159.8534,37278851954.2297,35514060747.8559,39808597878.7196,45392905648.8451,47676489767.5458 +Czechia,CZE,"Population, total",SP.POP.TOTL,10255063,10216605,10196916,10193998,10197101,10211216,10238905,10298828,10384603,10443936,10474410,10496088,10510785,10514272,10525347,10546059,10566332,10594438,10629928,10671870,10697858,10505772,10672118,10873689 +Czechia,CZE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,163278427750.518,175009026280.913,179426297147.504,192485526868.273,203342308275.934,215196463957.099,229706294474.743,253303680302.277,272806085747.403,269915575633.843,270136613240.683,279834668447.068,287718348866.221,303447928479.576,318616318237.674,332984669940.748,355688613136.584,388039149500.853,413345788814.445,449803297031.401,446448131551.349,487909771190.458,526672478608.271,558627849508.054 +Denmark,DNK,"Population, total",SP.POP.TOTL,5339616,5358783,5375931,5390574,5404523,5419432,5437272,5461438,5493621,5523095,5547683,5570572,5591572,5614932,5643475,5683483,5728010,5764980,5793636,5814422,5831404,5856733,5903037,5946952 +Denmark,DNK,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,149559098881.017,155467419189.092,162670765274.646,164661473107.802,178241819398.727,186566260237.836,205454944757.915,214148066708.886,229296531979.344,224970351274.504,242427639074.57,252568140433.285,256181803182.809,270675687839.011,280163778604.424,287305055728.283,305037277594.345,326115786258.35,342287470715.698,363686111766.64,376683350989.631,425422783749.891,475382465534.997,472113626264.532 +Djibouti,DJI,"Population, total",SP.POP.TOTL,742033,765490,789129,806411,818373,830861,846947,865196,882886,901103,919199,936811,954297,971753,989087,1006259,1023261,1040233,1057198,1073994,1090156,1105557,1120849,1136455 +Djibouti,DJI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,3717943843.27845,4065780221.09406,4486898402.59047,4661848367.26938,4916999872.63431,5409912231.52326,5698011260.14423,5995723399.3825,6552815392.26962,7541802486.84999,8003300980.06205 +Dominica,DMA,"Population, total",SP.POP.TOTL,68346,68153,68262,68442,68574,68674,68742,68775,68782,68787,68755,68742,68888,68819,69371,70007,70075,70403,70823,71428,71995,72412,72737,73040 +Dominica,DMA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,399940859.418266,429120580.552828,418881225.210952,456833765.141799,477089440.788469,501386251.961273,565090482.633869,612071849.952479,672868261.105816,677531803.663336,696630910.960164,708013848.57651,691165829.624609,690819476.959593,749211064.419121,757229494.471577,817302215.825858,810041278.302196,909523747.603172,1016215169.29708,933278259.299084,1048917815.03922,1188188764.11358,1288935502.12925 +Dominican Republic,DOM,"Population, total",SP.POP.TOTL,8540791,8669040,8795101,8919852,9043127,9164768,9284168,9402206,9522948,9648061,9775755,9903737,10030882,10157051,10282115,10405832,10527592,10647244,10765531,10881882,10999664,11117873,11228821,11332972 +Dominican Republic,DOM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,54802095690.6531,57426628332.8309,60951943742.4396,59872615630.4667,62016681077.2305,72087747286.4244,81490944731.235,89751786869.7822,95740835587.3615,97309760694.6125,106693347855.692,111949190644.908,114131186629.162,120788956478.9,132509043990.399,148517459662.805,164748190180.176,173182484591.934,186873929718.07,205016584339.031,199747998390.615,231557784783.516,263190082013.872,277247735553.736 +Ecuador,ECU,"Population, total",SP.POP.TOTL,12626507,12845521,13070609,13301184,13534593,13770012,14009061,14251835,14496797,14742766,14989585,15237728,15483883,15722989,15957994,16195902,16439585,16696944,17015672,17343740,17588595,17797737,18001000,18190484 +Ecuador,ECU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,66911195184.7397,72923599721.9606,78748823460.6693,82455806838.6207,90076142497.9164,98650631049.4066,106666885728.602,111699997250.943,123343886010.807,125739257014.511,133183317762.694,147360488822.749,157225919896.862,176062331035.283,186961706891.019,173824904854.939,176263244486.777,193264344525.78,202307594707.066,211369374304.621,195321092920.497,235695382943.671,267765274487.406,282205138253.353 +"Egypt, Arab Rep.",EGY,"Population, total",SP.POP.TOTL,71371371,72854261,74393759,75963322,77522427,79075310,80629670,82218755,83844783,85501064,87252413,89200054,91240376,93377890,95592324,97723799,99784030,101789386,103740765,105618671,107465134,109262178,110990103,112716598 +"Egypt, Arab Rep.",EGY,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,400278273339.46,426462274067.937,439074119084.91,460905800712.943,492032086407.236,530040788610.917,588330623950.982,649728960120.076,709166738619.987,741304645064.474,772581901837.804,797765801524.506,941144389250.992,976356868606.206,976523689101.184,1067147122529.07,1069524989723.49,1132371475178.36,1271820646752.67,1387655933041.16,1615817490975.2,1678130810767.4,1906998833358.04,2028159730034.47 +El Salvador,SLV,"Population, total",SP.POP.TOTL,5958482,5988095,6011275,6026849,6035655,6037817,6034436,6044131,6068099,6091188,6114034,6137349,6161289,6185642,6209526,6231066,6250510,6266654,6276342,6280217,6292731,6314167,6336392,6364943 +El Salvador,SLV,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,25719714814.0403,26525948224.9593,27252686352.9019,28040099229.115,29007830933.7941,30719424053.7164,33245677479.5811,34796067143.6229,36423798222.0329,35510524070.087,36807779594.2883,38932390718.9747,39345347459.2873,41579745956.3746,44125662032.396,46774257454.8227,49730228036.5628,52611174848.1807,54011440208.0451,57680812239.8817,55323724880.5654,63692919937.2651,69799499990.2956,74804901635.5841 +Equatorial Guinea,GNQ,"Population, total",SP.POP.TOTL,684977,719270,754115,789681,826355,864726,905418,948814,994971,1043686,1094524,1144588,1193636,1243941,1295183,1346973,1398927,1450694,1502091,1553031,1596049,1634466,1674908,1714671 +Equatorial Guinea,GNQ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3565860967.96784,4054096187.64486,5414885553.86981,5383148098.80273,7066131362.38804,10650132479.0468,18328094265.4015,22041961721.7724,24532848157.6187,22324010892.8218,18268538214.2209,21889346128.883,25738923220.5853,25683802611.572,25862380308.7119,21360452976.6165,19456870395.8154,21207211938.9549,22786640150.2647,20140430549.146,17688315108.1136,22154736585.2791,21259113711.2977,23003653050.1745 +Eritrea,ERI,"Population, total",SP.POP.TOTL,2392880,2461927,2547424,2653390,2763140,2831732,2880093,2926168,3005779,3083888,3147727,3207570,3252596,3296367,3323425,3340006,3365287,3396933,3445374,3498818,3555868,3620312,3684032,3748901 +Eritrea,ERI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3502952458.53335,3880612655.80588,4038045151.69644,3997353699.52812,4153130830.20299,4416845102.7556,4515258516.76411,4711818765.53768,4319551008.9321,4513815645.17128,4651755204.15003,5164760114.43522,..,..,..,..,..,..,..,..,..,..,..,.. +Estonia,EST,"Population, total",SP.POP.TOTL,1396985,1388115,1379350,1370720,1362550,1354775,1346810,1340680,1337090,1334515,1331475,1327439,1322696,1317997,1314545,1315407,1315790,1317384,1321977,1326898,1329522,1330932,1348840,1366188 +Estonia,EST,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12666655291.5582,13619233851.7102,15237943834.8981,16957922453.2987,18696812422.1338,21499501319.2193,24614544330.3878,27453258011.4217,28894882167.8546,26494435688.94,27233323896.6389,30933346364.3471,32958010835.542,35321118478.4772,36967108884.2073,37534878529.7072,40284437405.3942,43460557703.3808,47113819402.8105,51839641377.7448,52504648662.0784,58479129645.5889,63073685269.0518,64685965842.0555 +Eswatini,SWZ,"Population, total",SP.POP.TOTL,1030496,1041396,1050809,1058797,1065764,1071886,1077735,1084008,1089870,1094886,1099920,1105371,1111444,1118319,1125865,1133936,1142524,1151390,1160428,1169613,1180655,1192271,1201670,1210822 +Eswatini,SWZ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,4836140111.60966,5225890458.21579,5206742903.80259,5397958204.66148,5861293187.38282,6760813560.52052,7024286443.333,7591553787.9474,7697891652.68446,7712769719.24321,7855602125.23725,8114103567.84471,8397151355.55005,9169382693.53373,9396816902.88525,9578400965.91347,9460578494.079,9151905660.73118,9338079092.21236,9485202373.87253,9676349818.61622,11255085911.2829,14111429908.5788,13262280538.4698 +Ethiopia,ETH,"Population, total",SP.POP.TOTL,67031867,69018932,71073215,73168838,75301026,77469940,79691050,81996185,84357105,86755585,89237791,91817929,94451280,97084366,99746766,102471895,105293228,108197950,111129438,114120594,117190911,120283026,123379924,126527060 +Ethiopia,ETH,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,31713478436.8642,35157264393.9252,36222515147.6046,36108792940.742,42171697081.339,48800096617.4424,55776261915.1181,64057268445.3563,72336649383.8701,79029657478.0178,89819143073.667,102066933556.261,112693479432.346,123054467295.449,149706960402.231,168886194465.487,197586699603.21,218548001581.726,235010235798.71,257939265039.58,284581201252.383,314515157183.283,354799236858.904,392414028311.57 +Faroe Islands,FRO,"Population, total",SP.POP.TOTL,45660,46245,46813,47392,47989,48291,48313,48361,48411,48429,48410,48386,48392,48418,48465,48816,49500,50230,50955,51681,52415,52889,53090,53270 +Faroe Islands,FRO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,2005760141.73349,1876025385.53504,1956561745.76167,2154793590.8091,2344561749.65005,2530243394.96957,2666303707.03746,2693885371.03912,2784786665.28601,2926123365.10611,3091134657.31042,3315013813.34153,3323720033.43019,3693425603.60624,4180242297.94898,.. +Fiji,FJI,"Population, total",SP.POP.TOTL,832509,841320,849891,858306,866694,874923,883083,890648,896731,901383,905169,908355,911059,913453,915560,917200,918371,919019,918996,918465,920422,924610,929766,936375 +Fiji,FJI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,4822556742.72726,4890461150.2634,5210713032.86734,5326021053.12399,5757217640.75145,6065611312.79013,6030507061.16859,6249450687.60985,6420150389.34567,6505615534.6075,6594779415.1068,6915550183.69762,7363837377.82707,8091944218.81719,9373069037.93983,10123784859.6887,10408122393.3022,10847227683.3636,11348504112.8674,11093486325.8382,9627983911.98115,9225707520.09922,11914447897.9923,13110817929.1139 +Finland,FIN,"Population, total",SP.POP.TOTL,5176209,5188008,5200598,5213014,5228172,5246096,5266268,5288720,5313399,5338871,5363352,5388272,5413971,5438972,5461512,5479531,5495303,5508214,5515525,5521606,5529543,5541017,5556106,5584264 +Finland,FIN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,137797028042.74,144194039348.042,149214583627.633,150562006335.671,164280510448.703,168848220995.197,183099478417.832,200747054367.411,213338084144.169,205240661752.896,211603629451.319,221315089725.945,222320431042.548,226606741870.886,230341376307.58,235157775065.327,248052265025.91,262157314767.321,274554727049.966,291766707651.199,301606259474.987,325213045772.108,351043275908.442,362669503835.674 +France,FRA,"Population, total",SP.POP.TOTL,60921384,61367388,61816234,62256970,62716306,63188395,63628261,64021737,64379696,64710879,65030575,65345233,65662240,66002289,66312067,66548272,66724104,66918020,67158348,67388001,67571107,67764304,67971311,68170228 +France,FRA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1614556716413.1,1717636361043.74,1781288096300.79,1776978239313.78,1847513634905.36,1959874866060.42,2107011008245.29,2228212746322.74,2308471504999.58,2295454993157.52,2388305762886.36,2511515271090.53,2528097207038.72,2666952095933.8,2719730300347.34,2777204974934.9,2924692709642.01,3050429224953.88,3197837511869.07,3527047088053.88,3370361819892.32,3728403071705.69,3984079021927.12,4235078553606.88 +French Polynesia,PYF,"Population, total",SP.POP.TOTL,250927,255049,259137,263173,267132,271060,274901,278178,280558,282283,283788,285265,286584,288032,289873,291787,293541,295450,297606,299717,301920,304032,306279,308872 +French Polynesia,PYF,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +Gabon,GAB,"Population, total",SP.POP.TOTL,1272935,1306590,1341696,1378398,1417110,1458353,1502534,1549774,1599978,1653542,1711105,1772500,1836705,1902226,1966855,2028517,2086206,2140215,2192012,2242785,2292573,2341179,2388992,2436566 +Gabon,GAB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,14545610432.0677,15526882850.7728,16361999655.3699,16692429060.7032,16409960259.1346,18478041667.7424,17859620755.8115,19104153712.5703,19004049980.6694,19708933356.9843,20937084616.6374,22729974762.4942,24306483887.967,25048343584.009,27856596913.337,26774535152.9298,27116527895.5201,29897369576.7258,31889110710.4311,33247012569.4475,31785223033.4001,38608290592.2816,45570073313.151,48015046439.0234 +"Gambia, The",GMB,"Population, total",SP.POP.TOTL,1437539,1479449,1522223,1566257,1612225,1660368,1711294,1764883,1820542,1878119,1937275,1998212,2061014,2124869,2189019,2253133,2317206,2381182,2444916,2508883,2573995,2639916,2705992,2773168 +"Gambia, The",GMB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2388674518.39502,2578451460.30636,2505602365.92429,2782118189.54393,3139183944.30602,3160196197.68988,3233082503.79974,3434320606.99062,3733969146.83586,3995538159.6877,4282709649.28129,4002461735.10188,4131377697.7513,4130762560.56277,4086929952.0286,4321340159.0319,4510338615.19933,4685813019.19955,5369508408.34943,5851376862.87667,6272279516.99147,6976646477.83125,7921191001.56678,8655471210.91092 +Georgia,GEO,"Population, total",SP.POP.TOTL,4077131,4014373,3978515,3951736,3927340,3902469,3880347,3860158,3848449,3814419,3786695,3756441,3728874,3717668,3719414,3725276,3727505,3728004,3726549,3720161,3722716,3708610,3712502,3760365 +Georgia,GEO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,13043957186.9942,13896913902.6374,14839499693.1961,16794411445.1832,18460602474.6679,20765885999.961,23681802151.2805,26925853091.9618,27883643631.1086,27047039616.6861,28692237889.8101,31284073684.4784,37129800254.7801,39415059833.3112,43223852487.0596,44676688236.3775,46495073155.0409,48687859141.1321,53871611079.6655,59570769715.4507,59555183444.0573,65780416560.1343,77523998954.9665,86640187868.7189 +Germany,DEU,"Population, total",SP.POP.TOTL,82211508,82349925,82488495,82534176,82516260,82469422,82376451,82266372,82110097,81902307,81776930,80274983,80425823,80645605,80982500,81686611,82348669,82657002,82905782,83092962,83160871,83196078,83797985,84482267 +Germany,DEU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2223776683504.9,2320421902714.12,2381368004844.2,2443506826195.71,2601243603134.95,2643689105682.11,2861581207673.61,3029274422927.37,3133424995825.21,3083197514578.43,3248764251471.72,3502470398953.27,3570904139239.83,3712581829258.22,3883389666513.64,3977709151007.17,4268495684340.31,4491247786267.96,4730327637032.14,5021458874669.97,4952942408139.94,5351636063191.8,5799413665397.62,6092387356846.29 +Ghana,GHA,"Population, total",SP.POP.TOTL,19665502,20195577,20758326,21329514,21906444,22496951,23098586,23708320,24326087,24950762,25574719,26205941,26858762,27525597,28196358,28870939,29554303,30222262,30870641,31522290,32180401,32833031,33475870,34121985 +Ghana,GHA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,44848820630.0164,47895928550.7736,50813617622.6151,54495591724.616,59075711884.0143,64824781883.3593,70030320309.9632,76304253797.8195,84992608904.9486,89689915726.532,96995228259.267,111658379163.482,126870542214.88,138828155190.211,146624691257.904,144492868487.251,141337268710.443,147530650795.972,161990349853.475,179917385479.638,194854376256.789,208285038305.008,234679539092.675,251598031843.879 +Gibraltar,GIB,"Population, total",SP.POP.TOTL,27741,27721,27892,28301,28716,29155,29587,29996,30398,30819,31262,31701,32160,32411,32452,32520,32565,32602,32648,32685,32709,32669,32649,32688 +Gibraltar,GIB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +Greece,GRC,"Population, total",SP.POP.TOTL,10805808,10862132,10902022,10928070,10955141,10987314,11020362,11048473,11077841,11107017,11121341,11104899,11045011,10965211,10892413,10820883,10775971,10754679,10732882,10721582,10698599,10569207,10426919,10361295 +Greece,GRC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,212360254426.706,229421253540.603,246506012631.748,260413370065.913,275661304618.234,281471978167.568,308781449876.455,315669693408.378,331637075164.807,329704542389.627,303511766359.554,277177153049.163,277445806184.941,284938615777.952,291893761607.501,289335045232.896,295022258656.427,306093821136.232,314377061805.023,335875941823.237,309954681839.355,346287102498.976,401630369110.382,423605700408.043 +Greenland,GRL,"Population, total",SP.POP.TOTL,56200,56350,56609,56765,56911,56935,56774,56555,56328,56323,56905,56890,56810,56483,56295,56114,56186,56172,56023,56225,56367,56653,56661,56865 +Greenland,GRL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1625434556.40509,1676917984.80386,1687393163.46183,1645198473.54596,1778365861.57725,1971063327.37058,1965147905.02493,2277578573.66887,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +Grenada,GRD,"Population, total",SP.POP.TOTL,107432,107936,108231,108740,109516,110254,110988,111725,112478,113249,114039,114918,115912,116945,117972,118980,119966,120921,121838,122724,123663,124610,125438,126183 +Grenada,GRD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,734064552.191973,723811562.058647,753341889.167933,843366062.828186,838439325.413728,1054441785.15756,1042792250.95133,1121427226.63083,1156855652.21803,1052590322.32885,1094585184.89393,1138673428.05648,1141494468.05359,1232242972.12727,1269050103.51512,1338456470.87388,1462955956.1401,1550331222.82484,1668484119.50897,1716612139.25774,1556456827.61796,1628028114.5251,1915206382.50476,2087779441.68546 +Guam,GUM,"Population, total",SP.POP.TOTL,160188,161524,162563,163385,164004,164430,164675,164763,164725,164580,164905,165649,166392,167054,167543,167978,168346,168606,168678,168624,169231,170534,171774,172952 +Guam,GUM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +Guatemala,GTM,"Population, total",SP.POP.TOTL,11589761,11871565,12147518,12415334,12682108,12948292,13213330,13477017,13739299,14000190,14259687,14521515,14781942,15043981,15306316,15567419,15827690,16087418,16346950,16604026,16858333,17109746,17357886,17602431 +Guatemala,GTM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,54470605222.1039,57446378813.9932,59910347496.9107,62710897956.1629,66238537072.1537,70502161133.9394,76193830119.9429,83028024157.7446,88189540402.773,88868570728.6307,91998292946.7155,97566174068.503,107261780440.806,115718444965.138,125777822126.029,139280908912.11,146465682385.896,155068717499.216,164128050017.002,180619375097.978,186574552728.411,201994945206.08,225999440990.472,243226175801.416 +Guinea,GIN,"Population, total",SP.POP.TOTL,8336967,8445717,8577790,8772254,8961039,9140114,9330625,9547082,9779785,10021323,10270728,10527712,10788692,11055430,11333365,11625998,11930985,12240789,12554864,12877539,13205153,13531906,13859341,14190612 +Guinea,GIN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9910493127.70699,10457775746.4787,11323027641.003,11204718361.7447,11751998253.9258,12293651499.4139,13584961647.4031,14898541290.0717,15764608925.3265,15493930419.5934,16669559769.7654,17815489450.0403,19237151437.944,19618328148.0874,20795619434.4176,22336836808.9053,26756649874.1527,33118247750.4009,34893970154.2273,38747854978.8839,40219198253.9918,43433433100.8274,50375521463.5622,55952584781.2131 +Guinea-Bissau,GNB,"Population, total",SP.POP.TOTL,1230849,1257380,1285678,1315653,1347009,1379713,1414091,1450572,1488431,1527196,1567220,1609017,1652717,1697753,1743309,1788919,1834552,1879826,1924955,1970457,2015828,2060721,2105566,2150842 +Guinea-Bissau,GNB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1212225525.83483,1302407912.82496,1385585115.69985,1412934631.17331,1467042075.4408,1616830044.0372,1710900952.8947,1803646172.51867,1917125696.89445,1982090239.74346,2140114074.27291,2328848436.45773,2242167091.07412,2383842665.69194,2618280126.57549,3159045810.42944,3389358587.79474,3946168291.4265,3825588760.97414,4191484824.51988,4270925452.52923,4740590356.7293,5313475248.25025,5735375069.8915 +Guyana,GUY,"Population, total",SP.POP.TOTL,759051,759809,760323,760562,760424,759709,758367,756521,754150,751258,747932,744230,743966,747420,751115,755031,759087,763252,785514,798753,797202,804567,808726,813834 +Guyana,GUY,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,4371184780.20324,4552080465.06344,4668080559.59955,4765181982.74892,5005108959.15713,5093577932.81599,5406977185.22564,6113073720.6621,6335114799.61907,6601444569.33724,7021544808.51052,7491848905.65813,7977453337.0076,8457592198.47241,8460278228.58677,8706492196.71085,8784285374.65049,9385871839.83027,9791959057.9055,10597945984.2742,13187917991.1455,17621818093.4496,29647857075.7923,40741323429.8595 +Haiti,HTI,"Population, total",SP.POP.TOTL,8360225,8511728,8661546,8812245,8961489,9111900,9266288,9420826,9575247,9730638,9842880,9954312,10108539,10261206,10412740,10563757,10713849,10863543,11012421,11160438,11306801,11447569,11584996,11724763 +Haiti,HTI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,18478627664.1163,18827176814.1473,19307173380.1591,20361161160.8353,20649462410.0442,21886148751.5142,23095118212.612,24821686023.1442,25980008664.4573,27695827067.3064,26468644235.1986,28421083478.0413,28612762449.9411,31167302933.5683,32008772012.9397,31928717824.8398,34837480265.1542,36264719873.2019,35153803429.1649,36066006276.0502,34960472097.1829,35698748269.6791,37571413262.8948,38178694578.1657 +Honduras,HND,"Population, total",SP.POP.TOTL,6656725,6837861,7019908,7201881,7383407,7564613,7745200,7924462,8101777,8277302,8450933,8622504,8792367,8960657,9127846,9294505,9460798,9626842,9792850,9958829,10121763,10278345,10432860,10593798 +Honduras,HND,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,16492014755.9975,17272844270.1623,18120696348.3979,19186732780.6822,20782175969.0806,22838097542.3799,25037632785.3572,27778436917.6943,29604298544.714,29347753583.3132,29988648102.8142,31543206984.345,32581695561.8471,34186057817.2571,37173568050.5843,41708776073.2332,45399704059.0202,50592235980.2075,50680961366.3105,52929667611.9505,50624228154.9376,58446482549.0573,65573106008.1241,70775732896.552 +"Hong Kong SAR, China",HKG,"Population, total",SP.POP.TOTL,6665000,6714300,6744100,6730800,6783500,6813200,6857100,6916300,6957800,6972800,7024200,7071600,7150100,7178900,7229500,7291300,7336600,7393200,7452600,7507900,7481000,7413100,7346100,7536100 +"Hong Kong SAR, China",HKG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,189627733186.446,197889664896.461,200982656835.02,215238974617.313,239225936332.431,260814809467.142,293014763142.047,323029126261.238,345014765803.666,329373496580.365,352888150754.849,379780810643.688,378267055024.931,391476383516.671,402243321787.729,416187562392.145,426902050223.732,457163101472.426,475445146515.694,482863342666.619,460692239607.54,522255401707.345,536858669222.305,586896223269.297 +Hungary,HUN,"Population, total",SP.POP.TOTL,10210971,10187576,10158608,10129552,10107146,10087065,10071370,10055780,10038188,10022650,10000023,9971727,9920362,9893082,9866468,9843028,9814023,9787966,9775564,9771141,9750149,9709891,9643048,9589872 +Hungary,HUN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,114016970414.16,126784743919.787,139177319914.304,148020407349.986,154389538641.463,161749529490.752,173695472223.25,177492394713.692,194321209236.065,198649727102.766,207157547477.687,218522658665.798,221049096122.124,235791190025.572,242043953893.62,251155582375.752,266826704983.726,277026584081.588,299709601062.391,334414758113.892,333390959932.686,363339030228.622,408115693666.299,428172811501.662 +Iceland,ISL,"Population, total",SP.POP.TOTL,281205,284968,287523,289521,292074,296734,303782,311566,317414,318499,318041,319014,320716,323764,327386,330815,335439,343400,352721,360563,366463,372520,382003,393600 +Iceland,ISL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8110520618.07496,8798845912.63083,9335416766.07075,9306169443.491,9947012720.40107,10635589809.3988,11335614525.7608,12326462757.7188,11318396238.8329,11145748986.8585,10720399422.4098,11539658709.0192,12293791666.3107,14275942489.1148,14867763862.9,16247537963.1471,18290558555.509,19199495506.0371,20513111281.5142,22435531777.0409,21123180479.232,23115224565.5405,27955349703.9192,31207091257.3339 +India,IND,"Population, total",SP.POP.TOTL,1059633675,1078970907,1098313039,1117415123,1136264583,1154638713,1172373788,1189691809,1206734806,1223640160,1240613620,1257621191,1274487215,1291132063,1307246509,1322866505,1338636340,1354195680,1369003306,1383112050,1396387127,1407563842,1417173173,1428627663 +India,IND,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2188467536995.54,2350329816433.71,2482577766465.38,2728605937030.76,3025177949276.57,3366674483991.45,3747899054486.65,4159475040138.85,4362653235093.54,4734672267450.51,5174606326215.35,5568974800576.6,6090391152565.54,6416831228693.33,6732247711204.03,7120994309946.25,7706181204020.55,8264361849010.26,9131972106248.12,9837436260443.67,9639773300095.94,11250341278207.3,12858237993387,14324038077262.9 +Indonesia,IDN,"Population, total",SP.POP.TOTL,214072421,217112437,220115092,223080121,225938595,228805144,231797427,234858289,237936543,240981299,244016173,247099697,250222695,253275918,256229761,259091970,261850182,264498852,267066843,269582878,271857970,273753191,275501339,277534122 +Indonesia,IDN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,935920239986.011,1022914407390.4,1093624786148.82,1158262502353.87,1239576234080.96,1347290623867.18,1474565524635.68,1613100438542.74,1753214877820.6,1846711200166.62,2002715927512.05,2167767372901.2,2340312301657.64,2448797153733.53,2518156676081.36,2538121217574.22,2628825068930.35,2766768816101.29,2978437370027.98,3166892074762.32,3134895515977.91,3434771286486.53,3870444352580.73,4221516606595.63 +"Iran, Islamic Rep.",IRN,"Population, total",SP.POP.TOTL,65544383,66674851,67327117,67954699,69061674,70182594,71275760,72319418,73318394,74322685,75373855,76342971,77324451,78458928,79961672,81790841,83306231,84505076,85617562,86564202,87290193,87923432,88550570,89172767 +"Iran, Islamic Rep.",IRN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,713822857361.983,747732523341.72,821050782713.062,908805047643.968,970562982881.893,1032744495997.97,1120135326219.38,1246975500350.14,1274851350559.62,1291344348299.76,1383404579376.05,1450159210166.75,1304208891173.45,1258586972971.48,1262255381766.87,1131882731796.44,1222831727825.07,1282944257114.51,1284615969251.64,1162216536949.58,1235724057317.02,1322139318001.88,1466982789593.74,1596260548344.01 +Iraq,IRQ,"Population, total",SP.POP.TOTL,24628858,25425663,26255343,27068823,27858948,28698684,28905607,28660887,29218381,30289040,31264875,32378061,33864447,35481800,36746488,37757813,38697943,39621162,40590700,41563520,42556984,43533592,44496122,45504560 +Iraq,IRQ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,257947811167.687,268178847574.667,247496052885.565,162832256980.867,256554557440.134,271333212217.636,296581002533.711,311260922259.314,346669160059.844,361028306851.077,382676259914.173,414738530059.061,487053165623.958,515196414391.211,478553306060.23,347420032523.42,346000767006.376,397827839704.259,480834490892.089,502027631920.137,440889813811.978,542973889892.429,629741798557.346,638811194869.78 +Ireland,IRL,"Population, total",SP.POP.TOTL,3805174,3866243,3931947,3996521,4070262,4159914,4273591,4398942,4489544,4535375,4560155,4580084,4599533,4623816,4657740,4701957,4755335,4807388,4867316,4934340,4985382,5033164,5127170,5262382 +Ireland,IRL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,100209964940.683,107590816057.045,116111294637.356,125019480415.986,136085433306.024,145786461890.646,165768473520.759,177924283737.566,171652233529.25,157122689060.713,165602789383.864,168238349851.415,172083234516.543,186791239947.339,201943802569.102,250677420629.726,276820457037.679,299042249230.557,320760283206.305,348446366712.294,366265022967.427,428877290068.002,492739510136.486,519143400153.854 +Isle of Man,IMN,"Population, total",SP.POP.TOTL,75562,76398,77183,77939,78677,79415,80228,81100,81997,82915,83828,84350,84338,84144,83896,83593,83450,83580,83775,83933,84046,84263,84519,84710 +Isle of Man,IMN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +Israel,ISR,"Population, total",SP.POP.TOTL,6289000,6439000,6570000,6689700,6809000,6930100,7053700,7180100,7308800,7485600,7623600,7765800,7910500,8059500,8215700,8380100,8546000,8713300,8882800,9054000,9215100,9371400,9557500,9756700 +Israel,ISR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,152006620004.626,159047522847.635,165064002811.698,159205293292.487,172314883443.12,176114620721.309,185046436126.817,202016142489.402,200721110207.501,204508326225.738,219773977684.734,239356485294.554,249851617224.029,274305757734.077,283493605069.756,297313043699.867,322442106410.672,341030566156.125,355650262480.368,371441957062.133,374770751655.923,426646830785.195,493986318749.133,520396572931.492 +Italy,ITA,"Population, total",SP.POP.TOTL,56942108,56974100,57059007,57313203,57685327,57969484,58143979,58438310,58826731,59095365,59277417,59379449,59539717,60233948,60789140,60730582,60627498,60536709,60421760,59729081,59438851,59133173,58940425,58761146 +Italy,ITA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1535870198284.03,1592778291629.66,1632366431124.16,1665393835986.26,1702101336050.59,1749401793158.77,1894455105262.58,1997147913301.71,2070619017116.37,2043525270793.22,2079328222517.08,2167673493812.34,2169728418375.06,2183586848754.71,2200447242186.78,2225428932683.9,2427621534122.07,2531219823306.44,2629049101683.88,2797692098538.83,2660829806481.82,2988507504506.61,3324774786874.35,3446468648285.3 +Jamaica,JAM,"Population, total",SP.POP.TOTL,2612205,2625405,2638244,2651027,2664024,2676863,2689660,2701221,2711373,2722401,2733896,2746169,2759817,2773129,2784543,2794445,2802695,2808376,2811835,2813773,2820436,2827695,2827377,2825544 +Jamaica,JAM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,16200816146.6494,16635421392.665,16966010734.8519,17967560954.6943,18761391513.6275,19462817214.3205,20832212339.0922,21701037326.3016,22176469595.7909,21039601788.1439,21377943699.4337,22231688676.0653,22901990379.5434,23462040612.8315,23873506328.6696,24401476528.2057,25294790902.9074,26865293783.6455,27228229359.2636,27674577716.0947,24614327201.8092,26400811208.0624,29988585275.8067,31539712670.2252 +Japan,JPN,"Population, total",SP.POP.TOTL,126843000,127149000,127445000,127718000,127761000,127773000,127854000,128001000,128063000,128047000,128070000,127833000,127629000,127445000,127276000,127141000,127076000,126972000,126811000,126633000,126261000,125681593,125124989,124516650 +Japan,JPN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3511271813876.38,3608076636937.38,3701173656289.74,3814570895476.81,4014995178768.02,4201587695067.98,4415235266797.66,4619429794420.16,4638617178018.89,4403592894666.1,4645945128260.86,4764015870154.12,4932125343801.04,5194308150190.67,5221591072071.17,5404452911056.24,5338418864031.4,5456929841830.38,5548453034657.65,5616185461359.49,5554842403045.06,5866680598432.7,6254020558483.38,6554253976356.28 +Jordan,JOR,"Population, total",SP.POP.TOTL,5056174,5163310,5275532,5396117,5532423,5678534,6075548,6473457,6632873,6780493,6931258,7109980,7211863,7694814,8658026,9494246,9964656,10215381,10459865,10698683,10928721,11148278,11285869,11337052 +Jordan,JOR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,30746568156.234,33296497736.8587,35389795705.067,37797272799.4077,42606469709.4669,47652099991.4854,53272105311.6954,59389280978.863,63932080618.1981,67368027141.3447,68170080836.0358,71405408210.784,72981219433.6131,77681411465.2299,79488204488.3576,84627584195.2961,86863814635.068,94354043784.7688,94169304270.97,100642915787.217,103784671666.321,101108227485.885,110254502766.802,117416918806.659 +Kazakhstan,KAZ,"Population, total",SP.POP.TOTL,14883626,14858335,14858948,14909019,15012984,15147029,15308085,15484192,15776938,16092822,16321872,16557202,16792090,17035551,17288285,17542806,17794055,18037776,18276452,18513673,18755666,19191356,19634983,19900177 +Kazakhstan,KAZ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,107830048324.754,126859765752.36,142859800966.511,157229242132.861,174899659581.548,190656958733.097,213185923031.884,236281675042.166,242614725779.6,257880263793.01,272791206933.368,294494040832.3,319796289189.58,372719753836.891,383081425056.159,380991411579.698,381362825184.343,398494535267.267,416689586562.376,482267472114.565,515912891760.811,570646378721.163,637245324888.957,704869664044.164 +Kenya,KEN,"Population, total",SP.POP.TOTL,30851606,31800343,32779823,33767122,34791836,35843010,36925253,38036793,39186895,40364444,41517895,42635144,43725806,44792368,45831863,46851488,47894670,48948137,49953304,50951450,51985780,53005614,54027487,55100586 +Kenya,KEN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,57977561049.6131,61469779094.5156,62868335623.5316,65893484968.0628,71247619251.6804,78327850690.454,85787140779.3444,93999273531.308,96338850222.8299,87506739515.8357,96202675495.9382,105284725887.098,111203385043.76,123488990916.32,137250578495.32,156100504955.454,186000269591.319,201600741005.068,218150951745.001,236169880650.424,245940612154.615,279377460969.422,313980799894.04,342702840808.511 +Kiribati,KIR,"Population, total",SP.POP.TOTL,88826,90531,92400,94302,96224,98164,100083,101998,103966,105996,107995,109871,111618,113311,114985,116707,118513,120362,122261,124241,126463,128874,131232,133515 +Kiribati,KIR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,226237546.379668,244620453.947043,233772698.032984,219638918.978086,219951049.282735,223262047.577845,246904514.761978,261532252.241201,261663482.821886,250216636.695571,269969437.620304,267590035.848888,314590241.031569,370285661.76209,429534826.863916,524579333.301355,489108168.513036,543609392.916639,559864886.454953,648322894.836896,582543769.667052,609864880.032537,663936701.596191,787791415.225138 +"Korea, Dem. People's Rep.",PRK,"Population, total",SP.POP.TOTL,23367059,23512522,23638411,23781707,23948930,24100982,24235761,24356506,24469047,24581509,24686435,24783789,24887770,25001819,25126131,25258015,25389611,25516321,25638149,25755441,25867467,25971909,26069416,26160821 +"Korea, Dem. People's Rep.",PRK,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +"Korea, Rep.",KOR,"Population, total",SP.POP.TOTL,47008111,47370164,47644736,47892330,48082519,48184561,48438292,48683638,49054708,49307835,49554112,49936638,50199853,50428893,50746659,51014947,51217803,51361911,51585058,51764822,51836239,51769539,51672569,51712619 +"Korea, Rep.",KOR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,865644442260.788,928025906793.228,1015663096721.17,1054530303017.17,1141124345956.41,1205046439840.2,1298424910845.66,1411398167221.23,1469369248901.13,1452739634577.62,1575029690364.29,1635336002448.05,1702177999918.46,1737909546523.48,1801276221059.28,1939637111593.39,2034377961086.03,2112226195329.95,2229385035793.88,2290263550424.36,2360460945631.06,2542822630693.5,2706618834366.57,2846252819540.61 +Kosovo,XKX,"Population, total",SP.POP.TOTL,1823286,1840256,1846786,1839425,1832239,1825050,1817659,1810222,1803370,1797466,1792563,1799338,1807106,1818117,1812771,1788196,1777557,1791003,1797085,1788878,1790133,1786038,1768086,1756374 +Kosovo,XKX,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,11970551239.623,12297277990.454,13056653469.9236,14275227213.9172,14728893012.8234,15062478449.5548,15183336426.1455,15839094174.505,16478147987.9339,17138132288.9513,18309703085.0368,19871495285.7317,19311373254.5962,22500265186.822,24966189408.0118,26897416422.7339 +Kuwait,KWT,"Population, total",SP.POP.TOTL,1934901,1991674,2047364,2101506,2153481,2235403,2363409,2506769,2650930,2795550,2943356,3143825,3394663,3646518,3761584,3908743,4048085,4124904,4317185,4441100,4360444,4250114,4268873,4310108 +Kuwait,KWT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,135127376968.008,134097513671.323,133790788958.896,157494928759.079,183779758479.651,210887242772.08,237950737036.19,254104219201.156,256982107601.006,238589454748.885,239358270938.212,262123336778.362,288342204491.459,289952335288.418,274603896124.765,192810406905.347,187198085437.978,223571323259.458,250766079110.016,253724768716.728,203421217215.3,247033888180.245,273944801850.136,291933384002.857 +Kyrgyz Republic,KGZ,"Population, total",SP.POP.TOTL,4898400,4945100,4990700,5043300,5104700,5162600,5218400,5268400,5318700,5383300,5447900,5514600,5607200,5719600,5835500,5956900,6079500,6198200,6322800,6456200,6579900,6773400,6974900,7100800 +Kyrgyz Republic,KGZ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8574093443.25683,9441110327.6121,9613619257.80832,10532791828.8631,11410264808.1743,11874938103.7625,12867555045.9932,14399072983.7765,15475291688.8586,16045809286.0324,15744537647.6814,16250508927.9969,19763594067.106,21781204155.0348,23938543159.596,24107226487.1405,26936738702.4326,29734454047.9453,29855076652.9602,32049071926.4371,33754069424.9226,36659194721.2755,43542447998.9451,47940417895.5694 +Lao PDR,LAO,"Population, total",SP.POP.TOTL,5430853,5519707,5606101,5689065,5768167,5852970,5946593,6041348,6135861,6229930,6323418,6416327,6508803,6600742,6691454,6787419,6891363,6997917,7105006,7212053,7319399,7425057,7529475,7633779 +Lao PDR,LAO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9344578063.56618,10124352207.0641,10917896454.2776,11570362577.4306,12838232653.8434,14432668303.7343,15644388412.1712,17659114103.3517,19166666406.6005,21137008893.9873,22379319076.4161,24562505655.0219,29306461052.0083,32664639816.9345,37153604686.9304,39554381323.8111,44583344866.2946,47477587535.3192,51055350809.9477,52799613653.0267,54680747375.074,56795189946.6876,61256355732.6601,65993391663.1308 +Latvia,LVA,"Population, total",SP.POP.TOTL,2367550,2337170,2310173,2287955,2263122,2238799,2218357,2200325,2177322,2141669,2097555,2059709,2034319,2012647,1993782,1977527,1959537,1942248,1927174,1913822,1900449,1884490,1879383,1881750 +Latvia,LVA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,19012751863.8619,21208752331.4361,23329055779.9609,25185365079.7848,27215612963.9739,30828211640.8872,34302079604.6563,38943296663.6673,42076622088.1643,38997639807.8074,37507631064.6126,39603823432.0619,43008172626.7379,45462153668.6636,47543767409.8906,49153743809.8913,52287703830.2861,55551560668.3507,58562307753.5406,62791549430.8071,64097492271.1362,68020637068.1645,77068095323.3899,77937716111.4918 +Lebanon,LBN,"Population, total",SP.POP.TOTL,4320642,4389200,4446666,4504807,4574797,4643044,4719864,4809608,4887613,4951135,4995800,5045056,5178337,5678851,6274342,6398940,6258619,6109252,5950839,5781907,5662923,5592631,5489739,5353930 +Lebanon,LBN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,35005237231.7353,36336200166.4036,36583038551.3469,33670756447.4112,42493424467.311,46373281777.5906,49331110461.9354,56658858248.3242,62061994986.9375,67404774464.1507,73142445362.6652,75853128477.2818,84015613944.9094,93271028259.6057,101209930369.207,109205391742.508,117847615338.494,128630325525.231,128897709470.897,122762945887.814,89752695886.407,62012378736.0144,68540815046.4484,.. +Lesotho,LSO,"Population, total",SP.POP.TOTL,1998630,1999473,1997534,1993030,1985384,1977424,1976780,1983465,1995014,2009169,2022747,2037677,2054718,2073939,2095242,2118521,2143872,2170617,2198017,2225702,2254100,2281454,2305825,2330318 +Lesotho,LSO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3250090017.89806,3907235937.61781,4000674020.4432,4210712240.44158,4219781980.97991,4260620180.76296,4395861098.31866,5261012366.35668,5497323254.16576,5312982472.41036,5523469302.72401,5495695560.89784,5442453768.64116,5995666543.66505,6422263721.03697,7143024232.48379,7116435555.77475,6416294205.94538,6841858848.40062,6702824655.898,6824068243.98872,6543657989.46037,7331637051.12355,7617619535.57073 +Liberia,LBR,"Population, total",SP.POP.TOTL,2895224,2981648,3060599,3085173,3122447,3266318,3455397,3632740,3783887,3905066,4019956,4181150,4331740,4427313,4519398,4612329,4706097,4796631,4889391,4985289,5087584,5193416,5302681,5418377 +Liberia,LBR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2498831533.50063,2460983779.63576,2580854954.44374,1776563090.53153,1916878782.81639,2136155310.68061,2459200516.87312,2841993430.36283,3173114879.32381,3401482060.57359,3620990519.24936,4164518138.6144,4584622445.87342,5503143717.30233,5807179871.89274,5703744574.74883,6501423381.49662,7352018132.18437,7762959820.52498,8559670146.84906,7770366647.73588,7592740653.13808,8514348137.30221,9232873687.72459 +Libya,LBY,"Population, total",SP.POP.TOTL,5154790,5275916,5405326,5542641,5687563,5837986,5973369,6097177,6228370,6360191,6491988,6188132,5869870,5985221,6097764,6192235,6282196,6378261,6477793,6569088,6653942,6735277,6812341,6888388 +Libya,LBY,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,101422415160.759,101386956448.114,111931934761.145,129968340328.05,136403950893.903,155977105646.312,172933948065.599,191111998687.75,193690633574.963,186554772528.975,196380140659.675,99691267237.2912,162311066927.766,132615838788.126,113680018017.203,119908446537.807,114179713789.122,123792212503.516,130975740057.458,120135619816.804,109586470049.095,120749689699.337,133398244677.773,135484251444.39 +Liechtenstein,LIE,"Population, total",SP.POP.TOTL,33026,33376,33693,34000,34300,34603,34889,35150,35401,35675,35926,36189,36505,36806,37096,37355,37609,37889,38181,38482,38756,39039,39327,39584 +Liechtenstein,LIE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +Lithuania,LTU,"Population, total",SP.POP.TOTL,3499536,3470818,3443067,3415213,3377075,3322528,3269909,3231294,3198231,3162916,3097282,3028115,2987773,2957689,2932367,2904910,2868231,2828403,2801543,2794137,2794885,2800839,2831639,2871897 +Lithuania,LTU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,29029222791.9622,32317799273.4802,35703851154.3005,40194054974.6515,42975368696.6519,47408986558.9977,52810382922.6536,59299622838.9822,64177732100.1733,58594804923.6695,61830108801.5842,67271169676.0489,71500302658.0891,77288707440.0298,81670755925.4716,80739969855.7382,85539726164.871,92039736266.1189,98750006717.1197,109435580051.643,111748994121.609,125031006467.352,139195953686.672,143870943386.947 +Luxembourg,LUX,"Population, total",SP.POP.TOTL,436300,441525,446175,451630,458095,465158,472637,479993,488650,497783,506953,518347,530946,543360,556319,569604,582014,596336,607950,620001,630419,640064,653103,668606 +Luxembourg,LUX,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,21277857472.4478,22078252790.9982,22046814197.7605,22012714297.8577,26742815510.4023,29141028336.9067,29852651260.6142,34739872276.5409,34794463610.1528,27578590791.9099,31126518823.2003,33946894207.153,39411330076.4234,39343582938.4733,42551389036.5531,39536868192.2836,43719406405.0222,49076634720.7979,50626129447.9929,51562822134.2635,54090736635.6387,60487667381.7075,64430821086.2935,65850753248.5769 +"Macao SAR, China",MAC,"Population, total",SP.POP.TOTL,431896,439122,449665,462533,475529,488619,501863,515330,529038,543021,557297,571003,582766,593374,604167,615239,626688,638609,650991,663653,676283,686607,695168,704149 +"Macao SAR, China",MAC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,13667279616.3592,15603886403.9435,17190031088.3272,19291583160.3312,24241565351.7726,26688158079.0599,29859547667.7013,38599374084.9818,36403863851.1003,37770210512.4556,47284158440.3688,56959985933.7459,63620699006.4561,73602607064.8824,75796054375.185,62556810027.0314,63493583929.0677,69810503217.0245,75580247223.3792,75004170113.2078,46504939954.7943,50445191299.3064,50875198393.1866,.. +Madagascar,MDG,"Population, total",SP.POP.TOTL,16216431,16709665,17211934,17724310,18250774,18792171,19350299,19924958,20513599,21117092,21731053,22348158,22966240,23588073,24215976,24850912,25501941,26169542,26846541,27533134,28225177,28915653,29611714,30325732 +Madagascar,MDG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,19980060326.0409,21710342803.2313,19319313529.0783,21657635462.1061,23475509924.0211,25184938700.1852,27304558080.0215,30037268628.6232,32696809703.0585,31399380399.9285,31890284259.3143,33049341711.3734,33239357182.3898,34312167407.7598,36080692651.0488,36614683087.5275,39141882785.3166,40129275461.7595,41100533999.2085,43910101594.4014,42047004045.0606,46640766947.6608,51494257900.4463,55698402994.1952 +Malawi,MWI,"Population, total",SP.POP.TOTL,11229387,11498818,11784498,12087965,12411342,12755648,13118307,13495463,13889423,14298932,14718422,15146094,15581251,16024775,16477966,16938942,17405624,17881167,18367883,18867337,19377061,19889742,20405317,20931751 +Malawi,MWI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,10967988710.9134,10613219821.4431,10967563578.0557,11820214202.5143,12793761227.158,13647839479.7122,14744687735.2646,16652352814.2748,18276421731.3129,19853474148.9972,21382494189.5145,22915931818.6233,22646322341.3545,24682055095.2965,24567360225.6285,23401060114.5872,24683438880.3585,24472507624.4921,24852788661.4642,26986015211.2298,29420059532.2692,33369384182.4921,36085806593.2595,38099464821.5918 +Malaysia,MYS,"Population, total",SP.POP.TOTL,22945150,23542517,24142445,24739411,25333247,25923536,26509413,27092604,27664296,28217204,28717731,29184133,29660212,30134807,30606459,31068833,31526418,31975806,32399271,32804020,33199993,33573874,33938221,34308525 +Malaysia,MYS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,274938150879.025,285179974724.638,307619450330.067,335962587951.37,369311222767.666,404342605064.838,447027175580.779,492058984655.774,520994566250.35,521583519094.146,560249873979.499,607129184341.237,646742063628.785,675552931089.512,721419359281.208,745127443891.493,781577863648.754,830616712225.639,886229675871.267,942305740205.814,912385819021.018,994701212792.726,1149763424799.19,1239316755912.12 +Maldives,MDV,"Population, total",SP.POP.TOTL,282507,287324,292284,297226,302135,307018,314401,325126,336883,349037,361575,374440,387539,400728,416738,435582,454252,472442,489758,504508,514438,521457,523787,521021 +Maldives,MDV,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,2291030784.54107,2297491715.72221,2509920593.83231,2883726664.80942,3153407434.51193,2892242422.90393,3687978709.90815,3536740384.14705,4049943508.01263,3808045765.34756,4064843652.24227,4576759274.03149,4893050248.86012,5423437177.72291,6242450251.82442,7037133807.49488,7654801124.56947,8352918250.63352,9416623730.72543,10155053554.0899,6185878432.99872,8924352848.89634,10905914058.286,11314526556.8883 +Mali,MLI,"Population, total",SP.POP.TOTL,11239101,11583824,11952660,12342165,12751995,13180551,13623541,14080912,14551117,15032635,15529181,16039734,16514687,17004033,17551814,18112907,18700106,19311355,19934298,20567424,21224040,21904983,22593590,23293698 +Mali,MLI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12280289583.7177,13935361905.3985,14379467802.8985,16473966312.491,17191657388.6401,18894967975.8449,20296815497.5189,21588973578.9357,23169822350.9072,24085345398.0127,25846025000.5594,27331464772.5263,27329937063.1133,29248123412.9689,32222920810.1864,35613129170.1816,39614846855.3663,41932518583.4298,44617067272.9754,48116635265.144,47792963685.7206,50137201071.6838,55790396813.376,60568150012.1157 +Malta,MLT,"Population, total",SP.POP.TOTL,390087,393028,395969,398582,401268,403834,405308,406724,409379,412477,414508,416268,420028,425967,434558,445053,455356,467999,484630,504062,515332,518536,531113,553214 +Malta,MLT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,6892003435.01878,7321655163.03395,7970895292.12951,8308977541.83951,8611784146.22012,8733416162.96397,9068082449.38653,9687155765.88659,10690366659.9874,10412882981.1988,11290732535.4362,11777437589.7758,12103921459.3223,13073678277.1154,14146624568.1817,15747076846.6084,16309653168.2456,18317699965.462,20158132346.8172,23054653815.1071,21462480954.7154,24926597964.4528,28351148145.2837,31465588459.5764 +Marshall Islands,MHL,"Population, total",SP.POP.TOTL,54224,54413,54496,54493,54435,54337,54208,54038,53816,53593,53416,52971,52203,51352,50419,49410,48329,47187,45989,44728,43413,42050,41569,41996 +Marshall Islands,MHL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,165101702.586701,178893473.522573,182593745.297616,184450855.389072,189437517.024063,203129466.652233,204911736.663427,218968403.647301,208825468.762662,213331350.600365,220651057.939786,221812970.140339,213421690.47183,231190286.984124,239118737.769585,265488668.886174,262860326.332063,267906462.535742,288469671.999275,322590034.455659,310867183.880659,303305360.578549,336974746.571,359819731.636318 +Mauritania,MRT,"Population, total",SP.POP.TOTL,2695003,2761823,2821703,2883326,2946575,3012360,3081229,3153508,3233336,3322616,3419461,3524249,3636113,3742959,3843174,3946220,4051890,4160015,4270712,4383849,4498604,4614974,4736139,4862989 +Mauritania,MRT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,6068532659.79945,5990718665.48812,6491011173.95758,7054461059.55679,7583984874.38734,8443024933.31011,9874082106.83494,9993755881.45294,10254166191.4593,10492362532.0942,10640046566.6299,11182344376.6423,12170143865.2569,13896769693.9138,14304630917.2864,15313401563.019,18788148111.5002,22219271702.1331,23429074661.6227,24758929936.1226,26070236683.7684,27197391809.1809,31285231096.9996,33691289694.7946 +Mauritius,MUS,"Population, total",SP.POP.TOTL,1186873,1196287,1204621,1213370,1221003,1228254,1233996,1239630,1244121,1247429,1250400,1252404,1255882,1258927,1261208,1262879,1263747,1264887,1265577,1265985,1266014,1266334,1262523,1261041 +Mauritius,MUS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,10809963835.7787,11495866978.9199,11860808320.8447,12713843102.1621,13660722767.9555,14352177409.0419,15809263945.134,17496496354.8779,18605316912.666,19004890853.3485,19898752964.4649,20741526647.5437,22423784948.861,23583611908.4861,24744756227.5598,26123342651.1878,27858171808.4748,29286351031.8859,30610033233.7494,31929759179.9843,28276441254.885,30353821215.1852,33373313917.3961,38117565846.7517 +Mexico,MEX,"Population, total",SP.POP.TOTL,97873442,99394288,100917081,102429341,103945813,105442402,106886790,108302973,109684489,111049428,112532401,114150481,115755909,117290686,118755887,120149897,121519221,122839258,124013861,125085311,125998302,126705138,127504125,128455567 +Mexico,MEX,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1130845242092.61,1154400324366.51,1179862637988.91,1228706319156.77,1309577171290.9,1382607362960.02,1536273070271.77,1608999565942,1707467194330.25,1675651049580.76,1787698635054.59,1960111493229.58,2059132523946.68,2088045246924.96,2200816239706.12,2251299552151.61,2393565436264.06,2464263194964.25,2538887671170.26,2564438584013.25,2375085356688.96,2608639704774.41,2972064159057.59,3207459718772.8 +"Micronesia, Fed. Sts.",FSM,"Population, total",SP.POP.TOTL,111709,111948,111992,111805,111438,110940,110301,109532,108704,107868,107588,107887,108232,108609,109024,109462,109925,110430,110929,111379,112106,113131,114164,115224 +"Micronesia, Fed. Sts.",FSM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,274052837.41895,284873028.832173,289902034.086449,299613885.238787,302069075.207651,319418803.607612,329106399.759708,333955321.6206,328074537.669753,343873721.793574,348118770.894349,364901630.785689,370508039.791705,374536168.938803,371975343.589468,432097217.090448,431247699.151948,431427363.480007,397613501.888672,460223880.974079,460789298.026663,489227074.694518,517055622.560656,532589889.849633 +Moldova,MDA,"Population, total",SP.POP.TOTL,2924668,2918135,2911385,2903198,2896023,2888985,2880967,2874299,2868833,2865213,2862354,2860699,2860324,2859558,2857815,2835978,2803186,2755189,2707203,2664224,2635130,2595809,2538894,2486891 +Moldova,MDA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9276739425.19954,10272634151.0108,11464608340.2559,12625624242.4936,14141092661.5196,15658689129.1229,16694412765.9306,17328052234.4069,19113125315.2862,17488696409.927,19425869148.8984,20903838967.2382,22703149376.8093,25784023124.4218,26860626178.6452,27587814325.139,30562698892.9695,32812846495.1402,33659492407.058,37608242314.596,36852813936.3851,41500056977.4985,41558795196.1376,43781480609.0552 +Monaco,MCO,"Population, total",SP.POP.TOTL,32465,32444,32386,32316,32236,32141,32011,31823,31862,32401,33178,33945,34700,35425,36110,36760,37071,37044,37029,37034,36922,36686,36469,36297 +Monaco,MCO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +Mongolia,MNG,"Population, total",SP.POP.TOTL,2450979,2472601,2494617,2516454,2537949,2559255,2581242,2605643,2633887,2666713,2702520,2743938,2792349,2845153,2902823,2964749,3029555,3096030,3163991,3232430,3294335,3347782,3398366,3447157 +Mongolia,MNG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8890671237.20415,9387388696.19917,9968095057.73435,10833409619.1689,12327332270.1753,13430758279.0015,15152712991.4542,16975082316.9414,18690831653.8938,18340573413.0521,18962670462.2965,22657114468.2463,26601520969.0058,28562863739.6618,29672852925.6573,29020289245.6155,29793059762.4745,30044557486.4567,35815075204.3467,39537294298.9466,41248123941.6026,42745618822.7807,49452055223.9728,56486278623.897 +Montenegro,MNE,"Population, total",SP.POP.TOTL,604950,607389,609828,612267,613353,614261,615025,615875,616969,618294,619428,620079,620601,621207,621810,622159,622303,622373,622227,622028,621306,619211,617213,616177 +Montenegro,MNE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3814864028.88854,4319117776.79941,4660752074.01223,4756497979.77873,5058599045.00344,5162999841.90482,6539732639.33267,7764241473.1203,8649955086.07793,8065590483.41629,8385969148.00474,9045751379.49339,8749066710.12517,9417029394.99254,9684114384.61904,10383441062.648,11424063796.9225,12500129750.5293,13542991594.1321,15184382335.9156,13257444614.7599,15490196259.85,17827449808.7553,19424229910.1357 +Morocco,MAR,"Population, total",SP.POP.TOTL,28554415,28930097,29301817,29661270,30033125,30431902,30833022,31232633,31634992,32042877,32464865,32903699,33352169,33803527,34248603,34680458,35107264,35528115,35927511,36304408,36688772,37076584,37457971,37840044 +Morocco,MAR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,110777159661.632,122146220262.887,129048670419.873,139988583152.377,150823014641.809,161273625445.927,179016533309.43,190526799913.631,205509022086.389,212213024949.043,222295426294.658,238736288506.998,242387994141.512,255028755841.922,245928490112.9,269459001361.514,275101766505.828,287318074772.051,279423122593.695,291240192998.607,283373556615.165,318558432580.282,345132983355.039,368785466198.27 +Mozambique,MOZ,"Population, total",SP.POP.TOTL,17768505,18220716,18694946,19186754,19694411,20211114,20735982,21280513,21845571,22436660,23073723,23760421,24487611,25251731,26038704,26843246,27696493,28569441,29423878,30285595,31178239,32077072,32969518,33897354 +Mozambique,MOZ,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,8278278718.48866,9479044180.91743,9881984468.5871,11720838954.7132,13070829037.8225,14053608879.6743,15488934576.6718,17345628424.1837,18996564641.9424,20815844060.5595,22279524665.868,24715322984.1468,26066138542.9058,27806242133.5958,29727275562.9116,34338892389.5711,36965162205.9554,35096315869.7912,37731982367.7525,40763725957.9603,42579645404.5992,45234468974.9853,47628202542.7189,51167958241.4186 +Myanmar,MMR,"Population, total",SP.POP.TOTL,45538332,46014826,46480230,46924293,47338446,47724471,48088274,48445647,48729486,49015836,49390988,49794522,50218185,50648334,51072436,51483949,51892349,52288341,52666014,53040212,53423198,53798084,54179306,54577997 +Myanmar,MMR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,42948884475.7404,48865087218.0343,55618337128.9487,64573625967.1788,75297523707.0117,88210706187.2939,102832915571.794,118294492401.548,132934415393.715,147876628022.074,164099830162.311,176855940964.757,184018884775.18,201687488747.346,211662088194.259,219735640703.33,223681170227.684,236493477301.516,283679471737.098,310809770322.19,298600993353.129,272012558750.939,303476081657.177,316570701537.76 +Namibia,NAM,"Population, total",SP.POP.TOTL,1819141,1856402,1888525,1915425,1939406,1962865,1986558,2011492,2038552,2067919,2099271,2132340,2167470,2204510,2243001,2282704,2323352,2364534,2405680,2446644,2489098,2530151,2567012,2604172 +Namibia,NAM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9373814013.20489,9617827260.69006,10409298258.4471,11433359082.4273,12738599653.6306,13087782248.1168,14559714773.5449,15407237330.5426,16149522618.4527,16257911536.3055,17075698856.2427,18530827058.6351,19727360420.0761,21790749740.3594,23827477872.8044,24809465414.0739,24391252952.4007,24338464104.0801,24458424743.3071,24844901951.7511,25419362967.3688,26257533217.8186,29580507043.9665,31688755620.7006 +Nauru,NRU,"Population, total",SP.POP.TOTL,10377,10363,10351,10344,10335,10318,10294,10267,10243,10233,10241,10283,10444,10694,10940,11185,11437,11682,11924,12132,12315,12511,12668,12780 +Nauru,NRU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,51579107.793219,49300805.4348856,44953260.317384,45865711.0570922,45640255.9437806,42585204.7344841,40118285.5139233,39897722.5108972,64977509.8741911,65896465.0675703,68052735.4363691,82081790.6299374,100782916.493925,111349850.495583,128327315.507202,149784405.520387,156983060.67136,152690833.065861,148678151.933161,172938229.650116,189182975.290097,213295843.192006,253612134.529827,275685182.325342 +Nepal,NPL,"Population, total",SP.POP.TOTL,24559500,24956071,25332178,25682908,26003965,26285110,26518971,26713655,26881544,27026941,27161567,27266399,27330694,27381555,27462106,27610325,27861186,28183426,28506712,28832496,29348627,30034989,30547580,30896590 +Nepal,NPL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,32433168227.8577,34771304300.635,35171978174.2658,37279215909.522,40003475240.7436,42946440134.4035,45979485346.5839,48963981859.9787,52929500266.2193,55788374496.3843,58937730343.859,62039011556.5258,68371158317.2259,73826857179.739,81460782940.7259,83445512808.502,84283663269.3559,101989475099.996,111813669660.341,122315293663.124,124139939433.761,134717047770.225,152390463470.797,161968127357.747 +Netherlands,NLD,"Population, total",SP.POP.TOTL,15925513,16046180,16148929,16225302,16281779,16319868,16346101,16381696,16445593,16530388,16615394,16693074,16754962,16804432,16865008,16939923,17030314,17131296,17231624,17344874,17441500,17533044,17700982,17879488 +Netherlands,NLD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,504588196582.128,518887776326.289,540563881522.496,546745806373.534,574401801343.296,603444951116.828,665626817108.431,711919944558.397,726499365987.438,708656256888.217,741653535379.551,775272257539.785,783223840622.604,821573457150.518,821940707073.954,843205617930.364,868877663907.632,932892667646.87,992691313902.726,1038037139219.29,1030310445717.46,1205841734661.19,1307176218118.05,1390099041310.44 +New Caledonia,NCL,"Population, total",SP.POP.TOTL,213230,217324,221490,225296,228750,232250,235750,239250,242750,245950,249750,254350,259000,263650,268050,269460,270220,270810,271170,271240,271080,270390,269215,267940 +New Caledonia,NCL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +New Zealand,NZL,"Population, total",SP.POP.TOTL,3857700,3880500,3948500,4027200,4087500,4133900,4184600,4223800,4259800,4302600,4350700,4384000,4408100,4442100,4516500,4609400,4714100,4813600,4900600,4979200,5090200,5111300,5117200,5223100 +New Zealand,NZL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,78230332023.8421,82972059285.8351,87388918161.2594,92011899588.8625,96803760859.1622,99289902280.1303,108301879660.678,115139841793.801,117838558699.25,126604880017.448,129052293714.616,136867182846.933,139367433749.972,154650931998.321,161671513746.504,167066753088.942,182232853669.098,195466117477.859,200715617049.644,219249356667.996,226068855691.744,239816617368.044,259816826880.07,275518006640.572 +Nicaragua,NIC,"Population, total",SP.POP.TOTL,5123222,5192764,5259006,5323062,5386223,5454678,5529811,5607453,5687744,5770639,5855734,5942553,6030607,6119379,6208676,6298598,6389235,6480532,6572233,6663924,6755895,6850540,6948392,7046310 +Nicaragua,NIC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,13537811413.9699,14168948102.213,14584614286.4266,15281966955.1733,16596798666.4378,18024064022.8407,19190069948.7922,20828945869.4671,21971605877.5183,21284802014.9596,22545225953.6071,24473869693.8157,25552309382.6757,26816249557.1274,29584383540.2533,32223045253.7455,34912866360.2457,37290894727.143,36083566006.5308,37355211731.4205,38423819327.3478,44107117289.1581,48555711783.8313,53836025341.7282 +Niger,NER,"Population, total",SP.POP.TOTL,11622665,12031430,12456517,12900790,13366885,13855221,14365168,14897873,15455175,16037915,16647543,17283112,17954407,18653199,19372014,20128124,20921743,21737922,22577058,23443393,24333639,25252722,26207977,27202843 +Niger,NER,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9168254801.98576,10094809048.6541,10800202773.2816,11219173165.0307,11717481605.5831,12984106884.6412,14172249786.4,14964102495.1313,16364354636.0778,16799401492.5866,18464619758.7215,19437967993.4845,21425272717.8656,21898764982.4146,23319628812.459,24526792101.967,25380000723.662,26858408246.0591,29566091896.6705,34056613145.2013,33981628782.8295,39562480948.6793,42388397177.6747,47564993359.8863 +Nigeria,NGA,"Population, total",SP.POP.TOTL,122851984,126152678,129583026,133119801,136756848,140490722,144329764,148294028,152382506,156595758,160952853,165463745,170075932,174726123,179379016,183995785,188666931,193495907,198387623,203304492,208327405,213401323,218541212,223804632 +Nigeria,NGA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,596971644308.629,645418060172.643,705686028138.378,757020089798.698,794626725097.999,855954005847.969,943774921301.309,963979037607.998,966395103971.023,978425665305.604,1013944481505.9,1101660228737.95,1133036228883.97,1176731939031.04,1290242087535.56,1386819967340.05 +North Macedonia,MKD,"Population, total",SP.POP.TOTL,2026350,2034882,2020157,2022725,2016186,2005330,1994287,1982933,1971493,1958782,1946298,1937398,1929821,1922716,1917557,1912430,1906313,1898657,1889051,1876262,1856124,1837114,1831712,1811980 +North Macedonia,MKD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,12235981983.7132,12224092735.5213,13019999571.0227,13206146640.917,14487124048.5585,15708049465.8265,17658873720.0253,18220746816.745,21276453356.8888,22416339858.1171,23016676321.2131,23633394183.438,24025549684.8559,25645896514.0356,27254374874.8057,27844023686.9943,30124102107.8391,31290099489.911,33407585370.3795,36190754879.3615,35645960261.0101,39295355334.512,42358441880.4717,42598269649.9332 +Northern Mariana Islands,MNP,"Population, total",SP.POP.TOTL,80338,79479,77162,74623,71898,69025,66060,63050,60032,57056,54087,52520,52359,52141,51856,51514,51133,50729,50304,49858,49587,49481,49551,49796 +Northern Mariana Islands,MNP,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +Norway,NOR,"Population, total",SP.POP.TOTL,4490967,4513751,4538159,4564855,4591910,4623291,4660677,4709153,4768212,4828726,4889252,4953088,5018573,5079623,5137232,5188607,5234519,5276968,5311916,5347896,5379475,5408320,5457127,5519594 +Norway,NOR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,163830927477.846,170849498916.869,173175417617.617,177593028665.832,196325286226.092,224191811756.846,253589308547.793,263770588555.098,294675606293.558,270091881720.957,287721553520.552,312318997271.307,332876807067.766,345878977543.121,351471225067.786,328161968226.379,323801372250.271,353252620814.927,388270908625.93,390971476883.823,375947767305.317,490810183104.791,698614361619.723,600501636984.938 +Oman,OMN,"Population, total",SP.POP.TOTL,2344253,2374653,2403659,2431600,2468855,2515192,2560649,2605700,2651028,2697537,2881914,3206870,3535579,3816680,4009267,4191776,4398070,4541854,4601157,4602768,4543399,4520471,4576298,4644384 +Oman,OMN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,89310985670.3564,95312291193.8456,95398172277.482,96667181074.2271,101382231771.881,105534778047.15,116183077668.012,124510556806.351,134110846444.252,141213652013.379,145066443523.987,152594727697.303,168179904479.811,173761387240.677,168864988397.236,146561768216.207,142341849066.736,147029898884.742,164353381082.61,159666654291.696,147905487161.61,164060182234.417,181920881549.279,191737776564.324 +Pakistan,PAK,"Population, total",SP.POP.TOTL,154369924,159217727,163262807,166876680,170648620,174372098,178069984,181924521,185931955,190123222,194454498,198602738,202205861,205337562,208251628,210969298,213524840,216379655,219731479,223293280,227196741,231402117,235824862,240485658 +Pakistan,PAK,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,389228935491.976,411712591003.2,428324905844.711,462262328459.741,513425120597.12,568205137168.862,621145707275.721,664314388209.436,691507755845.845,716906796124.598,741675056629.05,780110472311.759,829442458507.519,868512882264.327,910654119428.137,958594455887.133,1002030923785.33,1053571682444.36,1112712584866.28,1142342134518.61,1164737809098.56,1269115520015.63,1421254274650.47,1468453316388.51 +Palau,PLW,"Population, total",SP.POP.TOTL,19726,19828,19851,19880,19907,19831,19619,19366,19102,18826,18540,18240,17946,17805,17796,17794,17816,17837,17864,17916,17972,18024,18055,18058 +Palau,PLW,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,181416761.132525,198351184.491909,208910422.038106,211904665.550661,228943971.536135,243370851.183967,250678649.949042,259755646.645623,251927189.416686,244370647.481335,244625083.316418,261337672.95759,263754378.83339,263626700.16438,278536251.832555,305695887.0918,309437499.144099,313908519.927385,321080979.709565,335774760.429949,324066484.22976,296419538.090799,307057790.001301,323945537.208715 +Panama,PAN,"Population, total",SP.POP.TOTL,3001731,3061024,3120990,3181608,3243311,3305868,3368573,3431614,3495276,3559343,3623617,3688674,3754862,3821556,3888793,3957099,4026336,4096063,4165255,4232532,4294396,4351267,4408581,4468087 +Panama,PAN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,25100572606.143,25769623165.4032,27463250084.4411,28088286876.3675,30730488651.7383,33857553403.2627,37903852199.5744,44175344804.8986,49412920921.13,50671320968.6738,52889768604.7551,61551447498.5406,68925580163.7775,79227797553.7837,87418109697.7701,101784571753.037,114064693370.072,129596860923.521,126754891218.281,130798959018.779,111162359498.103,127104736182.117,153153139358.133,170288287416.004 +Papua New Guinea,PNG,"Population, total",SP.POP.TOTL,5508297,5698489,5892596,6090980,6293166,6498818,6708217,6921066,7137988,7358890,7583269,7806637,8026545,8245627,8464153,8682174,8899169,9114796,9329227,9542486,9749640,9949437,10142619,10329931 +Papua New Guinea,PNG,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,11678066772.4834,11776914105.9558,11986402944.232,12155621536.2635,13009540170.2075,14503193183.0985,14968703604.4084,16985213695.9093,17574939528.8593,18532985133.5567,20629758721.2368,20754466387.4553,23192790933.0815,23731925819.9148,29311938639.5397,29946982773.4623,32645060535.2051,34329618592.001,34733080335.8059,36311391860.5723,37117788445.699,37983694549.6858,42166128256.9496,44783709855.0817 +Paraguay,PRY,"Population, total",SP.POP.TOTL,5123819,5211541,5286512,5353254,5416324,5476878,5534675,5590145,5645148,5702574,5768613,5843939,5923322,6005652,6090721,6177950,6266615,6355404,6443328,6530026,6618695,6703799,6780744,6861524 +Paraguay,PRY,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,30935913808.3668,31981232459.5391,33402838213.3074,32970620179.6806,35895113341.0811,38038628098.7397,42493229581.9357,48187467736.1808,52706440454.1151,52659741085.188,59237711010.6733,63692111754.9837,61792116217.6259,69559070542.3772,73557114854.7328,75028450946.5401,80254667250.4518,85525902667.2573,87728090200.2225,89370904878.7433,91262049579.3561,99405231283.4861,106831712487.21,116016702117.104 +Peru,PER,"Population, total",SP.POP.TOTL,26654439,27014909,27334503,27623341,27893911,28147267,28381078,28600387,28806185,29009326,29229572,29477721,29749589,30038809,30353951,30711863,31132779,31605486,32203944,32824861,33304756,33715471,34049588,34352719 +Peru,PER,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,130320118488.575,134915860698.653,143681856398.453,151068404041.462,159662111478.289,172881030859.113,187817726713.946,210137698643.486,235853398548.183,241634129587.767,261771478392.681,283964927266.9,297858524523.237,319314844327.668,331161563195.873,341221818441.071,357007419043.172,376288145636.399,396588299787.945,424210791478.035,401588174409.725,467527125315.739,519360112446.252,544902516961.986 +Philippines,PHL,"Population, total",SP.POP.TOTL,77958223,79626086,81285572,82942837,84607501,86261250,87901835,89561377,91252326,92946951,94636700,96337913,98032317,99700107,101325201,103031365,104875266,106738501,108568836,110380804,112190977,113880328,115559009,117337368 +Philippines,PHL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,293249094180.012,309412723171.316,325773146575.038,348713319404.662,381324283577.651,414348664419.89,447531084238.914,488650957750.789,521548089212.141,542980229875.281,588149337391.49,621050497550.466,677865360879.814,727012054867.703,774057925359.675,809030313771.877,875506408874.695,933224662156.71,1012413782777.82,1087837562042.84,993342345811.405,1037456879371.22,1221447685848.5,1400619425969.95 +Poland,POL,"Population, total",SP.POP.TOTL,38258629,38248076,38230364,38204570,38182222,38165445,38141267,38120560,38125759,38151603,38042794,38063255,38063164,38040196,38011735,37986412,37970087,37974826,37974750,37965475,37899070,37747124,36821749,36685849 +Poland,POL,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,406646615015.388,424094328828.135,449791781841.821,464999043985.003,493830304268.923,519899121597.563,562973394780.985,618737911481.698,683247541176.707,711280320948.25,768253424828.281,831848026894.279,863766084241.563,891530579525.495,925613787686.558,980763303941.497,1027975990900.51,1089434780039.24,1164972380872.85,1291033506676.55,1324285825328.7,1458142001138.85,1652620365495.51,1738300107276.95 +Portugal,PRT,"Population, total",SP.POP.TOTL,10289898,10362722,10419631,10458821,10483861,10503330,10522288,10542964,10558177,10568247,10573100,10557560,10514844,10457295,10401062,10358076,10325452,10300300,10283822,10286263,10297081,10361831,10409704,10525347 +Portugal,PRT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,191114906691.355,198920066184.198,208897263871.468,215902948817.487,222347620568.886,235520718575.134,252340235253.687,263568846552.337,272098077805.794,270275641270.874,279023890056.64,278041334782.043,271411027125.957,288230115471.542,292835641286.096,298988604095.756,318436286348.298,332380808701.934,350426662255.11,379173450617.138,363656551495.445,397843581726.434,456708438348.519,503637964294.551 +Puerto Rico,PRI,"Population, total",SP.POP.TOTL,3810605,3818774,3823701,3826095,3826878,3821362,3805214,3782995,3760866,3740410,3721525,3678732,3634488,3593077,3534874,3473232,3406672,3325286,3193354,3193694,3281557,3262693,3220113,3205691 +Puerto Rico,PRI,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,58674261923.4403,60473127447.1598,61279104366.7079,63042752104.4011,71590383834.1124,73327078412.5301,75560874284.515,78383621189.0498,77521461566.0748,75381633781.0765,75232928043.8392,76671237933.7387,78726304482.8214,78884732202.6228,77982108386.8448,76936606041.6484,75279386784.2397,72551408524.386,74270167519.7108,80518631938.3099,82512343294.8425,91214417323.8454,101375978454.857,105764875096.319 +Qatar,QAT,"Population, total",SP.POP.TOTL,645937,678831,713186,748525,777943,848710,1015060,1231893,1444277,1610274,1713504,1804171,1905660,2035501,2214465,2414573,2595166,2711755,2766732,2807235,2760385,2688235,2695122,2716391 +Qatar,QAT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,52790736695.5236,58437710851.476,63196935244.9417,68849289306.4943,79745576520.046,82918414410.3937,117058583741.356,141959664114.242,169266959963.396,183061736057.13,219822246587.246,261273736298.264,291431689891.229,307354935114.245,304895573775.523,235124892587.594,221149622703.867,252289766909.688,278164070957.121,276570054142.864,224698313877.286,288156263217.733,314969229722.961,.. +Romania,ROU,"Population, total",SP.POP.TOTL,22442971,22131970,21730496,21574326,21451748,21319685,21193760,20882982,20537875,20367487,20246871,20147528,20058035,19983693,19908979,19815616,19702267,19588715,19473970,19371648,19265250,19122059,19047009,19056116 +Romania,ROU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,130439748386.373,143508433966.727,157071015753.935,159295942227.661,184761917791.054,198697015296.524,236748040585.641,276902682595.192,337087939954.94,334437336838.488,347259905916.347,374216381950.368,390745233948.606,387429499104.603,408800666658.28,423969385432.06,464612858198.881,520182250826.792,565244639624.825,640662089555.238,650699909801.76,711498306960.858,793992459334.131,888342340482.918 +Russian Federation,RUS,"Population, total",SP.POP.TOTL,146596869,145976482,145306497,144648618,144067316,143518814,143049637,142805114,142742366,142785348,142849468,143018195,143378447,143805638,144237223,144640716,145015460,145293260,145398106,145453291,145245148,144746762,144236933,143826130 +Russian Federation,RUS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,974627421657.533,1059732182384.88,1145642785078.87,1297686739867.8,1441505486230.11,1655585780406.94,2071121544063.66,2324720237537.22,2797648415306.51,2678612196779.7,2836588557956.18,3163098238376.85,3373665030002.67,3611852783396.68,3639325111273.82,3428609968105.43,3440587138811.77,3705398029014.95,4128705266499.84,4434790959252.21,4542377364596.63,5598675743006.8,5884374758687.5,6366121121540.42 +Rwanda,RWA,"Population, total",SP.POP.TOTL,8109989,8223941,8372306,8567992,8791853,9026299,9270066,9523168,9781996,10043737,10309031,10576932,10840334,11101350,11368451,11642959,11930899,12230339,12531808,12835028,13146362,13461888,13776698,14094683 +Rwanda,RWA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,4967607205.28129,5488171342.87854,6319814063.89747,6555956757.23249,7235124267.9208,8201705961.57637,9238401084.79936,10260801060.735,11591928019.3909,12400474663.54,13446189332.9413,14816777136.2309,15542480425.6114,16494767424.9221,18630084957.0604,20336103780.8734,21638074890.2435,23256618059.139,25585519670.0498,28841852803.0148,29159516515.3173,35729411965.4565,41340075652.3457,46432317941.4369 +Samoa,WSM,"Population, total",SP.POP.TOTL,184008,185530,186630,187440,188073,188626,189379,190478,191787,193176,194672,196351,198124,199939,201757,203571,205544,207630,209701,211905,214929,218764,222382,225681 +Samoa,WSM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,524462921.615862,571104617.300607,609234920.006948,651797433.29731,692696281.584541,758997654.47418,801505922.869171,832438511.065805,879469007.942614,894426124.837551,979844003.823914,1029666341.52497,1012632571.26462,1031256485.459,1052915834.04881,1123777861.52352,1222113563.30202,1252274039.13545,1268070469.39909,1338293410.36241,1319416997.4535,1310523086.50156,1311563715.90252,1488754127.67514 +San Marino,SMR,"Population, total",SP.POP.TOTL,26823,27335,27969,28601,29093,29508,29959,30372,30700,31059,31608,32495,33132,33285,33389,33570,33834,34056,34156,34178,34007,33745,33660,33642 +San Marino,SMR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,1643833835.14517,1712107011.99186,1822926993.08252,1733083589.83558,1991681300.20018,..,.. +Sao Tome and Principe,STP,"Population, total",SP.POP.TOTL,143714,146258,149841,153762,157697,161680,165725,169845,174004,178128,182138,186044,189924,193757,197497,201124,204632,208036,211344,214599,218641,223107,227380,231856 +Sao Tome and Principe,STP,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,241959931.013884,266283329.458763,280156317.962844,314068154.246298,333117075.92894,368382626.116156,431448013.692279,463214580.565822,486753100.362701,505405854.899538,518684095.397956,540005522.973479,508449785.946617,575497917.00033,653863304.982549,643279378.970774,684071718.997649,710351814.097463,832263715.078026,992344496.15062,1129943811.73883,1279059010.2467,1389328185.17379,1423452902.44038 +Saudi Arabia,SAU,"Population, total",SP.POP.TOTL,21547390,22085929,22623415,23150847,23661808,24397644,25382870,26400068,27437353,28483797,29411929,30150945,30821543,31482498,32125564,32749848,33416270,34193122,35018133,35827362,35997107,35950396,36408820,36947025 +Saudi Arabia,SAU,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,824538445021.638,828450861068.221,819009665972.217,924497920929.203,1033031159022.79,1132377532102.82,1214879283246.27,1281744910914.01,1390678530378.7,1377640913764.63,1451260715038.93,1637631059206.58,1724076255499.07,1730115398814.02,1777121694348.8,1602070072581.17,1527985698121.1,1613589078123.05,1728663002193.39,1705657616338.56,1455468400659.94,1742116655898.85,1992358478007,2042886394782.38 +Senegal,SEN,"Population, total",SP.POP.TOTL,9704287,9938027,10180950,10434504,10698691,10974057,11263387,11563869,11872929,12195029,12530121,12875880,13231833,13595566,13970308,14356181,14751356,15157793,15574909,16000781,16436120,16876720,17316449,17763163 +Senegal,SEN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,19274859989.2334,20623928317.108,20903328535.5497,22595945841.3389,24324904516.9509,26190711931.6336,27703166415.6953,29262375611.5959,31006251401.1533,31808483924.8977,33328572975.1545,34243503559.0008,36165936197.5421,37314338404.2991,39594995692.1284,42560017611.5905,45403355545.6457,48652498383.8586,52394600460.3776,58098880445.5371,61959888215.683,70041413822.1288,77305892670.4465,82990431874.4904 +Serbia,SRB,"Population, total",SP.POP.TOTL,7516346,7503433,7496522,7480591,7463157,7440769,7411569,7381579,7350222,7320807,7291436,7234099,7199077,7164132,7130576,7095383,7058322,7020858,6982604,6945235,6899126,6834326,6664449,6618026 +Serbia,SRB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,45245875416.3818,48674569308.2167,54986185231.626,56853829401.1922,62821160799.4504,66753889324.238,73440504983.8557,80384035878.6986,90296709901.4714,90406686490.4973,91314221702.4458,95619470357.1583,96991075410.4447,100689416501.831,100536528424.29,100984498448.404,105748976401.135,109066443469.403,117394683157.246,129346767870.272,134221503683.005,148328221778.131,158699780567.131,171275135497.207 +Seychelles,SYC,"Population, total",SP.POP.TOTL,81131,81202,83723,82781,82475,82858,84600,85033,86956,87298,89770,87441,88303,89949,91359,93419,94677,95843,96762,97625,98462,99258,119878,119773 +Seychelles,SYC,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1130167473.74866,1155500399.54517,1108029863.83739,1103633145.77112,1180221151.95694,1326141184.00715,1494943018.483,1546346486.53945,1509958841.34658,1506426489.69052,1610456214.97919,1772093986.20476,1960246710.85199,1897708187.48859,2138219523.42142,2238093886.9499,2537899307.22492,2741787451.90111,2956999275.75848,3207157759.07942,2949262321.11593,2851007347.51214,3549478276.10666,3885105447.41763 +Sierra Leone,SLE,"Population, total",SP.POP.TOTL,4584067,4857096,5140113,5350907,5533329,5683334,5809774,5939163,6090860,6259842,6436698,6612385,6788587,6964859,7140688,7314773,7493913,7677565,7861281,8046828,8233970,8420641,8605718,8791092 +Sierra Leone,SLE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3035478119.60822,2967858789.41815,3814619709.13618,4269711255.97876,4660583660.51564,5019438033.45795,4697179418.59341,6428957144.0298,7147236506.79546,7423756595.13737,7353438322.6137,8157133364.73393,8501251339.51274,11826601642.1408,12098720070.4645,11222500534.7381,11956765879.6915,11750059717.2993,12638570824.0083,12900505425.2348,12818476666.7934,13517868447.9945,17619280249.7379,18729085654.3353 +Singapore,SGP,"Population, total",SP.POP.TOTL,4027887,4138012,4175950,4114826,4166664,4265762,4401365,4588599,4839396,4987573,5076732,5183688,5312437,5399162,5469724,5535002,5607283,5612253,5638676,5703569,5685807,5453566,5637022,5917648 +Singapore,SGP,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,175268013287.852,177193005501.016,184518919785.967,195379502324.174,212892598202.186,236722407661.33,274306788419.316,307413398857.702,315740166763.797,313112452689.649,378652526076.435,400707778808.442,416795638280.343,424444387608.882,446405425660.506,449493482173.023,472655777910.407,499488735790.67,514177310290.45,532198398665.491,498956695159.263,611569622317.811,646128798247.723,702497640916.946 +Sint Maarten (Dutch part),SXM,"Population, total",SP.POP.TOTL,30519,30600,30777,31472,32488,33011,33441,33811,33964,34238,34056,33435,34640,36607,37685,38825,38992,38615,38934,39648,40350,40708,40888,41163 +Sint Maarten (Dutch part),SXM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,1180543993.46673,1231750282.92345,1317707579.32987,1208474211.58653,1270943038.59608,1545230062.86482,1621729461.34174,1672291522.08964,1700895534.97952,1616777663.83447,1780957398.67313,1555243075.40859,1644331569.32791,1931985205.91099,.. +Slovak Republic,SVK,"Population, total",SP.POP.TOTL,5388720,5378867,5376912,5373374,5372280,5372807,5373054,5374622,5379233,5386406,5391428,5398384,5407579,5413393,5418649,5423801,5430798,5439232,5446771,5454147,5458827,5447247,5431752,5426740 +Slovak Republic,SVK,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,61068851728.8457,66686471245.2877,71403065665.9981,72533312389.6553,78670568247.8493,87124402574.7501,98806218547.0944,110931675324.581,125448397000.54,123659537451.171,134086099810.225,136867227348.753,143538744049.058,150563501274.627,155526111839.015,159033054757.623,157244994972.118,160996632670.647,168173568111.087,180687280298.47,189412821771.043,199892836240.798,219305239952.863,236046226511.881 +Slovenia,SVN,"Population, total",SP.POP.TOTL,1988925,1992060,1994530,1995733,1997012,2000474,2006868,2018122,2021316,2039669,2048583,2052843,2057159,2059953,2061980,2063531,2065042,2066388,2073894,2088385,2102419,2108079,2111986,2120937 +Slovenia,SVN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,35720737078.6175,37726244824.5757,40019700455.6941,41688410267.5465,44820125301.9026,47268199660.7308,50969622117.5784,54373385886.2433,58273324402.9164,55234806574.1999,56240815974.6712,58585326217.6066,58814142549.4361,60918132745.7161,63069195484.7287,63252911986.9376,68303098564.2149,74079096867.6607,79621394544.1603,87910340468.0701,87930385133.4975,96849688632.7032,106218499825.305,114796697062.769 +Solomon Islands,SLB,"Population, total",SP.POP.TOTL,429978,440395,450760,461216,471785,482486,493430,504619,516001,527833,540394,553721,567763,582365,597375,612660,628102,643634,659249,674993,691191,707851,724273,740424 +Solomon Islands,SLB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,656384839.622055,623167564.482045,603749885.901154,662561793.396567,742190153.893539,820339387.778854,858390672.672538,889484891.464317,939179327.432576,974770712.646305,1106192078.92151,1186724881.69956,1266823328.57015,1428799825.59605,1449848713.84679,1477198591.6125,1553933823.3712,1648760504.39834,1745944710.49882,1810861607.46171,1832955724.63071,1943893906.55429,2117082505.92303,2281701666.7428 +Somalia,SOM,"Population, total",SP.POP.TOTL,8721465,9070747,9411103,9758281,10117354,10467292,10784973,11118092,11444870,11730037,12026649,12216837,12440326,12852485,13309235,13763906,14292847,14864221,15411094,15981300,16537016,17065581,17597511,18143378 +Somalia,SOM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,4032009965.48386,4424197773.36256,4841288936.83544,5320017687.32349,5859312138.08599,6482240937.56139,7125573453.20922,7818810297.12612,8514416754.26447,9152993017.63776,9898074812.25663,10793273465.8043,11491964572.5463,13933305068.5318,17087102044.8048,20939567520.1998,23450259056.2585,25689018025.8862,25105105084.7634,26909908425.3609,25725527931.9886,24842809046.0365,27238997154.6443,29124007258.0511 +South Africa,ZAF,"Population, total",SP.POP.TOTL,46813266,47229714,47661514,48104048,48556071,49017147,49491756,49996094,50565812,51170779,51784921,52443325,53145033,53873616,54729551,55876504,56422274,56641209,57339635,58087055,58801927,59392255,59893885,60414495 +South Africa,ZAF,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,373787910085.007,389844359470.499,413081290055.02,432866503905.2,467865145736.203,507867857471.698,552983064987.137,590847185616.239,622113835894.807,621517039622.91,648599592036.346,680230630915.234,680963469478.553,713352409326.522,724269722141.275,742544241132.529,754274960265.723,769863674637.028,760480399540.152,776309015614.189,755313451639.83,825653184141.607,899049777441.378,944347649539.9 +South Sudan,SSD,"Population, total",SP.POP.TOTL,6114440,6394431,6686100,6992367,7317118,7662654,8029517,8417823,8823888,9229227,9714419,10243050,10701604,11106031,11213284,11194299,11066105,10658226,10395329,10447666,10606227,10748272,10913164,11088796 +South Sudan,SSD,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,16038626934.766,14676725815.5323,20227303988.2094,13204928002.0715,11250917095.2722,..,..,..,..,..,..,..,.. +Spain,ESP,"Population, total",SP.POP.TOTL,40567864,40850412,41431558,42187645,42921895,43653155,44397319,45226803,45954106,46362946,46576897,46742697,46773055,46620045,46480882,46444832,46484062,46593236,46797754,47134837,47365655,47415794,47778340,48373336 +Spain,ESP,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,869475531139.789,924781744386.088,998316071948.184,1048022844438.12,1111703898688.16,1188490567999.29,1338662123200.75,1432781968851.91,1486151637639.11,1459365634157.13,1453923389037.89,1463308449873.9,1471787514964.55,1502464433906.34,1553280018841.75,1621468544092.43,1738407267476.24,1843464021723.47,1908195340915.93,2065307027780.4,1850440806564.68,2084375983565.8,2337160726317.79,2535604305507.88 +Sri Lanka,LKA,"Population, total",SP.POP.TOTL,18776371,18920275,19110707,19303180,19490431,19673866,19870706,20078655,20285643,20482477,20668557,20859743,21017147,21131756,21239457,21336697,21425494,21506813,21670000,21803000,21919000,22156000,22181000,22037000 +Sri Lanka,LKA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,82998500049.3815,83551250544.1042,88417349148.2586,96019985600.8431,103896348082.244,113615616614.418,125938303603.443,138477890240.296,147898363152.628,155708277788.507,170101296362.23,188834948123.676,213230849808.612,226365994952.001,238195143260.728,250313654826.867,270463171138.21,284824376597.867,299440686928.26,299168527010.653,275981956534.103,310064862520.078,306326073445.561,308229400450.266 +St. Kitts and Nevis,KNA,"Population, total",SP.POP.TOTL,45461,45986,46264,46431,46580,46725,46874,47015,47156,47286,47403,47581,47727,47767,47789,47790,47788,47785,47761,47712,47642,47606,47657,47755 +St. Kitts and Nevis,KNA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,640699518.439903,686869239.775631,704241030.110585,679392930.063477,738726186.373964,847388084.699446,914548014.927757,950231283.47407,1077931376.02002,1048051869.54879,1068255093.3658,1110245488.06901,1072546689.83836,1140159464.19692,1182351038.85391,1182284611.32753,1253540048.54963,1331898479.80777,1388844330.04125,1502935668.83167,1247010453.26066,1212062713.3914,1445242546.85772,1553978485.76851 +St. Lucia,LCA,"Population, total",SP.POP.TOTL,159500,160594,161799,163047,164239,165386,166470,167518,168576,169688,170935,172145,173124,173978,174804,175623,176413,177163,177888,178583,179237,179651,179857,180251 +St. Lucia,LCA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1406656797.51302,1382286937.50752,1427885722.4479,1500568717.40943,1629914226.51391,1675597603.77135,1875210354.73842,1942401909.5921,2079754010.02657,2071416868.8257,2115508472.97849,2285087851.94366,2265432762.39186,2373331423.96271,2356562850.28113,2301852708.5777,2529283874.22783,2677751402.33838,2932810808.38351,3120388629.29894,2592763761.58399,3213675038.87318,3879462592.46007,4142299749.01515 +St. Martin (French part),MAF,"Population, total",SP.POP.TOTL,29610,30387,31160,31929,32697,33452,34183,34887,35541,36132,36458,36350,36026,35639,35261,35020,34811,34496,33852,33121,32553,31948,31791,32077 +St. Martin (French part),MAF,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +St. Vincent and the Grenadines,VCT,"Population, total",SP.POP.TOTL,113813,113641,113450,113108,112608,112043,111427,110824,110316,109840,109308,108703,108083,107450,106912,106482,105963,105549,105281,104924,104632,104332,103948,103698 +St. Vincent and the Grenadines,VCT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,703669088.831018,739451209.288426,790699695.223743,850203738.050087,901985552.715775,956340176.479734,1067796501.75828,1144454266.57262,1172642565.58493,1179182171.4021,1141518112.51624,1156723256.63846,1188595012.74152,1250938745.56191,1250992489.36819,1290910378.34456,1420978451.57082,1426571841.05226,1538287353.31461,1595210565.24756,1581588005.67577,1603601651.26015,1860564937.06071,2046746786.47327 +Sudan,SDN,"Population, total",SP.POP.TOTL,26298773,26947253,27570318,28188977,28831550,29540577,30332968,31191163,32065241,32948155,33739933,34419624,35159792,35990704,37003245,38171178,39377169,40679828,41999059,43232093,44440486,45657202,46874204,48109006 +Sudan,SDN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,84107534933.3662,92857415408.1124,99351987121.6296,107955200797.682,116428950924.502,127320483955.491,138911590408.582,151898042224.689,159348411532.173,158636593465.948,159717759545.003,158104726209.039,129629087527.525,131590285191.469,162242756359.859,164988525409.779,180697326856.387,174373823318.202,175324684144.682,169353844459.015,148139519745.498,150034487461.543,162106852498.184,149683295310.271 +Suriname,SUR,"Population, total",SP.POP.TOTL,478998,487394,495666,503780,510572,516220,522023,527946,533938,539987,546080,552146,558111,563947,569682,575475,581453,587559,593715,600301,607065,612985,618040,623236 +Suriname,SUR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,3451601619.73048,3450641101.95539,3866491004.05393,4194792255.45417,4657509879.09423,5105189776.12997,5553620214.40388,6117276733.50753,6536768111.08922,6744745563.65754,6999485314.18984,7287563034.49645,8213311704.42572,8967862426.68129,9421656542.14154,9597224750.10684,8081171611.20124,9285911189.84547,9666651250.04885,10748170090.6911,8717084040.70203,9865121681.0055,11345451016.6225,12049615801.6524 +Sweden,SWE,"Population, total",SP.POP.TOTL,8872109,8895960,8924958,8958229,8993531,9029572,9080505,9148092,9219637,9298515,9378126,9449213,9519374,9600379,9696110,9799186,9923085,10057698,10175214,10278887,10353442,10415811,10486941,10536632 +Sweden,SWE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,262969398201.851,266516796088.261,276807254992.88,289823086052.03,306237363540.222,313423457846.89,351498729410.401,385499971648.852,402088350522.486,383311719545.437,406667691093.788,430123918452.671,442391061204.645,454602118873.682,467164180301.636,485242506451.325,503532637709.624,531738212907.978,555475423141.82,606037850586.233,618898607997.332,687855614198.63,747020866103.834,769089656341.119 +Switzerland,CHE,"Population, total",SP.POP.TOTL,7184250,7229854,7284753,7339001,7389625,7437115,7483934,7551117,7647675,7743831,7824909,7912398,7996861,8089346,8188649,8282396,8373338,8451840,8514329,8575280,8638167,8704546,8775760,8849852 +Switzerland,CHE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,280319182516.521,283525361284.3,288737709386.113,302158309982.66,314516531915.321,333621322369.716,370925053381.851,386124159150.376,384345570038.224,416124112903.5,448062844571.02,457549580035.177,483354670209.561,506846623597.975,518723984424.553,546014360068.232,560671216442.423,568390809833.244,580121823006.177,610317495274.777,609053946092.83,699042281986.936,780283122333.203,797154460445.374 +Syrian Arab Republic,SYR,"Population, total",SP.POP.TOTL,16307654,16727948,17164021,17611356,18084007,18583557,19432009,20703005,21474059,21827220,22337563,22730733,22605577,21495821,20072232,19205178,18964252,18983373,19333463,20098251,20772595,21324367,22125249,23227014 +Syrian Arab Republic,SYR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,60494040463.4225,65175302274.2389,68570667134.8987,69917978686.2897,59290128974.9971,..,.. +Tajikistan,TJK,"Population, total",SP.POP.TOTL,6272998,6408810,6541755,6672492,6801204,6929145,7057417,7188391,7324627,7468596,7621779,7784819,7956382,8136610,8326348,8524063,8725318,8925525,9128132,9337003,9543207,9750064,9952787,10143543 +Tajikistan,TJK,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,6238405598.86031,6954174223.73312,7933475023.37311,8872966274.91637,10234127708.0997,13327305791.9738,15621931570.7645,17987655286.1047,20042713656.8038,19444920897.7786,21656584503.3039,24502585880.9376,27409399954.782,31543702047.8648,32918855072.0252,30466253365.3751,29857833446.6067,31416268483.0043,33074065405.4157,38258488363.2035,41597998466.9622,47821764056.2135,60918891407.9783,64729682680.945 +Tanzania,TZA,"Population, total",SP.POP.TOTL,34463704,35414469,36353531,37333918,38360879,39439505,40562052,41716497,42870884,43957933,45110527,46416031,47786137,49253643,50814552,52542823,54401802,56267032,58090443,59872579,61704518,63588334,65497748,67438106 +Tanzania,TZA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,38402368619.751,41039964815.1037,45427738086.6997,49141128639.9612,54222177665.5577,59763616897.0973,66800557662.3655,72379221722.6936,78080116824.2636,82817900605.4664,88324028415.8717,97008341944.4487,94461349644.7409,101563701108.546,107402203290.726,115192473381.17,124715501759.383,131156681477.774,150284540045.946,168294388191.855,190837864398.182,209201578563.966,234111851781.387,255069002763.215 +Thailand,THA,"Population, total",SP.POP.TOTL,63066603,63649892,64222580,64776956,65311166,65821360,66319525,66826754,67328239,67813654,68270489,68712846,69157023,69578602,69960943,70294397,70607037,70898202,71127802,71307763,71475664,71601103,71697030,71801279 +Thailand,THA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,450215017876.453,472201144302.396,505261134859.749,549005821361.359,597617322419.567,641230650846.415,699410083432.605,759876291067.772,785895496694.133,786444493699.454,849734455557.681,890774204971.964,968420533274.246,994832050896.099,1023387629410.86,1056458871267.37,1125830947041.56,1194502077418.99,1282200842338.31,1375334366068.03,1342482305856.76,1401698798450.15,1546858138248.8,1642525166149.14 +Timor-Leste,TLS,"Population, total",SP.POP.TOTL,878360,893001,909639,926721,945989,969313,994564,1019362,1043076,1065540,1088486,1112976,1137676,1161555,1184830,1205813,1224562,1243235,1261845,1280438,1299995,1320942,1341296,1360596 +Timor-Leste,TLS,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1551856555.29902,1742846773.70569,2015236630.40361,1677286733.11378,1979802782.38626,2487183523.1913,3855822813.49732,5526216486.7535,8702670172.84929,6653559528.64419,7994229497.5491,10078657009.3812,10076095931.5459,8844710708.01899,7793802719.42242,6578267615.43151,5668256360.5954,6211331538.3341,6558960220.03077,9132034711.3333,10946142450.6146,10029375988.9164,7962187248.05544,7998724267.78825 +Togo,TGO,"Population, total",SP.POP.TOTL,5008035,5145426,5281538,5421001,5565218,5711597,5874240,6047537,6222482,6398624,6571855,6748672,6926635,7106229,7288383,7473229,7661354,7852795,8046679,8243094,8442580,8644829,8848699,9053799 +Togo,TGO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,6664309467.93575,6869170263.36921,7280796974.00878,7931734120.81386,8040395798.19016,7906917445.92635,8361092605.29604,8515355871.91402,9072897987.13101,9619553257.46016,10297138552.6749,11658920836.6867,11695835475.7121,12549583306.2144,13571220376.547,14735304716.119,15298598136.4649,16010175668.9109,17118607969.392,18802562036.3963,20550441120.8531,22932514788.177,26029685630.7885,28690366338.0993 +Tonga,TON,"Population, total",SP.POP.TOTL,102603,103210,103804,104410,105036,105633,106190,106638,106932,107144,107383,107611,107502,107089,106626,106122,105707,105415,105150,104951,105254,106017,106858,107773 +Tonga,TON,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,361666806.555625,380282871.587841,410916100.246655,422683853.30298,426006512.3752,434287968.371369,456043675.478015,468713237.112474,501018181.116754,484720830.722552,495129032.614712,537942935.82851,552715869.45952,561486786.232139,572671259.214531,586539552.148623,627892756.999854,682932706.761937,714895745.390234,745331032.881726,760748755.495586,760864597.408985,808005493.440989,.. +Trinidad and Tobago,TTO,"Population, total",SP.POP.TOTL,1332203,1338567,1345964,1353548,1361172,1369075,1376919,1384861,1392803,1401191,1410296,1420020,1430377,1440729,1450661,1460177,1469330,1478607,1504709,1519955,1518147,1525663,1531044,1534937 +Trinidad and Tobago,TTO,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,16995641277.6778,18415880523.8653,20355151199.0117,23579777694.2591,26981943972.4835,28955538728.3795,33704250728.9544,36541985828.9919,38537809094.6277,36723879792.037,38581140385.7325,36695932591.946,39263081573.9868,40445354389.6223,40894412126.5846,40173406190.5885,37694015768.8414,39061786706.5191,38949940544.2011,39459899666.3102,34546115997.8884,42000024372.7914,43703177258.5231,46659817865.7153 +Tunisia,TUN,"Population, total",SP.POP.TOTL,9893316,9995123,10094561,10193798,10292225,10388344,10483558,10580395,10680380,10784504,10895063,11032528,11174383,11300284,11428948,11557779,11685667,11811443,11933041,12049314,12161723,12262946,12356117,12458223 +Tunisia,TUN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,58760611387.0225,62443901885.9849,64275209090.1332,68856375091.004,74972519565.3749,79175679644.5046,86370580330.8146,94088604847.4617,99610522921.4005,103982581722.113,108552525386.594,108506651045.141,112158068407.436,113861016947.282,119235919556.792,119776016615.59,124009382893.001,128424124617.876,135938136878.139,144509085820.197,138016726344.346,145187702613.036,160186045310.307,165847822759.765 +Turkiye,TUR,"Population, total",SP.POP.TOTL,64113547,65072018,65988663,66867327,67785075,68704715,69601333,70158112,71051678,72039206,73142150,74223629,75175827,76147624,77181884,78218479,79277962,80312698,81407204,82579440,83384680,84147318,84979913,85326000 +Turkiye,TUR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,600126727131.97,581127480967.541,600837442135.404,629772678294.542,725692053777.694,806457796592.095,935136052035.433,1033389824183.78,1128303932337.83,1099319010672.58,1257916801543.56,1441544676539.26,1539087083568.66,1688340437674.14,1844207238271.65,1999739155423.19,2094055569387.91,2235991199656.06,2271021126049.7,2313728942831.87,2362957706995.93,2627527446787.04,3227873333822.59,3729106612705.12 +Turkmenistan,TKM,"Population, total",SP.POP.TOTL,4569132,4635094,4698968,4758988,4819792,4885775,4954029,5024894,5100083,5180957,5267970,5360811,5458682,5560095,5663152,5766431,5868561,5968383,6065066,6158420,6250438,6341855,6430770,6516100 +Turkmenistan,TKM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,18589275076.4156,20159765318.5958,20497704383.8706,21805515298.0785,23417451278.3161,25808409464.638,29793406939.5442,35147807279.9543,40034744110.863,42358284831.1538,45734479579.0919,52789503109.1211,58031578711.0637,63559766532.2189,68969960120.1894,74409400939.6171,80024241583.6647,82817503585.5768,91601912933.5642,103809062577.57,..,..,..,.. +Turks and Caicos Islands,TCA,"Population, total",SP.POP.TOTL,18744,19578,20598,21739,22869,23995,25128,26268,27422,28581,29726,30816,32081,33594,34985,36538,38246,39844,41487,43080,44276,45114,45703,46062 +Turks and Caicos Islands,TCA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,739050132.138361,820209533.010638,941016414.467735,1033897122.47686,1109068403.51855,1127329019.71902,731473889.868452,963579029.216529,1087381250.76278,1094640506.9897 +Tuvalu,TUV,"Population, total",SP.POP.TOTL,9638,9621,9609,9668,9791,9912,10030,10149,10272,10408,10550,10700,10854,10918,10899,10877,10852,10828,10865,10956,11069,11204,11312,11396 +Tuvalu,TUV,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,37736063.1192288,45816931.4918815,56994502.0054265,40679042.6249022,44955066.910281,44711835.3771088,45534591.2781712,53935546.0191136,53640855.8128305,54656541.0045313,50081647.0478766,50859234.0143498,44307529.4288031,55458349.4637476,48650903.719173,63572213.6821608,63704130.8761865,63316269.2538537,68611471.8618072,73122594.8766427,72357925.9658811,76355973.28525,82228117.099798,88815019.3802593 +Uganda,UGA,"Population, total",SP.POP.TOTL,24020697,24763325,25545090,26354736,27146084,27946588,28773227,29629804,30509862,31412520,32341728,33295738,34273295,35273570,36336539,37477356,38748299,40127085,41515395,42949080,44404611,45853778,47249585,48582334 +Uganda,UGA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,26691305504.6722,28463850419.7111,31613732908.7085,34344913233.6575,37520856143.7905,41085455103.5542,47053810366.6455,52582488733.0262,58301458170.7721,62342139983.4076,66623634145.9674,74468592859.5027,68297945479.2269,70655723558.0964,75889780165.6843,80598864466.3894,82538604596.4604,84660987164.7704,93398920363.0786,102258138393.918,110271411316.874,120570399029.427,135063688962.534,147542171373.843 +Ukraine,UKR,"Population, total",SP.POP.TOTL,49176500,48662400,48202470,47812949,47451626,47105171,46787786,46509355,46258189,46053331,45870741,45706086,45593342,45489648,45272155,45167350,45038236,44880758,44690584,44474512,44207754,43848986,38000000,37000000 +Ukraine,UKR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,196223860085.585,221441200319.876,237061600465.157,265327384212.615,305529918793.964,324318891886.627,357151863087.731,400085858337.625,413855748777.054,351982871965.833,378104057626.56,401845866680.09,436604653738.995,495612646110.555,453348694759.919,449239721496.96,474782135855.741,503730262075.806,542425697722.942,611906063612.544,670442390848.845,724798384656.187,599042781039.902,640411381848.87 +United Arab Emirates,ARE,"Population, total",SP.POP.TOTL,3275333,3454198,3633655,3813443,3993339,4280993,4898954,5872624,6988685,7992644,8481771,8575205,8664969,8751847,8835951,8916899,8994263,9068296,9140169,9211657,9287289,9365145,9441129,9516871 +United Arab Emirates,ARE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,334594122724.095,346987898802.642,346973144730.906,381592358860.962,431585373969.705,471927153761.695,537150991846.144,575477788657.268,593324187753.953,564707689869.438,574646935217.908,623377589226.114,646069195486.686,658627786466.353,688135750494.391,612870643123.899,608359854188.369,632044516427.951,704008181953.256,729835529577.475,611081607571.746,644231414365.766,741391655225.445,797034442727.789 +United Kingdom,GBR,"Population, total",SP.POP.TOTL,58892514,59119673,59370479,59647577,59987905,60401206,60846820,61322463,61806995,62276270,62766365,63258810,63700215,64128273,64602298,65116219,65611593,66058859,66460344,66836327,67081234,67026292,67791000,68350000 +United Kingdom,GBR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,1566721834094.61,1659267333547.4,1747018671444.33,1829059841342.84,1938768863946.96,1997217429153.26,2105208674327.92,2158487724182.28,2241113253554.63,2162798164750.02,2291205130103.48,2364606289621.73,2419711701542.4,2516786815639.89,2619024574625.88,2706922667067.12,2824431493908.68,3009161540809.9,3087113247658.17,3332512524919.19,3151686596903.17,3561212970773.6,3866883376122.45,3974002798845.69 +United States,USA,"Population, total",SP.POP.TOTL,282162411,284968955,287625193,290107933,292805298,295516599,298379912,301231207,304093966,306771529,309327143,311583481,313877662,316059947,318386329,320738994,323071755,325122128,326838199,328329953,331526933,332048977,333271411,334914895 +United States,USA,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,10385197000000,10749023000000,11056572000000,11539140000000,12322009000000,13170993000000,14071835000000,14557597000000,14723881000000,14436590000000,15185160000000,15861958000000,16640301000000,17140708000000,17984237000000,18608138000000,18983368999999.9,19837150000000.1,20883383000000,21760847000000,21479588000000,23777599999999.9,25926000000000.1,27525099999999.9 +Uruguay,URY,"Population, total",SP.POP.TOTL,3292224,3300939,3306441,3310202,3313801,3317665,3322282,3328651,3336126,3344156,3352651,3361637,3371133,3381180,3391662,3402818,3413766,3422200,3427042,3428409,3429086,3426260,3422794,3423108 +Uruguay,URY,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,35593786422.026,34983636005.6041,33074871037.5494,32430008208.5266,34879286751.9507,39237749357.0118,42394747957.1236,46408278233.6257,50315012572.7944,52632245033.9765,57187124001.315,61598786878.5658,60406396524.6273,65665517316.0693,68934876504.9747,71495545532.6973,73612479325.2365,75613030424.254,78135289453.0905,83329830974.0522,82866708108.6273,90038825700.0613,101727324095.56,108468174493.868 +Uzbekistan,UZB,"Population, total",SP.POP.TOTL,24650400,24964450,25271850,25567650,25864350,26167000,26488250,26868000,27302800,27767400,28562400,29339400,29774500,30243200,30757700,31298900,31847900,32388600,32956100,33580350,34232050,34915100,35648100,36412350 +Uzbekistan,UZB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,64565052628.494,68632549801.4615,72676897903.6691,77507417710.787,86117629406.9821,95203799497.2201,105112027272.705,123407116018.635,139190687560.83,147064838920.354,158941955560.137,174714953009.755,182611507380.273,193795439653.462,202521833728.445,212542989618.661,218609964316.417,225889693622.919,243795862807.068,255393985284.668,257979357045.905,286447119702.593,325929527374.975,351135445618.156 +Vanuatu,VUT,"Population, total",SP.POP.TOTL,192074,197034,202125,207258,212422,217632,222923,228345,233952,239689,245453,251294,257313,263534,269927,276438,283218,290239,297298,304404,311685,319137,326740,334506 +Vanuatu,VUT,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,391365581.441487,399633819.937844,373651372.985159,396594933.309375,421050818.328476,450266029.734885,514242358.847445,542149734.502987,610593258.735452,611675923.377824,630365377.430244,668614871.783441,664701162.047084,720396741.671318,768162256.940356,779720279.548209,827704531.863602,878463961.112732,949022070.798565,1106538415.88356,1038152652.05752,1097825940.94288,1207840760.15681,1261220246.82171 +"Venezuela, RB",VEN,"Population, total",SP.POP.TOTL,24427729,24880203,25330929,25782029,26226927,26668785,27102081,27525097,27933833,28327892,28715022,29096159,29470426,29838021,30193258,30529716,30741464,30563433,29825653,28971683,28490453,28199867,28301696,28838499 +"Venezuela, RB",VEN,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,280571330160.248,295239470790.659,269641072654.117,254538061485.349,307636164176.324,355764802048.995,406890019372.979,461817519883.213,491438527464.979,473749309622.212,470340223230.585,493557717634.178,..,..,..,..,..,..,..,..,..,..,..,.. +Viet Nam,VNM,"Population, total",SP.POP.TOTL,79001142,79817777,80642308,81475825,82311227,83142095,83951800,84762269,85597241,86482923,87411012,88349117,89301326,90267739,91235504,92191398,93126529,94033048,94914330,95776716,96648685,97468029,98186856,98858950 +Viet Nam,VNM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,199414106877.927,216694930645.62,233437769528.996,254540137547.539,280448977420.529,311165874437.341,342286199369.748,374646043717.024,402928818718.689,422707398304.894,456692413955.097,497552154232.623,552611427110.445,591114739558.674,643626834554.391,675964750828.809,743900376751.093,820021816285.019,914187294043.872,1017913175806.38,1089957330437.95,1131072479989.59,1312688656261.84,1423576253606.39 +Virgin Islands (U.S.),VIR,"Population, total",SP.POP.TOTL,108642,108549,108509,108505,108466,108453,108369,108337,108397,108404,108357,108290,108188,108041,107882,107712,107516,107281,107001,106669,106290,105870,105413,104917 +Virgin Islands (U.S.),VIR,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,..,.. +West Bank and Gaza,PSE,"Population, total",SP.POP.TOTL,2922153,2997784,3075373,3154969,3236626,3320396,3406334,3494496,3591977,3689099,3786161,3882986,3979998,4076708,4173398,4270092,4367088,4454805,4569087,4685306,4803269,4922749,5043612,5165775 +West Bank and Gaza,PSE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,9039659389.46457,8112857211.70715,7094186673.74811,8248798196.94124,10215550129.0355,11923103698.3621,12287392559.1971,13284286721.1701,14505579644.4549,15487617552.4569,16523056397.4568,18568276886.8443,22144601516.5245,23322052502.3125,24839947465.7724,27657931279.8671,29732079596.3116,30795008308.533,33264091845.7292,35888978658.7953,33201238941.2151,33462218519.5544,38396580147.0236,36471595851.4926 +"Yemen, Rep.",YEM,"Population, total",SP.POP.TOTL,18628700,19143457,19660653,20188799,20733406,21320671,21966298,22641538,23329004,24029589,24743946,25475610,26223391,26984002,27753304,28516545,29274002,30034389,30790513,31546691,32284046,32981641,33696614,34449825 +"Yemen, Rep.",YEM,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,47352592887.0773,50815922430.1877,53266867220.5214,55705167643.3614,58828557793.2356,64116943838.9289,70576035390.9309,75099215219.9117,78592751082.1934,84304078694.7859,90723652032.6861,79742575752.6667,81652538392.2555,88588684668.5626,..,..,..,..,..,..,..,..,..,.. +Zambia,ZMB,"Population, total",SP.POP.TOTL,9891136,10191964,10508294,10837973,11188040,11564870,11971567,12402073,12852966,13318087,13792086,14265814,14744658,15234976,15737793,16248230,16767761,17298054,17835893,18380477,18927715,19473125,20017675,20569737 +Zambia,ZMB,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,16373191380.0943,17688643420.9081,18858981279.2713,20709889349.7095,21944073643.9844,23965395512.6602,26201821118.2057,28572878477.1078,32508379369.9616,37692144316.4722,40351133323.0271,44313413076.5895,48727848193.1921,51352538032.7256,53588354307.556,53670410331.0728,54313038103.1591,56532519013.0445,60913357347.9353,61152155700.8365,58487584005.1059,62699332997.8127,72988898123.34,81420079986.2681 +Zimbabwe,ZWE,"Population, total",SP.POP.TOTL,11834676,11910978,11984644,12075828,12160881,12224753,12330490,12450568,12550347,12679810,12839771,13025785,13265331,13555422,13855753,14154937,14452704,14751101,15052184,15354608,15669666,15993524,16320537,16665409 +Zimbabwe,ZWE,"GNI, PPP (current international $)",NY.GNP.MKTP.PP.CD,20607744870.1627,21969861528.8679,20970362800.3806,18116931455.3551,16630012192.6512,16265659831.6968,15379791671.8121,14314748841.3717,9820990850.39529,17179242777.6554,21306166101.5294,24052481285.9971,27960479121.0898,31290199823.3227,32193030940.0904,33607369293.4626,35774504075.9821,31862223805.02,38485461825.6842,40896508796.2549,42763906835.8116,51444021328.8471,58546348637.7418,64133704970.7717 +,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,, +Data from database: World Development Indicators,,,,,,,,,,,,,,,,,,,,,,,,,,, +Last Updated: 06/28/2024,,,,,,,,,,,,,,,,,,,,,,,,,,, From 78146cb623dedd1049c2e8b7a807a875686d719a Mon Sep 17 00:00:00 2001 From: Conrad Nied Date: Wed, 14 Aug 2024 21:42:37 -0700 Subject: [PATCH 4/5] CLDR-17884 Update CIA Factbook CLDR-17884 Check alternate country names without parentheses too CLDR-17884 Regex match add country note CLDR-17884 Remove world bank aggregates --- common/supplemental/supplementalData.xml | 750 +++++++++--------- .../unicode/cldr/tool/AddPopulationData.java | 29 +- .../data/external/alternate_country_names.txt | 43 +- .../util/data/external/factbook_gdp_ppp.csv | 225 ++++++ .../util/data/external/factbook_gdp_ppp.txt | 229 ------ .../data/external/factbook_population.csv | 238 ++++++ .../data/external/factbook_population.txt | 238 ------ .../util/data/external/other_country_data.txt | 8 + 8 files changed, 876 insertions(+), 884 deletions(-) create mode 100644 tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_gdp_ppp.csv delete mode 100644 tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_gdp_ppp.txt create mode 100644 tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_population.csv delete mode 100644 tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_population.txt diff --git a/common/supplemental/supplementalData.xml b/common/supplemental/supplementalData.xml index 7d1fc9dfdd4..86f26abb92d 100644 --- a/common/supplemental/supplementalData.xml +++ b/common/supplemental/supplementalData.xml @@ -1287,6 +1287,7 @@ XXX Code for transations where no currency is involved + @@ -1367,6 +1368,7 @@ XXX Code for transations where no currency is involved + @@ -1556,7 +1558,7 @@ XXX Code for transations where no currency is involved - + @@ -1661,6 +1663,7 @@ XXX Code for transations where no currency is involved + @@ -1743,6 +1746,7 @@ XXX Code for transations where no currency is involved + @@ -1801,6 +1805,7 @@ XXX Code for transations where no currency is involved + @@ -1957,11 +1962,13 @@ XXX Code for transations where no currency is involved + + @@ -1979,7 +1986,7 @@ XXX Code for transations where no currency is involved - + @@ -1994,6 +2001,7 @@ XXX Code for transations where no currency is involved + @@ -2066,7 +2074,7 @@ XXX Code for transations where no currency is involved - + @@ -2083,6 +2091,7 @@ XXX Code for transations where no currency is involved + @@ -2118,11 +2127,12 @@ XXX Code for transations where no currency is involved - + + @@ -2417,15 +2427,15 @@ XXX Code for transations where no currency is involved - + - + - + - + @@ -2433,7 +2443,7 @@ XXX Code for transations where no currency is involved - + @@ -2441,47 +2451,47 @@ XXX Code for transations where no currency is involved - - - + + + - + - + - + - + - + - + - + - + - + @@ -2491,22 +2501,22 @@ XXX Code for transations where no currency is involved - + - - + + - + - + - + @@ -2514,7 +2524,7 @@ XXX Code for transations where no currency is involved - + @@ -2522,10 +2532,10 @@ XXX Code for transations where no currency is involved - + - + @@ -2537,7 +2547,7 @@ XXX Code for transations where no currency is involved - + @@ -2545,60 +2555,60 @@ XXX Code for transations where no currency is involved - + - + - + - + - - + + - + - - + + - + - + - + - + - + - + @@ -2610,35 +2620,35 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - + - + - + - + @@ -2677,19 +2687,19 @@ XXX Code for transations where no currency is involved - - + + - - - - - - - - + + + + + + + + @@ -2697,13 +2707,13 @@ XXX Code for transations where no currency is involved - + - - + + - + @@ -2713,16 +2723,16 @@ XXX Code for transations where no currency is involved - + - + - + @@ -2732,9 +2742,9 @@ XXX Code for transations where no currency is involved - + - + @@ -2742,15 +2752,15 @@ XXX Code for transations where no currency is involved - + - + - + @@ -2776,11 +2786,11 @@ XXX Code for transations where no currency is involved - - + + - + @@ -2809,51 +2819,51 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - + - + - + - - + + - + - - + + - + - + @@ -2875,21 +2885,21 @@ XXX Code for transations where no currency is involved - - + + - + - + - + @@ -2898,29 +2908,29 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - + - + @@ -2928,7 +2938,7 @@ XXX Code for transations where no currency is involved - + @@ -2937,7 +2947,7 @@ XXX Code for transations where no currency is involved - + @@ -2946,7 +2956,7 @@ XXX Code for transations where no currency is involved - + @@ -2955,9 +2965,9 @@ XXX Code for transations where no currency is involved - + - + @@ -2968,40 +2978,40 @@ XXX Code for transations where no currency is involved - + - + - + - + - - + + - + - - - + + + - + - + @@ -3020,11 +3030,11 @@ XXX Code for transations where no currency is involved - + - + @@ -3047,13 +3057,13 @@ XXX Code for transations where no currency is involved - + - + - + @@ -3068,10 +3078,10 @@ XXX Code for transations where no currency is involved - + - + @@ -3081,25 +3091,25 @@ XXX Code for transations where no currency is involved - + - + - + - + - + @@ -3111,14 +3121,14 @@ XXX Code for transations where no currency is involved - + - + @@ -3127,53 +3137,53 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - - + + - + - + - + - + - + - + - + @@ -3183,10 +3193,10 @@ XXX Code for transations where no currency is involved - + - + @@ -3218,12 +3228,12 @@ XXX Code for transations where no currency is involved - + - + @@ -3235,14 +3245,14 @@ XXX Code for transations where no currency is involved - - + + - + - + - + @@ -3319,14 +3329,14 @@ XXX Code for transations where no currency is involved - + - + - + @@ -3335,7 +3345,7 @@ XXX Code for transations where no currency is involved - + @@ -3356,14 +3366,14 @@ XXX Code for transations where no currency is involved - - + + - + - + - + @@ -3381,29 +3391,29 @@ XXX Code for transations where no currency is involved - - - + + + - + - + - + - + - + @@ -3422,59 +3432,59 @@ XXX Code for transations where no currency is involved - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -3482,20 +3492,20 @@ XXX Code for transations where no currency is involved - + - + - + - + - + @@ -3504,37 +3514,37 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - + @@ -3547,39 +3557,39 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - + - + - + @@ -3595,52 +3605,52 @@ XXX Code for transations where no currency is involved - + - + - + - - + + - + - + - + - + - - + + - + - + @@ -3648,18 +3658,18 @@ XXX Code for transations where no currency is involved - + - + - + @@ -3670,7 +3680,7 @@ XXX Code for transations where no currency is involved - + @@ -3681,9 +3691,9 @@ XXX Code for transations where no currency is involved - + - + @@ -3694,10 +3704,10 @@ XXX Code for transations where no currency is involved - - + + - + @@ -3707,24 +3717,24 @@ XXX Code for transations where no currency is involved - + - + - + - + - + @@ -3745,10 +3755,10 @@ XXX Code for transations where no currency is involved - + - + @@ -3762,13 +3772,13 @@ XXX Code for transations where no currency is involved - + - + @@ -3795,47 +3805,47 @@ XXX Code for transations where no currency is involved - - + + - - - + + + - + - + - + - + - + - + - + - + - + @@ -3854,10 +3864,10 @@ XXX Code for transations where no currency is involved - - + + - + @@ -3883,7 +3893,7 @@ XXX Code for transations where no currency is involved - + @@ -3896,48 +3906,48 @@ XXX Code for transations where no currency is involved - - - + + + - + - + - + - + - + - + - + - + - + - + @@ -3946,11 +3956,11 @@ XXX Code for transations where no currency is involved - - - + + + - + @@ -3960,7 +3970,7 @@ XXX Code for transations where no currency is involved - + @@ -3991,34 +4001,34 @@ XXX Code for transations where no currency is involved - - + + - + - + - + - + - + - + @@ -4028,30 +4038,30 @@ XXX Code for transations where no currency is involved - + - - - - + + + + - + - - + + - - + + - + @@ -4060,11 +4070,11 @@ XXX Code for transations where no currency is involved - + - + @@ -4073,7 +4083,7 @@ XXX Code for transations where no currency is involved - + @@ -4081,11 +4091,11 @@ XXX Code for transations where no currency is involved - + - + - + @@ -4097,40 +4107,40 @@ XXX Code for transations where no currency is involved - - + + - + - + - + - + - + - + - + - - + + - + @@ -4138,32 +4148,32 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - + - + @@ -4179,37 +4189,37 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - + - + - + - + @@ -4229,26 +4239,26 @@ XXX Code for transations where no currency is involved - - - + + + - + - + - - - + + + - + - + @@ -4266,7 +4276,7 @@ XXX Code for transations where no currency is involved - + @@ -4278,9 +4288,9 @@ XXX Code for transations where no currency is involved - + - + @@ -4293,12 +4303,12 @@ XXX Code for transations where no currency is involved - + - + - + @@ -4319,8 +4329,8 @@ XXX Code for transations where no currency is involved - - + + @@ -4328,61 +4338,61 @@ XXX Code for transations where no currency is involved - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + @@ -4392,7 +4402,7 @@ XXX Code for transations where no currency is involved - + @@ -4405,15 +4415,15 @@ XXX Code for transations where no currency is involved - + - + - + diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java index 21a6ca063ea..c7a9a625bf7 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java @@ -85,11 +85,13 @@ static ArrayList> parseHeader(final String[] pieces) { } } - enum FBLine { - Rank, - Country, + enum FactbookLine { + CountryName, + CountrySlug, Value, - Year; + DateOfInformation, + Ranking, + Region; String get(String[] pieces) { return pieces[ordinal()]; @@ -279,16 +281,13 @@ private static void loadFactbookInfo(String filename, final Counter2 fac new LineHandler() { @Override public boolean handle(String line) { - if (line.length() == 0 - || line.startsWith("This tab") - || line.startsWith("Rank") - || line.startsWith(" This file")) { + String[] pieces = splitCommaSeparated(line); + String countryName = FactbookLine.CountryName.get(pieces); + if (countryName.equals("name")) { return false; } - String[] pieces = line.split("\\s{2,}"); String code = - CountryCodeConverter.getCodeFromName( - FBLine.Country.get(pieces), true, missing); + CountryCodeConverter.getCodeFromName(countryName, true, missing); if (code == null) { return false; } @@ -299,7 +298,7 @@ public boolean handle(String line) { return false; } code = code.toUpperCase(Locale.ENGLISH); - String valueString = FBLine.Value.get(pieces).trim(); + String valueString = FactbookLine.Value.get(pieces).trim(); if (valueString.startsWith("$")) { valueString = valueString.substring(1); } @@ -539,8 +538,8 @@ static List> getUnLiteracy(Output hadErr) throws I loadFactbookLiteracy(); loadUnLiteracy(); - loadFactbookInfo("external/factbook_gdp_ppp.txt", factbook_gdp); - loadFactbookInfo("external/factbook_population.txt", factbook_population); + loadFactbookInfo("external/factbook_gdp_ppp.csv", factbook_gdp); + loadFactbookInfo("external/factbook_population.csv", factbook_population); CldrUtility.handleFile("external/other_country_data.txt", new MyLineHandler(other)); loadWorldBankInfo(); @@ -581,7 +580,7 @@ static List> getUnLiteracy(Output hadErr) throws I } if (myErrors.length() != 0) { throw new IllegalArgumentException( - "Missing Country values, the following and add to external/other_country_data to fix, chaning the 0 to the real value:" + "Missing Country values, the following and add to external/other_country_data to fix, changing the 0 to the real value:" + myErrors); } } catch (IOException e) { diff --git a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/alternate_country_names.txt b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/alternate_country_names.txt index 964ec09e461..a2ae78a5fd0 100644 --- a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/alternate_country_names.txt +++ b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/alternate_country_names.txt @@ -142,13 +142,17 @@ SY; Syria; Syrian Arab Republic SZ; Eswatini; eSwatini; Swaziland SZ; Eswatini; Swaziland +SH; Saint Helena; Saint Helena +SH; Saint Helena; St. Helena SH; Saint Helena; Saint Helena, Ascension, and Tristan da Cunha +SH; Saint Helena; Saint Helena, Ascension and Tristan da Cunha SH; Saint Helena; Saint Helena ex. dep. TL; East Timor; Timor-Leste TL; East Timor; East Timor TR; Turkey; Turkiye +TR; Turkey; Turkey (Turkiye) TR; ; Turkey @@ -198,11 +202,11 @@ RE; ; Reunion PS; ; Palestinian Territory CD; ; Congo, Democratic Republic FX; ; France, Metropolitan -SH; ; St. Helena SJ; ; Svalbard and Jan Mayen Islands VA; ; Vatican CW; ; Netherlands Antilles WF; ; Wallis and Futuna Islands +WF; ; Wallis and Futuna HM; ; Heard and McDonald Islands PM; ; St. Pierre and Miquelon @@ -220,34 +224,9 @@ UK;; U.K. RS;; Yugoslavia KM;; Comros -skip; skip; Arab World -skip; skip; Caribbean small states -skip; skip; Country Name -skip; skip; East Asia & Pacific (all income levels) -skip; skip; East Asia & Pacific (developing only) -skip; skip; Euro area -skip; skip; Europe & Central Asia (all income levels) -skip; skip; Europe & Central Asia (developing only) -skip; skip; Heavily indebted poor countries (HIPC) -skip; skip; High income -skip; skip; High income: nonOECD -skip; skip; High income: OECD -skip; skip; Latin America & Caribbean (all income levels) -skip; skip; Latin America & Caribbean (developing only) -skip; skip; Least developed countries: UN classification -skip; skip; Low & middle income -skip; skip; Low income -skip; skip; Lower middle income -skip; skip; Middle East & North Africa (all income levels) -skip; skip; Middle East & North Africa (developing only) -skip; skip; Middle income -skip; skip; OECD members -skip; skip; Other small states -skip; skip; Pacific island small states -skip; skip; Small states -skip; skip; South Asia -skip; skip; Sub-Saharan Africa (all income levels) -skip; skip; Sub-Saharan Africa (developing only) -skip; skip; Sudan (pre-secession) -skip; skip; Upper middle income -skip; skip; Paracel Islands +419; Latin America & Caribbean; Latin America & Caribbean +419; Latin America & Caribbean; Latin America & the Caribbean + +# Many of the skipped values below are aggregates from world_bank_data that we can ignore since they don't correspond to UN country groups + +skip; skip; Paracel Islands \ No newline at end of file diff --git a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_gdp_ppp.csv b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_gdp_ppp.csv new file mode 100644 index 00000000000..362fbc8a233 --- /dev/null +++ b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_gdp_ppp.csv @@ -0,0 +1,225 @@ +name,slug,value,date_of_information,ranking,region +"China","china","$31,227,000,000,000","2023",1,"East and Southeast Asia" +"United States","united-states","$24,662,000,000,000","2023",2,"North America" +"India","india","$13,104,000,000,000","2023",3,"South Asia" +"Russia","russia","$5,816,000,000,000","2023",4,"Central Asia" +"Japan","japan","$5,761,000,000,000","2023",5,"East and Southeast Asia" +"Germany","germany","$5,230,000,000,000","2023",6,"Europe" +"Brazil","brazil","$4,016,000,000,000","2023",7,"South America" +"Indonesia","indonesia","$3,906,000,000,000","2023",8,"East and Southeast Asia" +"France","france","$3,764,000,000,000","2023",9,"Europe" +"United Kingdom","united-kingdom","$3,700,000,000,000","2023",10,"Europe" +"Italy","italy","$3,097,000,000,000","2023",11,"Europe" +"Turkey (Turkiye)","turkey-turkiye","$2,936,000,000,000","2023",12,"Middle East" +"Mexico","mexico","$2,873,000,000,000","2023",13,"North America" +"Korea, South","korea-south","$2,615,000,000,000","2023",14,"East and Southeast Asia" +"Spain","spain","$2,242,000,000,000","2023",15,"Europe" +"Canada","canada","$2,238,000,000,000","2023",16,"North America" +"Egypt","egypt","$1,912,000,000,000","2023",17,"Africa" +"Saudi Arabia","saudi-arabia","$1,831,000,000,000","2023",18,"Middle East" +"Poland","poland","$1,616,000,000,000","2023",19,"Europe" +"Australia","australia","$1,584,000,000,000","2023",20,"Australia and Oceania" +"Thailand","thailand","$1,516,000,000,000","2023",21,"East and Southeast Asia" +"Iran","iran","$1,440,000,000,000","2023",22,"Middle East" +"Bangladesh","bangladesh","$1,413,000,000,000","2023",23,"South Asia" +"Vietnam","vietnam","$1,354,000,000,000","2023",24,"East and Southeast Asia" +"Pakistan","pakistan","$1,347,000,000,000","2023",25,"South Asia" +"Nigeria","nigeria","$1,275,000,000,000","2023",26,"Africa" +"Netherlands","netherlands","$1,240,000,000,000","2023",27,"Europe" +"Argentina","argentina","$1,235,000,000,000","2023",28,"South America" +"Malaysia","malaysia","$1,152,000,000,000","2023",29,"East and Southeast Asia" +"Taiwan","taiwan","$1,143,000,000,000","2019",30,"East and Southeast Asia" +"Philippines","philippines","$1,138,000,000,000","2023",31,"East and Southeast Asia" +"Colombia","colombia","$978,024,000,000","2023",32,"South America" +"South Africa","south-africa","$862,981,000,000","2023",33,"Africa" +"Romania","romania","$772,107,000,000","2023",34,"Europe" +"Singapore","singapore","$754,758,000,000","2023",35,"East and Southeast Asia" +"Belgium","belgium","$751,592,000,000","2023",36,"Europe" +"Switzerland","switzerland","$733,779,000,000","2023",37,"Europe" +"United Arab Emirates","united-arab-emirates","$719,733,000,000","2023",38,"Middle East" +"Kazakhstan","kazakhstan","$705,520,000,000","2023",39,"Central Asia" +"Algeria","algeria","$699,947,000,000","2023",40,"Africa" +"Sweden","sweden","$676,353,000,000","2023",41,"Europe" +"Ireland","ireland","$608,463,000,000","2023",42,"Europe" +"Austria","austria","$590,354,000,000","2023",43,"Europe" +"Chile","chile","$579,201,000,000","2023",44,"South America" +"Iraq","iraq","$572,939,000,000","2023",45,"Middle East" +"Ukraine","ukraine","$559,981,000,000","2023",46,"Europe" +"Czechia","czechia","$519,007,000,000","2023",47,"Europe" +"Peru","peru","$517,644,000,000","2023",48,"South America" +"Norway","norway","$499,528,000,000","2023",49,"Europe" +"Hong Kong","hong-kong","$485,559,000,000","2023",50,"East and Southeast Asia" +"Israel","israel","$471,030,000,000","2023",51,"Middle East" +"Portugal","portugal","$439,008,000,000","2023",52,"Europe" +"Denmark","denmark","$428,385,000,000","2023",53,"Europe" +"Hungary","hungary","$388,906,000,000","2023",54,"Europe" +"Greece","greece","$375,780,000,000","2023",55,"Europe" +"Ethiopia","ethiopia","$354,604,000,000","2023",56,"Africa" +"Morocco","morocco","$337,480,000,000","2023",57,"Africa" +"Finland","finland","$321,126,000,000","2023",58,"Europe" +"Uzbekistan","uzbekistan","$319,174,000,000","2023",59,"Central Asia" +"Kenya","kenya","$314,063,000,000","2023",60,"Africa" +"Qatar","qatar","$304,973,000,000","2022",61,"Middle East" +"Burma","burma","$290,507,000,000","2023",62,"East and Southeast Asia" +"Sri Lanka","sri-lanka","$287,132,000,000","2023",63,"South Asia" +"Venezuela","venezuela","$269,068,000,000","2018",64,"South America" +"Angola","angola","$265,868,000,000","2023",65,"Africa" +"Dominican Republic","dominican-republic","$261,616,000,000","2023",66,"Central America and the Caribbean" +"Ecuador","ecuador","$260,213,000,000","2023",67,"South America" +"New Zealand","new-zealand","$254,770,000,000","2023",68,"Australia and Oceania" +"Belarus","belarus","$254,407,000,000","2023",69,"Europe" +"Tanzania","tanzania","$234,050,000,000","2023",70,"Africa" +"Ghana","ghana","$229,639,000,000","2023",71,"Africa" +"Guatemala","guatemala","$223,183,000,000","2023",72,"Central America and the Caribbean" +"Kuwait","kuwait","$219,060,000,000","2023",73,"Middle East" +"Azerbaijan","azerbaijan","$215,896,000,000","2023",74,"Middle East" +"Bulgaria","bulgaria","$214,061,000,000","2023",75,"Europe" +"Slovakia","slovakia","$213,053,000,000","2023",76,"Europe" +"Cote d'Ivoire","cote-divoire","$202,758,000,000","2023",77,"Africa" +"Oman","oman","$185,960,000,000","2023",78,"Middle East" +"Serbia","serbia","$162,213,000,000","2023",79,"Europe" +"Panama","panama","$159,867,000,000","2023",80,"Central America and the Caribbean" +"Croatia","croatia","$159,305,000,000","2023",81,"Europe" +"Congo, Democratic Republic of the","congo-democratic-republic-of-the","$154,012,000,000","2023",82,"Africa" +"Tunisia","tunisia","$153,637,000,000","2023",83,"Africa" +"Nepal","nepal","$144,310,000,000","2023",84,"South Asia" +"Cameroon","cameroon","$138,925,000,000","2023",85,"Africa" +"Puerto Rico","puerto-rico","$137,828,000,000","2023",86,"Central America and the Caribbean" +"Cuba","cuba","$137,000,000,000","2017",87,"Central America and the Caribbean" +"Sudan","sudan","$136,039,000,000","2023",88,"Africa" +"Uganda","uganda","$135,668,000,000","2023",89,"Africa" +"Costa Rica","costa-rica","$134,238,000,000","2023",90,"Central America and the Caribbean" +"Lithuania","lithuania","$132,712,000,000","2023",91,"Europe" +"Libya","libya","$121,951,000,000","2023",92,"Africa" +"Bolivia","bolivia","$119,785,000,000","2023",93,"South America" +"Paraguay","paraguay","$108,022,000,000","2023",94,"South America" +"Jordan","jordan","$106,806,000,000","2023",95,"Middle East" +"Uruguay","uruguay","$105,096,000,000","2023",96,"South America" +"Slovenia","slovenia","$102,036,000,000","2023",97,"Europe" +"Turkmenistan","turkmenistan","$94,790,000,000","2022",98,"Central Asia" +"Luxembourg","luxembourg","$88,533,000,000","2023",99,"Europe" +"Cambodia","cambodia","$85,900,000,000","2023",100,"East and Southeast Asia" +"Bahrain","bahrain","$85,491,000,000","2023",101,"Middle East" +"Georgia","georgia","$83,656,000,000","2023",102,"Middle East" +"Afghanistan","afghanistan","$80,416,000,000","2022",103,"South Asia" +"Senegal","senegal","$77,382,000,000","2023",104,"Africa" +"Zambia","zambia","$76,493,000,000","2023",105,"Africa" +"Yemen","yemen","$73,630,000,000","2017",106,"Middle East" +"El Salvador","el-salvador","$71,957,000,000","2023",107,"Central America and the Caribbean" +"Macau","macau","$71,837,000,000","2023",108,"East and Southeast Asia" +"Latvia","latvia","$71,154,000,000","2023",109,"Europe" +"Honduras","honduras","$68,854,000,000","2023",110,"Central America and the Caribbean" +"Lebanon","lebanon","$65,818,000,000","2023",111,"Middle East" +"Laos","laos","$64,173,000,000","2023",112,"East and Southeast Asia" +"Bosnia and Herzegovina","bosnia-and-herzegovina","$63,769,000,000","2023",113,"Europe" +"Syria","syria","$62,151,000,000","2021",114,"Middle East" +"Zimbabwe","zimbabwe","$58,583,000,000","2023",115,"Africa" +"Armenia","armenia","$57,728,000,000","2023",116,"Middle East" +"Estonia","estonia","$57,377,000,000","2023",117,"Europe" +"Mali","mali","$57,235,000,000","2023",118,"Africa" +"Burkina Faso","burkina-faso","$57,152,000,000","2023",119,"Africa" +"Guinea","guinea","$56,655,000,000","2023",120,"Africa" +"Mongolia","mongolia","$56,264,000,000","2023",121,"East and Southeast Asia" +"Benin","benin","$52,510,000,000","2023",122,"Africa" +"Madagascar","madagascar","$51,255,000,000","2023",123,"Africa" +"Nicaragua","nicaragua","$51,088,000,000","2023",124,"Central America and the Caribbean" +"Mozambique","mozambique","$50,631,000,000","2023",125,"Africa" +"Albania","albania","$49,592,000,000","2023",126,"Europe" +"Gabon","gabon","$48,201,000,000","2023",127,"Africa" +"Cyprus","cyprus","$46,976,000,000","2023",128,"Europe" +"Botswana","botswana","$46,742,000,000","2023",129,"Africa" +"Tajikistan","tajikistan","$46,467,000,000","2023",130,"Central Asia" +"Kyrgyzstan","kyrgyzstan","$45,461,000,000","2023",131,"Central Asia" +"Niger","niger","$44,561,000,000","2023",132,"Africa" +"Trinidad and Tobago","trinidad-and-tobago","$43,681,000,000","2023",133,"Central America and the Caribbean" +"Papua New Guinea","papua-new-guinea","$42,900,000,000","2023",134,"East and Southeast Asia" +"Rwanda","rwanda","$42,701,000,000","2023",135,"Africa" +"North Macedonia","north-macedonia","$42,444,000,000","2023",136,"Europe" +"Guyana","guyana","$40,539,000,000","2023",137,"South America" +"Korea, North","korea-north","$40,000,000,000","2015",138,"East and Southeast Asia" +"Moldova","moldova","$38,969,000,000","2023",139,"Europe" +"Congo, Republic of the","congo-republic-of-the","$38,163,000,000","2023",140,"Africa" +"Brunei","brunei","$35,260,000,000","2023",141,"East and Southeast Asia" +"Malawi","malawi","$35,238,000,000","2023",142,"Africa" +"Haiti","haiti","$34,406,000,000","2023",143,"Central America and the Caribbean" +"Mauritius","mauritius","$33,530,000,000","2023",144,"Africa" +"Chad","chad","$32,446,000,000","2023",145,"Africa" +"Malta","malta","$31,661,000,000","2023",146,"Europe" +"Mauritania","mauritania","$30,395,000,000","2023",147,"Africa" +"Namibia","namibia","$29,944,000,000","2023",148,"Africa" +"Jamaica","jamaica","$29,225,000,000","2023",149,"Central America and the Caribbean" +"Equatorial Guinea","equatorial-guinea","$28,938,000,000","2023",150,"Africa" +"West Bank","west-bank","$27,418,000,000","2023",151,"Middle East" +"Gaza Strip","gaza-strip","$27,418,000,000","2023",152,"Middle East" +"Somalia","somalia","$26,351,000,000","2023",153,"Africa" +"Iceland","iceland","$26,155,000,000","2023",154,"Europe" +"Togo","togo","$25,750,000,000","2023",155,"Africa" +"Kosovo","kosovo","$23,794,000,000","2023",156,"Europe" +"South Sudan","south-sudan","$20,010,000,000","2017",157,"Africa" +"Montenegro","montenegro","$17,115,000,000","2023",158,"Europe" +"Sierra Leone","sierra-leone","$14,633,000,000","2023",159,"Africa" +"Bahamas, The","bahamas-the","$13,224,000,000","2023",160,"Central America and the Caribbean" +"Eswatini","eswatini","$12,814,000,000","2023",161,"Africa" +"Fiji","fiji","$12,699,000,000","2023",162,"Australia and Oceania" +"Suriname","suriname","$11,824,000,000","2023",163,"South America" +"Maldives","maldives","$11,651,000,000","2023",164,"South Asia" +"Burundi","burundi","$11,347,000,000","2023",165,"Africa" +"Bhutan","bhutan","$10,981,000,000","2022",166,"South Asia" +"New Caledonia","new-caledonia","$10,266,000,000","2021",167,"Australia and Oceania" +"Eritrea","eritrea","$9,702,000,000","2017",168,"Africa" +"Liberia","liberia","$8,884,000,000","2023",169,"Africa" +"Gambia, The","gambia-the","$7,905,000,000","2023",170,"Africa" +"Monaco","monaco","$7,672,000,000","2015",171,"Europe" +"Djibouti","djibouti","$7,380,000,000","2023",172,"Africa" +"Isle of Man","isle-of-man","$6,792,000,000","2015",173,"Europe" +"Bermuda","bermuda","$6,349,000,000","2022",174,"North America" +"Timor-Leste","timor-leste","$6,265,000,000","2023",175,"East and Southeast Asia" +"Lesotho","lesotho","$5,868,000,000","2023",176,"Africa" +"Central African Republic","central-african-republic","$5,849,000,000","2023",177,"Africa" +"Guam","guam","$5,793,000,000","2016",178,"Australia and Oceania" +"French Polynesia","french-polynesia","$5,650,000,000","2021",179,"Australia and Oceania" +"Jersey","jersey","$5,569,000,000","2016",180,"Europe" +"Cayman Islands","cayman-islands","$5,467,000,000","2022",181,"Central America and the Caribbean" +"Belize","belize","$5,257,000,000","2023",182,"Central America and the Caribbean" +"Andorra","andorra","$5,168,000,000","2023",183,"Europe" +"Guinea-Bissau","guinea-bissau","$5,099,000,000","2023",184,"Africa" +"Liechtenstein","liechtenstein","$4,978,000,000","2014",185,"Europe" +"Barbados","barbados","$4,920,000,000","2023",186,"Central America and the Caribbean" +"Cabo Verde","cabo-verde","$4,903,000,000","2023",187,"Africa" +"Virgin Islands","virgin-islands","$4,895,000,000","2021",188,"Central America and the Caribbean" +"Aruba","aruba","$4,498,000,000","2022",189,"Central America and the Caribbean" +"Curacao","curacao","$4,137,000,000","2022",190,"Central America and the Caribbean" +"Saint Lucia","saint-lucia","$4,083,000,000","2023",191,"Central America and the Caribbean" +"Greenland","greenland","$3,857,000,000","2021",192,"North America" +"Faroe Islands","faroe-islands","$3,798,000,000","2022",193,"Europe" +"Seychelles","seychelles","$3,530,000,000","2023",194,"Africa" +"Guernsey","guernsey","$3,465,000,000","2015",195,"Europe" +"Comoros","comoros","$2,961,000,000","2023",196,"Africa" +"Antigua and Barbuda","antigua-and-barbuda","$2,703,000,000","2023",197,"Central America and the Caribbean" +"San Marino","san-marino","$2,218,000,000","2021",198,"Europe" +"Gibraltar","gibraltar","$2,044,000,000","2014",199,"Europe" +"Solomon Islands","solomon-islands","$2,025,000,000","2023",200,"Australia and Oceania" +"Grenada","grenada","$2,008,000,000","2023",201,"Central America and the Caribbean" +"Sint Maarten","sint-maarten","$1,912,000,000","2023",202,"Central America and the Caribbean" +"Saint Vincent and the Grenadines","saint-vincent-and-the-grenadines","$1,858,000,000","2023",203,"Central America and the Caribbean" +"Saint Kitts and Nevis","saint-kitts-and-nevis","$1,438,000,000","2023",204,"Central America and the Caribbean" +"Samoa","samoa","$1,359,000,000","2023",205,"Australia and Oceania" +"Sao Tome and Principe","sao-tome-and-principe","$1,267,000,000","2023",206,"Africa" +"Northern Mariana Islands","northern-mariana-islands","$1,242,000,000","2016",207,"Australia and Oceania" +"Dominica","dominica","$1,159,000,000","2023",208,"Central America and the Caribbean" +"Turks and Caicos Islands","turks-and-caicos-islands","$1,030,000,000","2023",209,"Central America and the Caribbean" +"Vanuatu","vanuatu","$999,536,000","2023",210,"Australia and Oceania" +"Tonga","tonga","$700,437,000","2022",211,"Australia and Oceania" +"American Samoa","american-samoa","$658,000,000","2016",212,"Australia and Oceania" +"British Virgin Islands","british-virgin-islands","$500,000,000","2017",213,"Central America and the Caribbean" +"Micronesia, Federated States of","micronesia-federated-states-of","$437,922,000","2023",214,"Australia and Oceania" +"Kiribati","kiribati","$423,828,000","2023",215,"Australia and Oceania" +"Palau","palau","$284,695,000","2023",216,"Australia and Oceania" +"Marshall Islands","marshall-islands","$283,577,000","2023",217,"Australia and Oceania" +"Cook Islands","cook-islands","$266,000,000","2022",218,"Australia and Oceania" +"Saint Pierre and Miquelon","saint-pierre-and-miquelon","$261,300,000","2015",219,"North America" +"Falkland Islands (Islas Malvinas)","falkland-islands-islas-malvinas","$206,400,000","2015",220,"South America" +"Nauru","nauru","$145,958,000","2023",221,"Australia and Oceania" +"Tuvalu","tuvalu","$59,202,000","2023",222,"Australia and Oceania" +"Niue","niue","$18,700,000","2021",223,"Australia and Oceania" +"Tokelau","tokelau","$7,711,583","2017",224,"Australia and Oceania" \ No newline at end of file diff --git a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_gdp_ppp.txt b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_gdp_ppp.txt deleted file mode 100644 index 4d86e3f719e..00000000000 --- a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_gdp_ppp.txt +++ /dev/null @@ -1,229 +0,0 @@ -1 China $25,360,000,000,000 2018 -2 United States $19,490,000,000,000 2017 est. -3 India $9,474,000,000,000 2017 est. -4 Japan $5,443,000,000,000 2017 est. -5 Germany $4,199,000,000,000 2017 est. -6 Russia $4,016,000,000,000 2017 est. -7 Indonesia $3,250,000,000,000 2017 est. -8 Brazil $3,248,000,000,000 2017 est. -9 United Kingdom $2,925,000,000,000 2017 est. -10 France $2,856,000,000,000 2017 est. -11 Mexico $2,463,000,000,000 2017 est. -12 Italy $2,317,000,000,000 2017 est. -13 Turkey $2,186,000,000,000 2017 est. -14 Korea, South $2,035,000,000,000 2017 est. -15 Spain $1,778,000,000,000 2017 est. -16 Saudi Arabia $1,775,000,000,000 2017 est. -17 Canada $1,774,000,000,000 2017 est. -18 Iran $1,640,000,000,000 2017 est. -19 Australia $1,248,000,000,000 2017 est. -20 Thailand $1,236,000,000,000 2017 est. -21 Egypt $1,204,000,000,000 2017 est. -22 Taiwan $1,189,000,000,000 2017 est. -23 Poland $1,126,000,000,000 2017 est. -24 Nigeria $1,121,000,000,000 2017 est. -25 Pakistan $1,061,000,000,000 2017 est. -26 Malaysia $933,300,000,000 2017 est. -27 Netherlands $924,400,000,000 2017 est. -28 Argentina $922,100,000,000 2017 est. -29 Philippines $877,200,000,000 2017 est. -30 South Africa $767,200,000,000 2017 est. -31 Colombia $711,600,000,000 2017 est. -32 United Arab Emirates $696,000,000,000 2017 est. -33 Bangladesh $690,300,000,000 2017 est. -34 Iraq $649,300,000,000 2017 est. -35 Vietnam $648,700,000,000 2017 est. -36 Algeria $630,000,000,000 2017 est. -37 Belgium $529,200,000,000 2017 est. -38 Singapore $528,100,000,000 2017 est. -39 Switzerland $523,100,000,000 2017 est. -40 Sweden $518,000,000,000 2017 est. -41 Romania $483,400,000,000 2017 est. -42 Hong Kong $480,500,000,000 2018 -43 Kazakhstan $478,600,000,000 2017 est. -44 Chile $452,100,000,000 2017 est. -45 Austria $441,000,000,000 2017 est. -46 Peru $430,300,000,000 2017 est. -47 Venezuela $381,600,000,000 2017 est. -48 Norway $381,200,000,000 2017 est. -49 Czechia $375,900,000,000 2017 est. -50 Ukraine $369,600,000,000 2017 est. -51 Ireland $353,300,000,000 2017 est. -52 Qatar $339,500,000,000 2017 est. -53 Burma $329,800,000,000 2017 est. -54 Israel $317,100,000,000 2017 est. -55 Portugal $314,100,000,000 2017 est. -56 Greece $299,300,000,000 2017 est. -57 Morocco $298,600,000,000 2017 est. -58 Kuwait $289,700,000,000 2017 est. -59 Hungary $289,600,000,000 2017 est. -60 Denmark $287,800,000,000 2017 est. -61 Sri Lanka $275,800,000,000 2017 est. -62 Finland $244,900,000,000 2017 est. -63 Uzbekistan $223,000,000,000 2017 est. -64 Ethiopia $200,600,000,000 2017 est. -65 Angola $193,600,000,000 2017 est. -66 Ecuador $193,000,000,000 2017 est. -67 Oman $190,100,000,000 2017 est. -68 New Zealand $189,000,000,000 2017 est. -69 Slovakia $179,700,000,000 2017 est. -70 Belarus $179,400,000,000 2017 est. -71 Sudan $177,400,000,000 2017 est. -72 Dominican Republic $173,000,000,000 2017 est. -73 Azerbaijan $172,200,000,000 2017 est. -74 Kenya $163,700,000,000 2017 est. -75 Tanzania $162,500,000,000 2017 est. -76 Bulgaria $153,500,000,000 2017 est. -77 Guatemala $138,100,000,000 2017 est. -78 Tunisia $137,700,000,000 2017 est. -79 Cuba $137,000,000,000 2017 est. -80 Ghana $134,000,000,000 2017 est. -81 Puerto Rico $130,000,000,000 2017 est. -82 Serbia $105,700,000,000 2017 est. -83 Panama $104,100,000,000 2017 est. -84 Turkmenistan $103,700,000,000 2017 est. -85 Croatia $102,100,000,000 2017 est. -86 Cote d'Ivoire $97,160,000,000 2017 est. -87 Lithuania $91,470,000,000 2017 est. -88 Cameroon $89,540,000,000 2017 est. -89 Uganda $89,190,000,000 2017 est. -90 Jordan $89,000,000,000 2017 est. -91 Paraguay $88,910,000,000 2017 est. -92 Lebanon $88,250,000,000 2017 est. -93 Costa Rica $83,940,000,000 2017 est. -94 Bolivia $83,720,000,000 2017 est. -95 Nepal $79,190,000,000 2017 est. -96 Uruguay $78,160,000,000 2017 est. -97 Macau $77,330,000,000 2018 -98 Yemen $73,630,000,000 2017 est. -99 Slovenia $71,230,000,000 2017 est. -100 Bahrain $71,170,000,000 2017 est. -101 Afghanistan $69,450,000,000 2017 est. -102 Zambia $68,930,000,000 2017 est. -103 Congo, Democratic Republic of the $68,600,000,000 2017 est. -104 Cambodia $64,210,000,000 2017 est. -105 Luxembourg $62,110,000,000 2017 est. -106 Libya $61,970,000,000 2017 est. -107 Senegal $54,800,000,000 2017 est. -108 Latvia $54,020,000,000 2017 est. -109 El Salvador $51,170,000,000 2017 est. -110 Syria $50,280,000,000 2015 est. -111 Laos $49,340,000,000 2017 est. -112 Honduras $46,300,000,000 2017 est. -113 Bosnia and Herzegovina $44,830,000,000 2017 est. -114 Mongolia $43,540,000,000 2018 -115 Trinidad and Tobago $42,850,000,000 2017 est. -116 Estonia $41,650,000,000 2017 est. -117 Mali $41,220,000,000 2017 est. -118 Korea, North $40,000,000,000 2015 est. -119 Georgia $39,850,000,000 2017 est. -120 Madagascar $39,850,000,000 2017 est. -121 Botswana $39,010,000,000 2017 est. -122 Mozambique $37,090,000,000 2017 est. -123 Gabon $36,660,000,000 2017 est. -124 Nicaragua $36,400,000,000 2017 est. -125 Albania $36,010,000,000 2017 est. -126 Burkina Faso $35,850,000,000 2017 est. -127 Zimbabwe $34,270,000,000 2017 est. -128 Brunei $33,870,000,000 2017 est. -129 Cyprus $31,780,000,000 2017 est. -130 Equatorial Guinea $31,520,000,000 2017 est. -131 Macedonia $31,030,000,000 2017 est. -132 Papua New Guinea $30,190,000,000 2017 est. -133 Congo, Republic of the $29,390,000,000 2017 est. -134 Chad $28,620,000,000 2017 est. -135 Tajikistan $28,430,000,000 2017 est. -136 Armenia $28,340,000,000 2017 est. -137 Mauritius $28,270,000,000 2017 est. -138 Guinea $27,970,000,000 2017 est. -139 Namibia $26,600,000,000 2017 est. -140 Jamaica $26,060,000,000 2017 est. -141 Benin $25,390,000,000 2017 est. -142 Rwanda $24,680,000,000 2017 est. -143 Moldova $23,720,000,000 2017 est. -144 Kyrgyzstan $23,150,000,000 2017 est. -145 Malawi $22,420,000,000 2017 est. -146 Niger $21,860,000,000 2017 est. -147 West Bank $21,220,000,000 2014 est. -148 Somalia $20,440,000,000 2017 est. -149 South Sudan $20,010,000,000 2017 est. -150 Haiti $19,970,000,000 2017 est. -151 Kosovo $19,600,000,000 2017 est. -152 Malta $19,260,000,000 2017 est. -153 Iceland $18,180,000,000 2017 est. -154 Mauritania $17,280,000,000 2017 est. -155 Togo $12,970,000,000 2017 est. -156 Bahamas, The $12,060,000,000 2017 est. -157 Eswatini $11,600,000,000 2017 est. -158 Sierra Leone $11,550,000,000 2017 est. -159 New Caledonia $11,110,000,000 2017 est. -160 Montenegro $11,080,000,000 2017 est. -161 Eritrea $9,402,000,000 2017 est. -162 Suriname $8,688,000,000 2017 est. -163 Fiji $8,629,000,000 2017 est. -164 Burundi $8,007,000,000 2017 est. -165 Monaco $7,672,000,000 2015 est. -166 Timor-Leste $7,426,000,000 2017 est. -167 Bhutan $7,205,000,000 2017 est. -168 Maldives $6,901,000,000 2017 est. -169 Isle of Man $6,792,000,000 2015 est. -170 Lesotho $6,656,000,000 2017 est. -171 Guyana $6,301,000,000 2017 est. -172 Bermuda $6,127,000,000 2016 est. -173 Liberia $6,112,000,000 2017 est. -174 Guam $5,793,000,000 2016 est. -175 Jersey $5,569,000,000 2016 est. -176 Gambia, The $5,556,000,000 2017 est. -177 French Polynesia $5,490,000,000 2015 est. -178 Barbados $5,218,000,000 2017 est. -179 Liechtenstein $4,978,000,000 2014 est. -180 Aruba $4,158,000,000 2017 est. -181 Virgin Islands $3,872,000,000 2016 est. -182 Cabo Verde $3,777,000,000 2017 est. -183 Djibouti $3,640,000,000 2017 est. -184 Guernsey $3,465,000,000 2015 est. -185 Central African Republic $3,390,000,000 2017 est. -186 Andorra $3,327,000,000 2015 est. -187 Belize $3,218,000,000 2017 est. -188 Guinea-Bissau $3,171,000,000 2017 est. -189 Curacao $3,128,000,000 2012 est. -190 Seychelles $2,750,000,000 2017 est. -191 Saint Lucia $2,542,000,000 2017 est. -192 Cayman Islands $2,507,000,000 2014 est. -193 Greenland $2,413,000,000 2015 est. -194 Antigua and Barbuda $2,398,000,000 2017 est. -195 San Marino $2,064,000,000 2017 est. -196 Gibraltar $2,044,000,000 2014 est. -197 Faroe Islands $2,001,000,000 2014 est. -198 Grenada $1,634,000,000 2017 est. -199 Saint Kitts and Nevis $1,550,000,000 2017 est. -200 Solomon Islands $1,330,000,000 2017 est. -201 Comoros $1,319,000,000 2017 est. -202 Saint Vincent and the Grenadines $1,265,000,000 2017 est. -203 Northern Mariana Islands $1,242,000,000 2016 est. -204 Samoa $1,137,000,000 2017 est. -205 Western Sahara $906,500,000 2007 est. -206 Dominica $783,000,000 2017 est. -207 Vanuatu $772,000,000 2017 est. -208 Sao Tome and Principe $686,000,000 2017 est. -209 American Samoa $658,000,000 2016 est. -210 Turks and Caicos Islands $632,000,000 2007 est. -211 Tonga $591,000,000 2017 est. -212 Saint Martin $561,500,000 2005 est. -213 British Virgin Islands $500,000,000 2017 est. -214 Sint Maarten $365,800,000 2014 est. -215 Micronesia, Federated States of $348,000,000 2017 est. -216 Cook Islands $299,900,000 2016 est. -217 Palau $264,000,000 2017 est. -218 Saint Pierre and Miquelon $261,300,000 2015 est. -219 Kiribati $227,000,000 2017 est. -220 Falkland Islands (Islas Malvinas) $206,400,000 2015 est. -221 Marshall Islands $196,000,000 2017 est. -222 Anguilla $175,400,000 2009 est. -223 Montserrat $167,400,000 2011 est. -224 Nauru $160,000,000 2017 est. -225 Wallis and Futuna $60,000,000 2004 est. -226 Tuvalu $42,000,000 2017 est. -227 Saint Helena, Ascension, and Tristan da Cunha $31,100,000 FY09/10 est. -228 Niue $10,010,000 2003 est. -229 Tokelau $1,500,000 1993 est. diff --git a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_population.csv b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_population.csv new file mode 100644 index 00000000000..c456bce1445 --- /dev/null +++ b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_population.csv @@ -0,0 +1,238 @@ +name,slug,value,date_of_information,ranking,region +"China","china","1,416,043,270","",1,"East and Southeast Asia" +"India","india","1,409,128,296","",2,"South Asia" +"United States","united-states","341,963,408","",3,"North America" +"Indonesia","indonesia","281,562,465","",4,"East and Southeast Asia" +"Pakistan","pakistan","252,363,571","",5,"South Asia" +"Nigeria","nigeria","236,747,130","",6,"Africa" +"Brazil","brazil","220,051,512","",7,"South America" +"Bangladesh","bangladesh","168,697,184","",8,"South Asia" +"Russia","russia","140,820,810","",9,"Central Asia" +"Mexico","mexico","130,739,927","",10,"North America" +"Japan","japan","123,201,945","",11,"East and Southeast Asia" +"Ethiopia","ethiopia","118,550,298","",12,"Africa" +"Philippines","philippines","118,277,063","",13,"East and Southeast Asia" +"Congo, Democratic Republic of the","congo-democratic-republic-of-the","115,403,027","",14,"Africa" +"Egypt","egypt","111,247,248","",15,"Africa" +"Vietnam","vietnam","105,758,975","",16,"East and Southeast Asia" +"Iran","iran","88,386,937","",17,"Middle East" +"Turkey (Turkiye)","turkey-turkiye","84,119,531","",18,"Middle East" +"Germany","germany","84,119,100","",19,"Europe" +"Thailand","thailand","69,920,998","",20,"East and Southeast Asia" +"United Kingdom","united-kingdom","68,459,055","",21,"Europe" +"France","france","68,374,591","",22,"Europe" +"Tanzania","tanzania","67,462,121","",23,"Africa" +"Italy","italy","60,964,931","",24,"Europe" +"South Africa","south-africa","60,442,647","",25,"Africa" +"Kenya","kenya","58,246,378","",26,"Africa" +"Burma","burma","57,527,139","",27,"East and Southeast Asia" +"Korea, South","korea-south","52,081,799","",28,"East and Southeast Asia" +"Sudan","sudan","50,467,278","",29,"Africa" +"Colombia","colombia","49,588,357","",30,"South America" +"Uganda","uganda","49,283,041","",31,"Africa" +"Spain","spain","47,280,433","",32,"Europe" +"Algeria","algeria","47,022,473","",33,"Africa" +"Argentina","argentina","46,994,384","",34,"South America" +"Iraq","iraq","42,083,436","",35,"Middle East" +"Afghanistan","afghanistan","40,121,552","",36,"South Asia" +"Canada","canada","38,794,813","",37,"North America" +"Poland","poland","38,746,310","",38,"Europe" +"Morocco","morocco","37,387,585","",39,"Africa" +"Angola","angola","37,202,061","",40,"Africa" +"Saudi Arabia","saudi-arabia","36,544,431","",41,"Middle East" +"Uzbekistan","uzbekistan","36,520,593","",42,"Central Asia" +"Ukraine","ukraine","35,661,826","",43,"Europe" +"Ghana","ghana","34,589,092","",44,"Africa" +"Malaysia","malaysia","34,564,810","",45,"East and Southeast Asia" +"Mozambique","mozambique","33,350,954","",46,"Africa" +"Peru","peru","32,600,249","",47,"South America" +"Yemen","yemen","32,140,443","",48,"Middle East" +"Venezuela","venezuela","31,250,306","",49,"South America" +"Nepal","nepal","31,122,387","",50,"South Asia" +"Cameroon","cameroon","30,966,105","",51,"Africa" +"Cote d'Ivoire","cote-divoire","29,981,758","",52,"Africa" +"Madagascar","madagascar","29,452,714","",53,"Africa" +"Australia","australia","26,768,598","",54,"Australia and Oceania" +"Niger","niger","26,342,784","",55,"Africa" +"Korea, North","korea-north","26,298,666","",56,"East and Southeast Asia" +"Syria","syria","23,865,423","",57,"Middle East" +"Taiwan","taiwan","23,595,274","",58,"East and Southeast Asia" +"Burkina Faso","burkina-faso","23,042,199","",59,"Africa" +"Mali","mali","21,990,607","",60,"Africa" +"Sri Lanka","sri-lanka","21,982,608","",61,"South Asia" +"Malawi","malawi","21,763,309","",62,"Africa" +"Zambia","zambia","20,799,116","",63,"Africa" +"Kazakhstan","kazakhstan","20,260,006","",64,"Central Asia" +"Chad","chad","19,093,595","",65,"Africa" +"Senegal","senegal","18,847,519","",66,"Africa" +"Chile","chile","18,664,652","",67,"South America" +"Ecuador","ecuador","18,309,984","",68,"South America" +"Guatemala","guatemala","18,255,216","",69,"Central America and the Caribbean" +"Romania","romania","18,148,155","",70,"Europe" +"Netherlands","netherlands","17,772,378","",71,"Europe" +"Zimbabwe","zimbabwe","17,150,352","",72,"Africa" +"Cambodia","cambodia","17,063,669","",73,"East and Southeast Asia" +"Benin","benin","14,697,052","",74,"Africa" +"Guinea","guinea","13,986,179","",75,"Africa" +"Rwanda","rwanda","13,623,302","",76,"Africa" +"Burundi","burundi","13,590,102","",77,"Africa" +"Somalia","somalia","13,017,273","",78,"Africa" +"South Sudan","south-sudan","12,703,714","",79,"Africa" +"Bolivia","bolivia","12,311,974","",80,"South America" +"Tunisia","tunisia","12,048,847","",81,"Africa" +"Belgium","belgium","11,977,634","",82,"Europe" +"Haiti","haiti","11,753,943","",83,"Central America and the Caribbean" +"Jordan","jordan","11,174,024","",84,"Middle East" +"Cuba","cuba","10,966,038","",85,"Central America and the Caribbean" +"Czechia","czechia","10,837,890","",86,"Europe" +"Dominican Republic","dominican-republic","10,815,857","",87,"Central America and the Caribbean" +"Azerbaijan","azerbaijan","10,650,239","",88,"Middle East" +"Sweden","sweden","10,589,835","",89,"Europe" +"Greece","greece","10,461,091","",90,"Europe" +"Tajikistan","tajikistan","10,394,063","",91,"Central Asia" +"Portugal","portugal","10,207,177","",92,"Europe" +"Papua New Guinea","papua-new-guinea","10,046,233","",93,"East and Southeast Asia" +"United Arab Emirates","united-arab-emirates","10,032,213","",94,"Middle East" +"Hungary","hungary","9,855,745","",95,"Europe" +"Honduras","honduras","9,529,188","",96,"Central America and the Caribbean" +"Belarus","belarus","9,501,451","",97,"Europe" +"Israel","israel","9,402,617","",98,"Middle East" +"Sierra Leone","sierra-leone","9,121,049","",99,"Africa" +"Austria","austria","8,967,982","",100,"Europe" +"Togo","togo","8,917,994","",101,"Africa" +"Switzerland","switzerland","8,860,574","",102,"Europe" +"Laos","laos","7,953,556","",103,"East and Southeast Asia" +"Paraguay","paraguay","7,522,549","",104,"South America" +"Libya","libya","7,361,263","",105,"Africa" +"Hong Kong","hong-kong","7,297,821","",106,"East and Southeast Asia" +"Bulgaria","bulgaria","6,782,659","",107,"Europe" +"Nicaragua","nicaragua","6,676,948","",108,"Central America and the Caribbean" +"Serbia","serbia","6,652,212","",109,"Europe" +"El Salvador","el-salvador","6,628,702","",110,"Central America and the Caribbean" +"Eritrea","eritrea","6,343,956","",111,"Africa" +"Kyrgyzstan","kyrgyzstan","6,172,101","",112,"Central Asia" +"Congo, Republic of the","congo-republic-of-the","6,097,665","",113,"Africa" +"Singapore","singapore","6,028,459","",114,"East and Southeast Asia" +"Denmark","denmark","5,973,136","",115,"Europe" +"Turkmenistan","turkmenistan","5,744,151","",116,"Central Asia" +"Central African Republic","central-african-republic","5,650,957","",117,"Africa" +"Finland","finland","5,626,414","",118,"Europe" +"Slovakia","slovakia","5,563,649","",119,"Europe" +"Norway","norway","5,509,733","",120,"Europe" +"Liberia","liberia","5,437,249","",121,"Africa" +"Lebanon","lebanon","5,364,482","",122,"Middle East" +"Costa Rica","costa-rica","5,265,575","",123,"Central America and the Caribbean" +"Ireland","ireland","5,233,461","",124,"Europe" +"New Zealand","new-zealand","5,161,211","",125,"Australia and Oceania" +"Georgia","georgia","4,900,961","",126,"Middle East" +"Panama","panama","4,470,241","",127,"Central America and the Caribbean" +"Mauritania","mauritania","4,328,040","",128,"Africa" +"Croatia","croatia","4,150,116","",129,"Europe" +"Oman","oman","3,901,992","",130,"Middle East" +"Bosnia and Herzegovina","bosnia-and-herzegovina","3,798,671","",131,"Europe" +"Moldova","moldova","3,599,528","",132,"Europe" +"Uruguay","uruguay","3,425,330","",133,"South America" +"Mongolia","mongolia","3,281,676","",134,"East and Southeast Asia" +"West Bank","west-bank","3,243,369","",135,"Middle East" +"Kuwait","kuwait","3,138,355","",136,"Middle East" +"Albania","albania","3,107,100","",137,"Europe" +"Puerto Rico","puerto-rico","3,019,450","",138,"Central America and the Caribbean" +"Armenia","armenia","2,976,765","",139,"Middle East" +"Jamaica","jamaica","2,823,713","",140,"Central America and the Caribbean" +"Namibia","namibia","2,803,660","",141,"Africa" +"Lithuania","lithuania","2,628,186","",142,"Europe" +"Qatar","qatar","2,552,088","",143,"Middle East" +"Gambia, The","gambia-the","2,523,327","",144,"Africa" +"Gabon","gabon","2,455,105","",145,"Africa" +"Botswana","botswana","2,450,668","",146,"Africa" +"Lesotho","lesotho","2,227,548","",147,"Africa" +"Gaza Strip","gaza-strip","2,141,643","",148,"Middle East" +"North Macedonia","north-macedonia","2,135,622","",149,"Europe" +"Guinea-Bissau","guinea-bissau","2,132,325","",150,"Africa" +"Slovenia","slovenia","2,097,893","",151,"Europe" +"Kosovo","kosovo","1,977,093","",152,"Europe" +"Latvia","latvia","1,801,246","",153,"Europe" +"Equatorial Guinea","equatorial-guinea","1,795,834","",154,"Africa" +"Bahrain","bahrain","1,566,888","",155,"Middle East" +"Timor-Leste","timor-leste","1,506,909","",156,"East and Southeast Asia" +"Trinidad and Tobago","trinidad-and-tobago","1,408,966","",157,"Central America and the Caribbean" +"Cyprus","cyprus","1,320,525","",158,"Europe" +"Mauritius","mauritius","1,310,504","",159,"Africa" +"Estonia","estonia","1,193,791","",160,"Europe" +"Eswatini","eswatini","1,138,089","",161,"Africa" +"Djibouti","djibouti","994,974","",162,"Africa" +"Fiji","fiji","951,611","",163,"Australia and Oceania" +"Comoros","comoros","900,141","",164,"Africa" +"Bhutan","bhutan","884,546","",165,"South Asia" +"Guyana","guyana","794,099","",166,"South America" +"Solomon Islands","solomon-islands","726,799","",167,"Australia and Oceania" +"Luxembourg","luxembourg","671,254","",168,"Europe" +"Suriname","suriname","646,758","",169,"South America" +"Macau","macau","644,426","",170,"East and Southeast Asia" +"Cabo Verde","cabo-verde","611,014","",171,"Africa" +"Montenegro","montenegro","599,849","",172,"Europe" +"Brunei","brunei","491,900","",173,"East and Southeast Asia" +"Malta","malta","469,730","",174,"Europe" +"Belize","belize","415,789","",175,"Central America and the Caribbean" +"Bahamas, The","bahamas-the","410,862","",176,"Central America and the Caribbean" +"Maldives","maldives","388,858","",177,"South Asia" +"Iceland","iceland","364,036","",178,"Europe" +"Vanuatu","vanuatu","318,007","",179,"Australia and Oceania" +"New Caledonia","new-caledonia","304,167","",180,"Australia and Oceania" +"Barbados","barbados","304,139","",181,"Central America and the Caribbean" +"French Polynesia","french-polynesia","303,540","",182,"Australia and Oceania" +"Sao Tome and Principe","sao-tome-and-principe","223,561","",183,"Africa" +"Samoa","samoa","208,853","",184,"Australia and Oceania" +"Guam","guam","169,532","",185,"Australia and Oceania" +"Saint Lucia","saint-lucia","168,038","",186,"Central America and the Caribbean" +"Curacao","curacao","153,289","",187,"Central America and the Caribbean" +"Aruba","aruba","125,063","",188,"Central America and the Caribbean" +"Kiribati","kiribati","116,545","",189,"Australia and Oceania" +"Grenada","grenada","114,621","",190,"Central America and the Caribbean" +"Tonga","tonga","104,889","",191,"Australia and Oceania" +"Virgin Islands","virgin-islands","104,377","",192,"Central America and the Caribbean" +"Jersey","jersey","103,387","",193,"Europe" +"Antigua and Barbuda","antigua-and-barbuda","102,634","",194,"Central America and the Caribbean" +"Saint Vincent and the Grenadines","saint-vincent-and-the-grenadines","100,647","",195,"Central America and the Caribbean" +"Micronesia, Federated States of","micronesia-federated-states-of","99,603","",196,"Australia and Oceania" +"Seychelles","seychelles","98,187","",197,"Africa" +"Isle of Man","isle-of-man","92,269","",198,"Europe" +"Andorra","andorra","85,370","",199,"Europe" +"Marshall Islands","marshall-islands","82,011","",200,"Australia and Oceania" +"Dominica","dominica","74,661","",201,"Central America and the Caribbean" +"Bermuda","bermuda","72,800","",202,"North America" +"Guernsey","guernsey","67,787","",203,"Europe" +"Cayman Islands","cayman-islands","66,653","",204,"Central America and the Caribbean" +"Turks and Caicos Islands","turks-and-caicos-islands","60,439","",205,"Central America and the Caribbean" +"Greenland","greenland","57,751","",206,"North America" +"Saint Kitts and Nevis","saint-kitts-and-nevis","55,133","",207,"Central America and the Caribbean" +"Faroe Islands","faroe-islands","52,933","",208,"Europe" +"Northern Mariana Islands","northern-mariana-islands","51,118","",209,"Australia and Oceania" +"Sint Maarten","sint-maarten","46,215","",210,"Central America and the Caribbean" +"American Samoa","american-samoa","43,895","",211,"Australia and Oceania" +"Liechtenstein","liechtenstein","40,272","",212,"Europe" +"British Virgin Islands","british-virgin-islands","40,102","",213,"Central America and the Caribbean" +"San Marino","san-marino","35,095","",214,"Europe" +"Saint Martin","saint-martin","32,996","",215,"Central America and the Caribbean" +"Monaco","monaco","31,813","",216,"Europe" +"Gibraltar","gibraltar","29,683","",217,"Europe" +"Palau","palau","21,864","",218,"Australia and Oceania" +"Anguilla","anguilla","19,416","",219,"Central America and the Caribbean" +"Wallis and Futuna","wallis-and-futuna","15,964","",220,"Australia and Oceania" +"Tuvalu","tuvalu","11,733","",221,"Australia and Oceania" +"Nauru","nauru","9,892","",222,"Australia and Oceania" +"Saint Helena, Ascension, and Tristan da Cunha","saint-helena-ascension-and-tristan-da-cunha","7,943","",223,"Africa" +"Cook Islands","cook-islands","7,761","",224,"Australia and Oceania" +"Saint Barthelemy","saint-barthelemy","7,086","",225,"Central America and the Caribbean" +"Montserrat","montserrat","5,468","",226,"Central America and the Caribbean" +"Saint Pierre and Miquelon","saint-pierre-and-miquelon","5,132","",227,"North America" +"Falkland Islands (Islas Malvinas)","falkland-islands-islas-malvinas","3,662","2021",228,"South America" +"Svalbard","svalbard","2,926","2021",229,"Europe" +"Niue","niue","2,000","2022",230,"Australia and Oceania" +"Norfolk Island","norfolk-island","1,748","2016",231,"Australia and Oceania" +"Christmas Island","christmas-island","1,692","",232,"Australia and Oceania" +"Tokelau","tokelau","1,647","2019",233,"Australia and Oceania" +"Paracel Islands","paracel-islands","1,440","July 2014",234,"East and Southeast Asia" +"Holy See (Vatican City)","holy-see-vatican-city","1,000","2022",235,"Europe" +"Cocos (Keeling) Islands","cocos-keeling-islands","593","",236,"Australia and Oceania" +"Pitcairn Islands","pitcairn-islands","50","2021",237,"Australia and Oceania" \ No newline at end of file diff --git a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_population.txt b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_population.txt deleted file mode 100644 index c22cc85bd7a..00000000000 --- a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/factbook_population.txt +++ /dev/null @@ -1,238 +0,0 @@ -1 China 1,394,015,977 July 2020 est. -2 India 1,326,093,247 July 2020 est. -3 United States 332,639,102 July 2020 est. -4 Indonesia 267,026,366 July 2020 est. -5 Pakistan 233,500,636 July 2020 est. -6 Nigeria 214,028,302 July 2020 est. -7 Brazil 211,715,973 July 2020 est. -8 Bangladesh 162,650,853 July 2020 est. -9 Russia 141,722,205 July 2020 est. -10 Mexico 128,649,565 July 2020 est. -11 Japan 125,507,472 July 2020 est. -12 Philippines 109,180,815 July 2020 est. -13 Ethiopia 108,113,150 July 2020 est. -14 Egypt 104,124,440 July 2020 est. -15 Congo, Democratic Republic of the 101,780,263 July 2020 est. -16 Vietnam 98,721,275 July 2020 est. -17 Iran 84,923,314 July 2020 est. -18 Turkey 82,017,514 July 2020 est. -19 Germany 80,159,662 July 2020 est. -20 Thailand 68,977,400 July 2020 est. -21 France 67,848,156 July 2020 est. -22 United Kingdom 65,761,117 July 2020 est. -23 Italy 62,402,659 July 2020 est. -24 Tanzania 58,552,845 July 2020 est. -25 Burma 56,590,071 July 2020 est. -26 South Africa 56,463,617 July 2020 est. -27 Kenya 53,527,936 July 2020 est. -28 Korea, South 51,835,110 July 2020 est. -29 Spain 50,015,792 July 2020 est. -30 Colombia 49,084,841 July 2020 est. -31 Sudan 45,561,556 July 2020 est. -32 Argentina 45,479,118 July 2020 est. -33 Ukraine 43,922,939 July 2020 est. -34 Uganda 43,252,966 July 2020 est. -35 Algeria 42,972,878 July 2020 est. -36 Iraq 38,872,655 July 2020 est. -37 Poland 38,282,325 July 2020 est. -38 Canada 37,694,085 July 2020 est. -39 Afghanistan 36,643,815 July 2020 est. -40 Morocco 35,561,654 July 2020 est. -41 Saudi Arabia 34,173,498 July 2020 est. -42 Malaysia 32,652,083 July 2020 est. -43 Angola 32,522,339 July 2020 est. -44 Peru 31,914,989 July 2020 est. -45 Uzbekistan 30,565,411 July 2020 est. -46 Nepal 30,327,877 July 2020 est. -47 Mozambique 30,098,197 July 2020 est. -48 Yemen 29,884,405 July 2020 est. -49 Ghana 29,340,248 July 2020 est. -50 Venezuela 28,644,603 July 2020 est. -51 Cameroon 27,744,989 July 2020 est. -52 Cote d'Ivoire 27,481,086 July 2020 est. -53 Madagascar 26,955,737 July 2020 est. -54 Korea, North 25,643,466 July 2020 est. -55 Australia 25,466,459 July 2020 est. -56 Taiwan 23,603,049 July 2020 est. -57 Sri Lanka 22,889,201 July 2020 est. -58 Niger 22,772,361 July 2020 est. -59 Romania 21,302,893 July 2020 est. -60 Malawi 21,196,629 July 2020 est. -61 Burkina Faso 20,835,401 July 2020 est. -62 Mali 19,553,397 July 2020 est. -63 Syria 19,398,448 July 2020 est. -64 Kazakhstan 19,091,949 July 2020 est. -65 Chile 18,186,770 July 2020 est. -66 Zambia 17,426,623 July 2020 est. -67 Netherlands 17,280,397 July 2020 est. -68 Guatemala 17,153,288 July 2020 est. -69 Cambodia 16,926,984 July 2020 est. -70 Ecuador 16,904,867 July 2020 est. -71 Chad 16,877,357 July 2020 est. -72 Senegal 15,736,368 July 2020 est. -73 Zimbabwe 14,546,314 July 2020 est. -74 Benin 12,864,634 July 2020 est. -75 Rwanda 12,712,431 July 2020 est. -76 Guinea 12,527,440 July 2020 est. -77 Burundi 11,865,821 July 2020 est. -78 Somalia 11,757,124 July 2020 est. -79 Tunisia 11,721,177 July 2020 est. -80 Belgium 11,720,716 July 2020 est. -81 Bolivia 11,639,909 July 2020 est. -82 Haiti 11,067,777 July 2020 est. -83 Cuba 11,059,062 July 2020 est. -84 Jordan 10,820,644 July 2020 est. -85 Czechia 10,702,498 July 2020 est. -86 Greece 10,607,051 July 2020 est. -87 South Sudan 10,561,244 July 2020 est. -88 Dominican Republic 10,499,707 July 2020 est. -89 Portugal 10,302,674 July 2020 est. -90 Azerbaijan 10,205,810 July 2020 est. -91 Sweden 10,202,491 July 2020 est. -92 United Arab Emirates 9,992,083 July 2020 est. -93 Hungary 9,771,827 July 2020 est. -94 Belarus 9,477,918 July 2020 est. -95 Honduras 9,235,340 July 2020 est. -96 Tajikistan 8,873,669 July 2020 est. -97 Austria 8,859,449 July 2020 est. -98 Israel 8,675,475 July 2020 est. -99 Togo 8,608,444 July 2020 est. -100 Switzerland 8,403,994 July 2020 est. -101 Laos 7,447,396 July 2020 est. -102 Papua New Guinea 7,259,456 July 2020 est. -103 Hong Kong 7,249,907 July 2020 est. -104 Paraguay 7,191,685 July 2020 est. -105 Serbia 7,012,165 July 2020 est. -106 Bulgaria 6,966,899 July 2020 est. -107 Libya 6,890,535 July 2020 est. -108 Sierra Leone 6,624,933 July 2020 est. -109 El Salvador 6,481,102 July 2020 est. -110 Singapore 6,209,660 July 2020 est. -111 Nicaragua 6,203,441 July 2020 est. -112 Eritrea 6,081,196 July 2020 est. -113 Central African Republic 5,990,855 July 2020 est. -114 Kyrgyzstan 5,964,897 July 2020 est. -115 Denmark 5,869,410 July 2020 est. -116 Finland 5,571,665 July 2020 est. -117 Turkmenistan 5,528,627 July 2020 est. -118 Lebanon 5,469,612 July 2020 est. -119 Norway 5,467,439 July 2020 est. -120 Slovakia 5,440,602 July 2020 est. -121 Congo, Republic of the 5,293,070 July 2020 est. -122 Ireland 5,176,569 July 2020 est. -123 Costa Rica 5,097,988 July 2020 est. -124 Liberia 5,073,296 July 2020 est. -125 New Zealand 4,925,477 July 2020 est. -126 Oman 4,664,844 December 2019 est. -127 Croatia 4,227,746 July 2020 est. -128 Mauritania 4,005,475 July 2020 est. -129 Georgia 3,997,000 2019 est. est. -130 Panama 3,894,082 July 2020 est. -131 Bosnia and Herzegovina 3,835,586 July 2020 est. -132 Uruguay 3,387,605 July 2020 est. -133 Moldova 3,364,496 July 2020 est. -134 Puerto Rico 3,189,068 July 2020 est. -135 Mongolia 3,168,026 July 2020 est. -136 Albania 3,074,579 July 2020 est. -137 Armenia 3,021,324 July 2020 est. -138 Kuwait 2,993,706 July 2020 est. -139 West Bank 2,900,034 July 2020 est. -140 Jamaica 2,808,570 July 2020 est. -141 Lithuania 2,731,464 July 2020 est. -142 Namibia 2,630,073 July 2020 est. -143 Qatar 2,444,174 July 2020 est. -144 Botswana 2,317,233 July 2020 est. -145 Gabon 2,230,908 July 2020 est. -146 Gambia, The 2,173,999 July 2020 est. -147 Macedonia 2,125,971 July 2020 est. -148 Slovenia 2,102,678 July 2020 est. -149 Lesotho 1,969,334 July 2020 est. -150 Kosovo 1,932,774 July 2020 est. -151 Guinea-Bissau 1,927,104 July 2020 est. -152 Gaza Strip 1,918,221 July 2020 est. -153 Latvia 1,881,232 July 2020 est. -154 Bahrain 1,505,003 July 2020 est. -155 Timor-Leste 1,383,723 July 2020 est. -156 Mauritius 1,379,365 July 2020 est. -157 Cyprus 1,266,676 July 2020 est. -158 Estonia 1,228,624 July 2020 est. -159 Trinidad and Tobago 1,208,789 July 2020 est. -160 Eswatini 1,104,479 July 2020 est. -161 Fiji 935,974 July 2020 est. -162 Djibouti 921,804 July 2020 est. -163 Comoros 846,281 July 2020 est. -164 Equatorial Guinea 836,178 July 2020 est. -165 Bhutan 782,318 July 2020 est. -166 Guyana 750,204 July 2020 est. -167 Solomon Islands 685,097 July 2020 est. -168 Western Sahara 652,271 July 2020 est. -169 Luxembourg 628,381 July 2020 est. -170 Macau 614,458 July 2020 est. -171 Montenegro 609,859 July 2020 est. -172 Suriname 609,569 July 2020 est. -173 Cabo Verde 583,255 July 2020 est. -174 Brunei 464,478 July 2020 est. -175 Malta 457,267 July 2020 est. -176 Belize 399,598 July 2020 est. -177 Maldives 391,904 July 2020 est. -178 Iceland 350,734 July 2020 est. -179 Bahamas, The 337,721 July 2020 est. -180 Vanuatu 298,333 July 2020 est. -181 French Polynesia 295,121 July 2020 est. -182 Barbados 294,560 July 2020 est. -183 New Caledonia 290,009 July 2020 est. -184 Sao Tome and Principe 211,122 July 2020 est. -185 Samoa 203,774 July 2020 est. -186 Guam 168,485 July 2020 est. -187 Saint Lucia 166,487 July 2020 est. -188 Curacao 151,345 July 2020 est. -189 Aruba 119,428 July 2020 est. -190 Grenada 113,094 July 2020 est. -191 Kiribati 111,796 July 2020 est. -192 Virgin Islands 106,235 July 2020 est. -193 Tonga 106,095 July 2020 est. -194 Micronesia, Federated States of 102,436 July 2020 est. -195 Saint Vincent and the Grenadines 101,390 July 2020 est. -196 Jersey 101,073 July 2020 est. -197 Antigua and Barbuda 98,179 July 2020 est. -198 Seychelles 95,981 July 2020 est. -199 Isle of Man 90,499 July 2020 est. -200 Marshall Islands 77,917 July 2020 est. -201 Andorra 77,000 2019 est. -202 Dominica 74,243 July 2020 est. -203 Bermuda 71,750 July 2020 est. -204 Guernsey 67,052 July 2020 est. -205 Cayman Islands 61,944 July 2020 est. -206 Greenland 57,616 July 2020 est. -207 Turks and Caicos Islands 55,926 July 2020 est. -208 Saint Kitts and Nevis 53,821 July 2020 est. -209 Faroe Islands 51,628 July 2020 est. -210 Northern Mariana Islands 51,433 July 2020 est. -211 American Samoa 49,437 July 2020 est. -212 Sint Maarten 43,847 July 2020 est. -213 Liechtenstein 39,137 July 2020 est. -214 Monaco 39,000 2019 est. -215 British Virgin Islands 37,381 July 2020 est. -216 San Marino 34,232 July 2020 est. -217 Saint Martin 32,556 July 2020 est. -218 Gibraltar 29,581 July 2020 est. -219 Palau 21,685 July 2020 est. -220 Anguilla 18,090 July 2020 est. -221 Wallis and Futuna 15,854 July 2020 est. -222 Tuvalu 11,342 July 2020 est. -223 Nauru 11,000 2019 est. -224 Cook Islands 8,574 July 2020 est. -225 Saint Helena, Ascension, and Tristan da Cunha 7,862 July 2020 est. -226 Saint Barthelemy 7,122 July 2020 est. -227 Montserrat 5,373 July 2020 est. -228 Saint Pierre and Miquelon 5,347 July 2020 est. -229 Falkland Islands (Islas Malvinas) 3,198 2016 est. -230 Svalbard 2,926 July 2019 est. -231 Christmas Island 2,205 2016 est. -232 Niue 2,000 2019 -233 Norfolk Island 1,748 2016 est. -234 Tokelau 1,647 2019 est. est. -235 Paracel Islands 1,440 2014 est. -236 Holy See (Vatican City) 1,000 2019 est. -237 Cocos (Keeling) Islands 596 July 2014 est. -238 Pitcairn Islands 50 2020 est. est. diff --git a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/other_country_data.txt b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/other_country_data.txt index 408a985cf74..c5826a089c3 100644 --- a/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/other_country_data.txt +++ b/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/external/other_country_data.txt @@ -142,3 +142,11 @@ SX;Sint Maarten (Dutch part);literacy;NL;reason SS;South Sudan;gdp-ppp;$120000000000;worldbank-blog YT;Mayotte;population;194000;reason + +# These values are missing from the CIA Factbook as of August 2024 +AI;Anguilla;gdp-ppp;$175400000;2009 estimate from older version of CIA Factbook +EH;Western Sahara;population;652271;July 2020 estimate from older version of CIA Factbook +EH;Western Sahara;gdp-ppp;$906500000;2007 estimate from older version of CIA Factbook +MS;Montserrat;gdp-ppp;$167400000;2011 estimate from older version of CIA Factbook +SH;Saint Helena, Ascension and Tristan da Cunha;gdp-ppp;$31100000;FY09/10 estimate from older version of CIA Factbook +WF;Wallis and Futuna;gdp-ppp;$60000000;2004 estimate from older version of CIA Factbook From 46b2c58c1c45b57a847d44924d3ace42130647f7 Mon Sep 17 00:00:00 2001 From: Conrad Nied Date: Thu, 15 Aug 2024 15:02:35 -0700 Subject: [PATCH 5/5] CLDR-17884 Style updates --- .../org/unicode/cldr/tool/AddPopulationData.java | 15 ++++++++++----- .../org/unicode/cldr/tool/UnLiteracyParser.java | 3 ++- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java index c7a9a625bf7..2647c51d2e8 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/AddPopulationData.java @@ -203,8 +203,8 @@ private static void showCountryData(String country) { } /** - * Gets the percent of people that can read in a particular country - * Values are in the range 0 to 100 + * Gets the percent of people that can read in a particular country. Values are in the range 0 + * to 100 */ public static Double getLiteracy(String country) { return firstNonZero( @@ -282,7 +282,7 @@ private static void loadFactbookInfo(String filename, final Counter2 fac @Override public boolean handle(String line) { String[] pieces = splitCommaSeparated(line); - String countryName = FactbookLine.CountryName.get(pieces); + String countryName = FactbookLine.CountryName.get(pieces); if (countryName.equals("name")) { return false; } @@ -398,7 +398,9 @@ public boolean handle(String line) { return false; } code = code.toUpperCase(Locale.ENGLISH); - String valueString = FBLiteracy.Percent.get(pieces).trim(); // Values are in the range 0 to 100 + String valueString = + FBLiteracy.Percent.get(pieces) + .trim(); // Values are in the range 0 to 100 double percent = Double.parseDouble(valueString); factbook_literacy.put(code, percent); if (ADD_POP) { @@ -524,7 +526,10 @@ static List> getUnLiteracy(Output hadErr) throws I continue; } double total = literate + illiterate; - double percent = ((double) literate) * 100 / total; // Multiply by 100 to put values in range 0 to 100 + double percent = + ((double) literate) + * 100 + / total; // Multiply by 100 to put values in range 0 to 100 result.add(Pair.of(code, percent)); } if (result.isEmpty()) { diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/UnLiteracyParser.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/UnLiteracyParser.java index f3138ba083d..c90d868a3a1 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/UnLiteracyParser.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/UnLiteracyParser.java @@ -183,7 +183,8 @@ private void handleRecord() { final Long new_value = getLongValue(); final Long old_value = pa.perLiteracy.put(literacy, new_value); if (old_value != null) { - // Suriname is known to include duplicate records, 1 normal and 1 "Excluding the institutional population" + // Suriname is known to include duplicate records, 1 normal and 1 "Excluding the + // institutional population" // Resolve this by taking higher value if (country.equals("Suriname")) { pa.perLiteracy.put(literacy, Math.max(old_value, new_value));