Skip to content

Instantly share code, notes, and snippets.

@msbarry
Last active October 20, 2016 16:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msbarry/9911363 to your computer and use it in GitHub Desktop.
Save msbarry/9911363 to your computer and use it in GitHub Desktop.
World Health Scatterplot
license: mit

This visualization lets you explore per-country World Health Organization statistics. Attributes of each country are mapped to x coordinates, y coordinates, and circle radius (color always represents continent). Click on the controls on the left to change axis and radius attributes and scales as well as the interpolation function and mode.

The visualization also demonstrates several interaction techniques discussed in chapter 11 of Interactive Data Visualization by Ward, Grinstein, and Keim:

  1. Scaling and translating data data to fit a range of values (data-space transformation, page 339)
  2. Configurable exponential/log scaling to spread or compress distortion of data (data-space transformation, page 339)
  3. Animating transformations using linear, ease, sinusoidal, and exponential interpolation (page 346-347)

Data courtesy of the World Health Organization

<!DOCTYPE html>
<title>World Health Statistics by Country</title>
<style type="text/css">
body {
font-size: 12px;
font-family: Arial;
width: 940px;
margin: 0 auto;
text-align: center;
}
#container {
margin: 0 auto;
text-align: left;
}
#chart {
position: relative;
}
svg {
font: 10px sans-serif;
}
div, form {
margin: 0;
padding: 0;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
text {
font: 10px sans-serif;
}
td {
border-top: none;
border-bottom: none;
margin: 0;
padding: 0;
}
tr {
margin: 0;
padding: 0;
}
.left {
width: 64%;
}
.header {
font-weight: bold;
margin-top: 5px;
}
.right {
width: 34%;
float: right;
}
#controls {
height: 530px;
overflow: scroll;
}
a {
text-decoration: none;
padding-right: 3px;
color: #ccc;
font-weight: bold;
}
.selected {
color: black;
}
#error {
font-size: 10px;
color: darkRed;
}
.label {
font-size: 10px;
}
.country {
fill-opacity: 0.5;
stroke: #555;
stroke-opacity: 0.5;
}
.country:hover {
fill-opacity: 1;
stroke-opacity: 1;
}
.tip {
position: absolute;
pointer-events: none;
background-color: white;
z-index: 100;
box-shadow: 0 4px 8px rgba(0,0,0,.2);
border: 1px solid rgba(0,0,0,.3);
top: -100px;
left: -100px;
padding: 2px 5px 5px 0;
}
.tip .row {
width: 100%;
padding: 0;
margin: 5px 0 0 5px;
}
.tip .country {
font-weight: bold;
margin-bottom: 4px;
}
.tip .value {
font-weight: bold;
}
.tip .units {
color: #888;
}
</style>
<body>
<div id="container">
<form id="controls" class="right"></form>
<div id="chart" class="left">
<div class="tip">
<div class="country row">Country</div>
<div class="x row">
<span class="name">label</span><br>
<span class="value">value</span> <span class="units">units</span>
</div>
<div class="y row">
<span class="name">label</span><br>
<span class="value">value</span> <span class="units">units</span>
</div>
</div>
</div>
<div id="error" class="left"></div>
<div class="right">Scroll down for more attributes...</div>
</div>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script>
var margin = {top: 10, right: 10, bottom: 10, left: 60},
width = Math.round(0.59 * 940) - margin.left - margin.right,
height = 500 - margin.top - margin.bottom,
transitionDuration = 1000,
maxRadius = 7,
minRadius = 1;
var svg = d3.select("#chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
/////////// Read in and format the data
d3.csv("who.json", clean, function(data) {
var drawn = false;
var cols = getColumns(data);
var form = d3.select('#controls');
/////////// Draw the interpolation functions
var funcs = [
{value: 'linear'},
{value: 'cubic'},
{value: 'sin'},
{value: 'exp'}
];
var func;
header('Interploation Function');
var funcTable = table(funcs);
row(funcTable, funcs, '', 'interp-func');
funcTable.selectAll('a').on('click', selectFunc);
function selectFunc(d) {
func = d.col.value;
funcTable.selectAll('a').classed('selected', function (other) {
return other.col.value === func;
});
}
selectFunc({col:funcs[1]});
/////////// Draw the interpolation modes
var modes = [
{value: 'in'},
{value: 'out'},
{value: 'in-out'}
];
var mode;
header('Interploation Mode');
var modeTable = table(modes);
row(modeTable, modes, '', 'interp-mode');
modeTable.selectAll('a').on('click', selectMode);
function selectMode(d) {
mode = d.col.value;
modeTable.selectAll('a').classed('selected', function (other) {
return other.col.value === mode;
});
}
selectMode({col:modes[2]});
/////////// Draw the scales
var scales = [
{value: 'linear', scale: function () { return d3.scale.linear(); } },
{value: 'pow(2)', scale: function () { return d3.scale.pow().exponent(2); } },
{value: 'sqrt', scale: function () { return d3.scale.sqrt(); } },
{value: 'log', scale: function () { return d3.scale.log(); } },
];
var scale = {};
header('Axis Scale');
var scaleTable = table(scales);
row(scaleTable, scales, 'X', 'x-scale');
row(scaleTable, scales, 'Y', 'y-scale');
row(scaleTable, scales, 'Size', 'size-scale');
scaleTable.selectAll('a').on('click', selectScale);
function selectScale(d) {
scale[d.row] = d.col;
scaleTable.selectAll('a.' + d.row)
.classed('selected', function (other) {
return other.col.value === d.col.value;
});
redraw();
}
selectScale({col:scales[0],row:'x-scale'});
selectScale({col:scales[0],row:'y-scale'});
selectScale({col:scales[2],row:'size-scale'});
/////////// Draw the attribute mappings
var attrs = [
{value: 'x'},
{value: 'y'},
{value: 'radius'}
];
var attributes = {};
header('Attribute to Display Mapping');
var colsTable = table('', attrs);
cols.forEach(function (col) {
row(colsTable, attrs, col.name, col);
});
colsTable.selectAll('a').on('click', selectAttribute);
function selectAttribute(d) {
attributes[d.col.value] = d.row;
colsTable.selectAll('a.' + d.col.value)
.classed('selected', function (other) {
return other.row.name === d.row.name;
});
redraw();
}
selectAttribute({row:findAttr('fertility rate'),col:attrs[0]});
selectAttribute({row:findAttr('Life expectancy at birth male'),col:attrs[1]});
selectAttribute({row:findAttr('Income per person'),col:attrs[2]});
function findAttr(search) {
var lower = search.toLowerCase();
return cols.filter(function (attr) {
return attr.name.toLowerCase().indexOf(lower) > -1;
})[0];
}
/////////// Utilities
function header(text) {
form.append('div').text(text).attr('class', 'header');
}
function table(data) {
var table = form.append('table')
return table;
}
function row(table, data, display, name) {
var row = table.append('tr');
row.append('td').text(display);
row.selectAll('td.option')
.data(function (rowData) {
return data.map(function (colData) {
return {
row: name,
col: colData
};
});
})
.enter()
.append('td')
.attr('class', 'option')
.append('a')
.attr('href', '#')
.attr('class', function (d) {
return [
name,
d.row,
d.col.value
].filter(function (d) { return typeof d === 'string'; }).join(" ");
})
.text(function (d) { return d.col.value })
.on('click.preventDefault', function () { d3.event.preventDefault(); });
}
/////////// Render the scatterplot
drawn = true;
var colorScale = d3.scale.category10();
var xAxis = d3.svg.axis()
.tickFormat(d3.format(',s'))
.orient("bottom");
var yAxis = d3.svg.axis()
.tickFormat(d3.format(',s'))
.orient("left");
svg.append('g')
.attr('class', 'x axis')
.attr("transform", "translate(0," + (height+25) + ")")
.append('text')
.attr('x', width)
.attr('dy', -3)
.style('text-anchor', 'end')
.attr('class', 'x label');
svg.append('g')
.attr('class', 'y axis')
.attr("transform", "translate(-25,0)")
.append('text')
.attr('transform', 'rotate(-90)')
.attr('dy', 10)
.style('text-anchor', 'end')
.attr('class', 'y label');
function place(selection) {
selection
.attr('r', function (d) { return radius(d[attributes.radius.key]); })
.attr('cx', function (d) { return x(d[attributes.x.key]); })
.attr('cy', function (d) { return y(d[attributes.y.key]); });
}
var x, y, radius;
function redraw() {
if (drawn) {
var easingFunc = func + '-' + mode;
x = scale['x-scale'].scale();
y = scale['y-scale'].scale();
radius = scale['size-scale'].scale();
var errors = [];
var xRange = d3.extent(data, function (d) { return d[attributes.x.key]; });
var yRange = d3.extent(data, function (d) { return d[attributes.y.key]; });
var radiusRange = d3.extent(data, function (d) { return d[attributes.radius.key]; });
var xLogNotAllowed = Math.sign(xRange[0]) !== Math.sign(xRange[1]);
var yLogNotAllowed = Math.sign(yRange[0]) !== Math.sign(yRange[1]);
var radiusLogNotAllowed = Math.sign(radiusRange[0]) !== Math.sign(radiusRange[1]);
if (xLogNotAllowed && scale['x-scale'].value === 'log') {
errors.push("Can't use log scale with x-axis for '" + attributes.x.name + "' since it has positive and negative values.");
x = scales[0].scale();
}
if (yLogNotAllowed && scale['y-scale'].value === 'log') {
errors.push("Can't use log scale with y-axis for '" + attributes.y.name + "' since it has positive and negative values.");
y = scales[0].scale();
}
if (radiusLogNotAllowed && scale['size-scale'].value === 'log') {
errors.push("Can't use log scale with radius for '" + attributes.radius.name + "' since it has positive and negative values.");
radius = scales[0].scale();
}
d3.select('#error').text(errors.join("<br>"));
d3.select('.x.label').text(attributes.x.key.replace(/_/g, ' '));
d3.select('.y.label').text(attributes.y.key.replace(/_/g, ' '));
x.domain(xRange)
x.range([0, width]);
y.domain(yRange)
y.range([height, 0]);
radius.range([minRadius, maxRadius]);
xAxis.scale(x);
yAxis.scale(y);
radius.domain(radiusRange);
d3.select('.x.axis').transition().duration(transitionDuration).ease(easingFunc).call(xAxis);
d3.select('.y.axis').transition().duration(transitionDuration).ease(easingFunc).call(yAxis);
var filteredData = data.filter(function (d) {
return typeof d[attributes.radius.key] === 'number' &&
d[attributes.radius.key] !== 0 &&
typeof d[attributes.x.key] === 'number' &&
typeof d[attributes.y.key] === 'number';
});
var countries = svg.selectAll('.country').data(filteredData, function (d) { return d.Country; });
countries.transition().duration(transitionDuration)
.ease(easingFunc)
.call(place);
countries.enter().append('circle')
.attr('class', 'country')
.attr('fill', function (d) { return colorScale(d.Continent); })
.on("mouseleave", mouseout)
.on("mouseout", mouseout)
.on("mouseover", mouseover)
.call(place);
countries.exit()
.transition()
.duration(transitionDuration)
.ease(easingFunc)
.remove();
}
}
/////////// handle interaction/tooltip
var tip = d3.select('.tip');
tip.on("mouseover", mouseout);
function mouseover(d) {
if (d.mouseover) { return; }
mouseout();
d.mouseover = true;
var dx = Math.round(x(d[attributes.x.key]));
var dy = Math.round(y(d[attributes.y.key]));
tip.selectAll('.country').text(d.Country);
tip.selectAll('.x .name').text(attributes.x.name);
tip.selectAll('.x .value').text(d[attributes.x.key]);
tip.selectAll('.x .units').text(attributes.x.units ? "(" + attributes.x.units + ")" : "");
tip.selectAll('.y .name').text(attributes.y.name);
tip.selectAll('.y .value').text(d[attributes.y.key]);
tip.selectAll('.y .units').text(attributes.y.units ? "(" + attributes.y.units + ")" : "");
tip.style("display", null)
.style("top", (dy + margin.top + 10) + "px")
.style("left", (dx + margin.left + 10) + "px");
}
function mouseout(d) {
d3.selectAll('circle.country').each(function (d) { d.mouseover = false; });
tip.style("display", "none");
}
redraw();
// make it fit
var totalHeight = margin.top + margin.bottom + height + 60;
d3.select("#chart svg")
.attr('height', totalHeight);
d3.select(self.frameElement).style("height", totalHeight + "px");
});
// Extract columns of interest from the dataset. Columns of interest are the top N
// with highest coverage.
function getColumns(data) {
var items = {};
data.forEach(function (d) {
d3.keys(d).forEach(function (k) {
if (d[k]) { items[k] = (items[k] || 0) + 1; }
});
});
return d3.keys(items).map(function (col) {
// extract name and units from column name and normalize
var name = col
.replace(/(_|\(.*?\))/g, " ")
.replace(/\s+/g, " ")
.replace(/(^\s*|\s*$)/g, "");
var units = /\((.*?)\)/.exec(col)
return {
key: col,
name: name,
units: units && units[1]
};
}).filter(function (col) {
// only country, country ID and continent have full coverage - omit those
return items[col.key] !== data.length &&
items[col.key] > 0.9 * data.length &&
col.name.length < 32;
});
}
// convert incoming strings to numbers
function clean(item) {
d3.keys(item).forEach(function (key) {
if (key === 'Country') {
// do nothing
} else if (item[key] === "") {
item[key] = null;
} else {
item[key] = +item[key];
}
});
return item;
}
</script>
Country,CountryID,Continent,Adolescent fertility rate (%),Adult literacy rate (%),Gross national income per capita (PPP international $),Net primary school enrolment ratio female (%),Net primary school enrolment ratio male (%),Population (in thousands) total,Population annual growth rate (%),Population in urban areas (%),Population living below the poverty line (% living on &lt; US$1 per day),Population median age (years),Population proportion over 60 (%),Population proportion under 15 (%),Registration coverage of births (%),Total fertility rate (per woman),Antenatal care coverage - at least four visits (%),Antiretroviral therapy coverage among HIV-infected pregt women for PMTCT (%),Antiretroviral therapy coverage among people with advanced HIV infections (%),Births attended by skilled health personnel (%),Births by caesarean section (%),Children aged 6-59 months who received vitamin A supplementation (%),Children aged &lt;5 years sleeping under insecticide-treated nets (%),Children aged &lt;5 years who received any antimalarial treatment for fever (%),Children aged &lt;5 years with ARI symptoms taken to facility (%),Children aged &lt;5 years with diarrhoea receiving ORT (%),Contraceptive prevalence (%),Neonates protected at birth against neonatal tetanus (PAB) (%),One-year-olds immunized with MCV,One-year-olds immunized with three doses of diphtheria tetanus toxoid and pertussis (DTP3) (%),One-year-olds immunized with three doses of Hepatitis B (HepB3) (%),One-year-olds immunized with three doses of Hib (Hib3) vaccine (%),Tuberculosis detection rate under DOTS (%),Tuberculosis treatment success under DOTS (%),Women who have had mammography (%),Women who have had PAP smear (%),Community and traditional health workers density (per 10 000 population),Dentistry personnel density (per 10 000 population),Environment and public health workers density (per 10 000 population),External resources for health as percentage of total expenditure on health,General government expenditure on health as percentage of total expenditure on health,General government expenditure on health as percentage of total government expenditure,Hospital beds (per 10 000 population),Laboratory health workers density (per 10 000 population),Number of community and traditional health workers,Number of dentistry personnel,Number of environment and public health workers,Number of laboratory health workers,Number of nursing and midwifery personnel,Number of other health service providers,Number of pharmaceutical personnel,Number of physicians,Nursing and midwifery personnel density (per 10 000 population),Other health service providers density (per 10 000 population),Out-of-pocket expenditure as percentage of private expenditure on health,Per capita government expenditure on health (PPP int. $),Per capita government expenditure on health at average exchange rate (US$),Per capita total expenditure on health (PPP int. $),Per capita total expenditure on health at average exchange rate (US$),Pharmaceutical personnel density (per 10 000 population),Physicians density (per 10 000 population),Private expenditure on health as percentage of total expenditure on health,Private prepaid plans as percentage of private expenditure on health,Ratio of health management and support workers to health service providers,Ratio of nurses and midwives to physicians,Social security expenditure on health as percentage of general government expenditure on health,Total expenditure on health as percentage of gross domestic product,Births attended by skilled health personnel (%) highest educational level of mother,Births attended by skilled health personnel (%) highest wealth quintile,Births attended by skilled health personnel (%) lowest educational level of mother,Births attended by skilled health personnel (%) lowest wealth quintile,Births attended by skilled health personnel (%) rural,Births attended by skilled health personnel (%) urban,Births attended by skilled health personnel difference highest lowest educational level of mother,Births attended by skilled health personnel difference highest-lowest wealth quintile,Births attended by skilled health personnel difference urban-rural,Births attended by skilled health personnel ratio highest-lowest educational level of mother,Births attended by skilled health personnel ratio highest-lowest wealth quintile,Births attended by skilled health personnel ratio urban-rural,Measles immunization coverage among one-year-olds (%) highest educational level of mother,Measles immunization coverage among one-year-olds (%) highest wealth quintile,Measles immunization coverage among one-year-olds (%) lowest educational level of mother,Measles immunization coverage among one-year-olds (%) lowest wealth quintile,Measles immunization coverage among one-year-olds (%) rural,Measles immunization coverage among one-year-olds (%) urban,Measles immunization coverage among one-year-olds difference highest-lowest educational level of mother,Measles immunization coverage among one-year-olds difference highest-lowest wealth quintile,Measles immunization coverage among one-year-olds difference urban-rural,Measles immunization coverage among one-year-olds ratio highest-lowest educational level of mother,Measles immunization coverage among one-year-olds ratio highest-lowest wealth quintile,Measles immunization coverage among one-year-olds ratio urban-rural,Under-5 mortality rate (Probability of dying aged &lt; 5 years per 1 000 live births) difference lowest-highest educational level of mother,Under-5 mortality rate (Probability of dying aged &lt; 5 years per 1 000 live births) difference lowest-highest wealth quintile,Under-5 mortality rate (Probability of dying aged &lt; 5 years per 1 000 live births) difference rural-urban,Under-5 mortality rate (Probability of dying aged &lt; 5 years per 1 000 live births) highest educational level of mother,Under-5 mortality rate (Probability of dying aged &lt; 5 years per 1 000 live births) highest wealth quintile,Under-5 mortality rate (Probability of dying aged &lt; 5 years per 1 000 live births) lowest educational level of mother,Under-5 mortality rate (Probability of dying aged &lt; 5 years per 1 000 live births) lowest wealth quintile,Under-5 mortality rate (Probability of dying aged &lt; 5 years per 1 000 live births) ratio lowest-highest educational level of mother,Under-5 mortality rate (Probability of dying aged &lt; 5 years per 1 000 live births) ratio lowest-highest wealth quintile,Under-5 mortality rate (Probability of dying aged &lt; 5 years per 1 000 live births) ratio rural-urban,Under-5 mortality rate (Probability of dying aged &lt; 5 years per 1 000 live births) rural,Under-5 mortality rate (Probability of dying aged &lt; 5 years per 1 000 live births) urban,Adult mortality rate (probability of dying between 15 to 60 years per 1000 population) both sexes,Adult mortality rate (probability of dying between 15 to 60 years per 1000 population) female,Adult mortality rate (probability of dying between 15 to 60 years per 1000 population) male,Age-standardized mortality rate for cancer (per 100 000 population),Age-standardized mortality rate for cardiovascular diseases (per 100 000 population),Age-standardized mortality rate for injuries (per 100 000 population),Age-standardized mortality rate for non-communicable diseases (per 100 000 population),Deaths among children under five years of age due to diarrhoeal diseases (%),Deaths among children under five years of age due to HIV/AIDS (%),Deaths among children under five years of age due to injuries (%),Deaths among children under five years of age due to malaria (%),Deaths among children under five years of age due to measles (%),Deaths among children under five years of age due to neonatal causes (%),Deaths among children under five years of age due to other causes (%),Deaths among children under five years of age due to pneumonia (%),Deaths due to HIV/AIDS (per 100 000 population per year),Deaths due to tuberculosis among HIV-negative people (per 100 000 population),Deaths due to tuberculosis among HIV-positive people (per 100 000 population),Healthy life expectancy (HALE) at birth (years) both sexes,Healthy life expectancy (HALE) at birth (years) female,Healthy life expectancy (HALE) at birth (years) male,Incidence of tuberculosis (per 100 000 population per year),Infant mortality rate (per 1 000 live births) both sexes,Infant mortality rate (per 1 000 live births) female,Infant mortality rate (per 1 000 live births) male,Life expectancy at birth (years) both sexes,Life expectancy at birth (years) female ,Life expectancy at birth (years) male,Maternal mortality ratio (per 100 000 live births),Neonatal mortality rate (per 1 000 live births),Number of confirmed poliomyelitis cases,Prevalence of HIV among adults aged &gt;=15 years (per 100 000 population),Prevalence of tuberculosis (per 100 000 population),Under-5 mortality rate (probability of dying by age 5 per 1000 live births) both sexes,Under-5 mortality rate (probability of dying by age 5 per 1000 live births) female,Under-5 mortality rate (probability of dying by age 5 per 1000 live births) male,Years of life lost to communicable diseases (%),Years of life lost to injuries (%),Years of life lost to non-communicable diseases (%),Children under five years of age overweight for age (%),Children under five years of age stunted for age (%),Children under five years of age underweight for age (%),Newborns with low birth weight (%),Per capita recorded alcohol consumption (litres of pure alcohol) among adults (&gt;=15 years),Population using solid fuels (%) rural,Population using solid fuels (%) urban,Population with sustainable access to improved drinking water sources (%) rural,Population with sustainable access to improved drinking water sources (%) total,Population with sustainable access to improved drinking water sources (%) urban,Population with sustainable access to improved sanitation (%) rural,Population with sustainable access to improved sanitation (%) total,Population with sustainable access to improved sanitation (%) urban,Prevalence of adults (&gt;=15 years) who are obese (%) female,Prevalence of adults (&gt;=15 years) who are obese (%) male,Prevalence of condom use by young people (15-24 years) at higher risk sex (%) female,Prevalence of condom use by young people (15-24 years) at higher risk sex (%) male,Prevalence of current tobacco use among adolescents (13-15 years) (%) both sexes,Prevalence of current tobacco use among adolescents (13-15 years) (%) female,Prevalence of current tobacco use among adolescents (13-15 years) (%) male,Prevalence of current tobacco use among adults (&gt;=15 years) (%) both sexes,Prevalence of current tobacco use among adults (&gt;=15 years) (%) female,Prevalence of current tobacco use among adults (&gt;=15 years) (%) male,Adolescent_fertility_rate,Agricultural_land,Agriculture_contribution_to_economy,Aid_given,Aid_received,Aid_received_total,All_forms_of_TB_new_cases_per_100_000_estimated,All_forms_of_TB_new_cases_per_100_000_reported,Annual_freshwater_withdrawals_total,Arms_exports,Arms_imports,Bad_teeth_per_child,Births_attended_by_skilled_health_staff,Breast_cancer_deaths_per_100_000_women,Breast_cancer_new_cases_per_100_000_women,Breast_cancer_number_of_female_deaths,Breast_cancer_number_of_new_female_cases,Broadband_subscribers,Broadband_subscribers_per_100_people,CO2_emissions,CO2_intensity_of_economic_output,Capital_formation,Cell_phones_per_100_people,Cell_phones_total,Central_bank_discount_rate,Cervical_cancer_deaths_per_100_000_women,Cervical_cancer_new_cases_per_100_000_women,Cervical_cancer_number_of_female_deaths,Cervical_cancer_number_of_new_female_cases,Children_and_elderly,Children_out_of_school_primary,Children_out_of_school_primary_female,Children_out_of_school_primary_male,Children_per_woman,Coal_consumption,Coal_consumption_per_person,Coal_production,Coal_production_per_person,Colon_and_Rectum_cancer_deaths_per_100_000_men,Colon_and_Rectum_cancer_deaths_per_100_000_women,Colon_and_Rectum_cancer_new_cases_per_100_000_men,Colon_and_Rectum_cancer_new_cases_per_100_000_women,Colon_and_Rectum_cancer_number_of_female_deaths,Colon_and_Rectum_cancer_number_of_male_deaths,Colon_and_Rectum_cancer_number_of_new_female_cases,Colon_and_Rectum_cancer_number_of_new_male_cases,Consumer_price_index,Contraceptive_use,Deaths_from_TB_per_100_000_estimated,Debt_servicing_costs,Democracy_score,Electric_power_consumption,Electricity_generation,Electricity_generation_per_person,Energy_use,Expenditure_per_student_primary,Expenditure_per_student_secondary,Expenditure_per_student_tertiary,Exports_of_goods_and_services,Exports_unit_value,External_debt_total_DOD_current_USdollars,External_debt_total_pct_of_GNI,Female_labour_force,Fixed_line_and_mobile_phone_subscribers,Foreign_direct_investment_net_inflows,Foreign_direct_investment_net_outflows,Forest_area,Gross_capital_formation,HIV_infected,Health_expenditure_per_person,Health_expenditure_private,Health_expenditure_public_pct_of_GDP,Health_expenditure_public_pct_of_government_expenditure,Health_expenditure_public_pct_of_total_health_expenditure,Health_expenditure_total,High_technology_exports,Hydroelectricity_consumption,Hydroelectricity_consumption_per_person,Imports_of_goods_and_services,Imports_unit_value,Improved_sanitation_facilities_urban,Improved_water_source,Income_growth,Income_per_person,Income_share_held_by_lowest_20pct,Industry_contribution_to_economy,Inequality_index,Infant_mortality_rate,Infectious_TB_new_cases_per_100_000_estimated,Infectious_TB_new_cases_per_100_000_reported,Infectious_TB_treatment_completeness,Inflation_GDP_deflator,Internet_users,Life_expectancy_at_birth,Literacy_rate_adult_female,Literacy_rate_adult_male,Literacy_rate_adult_total,Literacy_rate_youth_female,Literacy_rate_youth_male,Literacy_rate_youth_total,Liver_cancer_deaths_per_100_000_men,Liver_cancer_deaths_per_100_000_women,Liver_cancer_new_cases_per_100_000_men,Liver_cancer_new_cases_per_100_000_women,Liver_cancer_number_of_female_deaths,Liver_cancer_number_of_male_deaths,Liver_cancer_number_of_new_female_cases,Liver_cancer_number_of_new_male_cases,Lung_cancer_deaths_per_100_000_men,Lung_cancer_deaths_per_100_000_women,Lung_cancer_new_cases_per_100_000_men,Lung_cancer_new_cases_per_100_000_women,Lung_cancer_number_of_female_deaths,Lung_cancer_number_of_male_deaths,Lung_cancer_number_of_new_female_cases,Lung_cancer_number_of_new_male_cases,Malaria_prevention_insecticide_treated_bed_nets_usage,Malaria_treatment,Malnutrition_weight_for_age,Market_value_of_listed_companies,Maternal_mortality,Math_achievement_4th_grade,Math_achievement_8th_grade,Measles_immunization,Medical_Doctors,Merchandise_trade,Military_expenditure,Natural_gas_consumption,Natural_gas_consumption_per_person,Natural_gas_production,Natural_gas_production_per_person,Natural_gas_proved_reserves,Natural_gas_proven_reserves_per_person,Net_barter_terms_of_trade,Nuclear_consumption,Nuclear_consumption_per_person,Number_of_deaths_from_TB_estimated,Number_of_existing_TB_cases_estimated,Oil_consumption,Oil_consumption_per_person,Oil_production,Oil_production_per_person,Oil_proved_reserves,Oil_proven_reserves_per_person,Old_version_of_Income_per_person,Patent_applications,Patents_granted,Patents_in_force,People_living_with_HIV,Personal_computers_per_100_people,Personal_computers_total,Population_growth,Population_in_urban_agglomerations_more_than_1_million,Population_total,Poverty_headcount_ratio_at_national_poverty_line,Present_value_of_debt,Primary_completion_rate_total,Primary_energy_consumption,Primary_energy_consumption_per_person,Primary_school_completion_pct_of_boys,Primary_school_completion_pct_of_girls,Prostate_cancer_deaths_per_100_000_men,Prostate_cancer_new_cases_per_100_000_men,Prostate_cancer_number_of_male_deaths,Prostate_cancer_number_of_new_male_cases,Pump_price_for_gasoline,Ratio_of_girls_to_boys_in_primary_and_secondary_education,Ratio_of_young_literate_females_to_males,Roads_paved,SO2_emissions_per_person,Services_contribution_to_economy,Stomach_cancer_deaths_per_100_000_men,Stomach_cancer_deaths_per_100_000_women,Stomach_cancer_new_cases_per_100_000_men,Stomach_cancer_new_cases_per_100_000_women,Stomach_cancer_number_of_female_deaths,Stomach_cancer_number_of_male_deaths,Stomach_cancer_number_of_new_female_cases,Stomach_cancer_number_of_new_male_cases,Sugar_per_person,Surface_area,Tax_revenue,Total_CO2_emissions,Total_income,Total_reserves,Trade_balance_goods_and_services,Under_five_mortality_from_CME,Under_five_mortality_from_IHME,Under_five_mortality_rate,Urban_population,Urban_population_growth,Urban_population_pct_of_total
Afghanistan,1,1,151,28,,,,26088,4,23,,16,4,47,6,7.2,,,,14,,,,,,,10.3,73,70,83,83,,66,90,,,,,,20.1,27.5,4.4,4,,,900,,,14930,,900,5970,5,,97.2,8,6,29,23,,2,72.5,0,,2.5,0,5.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,473,443,500,153,706,134,1269,18.9,0.3,1.1,1,5.9,26,22.1,24.8,10,32,0,36,36,35,161,165,154,176,42,43,42,1800,60,16,100,231,257,254,260,76,6,18,4.6,59.3,32.9,,0.01,,,17,22,37,25,30,45,,,,,9.8,3.2,13.1,,,,,58.35,36.1,,108.83,2.75E+09,168,87,42.29,0,2.80E+07,2.9,14.3,11.7,26.8,874,2021,220,8.78E-04,0.02,0.04,6.23E+10,4,600000,,3.6,6.9,254,511,96.8,,,1792633,7.07,,,,,3.3,2.8,5.2,4.5,193,236,316,377,,10.3,33,,-7,,,,,,,,12.43,,,,,5.19,0,,8670,25.05,,20,4.16,1.04,3.3,20,5.2,,,,55.66,,49,39,,874,,24.48,,165,76,40,90,11.9,1,43.4,12.59,43.14,28,18.39,50.81,34.26,3.5,2.3,3.7,2.5,147,218,155,233,11.3,2.7,12.2,2.9,173,675,190,732,,,,,1900,,,64,0.19,39.42,9.93,,,,,,,,,,8242,66826,,,,,,,717.04,,,,,,,,,2.99E+07,,,37.73,,,,,2.8,4.5,151,249,0.68,55.57,36.2,23.66,3.14,39.42,15.8,8.3,18.5,9.7,499,936,592,1108,,652090,,692.5,,,,257,231.9,257,5740436,5.44,22.9
Albania,2,2,27,98.7,6000,93,94,3172,0.6,46,2,29,13,26,90,2.1,,,,100,15,,,,,,75.1,87,97,98,98,,37,77,,,,3,,3.7,35.5,11.3,30,,,1035,,,14637,,1173,3626,47,,94.7,127,62,358,174,4,12,64.5,0,,4,32.8,6.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,137,103,170,154,537,64,814,10.5,0,4.4,0.4,0.1,52.8,21.2,10.6,,3,,61,63,59,19,15,14,15,71,73,69,92,9,,,26,17,16,17,17,20,63,30,39.2,17,3,2.01,,,97,97,97,97,97,98,,,,,13,9.4,17.3,22.4,4,40.5,15.59,40.99,22.8,,98.18,3.19E+08,20,16,6.36,,4.20E+07,3.02,99.8,6.54,57.4,300,843,272,0.01,0.98,0.22,1.11E+11,48.9,1100000,5,1.19,25.2,146,389,53.07,15182,7670,7512,2.06,,,,,3.27,2.84,28.1,19.3,163,218,285,382,117,60,4,4,9,1167.19,,,761.64,7.78,11.97,36.6,22.27,,1.84E+09,21.56,42.12,59.73,3.13,0.05,7940,23.59,,169,3.88,2.62,8.6,40.3,6.5,4.97,,,46.31,,99,96,4.91,5369,8.23,21.5,31.1,16,9,6,77,3.5,6,76.23,98.25,99.19,98.71,99.5,99.37,99.44,6.6,4,5.3,3,59,87,44,71,29.44,8.1,58.9,13.2,154,639,193,811,,,17,,55,,,97,1.31,39.1,1.4,,,,,,,,,,112,906,,,,,,,3501.25,89821,502,,,1.2,36000,0.61,,3563112,25.4,,96.34,,,99,99,8.39,15.1,109,194,1.44,97.02,100.13,39,1.15,55.7,13.86,6.65,16.5,6.9,92,180,103,226,65.75,28750,17.29,3499.12,4.79E+09,78.14,-2.04E+09,18.47,15.5,18.47,1431793.9,2.21,45.4
Algeria,3,3,6,69.9,5940,94,96,33351,1.5,64,,24,7,29,90,2.4,41,,14,95,6,,,,,,61.4,70,92,95,90,,102,87,,,,3,,0.1,77.3,9.5,17,3,1062,9553,2534,8838,69749,6716,6333,35368,22,2,94.6,146,95,188,123,2,11,22.7,5.2,0.4,2,33.3,3.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,135,122,149,103,314,85,598,11.9,0,5,0.5,0.9,48,20,13.7,10,2,0,61,62,60,56,33,31,36,71,72,70,180,22,0,82,56,38,34,41,50,20,30,15.4,21.6,10.2,7,0.15,,,81,85,87,87,94,98,,,,,13.8,5.7,25.5,15.2,0.3,29.9,7.82,17.28,8.46,,10.99,3.71E+08,55,65,54.2,,1.52E+08,2.3,95.2,16.7,23.5,2019,2880,195000,0.59,4.23,1.02,6.59E+10,41.5,4682690,4,12.7,15.6,1391,1726,51.96,38931,38094,837,2.38,0.64,0.02,,,5.1,4.6,5.5,5,552,565,588,602,114,61.4,2,71,2,898.64,33.61,1033.17,1058.25,11.31,17.14,,47.84,,1.68E+10,17.41,30.66,49.41,1.06,0.11,22770,30.14,0.1,108,0.86,2.64,9.5,75.3,3.5,1.48,0.13,0,23.6,,99,85,3.71,6011,7,61.46,35.3,34,25,26,87,15.61,5.8,71.97,60.08,79.57,69.87,86.13,94.06,90.14,0.8,1,0.8,1,103,70,105,72,16.4,2,16.9,2,205,1510,209,1552,,,10.2,,140,,,83,1.13,65.19,2.87,23.23,713.98,88.22,2711.8,4.5,138.46,170.58,,,652,17908,251.35,2.82,2014.18,0.02,12.27,377.17,3368.34,88881,111,1330,19328,0.9,290000,1.5,9.74,3.25E+07,22.6,,95.83,32.71,1.01,94,94,4.8,5.6,411,480,0.32,99.31,91.58,70.2,6.92,30.09,5.6,3,5.9,3.1,333,571,352,603,84.93,2381740,31.19,137535.56,6.97E+10,351.36,4.70E+09,40,31.2,40,2.08E+07,2.61,63.3
Andorra,4,2,,,,83,83,74,1,93,,,22,14,90,1.3,,,,,,,,,,,,,94,96,91,95,125,80,,,,7,,0,70.6,22.7,26,,,46,,,259,,72,244,39,,73.2,2054,1987,2910,2815,11,36,29.4,24.6,,1.1,87.7,6.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,74,45,103,126,125,31,369,,,,,,,,,,2,,72,75,70,19,3,2,3,82,85,78,,2,,,17,4,3,4,6,14,80,,,,,,,,100,100,100,100,100,100,,,,,,,,32.9,29.2,36.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Angola,5,3,146,67.4,3890,49,51,16557,2.8,54,,17,4,46,29,6.5,,14,16,45,,,,,,,6.2,81,88,83,83,83,76,72,,,,,,7,86.6,5,1,1,,222,,2029,18977,254,919,1165,14,,100,61,62,71,71,,,13.4,0,0.01,16.9,0,2.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,493,447,539,179,486,231,982,19.1,2.2,1.4,8.3,4.8,22.2,17.2,24.8,188,27,2,33,35,32,285,154,147,161,41,43,40,1400,54,8,3281,344,260,243,276,84,8,8,5.3,50.8,27.5,12,3.86,,,39,51,62,16,50,79,,,,,,,,,,,139.64,46.19,7.65,,27.41,4.37E+08,279,231,0.24,1000000,2.20E+07,1.7,44.7,17.1,23.1,654,905,0,,0.76,0.16,3.99E+08,10.3,940000,95,23.2,28.6,926,1158,95.47,,,,6.43,,,,,4,2.8,4.3,3,106,130,113,140,1873,6.2,36,9,-2,140.97,,,614.97,,,65.47,79.28,,1.18E+10,44.29,45.79,10.61,-4.26,0.72,591040,8.07,2.02,36,0.33,1.47,4.7,81.5,1.8,,,,49.44,,56,53,17.2,3533,,72.6,,154,124,127,72,33.99,0.6,42.3,54.21,82.9,67.41,63.18,83.75,72.18,5.2,3.6,5.3,3.7,134,202,135,206,7,1.3,7.2,1.3,58,207,59,212,2.3,63,27.5,,1700,,,45,0.08,105.97,5.4,,,,,,,173.86,,,5838,60303,,,1246,0.04,9.04,763.91,1101.82,,,,173659,0.2,27000,2.9,17.19,1.18E+07,,,34.75,,,,,11.1,12.7,285,327,0.5,85.18,75.44,10.4,4.75,19.75,13.3,9.1,14.1,9.7,323,429,344,455,35.62,1246700,,8991.46,1.49E+10,27.13,9.14E+09,164.1,242.5,164.1,8578749,4.14,53.3
Antigua and Barbuda,6,4,,,15130,,,84,1.3,37,,,11,28,,2.2,,,,100,,,,,,,,,99,99,97,99,284,100,,,,2,,0.2,67.3,11.3,24,,,13,,,233,,,12,33,,86.9,439,348,652,517,,2,32.7,13.1,,19.3,0,4.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,151,115,187,144,343,35,717,2.4,1,2.4,0,0,25.3,67.4,1.5,,1,,62,64,60,6,10,9,11,73,75,70,,8,,,9,11,10,13,21,10,69,,,,8,5.73,,,89,91,95,94,95,98,,,,,14.1,12.5,15.1,,,,,31.82,3.62,,85.74,7790000,6,7,,,,0.61,99.9,,,,,5721,6.89,6.13,0.31,4.50E+08,105.5,47250,7,,,,,,,,,,,,,,,,,,,,,,,53,1,,,,,,,,,,59.56,,,,,147.5,13.37,0,90,58.93,,503,1.56,3.24,11.1,67.4,4.8,0.78,,,71.29,,73.5,68.25,4.05,14579,,22.86,,11,3,7,75,2.09,35.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,99,0.17,63.73,,,,,,,,,,,1,6,,,,,,,9411.4,44276,,,,,,1.32,,68722,,,,,,,,,,,,0.28,,,32.96,,73.52,,,,,,,,,95.89,440,,421.36,8.30E+08,,-1.02E+08,12.6,,12.6,32468.25,2.25,39.1
Argentina,7,5,62,97.2,11670,98,99,39134,1,90,6.6,29,14,26,90,2.3,,,71,99,,,,,,,65.3,,99,96,92,96,71,53,,,,8,,0.1,45.5,14.2,41,,,28900,,,29000,,15300,108800,8,,43.8,758,251,1665,551,4,30,54.5,51.1,,0.3,58.5,10.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,124,86,162,142,212,52,521,1.3,0.2,7.7,0,0,56.5,30.8,3.4,11,5,0,65,68,62,39,14,13,16,75,78,72,77,10,,456,48,17,15,18,18,17,66,9.9,8.2,2.3,7,8.4,,,80,96,98,83,91,92,,,,,24.9,27.5,22.4,30,25.4,34.6,58.42,47.27,9.4,,2.53,9.73E+07,40,25,10.58,4000000,4000000,3.4,99.1,19.42,73.9,5362,17017,926722,2.39,3.86,0.37,6.05E+10,57.4,1.35E+07,,4.45,23.2,1679,4924,57.77,32669,18707,3192,2.25,0.95,0.02,,,13.76,8.8,30.1,19.1,2686,2985,4911,5989,162,,5,14,8,2417.88,105.55,2669.46,1644.46,11.32,15.67,11.78,25.07,113.16,1.33E+11,75.35,42.86,81.55,2.87,0.72,330210,21.46,0.53,484,5.72,4.48,14.2,43.9,10.2,6.57,7.87,0.2,19.19,105,92,96,8.12,11063,3.12,35.61,51.32,14,18,12,53,8.84,17.8,75.08,97.19,97.19,97.19,99.13,98.71,98.92,4.58,2.84,3.5,1.9,909,1044,499,703,31.87,7.08,43.3,8,1804,7182,1894,8384,,,2.3,33.56,82,,,99,3.01,37.69,1.04,40.4,1021.8,45.63,1154.08,0.44,11.1,106.82,1.55,0.04,2102,19508,421.42,3.89,725.37,0.01,2.2,55.54,8950.77,6634,1587,,115615,8,3000000,0.97,39.12,3.95E+07,,,99.35,66.83,1.69,98,103,15.61,36.8,3641,7615,0.62,103.58,100.43,30,5.34,54.99,9.15,3.45,14.6,6,1171,2076,1544,2888,112.33,2780400,14.2,152711.86,3.14E+11,21.11,1.19E+10,18.1,16.7,18.1,3.49E+07,1.17,90.1
Armenia,8,2,30,99.4,4950,84,80,3010,-0.3,64,2,32,14,20,90,1.3,71,,8,98,9,,,,31.9,65.3,53.1,,92,88,85,,59,72,,,,4,,14.5,41.2,9.7,44,,,1255,,,14806,,157,11133,49,,87.6,112,41,272,99,,37,58.8,0.1,,1.3,0,4.7,97.6,100,97.4,92.8,98,98.6,0.2,7.2,0.6,1,1.1,1,79.4,60.7,70.8,71.6,80.4,67,8.6,-10.9,-13.4,1.1,0.8,0.8,6,29,16,27,23,33,52,1.2,2.3,1.6,42,26,184,115,262,146,498,39,800,10.5,0.2,5.8,0.5,0.1,48.4,22.7,11.8,50,10,0,61,63,59,72,21,20,23,69,72,65,76,18,,121,80,24,21,26,13,9,78,11.7,18.2,4.2,7,1.48,54,9,96,98,99,81,91,96,15.5,,,44,7.3,2.7,13,29.6,3.7,55.1,30.07,49.29,20.8,,63.74,1.93E+08,72,73,32.42,,1.51E+08,2.4,97.8,22.09,51.6,561,1162,1990,0.07,1.46,0.33,4.26E+11,10.5,203309,65,4.81,16.8,130,380,49.07,18327,7319,11008,1.39,,,,,9.64,8.03,8.5,7.9,137,115,187,159,118,53.1,10,4,5,1503.15,,,847.68,4.39,12.38,42.38,27.28,,1.86E+09,37.63,49.17,30.24,5.27,0.14,2830,30.47,0.13,88,3.62,1.78,8.2,32.9,5.4,0.6,,,40.48,,96,92,14.37,3903,8.55,42.53,33.77,23,32,19,72,3.21,5.3,71.82,99.16,99.67,99.4,99.86,99.75,99.81,4.3,2.7,4.2,2.6,69,77,66,75,45.62,5.96,58.9,7.5,155,905,179,1056,,,4.2,0.87,55,485.33,492,94,3.59,55.47,2.72,,,,,,,,,,305,2396,,,,,,,8423.1,89565,151,432,2381,5.3,200000,-0.31,36.55,2982904,50.9,,88,,,106,108,6.26,10.2,116,192,0.96,103.24,100.11,89.97,1.38,36.67,15.33,5.76,21.7,9.9,198,331,236,396,57.53,29800,14.34,4345.5,3.40E+09,35.98,-6.47E+08,28.8,27.7,28.8,1934320.8,-0.62,64.1
Australia,9,6,16,,33940,97,96,20530,1.1,88,,37,18,19,90,1.8,,,,100,,,,,,,,,94,92,94,94,40,80,57,61,2,11,,0,67.2,17.2,40,4,3812,21296,,8326,187837,42151,13956,47875,97,22,55.7,2097,2227,3122,3316,7,25,32.8,22,1.5,3.9,0,8.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,65,47,82,127,140,35,362,0.1,0,10.6,0,0,55.6,32.5,1.2,10,1,0,73,74,71,6,5,4,6,82,84,79,4,3,,99,7,6,5,6,5,17,77,,,,7,9.02,,,100,100,100,100,100,100,,,,,,,,24.8,21.8,27.7,15.38,57.94,3.08,1460,,,6,5,4.86,5.00E+07,5.60E+08,0.8,100,16.43,83.2,2667,11176,1787000,8.76,18.36,0.48,2.15E+11,91.4,1.64E+07,6,1.36,6.9,249,835,48.43,61880,27257,34623,1.79,54.92,2.73,206.51,10.28,15.64,11.12,47.4,35.9,2208,2642,5715,6539,116,,1,,10,11480.53,251.12,12499.48,5978.28,15.93,14.53,22.54,20.3,152.91,,,45.51,139.9,-4.82,-4.6,1636780,26.68,0.13,3181,2.9,5.9,17,67,8.8,12.74,3.53,0.18,21.79,117,100,100,1.6,32798,5.9,27.97,35.19,5,3,1,80,4.8,70.4,81.19,,,,,,,3.69,1.6,3.8,1.3,254,477,201,510,30.4,14.31,39.5,16.8,2246,4936,2679,5565,,,,108.96,8,510.33,499,94,2.5,31.37,1.78,,,37.13,1848.08,2.43,120.9,131.08,,,125,1260,885.7,16.1,580.05,0.01,4.16,206.94,23977.42,107257,14496,98707,15030,68.9,1.37E+07,1.32,60.41,2.01E+07,,,,118,5.87,97,99,15.85,76,2646,10807,0.93,97.35,,38.7,63.27,68.95,4.84,2.27,9.8,4.1,474,800,689,1370,128.77,7741220,23.72,368858.53,4.68E+11,,-1.28E+10,5.9,5.1,5.9,1.80E+07,1.54,88.2
Austria,10,2,14,,36040,98,97,8327,0.4,66,,40,22,16,90,1.4,,,,,21,,,,,,,,79,85,85,85,46,75,76,83,,5,,0,77,15.5,76,,,4467,,,53782,,5076,30068,66,,72.2,2729,2975,3545,3864,6,37,23,23,,1.8,61,9.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,79,51,105,127,204,38,406,0,0,8.4,0,0,56,34.9,0.7,10,1,0,71,74,69,13,4,3,4,80,83,77,4,3,,173,10,4,4,5,3,14,83,,,,7,11.08,,,100,100,100,100,100,100,,,,,,,,43.3,40.1,46.4,12.36,39.58,1.64,678,,,13,11,3.84,3000000,2.10E+07,1,100,17.52,70.5,1637,4635,1174000,14.26,8.99,0.25,4.86E+10,105.8,7989955,3,2.4,10.9,295,610,46.97,11081,3574,7507,1.42,2.77,0.34,,,18.7,10.03,42.1,27.8,1325,1325,2451,2713,111,50.8,1,,,7888.7,60.63,7407.98,4173.66,22.52,27.2,48.53,54.29,,,,44.61,150.47,2.97,3.31,38620,20.77,0.12,3788,2.48,7.72,15.5,75.7,10.2,13.53,8.28,1.01,49.53,,100,100,1.08,34108,8.56,29.75,29.15,4,6,3,75,1.86,48.9,79.66,,,,,,,6.87,2.24,7.8,2.9,232,453,263,493,35.92,11.77,42.6,14.3,980,2390,1096,2660,,,,40.81,4,531,,75,3.4,82.84,0.88,10,1221.93,,,,,,,,106,810,294.37,13.14,,,,,21883.82,254032,20390,11505,5840,57.6,4729000,0.71,27.45,8184691,,,102.57,34.22,4.18,98,98,14.63,71.4,1282,4701,1.32,96.78,,100,2.16,68.61,8.5,4.48,13.5,8.6,615,675,782,866,123.29,83870,20.05,73602.43,2.09E+11,,8.24E+09,5.1,4.3,5.1,5433978,0.77,66
Azerbaijan,11,2,31,98.8,5430,83,86,8406,0.6,52,3.7,28,9,24,90,1.7,30,,,97,4,,1.4,0.8,,,55.4,,97,95,97,,50,59,,,,3,,0.8,30.9,3.6,81,,,2431,,,71265,,1074,30766,84,,83.5,67,27,218,86,1,36,69.1,0.2,,2.3,0,3.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,188,138,241,113,613,29,892,15.3,0,1.3,1,0.1,44.1,19.7,18.4,10,10,0,57,59,56,77,73,70,76,64,66,62,82,35,,87,87,89,84,93,36,6,58,6.2,24.1,14,11,4.54,,,59,78,95,70,80,90,,,,,,,,,0.9,,28.94,57.57,9.9,,23.19,2.25E+08,77,72,212.96,,4.50E+07,,99.7,10.34,31.5,557,1295,2184,0.03,4.63,1.03,4.87E+09,26.7,1782900,9,1.24,8.2,113,345,47.96,96529,49256,47273,1.82,0.09,0.01,,,5.14,3.97,5.7,4.3,119,124,178,187,,55.4,10,1,-7,2407.45,22.87,2890.81,1648.62,6.02,9.63,9.83,62.94,,1.81E+09,15.65,47.68,39.76,12.68,9.22,9360,41.53,0.11,62,2.93,0.97,3.8,24.8,3.9,0.81,0.68,0.09,52.9,,73,77,24.97,4648,7.43,63.6,36.5,74,34,19,59,16.32,8.1,67.33,98.17,99.47,98.79,99.9,99.87,99.89,3.3,2,3.3,1.9,90,103,87,103,21.83,4.63,33,6.1,219,891,259,1049,1.4,0.8,14,0.09,94,,,98,3.55,64.61,2.37,8.87,1120.54,5.35,675.82,1.26,159.17,,,,855,7182,108.19,4.99,452.05,0.02,7,884.74,4631.95,89337,19,9,5377,1.8,148782,1.02,22.12,7911974,49.6,,93.18,14.01,1.77,97,95,7.27,7.5,145,238,0.46,96.93,100.03,49.39,23.93,26.51,21.97,11.04,36,15.6,572,964,672,1161,43.84,86600,12.73,36629.01,9.93E+09,64.89,1.33E+09,50,63.7,50,4321803,1.26,51.5
Bahamas,12,4,46,,,89,87,327,1.2,91,,28,10,27,,2,,,,99,,,,,,,,93,96,95,93,95,71,62,,,,,,0,51.1,13.9,32,,,21,,,1323,,,312,45,,41.1,775,670,1516,1311,,11,48.9,57.8,,4.3,2.9,6.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,195,144,246,112,222,73,490,0.8,5.3,13,0,0,43.5,32.1,5.3,200,3,4,64,66,61,38,13,11,14,74,77,71,16,5,,2807,40,14,12,16,35,20,45,,,,7,,,,86,97,98,100,100,100,,,,,11.9,10.2,12.9,,,,54.08,1.4,,,12.41,4780000,39,17,,,5.40E+07,1.6,99,21.5,54.4,32,81,13382,4.14,6.98,,,70.5,186007,5,6.2,16.7,9,25,,3444,1434,2010,,,,,,8.6,8.9,15.2,14.7,13,10,21,17,110,,8,,,,,,,,,,,,,,,111.61,3.46,0,5150,,2.98,1224,3.34,3.36,14.3,50.1,6.7,0.68,,,,,100,97,,23021,,,,,16,12,62,4.51,31.9,,,,,,,,4.6,3.8,3.7,2,5,5,3,4,19.7,4.8,21.2,5.1,6,22,8,23,,,,,60,,,85,,39.75,0.65,,,,,,,,,,25,132,,,,,,,,31,31,,5953,,,1.23,,,,,100.68,,,,,35.6,65.3,37,71,,99.96,,57.4,,,12.4,6.1,16.5,8.1,9,13,12,18,126.03,13880,16.33,2106.8,4.94E+09,,-7.41E+08,15.8,10.2,15.8,292258.7,1.59,90.4
Bahrain,13,1,14,86.5,34310,98,98,739,1.9,97,,29,5,26,90,2.4,61,,,99,,,,,,,,66,99,97,97,97,72,93,,,,4,4,0,66.4,9.5,27,7,0,300,294,479,4410,1401,460,1980,61,19,69.2,669,538,1008,810,6,27,33.6,12.8,0.2,2.2,0.5,3.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,104,84,116,127,312,37,746,0.7,0.2,10.2,0,0,46,41.5,1.4,,4,,64,64,64,41,9,9,9,75,76,74,32,4,,,45,10,11,10,10,22,68,,,,8,6.98,,,,,100,,,100,,,,,19.9,11.7,28,14.6,2.9,26.1,17.52,14.08,0.86,,0.89,5.74E+07,42,39,,2000000,5.40E+07,1.4,99,17.7,40.2,40,91,21432,2.96,28.57,0.75,,103,649764,,4.8,8.5,9,17,41.51,420,137,283,2.29,,,,,8,4.8,12.3,7.3,9,20,14,32,105,61.8,4,,-7,11400.58,,,11214.31,15.82,17.7,,72.86,,,,18.73,130,6.54,7,,15.56,,710,1.27,2.53,10,66.5,3.8,0.04,,,54.17,,100,,5.31,27236,,39.95,,9,19,14,93,33.06,21.3,75.43,83.56,88.55,86.55,97.25,96.83,97.02,4,3.9,4.2,4.2,5,10,6,10,28.6,12.4,30.5,13.3,19,57,21,60,,,,108.25,28,,399,99,1.09,112.03,3.02,,,10.72,15571.97,0.09,130.75,121.72,,,30,327,,,,,,,6102.22,31,26,,,16.9,121000,2.03,,688345,,,105.48,,,100,103,9.9,15.9,17,28,0.27,102.09,100.44,79.13,81.2,59.19,7.1,5.1,8.2,5.8,8,15,10,19,,710,4.42,19668.35,1.06E+10,,3.21E+09,10.96,7,10.96,699420.44,2.43,96.5
Bangladesh,14,7,135,47.5,1230,90,87,155991,1.8,25,41.3,22,6,35,10,2.9,16,,3,20,4,78.5,,,19.9,83.4,58.1,91,88,90,90,,65,91,1,0,2,,,14.6,36.8,7.4,3,,21000,2344,6091,674,39471,7859,9411,42881,3,,88.3,26,5,69,13,,3,63.2,0.1,,0.9,0,3.1,28,39.6,4.3,3.4,9.1,29.6,23.7,36.2,20.5,6.5,11.6,3.3,87.7,90.5,62.3,59.5,73.9,82.8,25.4,31,8.9,1.4,1.5,1.1,45.5,49,5.5,68.2,72,113.7,121,1.7,1.7,1.1,97.7,92.2,254,258,251,111,428,101,762,20,0,2.7,0.7,2,45.4,11.4,17.6,10,45,0,54,53,55,225,52,46,57,63,63,63,570,36,0,100,391,69,65,73,60,12,28,0.9,47.8,39.2,30,0,99,54,78,80,85,32,36,48,,,,,5.8,4.7,5.9,25.6,3.8,47,134.37,69.22,20.14,,8.41,1.34E+09,227,80,75.62,,2.70E+07,1,20.1,7.3,16.6,3376,7735,0,,0.28,0.24,7.02E+11,6.3,4327516,5,14.8,27.6,6561,12931,63.17,1371222,529159,842063,2.83,0.35,0,,,0.6,0.6,1,0.9,252,294,410,475,130,58.1,48,7,6,135.56,22.64,156.89,157.8,7.62,14.6,49.38,16.58,98.92,1.89E+10,30,36.95,6.57,1.34,0,8710,24.53,0.01,12,1.99,0.81,5.5,29.1,2.8,0.28,0.29,0,23.05,114,51,74,4.01,1268,8.76,27.22,33.2,54,102,55,91,5.07,0.3,63.55,40.82,53.9,47.49,60.26,67.16,63.62,1.2,1.3,1.3,1.4,577,514,614,546,20.8,3.3,22.4,3.5,1337,8021,1460,8691,,,39.2,5.06,380,,,81,0.26,38.62,1.16,,,14.51,100.54,0.41,2.82,79.62,,,73462,636856,95.72,0.24,,,,,1019.18,216,140,694,11585,1.2,1650000,1.81,11.77,1.44E+08,49.8,,71.92,18.34,0.13,74,79,0.2,0.3,71,115,0.79,103.45,89.72,9.5,0.5,52.63,1.4,0.8,1.6,1,334,565,402,675,16.44,144000,8.11,39952.26,6.14E+10,14.92,-4.16E+09,72,76,72,3.85E+07,3.34,25.1
Barbados,15,4,51,,15150,96,97,293,0.3,53,,36,13,18,,1.5,,,67,100,,,,,,,,,75,93,93,93,29,91,,,,2,,2.9,62.5,11.9,67,,,63,,,988,,,322,37,,78.6,722,490,1155,785,,12,37.5,21.4,,3.1,0,6.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,118,82,154,135,245,30,535,0,1.7,1.7,0,0,63.8,32.8,0,200,1,1,66,68,63,11,11,11,11,75,79,72,16,8,,1236,11,12,12,12,26,10,65,,,,10,,,,100,100,100,100,99,99,,,,,14.8,12.9,16.9,10.8,3,18.4,42.24,44.19,3.68,,-7.33,-2150000,11,2,90,,,0.86,100,25.5,62.5,47,109,31942,10.94,4.72,,1.96E+08,76.7,200138,10,9.4,24.9,18,46,39.02,1410,692,718,1.5,,,,,14.9,11.1,24.1,18.5,23,21,36,33,112,,2,5,,,,,,23.41,27.63,70.17,54.3,,,,47.38,116.83,2.04,0.3,20,24.39,1.17,725,2.48,4.32,11.5,63.5,6.8,18.38,,,63.47,,99,100,2.3,15837,,17.97,,11,5,1,91,-0.79,59.5,76.96,,,,,,,3.9,3.5,2.9,1.9,7,6,3,4,14.4,3,15.3,3.3,6,18,6,19,,,,181.11,95,,,93,1.21,64.52,0.83,,,,,,,110.03,,,5,32,,,,,,,14116.72,89705,3,9,2164,12.5,34000,0.35,,278870,,,92.84,,,110,106,55.3,99.7,77,133,0.66,99.93,,100,,78.34,17.1,5.4,21.5,6.7,12,23,14,29,156.16,430,31.57,1315.38,,,-3.08E+08,12.2,10.8,12.2,153848.69,1.42,52.7
Belarus,16,2,22,99.6,9700,88,90,9742,-0.5,73,2,38,18,15,90,1.2,,,15,100,17,,,,,,,,99,95,91,,40,73,,,,5,,0.2,74.9,10.2,112,,,4647,,,121357,,2930,46359,125,,68.8,428,183,572,244,3,48,25.1,0.1,,2.6,2.7,6.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,251,131,366,143,592,154,839,1.5,3.2,18.1,0,0,37.5,30.8,9,,8,0,61,65,57,61,6,5,7,69,75,63,18,3,,242,71,8,7,9,7,25,68,9.7,4.5,1.3,5,5.53,,,99,100,100,97,93,91,,,,,26.9,22.2,31.6,42.6,21.1,63.7,22.62,42.7,9.77,,4.38,5.39E+07,61,54,7.5,2.40E+07,6000000,2.7,100,13.72,36,1254,2955,1564,0.02,6.15,0.85,4.22E+12,42,1118000,11,4.76,13.1,436,1086,42.97,40262,22518,17744,1.2,0.1,0.01,,,18.58,10.66,25.8,18,1161,1074,1782,1532,,72.6,8,1,-7,3208.5,30.96,3005.78,2720.04,14.14,25.27,28.27,59.8,,4.74E+09,15.66,49.3,75.53,1.01,0.01,78940,28.46,0.22,204,1.6,5,10.5,75.8,6.6,2.6,,,59.09,,93,100,9.79,8541,8.77,41.76,27.95,12,27,13,73,18.93,34.8,68.87,99.42,99.79,99.59,99.83,99.76,99.79,4.5,1.8,5,1.8,174,261,176,295,55.31,3.67,65.6,4.5,421,3482,466,3825,,,,,35,,,99,4.55,108.2,1.22,18.94,1838.43,,,,,,,,800,6808,142.86,5.07,,,,,9100.71,90594,691,1631,13360,,,-0.5,18.19,1.03E+07,18.5,,94.93,24.03,2.33,103,99,11.42,19,567,1165,0.79,100.25,100.07,88.64,6.89,48.47,29.67,11.22,41.9,16.9,1324,1935,1710,2458,90.41,207600,20.15,63299.27,1.83E+10,28.31,2.09E+08,15.1,10.3,15.1,7057977,0.11,72.2
Belgium,17,2,5,,33860,97,97,10430,0.3,97,,41,22,17,90,1.6,,,,99,,,,,,,,,92,99,94,98,55,66,71,73,,8,,0,71.1,13.9,53,,,8305,,,146846,,11775,44124,142,,78.7,2264,2536,3183,3565,11,42,28.9,18.6,,3.4,93.6,9.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,86,61,111,148,162,45,427,0.3,0.5,9.7,0,0,50.1,38.7,0.8,10,1,0,71,73,69,13,4,4,4,79,82,77,8,2,,162,11,5,5,5,5,15,80,,,,8,10.63,,,,,100,,,,13.4,11.9,,,,,,27.1,24.1,30.1,7.67,45.85,1.1,1463,,,13,10,,1.85E+08,0,1.1,99.3,27.7,92,2712,7429,2010584,19.19,9.9,0.31,5.77E+10,90,9131705,3,3.4,9.4,326,667,52.26,15830,6955,8875,1.65,6.06,0.58,,,18.7,14.1,37,26.8,1764,1732,3130,3304,111,78.4,1,,10,8509.97,91.16,8795.5,5406.52,19.95,33.5,35.12,86.32,141.99,,,43.48,135.77,9.17,8.2,6670,20.91,0.22,3451,2.75,6.85,13.9,71.4,9.6,8.66,0.56,0.05,83.32,143,,,0.69,32077,8.5,24.1,32.97,4,6,4,66,2.03,45.7,79.2,,,,,,,4.5,2.3,4.2,2.1,287,406,240,353,69.9,10.1,75.3,12.2,1052,6235,1189,6518,,,,77.71,10,,,88,3.9,175.91,1.13,16.61,1602.54,,,,,99.43,10.77,1.04,144,1108,815.43,28.74,,,,,21850.05,163594,20785,87891,12949,34.7,3627000,0.55,9.66,1.04E+07,,,78.85,72.21,6.97,76,82,20.3,74.2,2032,6928,1.63,98.03,,78,8.23,74.8,8.1,4.3,9.4,4.8,541,735,576,823,150.69,30530,26.39,102599.33,2.49E+11,,1.07E+10,5,4.8,5,1.02E+07,0.57,97.2
Belize,18,5,90,70.3,7080,97,97,282,2.2,48,,21,6,37,90,3,,,42,91,,,,,,,,85,96,96,96,96,100,75,,,,1,,1.3,59.5,10.9,13,,,32,,,303,,,251,13,,100,254,136,426,229,,11,40.5,,,1.2,7.2,5.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,255,190,314,147,317,79,651,3.5,1,9.8,0,0,49,29.9,6.9,200,4,2,60,62,58,49,14,12,17,69,74,65,52,17,,2110,56,16,14,18,40,19,41,,,,6,6.25,,,82,91,100,25,47,71,,,,,18.1,13.5,22.6,,,,83.7,6.66,15.28,,46.74,1.20E+07,49,37,0.94,,1000000,0.6,89.3,11.9,29.8,9,21,5022,1.72,2.91,0.38,4.37E+08,44.3,97755,12,23,52.4,16,40,71.76,970,22,948,2.93,,,,,3.2,2.9,4.9,5.8,3,2,4,4,113,56.1,6,36,,,,,,14.01,19.54,216.9,54.64,,1.00E+09,100.28,34.09,52.74,11.31,0.09,16530,20.94,2.05,198,2.14,2.76,9.7,56.4,4.9,0.01,,,62.67,,71,91,-0.15,7290,,17.42,,15,21,21,75,2.45,9.6,75.99,70.33,70.27,70.3,76.7,76.14,76.42,5,11.5,3.6,9,8,4,7,2,19.6,3.3,21.2,3.6,4,14,4,15,,,,,140,,,95,1.05,71.86,1.43,,,,,,,87.39,,,15,148,,,,,,,5192.04,88533,,,3346,13.5,35000,3.2,,281084,,,103.43,,,103,104,35.2,77.3,25,53,,98.24,100.74,17,,67.29,17.5,8.9,25.7,12,7,12,8,18,136.99,22970,19.14,817.07,1.08E+09,7.11,-9.91E+07,26.7,15.7,26.7,140939.4,3.45,48.3
Benin,19,3,108,34.7,1250,73,87,8760,3.1,40,30.9,18,4,44,70,5.6,61,53,42,74,4,18.3,20.2,54,35.1,55.1,18.6,93,61,67,67,67,86,87,,,,,,13.4,53.3,13.1,5,,88,12,178,477,5789,218,11,311,8,,99.9,25,15,46,29,,,46.7,0.1,0.5,21,,5.3,98.6,99.3,67.6,49.6,68.4,82.9,31,49.7,14.5,1.5,2,1.2,88.6,83.1,63.4,56.9,64.1,75.3,25.2,26.2,11.2,1.4,1.5,1.2,93.7,105.1,41.9,80.8,93.1,174.5,198.2,2.2,2.1,1.3,175.5,133.6,327,306,349,154,432,116,852,17.1,2.2,2.1,27.2,5.3,25,0,21.1,114,13,5,44,45,43,90,88,85,90,55,55,54,840,36,0,1635,135,148,149,148,82,8,10,9,43.1,18.4,16,1.29,99,88,57,65,78,11,30,59,6.1,,19,34,11,5.8,14.6,,,,126.52,32.25,32.2,,41.09,3.46E+08,89,39,1.26,,6000000,0.8,75,19.8,28.1,406,591,196,0,0.34,0.24,3.05E+11,10,236175,4,23.8,29.3,448,561,88.32,277372,197893,79479,5.42,,,,,4.7,3.3,5.1,3.5,66,83,70,89,115,17.2,19,4,6,69.37,,,304.35,11.54,21.23,200.94,13.46,,1.85E+09,43.55,38.33,9.73,1.24,-0.01,23510,19.59,1.27,28,2.4,3,13.5,55.6,5.4,0.1,,,26.11,,59,67,0.68,1390,7.37,13.42,36.48,89,39,32,87,2.79,5.7,56.15,23.3,47.87,34.66,33.24,59.21,45.31,15.1,5.5,15.3,5.6,110,273,111,279,2.4,0.6,2.4,0.6,10,37,10,38,7.4,60.4,21.5,,850,,,85,0.04,34.12,,,,,,,,79.46,,,1587,11612,,,,,,,1364.57,,,,60771,0.4,30000,3.19,,7649360,29.02,,64.66,,,59,38,16,19.3,210,255,0.81,73.45,56.14,9.5,1,54.38,3.2,3.4,3.4,3.6,56,52,59,55,16.44,112620,15.47,2564.8,2.73E+09,35.41,-3.73E+08,132,133.6,132,3404610.8,4.04,40.1
Bermuda,20,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,,,-65.94,78750,4,5,,,,0.18,,,,,,18487,29.08,8.74,,,82.2,42875,,,,,,,78,,,,,,,,,,,,,,,,,,1,,,,,,,10.95,14.06,0,,,,,,165.47,,,10,,,,,,,,,,,,,,,,2.96,69916.79,,,,,2,3,,2.13,65.5,,,,,,,,,,,,,,,,,,,,,,,,,,,62.64,,,,,1.77,30.01,,,,,,,,,,,0,4,,,,,,,32803.17,,,,,26.15,17000,0.39,,65365,,,96.94,,,,,,,,,,106.08,,,,,,,,,,,,,104.11,50,,571.58,,,,,,,63570,0.39,100
Bhutan,21,7,62,,4000,79,79,649,1.8,11,,23,7,32,,2.3,,,,51,,,,,,,30.7,86,95,95,95,,112,91,,,1,,,48.2,68.6,7.3,16,,237,65,80,167,730,550,87,52,3,2,100,73,44,107,65,,,31.4,0,0.6,16,0,4.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,218,180,250,112,441,112,771,20.9,0.7,2.4,0.8,1.2,38.9,16.3,18.8,10,7,0,53,53,53,96,63,58,68,64,67,62,440,30,,100,96,70,65,75,65,10,25,3.9,47.7,14.1,15,0.23,,,79,81,98,50,52,71,,,,,20.2,12.4,28.6,,,,42.42,12.6,23.62,,140.91,8.96E+07,100,158,0.45,,0,1.4,50.9,9.6,21.8,74,170,0,,0.19,0.19,1.55E+10,4.7,17800,,14.1,26.4,105,200,60.32,26132,12920,13212,2.19,,,,,3,2.1,4.7,3.4,16,20,26,34,119,30.7,7,,-6,,,,,10,71.74,398.98,35.39,,6.49E+08,79.54,36.6,11.08,0.09,,31950,51.83,,52,1.16,2.84,6.5,71,4,0,,,51.38,,65,62,2.63,3694,,37.16,,65,45,48,91,5.76,3.1,65.08,48.7,69.1,59.5,,,,2.5,1.3,2.6,1.4,9,16,11,18,11,2.2,11.9,2.4,16,73,18,79,,,14.1,8.92,420,,,93,0.05,77.7,,,,,,,,,,,46,640,,,,,,,869.01,,,,,1.4,11000,2.21,,2232291,,,65.23,,,,,2.7,4.4,17,28,0.58,93.88,,62,,39.22,5.7,3,6.8,3.5,22,39,27,46,,47000,7.57,414.03,6.44E+08,72,,92.8,65.8,92.8,70708.45,4.95,11.1
Bolivia,22,5,97,86.7,3810,95,94,9354,1.9,65,23.2,21,7,38,82,3.6,58,,18,61,15,60,,,51.5,66.4,58.4,71,81,81,81,81,69,78,,,1,7,,3.6,62.8,11.6,11,,1006,5997,,540,18091,5984,4670,10329,21,7,81,128,50,204,79,6,12,37.2,10.2,0.2,1.7,75.8,6.6,90,98.9,29.8,34.4,38.6,77.7,60.2,64.5,39.1,3,2.9,2,74,73.7,60.6,62.3,60.2,66.5,13.4,11.4,6.3,1.2,1.2,1.1,96.5,73,36.6,48,32,144.5,105,3,3.3,1.5,113.4,76.8,208,176,242,256,260,80,824,14.3,0.1,5.1,0.7,0.1,37.9,24.7,17.1,10,30,0,54,55,54,198,50,47,52,66,67,64,290,24,,120,266,61,60,62,55,11,34,9.2,32.5,5.9,9,3.23,80,5,69,86,96,22,43,54,15.1,,20,37,20.8,16.6,24.7,31.7,29.2,34.1,80.68,34.83,14.24,,62.98,6.32E+08,204,106,0.47,,9000000,4.7,66.8,11.6,24.7,357,765,10788,0.12,1.04,0.21,3.32E+09,26.4,1800789,5,30.4,55,987,1831,74.3,51874,22115,29759,3.5,,,,,10.3,5.5,15.9,8.5,162,265,247,404,117,58.4,30,14,8,478.76,,,577.98,16.23,13.07,36.05,35.95,145.88,6.94E+09,76.51,43.57,33.41,-2.53,0.03,587400,13.77,0.15,71,2.65,4.25,12.4,61.6,6.9,8.89,,,32.54,,60,85,2.09,3618,1.49,31.98,60.05,52,92,68,78,5.13,5.2,65.14,80.65,93.06,86.72,96.11,98.55,97.32,3.5,2.6,3.6,2.7,77,91,82,96,11.6,3.1,12.6,3.3,89,293,97,320,,,5.9,23.3,420,,,64,1.22,54.36,1.62,,,11.9,1343.5,0.74,83.54,111.84,,,2764,24793,,,,,,,2729.58,123,47,580,7530,2.3,190000,1.9,31.01,8857870,65.2,,100.95,,,102,98,19.1,36.4,442,842,0.54,98.29,97.53,7,5.08,53.78,16.9,7.2,19.4,8.3,214,427,246,490,76.71,1098580,16.4,9251.6,9.74E+09,25.88,4.63E+08,68.8,67.3,68.8,5894853.5,2.65,64.2
Bosnia and Herzegovina,23,2,25,96.7,6780,,,3926,0.3,46,,38,19,17,90,1.2,,,,100,,,,,,,47.5,,96,95,94,95,62,97,11,40,,2,,1,57.2,14,30,,,629,,,18332,,308,5540,47,,100,454,147,794,258,,14,42.8,,,3.3,97.8,8.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,111,72,151,121,492,43,699,0.6,0,3.7,0,0,52.7,40.5,2.5,,7,,64,66,62,51,13,10,15,75,78,72,3,10,,,57,15,12,17,7,13,81,25.6,11.8,1.6,4,9.05,75,21,98,99,100,92,95,99,25.2,16.5,,,13,9.9,15.1,42.3,35.1,49.3,21.48,41.93,10.55,,133.85,5.53E+08,52,54,,4000000,2.50E+07,4.8,99.6,20.7,58.9,600,1622,13702,0.35,5.93,0.7,1.84E+09,40.8,1050000,,8,21.3,227,545,45.54,,,,1.23,,,,,18.9,11.9,33.9,21.8,374,462,663,826,,35.7,8,4,,2316.08,,,1267.61,,,,33.47,,5.29E+09,47.2,48.1,65.47,4.84,0.01,21850,22,0.01,243,3.63,5.17,14,58.7,8.8,3.57,,,74.58,,99,97,5.06,6506,6.96,25.09,35.79,13,23,16,97,2.13,20.6,74.66,94.36,99.03,96.66,99.84,99.75,99.79,6.8,3.6,5.8,3,114,165,93,140,52.3,10.5,63,13.2,312,1268,384,1529,,,4.2,,31,,,90,1.34,88.37,1.62,,,,,,,,,,298,2251,,,,,,,6571.19,89872,1,42,500,,,0.25,,4430494,19.5,,,,,,,10.8,19,270,470,1.34,,100.1,52.3,51.91,64.36,15.2,6.9,18.6,8.1,217,370,252,452,73.97,51210,20.13,26274.55,6.44E+09,47.8,-4.46E+09,15.4,8.4,15.4,1789263.8,1.35,45.7
Botswana,24,3,51,81.2,11730,85,83,1858,1.2,58,,21,5,35,58,3,97,95,76,99,,,,,,,44.4,78,90,97,85,,80,70,,,,,1,5.8,76.7,17.8,24,2,,38,172,277,4753,829,333,715,27,5,27.5,487,290,635,378,2,4,23.3,5.2,,6.6,,7.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,468,455,485,124,338,72,653,1.1,53.8,3.3,0,0.1,40.3,0,1.4,1020,31,60,36,35,36,551,90,88,91,52,52,51,380,46,0,23624,454,124,119,128,93,3,4,10.4,29.1,10.7,10,4.29,,,90,96,100,30,47,60,,,75,88,11.3,10.5,12.3,,,,55.78,45.84,1.97,,38.61,4.76E+07,587,548,8.08,,9000000,0.5,94.2,25,33.4,125,170,1600,0.09,2.78,0.2,4.24E+09,46.6,563782,15,24.7,30.4,126,156,63.8,35764,17206,18558,2.9,,,,,5.7,3.9,6.2,4.3,19,23,22,24,146,44.4,75,1,9,1405.82,,,1032.17,15.74,40.21,438.41,52.83,,4.73E+08,4.91,41.76,52.02,2.67,-0.54,119430,30.68,24.85,362,2.55,4.45,12.4,63.6,7,0.45,,,31.72,,57,95,6.44,12057,3.19,53.51,60.51,87,233,173,70,11.4,3.4,49.7,81.81,80.43,81.19,95.6,92.08,93.96,4.4,2.3,4.5,2.3,12,16,12,16,8.5,3,8.7,3,14,25,15,26,,,10.7,23.33,100,,364.67,90,0.4,72.67,3,,,,,,,91.91,,,1383,8636,,,,,,,5328.28,10,33,,292073,4.7,80000,1.14,,1640115,,,95.16,,,90,94,25.8,30.6,69,81,0.78,100.33,103.81,33.2,19.51,44.52,3.6,2.1,3.8,2.2,11,12,12,13,68.49,581730,15.09,4554.35,8.05E+09,1334.86,1.60E+09,47.3,39.8,47.3,1053828.4,2.62,57.4
Brazil,25,5,71,88.6,8700,95,93,189323,1.3,85,7.5,27,9,28,89,2.3,76,,78,97,,,,,,,,93,99,98,95,98,55,77,49,72,,11,10,0.1,47.9,7.2,26,5,,190448,167080,89677,659111,191518,51317,198153,38,11,64,367,204,765,426,3,12,52.1,33.9,0.5,3.3,0,7.5,94.5,98.6,66,71.6,73.3,92.3,28.5,27,19,1.4,1.4,1.3,90.6,90.2,67.4,77.9,76.5,90.2,23.2,12.3,13.7,1.3,1.2,1.2,82.1,65.6,30.3,37,33.3,119.1,98.9,3.2,3,1.6,79.4,49.1,176,121,230,142,341,81,712,12,0.3,3.2,0.5,0,38,32.8,13.2,8,3,1,60,62,57,50,19,17,21,72,75,68,110,13,,454,55,20,18,22,30,20,50,6.6,13.5,3.7,10,5.76,53,5,58,91,97,37,77,84,13.1,8.9,,,17.2,15.7,17.2,,,,89.42,31.16,5.65,,1.02,1.96E+08,51,43,1.09,6.10E+07,1.43E+08,2.8,96.6,10.8,46,11283,37528,4385137,2.35,1.75,0.22,2.03E+11,46.3,6.56E+07,25,4.86,23.4,8286,19603,51.43,560725,224382,336343,2.25,12.66,0.07,2.36,0.01,5.9,5.51,14.4,14.3,5015,4153,11162,9454,151,76.7,4,30,8,2008.2,402.94,2165.02,1121.52,12.79,11.53,32.62,15.13,132.51,1.87E+11,22.14,42.88,67.47,1.72,0.29,4776980,16,0.62,371,4.42,3.48,6.7,44.1,7.9,12.84,76.36,0.41,11.54,131,83,90,0.93,8596,2.88,30.34,56.6,20,32,23,77,7.51,17.2,72.04,88.81,88.41,88.62,97.9,95.78,96.84,4.36,2.94,3.4,2.4,2805,3326,1861,2220,16.12,6.02,21.5,7.1,5524,12728,5498,13635,,,3.7,53.79,260,,,99,2.06,22.2,1.42,19.34,103.94,11.05,59.37,0.31,1.65,99.18,2.23,0.01,8252,110923,2047.53,4.02,1715.58,0,11.77,63.25,5888.93,101746,4740,29246,705387,10.7,1.94E+07,1.35,36.86,1.86E+08,21.5,,105.05,198.81,1.07,110,111,12.12,53.2,9391,31956,1.26,101.97,102.21,5.5,6.73,64.01,11.14,4.52,20.6,8.8,5066,9659,6883,13358,153.43,8514880,11.34,325487.78,7.38E+11,28.72,3.66E+10,25.6,25.5,25.6,1.57E+08,2.07,84.2
Brunei Darussalam,26,6,31,92.7,49900,94,94,382,2.1,74,,26,5,29,90,2.4,,,,100,,,,,,,,65,97,99,99,99,91,71,,,,2,,,79.7,5.1,30,,,70,,,2120,,30,400,61,,98.9,314,433,394,543,,11,20.3,0.5,,5.3,,1.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,88,74,100,114,210,33,517,1.1,0,9.2,0,0,63.7,25.4,0.7,50,9,2,65,66,65,83,8,7,9,77,79,76,13,4,,100,99,9,8,10,16,21,63,,,,10,0.12,,,,,,,,,,,,,,,,,,,28.65,4.74,0.95,,14.54,770000,,,,,1000000,4.8,99.7,9,20.6,12,28,8126,2.17,15.82,0.5,,62.3,137000,,9.6,18.7,13,26,48.69,1325,487,839,2.29,,,,,10.2,8.5,15.7,13.2,9,13,14,19,101,,,,,7498.04,,,7064.69,4.99,,,70.17,,,,34.12,84.74,,,2780,11.37,,519,0.41,1.59,5.1,79.6,2,6.36,,,27.29,,,99,-0.54,47465,,71.56,,8,,,,18.77,36.1,76.92,90.16,95.15,92.67,98.91,98.87,98.89,9,2.9,9.5,3.1,4,11,4,11,22.5,10.8,24.3,11.6,11,26,12,28,,,,,37,,,97,1.01,81.21,2.61,,,12.01,32252.8,0.34,913.09,165.62,,,,,,,206.02,0.2,1.11,2967.55,21618.9,88,251,1384,,8.5,31000,2.2,,372361,,,106.88,,,112,112,4.1,6.4,3,7,0.3,101.85,100.04,77.23,,27.49,13.7,5.4,16,6.4,6,15,6,18,106.85,5770,,5891.71,4.83E+09,,,8.8,7.2,8.8,274765.78,2.86,73.5
Bulgaria,27,2,40,98.2,10270,92,93,7693,-0.7,70,2,41,23,14,90,1.3,,,,99,17,,,,,,,,96,95,95,,94,86,,,,9,,0.2,59.8,11.9,62,,,6512,,,35028,,1020,28111,46,,97.7,443,169,741,283,1,36.6,40.2,0.9,,18.3,67.8,6.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,157,93,219,125,554,42,756,2.3,0,5.2,0,0,47.3,29.1,16.1,,5,,65,67,63,40,10,10,10,73,76,69,11,7,0,,41,12,12,13,5,9,87,13.6,8.8,1.6,10,5.86,,,97,99,100,96,99,100,,,,,34.3,39.2,28.6,37.7,27.8,47.5,41.63,48.46,9.43,,,6.20E+08,40,42,50,4.80E+07,1.58E+08,4.4,99.4,14.36,46.2,1115,2928,165469,2.14,5.96,0.63,9.09E+09,80.8,4729731,2,5.63,18.7,506,979,44.86,15607,7821,7786,1.31,6.9,0.93,4.44,0.6,17.51,10.61,25.6,17,953,1114,1358,1631,130,41.5,5,15,9,4121.19,44.37,5954.75,2591.73,11.88,10.84,17.84,60.2,95.71,1.57E+10,57.36,46,112.85,15.64,1.13,36250,27.97,0.05,272,3.03,4.67,12.1,60.6,7.7,4.68,1.05,0.14,76.39,65,100,99,6.06,9353,8.66,29.37,29.21,12,18,16,86,3.76,20.6,72.52,97.71,98.74,98.2,98.11,98.31,98.21,7.3,3.2,4.9,2.5,277,473,199,304,39.73,6.28,45.6,6.7,522,2337,502,2695,,,1.6,18.71,32,,468,96,3.56,109.98,2.35,2.95,395.51,,,,,,4.18,0.56,411,3236,109.22,5.35,,,,,7189.54,158357,376,2127,2157,5.9,461000,-0.53,14.12,7450349,12.8,,98.58,19.71,2.65,99,97,9.67,14.8,629,1027,1.05,96.57,99.8,99,62.8,61.2,14.35,7.34,19.8,9.2,636,955,765,1263,79.45,111000,22.97,44422.34,1.64E+10,55.4,-4.45E+09,14.3,15.2,14.3,5418000,-0.21,70
Burkina Faso,28,3,131,23.6,1130,42,52,14359,3,19,27.2,17,4,46,64,6.1,18,53,31,54,1,33.3,9.6,48,35.9,62.8,13.8,80,94,99,99,99,17,71,2,5,1,,,32.9,56.9,15.8,9,,1291,58,46,418,6557,1960,343,708,5,2,91.5,50,15,87,27,,,43.1,2.1,0.01,9.8,0.2,6.4,94.7,90.8,32.7,38.8,30.5,87.7,62,52,57.2,2.9,2.3,2.9,80.4,71.3,54.3,48.3,53.3,73.1,26.1,23,19.8,1.5,1.5,1.4,90.4,62,65.1,108,144,198.4,206,1.8,1.4,1.5,201.5,136.4,427,376,483,162,459,149,901,18.8,4,1.5,20.3,3.4,18.3,10.4,23.3,91,50,21,36,36,35,248,122,117,126,47,49,46,700,32,0,2004,476,204,203,206,87,7,7,5.4,43.1,35.2,19,5.01,100,91,66,72,97,6,13,41,2.4,,54,67,13.6,6.7,19.9,16.6,11.2,22,132.91,39.84,31.95,,47.21,6.81E+08,226,25,6.4,,1.90E+07,0.7,53.5,22.1,30.6,838,1177,384,0,0.06,0.08,3.96E+11,4.8,398000,4,18.5,23.4,724,921,97.05,1260191,675982,584209,6,,,,,3.7,1,4,1,35,92,37,100,116,17.4,65,7,0,,,,,31.49,19.65,192.63,9.66,95.42,2.04E+09,36.49,46.62,5.2,0.35,0.02,67940,19.79,1.74,27,2.71,3.99,18.4,59.5,6.7,9.76,,,24.78,,42,61,1.58,1140,6.89,21.21,39.51,121,98,16,71,2.39,0.5,51.88,16.62,31.44,23.55,26.48,40.38,32.97,23.8,8.2,24.3,8.4,311,779,316,795,4.6,2.1,4.7,2.2,75,100,75,103,1.6,49.6,35.2,,1000,,,84,0.06,29,1.36,,,,,,,86.22,,,9054,60052,,,,,,,1045.51,,,,133761,0.2,28600,3.11,,1.35E+07,46.4,,30.28,,,34,25,11.8,13.8,261,305,1.15,78.26,65.58,4.17,1.31,40.46,2.2,3.4,2.3,3.7,109,58,116,61,16.44,274000,11.18,743.79,3.43E+09,21.47,-3.90E+08,190.36,168.2,190.36,2549805.5,5.09,18.3
Burundi,29,3,30,59.3,320,73,76,8173,3.9,10,,17,4,45,60,6.8,79,14,17,34,,,8.3,30,,,19.7,78,75,74,74,74,24,79,,,,,,13.7,24.6,2.3,7,,657,14,,147,1348,1295,76,200,2,2,100,4,1,15,4,,,75.4,,0.6,6.3,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,434,412,461,146,439,301,843,18.2,8,1.8,8.4,3,23.3,14.6,22.8,172,78,13,35,37,33,367,109,94,123,49,50,48,1100,41,,3132,714,181,175,186,81,12,7,1.4,63.1,38.9,16,9.1,100,98,70,71,84,41,41,44,,,,,,,,,,,54.94,90.58,34.85,,46.42,3.65E+08,372,84,2.85,,4000000,1,33.6,14.2,19.5,294,413,0,,0.03,0.09,2.10E+10,2,64000,15,34.6,42.7,722,899,91.35,525777,280505,245272,6.8,,,,,6.1,3.8,6.7,4.1,75,90,82,97,146,9.1,92,30,6,,,,,19.13,74.46,348.75,11.4,,1.32E+09,170.29,51.93,2.34,0.07,0,1520,10.77,2.37,3,2.43,0.97,2.3,28.6,3.4,4.19,,,45.29,,47,79,-2.64,420.08,5.08,20.01,42.39,109,164,42,79,16.62,0.5,49.03,52.24,67.31,59.3,70.37,76.78,73.33,20.8,8.5,21.1,8.6,167,307,169,314,3.5,2.1,3.6,2.2,40,50,41,51,1.3,31.3,38.9,,1000,,,75,0.03,40.72,6.22,,,,,,,107.85,,,7220,55758,,,,,,,468.67,5,5,60,117846,0.5,34000,3.8,,7795426,68,,34.62,,,39,27,11.8,13.8,124,147,1.2,83.96,91.65,10.44,0.48,45.14,7,5.2,7.4,5.5,99,100,105,105,5.48,27830,13.6,223.5,7.90E+08,7.61,-2.32E+08,181.3,190.3,181.3,785879.1,6.64,10
Cambodia,30,7,52,73.6,1550,89,91,14197,1.7,20,66,20,5,37,66,3.3,27,,54,44,2,,4.2,0.2,45.4,58.4,40,87,79,82,82,,62,93,,,,,,22.3,26.1,10.7,1,,,209,,,11125,,564,2047,9,,84.4,43,8,167,30,,2,73.9,0,,5.3,0,6,79.5,89.9,22,20.7,39.4,70.1,57.5,69.2,30.7,3.6,4.3,1.8,91.2,82.4,64.3,69.9,76.6,79.1,26.9,12.5,2.5,1.4,1.2,1,82.7,84,35.3,53,43,135.7,127,2.6,3,1.5,111,75.7,257,207,314,148,392,72,853,16.6,2,1.7,0.9,2.3,29.8,26.1,20.6,114,76,16,48,49,46,500,65,58,71,62,65,59,540,48,0,1468,665,82,75,89,72,6,22,1.7,43.7,28.4,11,1.48,99,82,61,65,80,19,28,62,1.2,,,,5.1,3,7.2,23.6,6.5,40.5,44.95,30.34,30.78,,37.26,5.41E+08,505,255,3.38,0,2.10E+07,2.3,43.8,9.5,21.5,453,1032,1000,0.01,0.04,0.03,4.08E+12,7.5,498388,,21.6,38.7,949,1768,68.64,75208,43614,31594,3.18,,,,,6.9,3.5,11.3,5.4,155,216,239,358,114,40,93,1,2,,,,,5.62,6.37,43.79,64.24,,3.52E+09,58.42,51.35,7.85,6.05,0.1,104470,20.08,1.06,28.57,5.75,1.55,12,24.2,6.4,0.16,,,72.92,,53,41,11.2,1453,6.82,25.05,41.71,67,222,150,93,6.1,0.3,58.98,64.05,84.68,73.61,78.9,87.92,83.38,14.2,2.4,15,2.5,109,450,115,478,20.9,4.5,22.5,4.8,188,542,203,588,,,28.4,,450,,,79,0.16,113.65,1.76,,,,,,,91.78,,,12949,93202,,,,,,,1529.94,,,,88156,0.3,38000,1.7,9.78,1.36E+07,35,,85.11,,,85,78,4.6,7.5,102,169,1.01,89.24,89.74,6.29,1.38,44.16,13.8,4.3,16.1,5.1,180,364,215,432,24.66,181040,7.91,538.61,5.68E+09,32.94,-5.47E+08,97.3,94.3,97.3,2749235,4.58,19.7
Cameroon,31,3,141,67.9,2060,65,74,18175,2.1,56,17.1,19,5,41,70,4.5,60,22,16,63,2,37.5,13.1,57.8,40.6,56.7,26,81,74,82,82,,91,74,,,,,,7.1,28.1,8.6,15,1,,147,28,1793,26042,16,700,3124,16,,94.9,23,14,80,51,,2,71.9,,0.2,8.4,0,5.2,91.7,94.5,22.9,29.3,44.2,84.2,68.8,65.2,40,4,3.2,1.9,79.3,83.2,46.1,52.1,58.3,72.5,33.2,31.1,14.2,1.7,1.6,1.2,92.4,101,49.5,93.3,88,185.7,189,2,2.1,1.4,168.8,119.3,436,422,451,150,436,118,848,17.3,7.2,2.2,22.8,4.1,24.8,0,21.5,282,21,8,41,42,41,192,87,79,94,51,52,50,1000,30,0,4899,237,149,142,155,81,8,11,8.7,35.4,15.1,11,3.77,98,62,47,70,88,42,51,58,8.2,,46,57,,,,7.4,2.2,12.6,125.31,19.68,20.17,,23.2,4.17E+08,194,121,0.36,,5000000,1.5,63,22.1,29.7,1162,1593,202,0,0.22,0.11,1.49E+12,13.8,1536594,6,28.9,35.7,1419,1759,82.82,,,,4.31,,,,,4,3.7,4.3,4,167,202,182,215,110,29.2,33,10,-4,196.12,,,392.13,6.14,22.83,66.58,23.24,,7.20E+09,43.84,39.92,13.22,1.33,0.05,212450,18.08,5.38,49,3.74,1.46,11,28,5.2,2.15,,,25.38,,58,66,0.27,1995,5.63,31.4,44.56,87,84,73,74,4.67,1.5,50.29,59.8,77,67.9,,,,40.7,13,41.3,13.2,690,1869,700,1899,3,0.3,3,0.3,15,125,15,127,0.9,53.1,15.1,,730,,,68,0.19,32.79,1.32,,,,,,,129.42,,,5931,45662,,,82,0,,,1201.29,,,,542040,1,160000,2.19,18.24,1.70E+07,40.2,,58.24,,,69,58,21.3,25.3,803,954,1.14,83.73,,10,1.81,48.42,0.5,2.8,0.6,2.9,142,20,149,22,27.4,475440,11.2,3715.3,1.21E+10,13.41,-3.45E+08,149.4,127.8,149.4,9716151,3.89,54.6
Canada,32,4,14,,36280,100,99,32577,0.9,80,,39,18,17,90,1.5,,,,100,,,,,,,,,94,94,14,94,55,68,71,74,,12,,0,70.4,17.9,34,11,,38310,1375,36627,327224,110390,27078,62307,101,34,49,2585,2754,3672,3912,8,19,29.6,42.7,0.01,5.3,2,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72,55,89,138,141,34,388,0.2,0,7.2,0,0,58.5,32.9,1.1,10,0,0,72,74,70,5,5,5,5,81,83,78,7,3,,222,4,6,5,6,6,15,80,,,,6,7.8,,,99,100,100,99,100,100,13.9,15.9,,,,,,21.6,18.9,24.3,14.04,7.42,2.1,2599,,,5,5,1.61,1.93E+08,1.06E+08,2.1,100,17.6,84.3,5305,19540,6429000,19.9,16.39,0.58,2.46E+11,52.5,1.50E+07,4,1.47,7.7,581,1502,44.43,13005,3964,0,1.53,31.68,0.97,35.56,1.08,15.5,9.73,42.2,30.6,3296,3691,8266,9442,112,74.7,1,,10,17284.69,597.25,18205.98,8416.53,,,44.64,37.89,115.92,,,46.36,116.98,2.58,2.97,3101340,21.53,0.33,3430,2.88,6.82,17.5,70.3,9.7,14.43,82.28,2.51,34.1,129,100,100,1.91,35078,7.2,31.24,32.56,5,2,1,68,3.22,67.9,80.36,,,,,,,3.82,1.68,4,1.4,480,845,360,855,42.85,25.05,55.8,31.6,6808,11032,8096,12552,,,,130.85,6,513,524.67,94,2.1,60.15,1.15,98.11,2990.68,187.42,5713.19,1.63,49.77,115.54,20.83,0.63,169,1285,2247.32,25.02,3040.88,0.03,17.08,520.77,24185.58,108352,12951,173782,63660,69.8,2.24E+07,1,44.47,3.28E+07,,,,323.42,9.86,,,13.34,78.2,3989,17900,0.84,98.3,,39.87,38.03,66.66,4.62,2.27,9.1,4,798,1331,1105,2027,172.6,9984670,14.3,537523.44,8.10E+11,,4.27E+10,6.1,4.9,6.1,2.59E+07,1.18,80.1
Cape Verde,33,1,104,81.2,2590,87,88,519,2.3,58,,20,5,39,,3.5,99,,,89,,,,,,,,77,74,81,79,,33,64,,,1,,,19,81.5,13.2,21,2,65,11,9,78,410,42,43,231,9,,99.7,227,105,278,129,,5,18.5,0.3,0.1,1.8,23.2,5.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,230,168,308,127,356,39,692,12.2,3.7,3.5,4.3,4.4,25.9,32.6,13.3,,36,,61,63,59,168,25,22,28,70,72,66,210,9,,,324,34,32,35,51,12,37,,,,13,4.78,,,73,80,86,19,41,61,,,,,,,,,,,87.48,18.36,9.24,,316.89,1.62E+08,168,58,7.33,,1000000,2.8,88.5,19.8,28.1,33,47,937,0.18,0.68,0.24,4.79E+09,17.2,65780,9,23.8,29.3,38,47,78.03,7048,3749,3299,3.37,,,,,4.7,3.3,5.1,3.5,5,5,6,5,105,52.9,36,8,,,,,,20.31,26.37,74.47,17.14,,5.43E+08,56.27,33.83,30.22,1.67,0.11,840,37.32,,114,1.02,4.58,13.2,81.8,5.6,0,,,50.06,,61,80,3.37,2831,4.38,16.79,50.52,26,76,27,64,-3.56,6.1,71.31,75.55,87.76,81.22,96.75,95.75,96.25,15.1,5.5,15.3,5.6,10,15,10,15,2.4,0.6,2.4,0.6,0,2,0,2,,,,,150,,,65,0.49,45.61,0.71,,,,,,,103.98,,,180,1582,,,,,,,2150.6,,,,,10.2,48000,2.32,,418224,,,81.36,,,96,95,16,19.3,13,14,0.59,99.31,101.04,69.04,1.13,73.96,3.2,3.4,3.4,3.6,5,2,6,2,87.67,4030,,285.79,6.81E+08,32.02,-2.80E+08,36.4,34.3,36.4,290400.4,3.69,57.3
Central African Republic,34,3,157,48.6,690,38,53,4265,1.7,38,,18,6,42,49,4.7,40,18,6,54,,,15.1,57,,,27.9,54,62,54,,,69,65,,,,,,22.1,35.6,10.9,12,,211,13,55,48,1613,573,17,331,4,2,95.3,20,5,55,14,,,64.4,,0.1,5.1,,3.9,84.8,81.7,29.4,14.3,23.7,77.7,55.4,67.4,54,2.9,5.7,3.3,79.2,79.8,38.6,31.3,40.5,68.4,40.6,48.5,27.9,2.1,2.5,1.7,92.1,94.6,49.8,83.1,98.3,175.2,192.9,2.1,2,1.4,178.4,128.6,467,466,471,154,445,146,863,14.7,12.4,2,18.5,6.5,27.2,0,18.7,594,54,26,37,38,37,345,114,110,118,48,48,48,980,52,0,9990,528,174,175,174,84,7,9,10.8,44.6,21.8,14,1.53,,,51,66,90,25,31,40,,,,,,,,,,,122.13,8.38,55.63,,22.72,9.57E+07,,,0.02,,1000000,4.1,53.4,12.1,16.5,166,230,0,,0.06,0.09,6.91E+10,2.5,60000,6,23,28,306,374,,372457,212150,160307,,,,,,2.2,3,2.3,3.3,39,25,42,27,111,19,,12,-1,,,,,10.49,,,12.43,,1.02E+09,74.19,,2.62,0.44,0.84,227550,8.85,6.36,13,2.5,1.5,10.9,37.5,4,0.05,,,21.07,,47,75,,675,1.99,15.35,61.33,,,,,2.44,0.3,,33.5,64.77,48.57,46.87,70.33,58.52,27.3,13.2,27.8,13.4,197,323,200,327,4.6,0.7,4.7,0.7,8,48,10,49,1.5,68.8,21.8,,1100,,,35,,21.81,1.12,,,,,,,91.95,,,,,,,,,,,,,,,149743,0.3,11000,1.64,,,,,24.29,,,,,21.1,24.5,201,233,1.37,59.78,66.64,2.7,,29.02,12.6,12,13.4,12.7,162,137,171,143,21.92,623000,6.04,252.82,9.18E+08,14.27,-6.54E+07,177.8,149.4,177.8,1592743,1.85,38
Chad,35,3,193,25.7,1170,49,71,10468,3.1,26,,17,5,46,9,6.3,18,1,11,14,0,34.3,0.6,31.9,6.5,37.5,2.8,60,23,20,,,19,69,0,6,,,,23.5,35.6,9.5,4,,268,15,230,317,2499,267,37,345,3,,96.2,14,8,40,22,,,64.4,0.4,0.4,7,,3.6,66.7,55.4,9.3,3.6,6.4,45.6,57.4,51.8,39.2,7.2,15.4,7.1,53.7,38.1,18.2,8.2,19.2,37.5,35.5,29.9,18.3,3,4.6,2,57,-11,29,143,187,200,176,1.4,0.9,1.2,208,179,445,426,466,156,443,131,869,18.1,4.1,1.8,22.3,7,24,0.1,22.8,113,63,14,41,42,40,299,124,116,132,46,47,46,1500,42,19,3111,570,209,204,214,85,7,8,4.4,44.8,33.9,17,0.31,98,95,40,48,71,4,9,23,1.5,,17,25,,,,9.4,2.6,16,174.48,39.1,21.35,,37.43,3.82E+08,303,62,1.53,,2000000,,14.4,12.1,16.5,309,431,0,,0.01,0.01,3.15E+11,2.1,123000,6,23,28,555,681,96.8,612937,389161,223776,6.2,,,,,2.2,3,2.3,3.3,74,50,79,53,119,2.8,77,1,-2,,,,,6.77,27.97,333.87,54.94,,1.63E+09,33.6,46.94,2.2,11.98,0.05,119210,20.2,3.54,22,2.23,1.47,9.5,39.8,3.7,,,,39.49,,24,42,2.31,1749,,53.78,,124,133,25,69,23.31,0.4,50.62,12.8,40.83,25.65,23.24,55.69,37.56,27.3,13.2,27.8,13.4,374,637,381,648,4.6,0.7,4.7,0.7,16,93,17,97,0.6,44.2,33.9,,1100,,,23,0.04,70.5,0.94,,,,,,,,,,7845,58698,,,173.42,0.01,0.9,93.2,708.64,,,,186794,0.2,15000,3.36,,9657069,64,,31.19,,,41,18,21.1,24.5,358,416,1.31,60.98,41.73,0.8,2.6,24.87,12.6,12,13.4,12.7,298,260,312,276,19.18,1284000,,139.23,2.79E+09,14.17,-2.21E+08,208.2,180.1,208.2,2566839,4.88,25.3
Chile,36,5,49,95.7,11300,89,90,16465,1,88,2,31,12,24,90,1.9,,,68,100,,,,,,,60.7,,91,94,94,94,141,78,,,,4,,0.1,52.7,14.1,23,,,6750,,,10000,,,17250,6,,54.8,367,249,697,473,,11,47.3,45.1,,0.6,67.2,5.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,91,60,121,137,165,50,453,0.5,0.1,9.1,0,0,52.8,31.2,6.2,10,1,0,67,70,65,15,8,7,9,78,81,75,16,5,,229,16,9,8,10,17,19,64,,,,5,6.6,,,72,95,98,74,94,97,25,19,,,35.5,40.2,29.9,37.9,33.6,42.1,60.4,20.36,4.36,,9.24,1.52E+08,16,13,1.42,2000000,4.70E+08,3.4,99.8,11.26,43.9,1126,3668,708564,4.35,4.14,0.33,1.38E+13,67.8,9566581,5,6.94,25.8,931,2163,49.18,97250,52959,44292,1.94,2.56,0.16,,,7.51,6.56,15.8,15.1,697,534,1317,1105,114,56,1,4,9,3074.3,54.48,3409.25,1814.53,11.94,13.15,11.56,41.04,,4.54E+10,41.89,35.09,85.95,5.61,1.86,161210,22.36,0.29,396.78,3.11,2.78,13.2,51.4,5.4,6.49,5.98,0.37,32.51,106,95,95,5.23,12262,3.81,42.36,54.92,8,7,7,78,7.87,28.9,78.38,95.64,95.8,95.72,99.18,98.8,98.99,5.21,3.31,4.3,2.4,364,454,208,297,18.89,7.32,26.1,9.4,670,1452,816,1813,,,,114.75,31,,,90,1.09,62.26,3.7,8.31,519.68,,,,,139.76,,,221,2905,256.31,5.86,,,,,12009.85,3120,601,20310,29057,13.9,2137930,1.06,34.88,1.60E+07,17,,122.94,27.9,1.75,96,95,17.9,40.6,1429,2786,1.09,98.26,100.38,20.2,90.76,53.28,28.34,10.29,46.1,17.7,1194,2257,1575,3206,126.03,756630,18.63,66120.55,9.25E+10,37.32,1.02E+10,9.74,7.6,9.74,1.43E+07,1.45,87.6
China,37,7,3,90.9,4660,96,100,1328474,0.6,42,9.9,33,11,21,,1.7,,,19,98,,,,,,,90.2,,94,93,92,,79,94,16,21,,1,,0.1,42,9.9,22,2,109000,136520,,203000,1301240,1170000,351620,1862630,10,9,92.9,144,38,342,90,3,14,58,6.3,0.2,0.7,54.1,4.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,116,87,143,148,291,79,665,11.8,0.1,8.4,0.4,0.4,49.2,16.3,13.4,2,15,0,64,65,63,99,20,24,17,73,75,72,45,18,0,62,201,24,27,21,23,21,56,9.2,21.8,6.8,6,5.2,,,81,88,98,59,65,74,3.4,2.4,,,5.5,4.1,7.1,31.8,3.7,59.5,5.77,59.64,12.55,,1.32,1.80E+09,100,68,22.41,2.23E+08,3.79E+09,1.03,97.8,5.5,18.7,36630,126227,3.74E+07,2.87,4.26,1.04,3.40E+12,29.9,3.35E+08,3,3.8,6.8,25561,45689,41.37,,,,1.73,1088.8,0.84,1119.83,0.86,7.9,5.3,13.6,9.3,35902,50200,62514,88142,,86.9,16,1,-7,1780.54,2474.7,1898.97,1316.33,,11.55,90.07,37.3,,2.82E+11,12.49,44.54,57.02,3.53,0.5,1972900,43.86,0.08,81,2.88,1.82,1,38.8,4.7,30.6,89.84,0.07,31.74,,69,77,9.5,4091,4.25,47.52,46.9,21,45,36,94,4.17,8.4,72.73,86.53,95.14,90.92,98.5,99.2,98.86,35.3,13.3,37.9,14.2,89055,232796,94937,250907,36.7,16.3,42.4,19,109059,231301,126718,269650,,,6.8,34.8,56,,,86,1.51,63.37,1.97,,,49.32,37.85,1.53,1.18,86.83,12.01,0.01,204005,2728636,6984.12,1.96,3626.69,0,15.59,11.96,5765.82,181256,21473,65049,664224,4.1,5.30E+07,0.64,17.66,1.30E+09,4.6,,98.25,1560.54,1.2,,,1,1.7,5919,10125,0.69,99.91,99.3,81.62,7.9,39.94,32.7,15.1,41.4,19.2,101719,206632,128478,264460,21.92,9598088,8.73,5547757.5,1.89E+12,295.23,1.25E+11,27.3,27.8,27.3,5.27E+08,2.95,40.4
Colombia,38,5,92,92.8,6130,88,89,45558,1.4,73,7,26,8,30,90,2.3,83,,34,96,27,,,,,70.1,78.2,78,95,93,93,93,83,71,,,,8,,0,85.4,17,12,,,33951,,,23940,,,58761,6,,43.9,534,185,626,217,,14,14.6,56.1,,0.4,72.3,7.3,96.6,99.3,66.9,72,76.8,97.1,29.7,27.3,20.3,1.4,1.4,1.3,86.2,90,70,69.4,75.8,85.1,16.2,20.6,9.3,1.2,1.3,1.1,30.4,23,10,20.2,16,50.6,39,2.5,2.4,1.4,32.6,22.6,131,87,176,117,240,141,511,10.3,1.4,4.6,0.2,0,62.1,11,10.4,18,6,0,62,66,58,45,17,14,20,74,78,71,130,13,,509,59,21,17,24,25,40,35,4.2,16.2,5.1,9,5.68,48,3,77,93,99,58,78,85,16.6,8.8,30,,32.8,34,31.6,,,,69.08,38.36,12.37,,11.34,6.26E+08,46,23,0.51,,8000000,2.3,96.4,9.33,30.3,2253,5526,318683,0.71,1.36,0.21,9.40E+12,47.9,1.04E+07,11,8.39,36.4,3296,6815,54.9,327922,156176,171746,2.22,2.28,0.05,39.38,0.92,5.65,5.66,11.7,14.6,1324,1071,2546,1749,137,78.2,7,26,7,890.07,49.29,1147.61,636.01,19.17,18,24.17,21.51,110.88,3.77E+10,29.38,44.32,65.7,7.76,3.49,607280,20.79,0.57,201,1.11,6.19,17.7,84.8,7.3,4.92,8.96,0.21,22.33,114,96,93,3.55,6306,2.88,34.35,56.23,17,21,15,71,5.7,10.4,72.59,92.91,92.78,92.85,98.37,97.52,97.96,4.91,4.72,3.3,3.1,1213,1091,527,476,14.41,7.18,20.2,10.1,1704,2781,1714,2801,0.7,,5.1,34.44,130,,332,89,1.35,31.7,3.71,6.78,157.95,6.78,157.95,0.11,2.63,110.94,,,3218,30617,224.62,1.91,554.16,0,1.45,33.83,5578.45,87911,372,417,157092,5.5,2506080,1.41,36.03,4.30E+07,64,,99.77,27.41,0.64,92,96,14.97,48.3,2885,6457,0.98,103.41,100.88,14.4,3.28,53.29,17.67,9.35,36,20.3,2701,3929,3520,5159,134.25,1141750,15.28,58594.69,9.88E+10,39.71,-5.07E+08,22.6,17.6,22.6,3.27E+07,1.82,72.7
Comoros,39,3,66,,1140,50,60,818,2.5,38,,19,4,42,83,4.5,52,,,62,,,9.3,62.7,,,25.7,89,65,75,75,,42,91,4,8,,,,31.7,55.5,8,17,,41,29,17,63,588,51,41,115,7,,100,19,9,35,16,,2,44.5,0,0.3,4.9,0,3.2,82.9,84.8,40.8,26.2,43.1,78.9,42.1,58.6,35.8,2,3.2,1.8,75.5,86,58.7,51.1,63.5,63,16.8,34.9,-0.5,1.3,1.7,1,46.1,42.3,41.9,74.5,86.6,120.6,128.9,1.6,1.5,1.5,122.6,80.7,214,177,250,128,381,83,736,13.6,3.7,3.4,19.4,5.9,37.3,0.5,16.3,50,7,0,55,55,54,44,51,46,57,65,67,62,400,25,,500,86,68,63,74,70,12,18,21.5,46.9,25,25,0.31,90,46,81,85,91,26,35,49,,,,,18.1,14.8,21.8,20.7,13.5,27.7,52.93,79.53,51.02,,31.62,2.49E+07,46,14,0.83,,,,61.8,14.2,19.5,32,45,4,6.66E-04,0.13,0.14,8.11E+09,2,2000,4,34.6,42.7,79,97,80.65,49413,26920,22493,4.3,,,,,6.1,3.8,6.7,4.1,8,11,8,12,,25.7,7,2,6,,,,,9.32,25.45,,12.48,,2.91E+08,75.58,40.04,5.5,0.26,0.44,50,9.31,0.04,14,1.4,1.6,8,53.3,3,0.54,,,34.72,,41,86,2.05,1063,,10.99,,53,21,10,91,2.3,2.5,64.61,,,,,,,20.8,8.5,21.1,8.6,18,40,18,40,3.5,2.1,3.6,2.2,4,7,4,7,9.3,62.7,25,,480,,,80,0.15,28.11,,,,,,,,,,,55,720,,,,,,,565.38,,,,154,0.6,5000,2.11,,671247,,,50.49,,,52,49,11.8,13.8,15,18,,84.2,,76.5,,37.99,7,5.2,7.4,5.5,10,13,10,13,21.92,1861,,87.94,2.32E+08,29.62,-5.75E+07,73.6,57.3,73.6,222181.12,3.86,37
"Congo, Dem. Rep.",40,3,125,67.2,270,47,60,60644,3.2,33,,16,4,47,34,6.7,,4,15,61,,,0.7,52,,,31.4,81,79,87,87,,61,85,,,,,,28.8,37.1,7.2,11,,,159,,512,28789,1042,1200,5827,5,,100,7,2,18,6,,1,62.9,,0.4,4.8,0,4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,417,382,454,161,465,273,909,18.1,3.7,1.6,16.9,4.7,25.7,6.3,23.1,156,69,15,37,39,35,392,129,122,136,47,49,46,1100,47,41,2933,645,205,193,217,82,11,7,6.5,44.4,33.6,12,1.86,,,29,46,82,25,31,42,,,,,,,,8.1,2.6,13.5,225.5,10.06,45.52,,31.1,1.83E+09,397,165,0.04,,1.40E+07,0.75,60.7,7.4,10.3,1161,1641,1500,0,0.04,0.14,0,4.8,1000000,8,20.9,25.1,3058,3709,99.14,,,,6.7,,,,,0.9,2.9,1,3.1,448,120,478,128,814,31.4,84,7,4,91.08,,,288.85,,,,31.57,,1.06E+10,156.82,41.16,4.69,5.66,,1336100,14.25,1.31,5,2.75,1.45,7.2,34.6,4.2,,,,39.31,,42,46,3.36,264,,26.93,,129,175,111,85,21.56,0.2,46.09,54.07,80.91,67.17,63.09,77.98,70.42,29.6,16.4,30.1,16.6,2951,4299,3003,4374,4.4,0.6,4.5,0.6,91,565,95,579,0.7,45.4,33.6,,990,,,70,0.11,62.79,0,,,,,,,113.33,,,49292,380043,,,,,,,225.66,29,14,644,419448,,,3.15,16.21,6.08E+07,,,38.46,,,58,34,25.2,29,2487,2879,0.94,73.24,80.9,1.82,2.95,27.55,17.9,16.8,18.9,17.8,2627,2219,2762,2339,5.48,2344860,6.32,2143.44,5.24E+09,1.24,,168,218.2,168,1.89E+07,4.6,32.1
"Congo, Rep.",41,3,132,84.4,2420,52,58,3689,2.2,61,,19,5,42,81,4.6,75,7,12,83,3,,6.1,48,47.5,53.5,44.3,90,67,80,80,,51,28,6,23,,,,3.5,40.8,4,16,2,124,12,9,554,3672,1081,99,756,10,3,100,13,17,31,42,,2,59.2,,0.2,4.8,0,2.1,92.5,98.1,62.3,69.8,74.2,96.7,30.2,28.3,22.5,1.5,1.4,1.3,74.8,84.3,43.6,48.5,56.7,76.2,31.2,35.8,19.5,1.7,1.7,1.3,100.6,50,28.2,101.3,85,201.9,135,2,1.6,1.3,136,107.8,386,367,407,134,393,147,762,11.2,9.3,2.6,25.7,6.6,30.9,0,13.6,275,65,15,46,47,45,403,79,77,82,54,55,53,740,30,,4731,566,126,121,132,79,11,11,8.5,31.2,11.8,,2.6,98,84,35,71,95,21,20,19,7.5,,,,23.8,21.9,26.1,6.6,1,12.1,120.41,30.88,4.67,,401.33,1.44E+09,409,273,0.02,,4000000,,86.2,14,20.6,163,243,0,,,0.33,9.59E+10,12.3,383653,6,24.6,30.5,242,303,82.22,,,,4.49,,,,,3.9,2.5,4.2,2.6,27,35,29,37,113,44.3,74,12,-4,159.56,,,332.15,3.41,18.24,245.67,86.42,,5.94E+09,133.22,40.25,14.01,12.13,0.1,224710,22.44,3.72,31,1.01,0.89,4,47.1,1.9,12.7,,,50.14,,28,58,6.03,3621,,69.9,,79,179,101,28,27.46,1.3,54.73,79.03,90.54,84.68,96.52,98.36,97.44,16.1,7.8,16.4,8,85,172,89,175,3.6,0.5,3.8,0.5,4,29,4,29,,,11.8,,510,,,56,0.2,104.09,1.31,,,,,,,159.44,,,2673,18960,,,245.89,0.02,1.91,528.83,2138.71,,,,79571,0.4,17000,2.25,32.48,3602269,,,67.1,,,70,63,5.3,6.4,37,45,0.96,90.16,98.13,5,3.13,25.42,1.8,1.2,1.9,1.3,11,16,11,16,30.14,342000,8.54,,3.98E+09,12.42,2.05E+09,121.3,121.7,121.3,2173130.2,2.88,60.2
Cook Islands,42,6,,,,75,73,14,-2.5,64,,,8,34,90,3,,,,100,,,,,,,,,98,99,99,,0,100,,,,6,,2.2,91.4,12.4,63,,,10,,,80,,2,20,47,,100,518,390,566,427,1,12,8.6,0,,4,0,4.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,123,96,147,69,326,38,616,0.7,0,0.2,0,0.5,96.1,1.4,1.1,,3,,62,63,61,16,16,13,19,73,75,71,,10,,,24,19,16,22,29,13,57,,,,3,3.73,,,88,95,98,100,100,100,65.7,57.4,,,45.1,49.6,39.9,28.1,20,36.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Costa Rica,43,5,77,94.9,9220,88,87,4399,1.6,62,3.3,26,8,28,90,2.1,,,95,94,,,,,,,,,90,89,89,88,102,89,,,,5,3,0.1,76.1,21.5,13,,,1905,1266,,3653,12450,2101,5204,9,32,80.4,565,269,743,353,5,13,23.9,11.3,0.7,0.7,94,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,95,71,118,125,185,55,457,3,0.2,3.9,0,0,58.7,30.1,4,10,1,0,67,69,65,14,11,10,11,78,80,76,30,8,,235,17,12,11,13,22,21,57,,,,7,5.65,,,96,98,99,95,96,96,,,,,18.7,18.5,18.6,16.8,7.3,26.1,73.78,56.7,8.66,,6.67,2.96E+07,14,12,2.38,,3000000,2.3,98.5,11.58,30.9,238,543,46724,1.08,1.82,0.18,3.64E+11,25.4,923084,27,5.25,21.6,210,392,51.92,,,,2.1,,,,,6.84,6.62,11.6,12.2,164,128,207,181,170,96,1,5,10,1718.88,,,882.78,16.96,17.05,35.94,48.68,68.66,6.22E+09,32.44,35.14,57.53,4.31,-0.22,23910,25.24,0.33,327,1.7,5.4,21,76,7.1,37.98,,,53.97,,89,97,4.13,8661,4.14,29.29,48.2,11,7,8,89,10.66,21.3,78.62,95.08,94.65,94.87,98.04,97.2,97.61,6.84,4.22,5.4,3.6,93,103,62,86,9.7,3.69,12.5,5.3,101,199,90,189,,,,7.4,43,,,89,1.32,84.31,,,,,,,,88.34,,,61,735,,,,,,,6946.99,89225,6,338,8572,21.9,930000,1.73,28.12,4016173,23.9,,91.99,,,91,94,15.57,34.9,327,515,0.98,101.64,100.87,24.4,0.48,62.05,21.36,10.84,41.2,22.1,288,459,378,633,156.16,51100,,7302.35,1.95E+10,37.18,-1.03E+09,12.56,11.6,12.56,2669899.8,2.61,61.7
Cote d'Ivoire,44,3,132,48.7,1580,49,61,18914,1.8,45,14.8,19,5,41,55,4.6,45,9,19,57,,,5.9,36,,,,76,67,76,76,,37,75,0,7,,,,8.3,23,4.1,4,,,339,155,1165,10180,172,1015,2081,6,,87.8,15,8,66,35,,1,77,12.2,0.1,5,,3.8,83.6,,37.9,,32.1,79.1,45.7,,47,2.2,,2.5,94.6,,57.8,,58.8,82,36.8,,23.2,1.6,,1.4,113.3,,71.6,79.4,,192.7,,2.4,,1.6,196.8,125.2,431,402,455,160,436,179,873,14.8,5.6,2.2,20.5,2.5,34.9,0,19.6,358,79,26,39,41,38,420,90,74,105,53,55,50,810,64,0,6442,747,127,106,148,78,10,11,5.1,34,20.2,17,1.77,95,63,66,81,98,12,24,38,,,,,16.5,10.3,21.7,9,2.4,15.4,117.38,63.84,22.84,,6.38,1.10E+08,,,1.21,,1.40E+07,,56.8,18.3,26,989,1437,1239,0.01,0.5,0.17,6.02E+11,12.9,1531846,4,24.3,30.1,1192,1497,81.47,1279039,732343,546696,4.46,,,,,3.4,2.3,3.7,2.5,124,207,132,219,117,12.9,,3,0,170.3,,,422.01,16.3,40.63,212.79,51.11,,1.19E+10,76.17,29.26,14.03,1.91,0,104050,9.75,4.57,34,3.06,0.84,4.2,21.5,3.9,45.14,,,43.64,,46,84,0.22,1575,5.21,25.78,44.58,91,186,67,,4.18,1.1,47.95,38.62,60.84,48.73,52.13,70.83,60.72,12.6,4.9,12.8,5,247,727,250,740,6,1.2,6.1,1.2,56,284,57,291,3.8,57.5,18.2,14.24,690,,,51,0.12,78.55,1.55,,,,,,,131.16,,,20487,,,,,,,,1225.91,,,,524386,1.6,262000,1.68,19.25,1.73E+07,,,42.84,,,52,34,16.6,19.7,706,847,1.2,68.41,73.59,8.12,1.57,51.38,3.8,3.4,4.1,3.5,144,213,153,227,32.88,322460,14.51,8698.34,1.02E+10,11.1,1.16E+09,130.5,114.3,130.5,8363115.5,2.57,45
Croatia,45,2,14,98.1,13850,90,91,4556,0.1,57,2,41,22,15,90,1.3,,,,100,14,,,,,,,,96,96,95,96,0,,42,65,,7,,0.1,80.1,13.9,55,,,3230,,,24872,,2549,11250,55,,94.1,869,579,1084,722,6,25,19.9,5.9,,2.2,97.9,7.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,113,63,161,167,356,48,613,0.3,0,8.5,0,0,65.3,24.6,1.3,,6,,67,69,64,40,5,5,5,76,79,72,7,5,,,64,6,6,6,5,11,84,,,,6,12.25,24,7,98,99,100,98,99,99,22.7,21.6,,,24.9,25.6,23.3,34,29.1,38.9,13.69,48.19,7.6,,26.82,1.27E+08,41,23,,2000000,8000000,3.5,99.9,16.95,62.1,841,2311,116000,2.61,5.09,0.42,4.72E+10,80.2,2553000,5,2.49,13.3,209,431,48.67,14160,7249,6911,1.35,,,,,24.34,12.48,44.7,25.9,634,807,1207,1516,114,69,7,10,9,3474.86,,,1999.84,22.99,22.93,28.45,47.15,,3.04E+10,80.85,45,124.51,4.6,0.61,21350,31,0.03,651.44,1.39,6.02,13.9,81.3,7.4,11.51,,,55.51,,100,100,4.27,13232,8.76,31.57,29.03,6,18,8,,3.18,32.4,75.53,97.08,99.32,98.15,99.65,99.64,99.65,7.24,2.5,7.3,3.6,162,247,178,246,58.98,10.21,76.4,12.7,453,2199,571,2567,,,,33.22,8,,,96,2.4,70.29,1.58,,,,,,,,,,298,2970,,,,,,,7862.67,90321,286,1717,690,19.1,842000,0.01,,4495904,,,95.24,,,92,91,12.87,24.6,490,881,1.34,100.82,100.01,84.4,6.59,60.83,16.17,7.35,23.5,10.6,395,662,507,799,164.38,56540,23.1,22878.02,2.32E+10,28.9,-2.83E+09,7.1,6.9,7.1,2510492.8,0.33,56.5
Cuba,46,5,47,99.8,,97,96,11267,0.1,75,,36,16,19,90,1.5,,,95,100,,,,,,,73.3,,99,93,93,97,94,91,,,,9,,0.2,90.7,10.8,49,,,9841,,,83880,,,66567,74,,93.6,329,322,363,355,,59,9.3,0,,1.3,0,7.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,104,82,127,129,215,54,435,1.3,0,7.9,0,0,49.9,36.9,4.1,10,1,0,68,70,67,9,5,5,6,78,80,76,45,4,,52,10,7,6,7,10,17,73,,,,6,2.26,,,78,91,95,95,98,99,,,,,10.3,9.5,10.9,35.9,28.3,43.4,48.32,60.07,6.4,,7.78,8.88E+07,10,7,21.52,,9.10E+07,1.4,99.9,13.87,31.2,1068,2203,0,,2.14,,,1.2,75797,,5.49,20.2,567,1346,43.75,26741,14088,12653,1.49,,,,,8.98,11.12,13.4,17,1063,772,1329,955,,77.1,1,,-7,1151.87,,,905.51,37.26,44.2,51.43,15.99,,,,37.43,8.81,,,27130,8.83,0.07,310,0.7,6.9,11.7,90.8,7.6,11.8,,,18.67,,99,91,5.16,7407.24,,47.46,,5,4,4,91,0.87,1.7,77.99,99.79,99.81,99.8,99.95,99.96,99.96,4.34,3.52,4.3,3.9,299,300,305,305,35.8,15.64,40,16.3,1227,2699,1229,2826,,,,,33,,,98,5.91,,,,,,,,,118.06,,,104,1299,,,,,,,2927.31,89481,70,1427,4952,2.6,300000,0.12,19.44,1.13E+07,,,92.63,,,93,92,20.09,28.2,1979,2105,1.1,99.14,100,49,22.09,46.13,5.47,3.02,7.1,4.3,278,491,333,498,117.81,110860,,24332.62,,,,7,7,7,8501228,0.09,75.5
Cyprus,47,2,5,96.8,25060,99,99,846,1.1,69,,35,17,19,90,1.6,,,,100,,,,,,,,,87,97,93,90,42,63,,,,9,,0,44.8,6.4,38,,,715,,,3361,,160,1950,40,,84.3,759,663,1696,1483,2,23,55.2,12.2,,0.1,0.2,6.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,58,42,74,94,354,33,530,3.2,0.1,5.4,0,0,61.5,28.2,1.7,,0,,68,68,67,5,3,3,4,80,82,79,10,2,,,6,4,3,5,12,14,74,,,,,11.52,,,100,100,100,100,100,100,11.8,12.9,,,10.9,8.4,13.2,,,,8.03,17.86,5.07,,32.1,5.99E+07,5,4,30,4.30E+07,2.60E+07,1.14,99,29.6,67.2,157,349,31856,4.2,8.99,0.38,4.89E+08,86.1,640515,4,5.3,11.6,25,53,47.05,205,75,130,1.61,,,,,15.2,12.8,23.1,19.6,81,83,122,123,115,,1,,10,5559.51,,,3367.64,22.66,35.86,33.7,42.11,,,,45.09,150.29,6.84,3.22,1740,18.36,0.08,1350,3.46,2.54,5.8,42.3,6,18.22,,,45.72,,100,100,1.31,24473,,23.23,,4,2,1,63,2.35,39,79.02,95.08,98.63,96.8,99.82,99.74,99.77,3.6,1.2,3.9,1.3,8,18,8,19,24.8,5.3,26.8,5.7,30,130,32,139,,,,38.73,47,,463,86,2.34,45.78,1.38,,,,,,,,,,4,49,,,,,,,16903.5,161583,4332,727,380,30.9,249000,2.4,,780133,,,100.08,,,88,87,28.2,45.2,158,253,0.83,100.91,100.08,63,,71.71,5.8,3.6,6.8,4.3,21,30,25,35,128.77,9250,26.59,7016.56,1.03E+10,,-4.53E+08,5.2,5,5.2,525155.4,2.61,69.3
Czech Republic,48,2,11,,20920,94,91,10189,0,73,,39,20,14,90,1.2,97,,60,100,14,,,,,,,,97,99,99,99,57,72,52,73,,7,,0,87.9,13.6,84,,,6933,,,91120,,5842,36595,89,,95.5,1309,829,1490,943,6,36,12.1,1.8,,2.5,89.4,6.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,108,67,148,177,315,50,568,0.2,0,12.5,0,0,48.9,34.7,3.6,10,1,0,68,71,66,10,3,3,4,77,80,73,4,2,,100,10,4,3,5,3,13,83,4.4,2.6,2.1,7,12.99,5,1,100,100,100,98,99,100,16.3,13.7,,,35,34.1,35.8,31,25.4,36.6,11.18,55.13,2.94,,,2.79E+08,,,19.55,4.00E+07,6.22E+08,2.5,99.9,18.3,58.4,1953,5132,709063,6.93,11.69,0.6,7.31E+11,115.2,1.08E+07,2,4.4,16.2,476,1160,,37097,15048,22050,,19.82,,23.51,,33.22,15.63,58.5,32,1938,2559,3243,4374,112,72,,,10,6343.21,82.58,,4417.1,12.82,23.29,30.43,72.12,,,,,146.5,9.3,-0.02,26480,25.86,0.02,868,0.81,6.29,14.4,88.6,7.1,12.75,0.68,,68.95,,99,100,,20281,10.29,38.35,25.4,,,,,-0.33,27,,,,,,,,7.73,3.32,7.2,2.7,385,575,289,533,57.02,12.32,66.1,13.3,1272,4588,1307,4891,,,2.1,30.75,9,,,97,,123.99,1.77,9.56,,,,,,,5.6,,,,211.15,,,,,,,159200,1805,9271,1426,21.6,2200000,0.27,11.44,,,,102.21,44.64,,,,17.54,38.1,1336,2927,1.3,100.65,,100,,58.71,10.76,5.56,14.8,7.8,678,904,809,1106,142.47,78870,15.56,119691.89,6.78E+10,,4.05E+09,4.5,4,4.5,7522057.5,0.13,73.5
Denmark,49,2,6,,36190,96,95,5430,0.2,86,,40,22,19,90,1.8,,,,,18,,,,,,,,89,75,,75,62,83,22,68,,8,,0,84,15.6,38,,,4530,,,54073,,3564,19287,101,,90.1,2812,4054,3349,4828,7,36,16,9.5,,2.8,0,9.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,88,65,111,167,182,40,503,0.3,0,5.5,0,0,73.8,19.4,0.9,10,1,0,70,71,69,8,3,3,4,79,81,76,3,3,,125,7,4,4,5,4,10,86,,,,5,11.71,,,100,100,100,100,100,100,9.1,9.8,,,,,,33.4,30.6,36.1,6.16,61.02,1.51,2037,,,8,7,21.17,3000000,1.17E+08,0.8,,24.29,88.7,1390,3879,1349036,24.91,8.48,0.3,2.95E+11,100.3,5165546,2,2.83,12.6,230,439,51.28,15525,6267,9258,1.8,3.69,0.68,,,20.56,14.57,41,33,1114,1058,1800,1828,110,,1,,10,6663.06,36.03,6631.95,3620.77,24.83,35.33,62.5,48.79,142.7,,,46.76,162.44,4.97,6.26,5000,20.82,0.15,4350,1.45,7.65,14.4,84.1,9.1,21.98,,,44.06,137,,100,2.77,33626,8.34,25.51,24.7,4,4,2,83,3.19,52.5,78.32,,,,,,,3.99,1.08,4.3,2.3,130,152,120,187,40.1,27.8,45.3,29.8,1475,2045,1515,2011,,,,68.8,5,,,95,2.9,62.1,1.34,4.97,915.51,10.45,1922.95,0.12,22.46,103.81,,,45,346,194.97,13.11,377,0.03,1.28,235.04,24218.81,253978,16469,37667,4543,65.5,3543000,0.27,20.09,5432335,,,99.07,17.39,3.2,99,100,21.29,39.3,1075,1842,1.58,101.5,,100,2.53,72.98,5.11,2.73,7.9,3.9,177,241,206,342,158.9,43090,32.44,46078.47,1.71E+11,,1.38E+10,5.2,4.8,5.2,4636077,0.39,85.6
Djibouti,50,1,27,,2180,34,42,819,1.8,87,,20,5,38,89,4.1,7,6,14,93,,,1.3,9.5,,,17.8,77,74,88,25,25,40,80,,,,,,30.6,75.4,13.4,16,1,23,60,,84,296,182,18,140,4,3,98.4,75,47,100,62,,2,24.6,1.6,0.3,2.3,10.1,6.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,343,305,380,116,533,92,926,16.6,2.7,1.8,0.8,4.4,27,26.2,20.4,151,115,24,43,43,43,809,86,75,98,56,58,53,650,45,,3017,1300,130,112,143,76,8,17,14.8,38.8,25.6,,1.79,50,2,54,92,98,11,67,76,,,,,14.9,10.7,17.9,,,,25.35,73.38,3.53,,95.52,7.63E+07,792,387,6.33,,8000000,0.79,60.6,14.2,19.5,37,52,42,0.01,0.78,0.22,1.51E+10,6.4,23000,,34.6,42.7,90,113,70.75,79112,41485,37627,3.95,,,,,6.1,3.8,6.7,4.1,9,10,10,12,,17.8,134,5,2,,,,,33.85,,,40.61,,4.12E+08,53.13,39.34,6.82,3.2,0,60,18.97,3.09,54,1.69,4.51,12.1,72.7,6.2,,,,50.94,,66,54.75,1.38,1964,,16.61,,88,348,139,80,3.15,1.5,54.44,,,,,,,10.4,4.25,10.55,4.3,10.5,17.5,10.5,18,1.75,1.05,1.8,1.1,3,3,3,3,,,,,273.75,,,65,0.14,44.7,2.14,,,,,,,,,,1076,9958,,,,,,,1163.37,,,,15027,2.32,15750,1.74,,476703,,,31.22,,,24.75,18.75,5.9,6.9,8.5,9.5,0.49,75.64,,45,4.55,79.86,7,5.2,7.4,5.5,14,11,14,12,76.71,23200,,373.73,6.33E+08,21.66,-7.32E+07,135.8,,135.8,692421.4,2.39,86.1
Dominica,51,5,,,7870,79,75,68,-0.3,71,,,11,28,90,2.1,,,,99,,,,,,,,,96,96,93,93,165,100,,,,,,0.7,64.7,9.2,39,,,4,,,317,,,38,42,,81.7,311,192,481,297,,5,35.3,18.3,,8.3,0,6.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,150,109,191,144,257,45,590,0,0,0,0,0,99.9,0.1,0,,1,,64,66,62,16,13,12,14,74,76,72,,10,,,16,15,14,16,19,13,68,,,,10,7.5,,,90,97,100,75,83,86,,,,,17.2,13.5,19.3,,,,,30.67,18.54,,221.45,2.09E+07,16,28,,,,1.75,87.5,,,,,2846.38,3.98,1.65,0.15,7.07E+07,51.36,36608.25,7,,,,,,1268,496,772,,,,,,,,,,,,,,108,50,3,13,,,,,,,,,41.94,,2.86E+08,104.68,,65.9,10.85,0,460,28.53,,288,2.31,4.19,8.9,64.5,6.5,7.48,,,65.23,,64.5,72.75,4.51,8576,,23.78,,13,7,12,42.86,2.13,21.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,98,0.5,68.6,,,,,,,,,,,2,17,,,,,,,5635.54,44567,,42,,13.65,9750,0.74,,69029,,,108.23,,,83.25,78,,,,,,101.29,,50.4,,57.68,,,,,,,,,104.11,750,,113.58,2.82E+08,17.21,-6.99E+07,13,,13,52488,1.23,72.9
Dominican Republic,52,5,118,87,5550,78,76,9615,1.5,68,2.8,24,8,33,78,2.9,94,,24,96,31,30.7,,,63.5,55,69.8,85,96,79,70,59,66,85,18,66,,8,,1.7,31.2,9.5,20,,,7000,,,15352,,3330,15670,18,,79.5,140,70,449,223,4,19,68.8,14.4,,1,22.7,6,99.4,99.6,89.4,93.8,95.7,99,10,5.8,3.3,1.1,1.1,1,93,94.5,70.1,83.5,86,89.5,22.9,11,3.5,1.3,1.1,1,52,43.4,5.8,29.5,22.2,81.5,65.6,2.8,3,1.1,46.9,41.1,209,138,275,131,381,59,687,11.7,3.9,2.9,0.6,0.1,47.2,20.6,13,75,14,1,60,62,57,89,25,22,27,70,74,66,150,18,0,1036,118,29,27,31,56,12,33,8.6,11.7,4.2,11,6.66,35,7,91,95,97,74,79,81,,,29,52,14.9,11.9,18.4,15.4,13.3,17.5,110.28,70.69,12.43,,8.08,7.70E+07,,,16.14,,2.70E+07,4.4,95.5,5.29,36.1,378,1335,65856,0.7,2.07,0.43,3.52E+10,40.7,2534063,,3.78,30.8,562,1032,,222048,103541,118507,,,,,,2.87,2.91,11.6,12.3,207,186,389,354,230,61.3,,8,8,1000.25,,,776.8,8.2,5.86,,33.96,85.33,7.76E+09,28.1,,47.73,3.47,0,13760,19.93,1.11,196.92,3.7,1.68,9.3,31.1,5.4,1.3,,,37.71,,81,95,,5173,4.13,25.48,49.9,,,,,4.19,16.8,,87.18,86.81,87,95.42,93,94.22,4.75,3.59,7.8,5.5,262,328,166,236,6.99,4.05,18.6,9.3,286,527,285,526,,,4.2,0.81,150,,,99,,54.28,0.6,,,,,,,95.8,,,,,,,,,,,,,,,62546,,,1.54,21.36,,42.2,,86.85,,,,,17.71,85.3,1140,2318,1.03,103.63,102.6,49.4,,62.09,3.62,2.65,13.4,9.2,217,302,295,386,109.59,48730,16.77,18770.67,2.34E+10,23.89,-1.28E+09,37.3,27.5,37.3,6325693.5,2.87,66.8
Ecuador,53,5,100,91,6810,97,96,13202,1.1,63,,24,9,32,,2.6,58,,24,80,,,,,,,72.7,67,99,99,99,99,34,83,17,45,,2,,0.7,43.6,7.3,17,,,2062,,,20586,,,18335,17,,85.6,130,73,297,166,,15,56.4,5.7,,1.1,41.4,5.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,166,123,206,129,244,89,576,11,1.1,4.6,0.5,0.1,49.8,20.9,12,12,25,1,62,64,60,128,21,18,23,73,76,70,210,13,,246,195,24,21,26,37,21,42,5.1,29,6.2,16,2.36,8,1,91,95,98,72,84,91,,,,,25.1,17.1,31.6,14.9,5.8,23.9,83.48,27.28,6.62,,16.06,2.28E+08,132,34,3.93,,3.30E+07,3,74.7,5.47,23.5,498,1221,26786,0.21,2.19,0.35,5.43E+09,47.2,4544174,10,4.48,38.7,1064,1978,62.6,11727,0,11727,2.58,,,,,2.76,3.38,7.6,10,293,208,508,346,176,72.7,27,15,6,714.49,,,799.4,3.24,6.13,,30.87,150.16,1.71E+10,48.59,42.4,60.68,4.43,0,108530,23.79,0.3,147,3.18,2.12,8,40,5.3,7.64,1.56,0.12,31.79,,94,94,3.25,6533,3.34,33.16,53.55,22,59,23,83,7.47,7.3,74.79,89.7,92.33,90.98,96.49,96.38,96.44,5.08,5.14,5.9,6.2,494,422,298,255,7.18,3.52,10.5,6.1,301,463,299,455,,,6.2,8.64,130,,,93,1.48,54.82,2.39,0.26,19.46,,,,,102.33,,,3540,26615,167.68,4.58,541,0.01,4.87,364.11,3827.45,85303,21,639,23692,5.5,724000,1.11,29.87,1.34E+07,46,,105.67,9.33,0.7,100,101,10.31,35.9,892,1502,0.47,100.09,100.12,14.97,7.61,60.21,16.73,12.45,37.8,27,1096,1355,1335,1636,101.37,283560,27.25,29297.34,2.05E+10,12.54,-3.87E+08,26.4,25.4,26.4,8202303.5,1.91,62.8
Egypt,54,1,48,71.4,4940,94,98,74166,1.8,43,3.1,23,7,33,90,3,59,,,74,20,11.1,,,63.4,47.5,59.2,85,97,98,98,,59,79,,,,3,1,0.8,40.7,7.3,22,4,,25170,9531,26553,249787,3694,92540,179900,34,,94.9,129,38,316,93,13,24,59.3,0.2,0.01,1.4,26.4,6.3,89.1,95.7,54.3,50.5,65.8,88.7,34.8,45.2,22.9,1.6,1.9,1.3,97.6,97.2,96,95.1,96.5,96.8,1.6,2.1,0.3,1,1,1,37,49.5,17,30.7,25.1,67.7,74.6,2.2,3,1.4,56.1,39.1,186,142,229,84,560,35,959,12.8,0,2.1,0.4,0.1,44.3,25.7,14.6,10,3,0,59,60,58,24,29,27,31,68,70,66,130,17,0,100,31,35,33,37,32,8,61,14.1,23.8,5.4,12,0.21,4,0,98,98,99,52,66,85,46.6,,,,12.6,7.6,16,15.1,1.3,28.7,42.93,3.54,14.86,,12.31,9.95E+08,25,16,3794.44,3.80E+07,7.40E+08,1.18,74.2,17.3,24.2,4911,6945,90104,0.12,2.24,0.5,5.06E+10,19.1,7643060,10,7.9,9.7,2178,2713,,266039,256347,9691,,0.9,0.01,,,3.9,2.7,4.3,2.9,721,972,775,1042,128,59.2,3,6,-3,1245.41,103.98,1341.6,841.47,,,,30.34,,3.01E+10,33.64,,32.98,5.99,0.1,670,17.98,0.02,78,3.78,2.32,7.3,38,6.1,0.37,2.86,0.04,32.61,,86,98,,5049,8.94,36.31,34.41,,11,7,79,6.26,7.2,,59.36,83.02,71.41,78.95,90.08,84.93,6,3.3,6.1,3.3,856,1314,869,1332,8.4,2.8,8.6,2.9,747,1837,772,1886,,,5.4,88.83,84,,,98,,33.98,2.83,25.78,332.59,34.63,446.85,1.9,24.45,125.82,,,2115,23007,628.64,2.96,696.08,0,3.72,48,,1425,757,7676,8105,3.3,2300000,1.8,20.45,,16.7,,97.99,56.78,0.73,,,3.8,4.4,741,867,0.3,93.03,87.65,81,,48.83,3.2,1.9,3.4,2,509,744,538,787,76.71,1001450,14.07,173483.08,1.20E+11,72.62,-3.61E+09,41.9,35.7,41.9,3.12E+07,1.94,42.8
El Salvador,55,5,104,74.1,5610,94,94,6762,1.4,60,19,24,8,34,90,2.7,71,,46,69,,,,,,,67.3,87,98,96,96,96,61,91,,,,5,,3.1,58.7,15.6,9,,,3465,,,5103,,,7938,8,,90.3,227,112,387,191,,12,41.3,9.7,,0.6,47.7,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,191,127,256,102,223,101,557,12.4,1.7,3.7,0.5,0,39.9,28.4,13.4,36,7,2,60,62,57,50,22,20,24,71,75,67,170,12,,770,64,25,23,28,41,21,38,5.8,24.6,6.1,13,3.72,,,68,84,94,80,86,90,,,,,19,15.4,24.4,,,,83.44,82.24,10.5,,29.5,2.00E+08,52,27,7.19,0,9000000,1.4,92.4,4.23,13.6,138,352,42314,0.63,0.95,0.18,1.57E+09,35,1832579,,7.51,45.6,609,1213,65.55,29880,13074,16806,2.68,,,,,2.31,2.37,4.4,6.2,96,55,163,97,118,67.3,9,11,7,665.53,,,694.17,9.24,10.51,17.24,26.52,,8.46E+09,51.25,40.24,50.74,3.55,1.27,2980,15.72,0.81,177.17,4.21,3.77,15.2,53.9,7,3.64,,,45.19,,77,84,0.98,5403,2.67,29.66,52.36,23,23,16,91,4.82,9.3,71.59,79.25,82.14,80.64,90.33,86.64,88.46,3.95,4.52,4.2,4.4,161,124,114,89,5.95,3.19,5.9,4.3,109,120,112,125,,,6.1,21.22,150,,,99,1.24,59.88,0.63,,,,,,,96.74,,,591,4405,,,,,,,2777.24,67,61,349,32805,4.5,300000,1.39,22.75,6704932,37.2,,88.75,,,85,86,7.63,26.8,283,546,0.82,98.14,104.26,19.8,4.48,59.84,12.88,8.56,23.6,21.1,410,375,547,495,93.15,21040,12.49,6397.34,1.46E+10,22.35,-3.08E+09,28.6,22.4,28.6,3987677,1.86,59.8
Equatorial Guinea,56,3,128,87,16620,83,91,496,2.4,39,,19,6,42,32,5.4,37,14,14,63,,,0.7,48.6,,,,62,51,33,,,74,51,,,25,,,5.3,78.3,7,11,2,1275,15,18,84,271,967,121,153,5,19,73.6,219,215,280,274,2,3,21.7,0,0.01,1.8,0,1.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,449,425,475,155,438,144,864,13.6,7.4,2.5,24,7.4,27.5,0.3,17.3,200,42,12,46,46,45,256,124,115,132,46,47,46,680,47,,2857,404,206,199,213,79,9,12,14,42.6,15.7,13,3.38,,,42,43,45,46,51,60,,,,,,,,,,,125.19,11.55,2.85,,80.46,3.85E+07,259,113,0.42,,8000000,,64.6,12.1,16.5,20,28,180,0.04,8.19,0.42,1.28E+12,19.3,55500,6,23,28,37,45,86.75,6187,4494,1693,5.36,,,,,2.2,3,2.3,3.3,5,3,5,4,131,,55,3,-5,,,,,0.91,2.44,,96.78,,2.72E+08,7.82,36.82,22.08,24.71,0,16320,38.16,3.57,211,0.36,1.34,7,78.9,1.7,,,,47.6,,60,43,7.5,11999,,94.21,,123,114,86,51,43.54,1.4,51.02,80.46,93.36,86.99,94.94,94.79,94.86,27.3,13.2,27.8,13.4,24,41,25,42,4.6,0.7,4.7,0.7,0,6,0,6,0.7,48.6,15.7,,880,,,51,0.3,122.82,,,,,,,,161.62,,,265,1981,,,373,0.26,1.81,3411.88,18279.41,,,,10486,1.4,7000,2.35,,529034,,,58.25,,,54,47,21.1,24.5,25,29,,82.52,100.15,,,2.94,12.6,12,13.4,12.7,19,18,21,18,,28050,,4334.51,3.79E+09,772.12,-2.96E+08,204,207,204,188314.12,2.4,38.9
Eritrea,57,3,85,,680,43,50,4692,3.6,20,,18,4,43,,5.2,41,3,12,28,3,38,4.2,3.6,43.6,68.4,8,80,95,97,97,,35,88,,,,,,26.5,37.3,4.2,12,,,16,88,248,2505,56,107,215,6,,72.5,10,4,28,10,,,62.7,0,0.2,11.6,0,4.5,87.9,81,12,6.7,10.4,64.7,75.9,74.3,54.3,7.3,12.1,6.2,95.6,96.4,77.1,83.8,78.5,93.8,18.5,12.6,15.3,1.2,1.2,1.2,62.1,35,31,58.5,65,120.6,100,2.1,1.5,1.4,117.1,86.1,251,219,290,133,398,92,762,15.6,6.2,3,13.6,2.5,27.4,13,18.6,127,20,2,50,51,49,94,48,42,53,63,65,61,450,21,0,2180,218,74,68,80,81,8,11,1.6,43.7,34.5,21,0.59,97,31,57,60,74,3,5,14,1.6,,,,6.6,4.6,7.8,9.1,1.2,16.9,77.66,75.32,22.57,,79.13,3.55E+08,92,78,10.71,0,2.76E+08,,28.3,14.2,19.5,178,250,0,,0.16,0.24,4.15E+08,0.9,20000,,34.6,42.7,438,548,82.99,288930,154627,134303,5.05,,,,,6.1,3.8,6.7,4.1,45,65,49,69,,8,21,3,-7,,,,,11.1,15.16,1082.5,8.79,,7.36E+08,76.46,41.06,1.73,1.17,,15540,20.1,1.23,8,2.04,1.66,4.2,44.9,3.7,6.06,,,55.72,,32,60,-3.37,685,,22.64,,50,41,15,88,14.9,1.8,57.34,,,,,,,20.8,8.5,21.1,8.6,100,224,101,227,3.5,2.1,3.6,2.2,25,37,25,38,4.2,3.6,34.5,,630,,,84,0.05,52.07,24.11,,,,,,,,,,949,9620,,,,,,,810.89,,,,33701,0.4,15000,3.9,,4669638,53,,51.59,,,51,34,11.8,13.8,96,114,1.9,71.71,,21.8,,54.79,7,5.2,7.4,5.5,60,72,62,76,13.7,117600,,758.45,7.57E+08,3.8,-4.02E+08,81.8,70.5,81.8,878184.06,5.56,19.4
Estonia,58,2,21,99.8,18090,94,95,1340,-0.3,69,2,39,22,15,90,1.5,,,33,100,15,,,,,,,,96,95,95,95,66,72,39,53,,9,,0.6,74.2,11.3,56,,44,1175,115,,9247,5839,869,4414,70,43,92.9,734,460,989,620,7,33,25.8,4.1,0.5,2.1,84.8,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,186,96,279,150,435,144,674,1.4,0,17.9,0,0,54.3,24.3,2.1,,5,2,64,69,59,39,5,3,6,73,79,67,25,4,,887,40,6,4,7,6,27,67,,,,4,9,34,10,99,100,100,94,95,96,14.9,13.7,,,30.8,27.8,33.8,38.8,27.5,49.9,21.88,19.67,3.73,,,1.35E+08,43,36,1.24,8000000,1.20E+07,2.7,99.8,18,47.7,252,546,179200,13.31,13.66,0.94,4.62E+10,108.8,1255731,,4.9,15.5,74,156,46.55,2510,1086,1424,1.49,,,,,19.02,12.36,31.7,23.2,199,160,350,282,119,70.3,7,1,6,5567.19,,,3785.75,19.19,25.52,18.17,79.95,,,,49.4,140.21,21.8,4.43,22840,35.25,1.3,516,1.16,3.85,11.5,76.9,5,17.57,,,86.08,,97,100,10.02,16654,6.79,28.51,36.03,6,18,12,72,6.79,51.9,72.96,99.76,99.78,99.77,99.81,99.73,99.77,6.68,1.92,4.4,2,24,32,30,38,60.51,7.65,67.7,9.1,113,548,134,596,,,,25.42,63,,,96,3.16,130.24,1.49,,,,,,,,,,90,581,,,,,,,17215.19,157934,358,871,9653,47.4,620000,-0.22,,1332893,8.9,,105.62,,,103,100,18.05,36.3,164,335,1.23,99.68,100.08,22.67,34.59,67.75,20.91,9.48,30.5,15.2,173,212,216,266,167.12,45230,16.23,18202.75,8.36E+09,,-8.45E+08,7.8,8.2,7.8,930155.1,-0.3,69.1
Ethiopia,59,3,109,35.9,630,68,74,81021,2.5,16,23,18,5,44,7,5.4,12,4,18,6,1,45.8,1.5,3,18.7,33.3,14.7,85,65,73,73,73,27,78,1,1,3,,,42.9,60.4,10.6,2,,18652,93,1347,2703,15544,12573,1343,1936,2,2,80.7,13,4,22,7,,,39.6,3,,7.3,0.3,4.9,57.7,26.6,2.3,0.7,2.6,44.6,55.4,25.9,42,25.1,38,17.2,63.4,52.5,30,24.9,32.2,65.4,33.4,27.6,33.2,2.1,2.1,2,85,38,37,54,92,139,130,2.6,1.4,1.4,135,98,326,294,358,147,435,104,859,17.3,3.8,1.7,6.1,4.2,30.2,14.3,22.3,,74,9,41,42,41,378,77,67,87,56,58,55,720,41,0,,641,123,113,132,82,6,12,5.1,50.7,34.6,15,0.86,100,78,31,42,96,8,11,27,0.7,,17,30,7.9,4.9,9.9,4.3,0.9,7.6,100.25,33.92,46.64,,24.15,1.91E+09,383,157,4.56,,1.62E+08,1.55,5.7,17.9,24.7,3644,5142,171,2.27E-04,0.11,0.2,1.58E+10,0.5,178000,12,29,35.9,6081,7619,89.93,5090927,2768306,2322621,5.29,,,,,7.1,3.8,7.7,4.2,746,1225,804,1316,127,14.7,84,6,1,34.39,,,287.78,22.11,,,16.34,105.44,6.26E+09,55.22,44.89,1.36,1.94,0,130000,20.49,2.11,6,1.91,2.99,10.8,61,4.9,0.21,,,38.4,,44,22,6.76,591,9.12,13.77,29.97,80,170,49,78,9.22,0.2,52.39,22.8,50,35.9,38.5,62.2,49.9,19,3.9,19.3,3.9,709,3580,719,3639,2.6,3.1,2.7,3.2,559,530,572,550,1.3,3,34.6,,850,,,59,0.03,44.23,3.01,,,,,,,101.59,,,66363,507309,,,,,,,776,7,1,4,946815,0.3,225000,2.64,3.85,7.31E+07,44.2,,41.33,,,61,49,3.5,4.3,501,608,0.93,77.14,61.9,13.4,,39.6,6.6,4.8,6.9,5.1,944,1246,1000,1307,10.96,1104300,10.67,7881.26,1.04E+10,17.91,-2.97E+09,131.72,120,131.72,1.20E+07,4.03,16
Fiji,60,6,35,,4450,91,91,833,0.6,51,,24,7,33,90,2.8,,,,99,,,,,,,,94,81,83,84,83,88,71,,,,,,1.9,70.9,9.1,21,,,60,,,1660,,90,380,20,,79.1,199,106,280,149,1,5,29.1,15,,4.4,0,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,212,162,259,86,470,40,825,10.6,0.2,2.9,0,0,41.2,36,9.2,50,3,0,59,61,57,22,16,14,17,69,72,66,210,10,,500,30,18,17,19,27,10,63,,,,10,1.72,,,51,47,43,55,71,87,26.4,9.8,,,11.5,10.2,11.6,14.4,5.1,23.6,35.62,25.18,14.31,,76.83,6.40E+07,23,16,0,,1.20E+07,1.5,99,14.5,31.2,48,104,7000,0.85,1.84,0.3,,24.2,109882,3,18.7,33.4,61,113,58.9,4555,2285,2270,2.75,,,,,2.4,1.9,3.7,2.8,6,8,8,10,115,44,4,3,6,,,,,18.87,17.5,68.07,55.01,,2.32E+08,7.82,38.49,38.34,0.46,0.35,10000,19.02,0.09,148,1.19,2.91,9.6,70.9,4.1,3.09,,,72.56,,87,47,-0.12,4209,,21.91,,16,10,8,71,6.48,8.3,68.54,,,,,,,5.8,1.8,6.1,1.9,5,16,5,17,0.4,1.6,0.5,1.8,5,1,5,1,,,,19.57,75,,,70,0.34,77.09,1.16,,,,,,,96.37,,,30,248,,,,,,,4436.5,,,,427,5.2,44000,0.63,,893354,,,100.92,,,105,105,7.2,13.7,16,30,0.5,102.33,,49.2,,63.78,5.4,6.6,6.3,7.6,19,15,22,15,120.55,18270,21.41,1641.47,1.86E+09,137.36,1.98E+07,18.1,15.3,18.1,420647.38,1.61,50.8
Finland,61,2,11,,33170,97,97,5261,0.3,61,,41,22,17,90,1.8,,,,100,16,,,,,,,,98,99,,97,0,,88,67,,9,,0,78.5,12.1,70,20,,4490,,10119,46930,19202,5829,17357,89,37,79.9,1940,2350,2472,2994,11,33,21.5,9.9,,2.7,20.3,7.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,96,57,132,115,201,60,422,0.8,0,6.9,0,0,55.1,36,1.2,10,1,0,71,74,69,5,3,2,3,79,83,76,7,2,,100,4,3,3,4,5,20,76,,,,4,9.31,,,100,100,100,100,100,100,13.5,14.9,,,,,,28.1,24.4,31.8,9.8,7.44,2.92,655,,,6,6,2.31,2.50E+07,7.60E+07,1.2,99.9,14.62,84.7,838,3609,1174200,22.38,10.18,0.42,2.73E+10,100.4,4988000,4,0.86,4.3,81,164,49.9,5083,2277,2806,1.83,3.09,0.59,,,11.16,7.27,25.5,21.1,573,477,1146,1031,106,,1,,10,16119.78,70.25,13449.75,6664.19,18.82,32.88,36.65,41.82,119.55,,,47.77,140.87,2.46,2.26,225000,20.58,0.07,2824,1.67,5.84,11.6,77.8,7.5,25.21,3.11,0.59,36.24,140,100,100,1.74,30469,9.62,31.37,26.88,3,3,2,,0.24,53.3,79.09,,,,,,,4.46,2.24,3.4,1.4,183,175,84,138,31.41,8.07,33.4,10.1,464,1438,542,1378,,,,107.19,6,,,97,2.6,63.97,1.4,3.96,757.77,,,,,,5.46,1.04,33,253,232.76,16.28,,,,,21758.47,251609,11589,20274,2015,48.2,2515000,0.34,20.79,5223442,,,99.91,26.2,5.02,99,100,17.61,84.4,774,3556,1.55,102.02,,65.04,7.35,65.71,6.78,4.1,9.6,6,250,326,326,387,93.15,338150,22.62,53160.98,1.35E+11,,1.14E+10,3.8,3.4,3.8,3205367,0.34,61.1
France,62,2,8,,32240,99,98,61330,0.6,77,,39,21,18,90,1.9,,,,99,,,,,,,81.8,,87,98,29,87,0,,78,75,,7,,0,79.7,16.7,73,,,41374,,,486006,,69431,207277,80,,33.2,2833,3233,3554,4056,11,34,20.3,63,,2.3,93.6,11.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,91,57,124,142,118,48,368,0.9,0,8.3,0,0,52.6,37.5,0.6,2,1,0,72,75,69,14,4,3,4,81,84,77,8,2,,263,11,5,4,5,6,16,78,,,,7,11.43,,,100,100,100,,,,,,,,,,,31.7,26.7,36.6,7.33,53.75,2.29,8473,,,14,8,22.39,2.05E+09,1.21E+08,1.2,99,18.18,91.9,11643,41957,9471000,15.56,6.23,0.2,3.08E+11,79.5,4.46E+07,,1.42,9.8,1647,4149,53.14,28021,8923,19098,1.89,13.26,0.22,0.24,0,15.41,8.76,40.8,25.9,8019,9078,15718,19229,110,74.6,1,,9,7938.33,575.4,9486.26,4533.54,17.8,29.04,33.98,26.04,140.38,,,45.94,134.37,3.8,5.59,155540,20.23,0.35,3807,2.24,8.86,16.5,79.8,11.1,20.02,12.85,0.21,26.95,127,,100,0.6,29644,7.18,20.69,32.74,4,6,3,,1.74,43.2,80.5,,,,,,,10.22,2.25,10.5,2.2,1666,5498,1284,4767,43.64,8.22,52.6,8.8,4465,21760,4507,23044,,,,82.32,17,,,87,3.37,45.29,2.48,45.84,755.7,,,,,104,102.42,1.69,913,6917,1960.21,11.8,,,,,22515.4,182015,53415,358387,119900,48.7,2.94E+07,0.58,22.4,6.07E+07,,,98.97,262.84,4.33,99,98,14.28,59.3,9789,29434,1.48,99.98,,100,5.28,77.02,5.86,2.25,10.4,4.1,2129,3417,2618,4925,109.59,551500,22.42,377692.44,1.43E+12,,-1.53E+10,4.8,4.4,4.8,4.67E+07,0.81,76.7
French Polynesia,63,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37.88,12.3,4.71,,1514.51,5.07E+08,28,25,,,,2.8,99,15.8,34.2,38,84,11000,4.3,2.53,,,46.8,90000,,15,28,38,72,48.28,,,,2.26,,,,,9.7,7.2,14.9,10.7,18,20,26,31,,,4,,,,,,,,,,1.84,,,,38.29,67.83,,,1050,,,,,,,,,13.04,,,9.09,,74.25,75,0.82,26016.11,,,,,13,8,89,0.36,21.5,73.8,,,,,,,5.9,1.9,6.15,2,4,13,4.5,13.5,8,0.45,8.7,0.5,1,17.5,1,19,,,,,7.5,,,,0.64,12.97,,,,,,,,88.16,,,10,83,,,,,,,12429.44,,,,,23.63,58500,1.47,,270485,,,,,,,,5.35,10,11,20,,,,,,,21.4,9.9,24.7,11.6,22,44,25,51,65.75,4000,,685.17,3.45E+09,,,,,,132161.75,1.2,51.7
Gabon,64,3,144,83.8,11180,88,88,1311,1.5,84,,22,7,35,89,3.1,63,4,39,86,6,,,,,,32.7,67,55,38,38,,58,46,,,,,1,2.3,78.7,13.9,20,2,,66,150,276,6778,197,63,395,50,2,100,198,210,252,267,,3,21.3,,0.01,17.3,1.7,3.7,92.9,97.1,83.9,67.2,69.4,92.9,9,29.9,23.5,1.1,1.4,1.3,63.9,71.3,42.3,34.1,37.1,61.1,21.6,37.2,24,1.5,2.1,1.6,24.9,37.7,11.5,87.1,55.4,112,93.1,1.3,1.7,1.1,99.9,88.4,350,323,376,158,410,103,813,8.8,10.1,2.5,28.3,4.4,35.1,0,10.7,340,48,21,51,53,50,354,60,48,72,58,60,56,520,31,,6750,428,91,80,102,72,9,18,5.6,26.3,8.8,14,8.01,81,14,47,87,95,30,36,37,8.2,,33,48,,,,,,,87.61,20.03,4.89,,41.69,5.23E+07,325,195,0.07,,6.30E+07,4.4,85.5,13.1,18.2,71,98,1530,0.12,1.08,0.08,4.24E+11,47.1,489367,6,24.9,30.6,135,164,68.38,19370,9815,9555,3.06,,,,,4.6,3.5,4.9,3.8,19,22,21,24,105,32.7,67,5,-4,999.46,,,1333.39,,,,67.44,,3.90E+09,58.43,43.32,53.57,3.71,-0.35,217750,22.7,5.96,276,1.07,3.03,13.9,74,4.1,10.81,,,22.89,,37,88,0.61,12742,,61.36,,60,140,81,46,17,4.8,56.74,79.67,88.49,84.02,95.14,97.34,96.24,11.5,5.8,11.7,6,34,60,34,61,9.5,1.7,9.9,1.7,9,45,9,46,,,8.8,,420,,,55,0.29,73.06,1.27,,,,,,,157.28,,,859,5361,,,234.32,0.06,2.15,1539.12,3774.95,,,,45718,3,40000,1.61,,1394307,,,74.7,,,65,68,14.7,17.1,71,82,0.64,95.82,97.74,10.21,21.58,33.76,1.7,0.5,1.8,0.6,3,8,3,9,46.58,267670,,1502.24,5.52E+09,17.3,2.07E+09,91,75.9,91,1079019.4,2.45,83.6
Gambia,65,3,167,,1110,64,59,1663,2.8,55,,20,6,41,55,4.8,,,19,57,,,49,62.6,,,9.6,90,85,90,90,90,64,87,,,7,,,40.3,58.3,8.7,8,,968,43,33,99,1881,559,48,156,13,4,70.3,33,8,56,13,,1,41.7,4.6,0.1,12,0,4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,278,243,313,144,413,109,805,12.2,1.3,2.6,29.4,2.5,36.6,0,15.5,86,45,8,50,51,48,257,84,78,89,59,61,57,690,44,,2091,423,114,106,121,75,10,15,3,24.1,15.4,17,2.59,,,81,86,91,55,52,50,,,,,,,,16.2,2.9,29.3,107.44,81.4,32.65,,35.9,6.13E+07,252,126,1.02,,7000000,2.3,56.8,4.6,6.4,24,34,71,0,0.18,0.17,7.47E+08,16.3,175000,14,23,28.8,124,157,,90112,41240,48872,,,,,,1.3,2.3,1.3,2.5,11,7,12,7,156,17.5,50,17,-5,,,,,7.37,9.08,238.01,44.81,,6.68E+08,149.97,,18.03,11.26,0,4710,25,0.85,14.75,1.8,3.4,11.2,65.4,5.2,5.95,,,65.39,,72,82,,726,4.78,13.11,47.36,,111,70,87,4.28,3.8,,,,,,,,44.8,16.6,45.6,16.9,82,220,84,224,4.9,0.6,5,0.6,3,17,3,17,14.7,55.2,15.4,,540,,,84,,53.12,0.48,,,,,,,87.39,,,805,6262,,,,,,,,177146,53,,7601,1.6,23000,2.91,,,61.3,,63.04,,,,,4,4.7,13,14,1.08,101.81,,19.32,,54.25,2.3,1.9,2.4,2.1,8,9,8,9,73.97,11300,22.25,285.79,5.09E+08,14.71,-8.03E+07,117.8,102.3,117.8,871578.6,4.71,53.9
Georgia,66,2,47,,3880,91,88,4433,-0.9,52,6.5,36,18,18,90,1.4,75,,,92,12,,,,,,47.3,,97,98,94,,109,73,1,13,,3,,6.7,21.5,5.6,37,,,1269,,,17871,,257,20597,40,,91.9,76,32,355,147,,47,78.5,1.4,,0.9,51.5,8.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,173,94,255,91,584,25,745,11.5,0,1.2,0.3,0.1,52.1,22.3,12.5,50,9,0,64,67,62,84,28,28,29,70,74,66,66,25,0,154,84,32,31,33,13,6,81,,,,6,1.47,78,11,97,99,100,92,93,94,,,,,24.6,13.6,36.4,31.9,6.3,57.1,32.11,43.26,16.69,,67.34,3.09E+08,84,101,6.21,7000000,7.00E+07,2.4,92.4,25.1,51.8,1003,1901,2390,0.05,1.02,0.27,1.31E+08,26.3,840600,,5.9,17.5,225,580,49.69,36927,16706,20221,1.41,,,,,7.6,5.4,10.7,7.6,249,247,326,339,132,47.2,11,7,7,1671.88,,,717.57,,,,33.75,,1.90E+09,29.84,43.37,39,7.06,-1.4,27600,28.59,0.06,123,6.92,1.68,6.7,19.5,8.6,25.18,,,51.57,,96,82,10.34,3505,5.37,26.85,40.8,29,38,34,73,7.93,6.1,70.86,,,,,,,7.8,4.7,7.6,4.6,221,253,211,246,31.6,6.1,37.2,7.2,273,1015,310,1178,,,,5.53,32,,,92,4.09,52.33,3.59,,,,,,,,,,503,3913,,,,,,,4782.11,90083,256,735,1546,3.8,192000,-0.97,23.4,4677401,54.5,,86.98,,,84,87,4.8,8.1,169,277,0.86,99.81,,39.38,0.94,56.46,16.2,7.6,19.6,9.1,364,537,419,636,90.41,69700,12.11,4785.18,4.34E+09,25.22,-1.13E+09,32.1,37.7,32.1,2335119.5,-1.16,52.2
Germany,67,2,11,,32680,98,98,82641,0,75,,42,25,14,90,1.4,,,,100,22,,,,,,,,94,97,87,94,54,71,57,74,,8,,0,76.6,17.6,83,,,65683,,,662000,,46953,284427,80,,56.7,2548,2809,3328,3669,6,34,23.4,39.9,,2.3,87.5,10.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,81,55,106,141,211,29,444,0.2,0.1,6.6,0,0,50.7,41.8,0.7,10,1,0,72,74,70,6,4,3,4,80,82,77,4,3,,69,5,5,4,5,5,10,86,,,,7,11.99,,,100,100,100,100,100,100,12.3,13.6,,,,,,31.6,25.8,37.4,9.93,48.83,0.98,7534,,,7,7,43.97,1.86E+09,2.16E+08,0.7,,18.92,79.8,17994,55689,1.07E+07,12.97,9.51,0.32,3.96E+11,95.8,7.13E+07,3,2.2,10.8,2967,6133,49.58,,,,1.36,82.14,1,53.25,0.65,18.78,11.4,45.5,33.1,16467,14396,32053,31756,108,74.7,1,,10,7110.59,620.3,7525.05,4180.29,16.3,21.68,,40.71,129.7,,,45.17,162.36,1.27,2.04,110760,17.15,0.11,3628,2.47,8.23,17.6,76.9,10.7,16.95,6.18,0.07,35.53,123,100,100,1.02,30496,8.52,29.34,28.31,4,3,2,71,0.62,43.2,79.46,,,,,,,4.93,1.83,4.2,1.5,2156,3474,1387,2843,39.52,11.13,46.7,12.7,9666,29909,10579,32312,,,,43.82,8,,,93,3.4,62.72,1.37,86.25,1046.32,15.8,191.73,0.18,2.16,105.24,36.88,0.45,591,4569,2604.8,11.54,,,,,19575.75,310727,61153,376744,53224,48.5,4.00E+07,-0.06,7.75,8.24E+07,,,94.59,325.22,3.95,96,96,14.55,60.5,12158,44383,1.55,98.66,,100,3.87,69.68,8.99,4.72,15.1,8.8,6451,7395,8354,10558,123.29,357050,11.07,783982.44,1.97E+12,,1.39E+11,4.9,4.3,4.9,6.20E+07,-0.03,75.2
Ghana,68,3,74,57.9,1240,71,73,23008,2.1,49,,20,6,39,51,4,69,8,12,50,4,78.4,21.8,60.8,44,63.3,25.2,88,95,94,94,94,38,73,1,3,,,,22.4,36.5,6.8,9,,,393,,899,19707,7132,1388,3240,9,3,78.8,36,13,100,35,,2,63.5,6.2,0.6,6.1,,6.2,67.9,90.4,29.7,20.6,30.9,79.7,38.2,69.8,48.8,2.3,4.4,2.6,89.3,88.8,78.2,75,81.8,85.8,11.1,13.8,4,1.1,1.2,1,40.4,40,25.6,84.5,88,124.9,128,1.5,1.5,1.3,118.3,92.7,331,311,350,138,404,97,786,12.2,5.7,3,33,2.9,28.5,0,14.6,131,41,6,50,50,49,203,76,69,82,57,58,56,560,43,0,2225,379,120,118,121,74,10,16,4.5,35.6,18.8,11,1.57,96,75,71,80,90,6,10,15,8.1,,33,52,11.7,10.9,11.6,5.5,0.8,10.2,60.95,64.76,37.45,,49.08,1.13E+09,204,54,3.24,,2.70E+07,0.4,49.7,19.8,28.1,1399,2017,1904,0.01,0.33,0.29,3.19E+09,13,1695000,16,23.8,29.3,1572,1958,74.34,1190769,586951,603818,3.84,,,,,4.7,3.3,5.1,3.5,230,297,244,316,251,16.7,48,4,8,265.76,,,396.58,12.82,34.45,209.36,36.09,,6.74E+09,64.02,48,14.18,1.35,0,55170,29,2.03,30,4.09,2.11,6.9,34.1,6.2,0.17,,,61.66,,27,75,3.75,1225,5.58,25.13,40.8,75,90,33,73,14.96,1.8,59.63,49.79,66.35,57.9,65.49,75.95,70.66,15.1,5.5,15.3,5.6,381,960,386,978,2.4,0.6,2.4,0.6,36,131,37,137,3.5,62.8,18.8,15.49,540,,298,83,0.15,79.82,0.75,,,,,,,122.28,,,10817,86140,,,,,,,1456.55,177371,65,176,261034,0.5,112000,2.14,15.52,2.19E+07,28.5,,70.68,,,75,69,16,19.3,758,921,0.86,92.6,86.23,17.92,0.85,37.42,3.2,3.4,3.4,3.6,206,186,219,198,19.18,238540,22.36,7317.01,6.36E+09,28.13,-2.74E+09,113.6,92.4,113.6,1.08E+07,3.75,47.8
Greece,69,2,11,96,30870,99,100,11123,0.2,59,,40,23,14,90,1.3,,,,,,,,,,,,,88,88,88,88,0,,37,45,,12,,,42.5,11.5,47,,,13438,,,40000,,8977,55556,36,,62.5,1317,1160,3101,2733,8,50,57.5,2.8,,0.7,53,9.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,76,44,106,132,258,35,457,0,0,5.8,0,0,63,28.6,2.6,10,2,0,71,73,69,18,4,4,4,80,82,77,3,3,,98,16,4,4,4,4,13,83,,,,8,9.01,,,99,100,100,97,98,99,18.2,26,,,16.2,14.4,17.1,51.8,39.8,63.6,9.1,64.85,4.02,465,,,18,6,13.4,1.30E+07,1.10E+09,2.2,,15.52,51.6,1569,4543,160113,1.44,8.94,0.31,3.83E+10,92.3,1.10E+07,8,0.98,7.7,239,578,48.28,1281,1281,0,1.33,8.82,0.83,9.35,0.88,9.06,6.5,19.4,15.6,1006,1025,1832,1937,118,,2,,10,5241.53,65.04,6096.72,2789.72,16.5,22.56,27.08,18.42,160.06,,,40.86,149.23,0.23,0.52,37520,24.2,0.16,2580,5.78,4.32,11.5,42.8,10.1,10.19,1.28,0.12,25.58,169,,,3.26,25520,6.75,19.4,34.27,4,8,2,,3.39,18,79.18,94.24,97.81,95.99,98.99,98.89,98.94,1.36,0.25,12.9,4.9,663,1166,596,1265,46.22,7.27,58,8.7,874,4878,942,5474,,,,51.11,9,,,88,4.4,25.12,3.25,2.81,263.69,,,,,100,,,256,1829,434.29,14.87,,,,,14750.27,163001,13235,25128,10003,9,986000,0.38,29.08,1.07E+07,,,100.23,33.79,3.17,,,10.15,26.2,1310,2920,1.16,98.55,100.1,91.8,23.2,76.58,7.69,3.89,12,5.9,524,887,680,1151,95.89,131960,17.21,95359.27,1.42E+11,,-1.51E+10,4.9,4.9,4.9,6551360,0.45,59
Grenada,70,5,53,,8770,83,84,106,0.3,31,,23,10,33,90,2.3,,,,100,,,,,,,,,98,99,99,99,,,,,5,2,,0.7,65,9.5,41,,40,20,,,326,,69,80,40,,95.1,387,225,596,346,8,10,35,,,4.1,0,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,232,214,250,199,448,51,870,1.6,2.6,5.2,0,0,43.8,37.3,9.5,,1,,59,60,58,5,17,13,20,68,70,66,,11,,,8,20,16,24,23,10,66,,,,9,6.67,,,93,94,97,97,97,96,,,,,16.7,15.7,17.6,,,,45.9,38.24,5.25,,424.95,5.27E+07,5,1,,,,1.93,100,,,,,3222,3.03,2.62,0.22,2.66E+08,45.5,37898.88,7,,,,,69.43,2352,1151,1201,2.3,,,,,,,,,,,,,111,54,1,6,,,,,,7.09,7.78,,32.89,,4.06E+08,83.87,,69.75,14.15,0,40,63.23,,342,2.49,4.71,9.6,65.4,7.2,0.11,,,76.14,,72,71.25,-3.82,9128,,31.62,,17,2,1,,4.35,11.16,68.48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,99,0.5,70.42,,,,,,,,81.91,,,1,8,,,,,,,6202.2,44705.5,,,,11.63,12000,0.71,,89502,,,92.51,,,54,54,,,,,0.27,99.12,,60.96,,63.13,,,,,,,,,153.43,340,,234.5,4.14E+08,23.19,-2.20E+08,22,,22,32589,0.45,30.6
Guatemala,71,5,120,69.1,5120,92,96,13029,2.5,48,13.5,18,6,43,90,4.3,,,31,41,,,,,,,43.3,80,93,82,82,82,56,85,14,40,,2,,1.3,37.7,14.7,7,,,2046,,,44986,,,9965,41,,91.4,98,54,259,144,,9,62.3,3.1,,4.5,45.4,5.3,84.8,91.9,21.8,8.8,25,66.1,63,83.1,41.1,3.9,10.4,2.6,95.4,91.1,72.9,79.5,83.4,86,22.5,11.6,2.6,1.3,1.1,1,36.2,38.3,10.7,42.3,39.3,78.5,77.6,1.9,2,1.2,68.5,57.8,222,163,284,93,188,98,562,13.1,2.7,1.5,0.4,0.1,37.3,29.8,15,21,11,3,57,60,55,79,31,30,31,68,71,65,290,19,,825,103,41,41,41,60,13,27,5.6,54.3,17.7,13,1.46,86,32,94,96,99,79,84,90,,,,,16.5,12.3,19.6,14.4,4.1,24.5,110.48,42.9,22.76,,19.81,2.54E+08,80,26,1.84,,1000000,5.2,41.4,4.1,25.9,436,949,27106,0.21,0.95,0.2,6.90E+08,35.8,3168256,17,5.04,30.6,628,1153,90.27,102698,73350,29348,4.15,,,,,2.51,2.76,7.9,7.4,164,169,250,255,143,43.3,14,8,8,522.05,,,628.42,4.92,3.7,,15.73,68.72,5.35E+09,17.07,31.24,45.31,0.71,0,39380,19.01,0.79,131.75,3.23,1.97,15.7,37.9,5.2,3.23,,,30.17,85,90,95,0.75,4897,3.88,18.92,49.39,32,35,19,85,7.8,7.9,69.94,63.34,75.42,69.1,78.39,86.38,82.22,4.7,4.7,4.9,4.9,155,146,160,153,5.7,4.04,16.1,6.5,193,441,210,483,1.2,,17.7,1.11,240,,,77,0.9,50.07,0.33,,,,,,,91.3,,,1835,13371,,,,,,,4093.82,265,6,1317,58167,1.8,231000,2.49,,1.20E+07,56.2,,73.66,,,75,65,9.27,30.6,469,892,0.78,91.63,90.75,34.5,3.51,58.32,17.99,16.97,15.2,10.8,319,417,366,480,109.59,108890,9.63,11442.67,2.19E+10,70.62,-4.62E+09,45,38.1,45,5998914,3.39,47.2
Guinea,72,3,153,29.5,1130,66,77,9181,2,33,,18,5,43,43,5.6,49,8,26,38,2,68.2,0.3,43.5,42,56.7,9.1,95,71,75,83,,55,72,,,,,,11.6,12.3,4.7,3,,93,60,135,268,4408,523,530,987,5,,99.5,14,3,116,20,,1,87.7,0,0.1,4.6,1.5,5.7,84.1,87.4,32.8,14.5,25.6,80.7,51.3,72.9,55.1,2.6,6,3.2,67.6,57.2,47.7,42,48.9,54.8,19.9,15.2,5.9,1.4,1.4,1.1,102,104,71,92,113,194,217,2.1,1.9,1.5,204,133,343,305,380,156,432,147,853,16.5,2.3,1.4,24.5,5.5,28.8,0,20.9,76,51,6,45,46,44,265,98,87,109,53,55,51,910,39,0,1475,466,161,150,172,80,9,11,5.1,39.3,22.5,12,0.2,,,59,70,91,12,19,33,3,,27,42,,,,,,,157.04,51.16,19.76,,20.21,1.99E+08,252,76,0.67,,1000000,,38.1,10.8,15.3,285,411,0,,0.14,0.14,4.99E+11,2.4,111500,22,40.5,50.9,1138,1444,86.72,417705,247901,169804,5.44,,,,,2.9,3,3.1,3.3,72,70,78,75,,9.1,55,11,-1,,,,,10.01,,188.79,27.77,,3.25E+09,98.9,46.57,2.39,3.06,0.01,67240,13.75,1.53,21,4.93,0.67,4.7,11.9,5.6,9.58E-04,,,30.42,,31,50,1.13,946,6.99,34.47,38.6,100,112,61,72,30.32,0.6,55.42,18.11,42.56,29.48,33.73,58.7,46.55,36,11.6,36.6,11.8,311,920,318,937,7.5,1.5,7.9,1.6,43,199,44,208,3.5,56.4,22.5,,740,,,59,0.11,51.33,2.02,,,,,,,140.13,,,4978,41964,,,,,,,613.62,,,,77955,0.6,44000,1.91,15.82,9452670,40,,58.3,,,58,39,8,9.6,138,168,0.79,72.57,57.45,9.79,1.64,45.76,5.6,3.4,5.9,3.6,80,125,84,134,27.4,245860,11.13,1355.68,3.62E+09,2.99,-1.53E+08,164.4,135.6,164.4,2970876.5,3.12,33
Guinea-Bissau,73,3,,,460,37,53,1646,3,30,,16,5,48,39,7.1,,13,9,39,,,39,45.7,,,7.6,92,76,63,,,64,69,,,29,,,31.4,24.7,4,7,2,4486,22,13,230,1072,2192,40,188,7,14,59.3,10,3,40,13,,1,75.3,0,0.01,5.8,3,6.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,407,356,458,159,449,138,883,18.6,2.6,1.4,21,3.4,24.1,5.5,23.4,170,36,4,41,41,40,219,119,106,131,48,51,46,1100,47,,3483,313,200,179,220,86,6,8,5.1,36.1,21.9,22,2.19,,,47,57,82,26,33,48,,,,,,,,,,,192.03,57.97,60.26,,49.49,7.91E+07,214,111,1.09,,4000000,0.5,38.8,19.8,28.1,87,125,0,,0.19,0.38,2.10E+08,7.1,1275,4,23.8,29.3,99,124,101.88,121594,69618,51976,7.07,,,,,4.7,3.3,5.1,3.5,14,18,14,19,107,10.3,40,4,6,,,,,,,,37.69,,6.93E+08,239.6,40.85,6.59,3.32,-2.78,20720,14.6,1.89,10,3.54,1.66,4,31.9,5.2,,,,50.78,,57,59,0.46,569,5.2,11.68,47.05,121,95,71,69,7.63,2.3,46.17,,,,,,,15.1,5.5,15.3,5.6,23,58,24,60,2.4,0.6,2.4,0.6,2,8,2,8,7.4,58.4,21.9,,1100,,,80,0.12,72.4,4.02,,,,,,,,,,640,5246,,,,,,,608.16,1,,,15517,,,3.05,,1413446,65.7,,26.94,,,35,19,16,19.3,49,61,0,64.96,,27.94,1.69,28.06,3.2,3.4,3.4,3.6,13,12,14,13,16.44,36120,,271.14,2.13E+08,11.52,-4.37E+07,206.4,192.8,206.4,472690.97,2.98,29.6
Guyana,74,5,90,,3410,89,89,739,-0.1,28,,27,9,31,90,2.4,,,37,94,,,,,,,34.6,91,96,94,94,94,45,67,,,,,,29.3,84.5,8.3,28,,,30,,,1738,,,366,23,,100,223,57,264,67,,5,15.5,,,4.8,0,5.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,246,239,251,86,526,97,822,21.4,7.7,6.2,0.7,0,33.7,25.2,5.2,160,24,5,55,57,53,164,46,41,51,64,66,63,470,22,,2072,215,62,55,68,56,14,30,5.5,13.8,11.9,12,3.84,,,91,93,98,80,81,85,,,,,14.9,12.2,17.6,,,,65.82,8.84,31.03,,184.83,1.38E+08,151,86,0.68,,7000000,1.3,94,11.9,29.5,37,96,2000,0.27,1.95,0.58,1.28E+09,37.5,143945,6,22.2,47.3,71,160,58.29,,,0,2.33,,,,,9.6,4.7,16.5,8.9,14,21,26,37,128,34.6,26,7,6,,,,,17,16.16,37.03,87.95,91.65,1.22E+09,163.1,36.86,52.94,9.68,,151040,25.76,2.49,60,0.89,4.51,8.3,83.6,5.4,0.19,,,123.89,,86,83,-2.37,3232,4.47,24.5,43.2,47,67,32,67,4.12,21.3,66.01,,,,,,,1.7,0.2,1.3,0.2,1,5,0,2,7.2,4.8,7.5,5,15,18,16,18,5.5,2.6,11.9,23.6,170,,,92,0.48,169.16,0.79,,,,,,,93.77,,,193,1448,,,,,,,3294.53,6,3,218,12308,3.5,27000,0.06,,765283,35,,122.9,,,99,92,23.3,51,54,116,0.31,98.55,,7.4,,44.47,10,6.6,13.9,8.8,21,24,28,33,98.63,214970,,1491.25,7.36E+08,20.71,-2.24E+08,64.4,73.9,64.4,208531.11,-0.22,28.2
Haiti,75,5,69,,1070,22,21,9446,1.6,39,53.9,21,6,38,81,3.7,54,20,26,26,3,,,5.1,31.5,56.9,32,43,58,53,,,55,81,,,,,,65.8,67.6,29.8,8,,,94,,,834,,,1949,1,,89.6,65,29,96,42,,3,32.4,,,0.4,0,8,59.8,67.5,9.1,6.4,15.4,46.8,50.7,61.1,31.4,6.6,10.5,3,67.5,67,51.5,50,55.5,61.9,16,17,6.4,1.3,1.3,1.1,57.4,70,36.1,65.2,55,122.6,125,1.9,2.3,1.5,114.1,78,282,236,329,112,402,38,786,16.5,8.3,0.4,0.7,0.5,26.4,27,20.2,188,51,7,44,44,43,299,60,55,65,61,63,59,670,32,0,3377,402,80,77,83,84,2,15,3.9,29.7,18.9,21,8.3,100,91,51,58,70,12,19,29,6.3,,19,30,23.2,23.9,21.7,,,,48.84,57.69,27.92,,55.38,5.02E+08,308,154,7.62,,,0.65,26.1,2,4.4,62,136,0,,0.22,0.16,,5.9,400000,,48.1,87.3,1484,2774,72.7,,,,3.54,,,,,7.3,4.8,11.3,7.5,129,162,201,249,248,32,60,10,5,36.9,,,269.14,9.14,,,13.98,,1.03E+09,23.57,41.72,6.94,0.6,-0.45,1050,27.76,2.17,27.61,3.45,3.18,27.7,51.3,6.2,3.54,,,41.61,,57,54,0.54,1175,2.38,16.97,59.21,63,137,79,81,16.31,7,60.22,,,,,,,26.8,9,27.9,9.4,235,595,245,622,10.1,0.4,11,0.5,11,213,12,232,,11.7,18.9,,680,,,54,0.25,44.62,,,,,,,,92.41,,,5557,38716,,,,,,,704.17,6,7,,110385,,,1.59,22.9,8121622,,,27.39,,,29,26,20,38.1,403,767,0.88,94.41,,24.3,0.16,55.11,25.1,6.1,28.8,7,166,538,192,617,65.75,27750,,1766.05,3.74E+09,12.94,-1.16E+09,88.7,86.6,88.7,3606961,3.26,38.8
Honduras,76,5,108,80,3420,97,96,6969,2,47,14.9,20,6,39,90,3.4,81,,41,67,13,,,0.5,53.9,66.8,65.2,94,89,86,86,86,85,88,,,,2,,5.4,47.8,15,10,,,1371,215,,8528,2936,926,3676,13,5,87.1,116,47,241,99,1,6,52.2,7.3,,2.3,15.8,7.4,95.6,98.5,36.8,33.4,50,89.6,58.8,65.1,39.6,2.6,2.9,1.8,86.1,85.5,81.2,85.2,86.3,84.2,4.9,0.3,-2.1,1.1,1,1,35.2,30,13.7,19.7,20,54.9,50,2.8,2.5,1.5,43.1,29.4,181,133,229,139,348,66,758,12.2,6.3,4.2,0.4,0,43.1,20.1,13.8,51,10,1,58,61,56,76,23,20,25,70,73,67,280,17,,1392,95,27,26,28,52,13,35,5.8,29.9,8.6,14,2.92,,,74,84,95,55,66,78,18.8,,,,20.4,18.2,22.8,,3.4,,96.86,26.24,13.93,,99.37,6.79E+08,78,49,0.9,,,3.7,66.9,12.1,25.9,250,546,0,,1.04,0.35,1.77E+09,17.8,707201,26,17.2,30.6,361,664,79.01,83959,36738,47221,3.31,,,,,5.2,4.8,7.9,7.4,94,93,142,140,150,65.2,11,5,7,625.69,,,566.28,,,,41.72,135.26,5.18E+09,65.25,37.72,25.98,4.48,0,46480,30.06,0.71,91,3.71,3.8,16.1,50.6,7.5,6.24,,,62.39,,87,87,1.79,3266,3.38,31.33,53.84,24,35,30,88,10.39,3.6,69.79,80.22,79.79,80.01,90.91,86.89,88.94,4.7,4.7,4.9,4.9,88,80,92,82,14.7,5.9,16.1,6.5,109,238,119,259,,,8.6,8.8,110,,,92,0.57,75.82,0.59,,,,,,,87.15,,,756,6607,,,,,,,2033.05,168,146,747,28477,1.6,110000,1.95,,7167902,50.7,,81.84,,,77,82,16.1,30.6,250,473,0.89,108.77,104.63,20.4,5.79,54.74,13.3,9.4,15.2,10.8,183,226,209,260,109.59,112090,16.94,7430.59,7.10E+09,45.13,-1.62E+09,29.5,29.1,29.5,3177861.2,2.86,46.5
"Hong Kong, China",77,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.35,,0.06,,2.09,6081250,,,,,,0.7,100,8.62,38.82,,,1659098,24.35,5.59,0.14,3.70E+11,123.5,7130099.5,6,2.24,11.24,,,37.18,12271,11104,1167,0.97,6.66,0.97,,,17.19,11.87,38.86,27.96,,,,,93,86.2,,,,5878.44,38.45,5573.28,2653.23,14.86,19.87,60.6,198.66,96.27,,,46.59,183.34,18.9,15.3,,20.57,,,,,,,,15.59,,,186.21,98,,,6.33,35680,5.26,9.31,43.44,,,,,-0.06,50.1,82.03,,,,,,,11.85,2.52,32.6,9.62,,,,,23.19,9.09,62.6,25.17,,,,,,,,593.25,7,596.33,576.67,,1.32,333.06,,,,,,,,97.96,,,,,285.17,15.1,,,,,27794.15,4565,1088,,,45.38,3139957.5,0.37,103.34,6898686,,,53.91,22.85,3.31,84.75,81,1.95,10.46,,,1.69,48.12,,100,5.74,90.63,7.94,4,15.88,7.93,,,,,,1092,,38559.94,2.08E+11,,2.22E+10,,,,6813200,0.37,100
Hungary,78,2,21,,16970,88,89,10058,-0.3,67,2,39,21,15,90,1.3,,,22,100,23,,,,,,,,99,99,,99,49,45,61,65,,5,,0,70.8,10.4,79,,,4997,,,92171,,5364,30575,92,,86.8,978,604,1382,853,5,30,29.2,4.1,,3,90.3,7.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,177,104,249,201,364,67,695,0.1,0,5.6,0,0,56.9,33.6,3.9,,3,0,65,68,62,19,6,5,6,73,78,69,6,5,,100,21,7,6,8,3,12,85,,,,9,13.6,,,100,100,100,100,100,100,18.2,17.1,,,27.8,26.9,28,39.8,33.9,45.7,19.99,65.44,4.33,,,3.03E+08,22,18,127.33,6.80E+07,1.30E+07,3.3,99.6,21.44,63,2340,5411,651689,6.46,5.63,0.35,4.16E+12,92.3,8727188,6,6,15.7,551,1042,44.88,18659,9025,9634,1.28,2.68,0.27,1.97,0.2,34.07,17.04,56.6,33.7,2346,2543,3509,3977,133,77.4,3,6,10,3771.37,35.76,3573.06,2752.24,23.32,23.49,24.32,66.23,133.56,6.61E+10,63.58,45.13,125.67,6.82,2.04,19760,25.42,0.05,855,2.28,5.52,11.1,70.8,7.8,25.69,,,67.31,138,100,99,4.32,17014,8.58,30.2,30.06,6,10,4,45,2.23,29.7,72.97,,,,,,,7.99,2.79,9.8,4.2,406,550,437,677,78.66,22.69,94.6,24.9,2097,5773,2276,6461,,,,29.48,16,516.33,521,99,3.2,117.18,1.44,13.17,1316.1,,,,,96.88,3.13,0.31,297,2554,163.41,5.96,,,,,8710.05,92459,1386,10784,3188,14.6,1476000,-0.2,16.79,1.00E+07,17.3,,93.92,25.22,2.52,95,96,15.72,34,1378,2523,1.3,98.99,,43.9,23.97,65.47,16.48,6.83,20.5,9.5,932,1299,1017,1453,123.29,93030,20.25,56370.64,5.93E+10,28.14,-8.87E+08,8,7.9,8,6687714,0.32,66.3
Iceland,79,2,16,,33740,97,98,298,0.9,93,,35,16,22,90,2,,,,,17,,,,,,,,95,97,,97,71,100,61,62,,10,,0,83.1,18.1,75,,,286,,,2960,,312,1120,101,,100,2758,4123,3319,4962,11,38,16.9,0,,2.7,42.3,9.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,59,49,68,136,164,34,385,0,0,4.9,0,0,61,34.1,0,50,0,0,73,74,72,4,2,2,3,81,83,79,4,1,,500,3,3,2,3,5,17,77,,,,4,6.99,,,100,100,100,100,100,100,12.3,12.4,,,,,,26.3,26.6,26.1,15.74,22.75,5.83,,,,3,3,0.12,5000000,,1.4,,16.27,90,43,162,78017,26.29,7.36,0.23,2.43E+11,103.4,291372,12,0.91,8.3,10,13,51.12,568,482,86,2.05,0.1,0.34,,,14.27,8.18,34,27,30,26,56,64,122,,0,,,27986.52,8.68,29251.49,12219.04,24.83,23.42,27.91,31.76,90.91,,,46.64,167.77,19.26,43.86,460,28.16,0.2,5154,1.66,7.84,18.3,82.5,9.5,27.08,1.59,5.35,44.22,94,100,100,3.88,35630,,23.71,,2,2,1,100,2.9,62.2,81.43,,,,,,,0.75,1.05,2.1,0.7,6,8,2,3,25.06,22.95,30,30,53,62,60,57,,,,171.4,0,,,90,3.62,49.75,0,,,,,,,,,,1,8,20.82,25.63,,,,,26922.62,90405,42,245,350,47.1,138000,1.58,,296737,,,99.2,2.7,9.1,108,109,25.48,81,47,159,1.16,99.7,,35.39,,70.46,7.67,2.04,12.5,6.6,9,18,14,24,153.43,103000,28.22,2183.74,1.04E+10,,-2.00E+09,2.9,3.1,2.9,275384,1.69,92.8
India,80,7,97,61,2460,87,90,1151751,1.5,29,34.3,24,8,33,41,2.9,51,,10,47,,,,12,,,56.3,86,67,62,6,,64,86,2,3,,,,0.7,19.6,3.4,,,50393,55058,42079,15886,1372059,695024,559408,645825,13,7,94,21,8,109,39,5,6,80.4,0.8,,2.1,4.8,4.9,91,88.8,26.1,19.4,37.5,73.5,64.9,69.4,36,3.5,4.6,2,89.3,85.2,41,39.9,54.2,71.8,48.3,45.3,17.6,2.2,2.1,1.3,65,66.7,30.3,29.7,33.8,94.7,100.5,3.2,3,1.6,82,51.7,241,203,276,109,428,117,750,20.3,0.7,2.2,0.9,3.7,45.2,8.5,18.5,,28,1,53,54,53,168,57,58,57,63,64,62,450,39,756,747,299,76,81,72,58,13,29,1.9,47.9,43.5,30,0.29,89,22,86,89,96,18,28,52,2.8,1.3,51,59,13.7,9.4,16.8,18.6,3.8,33.1,64.65,60.6,18.3,,1.52,1.73E+09,168,102,51.24,4000000,1.40E+09,3.94,46.6,10.4,19.1,44795,82951,1348000,0.12,1.3,0.6,7.58E+12,8.2,4.73E+07,6,17.8,30.7,74118,132082,61.18,7492494,4712631,2779863,2.81,184.44,0.17,162.05,0.15,3.4,2.2,4.7,3.2,9351,13611,13555,19508,122,56.3,29,19,9,480.49,679.17,628.7,490.88,9.21,27,61,20.33,116.33,1.23E+11,15.39,28.35,12.82,0.83,0.31,677010,33.35,0.38,36,4.05,0.95,3.5,19,5,4.83,22.04,0.02,23.29,139,59,86,7.75,2126,8.08,27.63,36.8,59,75,45,86,4.45,5.4,64.24,47.84,73.41,61.01,67.75,84.19,76.43,2.2,1,2.3,1.1,4264,8734,4477,9153,7.9,1.7,9,2,6934,30706,8046,35495,,12,43.5,68.64,540,,,58,0.6,29.57,2.75,,,29.62,27.42,1.1,1.02,105.2,4.03,0,330695,3511772,2569.04,0.87,775.56,2.62E-04,5.92,5.48,2485.12,91924,2160,8639,2531133,1.2,1.30E+07,1.37,11.62,1.08E+09,28.6,,84.85,362.19,0.34,93,84,3,4.6,10867,16789,1.01,91.37,80.47,47.4,2.71,54.06,4.9,2.4,5.7,2.8,9962,19346,11743,22650,65.75,3287260,10.38,1402359.4,6.44E+11,111.94,-2.47E+10,80.21,77.2,80.21,3.14E+08,2.07,28.7
Indonesia,81,6,54,90.4,3310,94,97,228864,1.2,49,7.5,27,8,28,55,2.2,81,,15,66,4,75.1,0.1,1,61.3,60.6,60.3,83,80,75,74,,73,91,,,,,,2.3,50.4,5.3,,,0,7093,6493,8882,179959,20981,7580,29499,8,1,66.3,44,17,87,34,,1,49.6,9.7,0.9,6.3,20.1,2.2,85.6,93.6,32.4,39.9,55.2,78.9,53.2,53.7,23.7,2.6,2.3,1.4,83.2,84.9,41.9,59.5,66.2,77.6,41.3,25.4,11.4,2,1.4,1.2,53.3,55,22.4,36.8,22,90.1,77,2.4,3.5,1.5,64.7,42.3,212,192,231,132,361,87,727,18.3,0,2.8,0.5,4.7,37.6,21.8,14.4,2,38,0,58,59,57,234,26,25,28,68,69,66,420,17,0,106,253,34,31,36,41,15,44,5.1,28.6,19.7,9,0.09,83,20,71,80,89,37,52,67,3.6,1.1,,,13.5,4,24.1,35.4,4.5,65.9,42.79,26.39,13.07,,10.96,2.52E+09,239,113,2.92,8000000,2.10E+07,2.2,71.5,11.3,26.1,10881,25208,108200,0.05,1.92,0.56,3.90E+14,21.1,3.00E+07,13,8.1,15.7,7566,15050,51.27,686292,544050,142242,2.18,26.15,0.12,93.92,0.43,7.6,6.7,11.9,10.6,6042,6151,9577,9678,156,56.7,41,9,8,509.32,127.36,582.99,813.9,2.65,4.94,13.42,33.61,81.4,1.31E+11,47.87,37.94,27.06,2.91,1.07,884950,24.61,0.15,26,1.12,0.98,5.1,46.6,2.1,16.3,2.43,0.01,29.31,,73,77,4.17,3234,7.15,46.77,39.41,28,108,70,91,14.78,7.2,70.13,86.8,94.04,90.38,98.54,98.87,98.71,10.6,2.4,11.3,2.6,2200,8632,2334,9155,18.6,6.3,20,6.8,5736,14299,6227,15432,25.9,0.7,24.4,28.38,230,,407,72,0.13,56.64,1.19,,,68.72,314.54,2.48,11.34,102.32,,,93549,593987,1231.8,2.06,1087.11,0,4.19,19.18,3840.82,90922,631,,202141,1.4,3022000,1.36,11.62,2.18E+08,16.7,,99.43,116.27,0.53,101,102,4.4,7,3181,5074,0.57,97.3,99.67,55.3,2.03,40.16,3,1.8,3.5,2.1,1635,2323,1925,2712,43.84,1904570,12.33,419593.94,2.08E+11,26.57,1.15E+10,38.4,42.7,38.4,1.06E+08,3.93,48.1
Iran (Islamic Republic of),82,1,35,82.4,9800,100,91,70270,1.2,67,,24,6,28,90,2,,,3,97,,,,,,,73.8,83,97,99,97,,69,83,,,4,2,1,0.1,55.6,9.2,17,3,25242,13210,10004,20049,111107,84207,13900,61870,16,12,94.8,406,137,731,247,2,9,44.4,4.4,0.4,1.8,51.4,7.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138,106,170,113,466,133,742,5.5,0.1,12.8,0.2,0,62.9,12.1,6.4,2,3,0,58,59,56,22,30,26,34,71,73,69,140,19,0,133,28,35,33,36,22,28,49,,,,7,0,,,84,94,99,78,83,86,19.2,9.1,,,26.6,19.5,32.9,17.6,5.5,29.6,21.97,29.25,10.4,,1.43,1.04E+08,24,13,56.72,0,3.27E+08,1.15,89.6,7.4,17.1,2039,4742,20758,0.03,6.64,0.7,1.53E+14,10.4,4300000,12,2.4,4.4,581,1118,,304552,0,304552,,1.11,0.02,,,5.2,4,8.3,6.5,986,1276,1595,2046,193,73.8,3,9,-6,2116.55,170.07,2500.36,2352.16,9.76,11.07,22.96,38.35,,2.13E+10,11.24,,37.94,0.02,0,110750,34.09,0.18,212,3.45,4.35,9.2,55.8,7.8,2.41,2.94,0.04,29.81,,86,94,,10692,6.46,44.6,38.35,,11,7,83,17.35,10.9,,76.8,88.01,82.44,96.74,98.11,97.43,1.3,1.8,1.4,1.9,407,302,431,322,6.7,2.1,7.2,2.2,466,1386,506,1502,,,,20.17,76,,,94,,49.21,4.72,102.38,1505.19,100.9,1483.43,27.5,404.23,141.36,,,1942,21058,1577.94,8.47,4359.38,0.02,137.49,2021.38,,993,881,8468,76484,10.5,7347000,1.48,22.94,,,,96.13,170.97,2.51,,,3.3,5.4,649,1066,0.09,105.04,98.6,67.36,,45,22.4,9.4,26.1,11.1,2063,4575,2450,5393,71.23,1745150,7.85,451573.34,1.33E+11,,1.22E+10,37.6,38.7,37.6,4.62E+07,2.3,66.9
Iraq,83,1,17,74.1,,82,95,28506,1.8,67,,19,5,41,90,4.4,,,,89,,,0.1,1.3,,,49.8,69,69,62,58,,40,86,,,,1,1,12.6,72.5,3.4,13,5,1968,3460,2601,12184,38001,22159,3170,19010,13,9,100,90,49,124,67,1,7,27.5,,0.4,2,,3.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,436,187,607,112,508,141,855,13.2,0.3,5.7,0.7,0.5,50.8,11.2,17.6,,11,,50,51,49,56,37,34,39,56,67,48,300,63,,,78,47,43,50,57,15,28,15,27.5,7.1,15,0.21,,,56,77,88,69,76,80,38.2,26.2,,,20.3,10.3,29,14.2,2.5,25.8,46.18,22.89,8.57,,767.25,2.21E+10,56,34,121.31,,1.61E+08,1.7,88.5,13.9,31.7,1081,2497,0,,3.24,,,2.2,574000,,1.8,3.3,129,252,79.48,507530,398122,109408,4.26,,,,,3.4,2.9,5.3,4.6,201,223,325,356,,49.8,10,,-9,1195.48,,,1073.63,,,,,,,,18.99,5.86,,,8220,,,59,1.05,3.05,3.4,74.4,4.1,,,,,,95,81,21.22,3200,,70.15,,37,25,11,86,13.18,0.1,58.92,64.17,84.09,74.05,80.49,88.91,84.8,0.9,0.4,0.9,0.4,27,54,28,57,21.1,6.2,22.7,6.7,383,1200,415,1295,0.1,1.3,12.9,,250,,,90,0.66,155.88,,,,,,3.17,121.57,,,,2932,20989,,,1833,0.03,115,4410.37,968.59,86,46,1168,,0.8,200000,2.84,25.37,2.61E+07,,,74.96,,,85,63,3.6,5.8,186,299,0.03,77.6,90.53,84.3,9.48,21.28,3.8,3.2,4.5,3.8,217,230,261,275,,438320,,84532.14,1.91E+10,,,45.7,43.6,45.7,1.87E+07,1.68,66.9
Ireland,84,2,19,,34730,95,94,4221,1.9,61,,34,15,21,90,2,,,,100,19,,,,,,,,87,92,,92,0,,35,39,,6,,0,78.3,17.3,56,,,2414,,,81901,,3565,12394,195,,57.2,2413,3043,3082,3888,9,29,21.7,38.6,,6.6,0.9,7.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72,56,88,151,214,35,484,0,0,2.9,0,0.5,61.1,34.2,1.3,10,1,0,70,72,68,13,4,3,4,80,82,77,1,4,,151,11,4,4,5,8,14,78,,,,6,13.69,,,,,100,,,,12,14,,,,,,26.3,26,26.5,17.37,61.36,2.08,607,,,13,9,2.31,,4000000,1.1,100,20.4,74.9,688,1874,322500,7.75,10.55,0.28,2.99E+10,102.9,3780000,4,3.03,7.2,88,164,46.73,23671,10658,13013,1.96,1.85,0.46,,,19.04,10.71,43.1,27,433,591,813,1075,119,60,1,,10,6233.56,25.09,6247.27,3676.04,14.27,21.14,23.9,81.28,119.07,,,42.97,152,-15.13,7.23,6690,27.1,0.19,3993,1.68,6.52,19,79.5,8.2,34.53,0.21,0.05,68.6,121,,,3.2,38058,7.44,36.07,34.28,4,6,3,,3.5,33.8,78.61,,,,,,,0.71,0.23,2.2,0.5,54,84,14,54,35.14,16.81,39.8,19.7,564,963,598,1001,,,,56.95,5,,,84,2.79,88.92,0.57,3.86,960.24,,,,,98.66,,,55,421,195.61,17.79,,,,,26160.76,163425,14203,32575,4844,49.7,2011000,2.2,24.94,4015676,,,96.52,14.91,3.71,100,102,18.04,56.3,521,1442,1.34,103.32,,100,17.27,61.85,7.55,3.6,11.6,5.9,156,215,180,290,115.07,70270,25.26,42348.51,1.25E+11,,2.36E+10,5.7,5.3,5.7,2516255.5,2.67,60.5
Israel,85,1,15,,23840,97,96,6810,1.7,92,,29,13,28,90,2.8,,,,,17,,,,,,,,97,96,99,95,31,78,76,45,,11,,0,65.3,11.1,60,,,7726,,,42609,,4958,25138,62,,69.2,1477,1056,2263,1618,7,37,34.8,23.7,,1.7,52.1,7.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,48,89,133,136,30,399,0.6,0,5.9,0,0,52.8,40.3,0.4,,1,0,71,72,70,8,4,4,4,81,82,79,4,3,,,6,5,5,6,9,14,76,,,,8,2.47,,,100,100,100,,,100,,,,,,,,24.6,17.9,31.1,14.74,23.89,,,400.57,4.79E+08,8,6,256.25,2.59E+08,1.09E+09,1.66,,21.62,90.8,978,3382,1229626,17.76,10.13,0.48,8.27E+10,112.4,7187500,4,1.52,4.6,82,160,61.34,17989,7400,10589,2.75,,,,,16.61,12.29,41.9,34.9,668,658,1506,1424,109,,1,,10,6759.06,,,2815.73,22.31,22.73,25.63,44.62,114.57,,,47.04,154.45,3.69,2.26,1710,17.71,0.11,1533,3.06,4.84,10.4,61.3,7.9,13.93,,,44.34,120,100,100,3.35,23846,5.71,,39.2,4,3,1,78,0.79,24.4,80.48,,,,,,,4.15,2.11,3.3,1.7,101,101,73,110,28.12,9.11,27.2,11.3,375,894,469,901,,,,92.58,17,,474,95,3.82,69.3,9.65,,,,,,,95.43,,,52,401,,,,,,,17434.54,97284,1474,12040,4609,73.4,5037000,1.75,43.5,6276883,,,101.2,,,104,105,9.01,46.8,488,1584,1.47,100.29,,100,37.28,,7.68,4.49,12.5,6.9,211,303,299,421,104.11,22070,27.87,63607.04,1.27E+11,,2.53E+07,5.9,5.5,5.9,6342017.5,1.79,91.6
Italy,86,2,7,98.4,28970,98,99,58779,0.2,68,,42,26,14,90,1.4,68,,,99,,,,,,,,,87,96,96,95,71,74,66,68,,6,,0,77.1,14.2,40,,,37000,,,419523,,44000,215000,72,,86.2,2022,2194,2623,2845,8,37,22.9,4,,2,0.2,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,64,44,83,134,174,29,403,0,0.2,4,0,0,62,32.8,1,5,1,0,73,75,71,7,3,3,4,81,84,78,3,3,,300,6,4,4,4,5,10,86,,,,6,8.02,,,,,100,,,,8.9,7.4,,,,,,26.1,19.2,32.8,6.57,49.96,2.19,2462,,,8,7,24.31,7.96E+08,1.29E+08,1.1,99,16.96,74.4,11345,36634,6821880,11.64,7.78,0.28,2.58E+11,123.1,6.28E+07,3,0.64,8.1,1186,3418,50.89,16193,12169,4024,1.38,17.04,0.29,,,15.15,9.23,39.3,26.6,7909,9061,17276,20457,113,60.2,1,,10,5668.74,303.67,5226.44,3159.77,24.86,27.24,22.72,26.05,158.26,,,40.05,164.74,1.11,2.3,99790,20.65,,2692,2.08,6.82,14.1,76.6,8.9,7.77,9.71,0.17,26.13,157,,,-0.77,27750,6.5,26.61,36.03,4,3,2,74,2.25,48.2,80.86,98.04,98.82,98.42,99.82,99.8,99.81,6.28,1.87,15.9,5.1,3714,6804,3699,8267,44.23,8.75,58,10.7,5788,26990,6784,30384,,,,45.1,5,505.67,481.33,87,4.2,42.83,1.89,79.08,1360.97,11.07,190.45,0.12,2.01,101.05,,,502,3492,1819.03,11.43,126.93,7.98E-04,0.8,13.82,19066.17,163951,34899,,,31.3,1.82E+07,0.74,17.41,5.81E+07,,,99.76,184.6,3.18,101,101,9.99,40.5,7419,23518,1.56,98.86,100.02,100,6.68,71.2,10.37,5.16,18.8,9.7,4884,6903,6604,9850,84.93,301340,21.3,452108.28,1.13E+12,,-2.77E+08,4.4,4.2,4.4,3.96E+07,0.86,67.6
Jamaica,87,5,65,79.9,7050,90,90,2699,0.6,53,2,25,10,31,89,2.5,87,,33,97,,,,,,,69,54,76,85,85,85,73,57,,,,,,1.3,53.1,4.2,17,,,212,,,4374,,,2253,17,,63.7,127,96,240,180,,9,46.9,32,,1.9,0,5.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,177,130,224,151,326,12,672,9.6,6.1,2.4,0,0,52.1,20.6,9.3,49,1,1,65,66,64,7,26,24,28,72,75,69,170,10,,1371,8,32,30,33,30,4,66,7.5,4.5,3.1,9,1.74,,,88,93,97,84,83,82,,,,,19.5,15.3,24,15,9.2,20.8,82.3,47.37,5.69,,13.25,3.92E+07,7,3,4.36,,1.30E+07,1.1,96.7,18.3,43.5,222,525,45000,1.7,3.71,0.56,,105.8,2200000,21,12.2,31.2,151,383,64.36,30830,14668,16162,2.43,,,,,8.6,7.3,14.3,12,97,95,154,157,166,69.1,1,21,9,2474.29,,,1444.72,14.64,21.53,40.71,41.09,115.35,6.56E+09,72.2,43.59,117.66,7.03,1.04,3390,31.75,1.53,170,2.41,2.29,3.5,48.8,4.7,0.09,,,60.86,,91,93,1.32,7132,5.28,33.09,45.51,26,3,2,57,9.29,46.5,72.44,85.9,74.1,79.9,,,,4,3.1,4.1,3.3,41,44,43,47,22.1,5.5,24.1,6,67,234,73,254,,,3.1,134.11,87,,,84,0.85,64.6,0.57,,,,,,,138.78,,,36,223,,,,,,,3751.71,69,206,233,25807,6.2,166000,0.47,,2735520,18.7,,82.28,,,83,86,22.4,42.4,259,473,0.82,101.19,,73.95,23.12,61.22,20,9.2,26.2,11.6,122,220,154,285,147.95,10990,27.39,10152.94,8.74E+09,33.09,-1.97E+09,31.5,11.3,31.5,1409539.5,0.96,53.1
Japan,88,6,6,,32840,100,100,127953,0,66,,43,27,14,90,1.3,,,,100,,,,,,,52,,98,98,,,79,60,3,24,,7,,0,82.2,17.7,141,,,95197,,,1210633,284968,241369,270371,95,22,82.4,2067,2212,2514,2690,19,21,17.8,14.3,,4.5,78.9,7.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,67,44,89,119,106,39,287,0.4,0,11.6,0,0.2,40,43.9,3.9,1,3,0,75,78,72,22,3,3,3,83,86,79,6,1,,100,29,4,3,4,8,16,76,,,,8,7.59,,,100,100,100,100,100,100,3.3,2.9,,,,,,29.4,14.3,44.3,3.45,12.87,1.5,8906,,,24,21,20.57,3.20E+07,3.05E+08,1.7,99.8,8.18,32.7,9178,32245,2.24E+07,17.51,9.65,0.33,1.21E+14,75.3,9.15E+07,0,2.01,8,3573,7772,50.67,11985,0,11985,1.27,121.28,0.95,0.61,0,16.16,9.35,49.3,26.5,17187,21019,37887,57764,98,55.9,3,,10,8232.58,1133.58,8896.63,4151.61,22.72,22.65,20.79,14.34,96.1,,,41.08,120.95,0.07,1,248680,23.37,0.01,2936,1.46,6.74,17.8,82.2,8.2,22.47,19.51,0.15,12.95,115,100,100,2.59,30290,10.58,29.88,24.85,3,11,9,60,-1.27,66.6,82.27,,,,,,,19.01,5.79,23.1,7.6,11120,25214,12445,27271,30.22,8.04,38.1,12.3,15257,41110,18889,47564,,,,104.12,10,567,570,99,2,24.4,0.97,,,,,,,97.59,66.31,0.52,3798,40747,5358.08,15.36,,,,,22206.72,486906,120018,1096051,9155,54.1,6.92E+07,0.01,47.78,1.27E+08,,,101.92,521.89,4.1,101,102,5.49,12.6,7667,16808,1.09,100.2,,77.7,3.24,68.61,24.33,9.63,62,26.1,19085,35338,35994,73785,76.71,377910,11.94,1230026.8,4.99E+12,,6.99E+10,3.8,3.5,3.8,8.41E+07,0.19,65.8
Jordan,89,1,30,91.1,4820,90,89,5729,3.3,83,2,21,5,37,90,3.2,91,,,100,16,,,,76.4,63.9,55.8,87,95,98,98,98,76,83,,,2,8,3,4.6,42,9.5,19,10,1000,4330,1412,5630,18439,7569,7360,13460,32,14,76.5,257,103,611,246,13,24,58,7.5,0.4,1.4,0.7,9.9,98.7,,90.7,,96.8,98.8,8,,2,1.1,,1,95.9,,80.8,,94.2,95.4,15.1,,1.2,1.2,,1,17.2,,9.2,26.4,,43.6,,1.7,,1.3,36.4,27.2,152,118,184,144,384,102,703,10.7,0.1,2.3,0.3,0,55.4,19.5,11.7,,1,,61,62,60,5,21,21,22,71,74,69,62,16,,,6,25,24,26,31,23,45,4.7,12,3.6,10,0.31,,,91,98,99,71,85,88,16.2,10.3,,,17.2,13.3,20.4,36.5,9.8,62.7,25.59,11.47,3.09,,105.73,6.68E+08,5,7,144.29,1.50E+07,3.20E+07,3.3,99.5,14.6,33,223,509,24190,0.45,3.56,0.75,1.73E+09,55,1594513,7,2.4,4.3,32,60,67.75,39900,17130,22770,3.13,,,,,6.6,5.9,10.2,9.6,81,91,130,144,113,55.8,1,8,-2,1675.51,,,1310.73,14.56,17.6,,52.61,130.95,7.70E+09,59.11,24.41,69.59,14.07,1.29,830,24.64,,241,5.74,4.76,9.5,45.3,10.5,1.36,,,94.04,148,94,97,4.85,4294,6.69,28.91,38.84,22,2,2,83,2.96,12.6,72.22,87.01,95.18,91.13,99.02,98.93,98.98,2.3,1.3,2.5,1.4,17,31,18,34,15.3,3.2,16.5,3.5,41,195,45,212,,,3.6,298.45,41,,426,95,2.03,117.42,5.33,,,,,,,86.04,,,29,320,,,,,,,4669.41,,58,,,5.3,300000,2.27,23.88,5759732,14.2,,100.24,,,97,96,7,11.2,80,129,0.86,100.98,100.09,100,14.99,68.01,5.7,3.4,6.6,4,46,76,57,91,98.63,88780,24.37,20503.74,1.14E+10,70.96,-5.22E+09,26.8,18.6,26.8,4453664.5,2.73,82.3
Kazakhstan,90,2,26,99.5,8700,90,90,15314,0.7,58,2,29,10,24,90,2.2,70,,23,100,,,,,,,,,99,93,94,,69,71,35,79,,4,,0.3,64.6,10.4,78,,,5612,,,113098,,14048,57514,76,,100,214,122,330,189,10,39,35.4,,,2,0,3.7,98.3,98.5,99.7,99.2,99.5,98.4,-1.4,-0.7,-1.1,1,1,1,89.4,75.7,86.7,73.8,76.2,81.4,2.7,1.9,5.2,1,1,1.1,12.4,37.1,23.1,55,44.8,67.4,81.9,1.2,1.8,1.5,73.2,50.1,315,191,436,167,713,160,1052,14.5,0,6.8,0.8,0.1,43.1,17.9,16.9,10,17,0,56,59,53,130,26,22,29,64,70,59,140,32,,105,142,29,25,33,16,24,60,16.2,17.4,3.5,8,2.96,11,1,91,96,99,98,97,97,,,,,11.4,8.1,15.2,26.6,9.7,43.2,29.77,76.9,6.79,,11.48,2.25E+08,137,169,46.42,5000000,7.20E+07,2.1,99.4,14.99,38.7,1687,3447,2996,0.02,11.91,1.67,4.06E+11,36.4,2758940,8,5.84,21.6,729,1955,47.55,11515,3369,8146,2.31,27.21,1.79,44.16,2.91,11.76,8.49,9.2,7.9,495,379,736,577,140,50.7,18,4,-6,3206.37,67.92,4472.57,3461.86,9.81,7.75,5.6,53.54,,4.34E+10,83.81,49.58,53.52,3.46,-0.26,33370,30.97,0.1,148,1.4,2.5,9.3,64.2,3.9,11.34,1.78,0.12,44.73,,87,86,8.74,8699,7.45,40.1,33.91,27,62,45,71,17.87,4.1,66.47,99.29,99.76,99.51,99.87,99.82,99.85,12.6,4.8,13,5,467,777,486,803,52.04,7.42,77.4,11.5,947,4095,1085,4794,,,3.8,18.42,210,,,99,3.54,79.13,1.04,19.4,1277.7,23.3,1534.03,1.9,125.31,,0.07,0,2788,22493,207.11,4.98,1355.74,0.03,39.83,2622.71,9058.96,89423,1280,3945,9532,,,0.89,7.63,1.52E+07,15.4,,107.13,56.46,3.72,110,109,6.18,9.8,349,575,0.7,98.87,100.06,83,106.61,53.11,26.52,11.58,41.5,18.4,1477,2145,1747,2612,71.23,2724900,20.58,180924.66,3.00E+10,16.3,5.05E+09,36.6,34.5,36.6,8679260,1.24,57.3
Kenya,91,3,116,73.6,1470,76,75,36553,2.6,21,,18,4,43,48,5,52,48,27,42,4,33.3,4.6,26.5,49.1,50.6,39.3,74,80,81,81,81,70,82,0,4,,,2,14.8,48.2,6.1,14,2,,1340,6496,7000,37113,1000,3094,4506,12,,80,51,14,105,29,1,1,51.8,6.9,0.01,8.4,5.2,4.6,72,75.4,15.8,17,34.5,72,56.2,58.4,37.5,4.6,4.4,2.1,84.9,88,51.1,54.8,69.7,85.9,33.8,33.2,16.2,1.7,1.6,1.2,63.6,58,23.4,62.9,91,126.5,149,2,1.6,1.3,116.9,93.5,416,404,432,139,401,95,782,16.5,14.6,2.7,13.6,3.2,24.2,5.3,19.9,409,26,46,44,45,44,384,79,70,88,53,55,52,560,34,0,6125,334,121,111,130,81,8,11,5.8,35.8,16.5,11,1.51,94,17,49,57,85,48,42,19,6.3,,25,47,15.1,14.5,14.9,14.7,2.2,27.1,103.81,47.48,26.78,,21.19,7.67E+08,421,288,7.63,,2.50E+07,1.35,41.6,18.1,25.2,1699,2422,0,,0.33,0.23,2.18E+11,13.5,2546157,26,23.4,28.7,2111,2635,82.9,1319359,648865,670494,4.96,,,,,6.9,3.6,7.4,3.9,314,570,337,606,146,39.3,92,4,8,138.43,,,484.45,21,20.74,284.48,27.88,100,6.43E+09,33.54,43.78,13.75,0.11,0.05,35220,16.58,6.82,24,2.4,2.1,6.1,46.6,4.5,3.21,,,35.23,100,46,61,3.38,1359,5.99,19.15,42.5,79,167,113,82,6.28,3.2,53.33,70.23,77.65,73.61,80.71,79.81,80.32,9.6,5.1,9.7,5.2,436,813,444,827,4.1,2.1,4.2,2.2,167,288,176,296,4.6,26.5,16.5,33.37,1000,,,69,0.14,49.35,1.66,,,,,,,95.06,,,32669,136274,,,,,,,1051.77,177559,100,136,1424359,1.4,441000,2.63,7.79,3.38E+07,52,,92.62,,,93,90,14.1,16.6,850,1007,1.12,95.8,101.12,14.12,1.48,54.07,10.8,7.7,11.5,8.2,577,762,611,801,54.8,580370,18.29,11090.93,1.52E+10,27.99,-1.40E+09,119.4,96.1,119.4,7368983,3.6,20.7
Kiribati,92,6,,,6230,98,96,94,1.7,42,,,6,32,,4.2,,,,90,,,,,,,,,93,94,96,,82,93,,,,,,0.4,92.4,13,15,,,3,,,260,,2,20,30,,100,268,108,290,117,,2,7.6,0,,13.1,0,12.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,247,177,311,52,273,22,773,21.9,0,1.3,0.7,2.6,22.1,39.9,11.5,,45,,54,56,52,372,47,44,51,65,68,63,,25,,,402,64,63,65,45,3,52,,,,5,0.45,,,53,65,77,20,33,46,,,,,,,,,,,,45.68,7.19,,302.16,2.78E+07,380,361,,,6000000,0.88,88.9,,,,,0,,0.25,0.08,,0.61,526,,,,,,,37,0,115,,,,,,,,,,,,,,,20.9,48,,,,,,,13.57,,,10.95,,,,,2.62,,0.07,20,56.32,,118,0.97,11.73,13,92.4,12.7,,,,89.06,,44.25,48.75,-0.9,3377,,7.09,,48,171,135,93,-2.91,2.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,56,0.3,116.96,,,,,,,,,,,44,383,,,,,,,3288.92,2,2,17,,0.9,750,1.21,,103092,,,124.81,,,87,90,,,,,,106.62,,,,85.72,,,,,,,,,126.03,810,,25.65,5.19E+07,,-2.08E+07,66,,66,46926,3.08,47.4
"Korea, Dem. Rep.",93,6,0,,,,,23708,0.4,62,,32,14,24,90,1.9,95,,,97,,,,,,,68.6,91,99,92,92,,97,89,,,,4,1,48.1,85.6,6,,,,8315,2685,950,93414,67957,13497,74597,41,30,100,42,0,49,0,6,33,14.4,0,,1.3,0,3.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,166,233,102,371,65,691,18.9,0.7,3,0.7,0.8,41.8,18.9,15.2,,14,0,59,60,58,178,42,41,43,66,68,64,370,22,,,180,55,53,57,44,11,46,0.9,44.7,17.8,7,3.26,,,100,100,100,60,59,58,,,,,,,,,,58.6,1.46,25.33,,,3.43,8.68E+07,178,181,13.46,1.14E+07,5000000,2.63,84.96,4.4,20.4,517,2388,0,,3.61,,,,0,,4.7,17.9,558,2150,48.55,,,,1.85,,,,,10.9,6.7,24.7,15.8,808,1087,1905,2537,,62,16,,-9,816.92,,,898.26,,,,,,,,38.72,1.97,,,61870,,0.01,0.23,0.5,3,6,85.6,3.5,,,,,,43.5,75,,1596.68,,,,42,80,75,89,,,67.14,,,,,,,17.95,4.3,23.55,5.7,516.5,1903,684.5,2502,21.5,5.15,26.65,6.4,620,2118,769.5,2639,,,8.9,,25.13,,,96,1.97,,,,,,,,,,,,3697,42992,,,,,,,1104.65,44026,27,141,1355,,,0.43,18.86,2.29E+07,,,,,,,,1.4,3.8,127,354,0.71,,,6.4,5.22,,37.1,15,69.7,26.8,1805,3730,3226,7158,8.22,120540,,82615.88,,,,55,,55,1.45E+07,0.89,61.6
"Korea, Rep.",94,6,2,,22990,93,100,48050,0.4,81,,36,14,18,90,1.2,,,,100,,,,,,,,,92,91,91,,18,83,,,,3,,0,55.1,11.9,86,,,16033,,,92061,,50623,75045,19,,82.1,819,653,1487,1187,11,16,44.9,7.4,,1.2,76.7,6.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,84,47,119,169,186,67,537,0.4,0,11.2,0,0.2,71.5,15,1.8,10,10,0,68,71,65,88,5,4,5,79,82,75,14,4,,100,123,5,5,5,7,21,72,,,,4,7.87,,,71,92,97,,,,,,,,10.2,8.8,10.9,29.7,5.7,53.3,3.68,19.05,3.41,,-1.19,-6.81E+07,85,80,28.64,3.90E+07,6.27E+08,3.1,100,4.57,20.4,1201,5511,1.22E+07,25.24,9.3,0.47,2.08E+14,79.4,3.66E+07,2,3.29,17.9,1327,4949,39.05,105777,132037,107,1.21,54.77,1.13,1.26,0.03,12.31,7.19,24.7,15.8,1973,2433,4561,5650,118,80.5,10,,8,7778.62,396.61,8153.9,4426.44,19.19,24.99,8.94,42.27,92.7,,,40.81,135.33,0.8,0.54,62650,30.06,0.04,973,2.77,3.13,10.9,53,5.9,32.33,1.15,0.02,39.91,117,,92,3.51,21342,7.91,40.27,31.59,5,38,24,83,-0.19,68.3,78.23,,,,,,,33.55,8.85,47.1,11.4,2468,8498,3256,11169,40.27,10.37,53.3,12.8,3045,9421,3768,11722,,,,90.74,20,,594.33,99,1.6,68.95,2.57,,,,,,,79.03,33.23,0.68,4621,56486,2307.64,17.33,,,,,17009.02,203696,45298,244483,11153,54.5,2.62E+07,0.44,50.62,4.86E+07,,,104.06,224.92,4.62,104,104,3.92,7.6,578,1594,1.65,95.5,,76.82,8.74,56.32,32.72,12.82,69.7,26.8,4407,8322,7737,15912,98.63,99260,15.73,452218.22,6.39E+11,,1.90E+10,5.08,6.8,5.08,3.90E+07,0.74,80.8
Kuwait,95,1,15,93.3,48310,83,84,2779,2.9,98,,29,3,24,90,2.2,,,,100,,,,,,,,83,99,99,99,99,95,63,,,,3,,0,78.9,4.9,19,,,810,,,9940,,1340,4840,37,,91.6,422,628,535,796,5,18,21.1,8.4,,2.1,0,2.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62,52,68,78,309,34,512,0.7,0,7.9,0,0,35.5,51.5,4.4,,2,,67,67,67,24,9,9,10,78,79,77,4,7,,,25,11,10,12,18,22,60,,,,7,0.03,,,,,,,,,,,,,20.9,14.3,28,,,,13.59,8.64,0.46,,1.82,2600000,24,19,,9.90E+07,2.10E+07,2.6,100,14.31,31.8,83,194,25000,0.99,40.07,0.98,1.30E+09,88.6,2000000,6,1.73,6.1,17,34,34.27,27920,14179,13741,2.18,,,,,4.86,5.63,7,9.6,27,38,43,61,109,50.2,3,,-7,15345.23,43.73,18724.57,11099.82,11.43,17.01,98.64,67.66,,,,25.39,113.99,0.31,6.37,60,19.74,,687,0.5,1.7,6.2,77.2,2.2,0.96,,,30.35,,,,5.25,44947,,51.06,,10,11,7,63,24.47,26.1,77.42,91.04,94.45,93.27,99.79,99.69,99.73,8.83,5.63,7.1,1.6,7,52,7,54,12.28,3.08,18.9,6,21,119,23,129,,,,161.03,5,,,99,1.53,75.1,4.84,12.3,5266.2,12.3,5266.2,1.57,673.05,170.16,,,70,799,302.31,47.27,2618.33,0.41,101.5,43456.89,11048.56,,107,,,17.6,450000,3.04,71.38,2335648,,,100.27,26.67,11.42,91,92,4.02,9.6,37,59,0.22,101.89,100.1,85,35.12,48.48,1.91,2.87,4.8,3,11,28,13,32,101.37,17820,0.98,93585.89,5.22E+10,,2.89E+10,11.8,9.8,11.8,2492343.5,3.06,98.3
Kyrgyzstan,96,2,27,98.7,1790,85,86,5259,1.1,36,2,24,7,30,90,2.5,81,,,98,,,,,,,,,99,94,94,,63,85,,,,2,,6.1,43.3,8.7,51,,,1017,,,30824,,143,12710,58,,95.4,55,15,127,34,,24,56.7,,,2.4,20.9,6.4,99,100,97.7,96,97.8,99.2,1.3,4,1.4,1,1,1,77.5,80.7,85.1,81.9,84.5,83.7,-7.6,-1.2,-0.8,0.9,1,1,37.7,47.1,24,55.7,49.3,93.4,96.4,1.7,2,1.4,82.2,58.2,236,164,309,106,602,90,924,14.1,0,6.6,0.9,0.1,43.8,17.9,16.7,10,18,0,55,58,52,123,36,32,39,66,70,63,150,30,,111,137,41,38,44,35,14,51,10.7,18.1,2.7,7,3.63,,,83,89,99,93,93,94,,,,,7.2,4.8,10.8,24.7,2.2,46.9,31.36,56.02,31.95,,40.28,2.68E+08,124,122,21.68,9.20E+07,3000000,3.1,97.9,9.65,23,258,522,2490,0.05,1.08,0.64,3.31E+09,10.3,300000,,6.97,21.6,186,522,,28863,13779,15084,,,,,,7.27,6.05,5,5.8,85,63,134,86,122,47.8,18,6,3,1842.13,,,543.99,7.57,14.27,21.81,38.31,,2.03E+09,85.01,,19.09,1.73,1.99,8690,16.42,0.11,29,3.64,2.46,8.6,40.3,6.1,1.83,,,56.78,,75,77,,1728,8.92,22.39,30.31,,56,38,85,7.13,5.3,,98.13,99.31,98.7,99.74,99.65,99.7,6.96,3.58,6.7,3.1,70,106,74,109,22.15,4.08,31.3,5.5,111,436,126,511,,,8.2,1.71,110,,,99,,72.36,3.07,,,,,,,,,,942,7152,,,,,,,,89480,65,304,3368,1.7,87000,0.99,,,43.1,,96.74,,,,,4.05,7.7,76,125,0.64,100.16,100.09,91.1,,45.66,21.09,8.84,36.1,17.9,339,498,412,614,38.36,199900,,5565.62,1.65E+09,30.21,-4.55E+08,44.1,48.3,44.1,1841373,1.21,35.8
Lao People's Democratic Republic,97,6,110,68.7,1740,81,86,5759,1.7,21,27,20,5,39,59,3.3,,,94,19,,,17.7,8.7,,,32.2,47,40,50,50,,77,90,2,3,,,,14.1,20.8,4.1,12,,,196,,,5600,3800,,2000,10,7,93.5,18,5,85,22,,4,79.2,0.5,,2.8,12.9,3.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,308,294,324,150,476,142,904,15.6,0,2.3,0.7,5.9,34.5,21.9,19.1,10,23,1,47,47,47,152,59,51,67,60,61,59,660,30,0,103,292,75,70,79,71,10,19,2.7,48.2,36.4,14,6.91,99,88,53,60,86,38,48,87,1.6,0.7,,,8.9,2.7,14.9,40.5,15.6,65,78.65,8.49,44.31,,50.37,2.96E+08,154,67,1.58,,4000000,2,19.4,4.7,10.9,94,217,133,0,0.23,0.13,4.87E+11,10.8,204191,20,8.8,16.8,159,317,,134422,75193,59229,,,,,,4.7,3,7.4,4.8,52,73,83,114,163,32.2,24,9,-7,,,,,9.11,4.65,25.23,27.14,,2.69E+09,102.77,,12.6,0.96,0,161420,32.58,0.11,18,2.86,0.74,4.1,20.6,3.6,,,,30.89,,67,51,,1811,8.07,29.98,34.65,,69,50,90,7.99,0.4,,60.9,77.01,68.73,74.68,82.6,78.46,21.2,7.1,22.4,7.5,117,320,125,340,16.9,6,18.3,6.5,101,247,110,268,17.7,8.7,36.4,,650,,,41,,45.53,2.07,,,,,,,95.07,,,1371,16939,,,,,,,,,,,3495,0.4,22000,1.61,,,33,,72.07,,,,,1.5,2.4,19,30,0.86,84.1,90.42,14.41,,25.71,2.7,1.6,3.2,1.9,28,40,34,48,10.96,236800,,1432.62,2.35E+09,11.49,-8.23E+07,83.4,84.3,83.4,1166765.5,3.27,20.6
Latvia,98,2,16,99.7,14840,92,89,2289,-0.6,68,2,40,22,14,90,1.3,,,18,100,17,,,,,,,,97,98,97,97,85,74,38,77,,7,,0.2,63.2,10.2,76,,,1561,,,12840,,,7200,56,,97.3,615,337,974,533,,31,36.8,2.7,,1.8,90,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,223,123,323,156,482,132,733,0,0,11.3,0,0,53.2,34.3,1.2,50,8,0,63,68,58,57,8,7,8,71,76,65,10,6,,508,60,9,8,10,7,23,70,,,,5,9.61,26,3,96,99,100,71,78,82,19.5,11.9,,,37.6,33.9,41.8,39.4,24.1,54.4,15.33,27.84,3.97,,,1.62E+08,63,61,1.8,8000000,7000000,3.4,100,18.45,44.3,421,938,60770,2.64,2.82,0.26,2.49E+09,81.1,1536712,4,4.54,12.9,165,291,44.94,6948,2575,4373,1.29,,,,,18.33,11.04,24.2,17.9,368,279,488,372,122,48,9,2,8,2702.46,,,2049.99,20.66,24.02,12.36,47.85,152.85,1.45E+10,92.18,48.67,113.14,4.55,0.8,29410,34.39,0.78,443,2.53,3.87,10.8,60.5,6.4,5.29,,,62.23,,82,99,10.84,13218,6.78,21.58,35.75,8,28,23,74,10.18,44.6,71.25,99.71,99.79,99.75,99.78,99.72,99.75,4.85,1.68,3.8,1.9,53,68,50,57,56.63,6.04,60.3,6.4,175,903,175,920,,,,15.75,42,535.67,,95,3.01,86.39,1.71,,,,,,,,,,213,1514,,,,,,,11811.07,140645,1650,2127,9870,21.9,501000,-0.53,,2290237,5.9,,92.17,,,93,92,17.51,19.8,213,315,1.2,99.16,100.07,100,3.51,74.46,19.6,9.22,24.6,11.1,289,339,309,374,93.15,64590,15.05,6452.3,1.16E+10,16.27,-2.41E+09,11,13.4,11,1559739,-0.62,67.8
Lebanon,99,3,18,,9600,82,82,4055,1.1,87,,27,10,28,90,2.2,76,,25,98,,,,,,,,,53,74,74,74,55,92,,,,9,,2,46.8,11.3,36,,,3260,,,4720,,3000,8440,13,,73.9,285,219,608,468,8,24,53.2,22,,0.6,53.1,8.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,162,133,193,90,453,98,742,1,0,11,0,0,64.9,22,1.1,10,1,0,60,62,59,11,27,24,29,70,72,68,150,19,0,114,12,31,27,34,18,22,60,,15.2,3.4,6,3.24,,,100,100,100,87,98,100,,,,,59.7,54.1,65.8,18.1,7,29.1,25.72,37.93,6.44,,61.04,2.44E+08,11,10,28.75,4.50E+07,1000000,3.4,98,23.4,52.5,362,816,130000,3.24,4.41,0.43,6.44E+12,27.8,888000,12,8,15.4,131,262,55.95,72806,36291,36515,2.21,,,,,3,2.6,4.6,4,42,40,65,60,,58,1,19,7,2241.98,,,1390.52,8.32,8.78,18.4,21.21,,2.24E+10,107.9,30.38,40.6,12.78,0.57,1360,17.1,0.11,460,4.92,3.78,11.9,43.5,8.7,2.4,,,41.74,,100,100,-0.03,10212,,22.84,,27,5,3,92,-0.72,19.6,71.75,,,,,,,0.8,0.7,0.8,0.7,12,10,14,11,29.1,4.6,31.3,5,70,369,75,397,,,,22.9,150,,443.67,96,3.25,55.61,4.65,,,,,,,99.19,,,45,499,,,,,,,3716.93,104,,,2766,11.3,400000,1.15,44.31,3826018,,,81.48,,,92,96,6.1,9.8,82,131,0.74,102.15,,84.9,15.44,70.72,6.1,4,7,4.6,61,82,71,96,93.15,10400,16.27,16891.04,2.05E+10,74.31,-3.15E+09,30.3,32.5,30.3,3473300.8,1.29,86.6
Lesotho,100,3,98,82.2,1810,74,71,1995,0.7,19,,19,7,40,26,3.5,70,17,22,55,5,54.6,,,58.8,79.6,37.3,76,85,83,85,,79,73,,,,,,15,61.6,7.8,13,,,16,55,146,1123,35,62,89,6,,68.9,88,30,143,49,,,38.4,,0.01,12.4,0,6.7,72.5,83.2,20.8,33.7,50,87.8,51.7,49.5,37.8,3.5,2.5,1.8,85.3,84.6,74.2,81.9,83.8,91.1,11.1,2.7,7.3,1.1,1,1.1,79.4,32,18.4,81.8,82,161.2,114,2,1.4,1.2,104.6,86.2,722,663,798,139,404,88,785,3.9,56.2,2.2,0,0.1,32.8,0,4.7,1282,42,47,31,33,30,635,102,96,108,42,44,40,960,52,,22684,513,132,123,140,90,3,7,6.8,45.2,16.6,14,1.82,,,74,78,93,34,36,43,16.1,,50,48,20.3,17.7,22.4,,,,79.91,76.9,17.03,,34.74,6.86E+07,639,545,0.96,,1000000,0.4,55.4,9.9,13.1,77,102,45,0,,,1.73E+09,13.9,159000,13,50.3,61.5,391,479,82.29,90707,40897,49810,3.37,,,,,4.2,2.3,4.5,2.5,19,28,19,30,140,37.3,103,5,8,,,,,25.09,50.84,1145.67,49.68,,6.64E+08,38.38,44.49,15.03,6.45,0.01,80,34.14,23.43,69,0.93,8.47,18.2,90.1,9.4,0.62,,,100.02,,61,79,1.38,1415,1.51,42.37,63.2,102,257,216,73,3.37,2.9,43.09,90.3,73.7,82.22,,,,23.2,5.2,23.7,5.3,41,154,42,156,11.3,1.6,11.6,1.6,11,70,12,72,,,16.6,,550,,,85,0.05,138.85,2.36,,,,,,,85.06,,,2040,10575,,,,,,,1778.57,177309,70,15,265042,,,0.76,,2031348,68,,62.3,,,60,82,22.6,26.7,132,157,0.89,103.9,,18.3,,40.59,5,2,5.2,2.2,16,30,17,32,41.1,30350,44.34,,9.82E+08,78.22,-6.49E+08,97.9,79.2,97.9,370415.4,1.73,18.7
Liberia,101,3,,60,260,39,40,3579,3.9,59,,16,4,47,,6.8,84,3,10,51,,,2.6,,,,,89,95,88,,,55,76,,,,,,42.3,63.9,16.4,,,142,13,150,218,1035,682,35,103,3,2,98.9,25,6,39,10,,,36.1,0,0.2,10,0,5.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,457,415,498,169,485,270,955,17.3,3.6,1.7,18.9,6,29.1,0.3,23,,63,7,35,37,34,331,157,139,174,44,46,43,1200,66,,,578,235,220,249,83,10,7,4.6,45.3,22.8,,3.82,,,52,64,72,7,32,49,,,,,,,,,,,221.95,27.01,65.97,,68.59,2.33E+08,336,100,0.06,,8000000,0.4,50.9,13.8,18.8,119,166,0,,0.16,0.46,,4.9,47250,,28.2,35,256,320,96.42,356199,179279,176920,6.77,,,,,4.4,3.5,4.8,3.8,29,33,30,37,,10,75,,5,,,,,,,,37.97,,2.58E+09,619.18,39.9,0.28,36.66,,31540,16.48,1.54,10,2.04,4.36,36.3,68.2,6.4,,,,52.03,,49,61,3.93,383,,15.78,,157,150,63,76,13.57,0,45.2,45.72,58.26,51.94,69.45,65.29,67.36,9.6,4,9.8,4,42,101,43,104,1.6,0.6,1.7,0.6,5,11,5,12,,,22.8,,760,,,94,0.03,83.4,7.5,,,,,,,,,,2589,21491,,,,,,,1102.42,89507,30,490,29353,,,2.75,,2900269,,,,,,,,13.2,15.7,84,99,0.79,72.7,106.36,6.2,1.15,18.24,3.7,1.8,4,2,13,27,14,28,10.96,111370,,472.66,4.44E+08,0.99,,143.9,172.7,143.9,1999683.5,4.07,58.1
Libyan Arab Jamahiriya,102,1,7,85,11630,91,95,6039,2,85,,25,6,30,90,2.8,,,,100,,,,,,,,,98,98,98,56,156,69,,,,2,,0,70.2,6.5,37,,,850,,,27160,,1130,7070,48,,100,189,179,270,255,2,13,29.8,0,,3.8,,2.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,146,107,176,79,411,55,650,8.4,0.1,2.6,0,0.1,55.6,24.8,8.5,,1,,64,65,62,18,17,17,17,72,75,70,97,11,,,18,18,18,18,31,16,53,16.2,20.7,4.3,7,0.01,,,68,71,72,96,97,97,,,,,11.1,6.1,15.5,,,,3.45,8.86,,,3.46,2.42E+07,,,711.33,2.40E+07,5000000,1.14,99,16.8,23.4,325,463,0,,9.73,0.99,,5,127000,4,9.6,11.9,175,218,51.82,,,,2.72,,,,,4.5,3.4,4.9,3.7,63,95,67,101,80,45.2,,,-7,3299.47,,,3218.37,2.97,,23.76,47.74,,,,27.12,19.36,,0.31,2170,15.03,,223,0.98,2.22,6.5,69.5,3.2,,,,36.36,47,97,71,1.53,10804,,,,18,,,,28.82,4,73.65,74.82,92.84,84.16,96.47,99.54,98.04,4.7,2.5,4.8,2.5,43,89,43,89,10.1,2.1,10.4,2.2,36,186,39,190,,,,,97,,,97,1.29,88.86,1.8,,,11.3,1959.91,1.32,228.25,153.69,,,,,,,1751,0.11,41.46,7191.67,2601.41,35,,,,2.3,130000,2.03,54.27,5765563,,,,,,,,4.8,5.6,77,93,0.13,107.85,96.92,57.2,26.43,,3.9,2.3,4.1,2.4,39,75,41,78,90.41,1759540,,56099.5,4.04E+10,,1.59E+10,19.6,11.7,19.6,5018648,2.43,84.8
Lithuania,103,2,19,99.6,14550,89,90,3408,-0.5,66,2,38,21,16,90,1.3,,,,100,15,,,,,,,,97,95,96,95,109,70,,,,7,,0.1,70,13.3,80,,,2249,,,26140,,2184,13510,77,,98.3,728,381,1041,545,6,40,30,1.3,,1.9,84.5,6.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,223,113,333,161,391,136,640,0.3,0,17.4,0,0,41.4,35.6,5.3,10,7,0,63,68,59,62,7,6,7,71,77,65,11,5,,116,61,9,8,9,4,28,68,,,,4,9.89,,,,,,,,,19.2,20.6,,,32.1,28.1,36.8,33,20.8,45.1,19.66,45.26,5.66,,,2.50E+08,63,62,1.73,3000000,1.20E+07,3.6,100,17.78,38.5,549,1106,234081,6.86,3.89,0.3,1.55E+10,127.1,3421538,3,9.24,17.6,256,446,47.22,15450,7106,8344,1.26,0.17,0.05,,,18.11,11.15,26.5,16.8,434,424,616,615,104,46.6,7,6,10,3104,14.78,4110.61,2515.01,15.03,21.16,20.03,58.06,,1.26E+10,52.36,49.17,150.97,4.01,1.33,20990,25.11,0.11,448,1.93,3.97,11.9,67.3,5.9,6.12,0.19,0.05,65.38,,,,8.14,14085,6.77,33.06,35.83,7,29,28,70,5.66,25.8,71.56,99.65,99.64,99.65,99.74,99.66,99.7,3.23,1.34,3.2,1.8,67,88,65,73,55.21,4.71,57.5,5.6,197,1280,212,1318,,,,31.82,13,531.33,504.67,97,3.97,106.37,1.19,3.27,908.04,,,,,,2.34,0.65,251,2229,58.33,5.92,,,,,9359.19,140765,1918,840,2078,15.5,533000,-0.62,,3596617,,,91.02,8.41,2.34,99,97,17.45,32.3,406,791,1.08,99.51,100.08,78.16,5.9,61.28,20.85,8.33,25.8,13,361,515,475,589,106.85,65300,17.42,13974.5,1.66E+10,30.38,-1.87E+09,9,8.7,9,2273923.8,-0.74,66.6
Luxembourg,104,2,11,,60870,98,96,461,1,83,,38,19,18,90,1.7,,,,100,19,,,,,,,,96,99,87,99,4,,85,82,,8,,0,90.6,16.8,63,,,343,,,4418,,401,1255,96,,70.5,5233,5991,5773,6610,9,27,9.4,18.9,,3.5,78.6,7.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,83,55,109,134,177,51,406,0,0,14.9,0,0,54,29.9,1.1,50,1,0,72,74,69,12,3,3,3,80,83,77,12,3,,500,10,4,4,4,5,19,76,,,,8,15.56,,,100,100,100,100,100,100,,,,,,,,34.7,30.3,39.1,10.54,49.81,0.42,236,,,13,8,,,1000000,3,99.9,17.74,82.5,75,282,70100,15.35,24.15,0.37,5.44E+09,154.8,539000,,1.67,8.7,13,24,48.58,607,169,438,1.66,,,,,16.28,9.73,43.6,30.8,66,65,141,146,112,,1,,,15970.76,,,10457.41,20.66,22.87,,159.27,,,,42,211.17,312.67,332.38,870,21.32,0.22,6330,0.72,6.98,16.5,90.7,7.7,11.81,,,137.97,,,100,3.26,70014,8.43,16.16,30.76,4,6,3,,4.74,67.7,79.57,,,,,,,6.06,2.39,4.2,1.3,9,18,6,14,44,7.97,61.3,13.6,48,170,52,206,,,,140.2,28,,,95,2.7,111.3,0.81,,,,,,,,,,6,46,,,,,,,43696.82,251564,12176,25539,554,62.1,285000,0.75,,468571,,,80.82,,,79,81,10.53,57.2,57,200,0.76,103.19,,100,,83.43,6.4,2.81,13.3,6.7,18,25,29,45,,2590,25.76,11314.43,2.38E+10,,1.21E+10,4.3,4,4.3,378155.53,0.51,82.8
"Macao, China",105,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4.79,,0,,0,1.20E+07,,,,,,1.57,87.5,,,,,68030,14.38,4.98,0.12,1.82E+10,115.8,378393.75,,,,,,30.94,3372,1923,1449,0.91,,,,,,,,,,,,,99,,,,9,,,,,4.76,4.49,21.5,96.67,,,,47.16,149.47,15.35,0.52,,27.65,,,,,,,,0.74,,,59.7,,,,5.98,37256,,14.83,,,,,,8.62,37,80.53,37.62,40.83,39.13,42.78,42.61,42.7,,,,,,,,,,,,,,,,,,,,3.14,20,,,,,55.52,,,,,,,,94.18,,,,,,,,,,,26462.66,6,0.38,46,,21.75,101250,1.16,,449198,,,96.3,,,76.5,76.5,,,,,0.37,96.89,43.02,100,,88.68,,,,,,,,,,28.2,22.24,2235.04,1.04E+10,,4.25E+09,,,,473090,1.16,100
Macedonia,106,2,23,96.1,7850,92,92,2036,0.1,70,2,35,16,19,90,1.5,,,,98,10,,,,,,13.5,,96,95,96,,66,84,,,,6,,1.1,71.6,16.5,46,,,1175,,,8833,,908,5187,43,,100,446,176,623,245,5,26,28.4,,,1.7,93.3,8.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,121,80,160,145,504,74,745,5,0,2.5,0,0,63.1,25.1,4.3,10,5,,63,65,62,29,15,13,16,73,76,71,10,9,,100,33,17,15,19,8,20,72,7.9,1.2,1.2,5,5.69,,,99,100,100,81,89,92,,,,,9,8.2,9.6,,,,22.84,48.84,12.78,,109.72,2.29E+08,30,29,,2.90E+07,1.30E+08,3.03,,17.87,52.1,235,681,12436,0.61,5.02,0.72,3.37E+10,62,776000,7,3.41,13.9,99,167,44.55,3139,1404,1735,1.43,,,,,15.21,7.26,27.6,19,124,154,273,342,110,,5,5,,3417,,,1346.34,,,23.74,44.71,,2.24E+09,38.94,39.16,88.24,1.72,0.05,9060,20.71,,224,2.31,5.49,15.8,70.4,7.8,1.07,,,61.96,,,,3.78,7393,6.06,29.65,38.99,15,13,9,84,3.79,7.9,,94.06,98.21,96.13,98.49,98.99,98.74,7.4,3.9,6.9,3,59,93,44,86,42.24,5.48,50.6,9.2,104,514,125,621,,,1.2,11.11,23,,,96,2.19,90.61,2.18,,,,,,,,,,105,690,,,,,,,3557.41,140630,679,349,,6.8,140000,0.16,,2045262,21.7,,97.22,,,96,97,9.05,27.5,112,348,1.23,98.55,99.49,63.8,26.11,57.58,20,7.52,28.5,12.2,129,254,177,354,95.89,25710,,10270.19,3.84E+09,59.77,-1.09E+09,16.4,10.5,16.4,1401188.2,1.33,68.9
Madagascar,107,3,154,70.7,870,96,96,19159,2.7,27,61,18,5,44,75,4.9,40,,3,45,1,,0.2,34,,,27.1,72,81,82,82,,73,74,,,,,,50.3,62.8,9.2,3,,385,410,130,172,5661,530,175,5201,3,,52.4,21,6,34,9,,3,37.2,10.7,0.5,1.1,,3.2,80.5,93.9,21.9,29.9,39.6,70.6,58.6,64,31,3.7,3.1,1.8,85.2,84,36.1,38.4,55.9,73.9,49.1,45.6,18,2.4,2.2,1.3,83.2,92.4,46.7,65.4,49.4,148.6,141.8,2.3,2.9,1.6,120,73.3,268,232,303,147,430,112,837,16.9,1.3,2.4,20.1,5,25.6,8,20.7,16,45,0,49,50,47,248,72,66,78,59,61,57,510,41,0,451,415,115,110,121,79,9,12,6.2,52.8,36.8,14,1.59,,,36,47,76,10,12,18,1,,5,12,,,,,,,139.45,70.23,28.16,,49.84,9.14E+08,243,102,4.44,,1.90E+07,3.1,51.3,14.2,19.5,729,1027,0,,0.16,0.18,1.14E+11,2.7,333888,15,34.6,42.7,1795,2238,88.51,176074,89382,86692,4.78,,,,,6.1,3.8,6.7,4.1,184,274,198,295,165,27.1,47,4,7,,,,,8.43,15.31,174.99,26.89,,3.47E+09,69.86,48.4,3.1,0.57,0,128380,22.55,0.13,9,1.2,2,9.6,62.5,3.2,0.77,,,41.01,,48,46,1.83,988,4.88,15.51,47.45,74,109,70,74,18.36,0.5,58.9,65.26,76.53,70.68,68.19,72.65,70.24,20.8,8.5,21.1,8.6,410,933,415,949,3.5,2.1,3.6,2.2,98,152,101,157,0.2,34.2,36.8,,550,,,59,0.29,44.86,1.07,,,,,,,77.22,,,8669,78546,,,,,,,682.17,89530,15,165,12198,0.5,91000,2.76,8.5,1.80E+07,71.3,,57.62,,,45,46,11.8,13.8,412,486,1.15,95.98,93.85,11.6,1.67,56.33,7,5.2,7.4,5.5,243,302,258,318,21.92,587040,10.1,2813.95,4.34E+09,13.88,-7.10E+08,122.6,95.6,122.6,4996213,3.36,26.8
Malawi,108,3,160,64.1,690,94,88,13571,2.6,18,20.8,16,5,47,,5.7,57,14,21,54,3,65.4,23,23.9,36.5,70.1,41.7,86,83,87,87,87,42,73,0,3,,,,43.2,72.1,18,11,,,,26,46,7264,707,,266,6,,30.5,51,15,70,20,,,27.9,16,,29.5,0,12.3,83.4,84.6,42.8,46.6,53,83.8,40.6,38,30.8,1.9,1.8,1.6,93.9,88.3,72.1,67.4,77.6,86.8,21.8,20.9,9.2,1.3,1.3,1.1,95,72,48,86,111,181,183,2.1,1.6,1.4,164,116,533,514,554,150,430,105,835,18.1,14,1.7,14.1,0.3,21.7,7.6,22.6,605,21,90,35,35,35,377,76,72,80,50,51,49,1100,26,,12528,322,120,114,126,89,5,6,10.2,52.5,18.4,16,1.41,99,90,72,76,96,62,60,51,2.4,,35,47,18.4,17.9,19.1,15,6.2,23.7,144.7,48.79,32.92,,43.32,5.78E+08,391,193,6.27,1000000,2000000,0.7,53.6,7.4,10.5,272,391,404,0,0.08,0.13,1.96E+09,3.3,222135,25,37.4,46.6,1405,1766,100.3,157261,50614,106647,5.59,,,,,2.4,2.2,2.6,2.4,87,70,92,74,198,41.7,115,12,6,,,,,13.53,28.59,,21.35,,3.18E+09,113.13,49.82,4.02,0.11,0,34020,23.44,12.28,19,3.5,8.7,16.6,71.3,12.2,7.48,,,37.05,,62,73,0.36,691,7,20.5,39,79,149,64,73,15.11,0.4,47.48,54,74.93,64.13,70.7,82.09,76.01,4.7,0.7,4.8,0.7,18,180,18,183,2.4,0.4,2.5,0.4,14,62,14,64,14.8,28.4,18.4,8.07,1800,,,82,0.02,58.07,0.54,,,,,,,81.81,,,15156,44050,,,,,,,640.38,177315,2,995,899632,0.2,19710,2.54,,1.27E+07,65.3,,56.17,,,60,57,8.5,10.2,200,243,1.17,98.87,86.12,45.02,0.78,46.57,2,0.8,2.1,0.8,27,58,29,61,24.66,118480,,992.94,1.99E+09,5.2,-3.23E+08,135.7,133.6,135.7,2274887.8,5.02,17.2
Malaysia,109,6,12,88.7,12160,100,100,26114,1.8,68,,25,7,31,90,2.7,,,16,100,,,,,,,,89,90,96,87,89,80,70,9,30,,,,0,45.2,7,19,,,2160,,,43380,,2880,17020,18,,73.3,226,115,500,255,1,7,54.8,14.8,,2.5,0.8,4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,155,109,197,139,274,50,625,5.4,1.4,7.7,0.1,0.9,61.8,18.7,4,16,14,3,63,65,62,103,10,9,11,72,74,69,62,5,,391,125,12,11,13,26,16,58,,,,10,1.06,2,1,96,99,100,93,94,95,18.8,10.1,,,25.8,11.5,40,28.8,2.8,54.4,13.55,23.95,8.35,,1.07,2.76E+07,104,60,1.56,8000000,1.60E+07,1.6,98,13.5,30.8,1292,2974,507100,1.98,10.01,0.62,7.02E+10,75.2,1.46E+07,,8.4,15.7,766,1492,55.63,26142,15079,11063,2.6,6.28,0.26,,,12.5,10.1,19.3,15.7,852,966,1329,1509,109,54.5,18,4,3,3261.61,96.23,4017.22,2388.77,14.54,21.09,71.05,117.64,78.65,5.20E+10,39.86,35.81,93.21,2.9,2.17,208900,20.27,0.46,222,2.32,1.88,7,44.8,4.2,54.71,1.31,0.05,100,,95,99,3.28,11466,4.37,49.73,49.15,10,46,33,70,4.36,42.4,73.94,85.35,91.97,88.69,97.27,97.21,97.24,10.4,2.9,11,3.1,248,839,263,888,27.9,10.1,30,10.9,844,2099,914,2262,,,,132.58,41,,485.33,90,0.7,186.99,2.27,,,59.95,2502.7,2.48,103.54,102.09,,,4525,32682,476.91,7.27,743.51,0.01,5.25,219.26,9153.32,6451,786,5752,68561,19.2,4900000,1.82,5.48,2.40E+07,,,95.07,55.55,2.32,91,91,5.5,8.7,375,597,0.53,104.86,100.06,81.32,5.97,41.92,11.4,5.3,13.2,6.2,452,860,535,1007,112.33,329740,17.58,239834.45,1.12E+11,135.55,3.08E+10,12.4,6.1,12.4,1.73E+07,3.46,67.3
Maldives,110,7,8,96.3,4740,97,97,300,1.7,30,,22,6,33,73,2.6,91,,,84,,,,,,,39,94,97,98,98,,87,86,,,28,,,0.3,84.1,14,23,5,919,14,,168,886,418,241,302,27,13,100,742,257,882,306,7,9,15.9,0,,2.9,30.4,10.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,103,90,115,123,484,70,864,20.3,0.7,2.5,0.6,0.1,45.1,13.1,17.5,,4,0,58,57,59,45,26,23,29,72,73,72,120,24,,,54,30,27,34,55,9,36,3.9,31.9,25.7,22,,,,76,83,98,42,59,100,,,,,5.9,3.4,8.5,28.2,11.6,44.5,24.44,46.67,,,210.33,7.70E+07,49,41,,,0,2.1,84,,,,,3260,1.1,2.05,0.58,3.61E+09,87.9,113246,18,,,,,60.86,912,388,524,2.63,,,,,,,,,,,,,,39,3,7,,,,,,23.77,,,94.78,,3.68E+08,50.72,38.91,79.37,1.27,0,10,36.1,0.01,316,1.79,10.61,17.7,85.6,12.4,0,,,83.3,,100,83,-7.5,4017,,,,28,22,22,86,4.9,5.8,67.74,96.44,96.21,96.33,98.3,98.03,98.17,,,,,,,,,,,,,,,,,,,25.7,,110,,,97,0.92,120.96,,,,,,,,106.78,,,8,148,,,,,,,4509.63,,,,17,11,36000,1.61,,349106,,,138.16,,,98,102,,,,,,101.77,100.27,,,,,,,,,,,,76.71,300,17.95,714.48,7.98E+08,50.59,-3.84E+08,39,34.1,39,87407.91,3.04,29.6
Mali,111,3,192,24,1000,54,67,11968,3,31,36.1,16,5,48,47,6.6,30,,43,41,1,40.8,,,20.7,65.7,8.1,89,68,68,68,44,26,75,2,5,,,,18.3,51.7,12.2,3,,68,84,231,264,8338,377,351,1053,6,,99.5,34,16,65,30,,,48.3,0.5,0.1,7.8,,6,90.8,88.7,34.4,22,26.6,80.8,56.4,66.7,54.2,2.6,4,3,78.7,76.5,44.9,39.7,41.3,70.8,33.8,36.8,29.5,1.8,1.9,1.7,157.3,99.7,68.6,89.6,148.1,246.9,247.8,2.8,1.7,1.4,253.2,184.6,427,393,472,166,456,145,909,18.3,1.6,1.4,16.9,6.1,25.9,5.9,23.9,81,63,7,38,38,37,280,119,109,129,46,48,45,970,54,0,1572,578,217,206,228,86,6,8,3.1,42.7,30.1,23,0.5,100,99,48,60,86,39,45,59,3.7,,14,30,25.5,7.4,42.6,11.2,2.8,19.5,186.94,32.35,36.58,,59.54,6.99E+08,281,40,10.91,,1.30E+07,2.2,40.6,13.1,18.2,499,694,0,,0.05,0.05,2.92E+11,7.7,400000,4,28.5,35.2,1076,1336,105.49,797195,470108,327087,6.52,,,,,4.7,4.3,5.1,4.7,156,159,168,171,112,8.1,70,7,6,,,,,24.46,36.39,265,25.62,,3.03E+09,59.33,47.52,8.14,3,-0.02,125720,22.65,1.5,28,2.87,2.93,12,50.6,5.8,4.01,,,37.31,,59,50,2.98,1027,6.15,24.16,40.1,120,125,30,75,2.45,0.5,53.8,15.9,32.7,24,16.86,32.25,24.19,29.3,13.2,29.7,13.4,493,973,500,988,2.8,0.1,2.8,0.1,5,81,5,82,8.4,37.6,30.1,,1200,,,86,0.08,51.97,2.26,,,,,,,102.99,,,8113,67740,,,,,,,1060.78,,,,97146,0.4,42000,3.03,11.79,1.14E+07,63.8,,44.11,,,58,30,6.1,7.2,174,204,1.22,72.73,52.28,18,2.74,39.26,16.1,18.3,17.2,19.5,670,475,707,504,30.14,1240190,15.66,564.26,3.29E+09,28.25,-4.58E+08,204.74,191.3,204.74,3541382.5,4.75,30.5
Malta,112,1,17,87.9,20990,91,92,405,0.5,96,,38,19,17,90,1.4,,,,100,25,,,,,,,,79,74,82,72,36,100,,,,5,,0,77.7,14.7,76,,,190,,,2411,,790,1564,60,,89.3,1419,1006,1825,1295,20,39,22.3,8.1,,1.5,0,8.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62,47,75,124,214,24,429,0,0,6,0,0,66.7,27.4,0,50,1,0,71,73,70,6,5,4,6,79,81,77,8,3,,500,5,6,5,7,8,9,83,,,,6,6.02,,,100,100,100,,,100,21.3,25,,,,,,28.7,24.5,32.8,13.93,31.25,3.17,,29.24,6190000,6,5,50.5,1.00E+07,1.80E+07,1.6,98,18.86,76.1,94,231,44672,11.07,6.4,0.31,8.71E+07,80.8,289992,3,3.63,4.8,6,14,44.17,2380,604,1776,1.37,,,,,18.36,11.22,27.1,22.5,46,46,78,77,113,,1,,,4916.98,,,2351.92,13.88,19.52,28.62,77.61,103.39,,,33.68,130.38,11.16,-0.41,,20.1,0.08,1235,1.9,6.5,14.6,77.4,8.4,52.12,,,82.95,121,100,100,1.94,20410,,34.86,,5,3,1,100,3.07,31.7,79.23,89.24,86.43,87.87,97.81,94.37,96.03,2.56,1.9,3.3,1,4,11,2,10,41.35,4.53,41.1,6.1,22,107,21,116,,,,69.34,21,,,86,3.18,99.39,0.69,,,,,,,85.37,,,3,20,,,,,,,14360.87,202,125,593,191,31.5,126000,0.55,,398534,,,96.37,,,100,100,9.99,38.2,45,110,0.87,99.18,103.65,87.53,,61.96,9.18,5.38,14.3,5,17,31,19,40,131.51,320,26.39,2550.14,3.88E+09,,-6.57E+08,6.1,6,6.1,384535.5,0.95,95.3
Marshall Islands,113,6,,,8040,66,67,58,2.2,66,,,6,32,,3.9,,,,95,,,,,,,,,94,93,93,83,79,87,,,,,,73.1,97.1,15.1,,,,4,,,152,,2,24,30,,100,589,289,607,298,,5,2.9,0,,6.3,13.7,15.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,290,264,314,125,526,62,997,14.1,0.3,3.1,0,0.5,37.1,31.4,13.5,,28,,55,56,54,220,50,44,56,63,64,61,,24,,,241,56,50,62,31,10,59,,,,12,,,,96,88,83,57,81,93,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Mauritania,114,3,88,51.2,1970,82,78,3044,2.7,41,25.9,20,5,40,55,4.5,16,,8,53,3,,2.1,33.4,,,8,60,67,75,74,,34,55,2,4,1,,,17.8,68.6,5.3,4,,429,64,,106,1893,477,81,313,6,2,100,31,13,45,19,,1,31.4,0,0.3,5.8,0,2.2,91.6,92.8,40.4,14.7,28.9,85.8,51.2,78.1,56.9,2.3,6.3,3,79.8,86.2,55.4,42,53,74.3,24.4,44.2,21.3,1.4,2.1,1.4,25,19.6,-14.5,85.5,78.5,110.5,98.1,1.3,1.2,0.9,96.2,110.7,288,243,335,158,451,138,884,16.2,0.3,1.9,12.2,1.7,39.4,5.9,22.3,50,67,4,45,46,43,316,78,68,87,58,60,55,820,40,0,629,606,125,115,134,79,9,12,3.8,39.5,30.4,,0.01,84,35,54,60,70,10,24,44,16.7,,,,30.7,29.5,31.5,13.1,3.7,22.3,90.88,38.58,23.67,,64.17,1.96E+08,310,73,425,,1.50E+07,2,56.9,19.8,28.1,185,266,164,0.01,0.53,0.54,2.21E+11,24.3,522400,,23.8,29.3,209,259,78.34,102432,45242,57190,4.37,,,,,4.7,3.3,5.1,3.5,29,39,32,42,142,8,72,7,-5,,,,,9.99,25.06,40.58,35.9,,2.32E+09,121.8,40.35,26.55,6.26,,2670,44.81,0.82,17,0.99,1.71,5,63.2,2.7,,,,95.71,,49,53,2.41,1691,6.17,29.28,39.02,78,139,39,55,17.97,0.7,63.68,43.42,59.54,51.21,55.48,67.73,61.34,15.1,5.5,15.3,5.6,50,126,51,127,2.4,0.6,2.4,0.6,5,17,6,18,2.1,33.4,30.4,97.19,1000,,,61,0.11,103.83,3.77,,,,,,,158.13,,,2122,18171,,,,,,,1131.4,,,,13005,1.4,42000,2.77,,3086859,46.3,,46.01,,,45,41,16,19.3,96,117,0.97,102.79,81.92,11.3,4.28,47.05,3.2,3.4,3.4,3.6,27,23,28,25,109.59,1030700,,1630.48,1.32E+09,17.84,-7.86E+07,120,98.8,120,1197094.4,2.97,40.4
Mauritius,115,3,36,84.3,10640,96,94,1252,0.8,42,,31,10,24,90,1.9,,,12,99,,,,,,,75.9,86,98,97,97,96,67,86,16,13,2,2,2,1,50.4,9.2,30,3,236,233,238,324,4604,145,1428,1303,37,1,81.5,292,112,581,223,12,11,49.6,10.1,0.2,3.5,,4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,161,108,212,79,434,42,701,1.2,0,5.2,0,0,66,23.6,3.9,10,3,0,62,65,60,23,12,11,14,73,76,69,15,9,,437,40,15,13,16,11,13,75,,,,13,3.03,2,0,100,100,100,94,94,95,,,,,,,,18.5,1.1,35.7,40.01,55.67,6.09,,25.73,3.42E+07,23,10,21.79,,1000000,4.9,99.2,12.54,31.6,57,196,3146,0.25,2.77,0.27,2.93E+10,52.8,510000,17,2.63,18.2,61,111,44.94,6098,2546,3552,1.86,,,,,6.34,4.47,12.1,7.8,23,28,47,60,128,75.9,3,5,10,,,,,11.79,19.74,36.88,56.54,90.08,2.15E+09,34.26,35.66,81.59,0.62,0.75,370,23.26,1.24,218,2.09,2.21,9.2,51.5,4.3,1.57,,,60.9,98,95,100,3.74,10155,,28.19,,13,10,9,86,4.76,24.1,72.59,80.5,88.23,84.3,95.36,93.72,94.54,0.86,0.36,3,1.4,14,21,9,16,15.87,4.95,15.8,5.1,25,76,30,74,,,,41.61,24,,,98,1.06,83.68,0.2,,,,,,,109.29,,,43,483,,,,,,,12748.69,15,3,96,9359,16.2,200000,0.8,,1230602,,,97.22,,,96,99,12.12,15.4,34,70,0.74,99.56,101.75,100,4.5,65.72,8.82,4.97,14,6.7,31,48,41,68,117.81,2040,18.14,3407.52,5.47E+09,63.71,-3.77E+08,15.2,13.9,15.2,527139.25,0.66,42.4
Mexico,116,4,94,91.6,11990,97,98,105342,1,76,3,26,9,30,,2.3,,,54,94,,,,,,,70.9,87,96,98,98,98,118,77,21,64,,8,,0,43.3,11,10,5,,78281,,45482,88678,236861,3189,195897,9,24,92.5,327,217,756,500,,20,56.7,7.5,0.6,0.5,70.3,6.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,122,89,155,88,163,58,503,5.1,0.1,7,0,0,52.5,26.8,8.5,6,2,0,65,68,63,21,29,26,32,74,77,72,60,11,,244,25,35,32,38,27,19,54,7.6,15.5,3.4,9,4.57,45,4,85,95,98,48,81,91,28.1,18.6,,,28.6,28.5,27.8,24.7,12.4,36.9,66.88,55.3,3.83,,1.8,1.89E+08,23,18,19.12,,2.50E+07,2,83.3,8.97,26.4,4310,11064,1922352,1.86,3.97,0.38,3.64E+11,44,3.85E+07,,10.01,29.5,5777,12516,57.7,67733,52374,15359,2.21,9.05,0.09,5.16,0.05,3.57,3.1,7.9,7,1615,1564,2814,2790,127,73.7,2,9,8,1898.61,233.08,2194.65,1712.44,14.94,15.68,41.34,29.98,,1.68E+11,22.26,35.17,64.66,2.59,0.84,642380,21.81,0.3,474,3.49,2.91,12.5,45.5,6.4,19.55,6.25,0.06,31.53,,91,97,1.92,11317,4.31,26,46.05,30,10,12,77,5.5,16.9,75.87,90.21,93.19,91.63,97.63,97.64,97.64,5.7,5.49,5,4.9,2719,2361,1928,1672,12.5,4.96,17,6.7,2567,5477,2633,5622,,,3.4,31.15,83,,,96,1.5,58.15,0.42,46.19,434.88,38.88,366.05,0.41,3.84,103.6,2.46,0.02,2245,28160,1973.95,6.79,3759.66,0.01,13.67,128.72,7490.03,94743,6616,31894,195048,10.7,1.12E+07,1.01,35,1.06E+08,17.6,,102.83,147,1.38,98,100,11.37,29.9,4795,9635,0.74,98.94,99.98,36.98,13.79,70.17,7.39,5.3,13.1,9.5,2854,3370,3785,4502,131.51,1964380,11.66,421517.56,6.35E+11,44.13,-1.29E+10,36.19,22.8,36.19,7.83E+07,1.36,76
Micronesia (Federated States of),117,6,44,,6070,,,111,0.5,22,,20,5,38,,3.9,,,,88,,,,,,,,,92,79,90,79,82,50,,,,,,61,90.5,18.9,33,,,10,,,250,,20,60,23,,45.2,444,241,491,266,2,6,9.5,0,,4.2,22.1,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,179,162,194,93,410,39,782,8,0.3,2.7,0,1.5,49.2,26.9,11.3,,12,,58,58,57,101,33,33,33,69,70,67,,11,,,109,41,41,41,40,9,51,,,,18,1.23,,,94,94,95,14,25,61,,,,,46.2,39.8,51.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Moldova,118,2,29,99,2660,88,88,3833,-1.1,47,2,33,15,19,90,1.4,89,,,100,9,,,,59.7,60.4,67.8,,96,92,95,,69,62,,,,4,,5.7,56.4,11.8,63,,,1521,,,26029,,2834,11153,62,,96.6,107,38,190,68,7,27,43.6,0.5,,2.3,76.9,7.8,99.8,99.7,99.3,99.2,99.4,99.6,0.5,0.5,0.2,1,1,1,91.4,91,90.2,90.8,92.1,88.1,1.2,0.2,-4,1,1,1,11,12,9.4,20,17,31,29,1.6,1.7,1.5,29.6,20.2,237,151,325,116,619,97,923,2,0,13.3,0,0,46.1,23.1,15.5,33,19,0,60,62,57,141,16,13,20,68,72,64,22,12,,815,154,19,15,23,11,18,71,9.1,11.3,3.2,5,13.18,,,85,90,96,73,79,85,18.2,,44,63,16,7.9,25.3,26,5.8,45.8,33.91,76.6,19.48,,47.34,1.91E+08,140,133,231,4000000,6000000,2.3,99.5,15.29,49.6,496,1360,10395,0.27,1.81,0.97,1.85E+09,25.9,787000,,5.86,18,220,476,45.07,23607,11569,12038,1.4,,,,,14.93,8.76,26.5,18.6,320,343,556,567,164,67.8,19,4,8,1427.78,,,917.28,,,,51.14,,2.05E+09,61.34,47.73,52.09,6.61,-0.01,3290,30.83,0.24,58,3.34,4.16,11.3,55.5,7.5,3.85,,,91.67,,86,92,7.41,2362,7.81,16.34,33.22,17,63,44,62,9.34,13.1,68.63,98.61,99.58,99.06,99.7,99.7,99.7,9.48,3.62,11.3,3.8,91,181,110,244,28.48,5.05,39.4,6.9,178,708,201,840,,,3.2,22.09,36,,,97,2.64,113.23,0.34,,,,,,,,,,725,5912,,,,,,,3058.01,89636,230,842,5688,2.6,112200,-1.24,,4455421,48.5,,92.11,,,91,92,4.24,10.6,100,224,0.45,101.72,100,86.25,1.35,64.19,13.77,6.2,20.9,8.9,215,379,262,447,82.19,33840,18.49,8053.47,1.81E+09,29.1,-1.21E+09,20.6,17.6,20.6,1810400.6,-0.99,46.7
Monaco,119,2,,,,,,33,0.3,100,,,21,18,90,1.8,,,,,,,,,,,,,99,99,99,99,,,,,,11,,0,74.2,15.6,,,,34,,,464,,61,186,145,,84.2,5309,4706,7154,6343,19,58,25.8,15.8,,2.5,98.4,4.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,86,54,117,120,115,41,325,,,,,,,,,,0,,73,75,71,2,3,2,4,82,85,78,,2,,,2,4,3,5,7,16,77,,,,,,,,,,100,,,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Mongolia,120,6,28,97.8,2810,93,90,2605,0.9,57,10.8,25,6,28,90,1.9,,,,99,5,,,,,,69,,98,95,98,78,97,88,,,,1,,2,83.6,11,64,,,337,85,,8826,7147,1093,6732,35,28,84,124,44,149,53,4,26,16.4,0,,1.3,26.8,5.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,255,182,325,306,488,96,968,14.5,0.3,4.4,1,0.3,34.1,28.3,17.1,10,15,0,56,58,53,188,35,31,38,66,70,62,46,18,,100,191,42,38,46,37,16,47,6.1,23.5,4.8,8,2.83,,,48,72,90,31,50,64,12.5,7.2,,,14.9,10.3,20.7,26.3,6.5,45.8,46.78,83.28,24.65,,72.02,2.21E+08,190,178,1.26,,,1.9,99.2,3.5,6.6,31,64,1800,0.07,3.15,1.38,,21.1,319000,4,10.2,18,92,171,48.84,22382,8862,13520,1.87,,,,,5,2.5,4.4,3.4,20,34,27,32,138,66,22,3,10,,,,,14.04,13.01,22.38,64.31,,1.33E+09,58.82,40.15,27.93,8,0,102520,36.97,0.03,35,0.97,3.33,11,77.5,4.3,0.09,,,68.22,,75,62,4.6,2643,7.47,34.4,32.8,36,85,72,88,20.42,10.1,66.36,97.53,98.02,97.77,98.43,97,97.71,93.3,47.3,98.9,57.3,369,646,442,687,27.6,13,31.8,11.3,102,180,89,209,,,4.8,1.98,110,,,99,2.63,97.54,1.29,,,,,,,127.73,,,556,5229,,,,,,,1198.08,89985,163,163,477,11.9,312000,1.55,,2791272,36.1,,93.37,,,95,96,1.7,3.7,14,33,0.88,108.28,101.48,3.5,16.05,40.95,33.4,19.4,39.2,23.3,162,241,194,290,32.88,1566500,19.87,8789.94,1.25E+09,32.44,-9.08E+07,50.9,39.7,50.9,1448118,1.59,56.7
Montenegro,121,2,16,,8930,,,601,-1.1,61,,35,18,19,90,1.8,,,,99,,,,,,,,,90,92,90,89,,,,,,4,,1.5,79.5,20.1,41,,,263,,,3436,,111,1233,57,,100,93,243,117,306,2,20,20.5,,,2.8,96.9,6.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,134,94,175,,,,,,,,,,,,,,4,,,,,32,9,9,9,74,76,72,,,,,49,10,9,11,,,,15.6,7.9,2.2,,,,,96,98,100,86,91,96,,,,,6.8,6.2,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Morocco,122,1,35,52.3,3860,85,91,30853,1.2,59,,25,8,30,85,2.4,31,,29,63,5,25.5,,,37.8,54,63,85,95,95,95,90,95,81,2,4,,1,,1,35.9,5.5,9,,,3091,737,1470,24328,1123,7366,15991,8,,76,98,34,273,95,2,5,64.1,24,0.2,1.5,0,5.1,94.4,95.4,48.8,29.5,39.5,85.3,45.6,65.9,45.8,1.9,3.2,2.2,96.3,97.6,87.6,83.1,85.9,94.2,8.7,14.5,8.3,1.1,1.2,1.1,35.6,52,31.3,27.1,26,62.7,78,2.3,3,1.8,69.4,38.1,119,90,147,67,411,48,675,12.2,0.3,4,0.4,0.2,44.7,24.1,14,4,8,0,60,61,59,93,34,29,40,72,74,70,240,24,,88,79,37,33,41,44,12,44,13.3,23.1,9.9,11,0.45,13,0,58,83,100,54,72,85,11,8.2,,,11,8.2,12.5,15,0.3,29.5,19.45,68.1,13.34,,19.61,6.94E+08,95,86,43.45,,9.60E+07,2.5,62.6,16,22.5,2003,2848,249138,0.83,1.47,0.39,3.49E+10,40.9,9336878,3,10.7,13.2,1247,1550,55.06,463527,279186,184341,2.38,,,,,5.3,5.1,5.8,5.5,608,577,654,617,107,63,8,12,-6,643.54,,,458.25,22.93,39.65,93.18,31.64,129.04,1.67E+10,28.57,25.46,45.56,2.63,0.13,43640,30.26,0.1,89,3.36,1.94,5.5,36.6,5.3,9.63,,,37.78,129,88,81,0.55,3547,6.5,29.03,39.5,36,43,42,81,2.06,15.2,70.78,39.62,65.71,52.31,60.49,80.8,70.46,1.3,1.1,1.3,1.1,114,120,117,121,19.6,1.9,20.1,2,209,1797,214,1847,,,9.9,46.17,220,343,,97,0.51,54.24,3.92,,,,,,,87.39,,,2409,24354,,,,,,,3075.71,89300,327,6331,18323,2.1,620000,1.01,15.87,3.27E+07,19,,80.3,,,79,72,5.5,6.4,472,548,1.22,87.35,74.86,61.89,4.68,57.63,5.5,2.9,5.8,3.1,345,548,363,579,98.63,446550,21.65,48005.73,4.09E+10,99.36,-3.95E+09,42.8,41.9,42.8,1.77E+07,2.25,58.7
Mozambique,123,3,185,38.7,660,73,79,20971,2.1,35,36.2,18,5,44,,5.2,53,13,12,48,2,49.8,,15,55.4,70.5,16.5,82,77,72,72,,47,79,,,,,,56.8,69.4,12.6,8,,,159,564,941,6183,1659,618,514,3,,39.7,39,12,56,17,,,30.6,0.6,0.9,10.7,0,4.7,94.8,88.6,31.4,24.8,34.1,80.7,63.4,63.8,46.6,3,3.6,2.4,99.1,96.4,65.6,60.8,70.8,90.8,33.5,35.6,20,1.5,1.6,1.3,114.8,88,48.8,85.7,108,200.5,196,2.3,1.8,1.3,192,143.2,477,453,505,124,371,66,720,16.5,12.9,1,18.9,0.3,29,0.1,21.2,707,63,54,37,38,36,443,96,93,99,50,51,49,520,35,,14429,624,138,137,140,91,2,7,6.3,47,21.2,14,0.52,,,26,42,71,19,31,53,3.9,,29,33,8.2,7.2,9.1,12.8,3.4,22,160.07,61.84,26.93,,62.54,1.28E+09,449,162,0.63,,1000000,3.05,47.7,2.8,3.9,170,236,0,,0.1,0.17,1.71E+13,7.6,708000,10,27.2,33.6,1654,2058,90.19,902738,522763,379975,5.11,,,,,1.1,1.2,1.2,1.3,69,50,75,55,174,16.5,120,3,6,450.16,,,497.11,14.99,94.8,361.21,32.89,,4.64E+09,76.07,53.45,7.66,1.64,,192620,18.69,12.16,14,1.57,2.73,12.6,63.6,4.3,7.51,,,42.3,,53,43,5.7,743,5.42,25.31,47.29,100,189,87,79,8.78,0.9,42.57,24.96,54.82,38.71,36.55,59.45,46.97,78.4,41.8,79.4,42.4,2439,3759,2476,3810,1.7,1.2,1.8,1.3,70,80,71,83,,14.9,21.2,,1000,,,77,0.03,63.13,9.47E-04,,,,,,,111.59,,,24567,132347,,,,,,,1872.4,176319,,,1349026,0.6,112000,2.24,6.43,1.94E+07,54.1,,41.67,,,35,23,2.2,2.6,90,107,1.15,83.02,61.48,18.7,2.62,47.76,0.8,1.3,0.9,1.3,68,38,74,39,19.18,799380,,1879.63,5.70E+09,23.78,-8.04E+08,177.1,171.6,177.1,7083773,4.47,34.5
Myanmar,124,6,29,89.9,510,100,99,48379,0.9,31,,27,8,27,65,2.1,66,,7,57,,,,,,,37,91,81,86,85,,109,85,1,1,10,,,13.9,16.8,1.8,7,,49531,1396,1757,2241,49341,7315,127,17791,10,2,99.4,7,1,43,4,,4,83.2,0,0.4,2.7,1.6,2.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,276,225,327,115,432,105,796,21.1,0.9,2,9,2.4,39.1,6.2,19.3,73,12,0,52,53,50,171,74,64,83,60,63,57,380,49,14,982,169,104,91,114,60,11,29,2.4,40.6,29.6,15,0.33,100,88,80,80,80,81,82,85,,,,,15.3,8.2,22.5,30.2,13.6,46.5,17.42,17.14,57.23,,2.85,1.45E+08,171,223,3.77,,2.50E+07,1.1,67.5,8.9,20.2,1800,4117,243,5.07E-04,0.24,0.25,3.09E+10,0.3,92007,10,13.1,24.6,2594,5017,48.92,43847,0,43847,2.07,,,,,3.3,2.1,5.2,3.4,427,567,673,895,297,34.3,13,3,-8,81.64,,,306.98,2.66,2.87,28.62,0.42,,6.65E+09,,44.96,1.32,,,322220,15,0.76,4,1.94,0.26,1.2,11.6,2.2,0.05,,,1.05,,88,78,3.93,831,,9.69,,75,76,76,85,17.64,0.1,61.53,86.37,93.86,89.89,93.42,95.7,94.52,11.9,3.5,12.7,3.7,690,2213,735,2360,25.5,11.8,27.6,12.7,2178,4280,2362,4642,,,29.6,,360,,,72,0.36,,1.3,,,13,276.62,0.54,11.45,117.12,,,6082,80996,,,,,,,2016.33,,,,266536,0.6,325000,0.84,8.56,4.70E+07,,,91.16,,,77,79,1.2,2,190,304,0.66,101.01,97.62,11.44,0.35,33.07,9.9,6.6,11.7,7.8,1239,1655,1480,1978,35.62,676580,4.66,11314.43,,13.38,7.23E+08,106,98.8,106,1.47E+07,2.56,30.6
Namibia,125,3,88,85,4770,79,74,2047,1.3,36,,20,5,38,71,3.3,69,65,68,76,,,,14.4,,,43.7,82,69,86,,,83,75,6,13,,,1,21.9,64.4,10.1,33,2,,113,240,481,6145,597,288,598,31,3,15.2,218,108,338,167,1,3,35.6,79.5,0.9,10.2,2.2,4.9,89.1,97.1,46.8,55.4,66.3,93.1,42.3,41.7,26.8,1.9,1.8,1.4,83.3,85.7,69.5,76.2,78.4,84.3,13.8,9.5,5.9,1.2,1.1,1.1,36.5,24,16.6,47.1,31.4,83.6,55.4,1.8,1.8,1.3,66.1,49.5,336,311,367,146,385,93,754,2.5,53,3,0,0.1,38.5,0,3,837,54,41,43,44,43,767,45,39,51,61,63,59,210,20,0,17676,658,61,54,67,83,6,10,3.3,29.5,20.3,14,5.97,84,24,90,93,99,18,35,66,,,48,69,25.8,22.9,28.6,24.9,10.9,38.6,63.55,47.15,12.08,,60.17,1.15E+08,777,739,4.84,,1.30E+07,1.2,75.5,18.8,24.7,110,147,0,,1.26,0.28,5.81E+09,24.4,286095,7,18.1,22.2,109,133,74.09,89060,39899,49161,3.19,,,,,4,2.9,4.3,3.2,19,20,19,22,,43.7,98,,6,1427.95,,,682.78,20.04,19.91,106.55,47.62,,,,43.63,31.39,,-0.2,76610,27.69,15.27,165,1.84,3.46,10.1,65.2,5.3,11.9,,,51.14,,50,87,2.38,4547,1.4,28.11,74.33,46,321,259,75,3.68,4,52.55,83.49,86.77,85.04,93.48,91.15,92.34,3.1,1.7,3.1,1.8,9,15,9,16,5.9,2.2,6.1,2.2,12,26,12,27,3.4,14.4,20.3,6.66,300,,,73,0.3,76.08,3.01,,,,,,,103.89,,,1987,13693,,,,,,,4110.09,133,102,1151,181699,10.9,220000,1.29,,2030692,,,77.85,,,76,85,18.2,21.6,78,92,0.87,103.43,102.55,12.8,0.28,59.8,2.5,1.6,2.6,1.7,10,12,10,13,84.93,824290,25.88,2553.81,4.26E+09,,-2.12E+08,86.2,47.4,86.2,708906.6,2.84,35.1
Nauru,126,6,,,,,,10,0.2,100,,,6,32,90,3.1,,,,100,,,,,,,,,99,99,99,,42,67,,,,,,0,55.3,25,59,,,1,,,63,,10,10,49,,65.5,444,335,803,605,8,8,44.7,0,,6.3,0,10.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,381,303,448,138,666,132,1137,37.8,0,19.4,0,5.5,7,0.1,30.3,,15,,55,57,53,106,25,28,23,61,64,59,,14,,,134,30,32,28,19,13,68,,,,,0.87,,,,,,,,,60.5,55.7,,,,,,49.2,52.4,46.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2500,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Nepal,127,7,106,48.6,1010,74,84,27641,2,16,24.1,20,6,38,35,3.4,29,,3,19,3,,,,34.3,40.7,48,83,81,82,82,,64,88,2,3,6,,,15.7,30.5,9.2,2,1,16206,359,172,3209,11825,1892,358,5384,5,,85.2,24,5,78,17,,2,69.5,0.4,,2.2,0,5.7,52.7,57.8,11.3,4.8,18.8,51.7,41.4,53,32.9,4.7,12,2.8,98.6,94.5,77.6,73.2,84.5,88.9,21,21.3,4.4,1.3,1.3,1.1,60.4,51,36.4,32.4,47,92.8,98,2.9,2.1,1.8,83.5,47.1,286,280,292,118,436,108,796,20.5,0.2,2.3,0.8,2.7,43.5,11.5,18.5,19,22,1,52,51,52,176,46,46,46,62,63,62,830,32,2,447,244,59,59,60,64,11,25,0.6,49.3,38.8,21,0.19,90,27,88,89,94,24,27,45,0.9,,,,9.4,5.3,13,30.6,26.4,34.8,117.61,29.52,35.67,,15.72,4.25E+08,180,123,5.14,,4000000,0.5,18.7,9.6,21.8,799,1835,0,,0.11,0.12,,0.8,179126,6,14.1,26.4,1129,2185,74.27,702093,435567,266526,3.28,,,,,3,2.1,4.7,3.4,169,231,273,366,123,48,23,8,-6,69.54,,,338.46,12.41,10.46,71.13,14.58,,3.20E+09,38.98,40.5,2.63,0.03,0,36360,26.45,0.49,16,4.17,1.63,8.4,28.1,5.8,0.12,,,29.48,,62,90,0.66,1081,6.02,16.65,47.17,49,81,54,88,6.49,0.8,63.17,34.89,62.66,48.59,60.14,80.62,70.05,2.5,1.3,2.6,1.4,104,185,113,196,11,2.2,11.9,2.4,167,800,182,867,,,38.8,16.43,740,,,74,0.21,32.89,2.12,,,,,,,82.42,,,6259,66297,,,,,,,1044.24,8,1,31,65707,0.5,116199,2.01,,2.77E+07,30.9,,74.69,,,80,70,2.7,4.4,182,293,0.94,89.52,74.61,56.88,0.65,47.68,5.7,3,6.8,3.5,225,422,268,502,10.96,147180,9.18,3125.39,6.35E+09,48.95,-1.43E+09,66.3,65.6,66.3,4280797.5,5.1,15.8
Netherlands,128,2,7,,37940,97,99,16379,0.3,81,,39,20,18,90,1.7,,,,100,14,,,,,,,,96,96,,96,36,84,85,52,,5,,0,81.8,16.4,50,,,7994,,,239172,,2842,60519,146,,33,2768,3097,3383,3784,2,37,18.2,32.3,,3.9,95.1,9.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,70,59,81,155,171,23,443,0,0,5.2,0,0,63.1,30.6,1.1,10,1,0,71,73,70,8,4,4,5,80,82,78,6,3,,127,6,5,5,6,7,8,85,,,,,9.68,,,100,100,100,100,100,100,,,,,,,,34.3,30.3,38.3,4.95,56.7,2.18,4204,,,8,7,72.18,8.77E+08,1.21E+08,0.8,100,22.99,86.7,3767,10447,4100000,25.12,7.66,0.26,8.81E+10,97.2,1.48E+07,5,1.26,7.3,307,753,48.28,23134,15390,7744,1.72,8.69,0.53,,,17.05,11.66,40.9,30.8,2313,2329,4582,4940,113,75,1,,10,6987.75,100.42,6120.62,5015.3,17.9,23.97,40.62,69.93,133.08,,,44.18,143.59,7.51,21.3,3650,19.34,0.17,3560,3.23,5.97,13.2,64.9,9.2,30.12,,,62.22,133,100,100,0.9,34724,7.6,24.15,30.9,4,3,1,84,1.67,74,79.65,,,,,,,2.64,1.15,1.8,0.6,196,298,87,207,49.33,18.1,59.7,17.9,2161,7079,2335,7253,,,,94.29,16,536.67,,96,3.1,122.48,1.52,39.49,2407.11,62.88,3832.23,1.39,84.53,100.24,0.9,0.06,126,973,1070.48,23.83,,,,,22104.91,165981,27482,125038,16087,68.5,1.11E+07,0.23,13.77,1.64E+07,,,99.57,94.75,5.77,101,99,16.44,56.7,2529,7112,1.7,97.71,,90,2.86,73.67,7.29,3.41,12.4,5.2,669,1114,803,1498,142.47,41530,22.98,125759.47,4.03E+11,,5.32E+10,5.7,4.5,5.7,1.31E+07,1.09,80.2
Netherlands Antilles,129,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32.27,10,,,698.07,1.87E+07,8,3,,,,,,,,,,0,,17.69,,,78.84,175000,6,,,,,47.64,550,,,1.85,,,,,,,,,,,,,110,,1,,,5171.9,,,8889.87,,,,,,,,46.1,59.92,,,10,,,,,,,,,,,,,,,,,22700.41,,,,,3,3,,,0.9,75.08,72.04,72.11,72.07,73.55,73.45,73.5,,,,,,,,,,,,,,,,,,,,,7.5,,,,1.4,,,,,,,,,133.2,,,2,29,,,,,,,11996.46,,,,,,,1.16,,219958,,,61.76,,,56.4,64.2,,,,,,61.43,75.1,,,,,,,,,,,,120.55,800,,3891.17,,,-2.80E+08,,,,131219.97,1.47,70.4
New Caledonia,130,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26.92,13.62,3.67,,1491.74,4.59E+08,25,20,,,,3.85,,,,,,9600,4.09,12.19,,,56.6,101887.63,,,,,,50.93,,,,2.08,,,,,,,,,,,,,,,4,,,,,,,,,,13.08,,,,36.99,80.85,,,7170,31.4,,,,,,,,0.48,,,32.99,,,,0.42,31942.83,,19.61,,,11,7,94,-0.23,32.1,75.81,95.47,96.78,96.14,99.14,99.05,99.09,,,,,,,,,,,,,,,,,,,,,3.75,,,,1.98,21.36,,,,,,,,139.87,,,8,71,,,,,,,10322.68,,,,,,,1.9,,216494,,,,,,,,,,,,,,100.09,,,76.71,,,,,,,,,63.01,18580,,2638.08,2.68E+09,,,,,,149363.42,2.47,63.7
New Zealand,131,6,27,,25750,99,99,4140,1,86,,36,17,21,90,2,,,,95,,,,,,,,,79,88,88,78,61,60,63,77,14,4,,0,77.8,18.6,60,10,5259,1620,,3696,34538,42741,3920,8190,89,112,74.6,1905,1884,2447,2420,10,21,22.2,21.2,,4.2,0,9.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,75,59,91,139,175,37,423,0.2,0,11.4,0,0,48.3,37.4,2.7,,1,0,71,72,69,9,5,4,6,80,82,78,9,3,,100,9,6,6,7,5,17,79,,,,6,9.68,,,82,97,100,88,,,23.2,21.9,,,20.1,26.4,14.7,28.6,27.5,29.7,24.32,64.51,7.3,212,,,9,8,0.65,1000000,8000000,1.6,96.6,19.82,91.9,670,2330,331000,8.01,7.42,0.32,3.34E+10,87.6,3027000,7,2.22,10,82,228,50.64,2260,1313,947,1.99,2.24,0.56,3.23,0.8,21.11,14.39,53,42.2,581,605,1286,1358,113,74.9,1,,10,9656.02,42.62,10560.9,4090.33,19.34,22.46,25.22,27.77,138.27,,,46.56,127.22,1.54,-1.03,83090,24.77,0.04,2403,2.01,6.89,18,77.4,8.9,10.37,5.28,1.31,30.45,124,,97,0.97,24554,6.45,24.87,36.17,5,4,2,60,2.93,68.3,79.94,,,,,,,3.48,1.77,4.6,1.3,38,95,38,112,29.74,18.06,37.3,20.5,574,911,607,974,,,,39.55,7,493.33,,82,2.2,43.7,1,,,3.55,879.63,,,111.42,,,37,373,154.8,14.01,,,,,18095.91,93377,2549,,1120,49.3,1924000,1.13,27.78,4035461,,,92.91,17.8,4.41,101,99,18.15,100.9,560,2678,0.98,103.81,,64.89,8.12,67.83,6.55,3.05,10.3,4.5,128,204,138,261,164.38,267710,31.68,29945.87,6.27E+10,,-2.56E+09,6.7,6.1,6.7,3563421.8,1.24,86.2
Nicaragua,132,5,119,76.7,2720,90,90,5532,1.3,59,45.1,21,6,37,81,2.8,72,,26,67,15,65.3,,1.8,57.7,67.7,68.6,94,99,87,87,87,89,85,,,,,,9.3,54.7,16,9,,,243,,,5862,,,2045,11,,92.6,137,42,251,76,,4,45.3,1.9,,2.9,28,7.8,97.8,99.3,76.9,77.5,83.1,96.5,20.9,21.8,13.4,1.3,1.3,1.2,72.8,93.8,69.4,76.2,74.1,77.1,3.4,17.6,3,1,1.2,1,46.9,45.1,21.4,24.9,19.2,71.8,64.3,2.9,3.3,1.6,55.3,33.9,181,138,224,120,305,73,655,12.2,0.5,3,0.4,0,42.4,27.7,13.7,10,7,0,61,63,60,58,29,26,32,71,74,68,170,16,,215,74,36,33,39,46,17,36,7.1,25.2,7.8,12,2.48,93,40,63,79,90,34,48,57,18,,17,,25.1,20.5,30.4,,,,115.36,43.87,19.07,,135.31,7.40E+08,61,35,0.69,5000000,1000000,1.5,66.9,5.66,23.9,145,384,10534,0.19,0.72,0.29,7.17E+09,19.2,738624,11,13.52,47.2,354,809,71.96,55337,27001,28336,2.76,,,,,2.42,3.74,5.2,10.6,86,38,151,67,,68.6,9,5,8,414.09,,,610.52,9.33,3.63,,29.07,,5.14E+09,108.78,29.77,24.54,4.97,0,51890,29.62,0.21,75,4.18,4.12,13.7,49.6,8.3,5.17,,,58.77,,56,79,3.45,2611,5.6,29.94,43.11,30,27,23,85,9.41,2.4,72.38,76.6,76.76,76.68,88.82,83.63,86.22,6,6.47,6,7.7,151,108,108,78,5.52,2.32,12.2,5.5,74,138,76,141,,1.8,7.8,,230,,,96,0.37,71.11,0.7,,,,,,,81.4,,,482,4394,,,,,,,1621.5,50,136,343,6617,3.5,200000,1.27,21.33,5465100,47.9,,73.73,,,70,77,8.62,34,181,365,0.67,101.96,106.2,11.36,3.67,51,9.93,5.12,24.1,17.6,190,213,257,291,98.63,130000,16.8,3913.15,4.58E+09,14.15,-1.44E+09,38.2,29.7,38.2,3222898,1.88,59
Niger,133,3,199,28.7,630,37,50,13737,3.5,17,,16,5,48,32,7.3,15,,8,18,1,,7.4,33,47.2,52.9,11.2,72,47,39,,,49,74,,,,,,26.4,52.7,10.6,,,,15,268,294,2818,485,20,296,2,,85.2,14,5,27,10,,,47.3,11.7,0.1,11.5,,4,80.5,58.8,13.1,5,8.3,70.7,67.4,53.8,62.4,6.1,11.8,8.5,84.4,73.6,42.9,32.2,42,72.1,41.5,41.4,30.1,2,2.3,1.7,130,49,91.4,92.3,157,222.3,206,2.4,1.3,1.7,230.6,139.2,478,439,507,169,456,163,916,19.8,0.6,1.4,14.3,7.3,16.7,14.8,25.1,54,35,2,36,35,36,174,148,144,152,42,43,42,1800,41,10,998,314,253,249,257,87,6,7,3.5,54.8,39.9,17,0.05,98,95,32,42,91,3,7,27,3.2,,,,11.7,8,15.2,,,,205.98,30.39,39.86,,38.83,5.11E+08,170,59,62.29,,3000000,1.3,17.7,16.7,23.3,484,696,212,0,0.09,0.16,6.29E+10,2.3,148276,4,15.7,19.9,532,679,104.51,1231510,670466,561044,7.19,,,,,4.4,3.3,4.7,3.6,90,120,98,127,114,11.2,36,4,6,,,,,34.34,49.12,,14.92,,1.98E+09,58.29,41.96,2.62,1.28,0.27,12660,18.35,0.8,9,1.88,1.92,10.2,50.5,3.8,11.42,,,24.03,,43,46,1.07,613,2.58,16.76,50.54,150,76,38,74,8.65,0.2,56.27,15.08,42.93,28.67,23.2,52.45,36.55,16.3,8.5,16.6,8.6,248,437,253,445,4.6,0.4,4.7,0.4,10,87,11,89,5.8,48.1,39.9,,1600,,,83,0.03,38.02,1.11,,,,,,,127.16,,,4721,40935,,,,,,,514.71,,,,55139,0.1,9000,3.5,,1.22E+07,63,,29.61,,,30,20,9.2,10.8,149,176,1.14,69.92,44.23,20.61,1.69,43.38,2.2,3.1,2.3,3.3,72,45,76,48,16.44,1267000,,1058.9,2.20E+09,12.6,-3.22E+08,197.5,209.4,197.5,2228384,4.22,16.8
Nigeria,134,3,126,69,1410,59,68,144720,2.4,49,70.8,18,5,44,33,5.5,47,3,13,35,2,33.7,1.2,33.9,32.8,40.2,12.6,53,62,54,41,,20,75,,,9,,,5.9,30.1,3.5,5,,115761,2482,,690,210306,1220,6344,34923,17,,90.4,15,10,50,32,,3,69.9,6.7,,6.1,0,4.1,75,84.5,13.8,13,27.1,58.8,61.2,71.5,31.7,5.4,6.5,2.2,66.5,70.7,15.6,15.9,28.5,52.1,50.9,54.8,23.6,4.3,4.4,1.8,162.2,178,89.8,107.2,79,269.4,257,2.5,3.3,1.6,242.7,152.9,423,399,447,157,452,132,889,15.7,5,1.9,24.1,6.3,26.1,0.8,20.1,167,67,14,42,42,41,311,99,92,105,48,49,48,1100,47,278,3547,615,191,187,196,83,7,10,6.2,43,27.2,14,10.57,,,30,47,65,25,30,35,5.8,,24,46,18.1,11.2,22.6,7.1,1.2,13,136.66,81.25,23.35,,45.54,6.42E+09,315,44,3.62,6000000,7.20E+07,0.46,36.3,21.9,31.2,8454,12253,500,3.54E-04,0.89,0.57,1.30E+11,14.1,9147209,13,23.3,28.5,8030,9922,89.62,8096824,4547172,3549652,5.32,,,,,5.4,3.7,5.8,3.9,1406,1901,1485,2021,207,12.6,83,17,4,126.6,,,734.21,,,,53.34,,2.22E+10,26.63,34.7,14.01,2.04,,110890,21.2,3.17,27,2.69,1.21,3.5,30.9,3.9,1.72,,,35.36,,53,48,4.65,1892,5.05,56.78,43.7,100,139,25,75,26.06,3.8,46.8,60.07,78.16,69.12,81.34,86.96,84.2,10.4,3,10.6,3,1136,3536,1156,3595,1.1,0.4,1.1,0.4,116,350,122,366,1.2,33.9,27.2,19.64,800,,,35,0.28,63.95,0.68,,,22.4,173.96,5.15,40.03,148.07,,,117300,891639,,,2580,0.01,36.22,281.29,1460.56,258,170,,2512449,0.7,867000,2.4,13.26,1.29E+08,34.1,,75.56,,,82,68,19.2,23.3,5098,6236,0.51,82.97,93.55,15,2.56,19.87,1.6,1.9,1.8,2,617,584,656,617,30.14,923770,,114298.48,6.00E+10,129.1,2.76E+10,196.6,192.8,196.6,6.81E+07,4.2,48.2
Niue,135,6,,,,98,99,2,-2.2,33,,,8,34,90,,,,,100,,,,,,,,,99,99,99,99,0,0,,,,10,,66.3,98.6,10.8,49,,,2,,,22,,1,4,110,,100,294,1030,298,1045,5,20,1.4,0,,5.5,0,13.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,164,81,236,74,339,39,637,,,,,,,,,,9,,60,62,59,43,34,14,51,70,78,64,,16,,,85,42,18,64,33,12,55,,,,,9.47,,,100,100,100,100,100,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Norway,136,2,8,,50070,98,98,4669,0.6,77,,38,20,19,90,1.8,,,,,16,,,,,,,,92,93,,95,39,91,98,73,,9,,0,83.6,17.9,41,,,4126,,,75326,,3046,17523,162,,95.2,3780,5241,4521,6267,7,38,16.4,0,,4.3,14.9,8.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,70,53,86,137,181,35,416,0.3,0,6.2,0,0,54,38.1,1.4,10,1,0,72,74,70,6,3,3,4,80,83,78,7,2,,67,4,4,3,5,5,12,83,,,,5,5.5,,,100,100,100,,,,5.9,6.4,,,,,,32,30.4,33.6,8.86,3.4,1.6,2199,,,6,6,0.57,1.20E+07,1.20E+07,1.7,,15.99,74.8,726,2598,991349,21.44,11.52,0.41,3.22E+11,102.9,4163381,4,2.5,10.4,125,291,52.11,8652,3970,4682,1.85,0.48,0.1,,,19.43,13.53,43.4,37.1,806,750,1668,1573,109,,1,,10,25137.46,138.07,30061.26,6948.5,20.33,30.52,52.23,44.54,160.88,,,47.29,148.89,2.11,6.9,93870,21.29,0.11,5910,1.48,7.52,17.9,83.6,9,17.31,30.9,6.73,28.12,132,,100,1.57,47551,9.59,42.96,25.79,3,3,1,91,8.55,58.5,80.29,,,,,,,1.26,0.56,2.5,1.2,57,70,52,85,31.95,15.8,36.4,18.7,566,1194,746,1297,,,,63.32,16,465.67,466.33,90,3.1,52.84,1.62,4.46,970.78,84.96,18498.2,3.01,654.69,121.5,,,27,205,211.84,16.85,2969.03,0.24,9.7,2111.34,27414.7,91216,2448,15254,2506,57.8,2630000,0.68,,4593041,,,98.52,45.11,9.82,101,101,21.48,81.8,1133,3071,1.8,100.55,,77.5,3.01,55.44,5.84,3.19,10.4,5.2,234,353,238,381,120.55,323800,28.96,52915.49,1.85E+11,,4.94E+10,4.2,4.1,4.2,3578434.2,1.02,77.4
Oman,137,1,11,81.4,19740,75,73,2546,1.6,71,,23,4,33,,3.1,,,,98,,,,,,,,95,97,99,99,99,122,90,,,,2,,0,84,5.4,21,4,,460,173,1049,9516,1256,770,4290,37,4,63.7,321,273,382,325,3,17,16,14.6,0.2,2.2,0,2.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,133,90,160,105,409,41,688,8.1,0.3,4.1,0.1,0,42.3,37.9,7.2,,1,,64,65,63,13,10,9,10,74,77,72,64,5,,,14,11,11,12,24,19,57,1.7,15.9,13.1,8,0.26,,,73,82,85,61,87,97,,,,,15.2,11.3,17.8,13.1,1.3,24.7,11.32,5.83,1.86,,2.05,-5460000,12,10,136,1000000,1.00E+08,1.65,98,5.8,13.2,43,100,8339,0.33,10.48,0.64,,51.9,805000,,3.9,6.9,25,46,57.26,76751,36663,40088,3,,,,,2.9,1.9,4.7,3.1,12,26,19,45,102,31.8,1,2,-8,3756.62,,,5569.91,15.37,12.91,14.24,63.28,188.12,4.03E+09,13.47,16.43,63.76,2.92,0.37,20,18.11,,312,0.38,2.13,6.1,85,2.5,0.28,,,35.94,121,97,82,2.19,20334,,54.94,,10,5,5,90,17.82,11.1,75.28,73.53,86.86,81.36,96.66,97.87,97.28,6.6,2.9,7,3,18,52,20,55,8.8,2.2,9.6,2.4,13,73,14,79,,,13.1,49.52,87,,,98,1.32,89.21,11.84,,,19.79,6593.19,0.69,229.88,159.53,,,31,348,,,786.87,0.1,5.57,1856.35,7537.27,75825,,,,4.9,118000,1.14,,3001583,,,94.26,,,93,90,6,9.7,39,66,0.31,97.89,98.77,27.66,30.81,43.21,10.7,4.3,12.7,5.2,27,84,33,101,,309500,7.39,31444.45,2.27E+10,108.22,8.35E+09,12.9,5,12.9,1792535,1.11,71.5
Pakistan,138,7,24,49.9,2410,57,73,160943,1.8,35,17,21,6,36,,3.6,14,,1,54,,,,,,,27.6,81,80,83,83,,50,83,1,3,4,1,,3.2,16.4,1.3,12,,65999,15790,106,9744,70698,19082,8102,126350,5,1,97.9,8,3,51,16,,8,83.6,,0.1,0.6,0,2,62.3,55.2,11,4.6,8.1,42.4,51.3,50.6,34.3,5.7,12,5.2,76.5,74.8,43.6,27.9,43.6,64.6,32.9,46.9,21,1.8,2.7,1.5,63.7,50.7,38.3,64.7,73.8,128.4,124.5,2,1.7,1.4,131.9,93.6,206,194,218,107,425,99,743,14,0,2.1,0.7,2.4,55.7,5.7,19.3,2,34,0,53,52,54,181,78,71,85,63,63,62,320,53,31,86,263,97,96,98,70,8,21,4.8,41.5,31.3,19,0.01,92,66,87,90,95,40,58,90,,,,,10.1,7.5,12.4,21.1,6.6,35.4,30.16,35.12,21.47,,9.69,1.63E+09,181,90,323.26,1.70E+07,,1.38,31,22,50.1,11194,25719,44600,0.03,0.83,0.4,6.75E+11,8.3,5022908,9,3.6,6.5,1605,2962,69.64,6563391,4104511,2458880,3.52,4.14,0.03,1.56,0.01,3.2,3.1,5,5.1,1525,1625,2475,2581,128,27.6,37,10,-5,456.22,87.11,536.31,490,,,,15.69,103.46,3.32E+10,29.68,26.97,11.55,2.01,0.04,19020,19.08,0.09,15,1.73,0.37,1.5,17.5,2.1,1.39,6.95,0.04,19.56,138,92,91,5.22,2396,9.13,27.1,31.18,79,82,31,83,7.03,6.8,65.01,35.37,64.06,49.87,53.09,76.65,65.09,5.3,3.4,5.6,3.6,1553,2405,1650,2543,18.6,2.6,20.1,2.8,1206,8151,1320,8806,,,31.3,41.95,500,,,78,0.74,37.82,4.15,,,30.2,185.94,0.85,5.25,81.88,0.6,0,58656,462392,312.09,0.7,,,,,2072.02,1226,350,26440,81200,0.4,600000,2.41,17.77,1.62E+08,32.6,,61.5,54.11,0.33,,,3.5,5.6,1436,2308,1.01,76.54,69.26,64.7,4.82,51.43,3.2,2.3,3.8,2.8,1095,1567,1332,1878,73.97,796100,9.6,134300.25,9.32E+10,33.49,-1.02E+10,96.88,111.2,96.88,5.44E+07,3.45,34.9
Palau,139,6,,,14340,94,98,20,0.5,70,,,6,32,90,2.5,,,,100,,,,,,,,,91,94,91,95,129,100,,,,1,,12.5,92.5,16.4,59,,,2,,,121,,1,30,61,,100,1003,772,1084,835,,16,7.5,0,,3.8,0,10.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,227,230,225,92,396,39,744,9.7,0.3,2.5,0,0.7,47,27.4,12.4,,4,,60,60,59,51,10,11,9,69,71,68,,13,,,51,11,12,10,28,10,63,,,,9,,,,94,89,79,52,67,96,,,,,,,,24,9.7,38.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Panama,140,5,84,91.9,8690,98,99,3288,1.7,72,7.4,26,9,30,90,2.6,,,42,91,,,,,,,,,89,88,88,88,134,80,,,,8,3,0.2,68.8,11.5,18,,,2231,948,,8158,2229,2526,4431,28,8,80.6,495,262,721,380,9,15,31.2,19.2,0.3,1.8,47.7,7.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,108,81,134,108,182,49,430,10.7,2.4,3.8,0.2,0,42.4,29.6,10.8,50,3,1,66,68,64,45,18,16,20,76,79,74,130,11,,755,43,23,20,26,38,18,44,6.2,21.5,6.3,10,5.98,,,81,92,96,63,74,78,,,,,18.6,15.6,20.5,,,,85.16,29.96,8.05,,5.85,1.96E+07,46,51,0.56,,0,3.6,91.3,8.01,29,154,379,17567,0.54,1.87,0.22,2.40E+09,52.5,855852,,8.79,28.2,166,375,57.11,3633,2324,1309,2.56,,,,,5.82,6.25,12.1,11.2,88,87,140,144,105,,4,15,9,1499.61,,,803.96,9.66,12.3,26.54,74.83,100.86,9.74E+09,67.85,38.82,66.91,6.21,0,42940,18.34,0.96,351,2.27,5.03,12.3,68.9,7.3,0.85,,,68.67,,89,90,4.53,8399,2.5,18.32,56.08,19,20,27,80,2.14,6.4,75.33,91.25,92.55,91.9,95.62,96.53,96.08,3.04,2.46,2.8,2.6,46,46,32,34,12.62,5.13,15,5.6,69,172,70,177,,,6.3,32.77,160,,,99,1.5,33.57,0.98,,,,,,,93.51,,,125,1426,,,,,,,6420.77,160,15,414,18481,4.1,130000,1.75,37.62,3140232,37.3,,96.65,,,96,97,16.23,46,283,532,0.7,100.74,99.06,34.6,9.89,73.63,11.59,5.04,19,9.7,92,172,122,225,87.67,75520,9.26,5884.38,1.43E+10,12.42,1.20E+08,23.9,21.8,23.9,2287903.5,3.18,70.8
Papua New Guinea,141,6,77,57.3,1630,,,6202,2.2,13,,20,4,40,,4,,,26,38,,,,,,,,60,58,60,59,,21,71,,,,,,11.3,82.7,7.3,,,,90,,,2841,,,275,5,,42.6,111,24,134,29,,,17.3,6.4,,10.6,0,3.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,273,243,303,118,442,104,815,15.3,0.3,2.3,0.8,2.1,35.4,25.4,18.5,56,46,3,52,52,51,250,54,51,58,62,64,60,470,32,,1621,513,73,69,77,64,11,25,,,,11,1.62,98,34,32,40,88,41,45,67,,,,,47.7,40.3,55.4,,,,58.56,2.35,41.82,,43.9,2.66E+08,250,207,,,1.20E+07,1.7,42,8,17.3,118,261,0,,0.8,0.24,3.66E+08,1.3,15000,10,22.6,40.4,341,637,75.34,,,,3.78,,,,,5.2,1.9,7.8,2.9,28,72,39,105,146,25.9,47,6,10,,,,,,,,72.02,156.76,1.89E+09,41.36,47.56,2.29,0.68,0.13,294370,16.4,0.95,34,0.58,3.62,9.6,86.2,4.2,39.41,,,62.75,,67,39,1.28,1747,4.5,39.14,50.9,55,112,30,71,17.36,1.8,57.08,50.92,63.45,57.34,64.06,69.13,66.68,18.5,9.5,19.4,10,147,275,155,290,2.1,1.3,2.2,1.3,15,27,16,30,,,,64.03,300,,,60,0.05,101.79,0.61,,,,,0.43,77.18,134.93,,,2825,29853,,,,,,,1861.11,33,,,32093,6.3,367000,2.24,,5545268,37.5,,51.53,,,58,50,1.3,2.4,15,28,0.94,79.61,92.66,3.5,,19.04,4.4,2.5,5.1,3,35,56,41,64,,462840,21.01,4437.1,3.70E+09,39.79,8.88E+08,69.4,83.6,69.4,813341.1,2.54,13.4
Paraguay,142,5,65,93.2,4040,95,94,6016,1.9,59,13.6,22,7,35,,3.2,79,,25,100,,,,,,,72.8,81,80,66,66,66,48,91,13,53,,6,,0.8,38.3,13.2,13,,,3182,133,,10261,8833,1868,6355,18,15,87.7,131,45,342,117,3,11,61.7,11.3,,1.6,35.3,7.6,93.5,98.1,32.3,41.2,48.3,87,61.2,56.9,38.7,2.9,2.4,1.8,71.1,68.7,31.8,48,52.4,65,39.3,20.7,12.6,2.2,1.4,1.2,48.7,37.1,3.3,28.9,20.1,77.6,57.2,2.7,2.8,1.1,48.1,44.8,132,101,162,141,291,57,598,10.7,0.2,3.8,0.3,0.1,53.5,19.6,11.9,10,11,0,62,64,60,71,19,17,22,75,78,72,150,12,,338,100,22,20,24,45,16,39,6.3,18.3,2.8,9,3.73,83,30,52,77,94,42,70,89,,,,,25.7,25.2,26.1,24,14.8,33,76.3,61.06,22.07,,8.23,5.08E+07,71,35,0.52,,1000000,3.8,77.1,13.9,34.4,265,687,5600,0.09,0.61,0.19,2.53E+12,30.6,1767824,20,26.1,53.2,513,1131,68.34,45763,21332,24431,3.08,,,,,6.2,5.3,10.3,9,92,86,159,147,151,72.8,12,7,8,848.67,,,673.54,13.21,14.84,31.64,46.94,,3.23E+09,43.98,43.47,37.42,1.01,0.09,184750,22.07,0.54,92,4.64,2.66,15.3,36.5,7.3,7.14,,,53.93,,94,86,1.01,3900,2.4,19.31,58.36,20,32,21,91,5.91,3.3,71.5,92.69,94.29,93.49,96.07,95.73,95.9,4.8,4.8,3.3,3.3,84,70,63,51,19.7,4.8,19.8,4.8,81,287,82,291,,,2.8,3.51,170,,,90,1.11,73.86,0.75,,,,,,,97.45,,,733,6138,,,,,,,3046.88,101,26,811,18015,5.9,356000,1.89,31.5,6347884,20.5,,94.42,,,90,91,15,30.2,190,389,0.97,98.67,100.35,50.8,1.94,58.63,15.4,8.1,19.8,10.5,145,222,190,296,63.01,406750,12.11,3876.51,8.03E+09,40.18,-1.13E+08,30.7,26.4,30.7,3450710.8,2.99,58.5
Peru,143,5,59,87.9,6490,97,96,27589,1.1,73,10.5,25,8,31,90,2.5,87,,42,73,13,,,,,,71.3,82,99,80,80,80,96,91,,,,1,,1.6,57.1,13.1,9,,,2809,,,17108,,,29799,7,,77.5,171,83,300,145,,12,42.9,19,,0.6,41.8,4.3,84.5,87.5,14.7,13,25.3,84.6,69.8,74.5,59.3,5.7,6.7,3.3,88.4,92.3,75.8,80.8,82.2,86.1,12.6,11.5,3.9,1.2,1.1,1,70.9,75,46.3,35.1,17.6,106,92.6,3,5.3,2.2,85.3,39,136,118,153,175,190,69,584,12.2,0.9,9.5,0.4,0,38.5,24.9,13.6,20,16,1,61,62,60,162,21,20,23,73,75,71,240,11,,480,187,25,24,27,43,15,42,11.8,31.3,5.2,11,3.83,90,13,63,84,92,36,72,85,13.1,,25,,23.4,21.6,24.4,,,,61.56,16.65,7.2,,14.41,4.77E+08,172,123,1.25,5000000,3.68E+08,2.9,86.9,14,35.1,1497,3845,352622,1.29,1.33,0.19,2.83E+10,20,4092558,4,24.6,48.2,2663,5400,59.59,32483,2238,30245,2.51,0.49,0.02,,,7.1,7.4,11.7,12.3,773,641,1292,1072,110,45.8,20,21,9,847.61,,,506.34,6.64,8.88,9,24.76,170.39,2.87E+10,38.58,41.99,28.72,3.25,0.1,687420,18.59,0.43,125,2.19,2.11,8.4,49,4.3,2.61,4.07,0.15,19.17,,74,83,4.9,6466,3.73,34.78,52.02,23,77,68,91,3.36,16.4,71.04,82.45,93.72,87.91,96.29,97.92,97.12,9.3,10.9,6.2,7.2,1135,892,761,599,11.6,7.1,11.6,7.1,737,1050,739,1049,,,5.2,45.35,410,,,80,1.17,37.31,1.37,1.52,54.32,,,0.33,11.96,119.43,,,5518,55781,165.27,2.16,111.45,0,1.08,38.61,4384.07,1078,308,1183,70233,9.7,2689000,1.16,26.35,2.79E+07,53.1,,99.89,13.73,0.49,100,99,22.7,46,1982,4022,1.22,100.99,98.33,14.4,18.21,58.03,29.5,24.1,37.5,30.6,2524,2692,3223,3459,104.11,1285220,13.52,37006.4,6.54E+10,49.45,4.45E+09,26.7,31.2,26.7,1.98E+07,1.44,72.6
Philippines,144,6,55,92.6,3430,92,90,86264,2,63,14.8,22,6,36,83,3.3,70,,24,60,7,76,,,54.8,58.9,48.9,65,92,87,88,,77,89,4,10,,6,,3.3,39.6,6.4,13,,,43220,,,480910,90788,46360,90370,61,12,80.2,88,18,223,45,6,12,60.4,10.6,,5.3,27.2,3.3,71.8,92.4,11,25.1,40.8,79,60.8,67.3,38.2,6.5,3.7,1.9,83.3,89.4,45.6,69.7,77.5,81.8,37.7,19.7,4.3,1.8,1.3,1.1,76.2,45,21.8,28.5,21,104.7,66,3.7,3.1,1.7,52.2,30.4,219,157,277,91,336,58,642,12,0,2.7,0.4,1.2,36.9,33.5,13.4,10,45,0,59,62,57,287,24,20,28,68,71,64,230,15,0,100,432,32,26,37,45,13,42,2.4,33.8,20.7,20,3.51,70,27,88,93,96,72,78,81,,,,,22.6,17.3,28.2,26,9.8,42,48.69,40.92,14.35,,6.55,5.64E+08,290,162,5.95,,1.40E+07,2.9,59.8,27.1,46.6,7582,13051,123000,0.15,0.85,0.34,2.15E+11,41.3,3.29E+07,6,15.6,20.9,4349,6000,66.61,778031,314879,463152,3.23,5.71,0.07,,,12.1,9.5,18.8,14.8,2415,2700,3723,4198,130,48.9,47,12,8,588.07,56.57,643.86,528.49,9.17,8.98,12.36,47.62,82.83,6.17E+10,57.77,39.76,45.11,1.88,0.19,71620,14.6,0.01,37,2.03,1.17,5.5,36.6,3.2,70.73,1.9,0.02,51.79,93,80,85,3.16,2932,5.44,31.91,44.53,25,131,97,89,6.44,5.5,71.34,93.56,91.63,92.59,96.58,93.58,95.06,17.9,5.8,20.3,6.6,1474,4225,1686,4851,46.6,12.6,50.2,13.5,3120,10064,3358,10823,,,20.7,40.68,200,,,80,1.16,89.83,0.88,,,,,,,86.07,,,39808,382274,313.84,1.3,,,,,2715.59,81697,566,17044,6955,4.5,3684000,2.03,14.21,8.79E+07,25.1,,95.91,25.29,0.29,93,100,13.3,18.6,2524,3552,0.76,102.79,103.21,9.9,4.39,53.75,8.1,4.7,8.9,5.2,1185,1743,1321,1944,76.71,300000,12.98,74958.11,9.44E+10,29.93,-9.11E+09,31.5,30.9,31.5,5.30E+07,3.38,62.7
Poland,145,2,14,,14250,96,96,38140,-0.1,62,2,37,17,16,90,1.2,,,38,100,,,,,,,,,98,99,98,88,67,77,,,,3,,0.1,69.9,9.9,52,,,11881,,,199622,,21971,76046,52,,85,636,389,910,556,6,20,30.1,1.9,,2.6,83.9,6.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,145,79,209,180,324,53,593,0.1,0,5.6,0,0,59.1,32.5,2.7,10,3,0,66,68,63,25,6,5,7,75,80,71,8,5,,78,27,7,6,8,4,15,81,,,,6,8.09,,,,,100,,,,19.9,15.7,,,19.5,17.3,21.4,35.6,27.2,43.9,13.74,51.92,4.64,,,1.52E+09,27,21,30.22,1.03E+08,9.70E+07,3.2,99.9,14.91,50.3,4781,14358,945159,2.48,7.84,0.62,1.71E+11,75.7,2.31E+07,5,6.14,18.4,2278,4901,42,88131,38468,49663,1.23,55.68,1.44,68.66,1.78,18.84,10.89,31.9,23.5,4082,4432,7909,7671,115,49.4,4,8,10,3437.32,156.94,4070.13,2435.95,22.81,21.6,21.46,37.18,150.17,9.88E+10,33.85,45.73,107.43,3.42,1.11,91920,19.24,0.08,495,1.9,4.3,9.9,69.3,6.2,3.85,0.85,0.02,37.53,141,,,3.41,13573,7.4,30.79,34.91,6,12,7,77,2.51,25.9,75.15,,,,,,,4.08,2.64,3.6,2.6,1141,1045,884,851,68.73,13.59,82,14.6,3960,16354,4534,19478,,,,30.96,13,,,98,2.5,63.03,1.94,13.62,353.17,4.32,111.93,0.11,2.75,106.85,,,1380,11404,479.2,4.54,,,,,8383.24,94500,2271,14319,18492,19.1,7362000,-0.04,4.4,3.86E+07,14.6,,97.44,90.71,2.35,,,13.2,24.1,3114,6016,1.3,99.44,,69.66,19.55,64.57,15.24,5.34,20.7,7.8,2188,4017,2634,4962,123.29,312690,16.72,302389.9,1.99E+11,43.07,-8.54E+08,7.7,8.1,7.7,2.37E+07,0.09,62.1
Portugal,146,2,19,93.9,19960,98,98,10579,0.5,58,,39,22,16,90,1.5,,,,100,30,,,,,,67.1,,95,97,97,97,88,89,65,59,,6,,0,71.8,15.5,37,,,6149,,,48979,,10320,36138,47,,80.2,1494,1315,2080,1830,10,34,28.2,7.2,,1.4,1.1,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,93,53,133,140,208,33,461,0.1,0.1,9,0.1,0,47.9,41,1.8,10,3,0,69,72,67,32,3,3,4,79,82,75,11,3,,363,24,4,4,5,13,10,77,,,,8,11.54,,,100,99,99,98,99,99,,,,,,,,35.8,31,40.6,14.63,40.22,2.73,1031,,,34,31,29.63,1000000,3.91E+08,1.5,99.9,15.46,55.5,1542,4309,1186806,11.25,5.9,0.28,2.84E+10,109.1,1.03E+07,3,2.42,13.5,378,956,48.28,4490,3026,1464,1.46,3.81,0.36,,,19.37,10.63,36,21.1,1307,1643,2158,2826,117,,3,,10,4662.52,46.59,4408.86,2575.11,23.25,34.91,23.53,28.54,112.03,,,46.49,148.64,2.21,1.2,37830,22.45,0.48,1800,2.83,7.37,15.5,72.3,10.2,8.99,1.16,0.11,37.15,110,,,-0.08,20006,5.75,25.1,38.45,4,15,12,89,2.78,27.2,78.18,91.99,95.84,93.83,99.62,99.56,99.59,5.27,1.93,5.6,1.8,204,434,182,428,28.87,5.35,34.2,6,530,2314,566,2572,,,,36.16,5,,,93,3.3,53.63,2.26,4.23,400.79,,,,,101.62,,,368,2717,330.79,11.43,,,,,13912.92,251937,13840,29118,32246,13.3,1402000,0.45,38.57,1.06E+07,,,104.08,24.75,2.34,94,95,16.3,46.8,1784,3995,1.56,101.72,100.07,86,15.09,72.17,17.57,7.65,27.6,13.6,1082,1601,1346,2092,93.15,92120,21.39,62357.62,1.16E+11,,-1.61E+10,5.1,5,5.1,6076483,1.57,57.6
Puerto Rico,147,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,52,25.14,0.72,,,,5,3,,,,3.33,87.33,14.3,50.4,384,1318,118268,3.02,,,9.59E+08,84.8,2346750,,2.8,8.8,75,223,52.38,,,,1.83,,,,,10.5,7.4,26.6,20.5,228,246,612,611,,77.7,1,,,,,,,,,,34.61,,,,41.48,112.26,,,4080,15.6,0.5,,,,,,,,,,43.05,,,,2.12,19725.45,,18.35,,,2,2,75,2.29,23.1,78.5,67.69,67.19,67.45,64.74,64.84,64.79,2.75,2.05,2.8,1.3,65.5,63.5,42.5,64,9.55,3.55,9.75,3.3,108.5,224.5,100,224.5,,,,,9.38,,,,1.75,,,,,,,,,,,,24,237,,,,,,,14984.79,,,,10685,,,0.43,66.58,3911299,,,,,,,,11.5,50.05,288,1214,0.65,,74.89,95,9.85,56.46,10.3,4.9,14.2,6.3,154,246,193,333,,8950,,,6.45E+10,,,,,,3818164.8,1.05,97.6
Qatar,148,1,19,89,,94,93,821,3.1,96,,31,3,21,90,2.7,,,,100,,,,,,,,,92,94,94,94,52,83,,,,9,,0,78.1,9.7,25,,,690,,,4880,,1100,2150,60,,88.2,1115,2151,1426,2753,14,26,21.9,,,2.3,0,4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,67,64,72,75,340,40,629,8.4,0.1,5.2,0,0,29.6,48.9,7.7,,7,,65,64,67,60,9,9,10,77,77,77,12,4,,,73,11,10,13,16,21,63,,,,10,4.4,,,100,100,100,100,100,100,,,,,17.9,13.1,25.2,,,,18.34,6.45,,,4.36,2180000,58,41,290,9000000,1.20E+07,,100,14.6,33.3,23,53,25128,3.16,57.72,1,,92.2,490333,5,2.2,3.9,3,5,29.96,137,0,137,2.66,,,,,8.4,11.8,12.8,17.5,10,18,15,29,121,43.2,6,,-10,16801.35,14.4,16680.36,19877.27,,,,68.25,,,,13.72,115.82,,,,35.48,,2186,0.9,3.2,9.7,78,4.1,9.93E-04,,,33.45,,100,100,1.38,68696,,,,18,26,12,83,26.15,28.2,75.26,88.61,89.1,88.96,97.54,94.89,95.92,12.4,8.5,13.1,8.9,5,28,5,29,18.5,4.2,19.9,4.6,4,47,5,53,,,,205.63,7,,,99,2.22,84.36,,18.7,21667.32,45.8,53067.55,25.64,29703.92,158.57,,,50,555,64.99,27.5,1027.88,0.44,26.86,31127.82,10431.81,,,,,17.9,133000,4.09,,863051,,,93.91,19.61,22.72,93,91,6,9.5,12,18,0.16,99.08,102.8,90,25.95,,6.4,3.5,7.6,4.2,3,21,4,27,,11000,21.33,49815.74,,,,16.44,17.7,16.44,759561.44,4.19,95.4
Romania,149,2,33,97.3,10150,93,93,21532,-0.4,54,2,37,19,15,90,1.3,76,,81,99,,,,,,,70,,97,97,99,,79,82,,,,2,,0.8,71,12.4,65,,,4360,1396,,90698,188011,901,41455,42,84,85.2,433,224,610,315,,19,29,13.9,,2.2,80.3,5.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,157,95,218,141,479,56,728,2.5,0.1,8.6,0,0,41.4,20.3,27.1,,17,0,63,65,61,128,14,13,15,73,76,69,24,10,,,140,16,15,18,11,12,77,8.3,12.8,3.5,9,9.74,42,3,76,88,99,54,72,88,9.5,7.7,,,18.3,14.8,22.2,32.6,24.5,40.6,33.74,63.11,10.14,,,9.14E+08,134,121,54.8,2.40E+07,5.94E+08,2.8,98.1,16.3,44.3,2982,7273,751060,3.47,3.99,0.46,6.64E+10,61.8,1.02E+07,,11.44,23.9,2094,3448,43.76,47701,23941,23760,1.3,7.58,0.34,6.61,0.3,14.27,8.93,22,14.4,1843,2172,2808,3429,232,70.3,18,7,9,2341.92,59.41,2660.68,1772.32,9.91,14.75,22.14,32.95,,3.91E+10,40.82,46.19,82,6.56,-0.03,63700,22.63,0.12,250,1.63,3.87,12.4,70.3,5.5,3.43,4.57,0.2,43.31,,89,57,4.34,9374,8.19,35,31.54,16,60,50,82,12.29,22.1,72.19,96.27,98.4,97.3,97.78,97.74,97.76,8.85,3.64,10,3.9,791,1373,769,1542,47.02,7.81,50,8.5,1555,7044,1609,7430,,,3.5,20.83,49,,465.67,97,1.9,68.99,1.97,17.6,788.18,12.4,555.31,0.63,28.12,,1.26,0.06,3959,31390,222.92,3.65,113.63,0,0.46,20.53,3980.95,142780,2357,11551,15151,11.3,2450000,-0.23,8.94,2.23E+07,25.4,,98.9,39.76,1.78,94,93,9.01,16.8,1558,2865,1.26,100.27,100.04,30.2,20.31,54.86,17.4,5.94,17.6,6.8,1360,2665,1371,2736,71.23,238390,12.22,89075.51,4.89E+10,55.28,-1.01E+10,18.6,26.5,18.6,1.16E+07,-0.57,53.7
Russia,150,2,28,99.4,12740,91,91,143221,-0.5,73,2,37,17,15,90,1.3,,,10,100,,,,,,,,,99,98,98,,44,58,19,78,,3,5,0.1,63.2,10.8,97,,,45628,72515,,1214292,1105861,11521,614183,85,76,81.5,404,233,638,369,,43,36.8,10.2,,2,42.3,5.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,300,158,432,152,688,217,960,2.5,0.4,12,0,0,40.8,38,6.3,,16,1,58,64,53,107,10,9,12,66,73,60,28,7,,775,125,13,11,15,8,28,64,,,,6,10.32,21,7,88,97,100,70,87,93,,,,,27.3,24.4,30.1,48.5,26.5,70.1,28.64,13.17,5.54,,,1.32E+09,,,1.78,6.45E+09,4.00E+07,2.9,99.4,16.98,38.8,21582,43432,1589000,1.11,10.48,0.95,1.94E+12,83.6,7.44E+07,12,4.93,11.9,7784,12215,,309498,139784,169714,,94.22,0.66,139.22,0.97,19.08,12.57,27.1,19.5,19306,15379,25925,21851,200,72.8,,11,7,5784.97,953.1,6645.5,4517.5,,,10.84,35.12,,2.29E+11,30.73,,111.84,1.69,1.67,8087900,20.12,1.09,277,1.98,3.22,10.1,62,5.2,8.09,39.58,0.28,21.55,,93,97,,11861,6.15,39.68,39.93,,,,,19.19,15.2,,99.23,99.69,99.44,99.77,99.68,99.72,5.8,2.6,4.6,2.1,3540,4653,2773,3712,56.75,5.77,66.8,6.6,8743,50658,8909,53654,,,,71.76,67,,,99,,48.25,4.07,405.13,2824.78,597.96,4169.3,44.61,311.03,,33.4,0.23,,,2601.41,6.63,9552,0.02,77.71,541.85,,120364,18114,102568,909316,13.2,1.90E+07,-0.49,19.24,,19.6,,94.14,653.69,4.56,,,9.17,12.8,6672,10401,0.77,99,100.09,67.4,,54.77,28.43,11.49,36.7,15.8,19008,25728,21211,29633,120.55,1.71E+07,16.61,1503302.5,3.50E+11,79.57,1.04E+11,18.3,20.5,18.3,1.04E+08,-0.6,73
Rwanda,151,3,44,64.9,730,81,76,9464,2.5,20,60.3,18,4,43,82,6,13,55,52,28,3,84.1,13,12.3,27.9,31.9,17.4,82,99,97,97,96,27,83,,,14,,,38.9,63.7,27.3,16,,12000,21,101,39,3647,1047,278,432,4,1,62.5,134,21,210,32,,,36.3,13.8,0.01,8.6,0,10.4,72.9,66.4,27.2,27.2,34.6,63.1,45.7,39.2,28.5,2.7,2.4,1.8,92,87.6,82.6,84.9,85,89.6,9.4,2.7,4.6,1.1,1,1.1,115,89,70,95,122,210,211,2.2,1.7,1.6,192,122,385,360,414,150,425,126,831,18.5,5,1.8,4.6,1.6,21.7,23.7,23.2,232,54,75,38,40,36,397,97,94,101,52,53,51,1300,48,,3133,562,160,156,165,85,7,8,6.7,51.7,18,9,6.93,100,98,61,65,82,20,23,34,1.3,,28,41,,,,,,,42.08,78.64,42.26,,62.37,5.71E+08,402,78,1.58,,1.40E+07,0.3,38.6,6.2,8.8,191,276,1180,0.01,0.07,0.09,1.08E+11,3.2,138728,13,40.4,49.4,878,1087,85.01,229100,99941,129159,5.92,,,,,3.2,3.7,3.5,4.1,88,66,94,70,138,17.4,134,7,-3,,,,,10.39,18.39,404.49,10.58,50.81,1.52E+09,71.57,51.17,2.62,0.37,,4800,22.39,3.12,19,3.1,4.1,16.9,56.9,7.2,25.4,,,30.96,,56,74,4.17,813,5.33,20.47,46.79,100,164,45,83,7.14,0.6,45.53,59.76,71.44,64.9,76.87,78.53,77.63,44.7,19.1,45.4,19.4,427,825,436,839,1.7,0.9,1.7,0.9,20,33,21,35,5,12.6,18,,1400,,,89,0.05,24.6,2.87,,,,,,,124.39,,,12339,52424,,,,,,,957.16,4,4,47,156600,,,1.99,,8440820,60.3,,35.5,,,38,37,5.8,6.5,74,84,1.11,101.9,97.88,19,1.05,37.28,11.4,12.4,12.3,13,275,269,288,286,5.48,26340,9.05,604.56,2.35E+09,26.73,-4.02E+08,184.5,168.1,184.5,1782122,7.85,19.3
Saint Kitts and Nevis,152,5,,,12440,78,64,50,1.3,33,,,11,28,,2.3,,,,100,,,,,,,,,99,99,99,99,40,50,,,16,4,4,0,61.5,9.5,55,4,65,17,17,17,198,28,21,46,47,7,94.6,403,350,654,569,5,11,38.5,5.4,,4.3,0,5.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,165,142,188,108,420,45,689,14.4,0,7.9,0,0,2.8,74.9,0,,2,,62,63,60,11,17,17,17,71,73,70,,11,,,17,19,20,18,26,12,62,,,,9,6.73,,,99,99,99,96,96,96,,,,,16.6,13.6,18.2,,,,,38.46,3,,69.19,2500000,11,0,,,,4.81,100,,,,,500,1.07,3.48,0.17,3.20E+08,20.74,8750,7,,,,,,284,54,230,,,,,,,,,,,,,,111,54,2,23,,,,,,5.83,6.62,0,46.92,,2.95E+08,76.05,,55.87,19.94,0.02,50,45.5,,478,2.03,3.47,8.8,63.1,5.5,0.69,,,66.59,,72,75,,13677,,27.62,,,5,0,50,2.53,12.15,,,,,,,,,,,,,,,,,,,,,,,,,,,63.66,,,,99,,56.97,,,,,,,,87.34,,,1,9,,,,,,,,,,,,16.5,8250,2.14,,,,,109.19,,,,,,,,,,102.55,,42.5,,69.38,,,,,,,,,156.16,260,23.94,135.57,3.87E+08,24.28,-8.43E+07,21,,21,15456,1.77,32.2
Saint Lucia,153,5,51,,8500,97,99,163,1.1,28,,26,10,27,90,2.2,,,,100,,,,,,,,56,94,99,99,99,104,69,,,,,,0.2,56.4,10.2,30,,,9,,,331,,,749,23,,93.8,237,191,421,339,,52,43.6,6.2,,0.4,5.2,5.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,154,104,202,129,304,52,646,1.3,1.3,4.7,0,0,30.9,60.4,1.3,,2,,63,64,61,17,12,12,12,75,78,72,,11,,,22,14,14,14,20,17,63,,,,8,11.48,,,98,98,98,89,89,89,,,,,17.9,14.5,22.4,20.6,12.1,28.9,61.02,32.79,3.88,,67.97,1.05E+07,17,9,,,,6,100,,,,,0,,2.23,0.26,,65.7,93000,7,,,,,,432,304,128,,,,,,,,,,,,,,112,,2,6,,,,,,14.7,19.02,0,52.02,,4.25E+08,52.91,,41.12,9.24,0,170,23.14,0.98,323,2.58,3.32,10.3,56.2,5.9,8.49,,,65.54,,89,98,,9279,5.23,18.79,42.58,,8,7,69,3.71,34.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,94,,61.54,,,,,,,,117.91,,,4,37,,,,,,,,89625,7,69,877,17.3,26000,1.44,,,,,106.18,,,,,,,,,,104.92,,,,77.33,,,,,,,,,98.63,620,,370.06,7.64E+08,27.39,-1.19E+08,17.7,14,17.7,45482.32,1.15,27.6
Saint Vincent and the Grenadines,154,5,71,,6220,88,92,120,0.5,46,,25,9,29,90,2.2,,,,100,,,,,,,,,99,99,99,99,50,86,,,4,,,0,62.8,9.3,45,,45,5,,,447,,,89,38,,100,289,146,461,233,,8,37.2,,,5.1,0,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,238,167,301,155,315,55,685,0.5,2.9,4,0,0,49.6,32.4,10.5,,5,,61,62,60,30,17,13,21,70,74,66,,13,,,47,20,16,24,27,13,60,,,,10,7,,,93,,,96,,,,,,,19.1,16.6,22,,,,65.7,25.64,8.15,,40.46,4410000,30,6,,,,3.2,100,,,,,3647,3.06,1.62,0.25,2.32E+08,59.3,56950,7,,,,,,1202,728,474,,,,,,,,,,,,,,109,48,5,11,,,,,,22.62,29.55,,48.44,,2.81E+08,79.64,,78.17,14.4,0,110,28.56,,218,2.23,3.77,9.3,62.9,6,0.05,,,76.55,,,,,6752,,24.7,,,13,5,86,-8.39,8.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,97,,72.6,,,,,,,,109.05,,,6,53,,,,,,,,17118,2,,,13.2,16000,0.54,,,,,92.04,,,,,,,,,,100.61,,70,,67.15,,,,,,,,,120.55,390,22.43,190.53,3.84E+08,24.69,-9.50E+07,16.4,16.5,16.4,54683.88,1.2,45.9
Samoa,155,6,45,98.6,5090,91,90,185,0.8,23,,20,7,40,90,4.1,,,,100,,,,,,,,5,63,71,69,,80,91,,,,,,4.2,81,10.5,10,,,10,,,310,,20,50,17,,79,188,97,232,120,1,3,19,0,,6.2,1.1,4.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,220,203,235,95,417,40,782,9.7,0.3,2.9,0.1,0.1,49.2,27.4,10.2,,3,,60,60,59,19,23,9,37,68,70,66,,14,,,25,28,15,40,31,11,58,,,,4,1.73,,,87,88,90,100,100,100,66.3,44.9,,,23.5,20.4,25.8,41,23.4,58.3,31.05,32.86,13.57,,238.41,4.40E+07,20,13,,,,2.19,87.5,15.8,34.2,9,20,65,0.04,0.85,0.15,,13.4,10500,,15,28,8,16,82.95,245,0,245,3.93,,,,,9.7,7.2,14.9,10.7,5,4,6,7,133,42.6,3,5,,,,,,6.06,4.49,91.8,16.81,117.15,6.56E+08,172.22,31.91,23.66,-0.9,0.51,1710,,,113.08,0.95,3.95,11.6,80.7,4.9,0.06,,,30.07,,75,66,4.69,4872,,27.35,,24,9,6,91,4.42,3.4,71.1,73.69,74.14,73.93,74.54,74.48,74.51,5.9,1.9,6.15,2,0.5,2.5,1,2.5,8,0.45,8.7,0.5,0,3.5,0,3.5,,,,,48.75,,,57,0.7,49.27,,,,,,,,90.9,,,6,50,,,,,,,4508.09,3,1,41,,0.35,600,0.73,,177287,,,72.23,,,70.5,73.5,5.35,10,2,4,,105.1,75.05,14.21,,59.09,21.4,9.9,24.7,11.6,5,9,5,11,68.49,2840,,150.22,2.86E+08,12.46,-1.16E+08,29.98,,29.98,41181.28,1.18,22.4
San Marino,156,2,,,,,,31,1.4,93,,,26,14,90,1.3,,,,,,,,,,,,,92,92,92,92,0,0,,,,4,,0,83.9,13.3,,,,8,,,2196,,23,1089,955,,96,2765,3011,3297,3591,10,474,16.1,4,,2,84.4,7.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,48,37,59,140,223,22,380,,,,,,,,,,1,,73,76,71,6,3,3,4,82,83,80,,2,,,5,3,3,4,5,10,85,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Sao Tome and Principe,157,3,91,84.9,1490,98,97,155,1.6,59,,19,6,41,69,4,,,,81,,,41.7,24.7,,,29.3,,86,97,99,,,,,,23,,1,43.1,85.4,12.2,32,3,374,11,19,51,308,515,24,81,19,31,100,120,49,141,58,2,5,14.6,0,0.2,3.8,0,10.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,241,210,275,133,396,87,764,16,3.7,3.5,0.6,4.8,32.1,18.1,21.2,,26,,54,55,54,103,63,59,66,61,63,60,,38,,,252,96,92,99,67,12,21,9.2,35.2,10.1,,6.95,,,83,86,88,18,24,29,,,,,,,,16.9,10.6,23.2,71.69,59.38,16.99,,208.69,3.19E+07,105,89,,,,,80.7,,,,,0,,0.55,0.45,,7.6,4819,18,,,,,85.05,159,159,0,3.85,,,,,,,,,,,,,,30.3,27,29,,,,,,,,,,,3.40E+08,,29.25,12.49,6.22,,270,,,49,1.49,8.31,12.2,84.8,9.8,1.17,,,,,32,79,0.85,1460,,20.75,,63,47,32,,6.33,14.7,65.23,77.95,92.23,84.91,94.85,95.97,95.42,,,,,,,,,,,,,,,,,22.8,61.2,10.1,,,,,88,0.49,47.18,,,,,,,,,,,41,391,,,,,,,1372.79,,,,,,,1.65,,187410,,,74.24,,,73,77,,,,,0.9,98.97,98.83,68.1,,62.26,,,,,,,,,52.06,960,,102.59,,7.85,-2.29E+07,99.2,131.2,99.2,88520.76,3.25,58
Saudi Arabia,158,1,15,82.9,22300,87,87,24175,2.4,81,,24,4,34,,3.5,,,,96,,,,,,,,,96,96,96,96,40,65,,,,2,,0,77.2,8.7,23,,,4235,,,74114,39073,5485,34261,30,16,14.4,468,379,607,491,2,14,22.8,51.5,,2.2,,3.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,178,136,205,109,405,72,701,6.2,0.1,14.5,0.2,0,40.2,32.2,6.6,,5,,61,63,60,44,21,20,22,70,73,68,18,11,0,,62,26,23,28,22,25,53,,,,11,0,,,63,89,97,,,100,,,,,15.9,10.7,20.2,14.7,3.6,25.6,29.51,,3.24,,0.67,2.56E+07,43,15,721.67,3.60E+07,1.48E+08,5.9,96,10.9,24.7,677,1563,67798,0.29,14.43,0.67,1.46E+11,57.6,9175764,,2.5,4.6,143,271,59.51,404836,199991,204845,3.35,,,,,6,5.5,9.4,8.7,305,429,481,695,101,20.8,5,,-10,6813.32,176.12,6666.92,6067.61,,,,59.38,205.8,,,15.16,77.89,0.15,0,27280,17.86,,448,0.81,2.59,8.7,76.2,3.4,0.64,,,25.92,,100,95.7,3.84,21220,,63.23,,21,19,7,65,18.76,12.2,72.49,77.7,87.9,82.86,94.68,96.95,95.85,13.7,5.3,14.5,5.6,278,915,296,967,9.6,2.6,10.3,2.8,135,642,148,694,,,,204.74,23,,,96,1.37,76.1,8.05,71.24,2696.69,71.24,2696.69,6.82,258.24,181.79,,,1182,14304,1890.57,26.14,11114.43,0.15,264.21,10001.33,8046.48,613,25,63,,34,8476000,2.58,36.22,2.64E+07,,,93.38,151.35,5.73,62,61,5.3,8.5,301,488,0.16,94.74,97.65,29.9,9.43,33.53,4.9,3,5.7,3.5,155,315,183,372,73.97,2000000,,381110.97,2.29E+11,,1.01E+11,26.6,9.4,26.6,1.87E+07,2.88,81
Senegal,159,3,100,39.3,1560,70,71,12072,2.5,42,17,19,6,42,55,4.9,40,,57,52,3,75.3,7.1,26.8,47.2,52.5,11.8,86,84,94,94,94,48,74,5,11,,,,13.5,31.5,6.7,1,,,97,705,66,3287,704,85,594,3,,90.3,23,13,72,40,,,68.5,8.7,0.1,5.3,11.2,5.4,87.8,88.7,42.4,20.1,33.2,84.6,45.4,68.6,51.4,2.1,4.4,2.5,94.8,81.2,69.2,71,71.1,77.4,25.6,10.2,6.3,1.4,1.1,1.1,91.9,119,68.6,59.7,64,151.6,183,2.5,2.9,1.8,159.7,91.1,271,236,307,146,426,125,832,17.1,1,2.6,27.6,8.1,22.8,0.2,20.7,45,55,3,48,49,47,270,60,53,67,59,61,57,980,35,,837,504,116,109,123,76,11,13,2.4,20.1,14.5,18,0.46,80,24,65,77,93,9,28,54,7.2,,34,54,14.9,9.6,20.4,10.7,1.5,19.8,93.95,42.84,16.75,,58.52,6.72E+08,265,83,8.61,,2000000,1.2,51.9,13.3,18.4,394,562,18028,0.15,0.43,0.29,5.91E+11,14.8,1028061,4,21.1,26.2,640,804,86.7,487828,258527,229301,4.69,,,,,2.3,2.3,2.4,2.5,84,62,88,66,108,11.8,57,6,8,150.97,,,258.36,18.32,34.96,235.27,27.05,,3.88E+09,45.7,42.5,16.96,0.62,0.16,86730,29.8,0.75,38,3.69,1.71,6.7,31.7,5.4,11.73,,,42.69,,79,76,2.68,1676,6.56,23.9,41.25,61,118,57,74,2.93,4.6,62.7,29.25,51.05,39.28,40.97,58.49,49.12,30.3,13.6,30.8,13.8,475,901,482,918,1.4,0.1,1.4,0.1,4,38,4,41,13.8,28.8,14.5,,690,,,74,0.06,54.71,1.43,,,,,,,98.23,,,6675,58177,,,,,,,1506.14,,,,48537,2.3,242000,2.56,18.34,1.17E+07,33.4,,51.48,,,49,42,6.5,7.5,112,131,1.31,90.82,70.05,29.26,2.29,59.34,4.9,2.9,5.2,3.1,82,119,87,125,38.36,196720,16.12,5070.98,5.47E+09,30.67,-1.01E+09,121.48,104.2,121.48,4896461.5,3.05,41.6
Serbia,160,2,24,,9320,,,9851,-0.1,52,,37,19,18,90,1.8,,,18,99,,,,,,,41.2,,95,94,99,89,79,85,,,,3,,0.8,71,14.3,54,,,2479,,,42234,,1884,19581,43,,86.7,373,176,525,247,2,20,29,,,2.2,93.2,7.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,141,94,187,,,,,,,,,,,,,,5,0,,,,32,7,6,8,73,76,71,,,,,41,8,7,9,,,,19.3,8.1,1.8,,,,,98,99,99,88,92,96,,,,,13.5,13.7,12.8,42.3,42.3,42.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Seychelles,161,3,,91.8,14360,100,99,86,0.7,51,,,10,24,90,1.7,,,,,,,,,,,,,99,99,99,,62,92,,,,12,10,3.4,74.2,8.8,57,7,,94,77,59,634,35,61,121,79,4,62.5,602,425,812,573,8,15,25.8,0,,5.3,3.9,6.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,174,104,241,131,336,69,657,0,0,12.3,0,0,27.2,50.3,10.1,,5,,61,65,57,33,12,13,11,72,77,68,,7,,,56,13,13,12,16,21,64,,,,,3.36,,,75,87,100,100,,,35.2,15,,,26.6,25.3,27.1,21.2,7,35.2,,13.04,3,,219.1,1.50E+07,33,16,,,0,1.31,,,,,,948,1.14,7.13,0.41,5.32E+08,72.9,43076.25,4,,,,,,37.63,0,37.63,,,,,,,,,,,,,,115,,5,7,,,,,,12.54,13.28,,99.24,,6.74E+08,98.76,,96.76,11.88,1.03,400,30.21,,557,1.89,4.91,10.4,72.2,6.8,19.18,,,125.65,,,66,-3.28,14202,,26.83,,12,15,9,69,2.03,26,,46.13,45.7,45.92,49.69,49.39,49.53,,,,,,,,,,,,,,,,,,,,,,,,99,1.13,143.74,1.74,,,,,,,96.98,,,4,48,,,,,,,5711.55,1790.5,6,,,13.88,11250,0.48,,81188,,,114.87,,,79.5,80.25,,,,,,100.26,50.31,96,,70.17,,,,,,,,,87.67,460,34.72,578.91,5.63E+08,8.34,-1.87E+08,13.54,,13.54,43854.1,1.2,52.9
Sierra Leone,162,3,178,34.8,610,36,50,5743,2.8,41,,18,5,43,48,6.5,68,8,12,43,,,5.3,51.9,,,5.3,94,67,64,64,64,35,86,,,1,,,45.1,49,7.8,4,,558,5,136,,2510,4,340,168,5,,100,20,4,41,9,,,51,0,,16.3,0,3.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,508,460,556,181,515,250,1017,19.7,1.3,1.2,12.4,5.3,21.9,12.7,25.5,83,107,12,29,30,27,517,159,144,173,40,42,39,2100,56,,1361,977,269,252,286,86,8,6,4.7,38.4,24.7,,6.39,,,32,53,83,5,11,20,,,,,,,,,,,172.47,40.21,45.88,,61.45,3.44E+08,489,121,0.24,,1.30E+07,1.3,43.2,19.8,28.1,321,463,0,,0.16,0.33,6.83E+09,2.2,113214,55,23.8,29.3,362,452,85.49,,,,6.47,,,,,4.7,3.3,5.1,3.5,52,66,55,70,136,5.3,114,9,5,,,,,,,,22.12,,1.68E+09,143.12,38.46,1.85,6.86,-0.62,27540,17.43,1.62,8,1.79,1.91,7.8,51.5,3.7,31.08,,,40.13,,53,57,3.82,790,6.49,24.73,39.96,160,218,78,86,12.88,0.2,42.18,24.16,46.65,34.83,37.36,59.61,47.93,15.1,5.5,15.3,5.6,87,212,89,216,2.4,0.6,2.4,0.6,7,29,9,31,1.5,60.7,24.7,,2000,,,67,0.03,41.48,0.97,,,,,,,,,,6363,52654,,,,,,,616.55,177366,4,206,49923,,,3.57,,5867426,70.2,,,,,,,16,19.3,161,197,0.98,83.18,62.67,8,1.12,29.39,3.2,3.4,3.4,3.6,47,41,51,43,10.96,71740,11.03,937.98,1.20E+09,10.14,-1.89E+08,267,253.7,267,2273666,5.41,40.7
Singapore,163,6,7,92.5,43300,77,77,4382,1.3,100,,38,13,19,90,1.3,,,,100,,,,,,,,,95,96,95,,107,83,,,,3,,0,33.6,5.4,32,,,1190,,,19090,,1280,6380,45,,94,413,348,1228,1035,3,15,66.4,2.9,,3,17.1,3.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,67,50,83,128,171,23,376,0.4,0,7.1,0,0,40,43.5,9,10,2,0,70,71,69,26,3,2,3,80,83,78,14,1,,158,25,3,3,3,9,12,79,2.6,4.4,3.3,8,2.17,,,,,100,,,100,7.3,6.4,,,9.1,7.5,10.5,,,,4.96,1.16,0.09,,4.79,9140000,28,31,,3000000,5.52E+08,1,99.7,11.87,48.7,394,1213,665600,15.33,12.72,0.31,4.35E+10,100.8,3860600,,3.3,13.2,205,323,38.96,89606,43068,46538,1.26,,,,,15.64,11.19,35.1,29.9,402,417,733,772,103,62,2,,-2,8358.28,38.21,8634.3,6932.61,11.34,17.91,,244.3,96.03,,,39.91,143.47,12.86,4.3,20,19.03,0.14,944,2.38,1.12,5.6,31.9,3.5,56.58,,,214.82,111,100,100,3.89,41479,5.04,33.77,42.48,2,13,13,83,0.35,39.8,79.67,88.65,96.57,92.55,99.6,99.41,99.5,10.14,2.15,18.4,4.8,146,406,116,403,30.49,11.5,46.4,18.3,441,952,448,1001,,,3.3,271.36,30,597.33,597,96,1.4,368.19,4.68,,,,,,,86.76,,,105,1194,793.78,65.51,,,,,24080.99,94259,7583,36927,3878,62.2,2590000,2.41,99.63,4425720,,,,46.81,10.58,,,4.3,13.8,111,286,0.92,101.01,100.2,100,20.21,66.14,8.51,5.12,22.3,11.1,208,380,273,478,,699,12.68,56275.38,1.13E+11,,3.49E+10,3,3,3,4341800,2.41,100
Slovakia,164,2,21,,17060,92,92,5388,0,56,,36,16,16,,1.2,,,,100,18,,,,,,,,99,99,99,99,43,92,46,59,,5,,0,73.9,13.8,68,,,2441,,,35757,,2637,16868,66,,88.2,913,531,1235,718,5,31,26.1,0,,2.1,85.3,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,136,76,196,170,371,50,636,1.4,0,6,0,0,52.7,30.5,9.4,,2,,66,69,63,15,7,6,7,74,78,70,6,4,,100,18,8,7,9,4,14,81,,,,7,10.35,7,2,100,100,100,99,100,100,15,13.5,,,26.6,24.5,28.5,30.9,20.1,41.6,20.15,40.35,3.85,,,2.35E+08,,,,7.90E+07,4000000,,99.5,16.95,48,820,1880,181538,3.37,6.75,0.45,3.31E+11,84.1,4275164,3,4.81,18.5,242,654,39.88,19347,9045,10302,1.25,3.92,0.72,,,30.78,15.22,54.5,27.4,752,1071,1227,1745,133,74,,7,9,4919.81,31.46,5791.36,3495.64,11.91,16.72,32.22,77.28,,2.39E+10,52.69,45.14,106.5,4.44,0.07,19290,29.19,,626,1.79,5.21,13.9,74.4,7,7.28,1.07,0.2,82.35,,100,100,5.93,15881,8.76,31.66,25.81,7,,,,2.37,35.3,74.19,,,,,,,5.99,3.14,6.5,2.8,137,211,128,208,52.55,7.34,67.5,9.4,363,1914,405,2153,,,,9.26,3,,,98,3.1,142.24,1.74,6.56,1207.54,,,,,,4.01,0.74,,,80.8,5.43,,,,,10484.49,157928,803,3666,,29.6,1593000,0.08,,5431363,,,94.32,18.73,3.45,99,100,13.85,30.5,545,1003,1.35,100.39,,87.31,11.48,64.49,14.8,5.34,20.7,7.8,310,536,372,664,84.93,49030,14.77,36640,2.55E+10,64.64,-4.08E+08,8.6,8,8.6,3027494,0.05,56.2
Slovenia,165,2,6,99.7,23970,95,96,2001,0.1,51,,41,21,14,90,1.3,,,,100,14,,,,,,,,96,97,,98,71,84,,,,6,,0,73,13.5,48,,,1198,,,15711,,905,4723,80,,44.1,1507,1167,2065,1599,5,24,27,48.6,,3.3,91.9,8.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,104,56,148,160,228,59,503,0,0,5.9,0,0,64.4,29.7,0,10,2,,69,72,67,13,3,4,3,78,82,74,6,2,,100,15,4,4,4,4,17,80,,,,6,6.74,,,,,,,,,13.8,16.5,,,21.8,24.2,16.9,26.5,21.1,31.8,6.47,25.22,2.57,,26.46,6.22E+07,14,13,,,2000000,1.8,99.9,21,58.9,400,966,196650,9.83,7.38,0.37,1.30E+12,89.4,1739146,5,2.73,16.1,79,207,42.32,2603,1249,1354,1.28,,,,,25.89,11.56,43.8,25.4,295,349,503,628,131,73.8,2,,,6917.77,,,3656.59,25.92,30.63,25.83,64.59,,,,46.17,128.75,1.57,1.83,12640,26.05,0.02,1495,2.35,6.15,13.4,72.4,8.5,4.61,,,65.14,,,,3.85,23004,8.32,34.1,30.94,3,6,5,84,1.47,55.4,77.6,99.64,99.7,99.67,99.88,99.82,99.85,5.88,2.24,5.3,1.5,50,93,32,74,48.75,11.83,57.1,13.9,210,762,254,816,,,,22.99,17,494.33,498.33,94,2.25,115.23,1.5,,,,,,,,,,38,305,,,,,,,15166.53,137244,2802,4371,246.67,35.5,704000,0.18,,2011070,,,99.28,,,114,114,18.97,30.9,281,456,1.23,99.51,100.06,100,23.87,63.33,16.73,5.82,20.4,8.9,171,244,182,295,41.1,20270,21.36,14846.53,2.29E+10,,-1.98E+08,4.5,3.9,4.5,1020255,0.25,51
Solomon Islands,166,6,72,,1850,61,62,484,2.4,17,,20,5,40,,4,,,,43,,,,,,,,84,78,79,79,,42,85,,,,,,24.8,93,12.6,15,,,26,,,653,,28,60,14,,54.8,99,31,107,34,,1,7,0,,10.5,0,4.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,164,139,188,90,409,37,786,8.8,0.3,2.5,0.1,0.5,49.5,28.7,9.5,,23,,56,57,55,135,55,54,55,67,68,65,220,23,,,194,72,74,71,49,7,44,,,,13,0.97,,,65,70,94,18,32,98,,,,,,,,,,,45.21,3.04,,,419.5,1.98E+08,142,84,,,6000000,2.36,85,13.9,29.8,17,39,450,0.1,0.33,0.2,,1.3,1488,,24,42.8,31,58,76.76,28527,13722,14805,3.87,,,,,7,4.5,10.5,6.9,6,9,8,12,148,6.8,23,3,8,,,,,14.07,,,35.93,88.76,1.66E+08,55.42,38.58,2.84,6.19,0.53,21720,26.47,,28,0.34,3.96,12.6,92.2,4.3,,,,40.74,,73.5,52.5,2.37,1712,,,,56,64,36,85,8.34,0.8,63.25,,,,,,,8.85,4.25,9.25,4.45,6,12,6,13,7.4,2.6,8.05,2.8,2.5,8,2.5,9,,,,,48.75,,,72,0.13,96.18,,,,,,,,95.45,,,110,945,,,,,,,1484.71,,,,,3.07,15000,2.48,,538032,,,68.8,,,,,2.25,4.2,2,4,,93.33,,2.44,,,7.8,5.4,8.9,6.2,6,8,7,10,19.18,28900,,175.87,3.23E+08,57.36,2.33E+07,77.7,,77.7,80311.23,4.02,17
Somalia,167,3,35,,,6,11,8445,3,36,,18,4,44,3,6.2,,,2,33,,,9.2,7.9,,,,68,34,39,,,83,89,,,,,,9.3,44.6,4.2,,,,15,,,1486,,8,310,2,,100,8,4,18,8,,,55.4,0,,4.8,0,2.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,323,288,358,143,580,235,1086,18.7,0.8,2.6,4.5,6.8,23.3,19.5,23.9,50,40,1,37,38,36,218,90,88,91,55,56,54,1400,49,8,870,293,145,147,144,76,11,14,4.7,42.1,32.8,,0,,,10,29,63,7,23,51,,,,,15.6,12.3,15.5,,,,68.19,70.74,65.45,,28.82,2.37E+08,224,157,54.83,,1000000,1,33,14.2,19.5,368,520,0,,0.07,,,6.1,500000,,34.6,42.7,906,1134,87.68,,,,6.04,,,,,6.1,3.8,6.7,4.1,91,134,98,144,,14.6,39,,0,,,,,,,,9.79,,2.75E+09,283.88,39.25,7.32,0.61,,71310,15.5,0.53,8,1.44,1.16,4.2,44.6,2.6,,,,37.74,,48,29,-1.51,932.96,,,,91,101,86,89,215.47,1.1,47.6,,,,,,,20.8,8.5,21.1,8.6,202,458,205,465,3.5,2.1,3.6,2.2,48,73,49,77,0.3,18.5,,,1100,,,35,0.04,,,,,,,,,,,,3230,23595,,,,,,,913.45,,,,22621,0.4,50000,3,16.1,8591629,,,,,,,,11.8,13.8,190,223,0.74,55,,11.8,1.61,,7,5.2,7.4,5.5,119,147,126,155,,637660,,589.9,,,,150.8,219.9,150.8,2885131,4.09,35.2
South Africa,168,3,65,82.4,8900,88,88,48282,0.7,60,10.7,24,7,32,,2.7,73,50,21,92,,,,,,,60.3,72,83,97,97,97,71,71,6,17,2,1,,0.8,41.9,9.9,28,,9160,5995,2529,2002,184459,54798,12521,34829,41,12,17.5,364,191,869,456,3,8,58.1,77.7,0.1,5.3,3.6,8.6,91.4,98.1,59.7,67.8,75.5,93.4,31.7,30.3,17.9,1.5,1.4,1.2,85.6,84.5,64,73.5,79.3,85.1,21.6,11,5.8,1.3,1.1,1.1,38.2,65.5,28,45.6,21.9,83.8,87.4,1.8,4,1.6,71.2,43.2,564,531,598,154,410,120,808,0.8,57.1,5,0,0,35.1,1.1,0.9,675,84,134,44,45,43,940,56,54,58,51,53,50,400,17,,16579,998,69,66,72,77,8,15,,,,15,6.72,40,7,82,93,100,49,59,66,,,,,23.6,20,29,18.4,9.1,27.5,65,82.04,2.75,,14.59,6.80E+08,925,564,27.89,2.30E+07,3.15E+08,1.05,92,11.49,35,2790,6018,165290,0.35,9.22,1.15,1.94E+11,71.6,1.95E+07,7,12.76,37.5,3681,6742,57.13,468964,206578,262386,2.64,91.88,2.07,137.72,3.11,7.12,4.6,12.3,9.7,1043,974,1577,1464,128,60.3,213,1,9,4847.18,244.92,5523.17,2721.91,14.3,17.58,50.13,27.48,156.16,3.11E+10,13.12,38.22,82.51,2.69,0.38,92030,18.18,18.2,437,5.07,3.63,9.9,41.7,8.7,6.58,0.8,0.02,28.4,143,79,88,3.69,8477,3.47,30.71,57.78,55,376,262,71,4.75,10.8,50.35,80.93,84.07,82.4,94.29,93.5,93.91,7.44,3.48,6.1,2.3,370,786,388,827,24.88,7.09,25,7.5,1099,2788,1203,3043,,,,233.58,230,,,82,0.77,47.07,1.47,,,,,,,114.46,2.92,0.07,101989,473209,525.8,4.33,,,,,4638.92,90655,5453,,5560376,8.3,3740000,1.17,30.03,4.43E+07,,,100.21,120.37,2.71,94,98,20.91,42.9,2331,4401,0.85,100.04,100.85,17.3,35.02,66.54,6.3,2.95,8.8,3.9,556,960,641,1113,90.41,1219090,27.41,408792.47,1.61E+11,66.32,-2.20E+09,68.5,68.5,68.5,2.78E+07,1.98,59.3
Spain,169,2,10,97.2,28200,99,100,43887,1.1,77,,39,22,14,90,1.4,,,,,,,,,,,,,97,96,96,96,0,,52,60,,5,,0,72.5,15.3,34,,,23300,,,328891,,39900,135300,76,,76.4,1732,1641,2388,2263,9,33,27.5,23.6,,2.3,6.6,8.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,75,44,105,131,137,31,395,0.1,0,6.5,0,0,52.4,39.6,1.3,5,3,0,73,75,70,30,4,3,4,81,84,78,4,2,,380,24,4,4,5,6,13,81,,,,6,11.68,5,1,100,100,100,100,100,100,13.5,13,,,,,,33.7,30.9,36.4,9.64,58.15,3.26,2437,,,31,17,32.04,1.16E+08,3.23E+08,1.12,,14.04,50.9,5914,15855,5035203,11.6,8.52,0.29,2.09E+11,100,3.86E+07,3,1.49,7.6,739,2103,45.45,8928,6418,2510,1.41,21.18,0.53,6.36,0.16,17.62,9.69,36.8,22.5,5206,6553,9546,12418,117,80.9,3,,10,6147.13,294.08,7289.7,3345.67,18.95,23.75,22.67,25.51,139.85,,,41.04,139.86,2.18,3.72,179150,29.53,,2152,2.35,5.85,15.4,71.4,8.2,7.05,5.2,0.13,30.88,137,100,100,1.74,27270,6.97,29.28,34.66,4,13,6,,4.1,40.4,80.28,95.05,98.04,96.49,99.57,99.54,99.55,7.85,2.69,9.2,2.9,1583,2898,1339,3027,45.1,5.08,55.8,5.4,1870,16253,2038,17983,,,,85.26,4,,,97,3.2,42.75,1.05,32.36,802.04,,,,,101.77,13.02,0.32,1391,10378,1618.9,14.66,,,,,17609.13,255590,26626,157526,,25.4,1.10E+07,1.64,23.97,4.03E+07,,,102.96,147.34,3.65,,,12.38,35.9,5857,13253,1.15,102.6,100.03,99,19.02,67.45,9.47,4.03,15.7,7.2,2491,3928,3046,5161,93.15,505370,12.34,343701.53,6.78E+11,,-5.77E+10,4.9,4.2,4.9,3.33E+07,1.75,76.7
Sri Lanka,170,7,29,90.7,3730,100,99,19207,0.5,15,5.6,30,10,24,90,1.9,,,10,97,,,,,,,70,91,98,98,98,,85,86,2,2,,,,1.2,49.2,8.3,29,,,1245,1541,1252,33233,1546,990,10479,17,,85.8,105,30,213,60,,6,50.8,9.7,0.01,3.1,0.1,4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,166,95,234,118,314,82,711,13.5,0,5.4,0.4,1.7,59.5,10.9,8.5,10,8,0,62,64,59,60,11,9,14,72,76,69,58,8,,100,80,13,11,15,19,20,61,1,18.4,22.8,22,0.28,77,27,79,82,98,86,86,89,,,,,9.1,5.8,12.4,16.5,2.6,30.2,26.53,36.45,17.29,,59.7,1.19E+09,60,48,25.22,,1.80E+07,1.4,96,10.3,23.6,948,2180,26112,0.13,0.55,0.18,3.29E+11,16.2,2211158,15,9.5,17.2,840,1544,44.22,51412,0,4489,1.88,,,,,3.2,2.1,5,3.4,192,305,304,480,160,70,7,4,5,377.77,,,476.66,,,,33.51,103.38,1.13E+10,48.12,30.4,23.42,1.16,0.16,19330,26.53,0.03,51,2.21,1.89,7.8,46.2,4.1,2.29,,,42.76,85,98,79,4.42,3481,6.99,27.12,40.17,12,27,25,86,9.94,1.7,72,89.14,92.27,90.68,96.12,95.07,95.59,1.1,0.5,1.1,0.5,41,98,43,103,9.1,1.6,9.9,1.7,139,863,151,935,,,22.8,24.3,92,,,99,0.55,64.49,2.6,,,,,,,83.24,,,1311,14290,,,,,,,4201.37,89759,160,1873,3549,2.7,529650,1.05,,2.01E+07,22.7,,107.55,,,98,96,2,3.2,181,289,0.88,103.6,101.11,81,1.45,55.59,1.9,0.8,2.3,0.9,67,185,83,223,84.93,65610,14.24,11017.65,1.98E+10,24.28,-2.18E+09,21.4,12.1,21.4,2969868,0.26,15.1
Sudan,171,3,51,60.9,1780,37,45,37707,2.2,42,,20,6,40,64,4.4,,,1,49,,,0.4,50.2,,,7.6,72,79,84,78,,30,82,,,2,,,6.4,37.1,6.3,7,,5797,944,2897,3115,33354,21723,1531,11083,9,6,98.7,23,14,61,38,,3,62.9,,0.3,3,12.7,3.8,95.5,,52.6,,59.3,85.9,42.9,,26.6,1.8,,1.4,84.8,,50.3,,56.3,69.9,34.5,,13.6,1.7,,1.2,67.6,,27,84.3,,151.9,,1.8,,1.2,144,117,296,261,329,112,499,163,903,12.9,2.9,4.6,21.2,5.4,31.4,6.2,15.5,94,62,5,49,50,47,242,62,64,59,60,61,59,450,27,1,1454,419,89,94,84,60,17,23,5.2,47.6,38.4,31,0.3,,,64,70,78,24,35,50,,,,,14,10.1,18,,,,61.74,57.59,33.62,,48.43,1.83E+09,237,75,124.4,,8.10E+07,1.4,49.2,16.6,22.5,1856,2568,1269,0,0.26,0.18,2.45E+08,5.2,1048558,,12.7,15.4,1354,1664,79.24,2938622,1550088,1388534,4.23,,,,,4.8,2.9,5.3,3.1,322,485,345,524,145,7.6,66,8,-4,94.26,,,498.59,,,,17.89,,1.85E+10,71.21,24.82,6.5,8.26,0,675460,23.63,1.44,29,2.37,1.43,7,37.6,3.8,0.58,,,27.6,,50,70,5.88,2249,,27.78,,62,106,34,82,11.92,8,58.01,51.78,71.13,60.93,71.43,84.62,77.18,6.6,2.4,6.7,2.4,256,622,260,629,0.9,0.8,1,0.8,80,82,83,86,0.4,50.2,38.4,,590,,,60,0.22,41.5,2.24,,,,,,,162.94,,,24412,151690,,,305,0,6.4,159.3,1192.17,177338,79,,302641,1.8,606000,2.07,12.24,4.02E+07,,,46.87,,,53,44,6,7.1,509,599,0.72,88.87,84.41,36.3,1.59,38.6,3.1,2.4,3.2,2.5,233,281,245,293,57.53,2505810,6.39,10618.27,1.67E+10,10.13,-2.85E+09,111.3,94.4,111.3,1.51E+07,4.4,40.8
Suriname,172,5,62,89.6,7720,98,95,455,0.6,74,,26,9,29,90,2.5,,,35,71,,,2.7,,,,42.1,93,85,84,84,84,,,,,,,,8,41.9,8,31,,,4,,,688,,,191,16,,51.9,151,107,361,254,,5,58.1,0.8,,3.6,42.8,7.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,222,172,270,133,421,86,781,13.1,2.5,5.8,2.4,0.3,40.5,23.9,11.5,200,11,2,59,61,57,64,29,24,34,68,71,65,72,17,,1623,95,39,33,44,37,18,45,2.9,14.5,11.4,13,,,,79,92,97,60,82,89,,,,,10.5,8.6,12.6,,,,41.61,0.58,5.53,,97.02,4.39E+07,65,26,0.76,,6000000,1.9,84.5,12.9,30,23,55,1107,0.24,5.42,0.73,589340,51.8,212819,,14,27,26,51,56.42,2244,443,1801,2.42,,,,,6,7.2,10.1,12.5,12,9,22,15,238,42.1,13,,,,,,,23.53,,,30.7,,,,35.02,69.36,,0,147760,25.08,2.11,209,2.8,2.5,8.4,47.1,5.3,0.21,,,45.57,,99,92,4.48,7234,,38.3,,30,29,11,,12.7,7.1,69.93,87.2,92.02,89.6,94.14,95.62,94.88,1,1.9,0.9,1.4,4,2,2,2,13.2,7.4,13.6,7.6,13,18,13,19,2.7,,11.4,,110,,,91,0.45,96.71,,,,,,,,138.27,,,61,446,,,,,,,5672.28,,,,5782,4.3,20000,0.64,,438144,,,87.19,,,94,103,10.9,25.7,15,34,0.56,112.56,98.46,26.25,,56.16,11.8,3.4,15.8,4.7,7,16,9,21,150.69,163270,,2374.27,1.15E+09,,-1.25E+08,32.3,28.5,32.3,334373.84,1.13,73.9
Swaziland,173,3,73,79.6,4700,79,78,1134,0.8,24,,19,5,39,53,3.6,,62,35,74,,,0.1,25.5,,,46,86,91,95,95,,49,42,5,4,43,,1,13.7,62,9.4,21,,4700,32,110,77,6828,1316,70,171,63,12,41.7,219,86,353,138,,2,38,18.6,0,39.4,0,5.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,662,643,690,162,364,72,732,9.6,47,3.8,0.2,0.2,26.8,0.5,11.8,1550,94,184,34,35,33,1155,112,104,120,42,43,41,390,40,,34457,1084,164,154,173,91,4,5,14.9,36.6,9.1,9,4.6,82,23,51,60,87,46,50,64,,,,,11.3,9,14.7,8.9,3.2,14.6,35.09,80.93,11.17,,40.88,4.63E+07,1141,717,40.08,,1000000,0.9,74,8.9,12.3,27,39,0,,0.84,0.19,3.88E+08,19.4,113000,7,47.6,58.9,150,186,75.41,45002,21911,23091,3.45,,,,,3.7,2.2,4,2.4,7,10,7,11,138,48.1,271,2,-9,,,,,14.21,38.78,320.65,80.76,,5.31E+08,20.16,32.86,20.78,-1.9,-0.93,5410,17.95,26.35,146,2.26,4.04,10.9,64.1,6.3,0.23,,,84.83,,59,62,0.8,4384,4.34,45.99,50.4,110,452,194,42,5.49,4,40.68,78.35,80.9,79.56,89.76,86.98,88.42,20.2,4.9,20.6,5,16,57,17,57,9.3,1.4,9.6,1.4,4,24,5,24,0.1,25.5,9.1,7.53,370,,,60,0.16,157.38,1.94,,,,,,,92.38,,,3046,12227,,,,,,,2810.51,88379,70,,179336,3.3,36000,0.99,,1138227,69.2,,66.68,,,58,64,17.2,20.5,40,47,0.8,94.65,103.2,29.99,2.36,42.84,4.1,1.9,4.3,2,6,11,6,11,136.99,17360,26.02,956.3,1.56E+09,45.95,-1.02E+08,110.3,80.8,110.3,272571,1.66,24.1
Sweden,174,2,7,,34310,95,95,9078,0.4,84,,40,24,17,90,1.8,,,,,17,,,,,,,,96,99,4,99,58,64,84,70,,8,,0,81.2,13.4,,,,7270,,,97005,,5885,29190,109,,87.9,2533,3143,3119,3870,7,33,18.8,1.6,,3.3,0,8.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,64,49,78,116,176,30,379,0,0,3.4,0,0,59.4,36.3,0.8,10,1,0,73,75,72,6,3,3,3,81,83,79,3,2,,107,5,4,3,4,4,11,85,,,,4,5.96,,,100,100,100,100,100,100,9.5,10.4,,,,,,22,24.5,19.6,4.53,7.84,1.2,2722,,,6,6,1.73,5.98E+08,6.30E+07,1,,14.66,87.8,1516,6583,1918000,21.25,5.39,0.19,4.32E+11,100.5,9302000,2,1.88,8.2,249,485,52.99,19605,10086,9519,1.8,2.22,0.25,,,13.42,9.87,33.4,26.2,1209,1273,2634,2761,108,,1,,10,15440.42,158.41,17597.98,5781.67,25.67,34.49,43.66,48.7,124.08,,,47.37,161.37,2.87,7.55,275280,17.14,0.08,3598,1.37,7.53,13.6,84.6,8.9,16.67,16.47,1.83,41.07,138,100,100,2.34,31995,9.12,28.22,25,3,3,1,64,1.18,76.2,80.75,,,,,,,3.99,1.95,3.7,2,259,348,193,298,20.27,14.04,21.1,14.4,1197,1896,1253,1736,,,,113.04,2,,493.67,94,3.3,67.65,1.54,0.78,87.14,,,,,89.66,16.38,1.82,51,395,314.71,12.77,,,,,22921.59,256329,24546,98833,4490,76.1,6861000,0.36,18.93,9001774,,,103.94,50.82,5.65,96,96,19.94,90.9,2550,7848,1.46,99.6,,31.48,3.08,70.58,5.42,2.78,8,4.3,374,571,427,659,128.77,450290,20.87,48511.36,2.70E+11,,2.70E+10,3.9,3.5,3.9,7598241.5,0.4,84.2
Switzerland,175,2,5,,40840,89,89,7455,0.4,76,,40,21,16,90,1.4,,,,100,10,,,,,,,,86,93,,92,0,,27,,,5,,0,60.3,19.6,57,,,3847,,,79153,,4269,28812,110,,76.2,2598,3541,4312,5878,6,40,39.7,21.5,,2.8,71.4,11.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,63,47,80,116,142,32,358,0.2,0,7.5,0,0,62.1,29.5,0.7,10,1,0,73,75,71,7,4,4,5,82,84,79,5,3,,264,5,5,5,6,5,13,82,,,,6,10.83,,,100,100,100,100,100,100,7.5,7.9,,,,,,26.5,22.2,30.7,4.54,38.13,1.29,1545,,,7,7,6.36,1.66E+08,1.59E+08,0.86,,17.32,81.7,1404,4954,1657776,22.29,5.5,0.16,9.39E+10,91.6,6275000,1,1.14,8.3,108,389,47.34,30421,14490,15931,1.42,0.13,0.02,,,12.38,8.13,42.7,25.2,822,987,1948,2670,104,82,1,,,8305.25,59.77,7980.91,3651.02,24.96,27.99,63.07,47.87,,,,46.65,161.13,-0.31,13.99,12210,21.52,0.5,5694,4.59,6.81,18.7,59.7,11.4,21.93,7.49,1,41.1,,100,100,1.25,35520,7.55,28.36,33.68,4,3,1,,-0.08,50.9,81.44,,,,,,,6,1.6,6.2,1.7,137,378,131,379,31.85,10.71,44.6,13.8,750,2225,937,2754,,,,256.54,7,,,82,3.6,70.36,0.95,3.09,412.85,,,,,,5.24,0.7,53,406,262.42,12.8,,,,,22884.63,254428,21852,83972,23681,82.3,6105000,0.64,15.38,7489370,,,91.39,27.88,3.72,96,98,16.34,77.3,1481,5126,1.27,96.99,,100,1.24,70.35,5.51,2.24,10.8,4.6,290,413,374,678,164.38,41280,10.49,41165.04,2.59E+11,,2.57E+10,5.3,4.7,5.3,5592699,1.2,75.2
Syria,176,1,58,80.8,4110,92,97,19408,2.7,51,,21,5,36,90,3.2,42,,,93,,,,,,,58.3,92,98,99,98,99,48,89,,,,1,,0.8,47.6,5.9,14,,,2306,,,27288,11775,89,10342,14,6,100,52,31,109,66,,5,52.4,0,0.2,2.6,0,3.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,153,122,182,60,410,49,728,9.6,0,3.4,0.2,0,42.7,34.1,9.9,,3,,62,63,60,32,12,9,14,72,75,70,130,7,0,,40,13,11,16,30,15,56,17.5,28.2,8.5,6,0.49,,,83,89,95,88,92,96,,,,,35.5,26.2,44.7,,,44,39.71,76.22,19.68,,4.26,7.87E+07,,,285,3000000,7000000,2.3,93,19.9,44.8,955,2177,1200,0.01,3.71,0.94,2.46E+11,15.5,2345000,5,1,2,55,118,,70923,70923,0,,,,,,11.6,11.1,18,17.5,502,465,787,720,122,58.3,,2,-7,1411.2,,,947.71,13.64,25.22,,41.47,83.33,6.51E+09,23.81,,30.98,1.77,0,4610,17.37,,61.36,2.03,2.12,6.8,50.5,4.2,2.07,,,39.5,91,99,93,,4059,,35.35,,,,,,12.94,5.8,,73.63,87.76,80.84,90.22,94.61,92.45,0.9,0.8,0.9,0.8,55,51,58,54,30.5,3.4,32.9,3.7,143,1148,155,1239,,,,,160,,,98,,64.63,4.62,,,5.37,291.02,0.29,15.72,133.07,,,,,,,449.7,0.01,3,162.61,,30,62,,,3.3,600000,2.71,25.36,,,,111.36,,,,,12.5,20.1,454,733,0.6,94.34,95.36,20.1,,44.97,6.1,4.7,7.2,5.6,202,265,240,316,117.81,185180,17.43,68428.87,2.36E+10,,-9.49E+08,19,23.6,19,9560304,2.91,50.6
Taiwan,177,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10.74,,,,,,,,,,,,,,,38.07,1.66,,,,,,,,,,,,,,,10,,227.36,9930.69,,,,,,,,,,,,,,,,,,,,,,,1.69,0.07,,,,,,26069,,,,5,,,,,,77.29,,,,,,,,,,,,,,,,,,,,,,,,,,,,572,593.67,,,,,,,,,,,,9.04,0.4,,,1089.92,17.39,,,,,18748.12,,,,,,,,,2.29E+07,,,,109.46,4.78,,,,,,,,,,,8.48,,,,,,,,,,,,,245806.77,,,,,,,,,
Tajikistan,178,2,57,99.5,1560,95,99,6640,1.4,25,7.4,20,5,39,88,3.5,,,4,83,2,,1.3,1.9,,,37.9,,85,86,84,,33,86,,,,2,,6.4,22.6,5.5,61,,,1003,,,33165,,680,13267,50,,97,16,5,71,21,1,20,77.4,0,,2.5,0,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,200,177,225,90,753,64,1036,16.4,0,2.6,0.8,0.2,29.7,30.4,19.9,10,39,1,55,56,53,204,56,49,63,64,66,63,170,38,,123,298,68,61,74,49,10,41,,,,15,0.39,90,33,58,67,93,91,92,95,,,,,5.1,2.8,6.8,,,,29.23,30.4,23.95,,35.98,2.51E+08,192,83,18.04,,2.70E+07,1.2,83.4,5.46,13.2,135,304,30,4.58E-04,0.73,0.55,3.97E+07,4.1,47617,9,2.5,9.9,70,232,76.2,17361,14872,2489,3.35,,,,,3.71,2.17,2.5,2,28,25,44,52,,37.9,37,6,-3,2266.8,,,527.92,8.81,11.44,14.24,26.01,,1.03E+09,46.2,43.78,8.32,2.36,0,4100,14.3,0.21,18,3.86,1.14,5,22.8,5,41.77,,,52.81,,70,59,6.23,1413,7.8,31.26,33.59,59,86,27,86,9.52,0.3,66.47,99.22,99.68,99.45,99.85,99.84,99.85,4.1,1.9,4,1.9,40,73,40,72,6.48,2.78,9.4,3.7,64,143,77,170,1.9,68.9,,,100,,,84,2.03,96.82,2.17,,,,,,,,,,2422,18860,,,,,,,1268.82,89392,27,1359,7270,,,1.27,,7163506,74.9,,101.72,,,94,90,1.65,2.6,30,45,0.8,88.37,100.01,82.7,0.34,44.78,22.6,11.79,25.5,15.3,283,376,332,455,41.1,142550,9.82,5235.86,1.53E+09,18.28,-4.28E+08,77.7,60.4,77.7,1617902.6,0.31,24.7
Tanzania,179,3,139,69.4,980,97,98,39459,2.5,25,57.8,18,5,44,8,5.3,62,15,14,43,3,,16,58.2,,,26.4,88,90,83,83,,46,82,,,,,,35.4,59.2,13.3,11,,,267,1831,1520,13292,29722,365,822,4,8,83.4,27,11,45,18,,,40.8,4.5,0.01,18.5,3.9,5.5,88.6,89.5,39.9,38.6,47.4,83.3,48.7,50.9,35.9,2.2,2.3,1.8,89.8,90.9,64.6,65.2,77.7,89.7,25.2,25.7,12,1.4,1.4,1.2,84,44,30,76,93,160,137,2.1,1.5,1.3,138,108,504,493,518,151,435,115,847,16.8,9.3,2,22.7,1.3,26.9,0,21.1,365,47,19,40,41,40,312,74,73,74,50,51,50,950,35,,5909,459,118,116,120,85,6,8,4.9,44.4,16.7,13,5.45,,,46,55,81,34,33,31,4.4,,34,46,6.5,4.7,8.7,14.6,4.3,24.8,125.14,38.78,46.13,,38.8,1.48E+09,325,159,6.17,,5.60E+07,0.3,46.3,15.5,21.1,1626,2288,0,,0.13,0.13,4.78E+11,8.8,1640000,19,55.6,68.6,6009,7515,89.99,515102,285603,229499,5.16,,,,,3.9,3.9,4.2,4.3,368,402,397,424,119,26.4,68,5,1,61.2,,,530.28,,,,23.55,,7.80E+09,62.96,49.42,9.21,3.56,0,352570,18.19,6.41,17,2.2,2.9,12.6,56.9,5.1,0.83,,,30.84,,53,62,5.01,1018,7.29,16.87,34.62,76,140,66,82,7.59,1,51.8,62.17,77.51,69.43,76.2,80.92,78.4,8.7,2.2,8.8,2.2,245,888,248,905,2,0.5,2,0.5,57,164,58,168,16,58.2,16.7,4.67,1500,,,91,0.02,37.77,1.07,,,,,,,101.54,,,26279,181968,,,,,,,660.78,176850,8,,1387544,0.7,278000,2.55,6.96,3.68E+07,35.7,,56.46,,,55,53,17.4,20.1,1073,1248,1.04,98.9,94.17,8.63,1.76,37,7.2,4.4,7.6,4.6,405,529,425,561,19.18,947300,,4671.6,1.25E+10,26.28,-1.26E+09,128.4,121.3,128.4,9311645,4.14,24.2
Thailand,180,6,70,92.6,7440,94,94,63444,0.7,33,2,33,12,21,90,1.8,74,,46,97,,,,,,,71.5,89,96,98,96,,73,75,,,,2,,0.3,64.4,11.3,,,3601,10459,2151,,172477,53897,15480,22435,28,9,76.6,223,73,346,113,3,4,35.6,15.6,0.4,7.6,12.4,3.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,210,155,264,129,199,74,559,16.2,6.2,4.8,0.3,0.1,44.9,16,11.5,33,16,4,60,62,58,142,7,7,8,72,75,69,110,9,,1144,197,8,7,8,43,17,40,8.3,15.7,7,9,5.59,,,97,98,99,96,96,95,,,,,15.7,8.4,21.7,21.7,3.4,39.8,42.74,36.41,10.18,,-2.85,-1.65E+08,142,92,41.46,5000000,5.80E+07,1.6,97.3,4.13,16.6,1980,5282,105000,0.17,4.22,0.63,9.14E+11,48.5,2.74E+07,6,3.54,19.8,2620,6243,41.79,,,,1.85,5.4,0.08,5.84,0.09,2.39,1.7,10.7,7.1,1319,1715,2108,2744,112,76.7,20,2,9,1988.15,132.2,2059.61,1587.82,14.07,15.52,24.98,73.8,129.76,5.16E+10,30.02,46.16,60.59,4.57,0.28,145200,31.49,1.46,98,1.26,2.24,11.3,63.9,3.5,26.58,1.31,0.02,75.12,140,98,99,3.59,6869,6.34,44.09,41.98,8,62,47,75,4.52,11.3,70.1,90.52,94.9,92.65,97.85,98.1,97.98,26.22,9.52,38.6,17.2,4821,9831,4995,10195,15.92,6.18,25.5,10.4,2858,6070,3026,6429,,,,70.86,44,,444.71,96,0.37,129.57,1.15,,,23.69,369.08,0.3,4.69,92.85,,,12452,121598,928.6,5.28,265,0,0.45,7.06,7878.16,5665,541,352,611534,6,3716000,0.7,10.47,6.42E+07,13.6,,96.04,80.52,1.25,88,85,1.08,4.5,671,1037,0.7,102.41,99.74,98.5,7.54,45.72,1.83,1.21,4.3,2.9,743,964,856,1101,87.67,513120,17.26,270894.2,1.57E+11,100.87,-3.75E+09,9,13.7,9,2.03E+07,1.44,32.3
Timor-Leste,181,6,49,,5100,67,70,1114,4.3,27,,17,5,45,53,6.7,30,,,19,,,8,47,,,10,59,63,70,,,33,82,,,20,,,44.6,88.8,16.4,,,1657,45,22,36,1795,1665,14,79,22,20,37.2,150,46,169,52,,1,11.2,0,0.01,21.9,0,16.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,199,161,237,118,441,112,814,21.9,0.7,1.9,0.4,3.5,32.3,19.7,19.6,,98,0,50,52,48,556,47,41,53,66,69,64,380,29,,,789,55,48,63,63,11,26,5.7,55.7,40.6,10,,,,56,62,77,32,41,64,,,,,41,29.8,54.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Togo,182,3,89,53.2,770,75,86,6410,2.7,41,,18,5,43,78,5,46,11,18,62,,,38.4,47.7,,,25.7,82,80,88,,,19,71,,,,,,15,27.8,6.9,9,1,475,19,289,528,1937,1081,134,225,4,2,84.7,20,5,70,19,,,72.2,4.2,0.3,9.8,14.4,5.5,86.8,91.2,36.7,25.1,39.8,86.4,50.1,66.1,46.6,2.4,3.6,2.2,63.7,63.2,36.5,34.5,38.2,58,27.2,28.7,19.8,1.7,1.8,1.5,76.6,70.7,56.1,82.5,97,159.1,167.7,1.9,1.7,1.6,157.4,101.3,336,301,371,147,427,117,831,13.8,5.8,2.5,25.3,6.6,29,0,17.1,148,84,20,45,46,44,389,69,58,80,57,60,55,510,39,0,2879,787,107,92,122,79,9,12,2.6,29.8,23.2,15,1.24,,,40,59,86,3,12,24,,,,,14,7.9,17.7,,,,95.04,66.74,43.63,,13.88,8.28E+07,385,41,1.47,,7000000,0.3,62.4,19.8,28.1,310,447,0,,0.25,0.5,6.08E+10,8.5,220000,4,23.8,29.3,349,435,86.37,197720,131407,66313,4.8,,,,,4.7,3.3,5.1,3.5,51,65,54,69,114,16.8,104,3,-4,94.09,,,319.78,6.7,26.46,269.9,35.21,70.55,1.71E+09,81.66,36.91,7.96,3.72,-0.64,3860,18.38,3.35,18,3.95,1.35,6.9,25.5,5.3,0.09,,,48.65,330,71,52,0.18,888,,23.96,,71,169,29,71,0.93,5.9,58.21,38.46,68.68,53.16,63.55,83.65,74.37,15.1,5.5,15.3,5.6,85,210,87,214,2.4,0.6,2.4,0.6,7,29,8,29,53.6,60,23.2,,570,,,70,0.04,75.19,1.58,,,,,,,82.06,,,6494,48798,,,,,,,613.08,,,,120303,3.4,171000,2.73,21.42,5399991,,,65.03,,,78,55,16,19.3,165,200,1.03,73.43,75.97,31.6,1.4,32.41,3.2,3.4,3.4,3.6,46,40,49,43,16.44,56790,13.92,1344.69,1.48E+09,11.39,-6.14E+08,109,109.7,109,2501667.2,4.49,40.1
Tonga,183,6,17,98.9,5470,94,97,100,0.5,24,,21,9,37,90,3.8,,,,99,,,,,,,,,99,99,99,99,127,73,,,,1,,32.9,75.3,11.1,29,,,10,,,350,,4,30,34,,84.5,218,91,289,121,,3,24.7,3.6,,11.7,0,5.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,165,208,114,85,363,29,684,10,0,2,1.3,1.8,57.2,20.4,7.3,,3,,62,62,62,25,20,22,18,71,69,73,,12,,,34,24,25,22,29,9,62,,,,,0.75,,,100,100,100,96,96,98,74.9,56.1,,,,,,39,15.8,61.8,17.77,41.67,24.94,,319.04,3.18E+07,25,18,,,0,2.71,85.75,,,,,645,0.65,1.04,0.2,,29.8,3354,,,,,,78.15,248,248,0,3.83,,,,,,,,,,,,,160,33,3,3,,,,,,9.41,7.26,123.22,7.83,,8.18E+07,37.8,37.82,43.9,-2.36,-5.71,40,13.1,,103.94,1.2,3.79,13.7,75.8,5,0,,,32.93,,73.5,75,1.99,5135,,11.46,,20,11,11,73,9.65,3,73.05,98.98,98.83,98.91,99.35,99.27,99.31,,,,,,,,,,,,,,,,,,,,,,,,99,0.15,60.93,0.83,,,,,,,,,,3,32,,,,,,,5971.51,,,,,3.75,3750,0.37,,112422,,,136.63,,,54,53,,,,,,99.39,100.09,27,,56.22,,,,,,,,,,750,,117.25,1.67E+08,57.3,-9.46E+07,24.48,,24.48,23846.64,1.04,24
Trinidad and Tobago,184,5,35,98.5,16800,85,85,1328,0.4,13,,29,10,22,90,1.6,,,53,98,,,,,,,38.2,,91,88,89,88,,,,,,,,2.5,54.1,6.9,26,,,107,,,3653,,,1004,29,,88,438,307,811,568,,8,45.9,6.9,,3.6,0,4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,199,140,257,121,379,50,729,1.3,4.7,3.1,0,0,46.3,42.5,2,146,1,1,62,64,60,8,33,31,35,69,72,66,45,10,,2538,10,38,36,39,40,10,50,4.9,5.3,4.4,23,4.17,,,93,94,97,92,92,92,,,,,19.9,17.8,20.8,22.1,7.6,36.4,34.9,25.93,0.68,,-1.62,-2080000,9,13,8.16,,1000000,0.6,97.8,21.39,51.1,140,351,10803,0.82,30.38,1.72,1.30E+10,61.3,647870,8,8.76,27.1,73,186,40.16,14541,7015,7526,1.64,,,,,10.44,8.25,14.8,16,67,51,110,89,126,42.5,2,5,10,5038.07,,,9598.69,15.75,17.15,80.63,64.5,100,,,38.91,84.87,6.23,-2.26,2260,15.52,1.45,513.1,2.06,2.42,8.3,53.7,4.5,1.34,,,43.47,100,100,91,6.65,15352,5.9,59.05,38.88,32,4,7,,10.31,12.5,69.61,97.84,98.92,98.37,99.47,99.46,99.46,2.97,2.94,1.5,0.8,6,11,5,9,14.89,4.27,14.3,4.6,29,78,31,86,,,4.4,112.47,160,,,93,0.79,101.77,,,,,,,,124.04,,,22,138,,,,,,,19811.83,89903,17,1261,13083,7.9,103000,0.35,,1075066,21,,87.98,,,93,95,51.42,60.5,187,349,0.43,100.55,100.01,51.1,14.65,40.27,7.58,3.81,11.3,9.2,48,51,63,66,156.16,5130,27.94,32657.23,1.19E+10,,1.99E+09,35.1,20.2,35.1,161494.08,2.67,12.2
Tunisia,185,1,8,74.3,6490,97,96,10215,1.1,66,2,27,9,25,90,1.9,63,,33,90,8,,,,,,62.6,96,98,98,98,80,81,90,7,10,,3,,0.9,43.7,6.5,19,4,,2452,890,3936,28537,10799,2909,13330,29,11,81.7,214,70,488,159,3,13,56.3,16.6,0.3,2.1,26,5.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,136,106,165,78,417,72,685,7,0,9.7,0.2,0,52.7,22.8,7.6,10,3,0,62,64,61,25,19,16,21,72,75,70,100,13,,115,28,23,20,25,18,19,63,,,,7,1.23,8,3,84,94,99,64,85,96,,,,,18.3,8.8,27.8,26.6,1.9,51,7.28,62.88,11.65,,37.05,3.65E+08,24,21,62.86,,1.68E+08,1.3,89.9,14.2,19.6,613,851,17573,0.18,2.18,0.37,4.37E+09,56.3,3562970,8,5.5,6.8,229,284,47.72,18082,5755,12327,1.93,,,,,5.8,6.3,6.3,6.9,254,238,276,257,114,62.6,3,12,-4,1193.94,,,842.66,21.08,24.43,56.42,47.99,,1.77E+10,64.99,27.61,69.18,2.52,0.04,10560,23.37,0.05,158,3.06,2.44,6.5,44.3,5.5,4.38,,,50.64,,96,93,3.22,6461,5.96,28.66,39.8,20,11,9,90,1.88,9.5,73.7,65.35,83.39,74.3,92.24,96.4,94.34,2.5,1.1,2.5,1.2,47,99,47,100,27.1,1.8,27.8,1.9,73,1023,75,1049,,,,10.03,120,331,416.67,96,1.34,82.52,1.63,,,,,,,96.54,,,272,2785,,,72.68,0,0.56,55.58,5386.78,72604,146,2040,3227,4.8,472132,0.97,,1.01E+07,7.6,,99.17,,,97,98,7,8.1,274,315,0.83,103.58,95.69,65.8,12.01,59.69,5,2.9,5.3,3,121,197,126,208,95.89,163610,21.25,21976.67,2.42E+10,25.75,-1.46E+08,25.4,23,25.4,6548937,1.55,65.3
Turkey,186,2,51,87.4,8410,89,93,73922,1.3,68,3.4,27,8,28,,2.2,54,,,83,,,,,,,71,69,96,96,96,76,80,89,,,,3,,0,71.5,16.5,27,,,23798,,5360,217685,25740,24740,116014,29,4,70.3,461,290,645,406,3,16,28.5,13.2,69.7,1.9,51.7,5.6,98.5,,54.9,,68.9,90.3,43.6,,21.4,1.8,,1.3,90.8,,45,,69.1,84.4,45.8,,15.3,2,,1.2,39,,20,24,,63,,2.6,,1.7,50,30,123,91,153,95,542,42,757,12.2,0,4,0.5,0.3,49.1,19.8,14,,5,,62,63,61,29,24,23,25,73,75,71,44,16,,,32,26,25,27,31,13,56,9.1,15.6,3.5,16,1.37,,,95,97,98,72,88,96,22.7,,,,8.4,4.4,11.1,35.5,19.2,51.6,40.87,53.56,10.74,,6.33,4.59E+08,29,27,16.53,4.70E+07,8.45E+08,2.7,83,9.7,22,2970,6729,1589768,2.21,3.56,0.43,4.07E+13,59.6,3.47E+07,23,2.4,4.5,726,1364,51.23,828363,499165,329198,2.14,26.12,0.38,12.81,0.18,5.8,5.4,9.1,8.5,1654,1625,2571,2545,342,71,5,20,7,1897.59,161.98,2325.32,1182.34,14.12,17.8,40.72,27.42,129.33,1.69E+11,46.66,26.44,86.85,2.7,0.3,101750,24.77,,383,2.17,5.43,13.9,71.4,7.6,,8.98,0.13,33.98,128,96,96,6.02,7786,5.34,26.57,43.64,26,13,10,89,5.39,15.3,71.54,79.58,95.27,87.37,93.3,98.02,95.6,2.5,1.4,2.6,1.5,429,672,455,713,44.1,4.9,47.7,5.3,1453,11884,1572,12862,,,7,44.46,70,,,91,1.3,52.36,2.84,26.87,385.66,,,,,101.1,,,3423,32382,649.55,3.41,,,,,7725.62,251042,1885,28080,,5.1,3703000,1.28,25.58,6.97E+07,27,,86.4,89.27,1.28,93,82,5,8,1301,2099,1.88,89.37,95.18,34,15.65,62.69,10.4,5.4,12.2,6.4,1618,2821,1915,3320,65.75,783560,,247873.27,2.46E+11,31.01,-1.83E+10,32.6,34.1,32.6,4.85E+07,2.05,67.3
Turkmenistan,187,2,29,98.8,3990,,,4899,1.4,47,,24,6,31,90,2.6,83,,,100,4,,,,,,61.8,,99,98,98,,58,81,,,,1,,0.1,66.7,14.9,43,,,703,,,23026,7846,926,12210,47,16,100,172,108,259,161,2,25,33.3,0,,1.9,6.1,4.8,97.3,98.3,92.7,96.8,96.6,98.2,4.6,1.5,1.6,1,1,1,87.6,79.7,74.1,90.9,92,81.8,13.5,-11.2,-10.2,1.2,0.9,0.9,45,35.7,27.1,88.3,69.8,133.3,105.5,1.5,1.5,1.4,99.8,72.7,291,211,369,99,844,74,1115,15.6,0,4.8,0.9,0.1,37.8,22,18.8,,9,,54,57,52,65,45,38,52,63,67,60,130,37,,100,78,51,44,58,35,13,52,,,,6,1.18,1,0,,,,,,,10.3,,,,,,,,,,16.31,70.36,19.59,,3.54,2.93E+07,70,66,1760.71,,1.00E+07,2.6,99.5,8.5,17.9,155,349,0,,8.41,,,2.2,9187,,5.2,13.5,96,274,57.35,,,,2.5,0.14,0.04,,,1.3,1.1,2.2,2.3,19,19,43,32,,48,10,20,-9,1731.33,12.34,2491.88,3380.74,,,,65.04,,1.06E+09,14.03,46.67,10.41,0.76,,41270,22.92,,156,1.6,3.2,14.9,66.7,4.8,4.89,0.16,0.04,47.79,,77,72,17.08,4247,6.14,40.11,40.76,47,31,21,81,9.79,1,62.97,98.26,99.32,98.78,99.81,99.81,99.81,5.6,2.5,5.5,2.4,43,76,42,75,18.3,4.1,22,4.8,73,254,88,315,,,,,31,,,99,4.18,105.86,2.9,16.6,3353.03,58.77,11867.46,2.67,538.75,,,,492,4343,100.16,7.39,191.74,0.01,0.55,110.26,3000.96,89333,95,,,,,1.4,,4952081,,,,19.34,3.91,,,1.5,2.5,19,31,0.02,,100.01,81.2,5.57,40.29,19.2,11.2,23.1,13.5,194,251,237,309,27.4,488100,,41634.03,2.90E+09,57.39,-6.34E+08,58.1,65.7,58.1,2232969,1.88,46.2
Tuvalu,188,6,,,,,,10,0.4,46,,,8,34,,3,,,,100,,,,,,,,,95,97,97,,29,100,,,,2,,4,92.3,16.1,56,,,2,,,50,,2,10,46,,20,189,259,205,281,2,9,7.7,0,,5,0,11.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,262,270,253,129,541,69,1046,13.2,0.3,3,0,1.2,40,28.8,13.5,,55,,53,53,53,295,31,32,30,65,65,64,,21,,,504,38,38,37,34,11,55,,,,5,1.37,,,92,93,94,84,89,93,,,,,36.4,32.7,41.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Uganda,189,3,159,68.1,880,,,29899,3.2,13,,15,4,49,4,6.6,47,25,27,42,3,,9.7,61.8,73.5,53.5,23.7,85,68,64,68,68,44,73,,,,,,28.5,26.9,10,11,,,363,1042,1702,18969,4128,688,2209,7,2,51.8,39,7,143,25,,,73.1,0.2,0.2,8.9,0,7.2,76,76.6,26.2,28.4,37.7,80.4,49.8,48.2,42.7,2.9,2.7,2.1,81.7,73,64.1,66.3,67.1,76.7,17.6,6.7,9.6,1.3,1.1,1.1,73.3,64,32,90.9,108,164.2,172,1.8,1.6,1.3,147.4,115.4,495,474,518,146,422,154,824,17.2,7.7,2.2,23.1,3,23.6,2.1,21.1,316,60,23,43,44,42,355,78,75,81,50,51,49,550,30,,6304,561,134,128,140,84,8,8,4.9,44.8,19,12,,99,85,60,64,90,34,33,29,4.1,,53,55,16.6,15.3,17.3,12.1,3.2,20.9,160.04,64.5,33.32,,41.32,1.18E+09,370,142,0.77,,1.50E+07,0.9,42.1,13.4,18.3,838,1174,850,0,0.08,0.08,2.05E+12,4.6,1165035,14,29.3,36.3,1932,2429,107.67,,,,6.46,,,,,7,6.2,7.7,6.7,347,352,377,382,123,23.7,88,11,-1,,,,,11.28,33.98,188.91,13.19,,4.43E+09,51.58,48.27,4.85,4.34,0,36270,21.31,6.06,22,5,2,10,28.6,7,2.34,,,27.07,,54,60,2.89,991,5.7,18.3,45.7,79,160,71,73,8.03,1.7,50.61,57.71,76.81,66.81,71.21,82.74,76.64,6.1,5,6.2,5.1,317,362,322,369,3.3,2.1,3.3,2.1,126,173,129,179,0.2,,19,1.18,880,,,86,0.08,33.33,2.3,,,,,,,98.5,,,25415,168485,,,,,,,896.29,177305,92,1679,981514,0.5,120500,3.23,4.56,2.73E+07,37.7,,54.43,,,61,53,32.5,38,1314,1547,1.17,97.63,86.06,23,0.95,48.37,6.6,5.2,6.9,5.6,288,322,310,339,24.66,241040,12.42,2308.32,7.79E+09,30.36,-1.21E+09,138.2,135.9,138.2,3647344.8,4.03,12.6
Ukraine,190,2,29,99.4,6110,90,90,46557,-0.8,68,2,39,21,14,90,1.2,,,6,100,,,,,,,,,98,98,96,11,65,,34,75,,4,,0.5,55,8.8,87,,,19169,,,388444,,22257,143728,85,,91.4,298,88,542,159,5,31,45,1.2,,2.7,0.5,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,264,142,384,139,637,135,891,1.2,4.9,14.5,0,0,42.3,30.7,6.3,47,13,1,59,64,55,106,20,17,23,67,73,61,18,7,,1036,114,24,20,27,9,20,71,26.5,22.9,4.1,5,6.09,10,5,97,97,97,83,93,97,11.3,,,,26,22.2,29.8,,,,28.73,71.29,10.4,,7.86,3.96E+08,102,84,70.68,3.08E+08,2.90E+07,4.4,99.8,18.04,39.9,7892,15340,0,,6.96,1.29,6.17E+10,64.5,1.37E+07,10,5.71,14.1,2578,4885,44.39,161322,79848,81474,1.22,37.49,0.8,40.94,0.87,18.36,10.52,27.5,17.3,5817,5806,8373,8472,,65.6,14,5,6,3246.04,185,3936.44,3040.79,14.03,22.67,32.28,51.48,,3.33E+10,39.1,49.07,88.45,9.06,0.32,95750,22.58,1.46,128,3.3,3.7,8.4,52.8,7,3.66,2.81,0.06,50.64,,98,96,3.4,5583,9.03,32.35,28.24,20,45,31,,24.55,9.8,67.31,99.17,99.74,99.43,99.83,99.78,99.8,4.4,1.8,4.2,2,881,1320,970,1282,47.16,5.02,58,7.4,2928,15800,3678,17639,,,4.1,28.99,35,,,96,2.95,81.68,2.32,73.04,1554.17,19.38,412.46,1.03,21.83,,20.09,0.43,6489,57640,294.05,2.29,,,,,4145.12,90600,11670,22742,394311,2.8,1327000,-0.73,13.06,4.70E+07,19.5,,104.93,140.03,2.98,,,8.34,14.5,2542,4646,0.81,98.74,100.06,97.42,10.5,57.26,22.48,8.7,30.2,12.6,4866,7652,6046,9145,120.55,603550,17.12,327129.25,4.52E+10,58.23,6.71E+08,23.8,13.3,23.8,3.19E+07,-0.53,67.8
United Arab Emirates,191,1,37,88.5,31190,88,88,4248,3.5,77,,30,2,20,,2.3,59,,,100,,,,,,,,,92,92,92,92,17,73,12,23,,3,,0,72.9,8.7,18,,,850,,,10340,,1200,4960,35,,77.9,491,716,673,982,4,17,27.1,10.4,,2.1,0,2.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,78,62,84,100,369,72,625,6.3,0.1,15,0,0,55.7,18.2,4.7,,2,,64,64,64,16,8,7,8,78,80,77,37,4,,,24,8,7,9,12,28,59,,,,15,0.02,0,1,100,100,100,95,97,98,,,,,19.5,13.2,25.2,14.4,2.6,26.1,20.37,6.7,2.25,,2.13,5360000,16,3,1150,2.50E+07,2.32E+09,1.6,100,10.5,24.1,77,179,129320,3.15,48.27,1.18,6.74E+10,100.8,3683117,,5.3,9.9,36,73,26.5,20190,10376,9814,2.31,,,,,7.7,7.3,12.2,11.6,43,134,69,220,,27.5,2,,-8,13708.09,60.7,23680.45,11435.84,7.08,9.22,29.04,94.33,,,,13.41,140.61,,,3120,24.42,,833,0.74,1.86,8.6,71.6,2.6,1.93,,,76.31,,98,100,3.4,33487,,55.72,,8,7,2,73,14.29,29.4,78.46,87.79,88.99,88.67,95.49,97.88,96.97,5.2,0.6,5.5,0.6,4,77,4,82,12.7,4.8,13.7,5.2,21,189,23,205,,,,173.91,54,,,92,2.02,155.67,1.97,41.25,16093.09,46.99,18332.47,6.12,2385.68,141.73,,,78,1003,376.49,53.65,2752.52,0.39,97.8,38155.25,19525.88,89666,,,,12,450000,3.9,32.41,2563212,,,96.23,55.39,21.61,77,74,6.5,10.4,84,136,0.37,100.25,97.56,100,22.58,42.03,10.5,7.4,12.3,8.7,38,167,46,201,104.11,83600,1.72,123733.28,1.04E+11,,,8.8,5.6,8.8,3147991.2,3.72,76.7
United Kingdom,192,2,27,,33650,99,98,60512,0.4,90,,39,22,18,90,1.8,,,,99,,,,,,,82,,86,92,,92,0,,75,70,,10,3,0,87.4,16.5,39,3,,58729,14439,20035,740731,651492,29726,133641,128,112,92.2,2434,2939,2784,3361,5,23,12.6,7.8,0.4,5.5,0,8.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,80,61,98,143,182,26,434,0.9,0,4.4,0,0,59.1,33.4,2.2,10,1,0,71,72,69,15,5,4,5,79,81,77,8,3,,137,12,6,5,6,10,9,82,,,,8,11.75,,,100,100,100,,,,23,22.3,,,,,,35.7,34.7,36.7,25.12,70.09,0.95,7883,,,14,14,6.58,9.12E+08,3.90E+07,0.7,99,20.6,87.2,13303,40928,9894153,16.43,9.04,0.32,1.85E+11,109.7,6.11E+07,,2.09,8.3,1529,3181,51.62,3212,17,3195,1.82,38.64,0.64,12.47,0.21,15.71,9.38,39.2,26.5,8278,8912,16562,19407,113,84,1,,10,6253.49,398.37,6591.04,3884.19,17.95,26.97,27.56,26.59,125.49,,,45.99,165.28,8.76,4.11,28450,17.1,0.19,3064,1.06,7.14,16.2,87.1,8.2,28.02,1.78,0.03,30.21,120,,100,1.16,31580,6.14,24.27,35.97,5,6,3,,2.23,53.8,79.19,,,,,,,2.78,1.45,3.3,1.7,970,1369,1049,1589,37.58,19.67,48.1,24.9,13390,21959,15424,24300,,,,137.02,13,533.67,506.67,82,2.2,40.24,2.7,94.86,1569.49,88.17,1458.77,0.48,7.96,104.9,18.47,0.31,869,6687,1802.2,10.89,1809.19,0.01,3.87,64.03,22190.52,284910,52593,326094,64272,60,3.59E+07,0.65,26.05,6.04E+07,,,,227.27,3.76,,,15.59,52.2,9834,27463,1.63,101.47,,100,10,74.79,7.03,2.86,12.5,5.5,2719,4464,3675,6311,112.33,243610,27.92,546416,1.62E+12,,-8.02E+10,6.1,5.4,6.1,5.40E+07,0.72,89.7
United States of America,193,4,43,,44070,93,91,302841,1,81,,36,17,21,90,2.1,,,,100,23,,,,,,72.8,,93,96,92,94,88,64,,,,16,,0,45.8,19.1,32,23,,463663,,651035,2669603,4138567,249642,730801,94,145,23.5,3074,3074,6714,6714,9,26,54.2,66.4,0.8,3.7,28.7,15.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,109,80,137,134,188,47,460,0.1,0.1,10.3,0,0,56.9,31.3,1.3,5,0,0,69,71,67,4,7,6,7,78,80,75,11,4,,508,3,8,7,8,9,17,75,7,3.3,1.1,8,8.61,,,94,99,100,99,100,100,33.2,31.1,,,,,,23.9,21.5,26.3,42.93,45.27,1.19,19705,,,,,17.12,7.09E+09,4.56E+08,1.19,99.3,16.65,101.1,42913,209995,4.80E+07,16.2,19.53,0.5,2.05E+12,71.5,1.81E+08,5,1.86,7.7,5214,13162,49.42,1704396,750414,953982,2.05,574.21,1.94,580.19,1.96,13.48,9.2,44.6,33.1,29629,29716,80427,85263,113,64.2,,,10,13647.58,4257.37,14395.94,7892.85,21.98,24.67,23.5,10.51,106.87,,,46.23,130.98,0.88,-0.06,3030890,19.31,0.65,6657,8.33,7.22,0.7,45.4,15.9,29.92,61.78,0.21,16.29,110,100,100,2.24,41674,5.44,22.84,40.81,7,,,,3.02,66.3,77.89,,,,,,,4.55,1.78,5.5,2,4837,8381,4791,10200,44.11,26.15,61.9,36.1,65792,94640,86024,118873,,,1.1,136.89,17,525.33,506.67,93,2.3,21.3,4.07,623.28,2107.58,511.15,1728.4,5.79,19.57,97.17,186.26,0.63,,,20802.18,25.69,6895,0.01,29.92,101.18,30550.69,381737,167334,1474028,1190137,76.2,2.24E+08,0.97,43.28,2.96E+08,,,,2342.71,7.92,,,12.03,124.8,32442,239930,0.63,100.3,,65.34,26.29,75.97,3.38,1.69,7.2,3.3,5406,7761,8050,13710,191.78,9632030,11.19,5776431.5,1.10E+13,,-7.14E+11,8,7.1,8,2.40E+08,1.39,80.8
Uruguay,194,5,64,96.8,9940,100,100,3331,0.2,92,2,33,18,24,90,2.1,,,55,100,,,,,,,77,,96,94,94,94,77,84,54,62,,12,,0.5,43.5,9.2,29,,,3936,,,2880,,,12384,9,,31.1,430,207,989,476,,37,56.5,68.9,,0.2,47.8,8.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,125,88,164,170,208,55,518,2.3,0.2,7,0,0,48.1,36.9,5.4,50,3,1,66,69,63,27,13,11,14,75,79,72,20,7,,362,31,15,13,16,12,15,72,9.4,13.9,6,8,7.74,7,0,100,100,100,99,100,100,,,,,23.2,24.5,21.4,32.6,28,37.1,62.42,85.45,9.2,,4.21,1.46E+07,28,19,5.34,1000000,2.00E+07,2.5,99.3,21.91,83.1,637,1931,61186,1.85,1.63,0.19,3.46E+07,35.5,600000,10,3.94,18.8,162,392,59.55,8658,3610,5048,2.12,,,,,17.34,12.19,39.6,29.5,438,418,811,854,162,84,3,37,10,2007.13,,,875.15,7.58,8.7,20.08,31.05,,1.46E+10,90.57,44.16,65.37,5.1,0.22,15060,13.14,0.5,404,4.66,3.44,10.1,42.5,8.1,2.2,,,28.47,,100,100,5.83,9266,4.46,31.54,46.14,12,12,11,84,0.55,20.6,76.11,97.27,96.24,96.78,99.02,98.15,98.58,2.2,0.8,1.6,0.6,27,49,19,35,46.16,6.18,60,6.7,158,1017,160,1202,,,6,0.58,27,,,95,3.65,43.84,1.32,,,,,,,90.77,,,109,1026,,,,,,,8108.07,496,55,553,9081,13.3,430000,0.12,38.23,3415920,,,92.53,,,89,93,22.1,46.6,547,1071,1.23,105.59,100.88,9.96,3.61,59.25,11.95,5.23,18.6,7.2,168,280,210,396,104.11,176220,18.7,5558.29,2.16E+10,21.15,3.93E+08,15.18,13.6,15.18,3041265.2,0.27,92
Uzbekistan,195,2,40,,2190,78,79,26981,1.4,37,2,23,6,32,90,2.6,79,,30,100,,,,,,,64.9,,99,96,98,,48,81,,,,2,,1.7,50.2,8,52,,,5194,,,290162,,828,70564,109,,97.1,89,15,177,30,,27,49.8,0,,4.1,,4.7,,,,,,,,,,,,,,,,,,,,,,,,,66.7,,34.1,35.5,,102.2,,2.9,,1.6,87.5,53.4,185,142,229,74,663,50,899,14.8,0,7,0.8,0.1,38.1,22.4,16.8,10,17,0,59,61,58,121,38,32,43,68,70,65,24,26,,174,145,44,36,51,30,13,57,12.8,19.6,4.4,7,1.51,,,82,88,98,95,96,97,7.1,5.4,,50,,,,12.8,1.2,24.2,35.17,65.56,27.97,,5.85,1.69E+08,117,81,357.91,4000000,5000000,1.4,99.9,7.62,17.3,789,1755,8271,0.03,4.18,2.81,4.46E+11,2.7,544100,,3.78,10.7,379,1149,61.08,,,,2.49,1.06,0.04,,,3.5,2.84,3.7,3.3,202,155,329,313,,64.9,16,,-9,1659.39,47.71,1776.72,1797.66,,,,37.85,,4.30E+09,29.5,44.6,9.61,0.31,,32950,23.51,0.06,26,2.62,2.39,7.4,47.7,5,,1.39,0.05,28.66,,78,82,5.76,1975,7.2,23.16,36.77,40,53,21,81,21.37,3.3,67,,,,,,,4.2,2.1,4.1,2.1,203,325,199,319,10.98,3.12,17.1,4.9,396,1093,470,1314,,,15.3,0.25,24,,,99,2.74,57.62,0.54,44.03,1639.77,54.96,2046.8,1.73,64.27,,,,4355,38978,114.49,1.56,126.13,0,0.59,22.12,4242.98,90619,515,881,9957,,,1.16,8.34,2.69E+07,27.5,,98.14,47.61,1.77,97,96,2.02,2.4,109,171,0.85,97.4,,87.3,4.67,48.87,11.39,5.99,18,8.6,679,1118,832,1383,10.96,447400,,112356.56,1.79E+10,25.15,,48.9,34.3,48.9,9603424,0.84,36.7
Vanuatu,196,6,92,75.5,3480,86,88,221,2.5,24,,20,5,39,,3.9,,,,92,,,,,,,,88,65,76,76,,73,81,,,,,,8.8,64.7,10.9,41,,,,,,360,,,30,17,,50,90,44,139,68,,1,35.3,7.5,,11.9,0,4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,187,166,207,92,409,38,772,11.5,0.3,2.7,0.6,0.3,42.3,29.4,13,,8,,59,59,58,58,30,28,30,69,70,67,,18,,,65,36,34,36,39,9,51,,,,6,0.75,,,52,59,86,42,50,78,25.2,14.4,,,25.6,19.6,34.1,28.8,8.1,49.1,47.42,12.06,14.1,,183.08,3.95E+07,60,35,,,,1.2,88,11.1,24,7,16,59,0.03,0.43,0.12,4.84E+09,5.8,10504,6,12.1,21.7,8,14,75.7,2125,1076,1049,3.74,,,,,2.5,0.9,3.6,1.5,0,2,1,2,112,28,10,1,,,,,,14.67,100.87,297.9,39.81,,8.21E+07,24,46.71,9.13,3.6,0.21,4400,20.01,,67,1.49,2.81,12.8,65.3,4.3,1.18,,,60.46,,78,60,0.84,3477,,8.87,,31,27,16,81,2.29,3.5,69.63,,,74,,,,20.3,6.5,21.3,6.8,4,14,4,15,12.7,5.8,13.6,6.4,4,7,5,7,,,,,130,,,70,0.11,48.64,,,,,,,,,,,21,182,,,,,,,2443.19,,,,,1.4,3000,2.56,,205754,,,85.92,,,88,86,1.2,2.3,1,1,,94.76,,23.9,,77.5,2,6.6,2.4,7.7,4,2,4,2,38.36,12190,18.28,87.94,2.56E+08,81.85,-3.74E+07,39.94,43,39.94,50611.01,4.11,23.5
Venezuela,197,5,81,93,10970,91,91,27191,1.7,94,18.5,25,8,31,90,2.6,,,,95,,,,,,,,51,55,71,71,71,71,83,,,,6,,0.1,49.5,9.3,9,,,13680,,,28000,,,48000,11,,88.6,196,164,396,332,,19,50.5,3.6,,0.6,20,5.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,142,95,187,107,241,90,496,9.9,0.2,6.5,0,0,52.6,24.8,5.9,23,5,1,64,67,62,41,18,15,20,74,78,71,57,11,,598,52,21,18,23,24,32,45,,,,7,6.67,,,70,89,93,47,83,90,,,,,14.8,13.9,15.3,29.8,27,32.5,90.78,24.59,4.04,,1.79,4.87E+07,42,26,1.16,5000000,2.70E+07,2.1,95,12,34.3,1327,3514,356302,1.34,5.84,0.72,1.09E+13,46.7,8420980,29,10.18,36,1705,3845,,249416,112296,137120,,0.05,0,5.25,0.21,5.7,5.77,11.2,11.6,631,537,1107,968,255,76.8,6,7,6,2848.37,112.34,4427.22,2292.77,,,,39.69,,4.57E+10,32.07,,60.75,1.78,0.81,477130,22.61,0.88,247,2.57,2.13,7.9,45.3,4.7,2.58,17.62,0.69,20.03,126,71,83,,9876,3.25,55.49,48.2,,18,14,83,28.97,12.5,,92.72,93.26,92.98,98.07,96.33,97.2,4.02,3.46,3.5,3.1,401,396,291,293,16.86,9.26,18.6,10.5,964,1504,998,1565,,,,3.46,96,,,76,,54.89,1.11,28.11,1107.85,28.11,1107.85,4.32,170.05,154.49,,,1502,13735,573.9,8.26,2937,0.04,80.01,3153.15,,2348,756,,134701,8.2,2145000,1.71,36.93,,,,91.39,68.8,2.71,,,19.94,42.4,1511,3263,0.03,103.26,101.81,33.6,,40.47,12.25,7.8,19.2,12.2,870,1194,1151,1606,98.63,912050,15.59,148117.2,1.33E+11,65.19,2.79E+10,21.1,18.1,21.1,2.48E+07,2.2,93.4
Vietnam,198,6,25,90.3,2310,91,96,86206,1.4,27,,25,8,29,87,2.2,29,,14,88,10,,5.1,2.6,,,78.5,86,83,92,67,,85,92,2,7,,,,2.2,32.4,6.8,26,,,,,,61810,,24080,44960,8,,89.5,86,15,264,46,3,6,67.6,2.5,,1.4,38.8,6.6,93.7,99.7,41.6,58.1,82.2,99,52.1,41.6,16.8,2.3,1.7,1.2,93.1,97.8,49.2,64.4,80.7,94.3,43.9,33.4,13.6,1.9,1.5,1.2,37.6,37.1,19.4,28.6,15.8,66.2,52.9,2.3,3.3,2.2,35.6,16.2,155,116,194,123,318,72,664,10.4,1,4.9,0.4,3.4,56.4,11.9,11.5,15,21,2,61,63,60,173,15,15,14,72,75,69,150,12,,421,225,17,16,17,40,16,44,2.5,35.8,20.2,9,0.85,78,43,90,92,98,56,65,88,,,,68,2.2,1,3.2,24.3,2.5,45.7,18.94,30.93,20.97,,22.18,1.91E+09,,,19.48,,3.08E+08,1.9,87.7,7.1,16.2,2284,5268,210024,0.25,1.22,0.6,1.35E+14,11.4,4960000,5,11.2,20.3,3334,6224,54.31,1112819,405514,163724,2.14,,,18.27,0.22,7.6,5.2,11.8,8.3,1664,2220,2601,3428,124,76.8,,2,-7,572.69,,,617.24,,,,69.36,,1.92E+10,36.92,48.45,30.61,3.68,0.12,129310,35.57,0.51,37,4.46,1.54,5.1,25.7,6,5.34,,,73.54,,92,85,7.17,2142,7.14,41.02,37.05,16,,,,8.19,12.7,73.94,86.92,93.92,90.28,93.59,94.18,93.88,22.3,5.5,23.7,5.8,1720,6515,1827,6933,27.4,6.7,29.6,7.3,2043,7480,2219,8089,15.8,6.5,26.7,0.87,130,,,95,0.53,130.73,2.65,,,6.89,82.48,0.22,2.63,97.76,,,,,,,398.41,0,3.12,37.34,2442.6,90137,727,363,258254,1.3,1044000,1.3,13.36,8.35E+07,28.9,,92.38,,,104,98,1.7,2.8,475,756,0.67,95.99,99.37,25.1,1.12,38.01,18.6,8.4,21.8,10,2661,5190,3159,6104,35.62,329310,,101826.23,4.48E+10,47.11,-1.94E+09,20.2,23.4,20.2,2.19E+07,2.9,26.4
West Bank and Gaza,199,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,84.9,61.79,,,288.49,1.12E+09,21,1,,,0,,97,,,,,7665,0.21,0.17,,4.80E+09,29.6,974345,,,,,,95.73,78546,38687,39859,5.09,,,,,,,,,,,,,,41.6,4,,,,,,,,,,14.05,,,,13.1,39.81,,,90,25.72,,,,,,,,,,,68.19,,78,92,2.82,3542,,,,21,10,0,100,4.89,6.6,73.16,88.02,96.68,92.39,98.82,99.15,98.99,,,,,,,,,,,,,,,,,,,,111.15,100,,,99,0.84,,,,,,,,,,,,140,1241,,,,,,,2686.55,,,,,4.6,169000,3.31,,3761904,,,95.32,,,98,99,,,,,1.29,102.91,99.66,100,,,,,,,,,,,90.41,6020,,655.86,3.78E+09,,,28,25.8,28,2596216,3.33,71.6
Yemen,200,1,83,54.1,2090,65,85,21732,3,28,,17,4,45,,5.6,14,,,20,,,,,,,23.1,52,74,87,87,87,43,80,,,3,,,24.6,46.4,5.6,7,2,6025,850,792,4709,13746,8063,2638,6739,7,4,95.2,38,19,82,40,1,3,53.6,,0.3,2,,4.6,62.5,49.7,16.4,6.8,14.3,46.9,46.1,42.9,32.6,3.8,7.3,3.3,74.2,72.9,37.2,15.7,33.8,71.9,37,57.2,38.1,2,4.6,2.1,55.5,90.1,32.4,70.6,73,126.1,163.1,1.8,2.2,1.3,128.2,95.8,250,217,282,108,553,102,956,16.1,0.3,3.7,7.5,2.2,33.3,17.1,19.8,,10,,49,51,48,78,75,70,80,61,62,59,430,41,0,,132,100,97,103,61,11,28,3.7,58.2,41.3,32,0.04,53,3,65,66,68,30,46,88,,,,,17.7,13.7,19.7,,,,74.47,33.55,14.34,,14.28,3.36E+08,,,161.71,,3.08E+08,3.1,26.8,15.6,35.1,787,1795,0,,0.97,0.48,5.62E+10,9.5,1072000,13,4.6,8,206,370,93.11,906419,631738,274681,5.5,,,,,5.6,3.6,9.1,5.9,170,180,282,294,139,23.1,,3,-2,173.78,,,318.93,,,,38,,5.36E+09,35.28,27.88,14.07,-1.8,0,5490,24.36,,39,2.97,2.13,5.6,41.8,5.1,0.24,,,41.44,,86,67,-0.6,2276,7.16,40.3,37.7,76,,,,19.65,1.1,62.1,34.68,73.12,54.07,58.88,90.7,75.2,12.2,2.3,12.9,2.4,99,367,105,388,3.8,3.4,4.1,3.7,149,124,162,136,,,47.6,,570,,,76,0.33,67.35,6.02,,,,,0.48,23.11,138.75,,,,,,,415.95,0.01,2.92,140.91,2682.74,,,,,1.4,300000,2.97,8.54,2.07E+07,41.8,,60.35,,,78,46,1,1.6,30,46,0.3,65.65,64.92,8.7,1.92,45.36,6,2.9,6.9,3.3,127,173,150,200,65.75,527970,9.42,20148.34,1.15E+10,114.52,8.31E+08,82.4,87.9,82.4,5759120.5,4.37,27.3
Zambia,201,3,161,68,1140,94,90,11696,1.9,35,63.8,17,5,46,10,5.3,72,35,26,43,2,67.4,22.8,57.9,69.1,66.9,34.2,89,85,80,80,80,53,84,0,3,,,,37.2,46.8,10.8,22,1,,491,1027,1415,22010,3330,1039,1264,20,3,71.1,29,23,62,49,1,1,53.2,0.6,0.4,16.8,0,5.2,77.8,91.1,17.3,19.7,27.6,79,60.5,71.4,51.4,4.5,4.6,2.9,87.2,88.4,79.8,81.2,83.9,85.5,7.4,7.2,1.6,1.1,1.1,1,76.7,99.3,42.3,121.1,92.4,197.8,191.7,1.6,2.1,1.3,182.3,140,617,597,644,122,359,58,700,17.5,16.1,1,19.4,1.2,22.9,0.1,21.8,840,56,46,35,35,35,553,102,101,103,43,43,42,830,40,0,15819,568,182,173,190,92,2,6,5.9,52.5,23.3,12,2.4,99,68,41,58,90,51,52,55,3,,33,42,25.6,25.6,25.7,13.4,5,21.7,134.34,34.62,22.77,,82.28,9.35E+08,588,432,2.17,2000000,1.50E+07,2.3,43.4,10,13,289,381,250,0,0.21,0.18,5.50E+11,8.1,300000,15,44,53.7,1340,1650,94.69,150483,63482,87001,5.18,,,,,6,2.6,6.6,2.9,79,154,84,165,251,34.2,109,7,5,721.19,,,620.65,5.41,8.22,168.25,34.29,,5.38E+09,80.72,42.21,9.1,3.61,0,424520,23.47,15.04,36,2.86,2.74,10.7,49,5.6,1.09,,,37.41,,59,58,3.49,1175,3.61,30.06,50.8,102,243,129,84,18.65,2.9,41.59,59.8,76.25,68,66.23,72.62,69.46,18.6,9.3,18.9,9.4,263,527,266,535,6.3,0.9,6.6,0.9,23,161,25,166,6.5,51.9,23.3,13.6,750,,,84,0.12,60.88,2.25,,,,,,,121.02,,,12500,69566,,,,,,,736.17,157720,63,1364,1016568,1,113000,1.83,10.98,1.13E+07,68,,82.72,,,71,61,14,16.5,300,355,1.31,92.7,91.2,22,42.62,47.16,8.8,6.4,9.2,6.9,180,197,194,208,46.58,752610,16.95,2366.94,4.09E+09,10.41,-4.47E+08,175.3,163.8,175.3,4017411,1.95,35
Zimbabwe,202,3,101,89.5,,88,87,13228,0.8,36,,19,5,39,,3.3,71,17,11,69,5,,2.9,4.7,26.3,70,60.2,78,66,62,62,,42,68,2,9,,,1,18.7,52.6,8.9,30,,,310,1803,917,9357,1324,883,2086,7,1,50.8,77,19,147,36,,2,47.4,29.1,,4.5,0,8.4,80.9,95.2,34.6,46.1,58.2,93.8,46.3,49.1,35.6,2.3,2.1,1.6,71.2,74,30.3,54.2,63.1,71.6,40.9,19.8,8.5,2.3,1.4,1.1,1.4,15,7.7,67.6,57,69,72,1,1.3,1.4,71.6,63.9,751,755,755,122,347,103,685,12.1,40.6,1.2,0.2,2.9,28.1,0.3,14.7,1384,59,72,34,33,34,557,55,52,58,43,43,44,880,36,,19210,597,85,80,90,90,4,7,9.1,35.8,14,11,4.41,94,26,72,81,98,37,46,63,19.4,3.9,,,10.1,7.3,12.7,15,4.4,25.5,64.24,40.35,19.13,,28.02,3.76E+08,597,385,34.19,,2.00E+07,1.3,79.7,14.1,19,489,662,10185,0.08,0.94,,1.98E+09,5.6,397500,540,43.1,52.1,1492,1817,75.51,432805,206828,225977,3.19,,,1.86,0.15,6.5,6.2,7.2,6.8,208,200,226,216,424,60.2,131,19,-4,953.07,,,741.1,14.26,21.31,195.16,56.8,,4.30E+09,133.41,44,7.59,3.01,0.07,175400,16.8,19.01,21,4.47,3.63,8.9,44.8,8.1,1.71,,,72.98,,63,81,-7.03,538,4.63,23.92,50.1,68,242,100,68,237.95,8.4,42.61,86.16,92.67,89.36,97.93,97.48,97.7,25.4,10.5,25.7,10.6,359,774,364,783,12.1,5.8,12.3,5.9,190,344,195,353,,,14,70.26,1100,,,85,0.16,121.41,0,,,,,,,95.4,,,17207,80465,,,,,,,951.61,177483,78,419,1516373,8.4,1000000,0.72,11.54,1.22E+07,34.9,,81.03,,,82,79,23.5,27.4,632,735,0.61,96.32,100.45,19,7.15,56.95,10.4,9.1,10.9,9.6,297,293,313,308,104.11,390760,26.37,11457.33,5.62E+09,3.39,-1.71E+08,106.5,67,106.5,4709965,1.9,35.9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment