Skip to content

Instantly share code, notes, and snippets.

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 Pacsangon/51bf411dc2a7b00219bf to your computer and use it in GitHub Desktop.
Save Pacsangon/51bf411dc2a7b00219bf to your computer and use it in GitHub Desktop.
Aplicación de los recursos de la última semana
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Usuarios de Internet</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script>
<style>
body {
position: relative;
width: 960px;
}
h1{
text-align:center;
}
p {
font-size: 16px;
font-family: sans-serif;
}
svg {
background-color: #FFF
}
.axis path,
.axis line{
fill:none;
stroke:black;
shape-rendering:crispEdges;
}
.y.axis text{
font-family: sans-serif;
font-size: 11px;
}
.2.axis text{
font-family: sans-serif;
font-size: 15px;
}
circle{
fill:steelblue;
}
circle:hover {
fill:orange;
}
.item-line{
stroke:#8c564b;
stroke-width:2;
fill:none;
}
.item-line :hover{
stroke: #8c564b;
stroke-width:8;
}
.x.axis {
stroke-width:2;
}
.item-line.selected {
stroke-width:15px;
stroke:#8c564b;
}
.item-line path.america {
stroke: #d62728;
}
.item-line path.asian {
stroke: #9467bd;
}
.item-line path.african {
stroke: #ff7f0e;
}
.item-line path.europan {
stroke: #1f77b4;
}
.item-line path.oceanian {
stroke: #2ca02c;
}
;
</style>
</head>
<body>
<H1>Porcentaje de personas que usan internet al nivel mundial</H1>
<p>
Esta información es un total de paises:222, corresponde entre el año 2000 y el año 2014. La fuente de la información es parte de la serie de indicadores: TIME SERIES BY COUNTRY (UNTIL 2014), de la <a href="http://www.itu.int/en/ITU-D/Statistics/Pages/stat/default.aspx">ITU,</a>
</p>
<script>
var width = 800;
var height = 600;
var african= ["Algeria","Guinea-Bissau","Angola","Benin","Botswana","Burkina Faso","Burundi","Cameroon","Cape Verde","Chad","Comoros","Congo (Rep.)","Congo (Dem. Rep.)","Central African Rep.","Côte d'Ivoire","Djibouti","Egypt","Equatorial Guinea","Eritrea","Ethiopia","Gabon","The Gambia","Ghana","Guinea","Guinea","Kenya","Lesotho","Liberia","Libya","Madagascar","Malawi","Mali","S Tomé & Principe","Mauritania","Mauritius","Morocco","Mayotte","Mozambique","Namibia","Niger","Nigeria","Rwanda","S. Tomé & Principe","Senegal","Seychelles","Sierra Leone","Somalia","South Africa","South Sudan","Sudan","Swaziland","Tanzania","Togo","Tunisia","Uganda","Zambia","Zimbabwe"]
var american = ["Aruba","Guam","St. Kitts and Nevis","Anguilla","American Samoa","Canada","Greenland","Mexico","United States","Antigua & Barbuda","Barbados","Belize","Costa Rica","Cuba","Cayman Islands","St. Vincent and the Grenadines","British Virgin Islands","Virgin Islands (US)","Dominica","Dominican Rep.","El Salvador","Bermuda","Grenada","Guatemala","Haiti","Honduras","Jamaica","Nicaragua","Panama","Puerto Rico","St. Lucia","Montserrat","Saint Vincent and the Grenadines","Trinidad & Tobago","Argentina","Bolivia","Brazil","Chile","Colombia","Ecuador","Bahamas","French Guiana","Guyana","Paraguay","Peru","Suriname","Uruguay","St Lucia","Venezuela"]
var asian = ["Taiwan, Province of China","New Caledonia","Afghanistan","Armenia","Azerbaijan","Bahrain","Bangladesh","Macao, China","Bhutan","Brunei Darussalam","Cambodia","Hong Kong, China","China","Province of China","Taiwan","East Timor","India","Indonesia","Iran (I.R.)","Iraq","Israel","Palestine","Japan","Jordan","Kazakhstan","Kuwait","Kyrgyzstan","Lao P.D.R.","Lebanon","Malaysia","Maldives","Mongolia","Myanmar","Nepal","DPR Korea","Oman","Pakistan","Philippines","Qatar","Saudi Arabia","Singapore","Korea (Rep.)","Sri Lanka","Syria","Timor-Leste","Tajikistan","Thailand","Turkey","Turkmenistan","United Arab Emirates","Uzbekistan","Viet Nam","Yemen"]
var europan = ["Albania","Guernsey","Jersey","Andorra","Austria","Belarus","Belgium","Bosnia and Herzegovina","Falkland (Malvinas) Is.","Bulgaria","Croatia","Cyprus","Czech Republic","Denmark","Estonia","Finland","France","Georgia","Germany","Greece","Hungary","Iceland","Faroe Islands","Ireland","Italy","Latvia","Gibraltar","Liechtenstein","Lithuania","Luxembourg","TFYR Macedonia","Malta","Moldova","Monaco","Montenegro","Netherlands","Norway","Poland","Portugal","Romania","Russian Federation","San Marino","Serbia","Slovakia","Slovenia","Spain","Sweden","Switzerland","Turkey","Ukraine","United Kingdom"]
var oceanian = ["Australia","French Polynesia","Niue","New Zealand","Fiji","Papua New Guinea","Solomon Islands","Vanuatu","Kiribati","Marshall Islands","Micronesia","Nauru","Palau","Wallis and Futuna","Cocos Keeling Islands","Samoa","Tonga","Tuvalu","Palaos","Niue","Tokelau"]
var paddingObjet = {
top:20,
left:90,
bottom:60,
right:30
};
var svg = d3.select("body")
.append("svg")
.attr("width", width+paddingObjet.left+paddingObjet.right)
.attr("height", height+paddingObjet.top+paddingObjet.bottom);
var dateFormat =d3.time.format("%Y");
var xScale = d3.time.scale().range([0,width]);
var yScale = d3.scale.linear().range([height,0]);
var xAxisFunction = d3.svg.axis().scale(xScale).orient("bottom").ticks(15).tickFormat(function(d){return dateFormat(d)});
var xAxisBFunction = d3.svg.axis().scale(xScale).orient("top").ticks(15).tickFormat(function(d){return dateFormat(d)});
var yAxisFunction = d3.svg.axis().scale(yScale).orient("left").ticks(15).tickFormat(function(d){return d+"%"});
var yAxisBFunction = d3.svg.axis().scale(yScale).orient("right").ticks(15).tickFormat(function(d){return d+"%"});
var linea= d3.svg.line()
//.interpolate("step-after")
.x(function(d){ return paddingObjet.left+xScale(dateFormat.parse(d.year))})
.y(function(d){ return paddingObjet.top+yScale(d.value)});
var colorScale=d3.scale.ordinal();
d3.csv("IndividualsInternet_2000-2014datosmúltipleshorizontal.csv", function(source){
console.log("1. Fuentes de datos original: ", source);
var datasetObject={};
var dataForDomainX=[];
var dataForDomainY=[];
dataset = source.forEach(function(sourceItem){
dataForDomainX.push(sourceItem["Anos"])
for(var countryCandidate in sourceItem)
if (countryCandidate !="Anos") {
if (datasetObject[countryCandidate]==undefined) {
datasetObject[countryCandidate]= []
}
dataForDomainY.push(sourceItem[countryCandidate])
datasetObject[countryCandidate].push({year:sourceItem["Anos"],value:sourceItem[countryCandidate]})
}
});
console.log("2. Objetos con atribustos por país y matriz con duplas valores año ",datasetObject);
var dataset=[]
for(var datasetKey in datasetObject) {
dataset.push({id:datasetKey,values:datasetObject[datasetKey]})
};
console.log("3. Matriz con la dupla por país id y Matriz por valores", dataset);
xScale.domain(d3.extent(dataForDomainX,function(d,i) {return dateFormat.parse(d)}));
yScale.domain([0,d3.max(dataForDomainY,function(d,i) {return +d})]);
//colorScale= d3.scale.category20c();
itemlines=d3.select("svg").selectAll(".item-line").data(dataset,function(d){return d.id})
itemlinesenter=itemlines.enter().append("g").attr("class","item-line")
.on("click",function(d) {
var isSelected = !d3.select(this).classed("selected")
d3.select(this).classed("selected",isSelected)
});
itemlinesenter
.append("path")
.classed("america",function(d){
if (american.indexOf(d.id)!=-1){
return true;
} else {
return false
}
})
.classed("african",function(d){
if (african.indexOf(d.id)!=-1){
return true;
} else {
return false
}
})
.classed("asian",function(d){
if (asian.indexOf(d.id)!=-1){
return true;
} else {
return false
}
})
.classed("europan",function(d){
if (europan.indexOf(d.id)!=-1){
return true;
} else {
return false
}
})
.classed("oceanian",function(d){
if (oceanian.indexOf(d.id)!=-1){
return true;
} else {
return false
}
})
.attr("d",function(d){
return linea(d.values); })
.append("title")
.text(function(d,i){
return d.id});
svg.append("g")
.attr("class","x axis")
.attr("transform","translate("+paddingObjet.left+","+(paddingObjet.top+height)+")")
.call(xAxisFunction);
svg.append("g")
.attr("class","y axis")
.attr("transform","translate("+(paddingObjet.left)+","+paddingObjet.top+")")
.call(yAxisFunction);
svg.append("g")
.attr("class","x axis")
.attr("transform","translate("+(paddingObjet.left)+","+paddingObjet.top+")")
.call(xAxisBFunction);
svg.append("g")
.attr("class","y axis")
.attr("transform","translate("+(paddingObjet.right+width+60)+","+paddingObjet.top+")")
.call(yAxisBFunction);
});
</script>
<ul>
<li style="color:#ff7f0e">África</li>
<li style="color:#d62728">América</li>
<li style="color:#9467bd">Asia</li>
<li style="color:#1f77b4">Europa</li>
<li style="color:#2ca02c">Oceanía</li>
<li style="color:#8c564b">Territorio de ultramar</li>
</ul>
</body>
</html>
Anos Afghanistan Albania Algeria American Samoa Andorra Angola Anguilla Antigua & Barbuda Argentina Armenia Aruba Ascension Australia Austria Azerbaijan Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bermuda Bhutan Bolivia Bosnia and Herzegovina Botswana Brazil British Virgin Islands Brunei Darussalam Bulgaria Burkina Faso Burundi Cambodia Cameroon Canada Cape Verde Cayman Islands Central African Rep. Chad Chile China Cocos Keeling Islands Colombia Comoros Congo (Dem. Rep.) Congo (Rep.) Costa Rica Côte d'Ivoire Croatia Cuba Cyprus Czech Republic D.P.R. Korea Denmark Djibouti Dominica Dominican Rep. Ecuador Egypt El Salvador Equatorial Guinea Eritrea Estonia Ethiopia Falkland (Malvinas) Is. Faroe Islands Fiji Finland France French Polynesia Gabon Gambia Georgia Germany Ghana Gibraltar Greece Greenland Grenada Guam Guatemala Guernsey Guinea Guinea-Bissau Guyana Haiti Honduras Hong Kong, China Hungary Iceland India Indonesia Iran (I.R.) Iraq Ireland Israel Italy Jamaica Japan Jersey Jordan Kazakhstan Kenya Kiribati Korea (Rep.) Kuwait Kyrgyzstan Lao P.D.R. Latvia Lebanon Lesotho Liberia Libya Liechtenstein Lithuania Luxembourg Macao, China Madagascar Malawi Malaysia Maldives Mali Malta Marshall Islands Mauritania Mauritius Mayotte Mexico Micronesia Moldova Monaco Mongolia Montenegro Montserrat Morocco Mozambique Myanmar Namibia Nauru Nepal Netherlands New Caledonia New Zealand Nicaragua Niger Nigeria Niue Norway Oman Pakistan Palau Palestine Panama Papua New Guinea Paraguay Peru Philippines Poland Portugal Puerto Rico Qatar Romania Russian Federation Rwanda S. Tomé & Principe Samoa San Marino Saudi Arabia Senegal Serbia Seychelles Sierra Leone Singapore Slovakia Slovenia Solomon Islands Somalia South Africa South Sudan Spain Sri Lanka St. Helena St. Kitts and Nevis St. Lucia St. Vincent and the Grenadines Sudan Suriname Swaziland Sweden Switzerland Syria Taiwan, Province of China Tajikistan Tanzania TFYR Macedonia Thailand Timor-Leste Togo Tokelau Tonga Trinidad & Tobago Tunisia Turkey Turkmenistan Tuvalu Uganda Ukraine United Arab Emirates United Kingdom United States Uruguay Uzbekistan Vanuatu Venezuela Viet Nam Virgin Islands (US) Wallis and Futuna Yemen Zambia Zimbabwe
2000 0.00 0.11 0.49 0.00 10.54 0.11 22.41 6.48 7.04 1.30 15.44 34.94 46.76 33.73 0.15 8.00 6.15 0.07 3.97 1.86 29.43 5.96 0.23 42.95 0.40 1.44 1.08 2.90 2.87 0.00 9.00 5.37 0.08 0.08 0.05 0.25 51.30 1.82 0.00 0.05 0.04 16.60 1.78 0.00 2.21 0.27 0.01 0.03 5.80 0.23 6.64 0.54 15.26 9.78 0.00 39.17 0.19 8.81 3.70 1.46 0.64 1.18 0.13 0.14 28.58 0.02 58.62 32.92 1.50 37.25 14.31 6.36 1.22 0.92 0.48 30.22 0.15 19.13 9.14 31.75 4.06 16.11 0.71 31.90 0.10 0.23 6.61 0.23 1.20 27.83 7.00 44.47 0.53 0.93 0.93 0.00 17.85 20.87 23.11 3.12 29.99 9.22 2.62 0.67 0.32 1.79 44.70 6.73 1.04 0.11 6.32 7.95 0.21 0.02 0.19 36.52 6.43 22.89 13.61 0.20 0.13 21.38 2.20 0.14 13.11 1.53 0.19 7.28 1.21 5.08 3.73 1.28 42.18 1.26 0.00 0.00 0.69 0.11 0.00 1.64 0.00 0.20 43.98 13.94 47.38 0.98 0.04 0.06 26.51 52.00 3.52 0.00 0.00 1.11 6.55 0.84 0.75 3.08 1.98 7.29 16.43 10.47 4.86 3.61 1.98 0.06 4.64 0.57 48.80 2.21 0.40 0.00 7.40 0.12 36.00 9.43 15.11 0.48 0.02 5.35 0.00 13.62 0.65 5.92 5.86 5.09 3.25 0.03 2.51 0.93 45.69 47.10 0.18 28.10 0.05 0.12 2.49 3.69 0.00 0.80 0.00 2.43 7.72 2.75 3.76 0.13 5.24 0.16 0.72 23.63 26.82 43.08 10.54 0.48 2.11 3.36 0.25 13.82 4.77 0.08 0.19 0.40
2001 0.00 0.33 0.65 0.00 0.00 0.14 25.88 8.90 9.78 1.63 17.10 38.17 52.69 39.19 0.31 11.80 15.04 0.13 11.94 4.30 31.29 0.00 0.36 47.51 0.86 2.12 1.20 3.43 4.53 0.00 12.92 7.61 0.16 0.11 0.08 0.28 60.20 2.69 0.00 0.08 0.05 19.10 2.64 0.00 2.85 0.44 0.01 0.03 9.56 0.40 11.56 1.08 18.82 14.70 0.00 42.96 0.34 13.25 4.43 2.67 0.84 1.50 0.17 0.16 31.53 0.04 64.60 43.25 1.86 43.11 26.33 6.25 1.35 1.34 0.99 31.65 0.20 21.17 10.94 35.46 5.13 25.38 1.74 44.47 0.18 0.30 13.21 0.34 1.42 38.67 14.53 49.39 0.66 2.02 1.48 0.10 23.14 17.38 27.22 3.86 38.53 16.06 4.71 1.01 0.62 2.34 56.60 8.55 3.00 0.18 7.22 6.78 0.26 0.03 0.37 45.12 7.18 36.16 22.52 0.22 0.16 26.70 3.62 0.19 17.88 1.71 0.26 8.78 0.00 7.04 4.66 1.49 46.65 1.65 0.00 0.00 1.37 0.16 0.00 2.42 2.99 0.24 49.37 18.24 53.24 1.45 0.11 0.09 32.66 64.00 5.89 1.32 0.00 1.84 7.27 0.90 1.10 7.58 2.52 9.90 18.09 15.63 6.17 4.54 2.94 0.24 6.31 1.69 50.34 4.68 0.98 0.00 11.02 0.16 41.67 12.53 30.18 0.47 0.08 6.35 0.00 18.15 0.79 7.99 7.71 8.18 5.09 0.14 3.06 1.28 51.77 55.10 0.35 34.90 0.05 0.17 3.47 5.56 0.00 0.90 0.00 2.83 15.38 4.30 5.19 0.18 0.00 0.24 1.24 26.27 33.48 49.08 11.12 0.60 2.83 4.64 1.27 18.38 5.09 0.09 0.23 0.80
2002 0.00 0.39 1.59 0.00 11.26 0.27 24.80 12.50 10.88 1.96 18.80 0.00 0.00 36.56 5.00 18.00 18.05 0.14 27.84 8.95 46.33 5.68 0.70 52.03 1.68 3.12 2.65 3.39 9.15 18.89 15.33 9.08 0.20 0.12 0.23 0.36 61.59 3.52 0.00 0.13 0.17 22.10 4.60 0.00 4.60 0.55 0.09 0.16 19.89 0.50 17.76 3.77 28.32 23.93 0.00 64.25 0.49 18.42 6.82 4.26 2.72 1.90 0.32 0.23 41.52 0.07 64.15 53.30 6.15 62.43 30.18 8.20 1.94 1.80 1.59 48.82 0.83 23.67 14.67 44.15 14.76 31.19 3.39 53.57 0.40 1.02 0.00 0.89 2.60 43.08 16.67 79.12 1.54 2.13 4.63 0.50 25.85 17.76 28.04 6.10 46.59 19.41 6.03 1.67 1.21 2.50 59.40 10.25 3.00 0.27 21.94 7.00 1.08 0.03 2.24 59.47 17.69 39.84 25.17 0.34 0.22 32.34 5.35 0.23 28.92 2.34 0.36 10.25 0.00 11.90 5.57 3.79 48.05 2.04 0.00 0.00 2.37 0.26 0.00 2.63 0.00 0.31 61.29 22.39 59.08 1.71 0.13 0.32 39.15 72.84 6.87 2.58 20.24 3.10 8.52 1.32 1.79 8.97 4.33 21.15 19.37 17.55 10.23 6.58 4.13 0.29 7.58 2.24 50.83 6.38 1.01 0.00 14.30 0.18 47.00 40.14 27.84 0.50 0.12 6.71 0.00 20.39 1.05 10.13 21.15 14.64 5.55 0.44 4.16 1.82 70.57 61.40 2.09 47.60 0.06 0.22 17.33 7.53 0.00 1.00 0.00 2.91 22.00 5.25 11.38 0.30 0.00 0.38 1.87 28.32 56.48 58.79 11.42 1.08 3.51 4.91 1.85 27.49 5.42 0.52 0.48 3.99
2003 0.09 0.97 2.20 0.00 13.55 0.37 24.52 17.23 11.91 4.58 20.80 0.00 0.00 42.70 0.00 20.00 21.55 0.16 39.69 0.00 49.97 0.00 0.95 56.52 2.44 3.51 3.97 3.35 13.21 0.00 19.60 12.04 0.37 0.20 0.26 0.59 64.20 4.32 0.00 0.15 0.32 25.47 6.20 0.00 7.39 0.85 0.13 0.46 20.33 0.76 22.75 5.24 30.09 34.30 0.00 76.26 0.63 23.62 7.90 4.46 4.04 2.50 0.52 0.00 45.32 0.11 64.02 58.91 6.73 69.22 36.14 14.12 2.66 2.44 2.56 55.90 1.19 28.33 17.80 54.53 18.65 33.72 4.55 59.14 0.45 1.35 0.00 1.65 4.80 52.20 21.63 83.14 1.69 2.39 6.93 0.60 34.31 19.59 29.04 7.80 48.44 22.73 8.47 2.00 2.94 3.00 65.50 22.40 3.91 0.33 26.98 8.00 1.53 0.03 2.81 58.81 25.91 54.55 25.74 0.42 0.28 34.97 5.98 0.31 31.64 2.57 0.42 12.19 0.00 12.90 9.23 7.41 49.49 0.00 0.00 0.00 3.35 0.42 0.02 3.36 0.00 0.38 64.35 26.41 60.96 1.88 0.16 0.56 43.13 78.13 7.26 5.04 21.60 4.13 9.99 1.37 2.11 11.60 4.86 24.87 29.67 19.71 19.24 8.90 8.30 0.36 10.16 2.80 50.00 8.00 2.10 0.00 14.59 0.19 53.84 43.04 31.85 0.56 0.38 7.01 0.00 39.93 1.46 12.34 22.97 20.98 6.46 0.54 4.72 2.44 79.13 65.10 3.40 51.94 0.06 0.68 19.07 9.30 0.00 1.20 1.50 2.99 25.97 6.49 12.33 0.43 0.00 0.46 3.15 29.48 64.82 61.70 15.94 1.91 3.90 7.50 3.78 27.43 5.74 0.60 0.98 6.39
2004 0.11 2.42 4.63 0.00 26.84 0.46 25.04 24.27 16.04 4.90 23.00 0.00 0.00 54.28 0.00 22.00 21.46 0.20 49.80 0.00 53.86 9.80 1.18 60.99 3.16 4.44 15.47 3.30 19.07 0.00 29.72 18.13 0.40 0.35 0.30 0.98 65.96 5.32 0.00 0.22 0.36 28.18 7.30 0.00 9.12 1.33 0.20 1.08 20.79 0.85 30.91 8.41 33.83 35.50 0.00 80.93 0.78 30.32 8.87 4.83 11.92 3.20 0.84 0.00 53.20 0.16 67.32 66.53 7.41 72.39 39.15 17.88 2.98 3.31 3.89 64.73 1.72 32.89 21.42 56.10 19.57 36.16 5.10 64.52 0.51 1.81 0.00 5.40 5.60 56.40 27.74 83.88 1.98 2.60 7.49 0.90 36.99 22.77 33.24 10.00 62.39 30.68 11.66 2.65 3.02 3.50 72.70 22.93 5.09 0.36 38.58 9.00 2.18 0.03 3.53 64.01 31.23 65.88 31.48 0.53 0.35 42.25 6.59 0.43 34.62 3.60 0.48 13.69 0.00 14.10 11.02 10.63 52.49 0.00 25.35 0.00 11.61 0.68 0.02 3.80 0.00 0.45 68.52 30.30 61.85 2.32 0.19 1.29 47.34 77.69 6.76 6.16 26.97 4.40 11.14 1.51 3.45 14.10 5.24 32.53 31.78 22.13 20.70 15.00 12.86 0.43 13.32 3.08 50.57 10.23 4.39 23.50 24.27 0.20 62.00 52.89 40.81 0.65 1.05 8.43 0.00 44.01 1.45 14.62 24.74 21.40 7.37 0.79 6.08 3.23 83.89 67.80 4.32 53.81 0.08 0.88 24.44 10.68 0.00 1.50 0.00 3.95 27.02 8.53 14.58 0.75 0.00 0.72 3.49 30.13 65.61 64.76 17.06 2.59 4.75 8.40 7.64 27.38 6.06 0.88 2.01 6.56
2005 1.22 6.04 5.84 0.00 37.61 1.14 29.00 27.00 17.72 5.25 25.40 0.00 63.00 58.00 8.03 25.00 21.30 0.24 52.50 0.00 55.82 17.00 1.27 65.45 3.85 5.23 21.33 3.26 21.02 0.00 36.47 19.97 0.47 0.54 0.32 1.40 71.66 6.07 38.03 0.27 0.40 31.18 8.52 0.00 11.01 2.00 0.24 1.46 22.07 1.04 33.14 9.74 32.81 35.27 0.00 82.74 0.95 38.54 11.48 5.99 12.75 4.20 1.15 0.00 61.45 0.22 84.01 67.90 8.45 74.48 42.87 21.54 4.89 3.80 6.08 68.71 1.83 39.07 24.00 57.70 20.49 38.56 5.70 73.57 0.54 1.90 0.00 6.38 6.50 56.90 38.97 87.00 2.39 3.60 8.10 0.90 41.61 25.19 35.00 12.80 66.92 31.25 12.93 2.96 3.10 4.00 73.50 25.93 10.53 0.85 46.00 10.14 2.58 0.00 3.92 63.37 36.22 70.00 34.86 0.57 0.38 48.63 6.87 0.51 41.24 3.88 0.67 15.17 0.00 17.21 11.88 14.63 55.46 0.00 27.10 0.00 15.08 0.85 0.07 4.01 0.00 0.83 81.00 32.36 62.72 2.57 0.22 3.55 51.70 81.99 6.68 6.33 0.00 16.01 11.48 1.72 7.91 17.10 5.40 38.81 34.99 23.40 24.73 21.50 15.23 0.56 13.76 3.35 50.26 12.71 4.79 26.30 25.41 0.22 61.00 55.19 46.81 0.84 1.08 7.49 0.00 47.88 1.79 15.91 34.00 21.57 9.20 1.29 6.40 3.70 84.83 70.10 5.65 58.01 0.30 1.10 26.45 15.03 0.10 1.80 0.00 4.91 28.98 9.66 15.46 1.00 0.00 1.74 3.75 40.00 70.00 67.97 20.09 3.34 5.08 12.55 12.74 27.34 6.70 1.05 2.85 8.02
2006 2.11 9.61 7.38 0.00 48.94 1.91 36.00 30.00 20.93 5.63 28.00 0.00 66.00 63.60 11.99 26.00 28.24 1.00 55.30 16.20 59.72 24.00 1.54 69.90 4.52 6.20 25.12 4.29 28.18 0.00 42.19 27.09 0.63 0.66 0.47 2.03 72.40 6.81 44.50 0.31 0.58 34.50 10.52 0.00 15.34 2.20 0.30 2.01 25.10 1.52 37.98 11.16 35.83 47.93 0.00 86.65 1.27 39.40 14.84 7.20 13.66 5.50 1.28 0.00 63.51 0.31 87.10 69.36 9.60 79.66 46.87 25.11 5.49 5.24 7.53 72.16 2.72 45.30 32.25 59.36 21.40 43.85 6.50 83.63 0.64 2.06 0.00 6.80 7.80 60.80 47.06 89.51 2.81 4.76 8.76 0.95 54.82 27.88 37.99 16.40 68.69 31.82 13.87 3.27 7.53 4.50 78.10 28.79 12.31 1.17 53.63 15.00 2.98 0.00 4.30 64.21 43.90 72.51 46.40 0.61 0.43 51.64 11.04 0.73 40.41 3.80 0.98 16.70 0.00 19.52 12.75 19.62 61.48 0.00 28.90 25.91 19.77 0.84 0.18 4.40 0.00 1.14 83.70 33.52 69.00 2.81 0.29 5.55 56.25 82.55 8.30 6.50 0.00 18.41 17.35 1.75 7.96 20.70 5.74 44.58 38.01 25.44 28.97 24.66 18.02 0.00 14.18 4.47 50.21 19.46 5.61 27.20 34.95 0.23 59.00 56.08 54.01 1.65 1.10 7.61 0.00 50.37 2.54 17.23 38.50 24.50 12.00 0.00 9.50 3.70 87.76 75.70 7.83 63.68 3.77 1.30 28.62 17.16 0.12 2.00 0.00 5.85 30.00 12.99 18.24 1.32 0.00 2.53 4.51 52.00 68.82 68.93 29.40 6.39 5.85 15.22 17.25 27.33 7.33 1.25 4.16 9.79
2007 1.90 15.04 9.45 0.00 70.87 3.20 41.00 34.00 25.95 6.02 30.90 33.00 69.45 69.37 14.54 27.00 32.91 1.80 58.20 19.70 64.44 24.60 1.79 74.35 5.92 10.50 27.92 5.28 30.88 0.00 44.68 33.64 0.75 0.70 0.49 2.93 73.20 8.28 52.00 0.38 0.85 35.90 16.00 0.00 21.80 2.50 0.37 2.76 28.40 1.80 41.44 11.69 40.77 51.93 0.00 85.03 1.62 40.27 17.66 10.80 16.03 6.11 1.56 0.41 66.19 0.37 90.06 75.98 10.90 80.78 66.09 28.59 5.77 6.21 8.26 75.16 3.85 51.61 35.88 61.07 22.29 46.15 7.30 0.00 0.78 2.21 13.80 7.20 9.40 64.80 53.30 90.60 3.95 5.79 9.47 0.93 61.16 48.13 40.79 21.10 74.30 32.39 20.00 4.02 7.95 6.00 78.80 34.80 14.03 1.64 59.17 18.74 3.45 0.55 4.72 65.08 49.90 78.92 47.33 0.65 0.97 55.70 16.30 0.81 46.90 3.95 1.43 20.22 0.00 20.81 13.62 20.45 64.38 9.00 30.80 20.43 21.50 0.91 0.22 4.84 0.00 1.41 85.82 35.05 69.76 3.90 0.39 6.77 61.01 86.93 16.68 6.80 0.00 21.18 22.29 1.79 11.21 25.20 5.97 48.60 42.09 27.86 37.00 28.30 24.66 2.12 14.59 4.75 50.36 30.00 6.89 33.15 38.38 0.24 69.90 61.80 56.74 2.00 1.12 8.07 0.00 55.11 3.88 18.57 43.50 27.90 16.00 8.66 14.11 4.10 82.01 77.20 11.50 64.45 7.20 1.60 36.30 20.03 0.14 2.20 0.00 7.18 32.30 17.10 28.63 1.41 10.00 3.67 6.55 61.00 75.09 75.00 34.00 7.49 6.80 20.83 20.76 27.34 7.95 5.01 4.87 10.85
2008 1.84 23.86 10.18 0.00 70.04 4.60 44.00 38.00 28.11 6.21 52.00 33.00 71.67 72.87 17.08 31.54 51.95 2.50 61.40 23.00 66.00 26.30 1.85 82.30 6.55 12.50 34.66 6.25 33.83 0.00 46.00 39.67 0.92 0.81 0.51 3.40 76.70 14.00 61.00 1.00 1.19 37.30 22.60 0.00 25.60 3.00 0.44 4.29 32.29 1.90 44.24 12.94 42.31 62.97 0.00 85.02 2.26 41.16 20.82 18.80 18.01 10.08 1.82 0.47 70.58 0.45 92.96 75.57 13.00 83.67 70.68 33.87 6.21 6.88 10.01 78.00 4.27 58.00 38.20 62.82 23.18 48.42 8.30 0.00 0.92 2.35 18.20 7.60 9.60 66.70 61.00 91.00 4.38 7.92 12.02 1.00 65.34 59.39 44.53 23.60 75.40 0.00 23.00 11.00 8.67 7.00 81.00 42.00 15.70 3.55 63.41 22.53 3.58 0.53 9.00 70.00 55.22 82.23 49.24 1.65 0.70 55.80 23.20 1.57 50.08 4.60 1.87 21.81 0.00 21.71 14.49 23.39 67.25 9.80 32.90 20.32 33.10 1.56 0.22 5.33 0.00 1.73 87.42 34.51 72.03 5.30 0.70 15.86 65.92 90.57 20.00 7.00 0.00 24.36 33.82 1.15 14.27 30.57 6.22 53.13 44.13 38.00 44.30 32.42 26.83 4.50 15.48 5.03 54.52 36.00 7.12 35.60 40.44 0.25 69.00 66.05 58.00 3.00 1.14 8.43 0.00 59.60 5.80 18.82 49.20 32.00 21.00 0.00 21.06 6.85 90.00 79.20 14.00 65.84 8.78 1.90 46.04 18.20 0.16 2.40 0.00 8.11 34.80 27.53 34.37 1.75 15.00 7.90 11.00 63.00 78.39 74.00 39.30 9.08 7.27 25.88 23.92 27.36 8.22 6.89 5.55 11.40
2009 3.55 41.20 11.23 0.00 78.53 6.00 48.00 42.00 34.00 15.30 58.00 33.00 74.25 73.45 27.40 33.88 53.00 3.10 64.70 27.43 70.00 27.20 2.24 83.25 7.17 16.80 37.74 6.15 39.22 36.00 49.00 45.00 1.13 0.90 0.53 3.84 80.30 21.00 64.50 1.80 1.50 41.56 28.90 0.00 30.00 3.50 0.56 4.50 34.33 2.00 50.58 14.33 49.81 64.43 0.00 86.84 4.00 42.02 27.72 24.60 20.00 12.11 2.13 0.54 72.50 0.54 95.84 75.18 17.00 82.49 71.58 44.60 6.70 7.63 20.07 79.00 5.44 65.07 42.40 62.83 24.05 50.64 9.30 0.00 0.94 2.30 23.90 8.10 9.80 69.40 62.00 93.00 5.12 6.92 13.80 1.06 67.38 63.12 48.83 24.30 78.00 0.00 26.00 18.20 10.04 8.97 81.60 50.80 16.00 6.00 66.84 30.14 3.72 2.00 10.80 75.00 59.76 87.31 54.00 1.63 1.07 55.90 24.80 1.80 58.86 5.60 2.28 22.51 0.00 26.34 15.35 27.50 70.10 10.00 35.10 20.26 41.30 2.68 0.22 6.50 0.00 1.97 89.63 33.99 79.70 7.30 0.76 20.00 74.48 92.08 26.80 7.50 0.00 32.23 39.08 1.61 18.90 31.40 9.00 58.97 48.27 41.50 53.10 36.60 29.00 7.70 16.41 6.00 54.21 38.00 7.50 38.10 0.00 0.26 69.00 70.00 64.00 4.00 1.16 10.00 0.00 62.40 8.78 19.07 55.70 36.00 31.00 0.00 31.36 8.94 91.00 81.30 17.30 69.90 10.07 2.40 51.77 20.10 0.19 2.60 0.00 10.00 44.30 34.07 36.40 1.95 20.00 9.78 17.90 64.00 83.56 71.00 41.80 17.06 7.50 32.70 26.55 27.40 6.76 9.96 6.31 11.36
2010 4.00 45.00 12.50 0.00 81.00 10.00 49.60 47.00 45.00 25.00 62.00 35.00 76.00 75.17 46.00 43.00 55.00 3.70 65.10 31.80 75.00 28.20 3.13 84.21 13.60 22.40 42.75 6.00 40.65 37.00 53.00 46.23 2.40 1.00 1.26 4.30 80.30 30.00 66.00 2.00 1.70 45.00 34.30 0.00 36.50 5.10 0.72 5.00 36.50 2.70 56.55 15.90 52.99 68.82 0.00 88.72 6.50 47.45 31.40 29.03 21.60 15.90 6.00 0.61 74.10 0.75 95.84 75.20 20.00 86.89 77.28 49.00 7.23 9.20 26.90 82.00 7.80 65.00 44.40 63.00 27.00 54.04 10.50 0.00 1.00 2.45 29.90 8.37 11.09 72.00 65.00 93.39 7.50 10.92 15.90 2.50 69.85 67.50 53.68 27.67 78.21 0.00 27.20 31.60 14.00 9.07 83.70 61.40 16.30 7.00 68.42 43.68 3.86 2.30 14.00 80.00 62.12 90.62 55.20 1.70 2.26 56.30 26.53 2.00 63.00 7.00 4.00 28.33 0.00 31.05 20.00 32.30 75.00 10.20 37.50 35.00 52.00 4.17 0.25 11.60 0.00 7.93 90.72 42.00 80.46 10.00 0.83 24.00 76.97 93.39 35.83 8.00 0.00 37.40 40.10 1.28 19.80 34.77 25.00 62.32 53.30 45.30 69.00 39.93 43.00 8.00 18.75 7.00 0.00 41.00 8.00 40.90 41.00 0.58 71.00 75.71 70.00 5.00 0.00 24.00 7.00 65.80 12.00 24.94 63.00 43.30 38.50 16.70 31.59 11.04 90.00 83.90 20.70 71.50 11.55 2.90 51.90 22.40 0.21 3.00 0.00 16.00 48.50 36.80 39.82 3.00 25.00 12.50 23.30 68.00 85.00 71.69 46.40 20.00 8.00 37.37 30.65 31.22 8.16 12.35 10.00 11.50
2011 5.00 49.00 14.00 0.00 81.00 14.78 53.64 52.00 51.00 32.00 69.00 36.00 79.49 78.74 50.00 65.00 77.00 4.50 67.00 39.65 81.61 30.70 4.15 88.34 21.00 30.00 47.77 8.00 45.69 37.40 56.00 47.98 3.00 1.11 3.10 5.00 83.00 32.00 69.47 2.20 1.90 52.25 38.30 0.00 40.35 5.50 1.20 5.60 39.21 2.90 57.79 16.02 56.86 70.49 0.00 89.81 7.00 51.31 38.00 31.37 25.60 18.90 11.50 0.70 76.50 1.10 96.38 80.73 28.00 88.71 77.82 49.00 8.00 10.87 31.52 81.27 9.00 65.00 51.65 64.00 30.00 57.70 12.30 83.63 1.30 2.67 31.00 9.00 15.90 72.20 68.02 94.82 10.07 12.28 19.00 5.00 74.89 68.87 54.39 37.44 79.05 36.00 34.90 50.60 28.00 10.00 83.76 65.77 17.50 9.00 69.75 52.00 4.22 2.50 14.00 85.00 63.64 90.03 60.20 1.90 3.33 61.00 34.00 2.20 68.02 10.00 4.50 34.95 0.00 37.18 22.80 38.00 80.30 12.50 35.61 54.55 46.11 4.30 0.98 12.00 54.00 9.00 91.42 50.00 81.23 10.60 1.30 28.43 79.56 93.49 48.00 9.00 0.00 41.08 42.70 2.00 24.76 36.01 29.00 61.95 55.25 48.00 69.00 40.01 49.00 7.00 20.16 11.00 49.60 47.50 9.80 42.20 43.16 0.90 71.00 74.44 67.34 6.00 1.25 33.97 0.00 67.60 15.00 33.00 63.20 44.00 43.01 17.46 32.00 18.13 92.77 85.19 22.50 72.00 13.03 3.20 56.70 23.67 0.90 3.50 0.00 25.00 55.20 39.10 43.07 5.00 30.00 13.01 28.71 78.00 85.38 69.73 51.40 30.20 9.20 40.22 35.07 35.60 8.68 14.91 11.50 15.70
2012 5.45 54.66 15.23 0.00 86.43 16.94 59.21 58.00 55.80 37.50 74.00 41.03 79.00 80.03 54.20 71.75 88.00 5.00 70.00 46.91 80.72 31.00 4.50 91.30 24.00 35.34 52.78 11.50 48.56 37.60 60.27 51.90 3.73 1.22 4.94 5.70 83.00 34.74 74.13 3.00 2.10 61.42 42.30 0.00 48.98 5.98 1.68 6.11 47.50 5.00 61.94 21.20 60.69 73.43 0.00 92.26 8.27 55.18 41.20 35.14 26.40 20.32 13.94 0.80 78.39 1.48 96.92 85.34 33.74 89.88 81.44 52.88 8.62 12.45 36.94 82.35 10.60 65.02 55.07 64.90 32.00 61.53 16.00 0.00 1.49 2.89 33.00 9.80 18.12 72.90 70.58 96.21 12.58 14.52 22.73 7.10 76.92 70.80 55.83 33.79 79.50 41.03 37.00 53.32 32.10 10.75 84.07 70.45 19.80 10.75 73.12 61.25 4.59 2.60 0.00 89.41 67.23 91.95 61.31 2.30 4.35 65.80 38.93 2.80 68.20 12.50 5.00 35.42 0.00 39.75 25.97 43.37 87.00 16.40 56.84 0.00 55.42 4.85 1.07 12.94 0.00 11.15 92.86 58.00 82.00 13.50 1.41 32.80 82.22 94.65 60.00 9.96 0.00 43.40 40.30 3.50 29.34 38.20 36.24 62.31 60.34 69.00 69.30 45.88 63.80 8.02 21.57 12.92 0.00 54.00 10.80 48.10 47.08 1.30 72.00 76.71 68.35 7.00 1.38 41.00 0.00 69.81 18.29 37.60 64.00 45.90 47.52 21.00 34.68 20.78 93.18 85.20 24.30 75.99 14.51 3.95 57.45 26.46 0.91 4.00 0.00 33.00 59.52 41.44 45.13 7.20 35.00 14.69 35.27 85.00 87.48 79.30 54.45 36.52 10.60 49.05 39.49 40.55 8.95 17.45 13.47 17.09
2013 5.90 57.20 16.50 0.00 94.00 19.10 64.80 63.40 59.90 41.90 78.90 0.00 83.00 80.62 58.70 72.00 90.00 6.63 73.00 54.17 82.17 33.60 4.90 95.30 29.90 36.94 57.79 15.00 51.04 38.00 64.50 53.06 9.10 1.30 6.80 6.40 85.80 37.50 74.10 3.50 2.30 66.50 45.80 0.00 51.70 6.50 2.20 6.60 45.96 8.40 66.75 27.93 65.45 74.11 0.00 94.63 9.50 59.00 45.90 40.35 29.40 23.11 16.40 0.90 79.40 1.90 96.90 90.00 37.10 91.51 81.92 56.80 9.20 14.00 43.30 84.17 12.30 0.00 59.87 65.80 35.00 65.40 19.70 0.00 1.60 3.10 35.00 10.60 17.80 74.20 72.64 96.55 15.10 14.94 29.95 9.20 78.25 70.80 58.46 37.10 89.71 0.00 41.00 54.00 39.00 11.50 84.77 75.46 23.00 12.50 75.23 70.50 5.00 3.20 16.50 93.80 68.45 93.78 65.80 3.00 5.05 66.97 44.10 3.50 68.91 14.00 6.20 39.00 0.00 43.46 27.80 45.00 90.70 20.00 60.31 54.60 56.00 5.40 1.60 13.90 0.00 13.30 93.96 66.00 82.78 15.50 1.70 38.00 86.90 95.05 66.45 10.90 0.00 46.60 44.03 6.50 36.90 39.20 37.00 62.85 62.10 73.90 85.30 49.76 67.97 9.00 23.00 15.30 0.00 60.50 13.10 51.50 50.40 1.70 81.00 77.88 72.68 8.00 1.50 46.50 14.10 71.64 21.90 0.00 64.60 46.20 52.00 22.70 37.40 24.70 94.78 86.34 26.20 80.00 16.00 4.40 65.24 28.94 1.10 4.50 0.00 35.00 63.80 43.80 46.25 9.60 37.00 16.20 41.00 88.00 89.84 84.20 57.69 38.20 11.30 54.90 43.90 45.30 0.00 20.00 15.40 18.50
2014 6.39 60.10 18.09 0.00 95.90 21.26 70.39 64.00 64.70 46.30 83.78 0.00 84.56 81.00 61.00 76.92 91.00 9.60 76.67 59.02 85.00 38.70 5.30 96.80 34.37 39.02 60.80 18.50 57.60 38.50 68.77 55.49 9.40 1.38 9.00 11.00 87.12 40.26 74.10 4.03 2.50 72.35 49.30 0.00 52.57 6.98 3.00 7.11 49.41 14.60 68.57 30.00 69.33 79.71 0.00 95.99 10.71 62.86 49.58 43.00 31.70 29.70 18.86 0.99 84.24 2.90 97.60 94.66 41.80 92.38 83.75 60.68 9.81 15.56 48.90 86.19 18.90 0.00 63.21 66.70 37.38 69.27 23.40 0.00 1.72 3.32 37.35 11.40 19.08 74.56 76.13 98.16 18.00 17.14 39.35 11.30 79.69 71.45 61.96 40.50 90.58 0.00 44.00 54.89 43.40 12.25 84.33 78.70 28.30 14.26 75.83 74.70 11.00 5.41 17.76 95.21 72.13 94.67 69.78 3.70 5.83 67.50 49.28 7.00 73.17 16.80 10.70 41.44 0.00 44.39 29.65 46.60 92.40 27.00 61.00 54.60 56.80 5.94 2.10 14.84 0.00 15.44 93.17 70.00 85.50 17.60 1.95 42.68 91.55 96.30 70.22 13.80 0.00 53.67 44.92 9.38 43.00 40.20 39.69 66.60 64.59 78.78 91.49 54.08 70.52 10.60 24.41 21.20 0.00 63.70 17.70 53.50 54.26 2.10 82.00 79.98 71.59 9.00 1.63 49.00 15.90 76.19 25.80 0.00 65.40 51.00 56.48 24.64 40.08 27.10 92.52 87.00 28.09 83.99 17.49 4.86 68.06 34.89 1.14 5.70 0.00 40.00 65.10 46.16 51.04 12.20 0.00 17.71 43.40 90.40 91.61 87.36 61.46 43.55 18.80 57.00 48.31 50.07 0.00 22.55 17.34 19.89
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment