Skip to content

Instantly share code, notes, and snippets.

@quizzicol
Created January 30, 2016 06:56
Show Gist options
  • Save quizzicol/f90949149a0303f2d113 to your computer and use it in GitHub Desktop.
Save quizzicol/f90949149a0303f2d113 to your computer and use it in GitHub Desktop.
Multi line chart
<!DOCTYPE html>
<!-- Modification of an example by Scott Murray from Knight D3 course -->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Line Chart with Multiple Lines</title>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic|Lora:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="main.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<body>
<h1> Copied from
<a href="https://gist.github.com/hmader/03fe396c28f1371aa419">hmander's block</a><h1>
<h1 class="header">Under-5 Mortality Rate by Country</h1>
<h2 class="header">Under-5 mortality rate for all countires with data, 1950 - 2015.</h2>
<p class="header">Globally and regionally, under-5 mortality is decreasing. However, globally we have yet to reach the Millenium Development Goals (MDG) in child mortality. Sub-Saharan Africa has had the most rapid rate of reduction, although it stil remains the region with the highest under-5 mortality rate in the world.</p>
<p class="header">The MDG target for under-5 mortality is as follows: <em>"reduce child mortality (globally) by two-thirds, from 87 children of every 1,000 dying before age 5 in 1990 to 29 of every 1,000 in 2015"</em> (<a href="http://www.unicef.org/mdg/index_childmortality.htm">UNICEF</a>). This target number (29) is shown on the chart below. According to the most recent UNICEF report, the global under-5 mortality rate stands at 43, above the goal for 2015.</p>
<p class="header">Roll over a line to view the country it represents. Lines in <span class="red">red</span> represent Sub-Saharan African countries.</p>
<p id="sources" class="header">Source: <a href="http://data.unicef.org/child-mortality/under-five.html">UNICEF</a>, 2015</p>
<script type="text/javascript" src="main.js"></script>
</body>
</html>
body {
box-sizing: border-box;
}
svg {
/* padding: 1em;*/
background-color: rgb(255, 255, 255);
}
svg rect:hover {
opacity: .3;
}
svg circle:hover {
opacity: .3;
}
svg g {
fill: #ACACAC;
}
svg g text.label,
svg g text.ylabel {
fill: #2A2A2A;
}
svg {
background-color: white;
}
.axis path,
.axis line {
fill: none;
stroke: #D3D3D3;
stroke-width: 1px;
}
.line {
stroke: #FF9900;
fill: none;
stroke-opacity: 25%;
stroke-width: 1px;
}
.ssAfrica {
stroke: red;
stroke-opacity: 50%;
}
.unfocused {
stroke-opacity: 25%;
}
.focused {
stroke-width: 2px;
stroke-opacity: 100%;
}
.MDG {
stroke: #2A2A2A;
fill: none;
stroke-opacity: 100%;
stroke-width: 1px;
}
.axis text,
.aside {
font-family: sans-serif;
font-size: 11px;
}
.header {
width: 70%;
margin-left: 16px;
}
h1 {
font-family: 'Roboto', sans-serif;
font-size: 1.75em;
margin-top: 1em;
font-weight: 700;
color: #0099FF;
text-transform: uppercase;
}
h2 {
font-family: 'Roboto', sans-serif;
text-align: justify;
line-height: 1.25em;
font-weight: 700;
font-size: 1em;
}
p {
font-family: 'Lora', serif;
font-size: 15px;
line-height: 1.25em;
text-align: justify;
}
#sources {
font-size: 12px;
font-style: italic;
color: rgb(0, 0, 0);
font-style: italic;
}
a {
color: #0099FF;
text-decoration: none;
}
a:hover {
color: rgb(255, 0, 153);
}
.sans {
font-family: sans-serif;
}
.orange {
color: #FF9900;
}
.blue {
color: #0099FF;
}
.red {
color: red;
}
.tooltip {
position: absolute;
z-index: 10;
}
.tooltip p {
background-color: rgba(255, 255, 255, .8);
padding: .5em 1em;
font-size: 12px;
line-height: 17px;
color: black;
}
.tooltipHeader {
font-weight: 700;
font-size: 12.5px;
}
/*======================================================================
Setup
======================================================================*/
var margin = {
top: 50,
right: 10,
bottom: 70,
left: 70
};
var width = $(window).width() * .9;
var height = $(window).height() * .85;
var MDG = 29;
var subSaharanAfrica = ["Angola", "Benin", "Botswana", "Burkina Faso", "Burundi", "Cameroon", "Cabo Verde", "Central African Republic", "Chad", "Comoros", "Congo", "Cote d'Ivoire", "Democratic Republic of the Congo", "Djibouti", "Equatorial Guinea", "Eritrea", "Ethiopia", "Gabon", "Gambia", "Ghana", "Guinea", "Guinea-Bissau", "Kenya", "Lesotho", "Liberia", "Madagascar", "Malawi", "Mali", "Mauritania", "Mauritius", "Mozambique", "Namibia", "Niger", "Nigeria", "Rwanda", "Sao Tome and Principe", "Senegal", "Seychelles", "Sierra Leone", "Somalia", "South Africa", "Sudan", "Swaziland", "United Republic of Tanzania", "Togo", "Uganda", "Zambia", "Zimbabwe"];
//Set up date formatting and years
var dateFormat = d3.time.format("%Y");
//Set up scales
var xScale = d3.time.scale()
.range([margin.left, width - margin.right - margin.left]);
var yScale = d3.scale.sqrt()
.range([margin.top, height - margin.bottom]);
//Configure axis generators
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.ticks(15)
.tickFormat(function (d) {
return dateFormat(d);
})
.innerTickSize([0]);
var yAxis = d3.svg.axis()
.scale(yScale)
.orient("left")
.innerTickSize([0]);
// add a tooltip to the page - not to the svg itself!
var tooltip = d3.select("body")
.append("div")
.attr("class", "tooltip");
//Configure line generator
// each line dataset must have a d.year and a d.rate for this to work.
var line = d3.svg.line()
.x(function (d) {
return xScale(dateFormat.parse(d.year));
})
.y(function (d) {
return yScale(+d.rate);
});
//Create the empty SVG image
var svg = d3.select("body")
.append("svg")
.attr("width", width)
.attr("height", height);
/*======================================================================
Creating the Multiple Lines from the Data
======================================================================*/
//Load data - first is INFANT mortality rates, second is UNDER 5 mortality rates. Similar, but many more peaks in the Under 5.
//d3.csv("median-IMRbyCountry.csv", function (data) {
d3.csv("median-U5MRbyCountry.csv", function (data) {
//Data is loaded in, but we need to restructure it.
//Remember, each line requires an array of x/y pairs;
//that is, an array of arrays, like so:
//
// [ [x: 1, y: 1], [x: 2, y: 2], [x: 3, y: 3] ]
//
//We, however, are using 'year' as x and 'amount' as y.
//We also need to know which country belongs to each
//line, so we will build an array of objects that is
//structured like this:
/*
[
{
country: "Australia",
emissions: [
{ year: 1961, amount: 90589.568 },
{ year: 1962, amount: 94912.961 },
{ year: 1963, amount: 101029.517 },
]
},
{
country: "Bermuda",
emissions: [
{ year: 1961, amount: 176.016 },
{ year: 1962, amount: 157.681 },
{ year: 1963, amount: 150.347 },
]
},
]
*/
//Note that this is an array of objects. Each object
//contains two values, 'country' and 'emissions'.
//The 'emissions' value is itself an array, containing
//more objects, each one holding 'year' and 'amount' values.
//New array with all the years, for referencing later
//var years = ["1961", "1962", "1963", "1964", "1965", "1966", "1967", "1968", "1969", "1970", "1971", "1972", "1973", "1974", "1975", "1976", "1977", "1978", "1979", "1980", "1981", "1982", "1983", "1984", "1985", "1986", "1987", "1988", "1989", "1990", "1991", "1992", "1993", "1994", "1995", "1996", "1997", "1998", "1999", "2000", "2001", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "2009", "2010"];
// or you could get this by doing:
var years = d3.keys(data[0]).slice(1, 65); //
console.log(years);
//Create a new, empty array to hold our restructured dataset
var dataset = [];
//Loop once for each row in data
data.forEach(function (d, i) {
var IMRs = [];
years.forEach(function (y) { //Loop through all the years - and get the rates for this data element
if (d[y]) { /// What we are checking is if the "y" value - the year string from our array, which would translate to a column in our csv file - is empty or not.
IMRs.push({ //Add a new object to the new rates data array - for year, rate. These are OBJECTS that we are pushing onto the array
year: y,
rate: d[y], // this is the value for, for example, d["2004"]
Country: d.Country
});
}
});
dataset.push({ // At this point we are accessing one index of data from our original csv "data", above and we have created an array of year and rate data from this index. We then create a new object with the Country value from this index and the array that we have made from this index.
country: d.Country,
rates: IMRs // we just built this from the current index.
});
});
//Uncomment to log the original data to the console
console.log(data);
//Uncomment to log the newly restructured dataset to the console
console.log(dataset);
//Set scale domains - max and min of the years
xScale.domain(
d3.extent(years, function (d) {
return dateFormat.parse(d);
}));
// max of rates to 0 (reversed, remember)
yScale.domain([
d3.max(dataset, function (d) {
return d3.max(d.rates, function (d) {
return +d.rate;
});
}),
0
]);
//Make a group for each country
var groups = svg.selectAll("g.lines")
.data(dataset)
.enter()
.append("g")
.attr("class", "lines");
//Within each group, create a new line/path,
//binding just the rates data to each one
groups.selectAll("path")
.data(function (d) { // because there's a group with data already...
return [d.rates]; // it has to be an array for the line function
})
.enter()
.append("path")
.attr("class", "line")
.classed("ssAfrica", function (d, i) {
console.log(d[i].Country);
if ($.inArray(d[i].Country, subSaharanAfrica) != -1) {
console.log("true");
return true;
} else {
console.log("false");
return false;
}
})
.attr("d", line);
/*======================================================================
Adding the Axes
======================================================================*/
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + (height - margin.bottom) + ")")
.call(xAxis)
.append("text")
.attr("x", width - margin.left - margin.right)
.attr("y", margin.bottom / 3)
.attr("dy", "1em")
.style("text-anchor", "end")
.attr("class", "label")
.text("Year");
svg.append("g")
.attr("class", "y axis")
.attr("transform", "translate(" + margin.left + ",0)")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("x", -margin.top)
.attr("y", -2*margin.left / 3)
.attr("dy", "1em")
.style("text-anchor", "end")
.attr("class", "label")
.text("Under 5 Mortality Rate");
/*======================================================================
MDG line
======================================================================*/
svg.append("line")
.attr("class", "MDG")
.attr("x1", margin.left)
.attr("y1", yScale(MDG))
.attr("x2", width - margin.left - margin.right + 15)
.attr("y2", yScale(MDG));
svg.append("text")
.attr("class", "aside")
.attr("x", width - margin.left - margin.right + 20)
.attr("y", yScale(MDG) - 6)
.attr("dy", "1em")
.style("text-anchor", "start")
.text("Global MDG");
/*======================================================================
Mouse Functions
======================================================================*/
d3.selectAll("g.lines")
.on("mouseover", mouseoverFunc)
.on("mouseout", mouseoutFunc)
.on("mousemove", mousemoveFunc);
function mouseoutFunc() {
d3.selectAll("path.line").classed("unfocused", false).classed("focused", false);
tooltip.style("display", "none"); // this sets it to invisible!
}
function mouseoverFunc(d) {
d3.selectAll("path.line").classed("unfocused", true);
// below code sets the sub saharan africa countries out even more - they only go "unfocused" if a sub saharan country is selected. Otherwise, they remain at the regular opacity. I experiemented with this because I do want to focus on the ssAfrica countries rather than any others (so they are only "unfocused" against each other, not to other countries... This way all other countries are always compared to the ssAfrica ones... but not sure if this method is effective).
// if(!d3.select(this).select("path.line").classed("ssAfrica")) {
// d3.selectAll("path.ssAfrica").classed("unfocused", false);
// }
d3.select(this).select("path.line").classed("unfocused", false).classed("focused", true);
tooltip
.style("display", null) // this removes the display none setting from it
.html("<p><span class='tooltipHeader sans'>" + d.country + "</span></p>");
}
function mousemoveFunc(d) {
console.log("events", window.event, d3.event);
tooltip
.style("top", (d3.event.pageY - 45) + "px")
.style("left", (d3.event.pageX + 5) + "px");
}
}); // end of data csv
Country 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015
Afghanistan 240.5 236.3 232.3 228.5 224.6 220.7 217.0 213.3 209.8 206.1 202.2 198.2 194.3 190.3 186.6 182.6 178.7 174.5 170.4 166.1 161.8 157.5 153.2 148.7 144.5 140.2 135.7 131.3 126.8 122.5 118.3 114.4 110.9 107.7 105.0 102.7 100.7 98.9 97.2 95.4 93.4 91.2 89.0 86.7 84.4 82.3 80.4 78.6 76.8 75.1 73.4 71.7 69.9 68.1 66.3
Albania 73.0 68.4 64.0 59.9 56.1 52.4 49.1 45.9 43.2 40.8 38.6 36.7 35.1 33.7 32.5 31.4 30.3 29.1 27.9 26.8 25.5 24.4 23.2 22.1 21.0 20.0 19.1 18.3 17.4 16.7 16.0 15.4 14.8 14.3 13.8 13.3 12.9 12.5
Algeria 150.4 149.9 149.5 149.0 148.8 148.4 148.2 148.1 148.2 148.4 148.7 149.1 149.3 149.2 148.7 147.7 146.0 143.6 140.6 137.0 133.0 128.7 124.0 119.0 113.6 107.8 101.1 93.4 84.6 75.0 65.5 57.2 50.9 46.3 43.1 41.0 39.7 38.8 38.1 37.5 36.9 36.3 35.7 35.1 34.7 34.4 33.9 33.3 32.4 31.3 30.1 28.8 27.6 26.4 25.3 24.3 23.5 22.8 22.4 22.1 22.0 21.9
Andorra 7.5 7.0 6.5 6.1 5.6 5.2 5.0 4.6 4.3 4.1 3.9 3.7 3.5 3.3 3.2 3.1 2.9 2.8 2.7 2.6 2.5 2.4 2.3 2.2 2.1 2.1
Angola 138.3 137.5 136.8 136.0 135.3 134.9 134.4 134.1 133.8 133.6 133.5 133.5 133.5 133.4 133.2 132.8 132.3 131.5 130.6 129.5 128.3 126.9 125.5 124.1 122.8 121.2 119.4 117.1 114.7 112.2 109.6 106.8 104.1 101.4 98.8 96.0
Antigua and Barbuda 24.0 22.6 21.5 20.3 19.2 18.0 17.1 16.2 15.3 14.5 13.8 13.0 12.3 11.7 11.0 10.4 9.8 9.2 8.8 8.2 7.7 7.2 6.8 6.4 6.1 5.8
Argentina 60.0 59.5 58.8 58.0 56.8 55.2 53.2 50.5 47.2 43.8 40.3 37.2 34.7 32.8 31.3 30.1 29.0 28.1 27.1 26.2 25.3 24.4 23.6 22.8 22.1 21.4 20.8 20.2 19.6 19.1 18.5 18.0 17.6 17.1 16.6 16.0 15.3 14.6 14.1 13.7 13.4 13.0 12.7 12.3 11.9 11.5 11.1
Armenia 70.8 68.3 65.9 63.5 61.3 59.2 57.1 55.2 53.3 51.4 49.6 47.8 49.9 44.3 42.5 40.6 38.8 37.0 35.3 33.7 32.1 30.6 29.2 27.9 26.6 25.3 24.2 23.0 21.9 20.8 19.8 18.8 17.9 17.0 16.1 15.3 14.6 13.8 13.2 12.6
Australia 25.0 24.6 24.1 23.6 23.0 22.6 22.1 21.6 21.2 20.8 20.3 20.0 19.5 19.2 18.8 18.6 18.3 18.3 18.2 18.1 17.8 17.4 16.8 16.2 15.3 14.4 13.5 12.7 12.0 11.3 10.8 10.4 10.1 9.8 9.6 9.3 9.1 8.7 8.4 8.0 7.6 7.1 6.7 6.3 6.0 5.7 5.6 5.4 5.3 5.3 5.1 5.0 5.0 4.9 4.9 4.8 4.7 4.5 4.4 4.2 4.1 3.8 3.6 3.4 3.2 3.0
Austria 48.1 46.6 45.2 43.6 41.7 39.6 37.3 35.0 32.9 31.2 29.7 28.3 27.3 26.4 25.7 25.3 25.0 24.7 24.1 23.0 21.6 19.8 18.1 16.6 15.5 14.6 13.9 13.2 12.6 12.0 11.3 10.7 10.0 9.4 8.9 8.4 8.0 7.6 7.1 6.7 6.2 5.7 5.3 5.0 4.8 4.7 4.6 4.5 4.4 4.3 4.1 4.0 4.0 3.8 3.8 3.7 3.6 3.4 3.3 3.2 3.0 2.9
Azerbaijan 84.9 83.1 81.5 79.9 78.5 77.3 76.3 75.7 75.5 75.7 76.0 76.2 76.1 75.2 73.6 71.2 68.1 64.5 60.6 56.8 53.1 49.7 46.7 44.0 41.5 39.3 37.3 35.5 33.9 32.5 31.2 30.0 28.9 27.9
Bahamas 25.0 25.5 26.0 26.4 26.8 27.2 27.2 27.2 26.9 26.6 26.2 25.7 25.2 24.8 24.3 24.0 23.7 23.4 22.9 22.2 21.4 20.6 19.7 18.8 18.0 17.2 16.3 15.6 14.8 14.1 13.6 13.2 13.0 12.9 12.8 12.7 12.7 12.6 12.5 12.2 11.9 11.7 11.4 11.1 10.9 10.5 10.2 9.9
Bahrain 187.9 172.5 158.6 145.9 134.5 123.8 114.1 105.1 96.6 88.6 81.3 74.5 68.2 62.4 57.2 52.5 48.1 44.2 40.7 37.7 35.0 32.6 30.4 28.5 26.8 25.3 24.0 22.8 21.9 21.1 20.5 20.1 19.8 19.7 19.5 19.3 18.7 17.9 16.8 15.5 14.2 13.1 12.1 11.4 10.9 10.5 10.2 9.9 9.6 9.3 9.0 8.5 8.1 7.6 7.1 6.7 6.3 5.9 5.6 5.3
Bangladesh 216.6 209.8 203.6 197.5 191.8 186.3 181.2 176.3 171.7 167.6 163.7 160.3 157.4 155.0 153.0 151.5 150.4 149.5 148.9 148.2 147.4 146.4 145.2 143.5 141.4 139.1 136.5 133.7 130.8 127.8 124.6 121.3 117.9 114.4 110.8 107.1 103.4 99.7 95.8 92.1 88.3 84.6 81.0 77.4 74.0 70.6 67.4 64.4 61.4 58.6 55.9 53.4 50.8 48.4 45.9 43.6 41.3 39.2 37.2 35.3 33.5 32.1 30.7
Barbados 137.7 119.1 103.8 91.6 82.2 75.1 69.5 65.0 61.2 57.6 54.4 51.7 49.2 47.1 45.1 43.1 41.1 39.2 37.3 35.4 33.6 31.8 30.0 28.3 26.7 25.2 23.8 22.6 21.6 20.8 20.1 19.5 18.8 18.1 17.3 16.7 16.0 15.4 14.9 14.5 14.1 14.0 13.9 14.0 14.2 14.5 14.8 15.1 15.3 15.3 15.3 15.1 14.9 14.5 14.2 13.9 13.6 13.3 13.0 12.7 12.3 12.0
Belarus 19.4 18.5 17.7 17.0 16.5 16.0 15.4 14.8 14.2 13.8 13.5 13.5 13.6 13.8 14.1 14.4 14.4 14.2 13.6 12.6 11.4 10.3 9.3 8.6 7.9 7.4 6.8 6.2 5.6 5.1 4.7 4.3 4.0 3.8 3.5 3.4
Belgium 44.9 42.3 39.8 37.4 35.0 32.9 31.0 29.5 28.1 27.0 26.0 25.0 24.1 23.3 22.5 21.9 21.3 20.6 19.7 18.7 17.7 16.7 15.8 14.9 14.1 13.5 12.8 12.2 11.7 11.2 10.7 10.2 9.9 9.5 9.2 8.9 8.6 8.3 8.0 7.6 7.2 6.8 6.3 5.9 5.5 5.2 4.9 4.8 4.6 4.4 4.2 4.2 4.1 4.0 3.9 3.8 3.7 3.6 3.5 3.5 3.4 3.4 3.3
Belize 78.2 75.5 72.8 70.3 67.9 65.4 63.2 61.2 59.2 57.3 55.6 53.8 52.2 50.5 49.0 47.3 45.6 43.8 41.9 39.9 37.9 35.9 34.0 32.2 30.4 28.8 27.4 26.1 25.1 24.1 23.3 22.5 21.8 21.1 20.5 19.9 19.4 18.9 18.5 18.0 17.6 17.2 16.7 16.3 15.9 15.5 15.1 14.6 14.2
Benin 208.6 206.5 204.7 202.7 200.7 198.7 196.7 194.6 192.2 189.7 186.9 183.9 180.6 177.1 173.6 170.2 166.8 164.0 161.5 159.2 157.1 154.9 152.5 149.8 146.8 143.5 140.1 136.7 133.6 130.9 128.7 126.6 124.7 122.8 120.9 118.9 116.9 114.8 112.6 110.4 108.0 105.6 103.2 100.9 98.9 97.2 95.6 94.2 92.7 91.1 89.3 87.4 85.2 83.0 80.8 78.8 76.9 75.2 73.7 72.3 71.0 69.8 68.5 67.2 65.7 64.2
Bhutan 186.0 181.2 176.2 171.2 166.4 161.6 157.1 152.4 147.8 143.3 138.8 134.3 130.0 125.6 121.1 117.0 112.9 108.9 104.9 101.0 97.1 93.3 89.6 85.9 82.4 78.8 75.3 71.8 68.4 65.2 62.0 59.0 56.1 53.3 50.6 47.9 45.3 42.8 40.4 38.2 36.1 34.1 32.3 30.8 29.5 28.3 27.2
Bolivia (Plurinational State of) 173.4 170.5 167.7 165.0 162.2 159.4 156.5 153.6 150.6 147.5 144.4 141.3 138.0 134.7 131.3 127.9 124.5 121.3 118.1 115.1 112.3 109.7 107.2 104.7 102.1 99.5 96.8 94.0 91.2 88.4 85.6 82.9 80.2 77.5 74.8 72.2 69.5 66.8 64.1 61.4 58.8 56.2 53.7 51.2 48.8 46.6 44.4 42.2 40.2 38.4 36.8 35.3 34.0 32.8 31.7 30.6
Bosnia and Herzegovina 26.2 24.1 22.1 20.4 18.8 17.4 16.2 15.1 14.7 14.2 12.9 12.3 11.0 10.1 9.3 8.6 7.9 7.5 7.2 7.0 7.0 7.1 7.2 7.1 7.0 6.7 6.4 6.2 5.9 5.6 5.4 5.1
Botswana 138.9 134.5 130.3 126.4 122.7 119.0 115.5 112.2 109.0 105.8 102.8 99.8 97.0 94.1 91.2 88.3 85.3 82.2 79.1 75.9 72.7 69.5 66.3 63.2 60.2 57.4 54.7 52.3 50.0 47.9 46.0 44.4 43.0 42.0 41.4 41.3 41.8 42.9 44.2 45.7 47.3 48.9 50.2 51.3 52.0 53.1 52.4 51.4 50.3 49.8 49.1 44.8 43.8 45.5 45.3 42.3 39.8 39.9 38.2 36.4 35.6 34.8
Brazil 147.4 143.7 140.1 136.5 132.8 129.4 126.1 122.9 119.9 117.1 114.5 112.1 109.8 107.4 105.0 102.5 100.0 97.4 94.9 92.3 89.8 87.3 84.7 82.0 79.0 75.9 72.7 69.7 66.7 64.0 61.4 59.0 56.8 54.8 52.8 50.9 48.9 46.8 44.6 42.2 39.7 37.2 34.8 32.4 30.2 28.1 26.1 24.3 22.5 21.0 19.5 18.2 17.1 16.2 15.4 14.8 14.4 14.3 14.3 14.4 14.6
Brunei Darussalam 12.5 12.1 11.6 11.2 10.7 10.3 10.0 9.7 9.4 9.2 9.0 8.8 8.5 8.3 8.1 7.9 7.8 7.6 7.6 7.5 7.5 7.4 7.4 7.3 7.3 7.3 7.4 7.5 7.7 7.8 8.1 8.3 8.5 8.6
Bulgaria 40.6 39.9 39.4 39.0 38.4 37.3 35.8 34.1 32.6 31.6 31.1 30.5 29.8 29.0 28.1 26.8 25.7 24.5 23.4 22.5 21.7 20.7 19.7 18.8 18.2 17.8 17.9 18.4 18.8 19.1 19.2 19.3 19.4 19.5 19.4 19.2 18.6 17.9 17.1 16.3 15.5 14.6 13.6 12.9 12.3 11.8 11.5 11.2 10.9 10.5 10.1 9.7 9.3
Burkina Faso 179.6 178.4 177.1 175.5 173.8 171.9 169.9 168.0 165.8 163.3 161.3 159.4 157.5 155.8 154.3 153.0 151.8 150.9 150.2 149.7 149.3 148.5 147.1 144.6 141.0 136.6 131.9 127.4 123.4 120.2 117.6 115.6 113.9 112.4 110.8 109.0 107.1 105.3 103.8 102.9 102.5 102.3 102.4 102.4 102.1 101.4 100.5 99.4 98.3 97.3 96.2 95.0 93.4 91.4 88.9 86.0 82.7 79.2 75.8 72.5 69.7 67.3 65.4 63.7 62.2 60.9
Burundi 142.8 143.6 144.5 145.3 145.9 146.2 146.4 146.3 146.2 146.1 146.0 145.7 144.8 143.0 140.0 136.0 131.1 125.8 120.3 115.0 110.6 106.9 104.5 103.3 103.0 103.3 103.9 104.5 104.8 104.8 104.3 103.2 101.7 100.0 97.9 95.7 93.4 91.0 88.6 85.8 82.9 79.7 76.2 72.7 69.3 66.4 63.8 61.6 59.5 57.6 55.8 54.1
Cabo Verde 121.4 112.4 104.2 96.5 89.6 83.4 78.0 73.3 69.5 66.4 64.1 62.6 61.6 60.9 60.3 59.4 58.0 56.2 54.0 51.8 49.7 48.2 47.0 46.3 45.8 45.1 43.7 41.6 38.8 35.5 32.1 29.1 26.7 24.9 23.8 23.3 23.2 23.4 23.6 23.6 23.6 23.3 22.9 22.4 21.9 21.3 20.7
Cambodia 178.2 166.4 155.4 143.3 130.0 117.3 106.5 98.1 92.3 89.0 87.5 86.6 86.0 85.6 85.5 85.4 85.5 85.7 86.2 86.9 87.6 88.2 88.2 87.1 84.5 80.4 74.7 68.3 62.3 57.4 53.3 49.8 46.5 43.3 40.0 36.7 33.6 30.7 28.3 26.3 24.6
Cameroon 200.1 192.0 184.6 177.6 171.6 166.9 163.3 160.5 158.1 155.5 152.2 148.1 143.1 137.3 131.5 126.2 121.6 118.2 116.0 114.7 114.3 114.2 113.9 113.0 111.4 109.2 106.3 103.1 99.5 95.8 92.4 89.4 87.2 85.8 85.2 85.6 86.7 88.2 89.9 91.5 93.0 94.1 94.7 94.7 93.8 91.9 89.3 86.2 83.1 80.3 77.8 75.3 73.1 70.8 68.8 66.2 64.4 62.4 60.4 58.6 57.1
Canada 41.2 39.2 37.2 35.5 33.9 32.6 31.5 30.5 29.6 28.7 27.8 27.0 26.0 25.1 24.0 23.1 22.1 21.2 20.2 19.4 18.5 17.7 16.7 15.9 15.0 14.2 13.3 12.5 11.8 11.0 10.3 9.7 9.2 8.7 8.3 8.0 7.7 7.5 7.2 7.1 6.8 6.6 6.4 6.1 6.0 5.7 5.6 5.4 5.4 5.3 5.2 5.3 5.3 5.2 5.2 5.3 5.2 5.1 5.0 5.0 4.9 4.7 4.7 4.6 4.4 4.3
Central African Republic 165.5 162.9 160.4 157.6 154.7 151.7 148.6 145.6 142.6 139.8 137.0 134.5 132.1 129.9 127.9 126.0 124.2 122.6 121.0 119.6 118.4 117.4 116.7 116.2 115.9 115.7 115.6 115.5 115.4 115.4 115.3 115.2 115.1 115.2 115.4 115.4 115.4 115.1 114.7 114.2 113.6 112.9 112.1 111.3 110.4 109.3 108.1 106.9 105.5 103.6 101.7 99.7 97.7 96.1 93.5 91.5
Chad 131.8 131.2 130.6 130.0 129.4 128.8 128.1 127.4 126.6 125.7 124.8 123.8 122.7 121.5 120.4 119.3 118.1 117.0 115.8 114.7 113.7 112.6 111.7 110.9 110.0 109.1 108.0 106.9 105.7 104.6 103.4 102.3 101.3 100.4 99.4 98.1 96.7 95.1 93.6 91.9 90.2 88.4 86.7 85.0
Chile 136.4 127.6 121.1 116.7 111.9 105.1 96.5 87.4 79.0 72.7 69.1 67.6 66.7 65.7 63.7 60.4 55.3 48.8 41.7 35.6 31.4 28.2 25.6 22.9 20.8 19.5 18.9 18.6 18.4 18.0 17.1 16.0 14.8 13.7 12.7 11.7 11.0 10.5 10.2 10.1 9.6 9.2 8.7 8.3 8.0 7.9 7.7 7.6 7.6 7.6 7.5 7.6 7.5 7.4 7.3 7.2 7.0
China 84.1 80.4 76.8 73.3 69.7 66.2 62.6 59.1 55.8 52.9 50.2 48.0 46.1 44.6 43.4 42.6 42.2 42.0 42.0 42.2 42.2 42.1 41.8 41.2 40.2 39.0 37.7 36.4 35.0 33.5 31.9 30.2 28.3 26.2 24.2 22.2 20.3 18.7 17.2 15.8 14.6 13.5 12.5 11.5 10.6 9.8 9.2
Colombia 91.0 89.3 87.6 85.9 84.3 82.6 80.9 79.0 77.1 74.9 72.7 70.4 68.1 65.9 63.5 61.0 58.4 55.6 52.8 50.0 47.2 44.6 42.0 39.7 37.6 35.7 34.1 32.7 31.5 30.5 29.7 28.9 28.2 27.4 26.6 25.8 25.0 24.2 23.4 22.6 21.9 21.2 20.6 20.0 19.4 18.9 18.4 17.8 17.3 16.9 16.4 15.9 15.4 14.9 14.5 14.1 13.6
Comoros 151.5 148.1 145.1 142.2 139.3 136.2 133.0 129.6 126.2 122.5 119.0 115.4 111.9 108.4 105.0 101.8 98.7 95.8 93.0 90.4 87.9 85.4 82.9 80.6 78.7 76.9 75.6 74.5 73.7 73.1 72.7 72.5 72.5 72.2 71.6 70.5 69.2 67.9 66.4 64.6 63.1 61.3 59.8 58.2 56.6 55.1
Congo 114.6 112.7 110.6 108.4 106.1 104.2 102.1 99.7 97.3 94.9 92.7 90.6 88.5 86.5 84.4 82.5 80.9 79.2 77.6 76.0 74.4 72.8 71.2 69.6 68.0 66.3 64.6 63.1 61.8 60.9 60.4 60.4 60.9 61.8 63.0 64.6 66.6 68.8 71.2 73.5 75.3 76.5 76.6 75.5 73.3 70.0 66.1 61.8 57.4 53.1 49.0 45.3 42.2 39.6 37.6 35.9 34.4 33.2
Cook Islands 130.1 123.6 117.6 112.0 106.3 100.9 95.4 90.0 84.8 79.7 74.8 70.0 65.5 61.2 57.3 53.5 49.9 46.6 43.5 40.6 38.1 35.9 34.1 32.5 31.2 30.1 29.2 28.3 27.4 26.6 25.8 25.1 24.3 23.6 22.9 22.3 21.8 21.3 20.9 20.6 20.3 20.0 19.7 19.2 18.6 17.8 16.9 16.0 15.2 14.4 13.7 13.1 12.4 11.8 11.2 10.5 9.9 9.4 8.9 8.4 8.1 7.8 7.5 7.2 6.9
Costa Rica 68.8 66.3 64.6 63.5 62.7 61.2 57.8 52.5 47.0 42.3 38.0 33.2 28.1 23.9 21.3 19.8 19.3 19.2 19.1 18.8 18.2 17.3 16.3 15.5 14.8 14.3 14.0 13.7 13.5 13.2 13.0 12.8 12.7 12.3 11.8 11.2 10.5 10.0 9.5 9.2 9.0 8.9 8.9 8.9 8.9 8.9 8.8 8.8 8.7 8.6 8.5
Cote d'Ivoire 225.6 219.7 214.1 208.4 203.0 197.7 192.8 188.0 183.3 178.7 174.2 169.9 165.4 161.0 156.4 151.3 146.1 140.7 135.1 129.7 124.7 120.2 116.6 113.7 111.4 109.5 108.0 106.9 106.1 105.5 105.2 104.9 104.9 104.9 104.8 104.7 104.7 104.6 104.4 104.0 103.3 102.3 101.0 99.5 97.7 95.7 93.6 91.4 88.9 86.7 84.1 81.3 79.0 76.9 75.0 72.8 70.6 68.5 66.6
Croatia 19.2 18.4 17.5 16.7 15.7 14.8 13.8 12.9 11.9 11.2 10.5 9.9 9.5 9.0 8.7 8.3 8.0 7.7 7.4 7.1 6.9 6.6 6.3 6.1 5.8 5.6 5.3 5.0 4.8 4.6 4.3 4.1 4.0 3.8 3.6
Cuba 41.8 40.4 39.5 39.2 39.3 39.5 39.0 37.4 34.5 30.9 27.8 26.0 24.7 23.1 20.8 18.7 17.4 16.7 16.5 16.3 16.1 15.7 15.0 14.1 13.3 12.2 11.4 10.6 9.8 9.3 8.8 8.6 8.4 8.2 7.8 7.3 6.9 6.5 6.1 5.9 5.6 5.4 5.1 4.9 4.8 4.7 4.7 4.9 4.8 4.6 4.4 4.1 4.0
Cyprus 21.0 19.4 17.8 16.3 14.8 13.5 12.2 11.3 10.7 10.3 10.0 9.9 9.7 9.3 8.9 8.4 7.8 7.4 6.9 6.4 5.9 5.5 5.1 4.7 4.4 4.2 3.9 3.7 3.5 3.3 3.1 3.0 2.9 2.8 2.7 2.6 2.5
Czech Republic 16.4 16.0 15.6 15.4 15.1 14.7 14.3 13.7 13.3 12.7 12.2 11.5 10.7 9.7 8.8 7.9 7.2 6.5 6.0 5.6 5.3 5.1 4.8 4.6 4.4 4.2 3.9 3.8 3.6 3.4 3.2 3.2 3.0 2.9 2.8
Democratic People's Republic of Korea 27.7 27.4 27.8 28.9 30.7 33.4 36.9 41.1 45.5 49.8 53.2 55.1 55.0 53.1 49.4 44.5 39.1 34.1 30.2 27.5 26.2 25.8 25.8 25.8 25.4 24.8 23.8 22.7 21.7 20.7 19.7
Democratic Republic of the Congo 150.7 149.0 147.5 145.9 144.2 142.5 140.7 138.9 137.1 135.4 133.7 132.0 130.5 129.0 127.7 126.3 125.2 124.0 122.9 121.8 120.8 119.8 118.7 117.7 116.8 115.8 114.9 113.8 112.5 110.9 109.3 107.4 105.3 103.1 100.9 98.7 96.3 93.9 91.5 89.2 86.9 84.8 82.6 80.5 78.3 76.5 74.5
Denmark 29.2 28.6 27.9 27.0 26.1 25.0 24.0 23.1 22.3 21.7 21.3 20.8 20.2 19.5 18.7 17.8 17.0 16.1 15.2 14.6 13.9 13.3 12.5 11.6 10.9 10.3 9.7 9.2 8.8 8.6 8.3 8.0 8.0 8.0 8.0 8.0 8.0 8.0 7.9 7.7 7.3 6.9 6.5 6.1 5.7 5.4 5.1 5.0 4.8 4.7 4.6 4.5 4.5 4.4 4.2 4.1 3.9 3.7 3.6 3.5 3.3 3.2 3.2 3.1 3.0 2.9
Djibouti 131.0 127.6 124.3 121.1 118.1 115.2 112.2 109.4 106.5 103.8 101.2 98.9 96.6 94.5 92.7 91.0 89.6 88.3 87.2 86.2 85.1 83.9 82.6 81.2 79.7 78.1 76.4 74.6 72.9 71.1 69.4 67.5 65.7 63.9 62.2 60.5 58.9 57.4 55.8 54.2
Dominica 85.3 79.2 73.6 68.7 64.2 60.4 57.0 53.9 51.1 48.1 44.7 41.0 37.0 32.9 29.0 25.5 22.4 19.9 17.9 16.4 15.3 14.5 14.1 13.8 13.7 13.7 13.8 13.9 14.0 14.1 14.2 14.3 14.3 14.3 14.2 14.1 14.0 13.8 13.7 13.5 13.4 13.4 13.4 13.4 13.7 14.0 14.4 14.9 15.5 16.3 17.2 17.9 18.7 19.3 19.5 19.6
Dominican Republic 107.2 106.9 106.6 106.3 106.0 105.6 105.1 104.5 103.9 103.1 102.1 101.0 99.6 98.1 96.4 94.6 92.8 91.1 89.3 87.5 85.7 83.7 81.6 79.4 77.2 74.9 72.6 70.3 68.2 66.1 64.0 62.0 60.0 58.2 56.4 54.6 52.9 51.3 49.6 48.1 46.5 44.9 43.3 41.8 40.3 38.9 37.6 36.4 35.2 34.2 33.3 32.5 31.8 31.2 30.6 30.1 29.6 29.1 28.7 28.3 27.9 27.5 27.1 26.7 26.2 25.7
Ecuador 139.3 135.5 131.8 128.2 124.7 121.4 118.2 115.3 112.3 109.6 107.0 104.6 102.4 100.3 98.2 96.0 93.7 91.2 88.4 85.5 82.5 79.5 76.5 73.6 70.9 68.1 65.3 62.5 59.7 57.1 54.6 52.3 50.1 48.1 46.1 44.2 42.3 40.5 38.7 36.9 35.2 33.6 32.1 30.7 29.5 28.4 27.4 26.5 25.7 25.0 24.3 23.7 23.1 22.5 21.9 21.3 20.7 20.1 19.5 19.0 18.4
Egypt 243.4 236.5 229.7 222.9 216.2 209.6 202.7 195.9 189.4 183.4 178.1 173.6 169.9 166.9 164.3 162.0 159.6 156.8 153.2 148.8 143.7 138.0 132.1 126.0 120.0 114.3 108.5 102.6 96.3 90.0 83.9 78.4 73.5 69.4 66.0 63.0 60.3 57.6 55.0 52.2 49.4 46.6 44.0 41.4 39.1 37.0 35.1 33.4 31.9 30.5 29.2 28.1 27.1 26.1 25.1 24.3 23.4 22.6 21.8 21.0 20.3
El Salvador 139.6 136.9 134.1 131.4 128.8 126.2 123.9 121.6 119.4 117.4 115.5 113.6 111.8 110.1 108.4 106.7 104.9 102.9 100.8 98.4 95.6 92.7 89.6 86.2 82.6 78.8 74.8 70.8 66.9 63.1 59.5 56.2 53.3 50.6 48.2 45.9 43.8 41.7 39.7 37.6 35.6 33.7 31.8 30.0 28.4 26.8 25.5 24.2 23.1 22.0 20.9 20.0 19.2 18.4 17.7 17.1 16.5 16.0 15.4 14.9 14.4
Equatorial Guinea 145.4 142.7 140.1 137.7 135.3 132.9 130.4 127.9 125.5 123.1 120.8 118.5 116.5 114.3 112.1 109.7 107.3 104.8 102.3 99.7 97.1 94.4 91.7 89.0 86.3 83.7 81.2 78.9 76.6 74.3 72.2 70.3 68.2
Eritrea 126.3 123.9 121.6 119.5 117.5 115.8 114.2 112.7 111.1 109.5 107.8 106.0 103.9 101.6 99.1 96.2 93.0 89.5 85.8 81.9 78.0 74.2 70.6 67.2 64.1 61.1 58.3 55.8 53.4 51.2 49.2 47.2 45.4 43.7 42.1 40.7 39.4 38.2 37.0 36.0 35.0 34.1
Estonia 22.4 21.6 20.9 20.2 19.6 19.0 18.5 18.0 17.6 17.1 16.5 15.9 15.2 14.5 13.6 12.8 12.0 11.1 10.3 9.6 8.8 8.2 7.5 6.9 6.3 5.8 5.3 4.8 4.4 4.0 3.6 3.2 2.9 2.7 2.5 2.3
Ethiopia 143.1 142.7 142.4 142.5 142.5 142.5 142.5 142.4 142.4 142.7 143.1 143.4 143.7 143.5 142.8 141.4 139.5 137.1 134.5 132.0 129.7 127.6 125.7 123.7 121.6 119.2 116.4 113.1 109.4 105.6 102.1 98.7 95.6 92.6 89.5 86.2 82.5 78.4 74.1 69.6 65.3 61.0 57.1 53.6 50.8 48.3 46.2 44.5 42.9 41.4
Fiji 94.6 88.4 82.7 77.5 72.8 68.6 65.0 61.6 58.7 56.2 54.0 52.1 50.3 48.8 47.5 46.3 45.3 44.5 43.9 43.5 43.1 42.9 42.7 42.4 42.0 41.4 40.6 39.5 38.2 36.8 35.3 33.8 32.4 31.2 30.1 29.1 28.2 27.3 26.4 25.6 24.8 24.1 23.5 22.9 22.4 22.1 21.8 21.5 21.2 21.0 20.8 20.5 20.3 20.1 20.1 20.1 20.2 20.3 20.3 20.3 20.3 20.1 20.0 19.7 19.4 19.1
Finland 34.2 33.0 31.7 30.4 29.1 27.8 26.4 24.8 23.4 21.9 20.6 19.5 18.4 17.4 16.6 15.8 15.1 14.4 13.9 13.2 12.6 12.0 11.3 10.8 10.0 9.4 8.7 8.1 7.6 7.2 6.7 6.5 6.3 6.1 6.0 6.0 5.9 5.8 5.7 5.5 5.3 5.0 4.8 4.5 4.3 4.0 3.9 3.8 3.6 3.5 3.4 3.4 3.3 3.2 3.1 2.9 2.9 2.7 2.6 2.5 2.4 2.2 2.1 2.0 1.9
France 47.6 44.5 41.4 38.5 35.9 33.4 31.1 28.9 26.9 25.2 23.7 22.4 21.3 20.3 19.4 18.5 17.7 17.1 16.5 15.8 15.1 14.4 13.7 13.1 12.7 12.4 12.0 11.5 11.0 10.6 10.2 9.8 9.5 9.1 8.8 8.5 8.2 8.1 7.9 7.7 7.4 7.1 6.7 6.3 5.8 5.3 5.0 4.8 4.6 4.5 4.4 4.4 4.2 4.0 3.9 3.8 3.7 3.6 3.5 3.5 3.5 3.5 3.5 3.6 3.6 3.5
Gabon 79.0 76.6 74.2 71.9 69.8 67.9 66.2 64.7 63.5 62.5 61.7 61.1 60.5 60.0 59.6 59.1 58.6 58.2 57.8 57.3 56.8 56.3 55.6 54.7 53.7 52.6 51.4 50.2 49.0 47.4 45.7 44.2 42.8 41.3 39.7 38.0 37.0 36.1
Gambia 158.6 156.0 153.4 150.8 148.4 146.1 143.8 141.5 139.3 137.1 134.9 132.6 130.5 128.3 126.0 123.8 121.5 119.1 116.7 114.4 112.1 109.8 107.6 105.4 103.2 100.9 98.6 96.2 93.7 91.3 88.9 86.5 84.3 82.1 80.0 78.0 76.1 74.3 72.6 70.9 69.3 67.7 66.2 64.8 63.3 62.0 60.6 59.3 58.0 56.8 55.6 54.5 53.6 52.6 51.7 50.9 50.1 49.4 48.6 47.9
Georgia 56.6 55.0 53.5 52.0 50.5 49.0 47.6 46.3 45.1 44.1 43.2 42.5 41.9 41.5 41.1 40.8 40.4 40.0 39.5 38.9 38.1 37.1 35.9 34.5 32.9 31.2 29.3 27.4 25.5 23.6 21.9 20.2 18.6 17.2 16.0 14.9 13.8 12.8 12.0 11.3 10.6
Germany 23.5 22.7 22.1 21.4 20.6 19.7 18.8 17.7 16.5 15.5 14.4 13.5 12.6 11.8 11.0 10.4 9.8 9.2 8.7 8.3 7.8 7.4 7.0 6.5 6.2 5.9 5.5 5.3 5.0 4.8 4.6 4.5 4.4 4.3 4.2 4.1 4.0 3.9 3.8 3.7 3.6 3.6 3.5 3.4 3.3 3.3 3.2 3.1
Ghana 151.8 148.3 144.8 141.6 138.5 135.6 132.9 130.6 128.6 126.7 125.1 123.8 122.7 121.8 121.2 120.8 120.7 120.6 120.6 120.5 120.1 119.5 118.2 116.5 114.2 111.5 108.7 106.0 103.8 102.1 100.9 100.1 99.3 98.4 96.8 94.7 92.1 89.0 85.8 82.7 79.8 77.5 75.6 74.1 73.0 72.0 71.0 69.8 68.4 66.7 64.9 63.0 61.2 59.6 58.1 56.8 55.6 54.4 53.1 51.7 50.2 48.6 47.0 45.5 44.2 42.8
Greece 49.9 50.1 50.2 49.8 49.1 48.3 47.3 46.2 45.0 43.6 42.3 41.2 39.9 38.3 36.1 33.7 31.9 30.8 30.1 29.4 28.5 27.3 25.9 24.3 22.8 21.3 19.9 18.7 17.7 16.7 15.8 14.9 13.9 12.9 12.0 11.3 10.7 10.3 9.8 9.4 9.1 8.7 8.3 7.8 7.4 6.9 6.5 6.0 5.5 5.2 4.8 4.6 4.4 4.3 4.2 4.1 4.0 3.9 3.8 3.7 3.6
Grenada 19.5 19.4 19.3 19.2 18.9 18.5 18.0 17.4 16.7 16.1 15.6 15.1 14.7 14.3 14.0 13.8 13.6 13.3 13.1 12.9 12.6 12.4 12.3 12.1 12.0 12.0 11.9 11.8 11.5 11.4 11.1 10.8
Guatemala 155.0 151.8 148.8 146.0 143.3 140.7 138.0 135.3 132.6 129.9 127.1 124.2 121.2 118.2 115.2 112.1 109.1 106.0 102.9 99.9 96.8 93.7 90.7 87.7 84.7 81.8 78.9 76.1 73.2 70.4 67.7 65.0 62.4 59.8 57.3 55.0 52.7 50.6 48.5 46.6 44.7 43.0 41.4 39.9 38.5 37.1 35.9 34.6 33.5 32.3 31.2 30.2 29.3 28.4 27.5 26.6 25.9 25.1 24.3
Guinea 210.5 209.1 207.6 206.1 204.5 202.6 200.9 199.0 197.1 195.2 193.2 191.1 189.1 186.8 184.5 181.9 179.1 176.2 173.2 170.2 167.3 164.3 161.4 158.5 155.7 152.8 150.0 147.1 144.0 140.8 137.3 133.7 129.9 126.2 122.3 118.5 114.7 110.9 106.9 103.1 99.2 95.4 91.7 88.2 84.9 81.9 79.0 76.3 73.7 71.2 68.9 66.8 64.7 62.8 61.0
Guinea-Bissau 145.9 143.1 140.4 137.9 135.5 132.9 130.2 127.6 124.8 122.1 119.1 116.2 113.1 110.1 106.9 103.8 100.5 97.1 93.7 90.1 86.7 83.3 79.9 76.6 73.4 70.3 67.4 64.8 62.4 60.3
Guyana 108.3 103.7 99.2 94.7 90.2 85.8 81.6 77.6 74.0 70.7 67.7 65.1 62.9 61.0 59.5 58.3 57.3 56.6 56.0 55.6 55.4 55.2 55.0 54.9 54.8 54.6 54.4 54.1 53.8 53.5 53.2 52.8 52.4 51.9 51.4 50.8 50.2 49.4 48.6 47.6 46.6 45.5 44.5 43.4 42.3 41.4 40.5 39.6 38.8 37.9 37.2 36.5 35.8 35.3 34.8 34.4 34.1 33.9 33.8 33.7 33.5 33.5 33.3 33.0 32.6 32.0
Haiti 209.0 205.3 201.7 198.2 194.8 191.5 188.3 185.2 182.2 179.1 176.0 172.9 169.8 166.6 163.4 160.1 156.6 153.0 149.5 146.0 142.6 139.2 135.8 132.5 129.4 126.2 123.0 120.0 117.1 114.3 111.5 108.8 106.1 103.5 101.0 98.4 95.8 93.1 90.4 87.8 85.1 82.4 79.9 77.4 75.0 72.8 70.7 68.9 67.2 65.6 64.1 62.7 61.3 60.0 85.5 57.5 56.2 54.8 53.5 52.2
Honduras 160.2 154.9 149.9 145.2 140.9 136.6 132.4 128.4 124.5 120.5 116.7 113.1 109.5 105.8 102.2 98.7 95.2 91.7 88.3 85.0 81.7 78.5 75.3 72.2 69.2 66.3 63.5 60.8 58.2 55.8 53.4 51.2 49.1 47.1 45.1 43.3 41.5 39.9 38.4 36.9 35.6 34.3 36.8 31.8 30.5 29.4 28.2 27.1 26.0 25.0 24.1 23.2 22.3 21.4 20.7 19.9 19.2 18.6 18.0 17.4
Hungary 64.2 64.5 64.5 63.0 59.9 56.4 53.4 51.0 49.0 47.3 45.8 44.4 43.2 42.0 41.0 39.9 39.0 38.5 38.4 38.6 38.1 35.8 32.5 29.4 27.1 25.3 23.8 22.6 22.0 22.0 21.9 21.4 20.6 19.4 18.4 17.6 16.9 16.2 15.4 14.2 13.0 12.1 11.5 11.1 10.7 10.2 9.7 9.1 8.6 8.0 7.5 7.2 6.8 6.5 6.2 5.9 5.7 5.5 5.4 5.4 5.3 5.3
Iceland 24.0 22.9 21.8 20.8 20.0 19.3 18.7 18.2 17.8 17.5 17.2 16.9 16.4 16.0 15.5 15.0 14.4 13.9 13.4 12.8 12.3 11.8 11.3 10.8 10.3 9.8 9.2 8.7 8.3 7.8 7.4 7.0 6.7 6.4 6.1 5.9 5.6 5.5 5.2 5.1 4.9 4.7 4.5 4.3 4.1 3.9 3.7 3.5 3.3 3.1 3.0 2.8 2.7 2.6 2.4 2.3 2.2 2.1 1.9 1.9 1.8 1.7 1.6 1.6 1.6
India 186.6 183.2 179.8 176.7 173.7 170.8 167.9 165.1 162.5 160.1 157.6 155.3 153.2 151.0 148.9 146.9 144.8 142.8 140.6 138.3 135.8 133.1 130.3 127.2 124.0 120.7 117.5 114.3 111.3 108.4 105.7 103.1 100.6 98.1 95.6 93.1 90.7 88.3 86.1 83.9 81.7 79.6 77.5 75.4 73.1 70.9 68.6 66.4 64.2 62.0 59.9 57.8 55.8 53.9 51.9 50.0 48.2 46.3 44.4 42.6 40.9 39.3 37.9
Indonesia 192.2 186.6 181.2 175.9 170.8 165.9 161.2 156.7 152.4 148.4 144.8 141.2 137.7 134.1 130.6 127.0 123.4 119.8 116.4 113.1 109.9 106.7 103.6 100.6 97.8 95.1 92.5 90.0 87.7 85.4 83.1 80.8 78.5 76.2 74.0 71.6 69.3 67.0 64.6 62.2 59.8 57.4 55.1 52.9 50.8 48.7 46.7 44.7 42.9 41.1 39.4 37.8 36.3 36.0 33.4 32.1 30.9 29.7 28.5 27.4 26.3 25.3 24.4 23.6 22.8
Iran (Islamic Republic of) 126.0 120.7 115.9 110.9 105.8 100.5 95.0 89.4 83.7 78.3 73.2 68.5 64.4 60.8 57.6 54.7 51.9 49.3 46.9 44.6 42.6 40.8 39.2 37.7 36.2 34.7 33.2 31.7 30.1 28.6 27.1 25.6 24.3 23.0 21.7 20.5 19.4 18.3 17.3 16.4 15.7 15.1 14.5 13.9 13.4
Iraq 246.2 231.0 216.3 202.8 190.1 178.1 167.1 156.9 147.7 139.4 131.7 124.7 118.3 112.5 107.1 102.1 97.4 93.0 88.9 85.1 81.5 78.1 74.9 71.9 68.9 66.2 63.6 61.2 58.9 56.9 55.0 53.3 51.6 50.1 48.7 47.4 46.1 45.1 44.0 43.1 42.3 41.6 40.8 40.2 39.5 38.9 38.3 37.6 37.0 36.4 35.8 35.2 34.6 34.1 33.5 33.0 32.4 31.8 31.2 30.6 30.0 29.3 28.7 27.9 27.2 26.5
Ireland 45.6 43.8 41.9 40.0 38.2 36.7 35.3 34.0 32.8 31.6 30.4 29.2 28.0 27.0 26.0 24.7 23.3 21.9 20.7 19.7 19.0 18.5 18.3 18.0 17.5 17.0 16.2 15.2 14.2 13.0 12.0 11.2 10.4 9.8 9.3 8.9 8.7 8.4 8.3 8.0 7.7 7.2 6.8 6.4 6.2 6.1 6.1 6.1 6.1 6.1 5.9 5.8 5.4 5.1 4.7 4.4 4.1 3.9 3.8 3.6 3.5 3.4 3.4 3.2 3.1 3.0
Israel 25.0 22.4 20.3 18.6 17.2 16.1 15.3 14.6 14.0 13.5 12.8 12.1 11.5 11.0 10.4 10.1 9.7 9.2 8.7 8.2 7.6 7.2 6.7 6.4 6.1 5.9 5.6 5.4 5.2 4.9 4.7 4.5 4.3 4.1 3.9 3.8 3.7 3.5 3.4 3.3 3.3 3.2
Italy 71.2 65.8 61.1 56.9 53.5 51.0 49.3 48.1 47.0 45.6 44.2 42.7 41.0 39.2 37.3 35.7 34.3 33.1 32.0 30.9 29.7 28.2 26.5 24.5 22.5 20.5 18.7 17.3 16.1 15.1 14.3 13.4 12.6 11.9 11.2 10.5 9.9 9.4 9.1 8.7 8.3 8.0 7.7 7.3 6.9 6.4 6.0 5.6 5.3 5.0 4.7 4.4 4.3 4.0 3.8 3.7 3.7 3.6 3.5 3.5 3.4 3.3 3.2 3.1 3.0 2.9
Jamaica 86.6 83.0 79.6 76.3 73.1 70.1 67.3 64.6 62.0 59.8 57.7 55.8 54.0 52.4 50.8 49.3 47.9 46.3 44.8 43.3 41.8 40.3 39.0 37.8 36.7 35.6 34.7 33.8 32.9 32.1 31.3 30.5 29.7 29.0 28.3 27.5 26.8 26.1 25.4 24.7 24.0 23.3 22.6 21.9 21.2 20.5 19.9 19.3 18.7 18.2 17.8 17.4 17.1 16.9 16.7 16.5 16.2 15.9 15.5 15.1 14.8 14.4 13.9 13.5
Japan 57.8 53.6 49.9 46.6 43.7 41.4 39.2 37.2 35.1 32.9 30.4 27.9 25.5 23.2 21.0 19.1 17.5 16.3 15.1 14.2 13.4 12.6 11.9 11.3 10.6 10.0 9.4 8.8 8.3 7.9 7.4 6.9 6.5 6.2 5.8 5.5 5.2 5.0 4.8 4.7 4.6 4.5 4.4 4.3 4.3 4.1 4.0 3.8 3.6 3.4 3.3 3.1 3.0 2.9 2.9 2.7 2.7 2.6 2.5 2.4 2.4 2.3 2.2 2.1 2.1 2.0
Jordan 183.6 174.1 164.9 156.3 148.0 140.5 133.2 126.0 119.4 113.3 107.5 101.9 96.6 91.6 87.1 82.8 78.9 75.2 71.8 68.6 65.7 62.9 60.2 57.8 55.5 53.3 51.2 49.1 47.2 45.3 43.5 41.8 40.2 38.6 37.1 35.7 34.3 33.1 32.0 30.9 30.0 29.1 28.3 27.5 26.8 26.2 25.5 24.9 24.3 23.8 23.2 22.6 22.1 21.5 20.9 20.4 19.9 19.3 18.8 18.3 17.8 17.3 16.8 16.3 15.8 15.4
Kazakhstan 68.2 66.9 65.6 64.5 63.4 62.4 61.4 60.3 59.2 57.8 56.3 54.7 53.0 51.4 49.9 48.5 47.1 46.0 45.2 44.7 44.5 44.7 44.9 45.0 44.8 44.0 42.7 41.1 39.4 37.5 35.7 33.9 32.1 30.3 28.6 26.8 24.8 23.0 21.1 19.3 17.5 16.0 14.6 13.5 12.6
Kenya 180.7 170.3 160.6 151.7 143.5 136.1 129.5 123.8 118.6 114.0 109.9 106.5 103.6 101.2 99.0 97.1 95.2 93.3 91.3 89.3 87.3 85.2 83.0 80.7 78.4 76.0 73.7 71.5 69.4 67.5 65.8 64.4 63.4 62.7 62.5 62.7 63.4 64.5 65.8 67.4 68.9 70.4 71.4 71.9 71.7 71.1 69.9 68.4 66.5 64.5 62.2 59.7 57.2 54.3 51.8 49.5 46.2 44.3 42.4 40.3 39.2 38.0 36.6 35.5
Kiribati 122.2 117.8 113.9 110.1 106.5 103.2 100.0 97.3 94.8 92.6 90.8 89.5 88.5 87.7 87.2 86.8 86.5 86.1 85.7 85.1 84.2 83.0 81.4 79.5 77.2 74.7 72.0 69.4 67.0 65.0 63.2 61.6 60.3 58.9 57.5 56.1 54.6 53.2 51.9 50.9 50.1 49.7 49.5 49.5 49.5 49.3 48.9 48.3 47.5 46.6 45.6 44.6 43.6
Kuwait 108.3 101.6 95.2 89.0 83.3 77.8 72.6 68.0 63.7 60.0 56.6 53.5 50.6 47.9 45.3 42.8 40.5 38.2 36.0 33.9 31.8 29.6 27.4 25.2 23.0 21.1 19.7 18.5 17.6 16.8 16.1 15.3 15.3 14.0 13.5 13.1 12.7 12.3 11.9 11.5 11.1 10.9 10.7 10.6 10.4 10.3 10.1 10.0 9.8 9.7 9.5 9.2 8.9 8.5 8.1 7.7 7.3
Kyrgyzstan 87.9 86.1 84.5 82.8 80.9 78.8 76.4 73.7 70.7 67.5 64.4 61.4 58.7 56.5 54.9 54.1 53.8 53.6 53.3 52.6 51.3 49.5 47.5 45.5 43.5 41.6 39.8 38.2 36.7 35.3 34.2 33.0 31.7 30.1 28.4 26.5 24.6 22.9 21.4 20.1 19.0
Lao People's Democratic Republic 139.6 137.1 134.7 132.3 130.0 127.7 125.3 123.0 120.6 118.4 116.1 113.6 111.1 108.6 105.9 103.1 100.2 97.4 94.4 91.5 88.7 86.0 83.2 80.5 77.8 75.2 72.7 70.2 67.8 65.5 63.2 61.0 59.0 57.1 55.4 53.7 52.3 50.7
Latvia 19.4 19.4 19.4 19.1 18.7 17.8 16.8 15.7 15.0 14.8 15.4 16.6 18.0 19.1 19.6 19.9 19.7 19.1 18.1 16.9 15.7 14.5 13.6 12.8 12.2 11.4 10.7 10.1 9.6 9.1 8.6 8.2 7.8 7.6 7.4 7.2 6.9
Lebanon 64.4 62.7 61.0 59.3 57.6 56.1 54.7 53.4 52.3 51.4 50.5 49.8 49.1 48.6 48.1 47.6 47.2 46.6 46.1 45.4 44.6 43.6 42.6 41.5 40.3 39.1 37.8 36.4 35.0 33.6 32.2 30.8 29.4 28.2 26.9 25.8 24.7 23.7 22.7 21.8 20.8 19.9 19.0 18.1 17.1 16.1 15.1 14.1 13.1 12.1 11.2 10.4 9.7 9.2 8.7 8.3 7.9 7.6 7.3 7.1
Lesotho 171.3 166.6 162.0 157.6 153.7 150.1 147.2 144.9 143.3 142.3 141.7 141.5 141.3 140.9 140.1 138.9 137.0 134.5 131.6 128.7 125.4 122.0 118.4 114.6 110.4 106.2 101.8 97.6 93.5 89.5 85.8 82.7 79.8 77.4 75.3 73.7 72.3 71.4 70.8 70.6 71.1 72.3 74.3 76.6 78.8 80.5 81.8 83.0 84.1 85.2 86.3 87.3 87.9 88.1 87.5 84.3 84.5 78.8 75.2 71.9 72.3 71.9 70.5 69.2
Liberia 210.5 211.1 211.6 212.0 212.1 211.4 210.4 208.8 206.8 204.6 201.7 198.5 194.9 191.3 187.8 184.4 181.0 177.5 174.2 171.3 168.3 165.7 163.1 160.8 158.7 157.1 156.1 155.9 156.7 158.6 161.5 164.6 167.7 170.1 171.2 170.3 167.8 163.7 158.3 151.9 145.2 138.1 130.6 123.0 115.6 108.2 101.0 94.0 87.6 81.9 76.9 72.5 68.6 65.2 62.1 59.4 56.9 54.7 52.8
Libya 173.4 164.5 156.1 148.4 140.9 133.5 126.6 119.8 113.3 107.1 101.4 96.0 90.9 86.0 81.3 76.9 72.8 69.0 65.6 62.5 59.6 57.0 54.6 52.2 49.9 47.6 45.5 43.4 41.3 39.3 37.3 35.5 33.8 32.2 30.8 29.6 28.4 27.4 26.5 25.7 24.9 24.2 23.4 22.7 21.9 20.9 19.8 18.6 17.3 16.1 15.1 14.3 13.9 12.9 12.4 11.9 11.4
Lithuania 24.1 23.3 22.1 20.5 18.9 18.4 18.9 19.8 20.2 20.1 19.7 19.3 18.8 18.1 17.6 17.1 16.6 16.1 15.4 14.5 13.6 12.8 12.5 13.4 14.9 16.1 16.0 14.9 13.5 12.0 11.0 10.4 10.0 9.6 9.2 8.9 8.7 8.4 8.1 7.7 7.2 6.7 6.1 5.6 5.0 4.5 4.0 3.6 3.3
Luxembourg 25.4 24.4 23.4 22.4 21.3 20.3 19.3 18.1 17.1 16.1 15.1 14.2 13.4 12.8 12.2 11.7 11.2 10.9 10.5 10.1 9.7 9.4 8.9 8.5 8.1 7.7 7.3 6.8 6.3 6.0 5.6 5.2 4.9 4.6 4.4 4.1 3.9 3.7 3.4 3.3 3.0 2.8 2.6 2.4 2.2 2.0 1.9 1.8 1.6 1.6 1.6 1.5
Madagascar 91.5 92.4 93.2 94.2 95.3 96.7 98.2 99.5 100.8 101.9 103.0 104.1 105.4 107.0 108.5 109.6 110.0 109.6 108.3 106.4 103.9 101.0 98.1 95.4 92.9 90.7 88.4 85.9 83.1 80.0 76.7 73.2 69.7 66.2 62.9 59.7 56.5 53.5 50.6 47.9 45.7 43.8 42.1 40.6 39.3 38.1 37.0 35.9
Malawi 214.3 213.3 212.3 211.5 210.8 209.6 207.7 204.8 200.6 195.5 189.9 184.0 177.5 170.6 163.8 157.4 151.8 147.3 144.4 143.4 144.6 146.9 149.0 149.6 148.6 146.2 142.5 137.9 133.1 128.6 124.9 121.9 119.5 117.1 113.9 109.4 103.5 96.5 88.8 81.6 75.5 70.7 67.1 64.5 61.7 59.6 57.5 53.8 50.2 47.3 45.1 43.4
Malaysia 82.6 78.4 74.5 70.8 67.4 64.2 61.1 58.3 55.8 53.4 51.2 49.1 47.2 45.3 43.5 41.7 39.8 38.0 36.1 34.2 32.4 30.5 28.8 27.0 25.4 23.8 22.4 21.0 19.7 18.6 17.5 16.6 15.7 15.0 14.3 13.6 13.0 12.4 11.9 11.5 11.1 10.7 10.1 9.4 8.7 8.1 7.6 7.3 7.1 7.0 6.9 6.9 6.9 6.9 6.8 6.7 6.6 6.4 6.2 6.0
Maldives 217.1 211.1 205.3 199.2 193.1 186.9 180.5 174.0 167.1 159.7 152.0 144.4 137.2 130.3 123.7 117.7 112.1 106.8 101.9 97.3 92.9 88.8 84.9 81.2 77.7 74.4 71.2 68.2 65.3 62.5 59.5 56.5 53.4 50.1 46.7 43.1 39.4 35.6 31.8 28.3 24.9 22.6 19.4 17.2 15.3 13.7 12.4 11.2 10.1 9.2 8.4 7.8 7.4
Mali 216.5 212.8 209.2 206.1 203.0 200.3 197.9 195.7 193.5 191.1 188.2 184.8 180.9 176.9 172.8 168.7 164.8 161.2 157.7 154.2 150.5 147.0 143.7 140.7 137.8 135.2 132.8 130.6 128.7 127.3 126.2 125.3 124.5 123.6 122.6 121.0 118.9 116.0 112.6 108.8 104.7 100.6 96.7 93.2 90.1 87.5 85.0 82.9 81.0 79.2 77.6 75.9 74.5
Malta 51.1 48.1 45.3 42.7 40.2 38.1 36.4 34.9 33.7 32.6 31.6 30.6 29.5 28.3 27.2 26.0 24.7 23.6 22.3 21.2 20.1 19.0 17.9 17.0 16.2 15.6 15.0 14.4 13.9 13.4 12.8 12.3 11.7 11.3 10.9 10.4 10.0 9.7 9.3 9.0 8.7 8.4 8.0 7.6 7.4 7.1 6.8 6.6 6.4 6.2 6.1 6.0 5.9 5.9 5.8 5.7 5.6 5.6 5.5 5.3 5.2 5.1
Marshall Islands 93.7 90.4 87.0 83.8 80.8 77.9 75.2 72.6 70.2 68.0 65.9 64.0 62.3 60.7 59.5 58.4 57.5 56.7 55.9 55.1 54.2 53.2 52.1 50.9 49.6 48.2 46.8 45.5 44.1 42.6 41.1 39.7 38.3 37.0 35.8 34.9 34.2 33.8 33.6 33.5 33.5 33.5 33.3 33.2 33.0 32.7 32.5 32.4 32.2 32.1 31.9 31.8 31.6 31.2 30.8 30.2 29.6
Mauritania 161.9 159.7 157.3 154.8 152.1 149.5 146.7 143.8 140.9 137.9 135.0 131.9 128.9 126.0 123.1 120.3 117.6 114.8 112.2 110.0 108.5 107.5 107.0 106.6 106.1 105.1 103.6 102.0 100.1 98.1 96.3 94.4 92.5 90.6 88.5 86.3 84.1 82.1 80.4 79.0 77.9 77.2 76.7 76.4 76.3 76.3 76.3 76.3 76.3 76.2 76.2 76.0 75.9 75.7 75.3 74.7 74.0 73.1 72.1 71.1 70.1 69.2 68.1 67.2 66.1 65.1
Mauritius 84.4 76.7 71.9 69.2 67.8 66.3 63.6 59.9 58.1 60.5 65.5 68.4 66.5 62.8 60.3 59.4 58.7 57.4 54.5 49.6 44.1 39.5 36.3 34.0 32.3 30.5 28.3 25.7 23.9 23.7 24.4 24.4 23.1 21.3 19.9 18.8 18.4 18.4 18.8 19.4 19.9 19.8 19.0 17.8 16.4 15.1 14.2 13.8 13.7 13.8 14.0 14.1 13.9 13.6 13.3 13.1 12.8 12.6 12.2 11.8
Mexico 90.8 89.3 87.6 86.0 84.1 82.0 79.8 77.5 75.1 72.7 70.5 68.5 66.6 64.7 62.8 60.7 58.5 56.1 53.7 51.4 49.2 47.3 45.5 43.8 42.1 40.5 38.8 37.1 35.4 33.7 32.0 30.4 28.8 27.3 25.8 24.3 22.9 21.6 20.4 19.3 18.2 17.4 16.7 16.2 15.8 15.4 15.0 14.4 13.8 13.1 12.5 11.9 11.3
Micronesia (Federated States of) 44.4 45.0 45.4 45.7 45.6 45.4 45.0 44.4 43.9 43.4 43.1 43.0 43.0 43.1 43.3 43.5 43.6 43.3 42.9 42.2 41.5 40.6 39.6 38.6 37.7 36.6 35.7 34.7 33.8 32.9 32.0 31.1 30.2 29.4 28.6
Monaco 6.6 6.4 6.0 5.8 5.5 5.3 5.1 4.9 4.7 4.5 4.3 4.2 4.1 3.9 3.8 3.7 3.7 3.6 3.5 3.4 3.3 3.2 3.2 3.1 3.0 2.9 2.8
Mongolia 121.8 117.4 113.3 109.3 105.6 101.9 98.3 94.6 91.0 87.3 83.7 80.3 76.9 73.8 70.7 67.8 65.0 62.2 59.4 56.6 53.8 51.0 48.2 45.3 42.5 39.8 37.3 34.9 32.7 30.6 28.6 26.8 25.0 23.4 22.1 20.9 19.9 19.0
Montenegro 23.8 21.8 19.9 18.2 16.8 15.7 14.9 14.3 14.0 13.8 13.7 13.6 13.6 13.5 13.2 13.0 12.5 12.0 11.5 10.9 10.1 9.5 8.8 8.2 7.4 6.8 6.3 5.7 5.3 4.9 4.6 4.3
Morocco 154.4 152.0 149.6 147.3 145.0 142.7 140.4 138.0 135.5 133.0 130.4 127.9 125.4 123.0 120.8 118.8 116.8 114.7 112.4 109.9 107.1 104.0 100.7 97.4 94.0 90.6 87.3 83.9 80.6 77.2 74.1 71.0 68.2 65.6 63.1 60.8 58.5 56.2 54.1 51.8 49.7 47.7 45.8 43.9 42.2 40.5 38.9 37.4 35.9 34.5 33.2 31.9 30.7 29.6 28.5 27.4 26.4 25.5 24.6 23.7
Mozambique 185.6 185.0 184.1 183.5 182.6 181.9 181.2 180.5 179.8 179.0 178.0 177.2 176.4 175.7 175.1 174.6 174.1 173.3 172.3 170.9 169.2 167.5 165.7 163.8 161.8 159.7 157.4 154.7 151.5 147.8 143.4 138.3 132.7 126.6 120.7 115.0 109.3 104.0 99.1 94.6 90.4 86.6 81.5 78.0 74.3 71.9 68.1 63.6 60.9 58.5 56.7
Myanmar 126.6 123.9 121.4 118.9 116.5 114.0 111.6 109.1 106.8 104.3 101.9 99.6 97.3 95.2 93.1 91.2 89.2 87.3 85.5 83.7 81.9 80.1 78.3 76.4 74.6 72.7 70.8 69.0 67.3 65.6 63.9 62.3 60.7 59.2 57.7 56.2 54.7 53.2 51.7 50.2 53.4 47.3 45.8 44.5 43.2 41.9 40.7 39.5
Namibia 62.3 62.3 62.5 62.6 62.8 62.9 63.1 63.3 63.4 63.6 63.7 63.7 63.6 63.2 62.5 61.5 60.2 58.7 57.1 55.4 53.8 52.3 50.8 49.6 48.5 47.8 47.5 47.4 47.6 48.0 48.4 48.9 49.2 49.4 49.2 48.7 48.1 47.1 45.3 44.1 42.7 41.3 39.2 37.5 36.0 35.5 34.3 33.4 32.8
Nauru 44.3 42.9 41.6 40.4 39.2 38.1 37.0 35.9 34.9 34.0 33.3 32.6 32.1 31.7 31.5 31.5 31.7 32.0 32.2 32.2 32.0 31.5 31.0 30.4 29.7 29.1
Nepal 225.7 224.7 223.7 222.0 219.6 216.7 213.3 209.4 205.2 200.7 195.9 191.3 186.8 182.6 178.6 174.6 170.9 167.2 163.6 159.9 156.2 152.3 148.3 144.3 140.3 136.2 132.1 128.0 123.9 119.7 115.4 111.1 106.7 102.3 97.7 93.2 88.9 84.7 80.7 76.8 73.1 69.6 66.2 62.8 59.6 56.7 53.8 51.2 48.7 46.3 44.1 42.0 40.0 38.1 36.3 34.6 33.1 31.7 30.5 29.4
Netherlands 25.0 23.9 22.8 21.7 20.7 19.8 18.9 18.2 17.5 17.0 16.4 16.1 15.6 15.3 14.9 14.5 14.2 13.8 13.4 13.1 12.6 12.2 11.7 11.3 10.9 10.5 10.1 9.7 9.3 9.0 8.8 8.6 8.4 8.2 8.0 7.9 7.7 7.5 7.2 7.0 6.8 6.5 6.3 6.1 5.8 5.7 5.5 5.3 5.3 5.2 5.1 5.0 4.9 4.7 4.6 4.5 4.3 4.2 4.0 3.8 3.7 3.6 3.5 3.3 3.3 3.2
New Zealand 28.5 28.0 27.3 26.6 25.9 25.2 24.8 24.3 23.8 23.3 22.6 21.7 20.9 20.0 19.3 18.7 18.3 17.9 17.5 17.2 16.9 16.5 16.2 15.8 15.4 14.9 14.4 13.9 13.5 13.1 12.7 12.4 12.1 11.9 11.6 11.3 11.0 10.6 10.2 9.7 9.2 8.7 8.2 7.8 7.5 7.1 6.9 6.6 6.4 6.2 6.1 5.9 5.8 5.7 5.5 5.4 5.3 5.3 5.3 5.2 5.1 5.0 4.9 4.9 4.8 4.7
Nicaragua 141.3 139.7 138.1 136.8 135.4 134.0 132.5 131.1 129.7 128.2 126.6 125.0 123.1 121.1 118.9 116.6 114.0 111.2 107.9 104.2 100.3 95.9 91.3 86.7 82.1 77.8 73.7 69.9 66.6 63.6 60.9 58.6 56.5 54.5 52.7 50.9 49.0 47.1 45.2 43.3 41.4 39.5 37.6 37.0 34.2 32.6 31.2 29.8 28.6 27.4 26.3 25.3 24.4 23.5 22.7 22.0 21.3 20.6 20.0 19.4 18.8
Niger 133.1 134.5 136.1 137.6 139.1 140.4 141.4 141.8 141.4 140.5 138.9 137.2 135.7 134.8 134.6 135.3 136.7 138.3 139.8 140.9 141.4 140.9 139.8 138.1 135.6 132.6 128.9 124.6 119.9 115.4 111.3 107.7 104.3 101.1 97.7 94.1 90.2 86.2 82.3 78.7 75.2 71.9 68.9 66.1 63.7 61.6 59.8 58.4 57.1
Nigeria 195.4 191.0 186.8 182.6 178.2 173.7 168.9 164.1 159.2 154.1 149.2 144.4 139.9 135.8 132.2 129.3 127.0 125.4 124.4 123.9 123.9 124.3 124.9 125.4 125.8 126.0 125.9 125.8 125.5 125.1 124.4 123.4 121.9 119.9 117.5 114.8 112.0 109.0 105.9 102.9 99.8 96.6 93.4 90.3 87.3 84.3 81.5 78.8 76.2 73.8 71.5 69.4
Niue 9.6 10.2 10.7 11.3 11.9 12.5 13.2 13.9 14.6 15.4 16.1 16.9 17.8 18.8 19.7 20.7 21.6 22.5 23.0 23.3 23.3 23.2 22.9 22.5 22.1 21.6 21.1 20.5 20.0 19.6
Norway 26.9 25.2 23.7 22.5 21.7 21.0 20.5 20.0 19.5 19.0 18.4 18.0 17.5 17.1 16.6 16.0 15.4 14.8 14.2 13.7 13.1 12.7 12.2 11.6 11.0 10.5 9.9 9.3 8.8 8.4 8.2 8.0 8.0 8.1 8.2 8.3 8.3 8.2 7.9 7.5 7.0 6.4 5.8 5.3 4.9 4.6 4.4 4.2 4.1 4.0 4.0 3.8 3.6 3.5 3.4 3.2 3.1 3.0 2.9 2.7 2.6 2.5 2.3 2.3 2.2 2.0
Oman 218.7 207.9 197.6 187.8 178.5 169.3 160.4 151.8 143.9 136.1 128.6 121.2 114.2 107.1 100.1 92.9 86.1 79.4 72.8 66.6 60.7 55.3 50.4 45.8 41.8 38.2 35.0 32.0 29.3 26.8 24.5 22.5 20.7 19.2 17.7 16.4 15.3 14.3 13.3 12.5 11.9 11.4 10.9 10.6 10.4 10.2 10.1 10.0 10.0 10.0 10.0 10.0 9.9
Pakistan 286.7 273.2 260.2 248.0 236.8 226.3 216.6 207.7 199.5 192.0 184.8 178.0 171.7 165.8 160.5 155.7 151.5 147.7 144.3 141.1 138.3 135.7 133.4 131.2 129.4 127.7 126.1 124.7 123.4 122.1 120.7 119.4 117.9 116.4 114.8 113.1 111.4 109.6 107.8 106.1 104.3 102.5 100.7 98.9 97.1 95.2 93.3 91.4 89.5 87.7 86.0 84.4 82.9 81.4 80.0 78.7 77.4 76.1 74.8 73.5 72.1 70.6 69.1 67.4 65.8
Palau 35.1 34.3 33.7 33.0 32.3 31.7 31.0 30.2 29.4 28.7 27.8 27.0 26.2 25.3 24.4 23.7 22.9 22.0 21.3 20.7 20.1 19.5 18.8 18.2 17.6 17.2 16.6 16.2 15.7 15.1 14.7 14.2
Panama 84.1 81.9 79.8 77.7 75.7 73.8 72.0 70.3 68.6 66.9 65.3 63.6 61.9 60.4 59.0 57.6 56.2 54.7 53.2 51.4 49.5 47.4 45.4 43.5 41.8 40.3 39.0 37.9 36.8 35.7 34.6 33.4 32.3 31.1 30.1 29.1 28.1 27.2 26.4 25.7 25.1 24.6 24.2 23.8 23.5 23.3 23.0 22.7 22.3 21.9 21.4 20.9 20.4 19.9 19.4 19.0 18.5 18.0 17.5 17.0 16.5 16.0 15.5 15.1 14.6
Papua New Guinea 155.6 151.0 146.6 142.5 138.5 134.6 130.7 126.9 123.2 119.6 116.1 112.7 109.5 106.3 103.1 100.1 97.1 94.4 91.7 89.2 86.9 84.6 82.5 80.6 78.8 77.1 75.5 74.0 72.6 71.3 70.2 69.1 68.1 67.1 66.2 65.3 64.4 63.4 62.6 61.9 61.2 60.5 59.9 59.3 58.8 58.3 57.8 57.3 56.7 56.2 55.6 54.7 53.8 52.7 51.6 50.3 49.2 48.0 47.0 45.7 44.5
Paraguay 65.6 64.8 64.0 63.3 62.6 62.0 61.4 60.9 60.5 60.0 59.6 59.3 58.9 58.4 58.0 57.4 56.8 56.1 55.3 54.5 53.6 52.6 51.6 50.5 49.4 48.3 47.0 45.7 44.4 43.2 41.9 40.7 39.4 38.3 37.1 35.9 34.8 33.8 32.8 31.8 30.9 30.1 29.3 28.5 27.7 26.9 26.1 25.3 24.6 23.8 23.1 22.4 21.7 21.0 20.4 19.8 19.2 18.6 18.1 17.5
Peru 174.6 168.1 162.0 156.2 151.2 146.6 142.7 139.2 135.9 132.6 129.1 125.4 121.8 118.2 114.8 111.6 108.7 106.0 103.4 100.9 98.3 95.8 93.3 91.0 88.9 87.0 85.5 83.9 82.4 80.7 78.7 76.3 73.7 70.7 67.6 64.6 61.7 58.9 56.3 53.7 51.0 48.2 45.4 42.5 39.7 36.9 34.3 31.8 29.6 27.6 25.7 24.1 22.6 21.3 20.1 19.0 18.0 17.1 16.3 15.6 14.9 14.2 13.6 13.1
Philippines 87.5 84.3 81.1 78.2 75.3 72.6 70.1 67.9 65.9 64.2 62.7 61.4 60.2 59.1 58.0 57.0 56.1 55.4 54.9 54.7 54.5 54.4 54.4 54.3 54.2 54.0 53.7 53.2 52.8 52.3 51.7 50.9 49.8 48.4 46.7 44.8 42.8 40.8 39.0 37.3 35.9 34.6 33.5 32.6 31.8 31.1 30.5 29.9 29.4 28.9 28.4 27.9 27.4 26.9 26.4 25.9 25.4 24.9 24.4 23.9 23.3 22.8 22.2
Poland 75.3 65.0 57.8 53.0 49.6 46.8 43.9 40.8 37.9 35.7 34.4 33.4 32.2 30.6 28.8 26.9 25.4 24.5 23.9 23.3 22.5 21.7 21.0 20.5 20.0 19.3 18.6 17.8 17.1 16.6 16.1 15.7 15.1 14.7 14.3 13.9 13.5 12.6 11.6 10.4 9.4 8.6 8.1 7.6 7.3 7.0 6.7 6.6 6.3 6.0 5.8 5.3 5.0 4.7 4.6 4.5 4.5 4.5
Portugal 90.3 89.0 87.8 87.0 86.3 85.7 84.6 82.3 78.7 74.4 70.1 66.4 63.6 61.7 60.2 58.1 55.4 51.8 47.6 43.3 39.4 36.0 32.7 29.5 26.8 24.6 22.8 21.3 19.9 18.6 17.6 16.5 15.5 14.5 13.5 12.5 11.5 10.6 9.7 8.8 8.1 7.4 7.0 6.6 6.3 5.9 5.5 5.2 4.7 4.3 4.0 3.7 3.5 3.3 3.3 3.2 3.1 3.1 3.1 3.1 3.0 3.0
Qatar 53.5 50.4 47.5 44.8 42.2 39.9 37.7 35.8 34.0 32.4 31.0 29.7 28.4 27.2 26.0 24.8 23.7 22.5 21.3 20.1 18.9 17.8 16.7 15.6 14.7 13.9 13.2 12.5 12.0 11.5 11.1 10.6 10.2 9.8 9.5 9.2 8.9 8.6 8.4 8.1 7.9 7.7 7.5 7.3 7.2 7.0 6.8
Republic of Korea 222.0 186.7 159.1 137.7 121.2 108.7 98.8 91.2 85.1 80.2 76.1 72.4 68.8 65.3 61.6 57.8 54.0 49.9 45.7 41.4 37.3 33.3 29.5 26.0 22.8 19.9 17.4 15.4 13.7 12.3 11.3 10.5 9.8 9.2 8.5 7.9 7.4 6.9 6.5 6.1 5.8 5.5 5.2 5.0 4.7 4.5 4.5 4.7 4.9 5.2 5.5 5.6 5.4 5.2 4.8 4.5 4.1 3.9 3.7 3.5 3.4 3.3 3.2 3.0 2.9
Republic of Moldova 49.7 48.5 47.3 46.1 44.9 43.8 42.6 41.6 40.6 39.7 38.7 37.4 36.0 34.5 32.9 31.4 29.9 28.7 27.8 27.3 27.5 28.2 29.2 30.2 31.0 31.3 30.8 29.8 28.1 26.0 23.7 21.5 19.5 18.0 16.9 16.0 15.5 15.2 14.9 14.7 14.5 14.3 14.1 13.9 13.6
Romania 64.1 60.9 57.2 53.4 50.1 47.3 44.8 42.8 41.0 39.3 37.8 36.3 34.9 33.6 32.5 31.8 31.6 31.8 32.2 32.6 32.6 32.0 31.0 30.1 29.1 28.5 27.9 27.3 26.7 26.0 25.0 24.2 23.2 22.4 21.6 20.6 19.5 18.2 16.7 15.3 14.0 13.0 12.1 11.5 10.9 10.5 10.1 9.7
Russian Federation 35.4 34.1 32.9 31.8 30.8 29.9 29.2 28.7 28.2 27.8 27.3 26.9 26.5 26.0 25.6 25.0 24.3 23.5 22.8 22.2 21.9 21.9 22.0 22.1 22.2 22.2 22.0 21.6 21.1 20.5 19.7 18.8 17.7 16.6 15.4 14.4 13.3 12.4 11.6 10.9 10.3 9.8 9.3 8.9 8.5 8.2
Rwanda 145.4 140.5 135.6 131.2 127.9 125.3 123.4 122.4 122.0 122.2 123.0 124.0 125.5 127.3 129.4 131.5 134.1 137.3 141.1 144.8 147.5 148.0 144.9 138.0 129.1 120.0 111.8 105.3 100.9 97.8 95.1 93.1 91.9 91.8 93.2 96.3 101.3 109.0 132.3 129.6 120.3 121.7 121.4 115.2 109.2 102.3 94.1 86.0 77.7 70.2 63.1 56.8 51.5 47.3 43.8 40.0 37.1 34.7 32.7 31.1
Saint Kitts and Nevis 57.5 55.6 53.8 52.1 50.5 49.2 47.8 46.6 45.2 43.6 41.9 39.8 37.7 35.4 33.2 31.1 29.2 27.4 25.8 24.4 23.1 22.0 21.0 20.1 19.3 18.5 17.8 17.0 16.3 15.6 15.0 14.3 13.7 13.1 12.6 12.2 11.7 11.2 10.8 10.4 10.0 9.6 9.3 9.0 8.7 8.4
Saint Lucia 57.5 52.6 47.9 43.7 39.8 36.3 33.4 31.0 29.3 27.9 26.7 25.8 24.9 24.0 23.2 22.2 21.3 20.4 19.7 19.1 18.7 18.3 18.0 17.7 17.3 16.9 16.5 16.1 15.8 15.5 15.2 15.1 14.9 14.9 14.9 14.8 14.8 14.6 14.5 14.3 14.1 13.9 13.6 13.3 13.0 12.7
Saint Vincent and the Grenadines 57.5 58.6 59.6 60.3 60.5 60.1 59.0 57.3 55.0 52.1 48.7 45.2 41.5 37.7 34.2 31.0 28.1 25.8 23.9 22.4 21.2 20.3 19.6 19.2 19.0 18.9 19.0 19.1 19.1 19.2 19.2 19.2 19.2 19.2 19.2 19.1 19.2 19.2 19.2 19.0 18.8 18.6 18.2 17.8 17.4 17.0 16.6
Samoa 31.7 30.5 29.4 28.4 27.5 26.6 25.8 25.0 24.2 23.4 22.6 21.8 21.1 20.4 19.7 19.1 18.5 17.9 17.5 17.1 16.8 16.5 16.4 16.2 16.1 17.0 16.0 16.0 15.8 15.6 15.4 15.0
San Marino 12.8 11.9 11.2 10.4 9.7 9.1 8.5 7.9 7.4 6.9 6.4 6.0 5.6 5.3 4.9 4.6 4.3 4.1 3.9 3.7 3.6 3.4 3.3 3.2 3.1 3.0 2.9 2.8 2.7 2.6
Sao Tome and Principe 62.9 61.1 59.5 58.2 57.4 57.1 57.1 57.5 58.0 58.5 58.9 59.2 59.4 59.5 59.9 60.4 61.2 62.1 63.3 64.6 66.0 67.2 68.4 69.2 70.0 70.5 70.8 70.7 70.2 69.4 68.1 66.6 64.8 62.8 60.7 58.5 56.2 54.0 51.8 49.6 47.5 45.6 43.9 42.4 41.0 39.8 38.7 37.5 36.6 35.5 34.6
Saudi Arabia 110.3 104.1 98.5 93.1 88.2 83.4 79.0 74.8 70.7 66.8 63.1 59.4 55.9 52.3 48.8 45.2 41.8 38.5 35.5 32.8 30.3 28.2 26.4 24.8 23.4 22.1 21.1 20.2 19.4 18.7 18.2 17.6 17.2 16.8 16.4 16.0 15.5 15.1 14.7 14.2 13.8 13.3 12.9 12.5
Senegal 142.3 140.2 138.1 136.0 134.0 132.0 130.2 128.8 127.6 126.8 126.3 126.0 126.0 125.9 125.9 125.7 125.3 124.7 124.0 123.1 121.7 119.8 117.5 114.7 111.5 108.0 104.3 100.7 97.3 94.3 91.7 89.5 87.4 85.4 83.2 80.8 78.1 75.5 73.2 71.5 70.3 69.7 69.6 69.9 70.3 70.8 71.2 71.2 70.9 70.0 68.5 66.4 63.9 61.3 58.8 56.3 54.0 51.9 50.0 48.3 46.7 45.3 44.1 43.1 42.3 41.7
Serbia 34.5 33.5 32.5 31.1 29.1 26.8 24.5 22.3 20.9 19.9 18.8 17.0 15.1 13.3 12.0 11.4 10.9 10.6 10.1 9.2 8.3 7.7 7.3 7.1 7.0 6.8 6.6 6.4 6.2 6.0 6.0 5.9
Seychelles 83.7 83.0 82.2 81.3 80.3 79.2 78.1 77.0 75.9 74.8 73.6 72.3 70.9 69.5 67.8 66.0 64.0 61.8 59.3 56.8 54.1 51.4 48.6 45.8 42.8 39.7 36.6 33.5 30.5 27.8 25.3 23.2 21.4 19.8 18.6 17.5 16.7 15.9 15.3 14.7 14.2 13.7 13.3 13.0 12.7 12.5 12.3 12.2 12.2 12.2 12.3 12.3 12.3 12.3 12.3 12.3 12.2 12.2 12.2 12.2 12.2 12.2 12.2 12.1 11.9 11.7
Sierra Leone 223.6 220.5 217.5 214.2 211.0 207.6 204.2 200.8 197.3 194.1 191.0 188.0 185.2 182.6 180.0 177.5 175.3 173.2 171.2 169.2 167.3 165.6 164.1 162.8 161.5 160.4 159.4 158.3 157.6 157.0 156.5 156.1 155.7 155.2 154.5 153.4 152.0 150.1 148.1 145.8 143.3 140.5 137.7 134.6 131.4 128.1 124.5 120.5 116.2 111.7 107.0 102.3 97.9 93.8 90.2 87.1
Singapore 54.1 50.5 47.2 44.1 41.3 38.4 35.5 32.9 30.8 29.3 28.3 27.3 26.4 25.3 24.1 22.9 22.0 21.0 19.6 17.8 16.0 14.3 13.0 12.3 12.3 12.3 12.0 11.4 10.7 10.0 9.4 8.8 8.4 7.9 7.4 6.7 6.2 5.5 5.0 4.6 4.3 4.1 3.9 3.8 3.6 3.4 3.1 2.9 2.6 2.5 2.3 2.3 2.3 2.3 2.2 2.2 2.2 2.2 2.2 2.2 2.2 2.1
Slovakia 23.2 22.2 21.3 20.3 19.4 18.6 17.7 17.0 16.2 15.6 15.0 14.3 13.7 13.1 12.6 12.0 11.6 11.0 10.6 10.2 9.8 9.5 9.1 8.8 8.4 8.2 7.8 7.6 7.3 7.0 6.8 6.5 6.3 6.1 5.8
Slovenia 15.5 14.6 13.8 13.1 12.3 11.5 10.8 10.1 9.4 8.8 8.2 7.7 7.1 6.6 6.2 5.8 5.4 5.2 4.8 4.5 4.3 4.1 3.9 3.7 3.5 3.3 3.2 3.0 2.8 2.7 2.6 2.4 2.3 2.2 2.1
Solomon Islands 131.8 125.4 119.3 113.7 108.4 103.3 98.2 92.8 87.3 81.9 76.5 71.4 66.8 62.6 58.7 55.1 51.9 48.9 46.3 43.9 41.9 40.2 38.8 37.6 36.5 35.6 34.8 34.1 33.5 32.8 32.2 31.6 30.9 30.3 29.7 29.1 28.7 28.3 27.9 27.6 27.4 27.2 27.2 27.2 27.3 27.5 27.6 27.6 27.3 27.0 26.6 26.1 25.5 24.9 24.2 23.6
Somalia 113.2 112.1 111.5 111.2 110.9 110.5 109.7 108.4 106.8 105.8 105.4 105.3 105.3 105.3 105.3 105.3 105.3 105.3 105.3 105.3 105.3 105.3 105.3 104.9 103.9 102.2 100.0 97.8 95.1 92.6 90.1 87.4 85.0
South Africa 91.1 86.6 82.6 78.6 74.9 71.4 68.0 65.0 62.2 59.6 57.3 55.1 53.2 51.4 49.8 48.5 47.4 46.7 46.4 46.6 47.2 48.2 49.4 50.9 52.2 53.2 54.0 54.5 54.7 54.1 52.8 51.5 50.0 48.6 46.6 41.1 38.2 37.1 36.8 35.3 34.4 33.6
South Sudan 177.1 174.9 172.9 171.1 168.8 166.2 163.8 160.9 158.2 155.4 152.5 149.7 146.7 143.3 139.8 136.1 132.0 127.9 123.8 119.2 114.4 109.5 104.5 99.7 95.0 90.6 86.4 82.4 78.9 75.7 73.1 70.6 68.3 66.1 64.0 62.0 60.3
Spain 90.5 80.7 73.0 67.4 64.0 61.9 60.0 57.4 54.5 51.1 47.7 44.4 41.7 39.3 37.3 35.6 33.9 32.1 30.1 27.8 25.5 24.0 22.6 21.3 20.0 20.4 20.4 19.7 18.4 16.8 15.3 14.1 13.2 12.6 12.0 11.4 10.9 10.4 10.1 9.7 9.3 8.8 8.5 8.0 7.5 6.9 6.4 6.1 5.8 5.6 5.4 5.3 5.2 5.1 5.0 4.8 4.6 4.4 4.2 4.1 3.9 3.8 3.7 3.7 3.6 3.5
Sri Lanka 94.3 92.6 90.9 89.1 87.0 84.5 81.8 78.8 75.7 72.7 69.8 67.1 64.6 62.4 60.4 58.6 57.0 55.7 54.6 53.6 52.7 51.9 51.0 50.0 48.7 47.3 45.6 43.7 41.6 39.4 36.8 34.1 31.2 28.2 25.2 22.6 20.5 19.2 18.4 18.1 18.1 18.2 18.0 17.7 17.2 16.7 16.0 15.3 14.6 14.0 13.6 13.2 13.0 15.3 12.1 11.4 10.7 10.2 9.7 9.4 9.1 8.9 8.7 8.6 8.4
State of Palestine 78.0 73.7 69.8 66.0 62.5 59.2 56.2 53.3 50.6 48.1 45.6 43.3 41.1 39.1 37.2 35.6 34.1 32.7 31.5 30.4 29.3 28.3 27.3 26.4 25.6 24.9 24.2 23.6 23.1 22.6 22.1 21.7 21.3 20.9 20.5 20.2 19.8 19.4 19.0 18.5 18.0
Sudan 120.7 118.7 116.8 114.8 112.9 111.0 109.2 107.4 105.7 104.1 102.6 101.1 99.8 98.6 97.4 96.4 95.5 94.7 94.0 93.4 92.7 92.0 91.3 90.6 89.8 89.1 88.5 87.9 87.3 86.7 86.1 85.4 84.6 83.8 82.8 81.9 80.9 79.9 78.9 77.9 76.9 75.8 74.7 73.6 72.3 70.9 69.4 67.8 66.2 64.6 63.0 61.4 59.9 58.5 57.1 55.8 54.5 53.3 52.2 51.1 49.9 48.8 47.6
Suriname 48.1 46.9 45.9 44.7 43.8 42.8 41.8 40.7 39.7 38.6 37.5 36.5 35.4 34.3 33.3 32.2 31.2 30.2 29.2 28.2 27.4 26.6 25.8 25.0 24.3 23.5 22.7 22.1 21.4 20.8 20.1 19.5 19.0
Swaziland 160.1 157.8 155.9 154.3 152.3 150.5 148.8 147.0 145.4 143.6 141.7 140.1 138.1 136.0 133.7 131.3 128.9 126.5 124.1 121.7 119.3 116.6 113.4 109.7 105.8 101.6 97.7 93.9 90.4 87.2 83.8 80.3 76.5 72.7 68.9 65.3 62.0 59.4 57.5 56.3 56.0 56.7 58.6 61.4 64.9 68.7 72.5 76.0 79.1 81.8 84.0 85.4 85.9 85.9 84.8 83.0 76.8 74.7 73.2 65.8 59.1 53.6 51.5 48.4 45.8 44.5
Sweden 22.1 21.0 20.0 19.1 18.4 17.8 17.5 17.1 16.9 16.6 16.3 16.0 15.6 15.0 14.4 13.7 13.0 12.6 12.1 11.7 11.3 10.9 10.4 9.8 9.2 8.7 8.3 8.0 7.6 7.4 7.2 6.9 6.8 6.6 6.5 6.4 6.3 6.2 6.2 6.1 5.8 5.5 5.1 4.8 4.4 4.0 3.8 3.6 3.5 3.4 3.4 3.4 3.3 3.2 3.1 3.0 2.8 2.7 2.6 2.5 2.5 2.4 2.4 2.4 2.4 2.4
Switzerland 31.3 30.2 29.1 28.1 27.0 25.8 24.7 23.6 22.8 22.1 21.6 21.2 20.7 20.1 19.3 18.4 17.6 16.9 16.2 15.6 15.0 14.3 13.6 12.8 12.0 11.2 10.4 9.8 9.2 8.7 8.4 8.1 7.8 7.6 7.4 7.3 7.2 7.1 7.0 6.8 6.7 6.4 6.1 5.8 5.5 5.2 5.0 4.9 4.8 4.7 4.6 4.7 4.6 4.4 4.4 4.3 4.2 4.1 4.0 3.9 3.9 3.8 3.7 3.6 3.5 3.4
Syrian Arab Republic 178.6 168.5 159.1 150.2 142.4 135.1 128.2 121.8 116.0 110.6 105.6 100.8 96.2 91.7 87.4 83.2 79.2 75.3 71.7 68.2 65.0 62.0 59.1 56.4 53.9 51.5 49.1 46.9 44.8 42.7 40.8 39.1 37.4 35.8 34.3 33.0 31.6 30.4 29.2 28.0 26.8 25.7 24.6 23.6 22.6 21.6 20.7 19.8 19.0 18.2 17.5 16.8 16.1 15.4 14.8 14.2 13.7 13.2 12.8 12.6 12.1 11.7 11.1
Tajikistan 116.0 112.8 109.4 106.7 104.3 102.5 101.3 100.6 100.4 100.4 100.0 99.0 97.3 94.9 91.9 88.6 86.0 84.8 85.0 86.9 90.1 93.0 94.1 93.0 90.4 87.0 83.0 78.8 74.3 69.7 65.3 61.0 57.3 54.1 51.4 49.2 47.4 46.0 44.7 43.3 42.1 40.9 39.7 38.5
Thailand 140.7 136.1 131.8 127.5 123.4 119.5 115.9 112.3 108.9 105.6 102.2 99.0 95.8 92.7 89.7 86.8 83.8 80.8 77.8 74.8 71.8 68.7 65.8 62.9 60.2 57.6 55.2 52.9 50.8 48.9 47.0 45.1 43.4 41.6 40.0 38.3 36.7 35.1 33.5 31.9 30.3 28.8 27.3 26.0 24.8 23.7 22.7 21.7 20.8 19.9 19.1 18.3 17.5 16.7 16.0 15.3 14.6 14.0 13.4 12.9 12.5 12.0 11.6 11.2 10.9 10.5
The former Yugoslav Republic of Macedonia 51.6 50.2 48.3 46.2 45.0 44.3 42.9 39.7 35.9 33.0 31.5 30.1 27.9 24.9 22.0 19.5 17.5 16.1 15.0 14.2 13.5 12.8 12.6 12.4 12.1 11.6 11.0 10.4 9.6 8.7 7.5 6.5 5.8 5.2 4.8
Timor-Leste 155.9 149.6 143.5 137.6 132.0 126.8 121.7 116.7 112.0 107.3 102.9 98.5 94.4 90.3 86.3 82.4 78.6 74.8 71.0 67.4 63.9 60.7 57.8 55.3 53.1 51.1 49.3 47.6 46.1 44.7
Togo 193.4 190.1 186.9 183.8 180.7 177.7 174.6 171.5 168.5 165.4 162.4 159.4 156.4 153.5 150.5 147.7 144.7 141.8 138.8 135.8 132.8 130.0 127.2 124.4 121.8 119.2 116.6 114.1 111.7 109.2 106.9 104.8 102.7 100.7 98.9 97.1 95.5 94.0 92.6 91.4 90.2 89.0 87.9 86.8 85.5 84.2 82.8 81.2 79.6 77.9 76.2 74.4 72.6 70.8 69.1 67.4 65.7 64.1 62.5 60.9 59.3 57.9 56.5 55.0 53.6 52.3
Tonga 60.4 57.0 53.8 50.7 47.8 44.9 42.1 39.6 37.4 35.3 33.5 31.9 30.4 29.0 27.7 26.6 25.5 24.6 23.7 23.0 22.4 21.9 21.4 20.9 20.5 19.9 19.3 18.7 18.0 17.4 16.9 16.5 16.2 15.9 15.7 15.5 15.3 15.1 14.8 14.6 14.4 14.3 14.3 14.4 14.5 14.6 14.8 15.0 15.0 15.0 14.9 14.7 14.4
Trinidad and Tobago 71.0 68.8 66.7 64.5 62.5 60.4 58.4 56.6 54.7 53.1 51.5 50.1 48.8 47.7 46.7 45.7 44.8 43.9 43.1 42.2 41.3 40.4 39.5 38.5 37.4 36.3 35.3 34.3 33.3 32.3 31.4 30.5 29.8 29.0 28.4 27.8 27.3 26.9 26.5 26.2 25.9 25.7 25.6 25.5 25.5 25.4 25.4 25.3 25.3 25.1 24.7 24.3 23.8 23.3 22.8 22.2 21.6 21.0 20.4 19.7 19.2 18.7 18.2
Tunisia 178.7 170.9 163.2 155.7 148.4 141.4 134.8 128.4 122.2 116.4 110.9 105.4 99.9 94.2 88.6 83.2 78.1 73.4 69.2 65.5 62.2 59.2 56.4 53.9 51.6 49.5 47.6 45.9 44.3 42.8 41.2 39.6 37.8 35.9 33.9 31.9 29.9 28.1 26.3 24.7 23.3 22.0 20.7 19.6 18.5 17.5 16.6 15.7 14.9 14.2 13.6 13.1 12.6 12.1
Turkey 191.4 188.0 184.6 181.2 177.8 174.3 170.3 166.0 161.6 157.1 152.6 148.2 144.1 140.2 136.6 133.1 129.6 126.2 122.8 119.3 115.9 112.4 108.8 105.2 101.5 97.7 94.0 90.2 86.4 82.6 78.8 75.1 71.5 68.1 64.8 61.6 58.6 55.8 53.1 50.5 48.0 45.5 43.1 40.8 38.5 36.3 34.2 32.1 30.2 28.3 26.5 24.8 23.2 21.7 20.2 18.9 17.6 16.4 15.3 14.2 13.2 12.3 11.6
Turkmenistan 106.2 102.8 99.6 96.5 93.4 90.3 87.3 84.4 81.7 79.2 76.9 75.0 73.5 72.5 72.0 71.9 71.9 71.9 71.7 71.2 70.4 69.2 67.8 66.1 64.4 62.7 61.1 59.4 57.8 56.2 54.7 53.2 51.7 50.4 48.9 47.6 46.2 45.0 43.7
Tuvalu 61.7 59.5 57.2 55.2 53.3 51.6 50.2 48.9 47.9 47.0 46.4 45.9 45.5 45.2 44.9 44.4 43.9 43.2 42.4 41.5 40.4 39.3 38.0 36.7 35.4 34.3 33.2 32.3 31.5 30.7 30.0 29.3 28.5 27.7 27.0 26.3 25.6 24.9 24.1 23.4 22.8
Uganda 151.8 148.3 145.1 141.5 138.3 135.3 132.3 129.6 127.3 125.0 122.9 120.9 119.0 117.2 115.5 114.2 113.5 113.2 113.7 114.7 116.3 118.4 120.9 123.3 125.6 127.2 127.7 127.1 125.0 122.1 119.3 117.2 115.7 114.7 114.0 113.0 111.4 109.3 106.8 104.5 102.5 101.0 99.6 98.1 96.0 93.4 90.0 86.0 81.6 76.9 72.2 67.6 63.4 59.2 55.4 52.3 49.5 46.3 42.5 41.6 39.1 37.7
Ukraine 27.9 27.0 26.2 25.5 25.0 24.6 24.2 23.8 23.4 23.0 22.4 21.7 20.9 20.1 19.3 18.6 17.9 17.3 16.9 16.7 16.7 16.8 17.0 17.3 17.5 17.5 17.4 17.0 16.5 15.8 15.1 14.3 13.6 13.0 12.5 12.0 11.6 11.1 10.6 10.1 9.6 9.1 8.6 8.1 7.7
United Arab Emirates 137.3 130.5 124.0 117.4 111.0 104.4 97.5 90.6 83.8 77.2 70.9 65.1 59.6 54.7 50.2 45.9 41.9 38.2 34.8 31.7 28.9 26.4 24.2 22.3 20.7 19.3 18.0 16.9 15.9 15.0 14.1 13.4 12.8 12.2 11.7 11.2 10.8 10.5 10.1 9.8 9.6 9.3 9.1 8.9 8.7 8.4 8.2 8.0 7.8 7.6 7.3 7.0 6.7 6.4 6.1 5.9
United Kingdom 31.6 30.3 29.0 27.7 26.6 25.5 24.7 24.1 23.6 23.3 22.9 22.5 22.0 21.4 20.8 20.1 19.6 19.1 18.7 18.4 18.0 17.7 17.2 16.6 16.0 15.4 14.7 14.1 13.4 12.7 12.0 11.4 10.8 10.4 10.0 9.7 9.5 9.2 8.8 8.4 7.9 7.4 7.0 6.6 6.3 6.1 5.9 5.8 5.8 5.7 5.6 5.4 5.3 5.3 5.2 5.1 5.0 4.9 4.7 4.6 4.4 4.2 4.1 3.9 3.7 3.5
United Republic of Tanzania 154.5 153.2 152.1 151.0 149.9 148.8 147.8 146.7 145.5 144.3 143.0 141.9 140.5 139.0 137.3 135.4 133.5 131.4 129.5 127.6 125.8 124.0 122.1 120.2 118.2 116.1 114.0 111.9 110.2 108.9 108.1 107.6 107.4 107.0 106.4 105.4 104.2 102.8 101.5 100.4 99.6 98.9 98.1 97.1 95.8 93.8 91.4 88.2 84.5 80.3 75.9 71.4 67.0 62.7 58.7 55.2 51.5 48.3 45.6 42.4 40.4 38.8 37.6 36.2 35.2
United States 32.5 31.6 30.7 29.9 29.1 28.5 27.8 27.3 26.9 26.4 25.9 25.4 24.9 24.4 23.8 23.3 22.7 22.0 21.3 20.6 19.9 19.1 18.3 17.5 16.7 16.0 15.2 14.5 13.8 13.2 12.6 12.1 11.7 11.2 10.9 10.6 10.4 10.2 10.0 9.7 9.4 9.1 8.8 8.5 8.2 8.0 7.7 7.5 7.3 7.2 7.1 7.0 6.9 6.8 6.9 6.8 6.7 6.6 6.5 6.4 6.3 6.1 6.1 5.9 5.7 5.6
Uruguay 53.3 54.9 56.3 57.7 58.3 58.5 57.7 56.4 54.9 53.6 52.7 52.1 51.7 51.2 50.5 49.6 48.6 47.9 47.8 48.5 49.3 49.4 48.6 46.5 43.2 39.5 35.5 32.0 29.4 27.6 26.4 25.3 24.3 23.2 22.1 21.1 20.3 19.6 19.1 18.9 18.5 18.0 17.5 16.8 16.0 15.3 14.6 14.1 13.7 13.3 12.8 12.4 12.0 11.5 11.2 11.0 10.6 10.3 10.0 9.5 9.1 8.7
Uzbekistan 97.7 91.8 86.2 81.2 76.7 72.5 68.8 65.6 63.0 61.0 59.5 58.8 58.5 58.4 58.1 57.8 57.3 56.8 56.0 55.1 54.0 52.7 51.4 50.0 48.6 47.3 45.9 44.6 43.3 42.0 40.8 39.6 38.4 37.2 36.1 35.0 33.9
Vanuatu 123.5 121.5 119.3 117.2 115.2 113.2 111.3 109.0 106.7 104.1 101.6 98.8 95.9 92.8 89.8 86.6 83.4 80.4 77.5 74.6 71.9 69.3 66.9 64.6 62.3 59.9 57.4 54.8 52.0 49.2 46.3 43.4 40.6 38.0 35.7 33.6 32.0 30.5 29.2 28.1 27.2 26.4 25.8 25.3 24.9 25.5 24.3 24.1 23.8 23.6 23.4 23.4 23.4 23.4 23.5 23.6 23.7 23.8 23.9 24.0 24.0 23.8 23.5 23.1
Venezuela (Bolivarian Republic of) 85.5 81.8 78.4 75.2 72.1 69.3 66.6 64.1 61.9 59.9 58.1 56.6 55.3 54.2 53.1 52.2 51.3 50.3 49.2 48.1 46.8 45.5 44.2 42.9 41.7 40.5 39.2 37.9 36.6 35.2 33.9 32.7 31.5 30.5 29.6 28.6 27.6 26.6 25.6 24.7 23.9 23.3 22.9 22.6 22.1 21.5 20.8 20.0 20.2 18.5 17.9 17.4 16.9 16.4 15.9 15.4 15.0 14.7 14.5 14.3 14.1 13.8 13.5 13.2 12.9
Viet Nam 61.7 60.7 59.9 59.0 58.2 57.3 56.4 55.5 54.7 53.8 52.8 51.8 50.9 49.8 48.8 47.8 46.8 45.8 44.8 43.9 43.0 42.0 41.0 40.0 38.9 37.7 36.6 35.4 34.3 33.1 32.0 30.9 29.9 28.9 27.9 27.0 26.1 25.3 24.6 23.9 23.2 22.6 22.0 21.4 20.8 20.3 19.8 19.3 18.8 18.3 17.8 17.3
Yemen 276.9 270.7 263.6 256.0 247.8 239.2 230.0 221.1 212.5 204.3 196.7 189.0 181.2 173.1 164.6 156.1 147.7 139.7 131.9 124.4 117.6 111.5 106.2 101.7 97.7 94.3 91.2 88.7 86.4 84.4 82.7 81.1 79.7 78.2 76.5 74.4 71.9 69.0 66.1 63.0 60.1 57.2 54.5 51.9 49.4 47.0 44.7 42.4 40.3 38.4 36.7 35.1 33.8
Zambia 140.7 137.9 135.5 132.8 130.5 128.1 125.6 123.2 120.9 118.7 116.7 115.1 114.0 113.3 112.9 112.2 111.1 109.3 106.7 103.7 100.7 98.1 96.3 95.3 95.1 95.3 95.6 96.1 97.0 98.3 100.2 102.7 105.6 108.3 110.6 112.2 113.1 113.3 113.0 112.4 111.3 109.7 107.8 106.1 104.6 103.1 100.9 97.6 92.7 86.5 80.0 73.9 68.7 64.9 61.3 58.7 55.6 52.9 51.1 49.0 46.5 44.7 43.3
Zimbabwe 109.2 106.8 104.3 101.9 99.7 97.4 95.0 92.6 90.1 87.6 85.3 82.8 80.5 78.3 76.3 74.7 73.4 72.4 71.6 71.1 70.7 70.5 70.3 70.1 69.8 69.2 68.1 66.4 64.2 61.6 58.8 56.0 53.6 51.7 50.4 49.8 50.2 51.2 52.6 54.5 56.4 58.1 60.1 61.6 62.7 63.3 63.5 63.5 63.2 62.7 61.9 61.5 61.0 60.3 59.9 58.9 57.7 55.8 54.0 49.4 48.8 47.6 46.6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment