Added bar chart and fixed some stuff
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -41,3 +41,5 @@ fabric.properties
|
||||
|
||||
# End of https://www.gitignore.io/api/intellij
|
||||
*.zip
|
||||
.sass-cache
|
||||
.ipynb_checkpoints
|
||||
|
||||
165
DataPreprocessor.ipynb
Normal file
165
DataPreprocessor.ipynb
Normal file
File diff suppressed because one or more lines are too long
20
index.html
20
index.html
@@ -1,5 +1,6 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Getting Started</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<style>
|
||||
@@ -11,6 +12,16 @@
|
||||
|
||||
.area{
|
||||
fill: lightsteelblue;
|
||||
-webkit-transition: opacity 2s;
|
||||
-moz-transition: opacity 2s;
|
||||
-ms-transition: opacity 2s;
|
||||
-o-transition: opacity 2s;
|
||||
transition: opacity 2s;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.hidden{
|
||||
opacity: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
@@ -26,13 +37,14 @@
|
||||
<h1>Crypto</h1>
|
||||
<h1>Currencies</h1>
|
||||
</div>
|
||||
<div id="growth1" class="step" data-x="-1500" data-y="400" data-scale="1"></div>
|
||||
<div id="growth2" class="step" data-x="500" data-y="400" data-scale="1"></div>
|
||||
<div id="growth3" class="step" data-x="750" data-y="0" data-scale="2"></div>
|
||||
<div class="step" id="growth" data-scale="5" data-x="-500" data-y="0">
|
||||
<h2>Volume of trades over the years</h2>
|
||||
<svg id="intro"></svg>
|
||||
</div>
|
||||
<div id="test" class="step" data-x="-500" data-y="0" data-scale="5" data-rotate-y="-45"></div>
|
||||
<div id="test" class="step" data-x="6000" data-y="0" data-z="1500" data-scale="5" data-rotate-y="-45">
|
||||
<h2>Market composition of the 10 biggest coins</h2>
|
||||
<svg id="composition"></svg>
|
||||
</div>
|
||||
<div id="overview" class="step" data-x="3000" data-y="2000" data-scale="9" style="pointer-events: none;"></div>
|
||||
</div>
|
||||
|
||||
|
||||
126
index.js
126
index.js
@@ -1,5 +1,11 @@
|
||||
let intro_svg;
|
||||
|
||||
function type(d, i, columns) {
|
||||
for (i = 1, t = 0; i < columns.length; ++i) t += d[columns[i]] = +d[columns[i]];
|
||||
d.total = t;
|
||||
return d;
|
||||
}
|
||||
|
||||
function make_intro_svg() {
|
||||
"use strict";
|
||||
let maxValue;
|
||||
@@ -8,11 +14,11 @@ function make_intro_svg() {
|
||||
top: 20,
|
||||
right: 20,
|
||||
bottom: 30,
|
||||
left: 50
|
||||
left: 200
|
||||
};
|
||||
|
||||
let width = 960 - margin.left - margin.right;
|
||||
let height = 500 - margin.top - margin.bottom;
|
||||
let width = 1320 - margin.left - margin.right;
|
||||
let height = 600 - margin.top - margin.bottom;
|
||||
|
||||
let x = d3.scaleTime().range([0, width]);
|
||||
let y = d3.scaleLinear().range([height, 0]);
|
||||
@@ -32,8 +38,6 @@ function make_intro_svg() {
|
||||
.append('g')
|
||||
.attr('transform', `translate(${margin.left},${margin.top})`);
|
||||
|
||||
console.log(x);
|
||||
|
||||
d3.csv('volume.csv', function (d) {
|
||||
return {
|
||||
date: new Date(d.date),
|
||||
@@ -48,11 +52,11 @@ function make_intro_svg() {
|
||||
"use strict";
|
||||
x.domain(d3.extent(data, d => d.date));
|
||||
maxValue = d3.max(data, d=> d.volume);
|
||||
y.domain([0, 1000000000]);
|
||||
y.domain([0, maxValue]);
|
||||
|
||||
dataArea = intro_svg.append('path')
|
||||
.data([data])
|
||||
.attr('class', 'area')
|
||||
.attr('class', 'area hidden')
|
||||
.attr('d', area);
|
||||
|
||||
dataLine = intro_svg.append('path')
|
||||
@@ -60,6 +64,11 @@ function make_intro_svg() {
|
||||
.attr('class', 'line')
|
||||
.attr('d', valueline);
|
||||
|
||||
let totalLength = dataArea.node().getTotalLength();
|
||||
|
||||
dataLine.attr("stroke-dasharray", totalLength + " " + totalLength).attr("stroke-dashoffset", totalLength);
|
||||
dataArea.attr("stroke-dasharray", totalLength + " " + totalLength).attr("stroke-dashoffset", totalLength);
|
||||
|
||||
intro_svg.append('g')
|
||||
.attr("transform", `translate(0, ${height})`)
|
||||
.call(d3.axisBottom(x));
|
||||
@@ -71,27 +80,98 @@ function make_intro_svg() {
|
||||
.call(yAxis);
|
||||
}
|
||||
|
||||
d3.select("#growth1").on('impress:stepenter', function () {
|
||||
y.domain([0, 1000000000]);
|
||||
d3.select("#growth").on('impress:stepenter', function () {
|
||||
dataLine.transition().ease(d3.easeLinear).duration(10000).attr('stroke-dashoffset', 0)
|
||||
.on('end', function () {
|
||||
dataArea.classed('hidden', false);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
yAxisG
|
||||
.call(yAxis);
|
||||
dataArea
|
||||
.attr('d', yAxis);
|
||||
dataLine
|
||||
.attr('d', yAxis);
|
||||
function make_bar_chart() {
|
||||
let margin = {top: 20, right: 60, bottom: 60, left: 40};
|
||||
|
||||
let width = 1320 - margin.left - margin.right;
|
||||
let height = 600 - margin.top - margin.bottom;
|
||||
|
||||
let svg = d3.select("svg#composition"),
|
||||
g = svg.append("g").attr("transform", "translate(" + margin.left + "," + margin.top + ")");
|
||||
|
||||
svg.attr('width', width + margin.left + margin.bottom)
|
||||
.attr('height', height + margin.top + margin.bottom);
|
||||
|
||||
let x = d3.scaleBand()
|
||||
.rangeRound([0, width - margin.right])
|
||||
.padding(0.1)
|
||||
.align(0.1);
|
||||
|
||||
let y = d3.scaleLinear()
|
||||
.rangeRound([height, 0]);
|
||||
|
||||
let z = d3.scaleOrdinal()
|
||||
.range(["#e6194b", "#3cb44b", "#ffe119", "#0082c8", "#f58231", "#911eb4", "#46f0f0", "#f032e6", "#d2f53c",
|
||||
"#fabebe", "#008080", "#e6beff", "#aa6e28", "#fffac8", "#800000", "#aaffc3", "#808000", "#ffd8b1",
|
||||
"#000080", "#808080", "#FFFFFF", "#000000"]);
|
||||
|
||||
let stack = d3.stack()
|
||||
.offset(d3.stackOffsetExpand);
|
||||
|
||||
d3.csv("volume_per_coin_per_month.csv", type, function(error, data) {
|
||||
if (error) throw error;
|
||||
|
||||
x.domain(data.map(function(d) { return d.date; }));
|
||||
z.domain(data.columns.slice(1));
|
||||
|
||||
let serie = g.selectAll(".serie")
|
||||
.data(stack.keys(data.columns.slice(1))(data))
|
||||
.enter().append("g")
|
||||
.attr("class", "serie")
|
||||
.attr("fill", function(d) { return z(d.key); });
|
||||
|
||||
serie.selectAll("rect")
|
||||
.data(function(d) { return d; })
|
||||
.enter().append("rect")
|
||||
.attr("x", function(d) { return x(d.data.date); })
|
||||
.attr("y", function(d) { return y(d[1]); })
|
||||
.attr("height", function(d) { return y(d[0]) - y(d[1]); })
|
||||
.attr("width", x.bandwidth());
|
||||
|
||||
g.append("g")
|
||||
.attr("class", "axis axis--x")
|
||||
.attr("transform", "translate(0," + height + ")")
|
||||
.call(d3.axisBottom(x))
|
||||
.selectAll("text")
|
||||
.attr("y", 0)
|
||||
.attr("x", 9)
|
||||
.attr("dy", ".35em")
|
||||
.attr("transform", "rotate(90)")
|
||||
.style("text-anchor", "start");
|
||||
|
||||
g.append("g")
|
||||
.attr("class", "axis axis--y")
|
||||
.call(d3.axisLeft(y).ticks(10, "%"));
|
||||
|
||||
let legend = serie.append("g")
|
||||
.attr("class", "legend")
|
||||
.attr("transform", function(d) {
|
||||
d = d[d.length - 1];
|
||||
return "translate(" + (x(d.data.date) + x.bandwidth()) + "," + ((y(d[0]) + y(d[1])) / 2) + ")";
|
||||
});
|
||||
|
||||
d3.select("#growth").on('impress:stepenter', function () {
|
||||
y.domain([0, maxValue]);
|
||||
legend.append("line")
|
||||
.attr("x1", -6)
|
||||
.attr("x2", 6)
|
||||
.attr("stroke", "#000");
|
||||
|
||||
yAxisG
|
||||
.call(yAxis);
|
||||
dataArea
|
||||
.attr('d', yAxis);
|
||||
dataLine
|
||||
.attr('d', yAxis);
|
||||
legend.append("text")
|
||||
.attr("x", 9)
|
||||
.attr("dy", "0.35em")
|
||||
.attr("fill", "#000")
|
||||
.style("font", "10px sans-serif")
|
||||
.text(function(d) { return d.key; });
|
||||
});
|
||||
}
|
||||
|
||||
make_intro_svg();
|
||||
|
||||
make_bar_chart();
|
||||
|
||||
@@ -24,8 +24,8 @@ body {
|
||||
.step {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 900px;
|
||||
height: 700px;
|
||||
width: 1200px;
|
||||
height: 900px;
|
||||
margin: 20px auto;
|
||||
padding: 40px 60px;
|
||||
text-shadow: 0 2px 2px rgba(0, 10, 0, 0.5);
|
||||
@@ -147,4 +147,4 @@ body.impress-mouse-timeout {
|
||||
font-size: 10px;
|
||||
opacity: 0.6; }
|
||||
|
||||
/*# sourceMappingURL=style.cssmap */
|
||||
/*# sourceMappingURL=style.css.map */
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"version": 3,
|
||||
"mappings": "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",
|
||||
"sources": ["style2.sass"],
|
||||
"mappings": "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",
|
||||
"sources": ["style.sass"],
|
||||
"names": [],
|
||||
"file": "style2.css"
|
||||
"file": "style.css"
|
||||
}
|
||||
@@ -31,8 +31,8 @@ body
|
||||
position: relative
|
||||
display: block
|
||||
|
||||
width: 900px
|
||||
height: 700px
|
||||
width: 1200px
|
||||
height: 900px
|
||||
margin: 20px auto
|
||||
padding: 40px 60px
|
||||
|
||||
|
||||
243
volume.csv
243
volume.csv
@@ -1,247 +1,4 @@
|
||||
date,volume
|
||||
2013-04-28,0.0
|
||||
2013-04-29,0.0
|
||||
2013-04-30,0.0
|
||||
2013-05-01,0.0
|
||||
2013-05-02,0.0
|
||||
2013-05-03,0.0
|
||||
2013-05-04,0.0
|
||||
2013-05-05,0.0
|
||||
2013-05-06,0.0
|
||||
2013-05-07,0.0
|
||||
2013-05-08,0.0
|
||||
2013-05-09,0.0
|
||||
2013-05-10,0.0
|
||||
2013-05-11,0.0
|
||||
2013-05-12,0.0
|
||||
2013-05-13,0.0
|
||||
2013-05-14,0.0
|
||||
2013-05-15,0.0
|
||||
2013-05-16,0.0
|
||||
2013-05-17,0.0
|
||||
2013-05-18,0.0
|
||||
2013-05-19,0.0
|
||||
2013-05-20,0.0
|
||||
2013-05-21,0.0
|
||||
2013-05-22,0.0
|
||||
2013-05-23,0.0
|
||||
2013-05-24,0.0
|
||||
2013-05-25,0.0
|
||||
2013-05-26,0.0
|
||||
2013-05-27,0.0
|
||||
2013-05-28,0.0
|
||||
2013-05-29,0.0
|
||||
2013-05-30,0.0
|
||||
2013-05-31,0.0
|
||||
2013-06-01,0.0
|
||||
2013-06-02,0.0
|
||||
2013-06-03,0.0
|
||||
2013-06-04,0.0
|
||||
2013-06-05,0.0
|
||||
2013-06-06,0.0
|
||||
2013-06-07,0.0
|
||||
2013-06-08,0.0
|
||||
2013-06-09,0.0
|
||||
2013-06-10,0.0
|
||||
2013-06-11,0.0
|
||||
2013-06-12,0.0
|
||||
2013-06-13,0.0
|
||||
2013-06-14,0.0
|
||||
2013-06-15,0.0
|
||||
2013-06-16,0.0
|
||||
2013-06-17,0.0
|
||||
2013-06-18,0.0
|
||||
2013-06-19,0.0
|
||||
2013-06-20,0.0
|
||||
2013-06-21,0.0
|
||||
2013-06-22,0.0
|
||||
2013-06-23,0.0
|
||||
2013-06-24,0.0
|
||||
2013-06-25,0.0
|
||||
2013-06-26,0.0
|
||||
2013-06-27,0.0
|
||||
2013-06-28,0.0
|
||||
2013-06-29,0.0
|
||||
2013-06-30,0.0
|
||||
2013-07-01,0.0
|
||||
2013-07-02,0.0
|
||||
2013-07-03,0.0
|
||||
2013-07-04,0.0
|
||||
2013-07-05,0.0
|
||||
2013-07-06,0.0
|
||||
2013-07-07,0.0
|
||||
2013-07-08,0.0
|
||||
2013-07-09,0.0
|
||||
2013-07-10,0.0
|
||||
2013-07-11,0.0
|
||||
2013-07-12,0.0
|
||||
2013-07-13,0.0
|
||||
2013-07-14,0.0
|
||||
2013-07-15,0.0
|
||||
2013-07-16,0.0
|
||||
2013-07-17,0.0
|
||||
2013-07-18,0.0
|
||||
2013-07-19,0.0
|
||||
2013-07-20,0.0
|
||||
2013-07-21,0.0
|
||||
2013-07-22,0.0
|
||||
2013-07-23,0.0
|
||||
2013-07-24,0.0
|
||||
2013-07-25,0.0
|
||||
2013-07-26,0.0
|
||||
2013-07-27,0.0
|
||||
2013-07-28,0.0
|
||||
2013-07-29,0.0
|
||||
2013-07-30,0.0
|
||||
2013-07-31,0.0
|
||||
2013-08-01,0.0
|
||||
2013-08-02,0.0
|
||||
2013-08-03,0.0
|
||||
2013-08-04,0.0
|
||||
2013-08-05,0.0
|
||||
2013-08-06,0.0
|
||||
2013-08-07,0.0
|
||||
2013-08-08,0.0
|
||||
2013-08-09,0.0
|
||||
2013-08-10,0.0
|
||||
2013-08-11,0.0
|
||||
2013-08-12,0.0
|
||||
2013-08-13,0.0
|
||||
2013-08-14,0.0
|
||||
2013-08-15,0.0
|
||||
2013-08-16,0.0
|
||||
2013-08-17,0.0
|
||||
2013-08-18,0.0
|
||||
2013-08-19,0.0
|
||||
2013-08-20,0.0
|
||||
2013-08-21,0.0
|
||||
2013-08-22,0.0
|
||||
2013-08-23,0.0
|
||||
2013-08-24,0.0
|
||||
2013-08-25,0.0
|
||||
2013-08-26,0.0
|
||||
2013-08-27,0.0
|
||||
2013-08-28,0.0
|
||||
2013-08-29,0.0
|
||||
2013-08-30,0.0
|
||||
2013-08-31,0.0
|
||||
2013-09-01,0.0
|
||||
2013-09-02,0.0
|
||||
2013-09-03,0.0
|
||||
2013-09-04,0.0
|
||||
2013-09-05,0.0
|
||||
2013-09-06,0.0
|
||||
2013-09-07,0.0
|
||||
2013-09-08,0.0
|
||||
2013-09-09,0.0
|
||||
2013-09-10,0.0
|
||||
2013-09-11,0.0
|
||||
2013-09-12,0.0
|
||||
2013-09-13,0.0
|
||||
2013-09-14,0.0
|
||||
2013-09-15,0.0
|
||||
2013-09-16,0.0
|
||||
2013-09-17,0.0
|
||||
2013-09-18,0.0
|
||||
2013-09-19,0.0
|
||||
2013-09-20,0.0
|
||||
2013-09-21,0.0
|
||||
2013-09-22,0.0
|
||||
2013-09-23,0.0
|
||||
2013-09-24,0.0
|
||||
2013-09-25,0.0
|
||||
2013-09-26,0.0
|
||||
2013-09-27,0.0
|
||||
2013-09-28,0.0
|
||||
2013-09-29,0.0
|
||||
2013-09-30,0.0
|
||||
2013-10-01,0.0
|
||||
2013-10-02,0.0
|
||||
2013-10-03,0.0
|
||||
2013-10-04,0.0
|
||||
2013-10-05,0.0
|
||||
2013-10-06,0.0
|
||||
2013-10-07,0.0
|
||||
2013-10-08,0.0
|
||||
2013-10-09,0.0
|
||||
2013-10-10,0.0
|
||||
2013-10-11,0.0
|
||||
2013-10-12,0.0
|
||||
2013-10-13,0.0
|
||||
2013-10-14,0.0
|
||||
2013-10-15,0.0
|
||||
2013-10-16,0.0
|
||||
2013-10-17,0.0
|
||||
2013-10-18,0.0
|
||||
2013-10-19,0.0
|
||||
2013-10-20,0.0
|
||||
2013-10-21,0.0
|
||||
2013-10-22,0.0
|
||||
2013-10-23,0.0
|
||||
2013-10-24,0.0
|
||||
2013-10-25,0.0
|
||||
2013-10-26,0.0
|
||||
2013-10-27,0.0
|
||||
2013-10-28,0.0
|
||||
2013-10-29,0.0
|
||||
2013-10-30,0.0
|
||||
2013-10-31,0.0
|
||||
2013-11-01,0.0
|
||||
2013-11-02,0.0
|
||||
2013-11-03,0.0
|
||||
2013-11-04,0.0
|
||||
2013-11-05,0.0
|
||||
2013-11-06,0.0
|
||||
2013-11-07,0.0
|
||||
2013-11-08,0.0
|
||||
2013-11-09,0.0
|
||||
2013-11-10,0.0
|
||||
2013-11-11,0.0
|
||||
2013-11-12,0.0
|
||||
2013-11-13,0.0
|
||||
2013-11-14,0.0
|
||||
2013-11-15,0.0
|
||||
2013-11-16,0.0
|
||||
2013-11-17,0.0
|
||||
2013-11-18,0.0
|
||||
2013-11-19,0.0
|
||||
2013-11-20,0.0
|
||||
2013-11-21,0.0
|
||||
2013-11-22,0.0
|
||||
2013-11-23,0.0
|
||||
2013-11-24,0.0
|
||||
2013-11-25,0.0
|
||||
2013-11-26,0.0
|
||||
2013-11-27,0.0
|
||||
2013-11-28,0.0
|
||||
2013-11-29,0.0
|
||||
2013-11-30,0.0
|
||||
2013-12-01,0.0
|
||||
2013-12-02,0.0
|
||||
2013-12-03,0.0
|
||||
2013-12-04,0.0
|
||||
2013-12-05,0.0
|
||||
2013-12-06,0.0
|
||||
2013-12-07,0.0
|
||||
2013-12-08,0.0
|
||||
2013-12-09,0.0
|
||||
2013-12-10,0.0
|
||||
2013-12-11,0.0
|
||||
2013-12-12,0.0
|
||||
2013-12-13,0.0
|
||||
2013-12-14,0.0
|
||||
2013-12-15,0.0
|
||||
2013-12-16,0.0
|
||||
2013-12-17,0.0
|
||||
2013-12-18,0.0
|
||||
2013-12-19,0.0
|
||||
2013-12-20,0.0
|
||||
2013-12-21,0.0
|
||||
2013-12-22,0.0
|
||||
2013-12-23,0.0
|
||||
2013-12-24,0.0
|
||||
2013-12-25,0.0
|
||||
2013-12-26,0.0
|
||||
2013-12-27,82069214.0
|
||||
2013-12-28,49102600.0
|
||||
2013-12-29,33722418.0
|
||||
|
||||
|
48
volume_per_coin_per_month.csv
Normal file
48
volume_per_coin_per_month.csv
Normal file
@@ -0,0 +1,48 @@
|
||||
date,BitShares,Bitcoin,Bitcoin Cash,Dash,Ethereum,Ethereum Classic,Litecoin,Qtum,Ripple,Tether,other
|
||||
2013-12,,139984800.0,,,,,73386570.0,,484853.0,,20439603.0
|
||||
2014-01,,1153386500.0,,,,,512458650.0,,2556261.0,,316346937.0
|
||||
2014-02,,1269686300.0,,1160788.0,,,252221180.0,,3010033.0,,252506972.0
|
||||
2014-03,,763979330.0,,2036689.0,,,352637290.0,,3957661.0,,152508424.0
|
||||
2014-04,,789304230.0,,4433342.0,,,228787160.0,,6581780.0,,150602073.0
|
||||
2014-05,,503299100.0,,61202911.0,,,99453302.0,,16548406.0,,95333382.0
|
||||
2014-06,,721873150.0,,34785510.0,,,81951390.0,,5348269.0,,133334613.0
|
||||
2014-07,1537927.0,450725750.0,,11043043.0,,,94495482.0,,8306288.0,,78121363.0
|
||||
2014-08,24159394.0,694524490.0,,7773973.0,,,132978595.0,,7582193.0,,52681393.0
|
||||
2014-09,19251612.0,696572150.0,,4841240.0,,,82662825.0,,9776712.0,,100695968.0
|
||||
2014-10,8291936.0,902994450.0,,2595558.0,,,120987520.0,,7166996.0,,61601304.0
|
||||
2014-11,8080891.0,659733360.0,,3813987.0,,,102499340.0,,29228626.0,,56736801.0
|
||||
2014-12,6383386.0,553102310.0,,1826130.0,,,71412500.0,,66809767.0,,57789978.0
|
||||
2015-01,5790094.0,1098811900.0,,1697883.0,,,99981256.0,,43380373.0,,67453394.0
|
||||
2015-02,3590307.0,711518700.0,,4519991.0,,,51523802.0,,20921878.0,12.0,22246969.0
|
||||
2015-03,3035617.0,959098300.0,,7757762.0,,,55267985.0,,35716645.0,278991.0,19353212.0
|
||||
2015-04,1822058.0,672338700.0,,3749983.0,,,34766786.0,,15391396.0,634383.0,16254505.0
|
||||
2015-05,2789397.0,568122600.0,,1955501.0,,,42990806.0,,18297059.0,353074.0,75496818.0
|
||||
2015-06,2841249.0,629780200.0,,2247535.0,,,119591644.0,,15896274.0,2671427.0,160369612.0
|
||||
2015-07,1886158.0,999892200.0,,3702306.0,,,385836650.0,,15074103.0,2386954.0,113513965.0
|
||||
2015-08,2040044.0,905192300.0,,2120603.0,40375231.0,,116032840.0,,10414486.0,1436434.0,97257686.0
|
||||
2015-09,8185042.0,603623900.0,,1467816.0,19920655.0,,49180300.0,,12300980.0,1484595.0,56772569.0
|
||||
2015-10,6056875.0,953279500.0,,1615985.0,19815600.0,,66466263.0,,12339800.0,1977271.0,49731249.0
|
||||
2015-11,3382123.0,2177623400.0,,1910150.0,25989045.0,,135804380.0,,12175336.0,3220336.0,48489751.0
|
||||
2015-12,2522528.0,2096250000.0,,2473568.0,14436832.0,,89443960.0,,37887299.0,2112647.0,40048977.0
|
||||
2016-01,5966266.0,1990880300.0,,9193855.0,99427369.0,,94961890.0,,20090306.0,1788135.0,116915328.0
|
||||
2016-02,6251316.0,1876238700.0,,3841983.0,350388940.0,,47292165.0,,25743896.0,3622335.0,99648766.0
|
||||
2016-03,27849050.0,2332852800.0,,12936454.0,911491280.0,,38536977.0,,24004891.0,5753109.0,190280112.0
|
||||
2016-04,6186289.0,1811475200.0,,8324348.0,503439580.0,,65797878.0,,21524624.0,6798157.0,85794206.0
|
||||
2016-05,3953021.0,2234432800.0,,8820119.0,866285490.0,,102670010.0,,15843898.0,24858458.0,135209479.0
|
||||
2016-06,10087429.0,4749702800.0,,13279951.0,1179208430.0,,188500720.0,,57012719.0,51090603.0,312353951.0
|
||||
2016-07,12023969.0,3454186200.0,,10618195.0,851472180.0,293055300.0,105277610.0,,22900464.0,28629458.0,268690210.0
|
||||
2016-08,12534363.0,2686220200.0,,40881308.0,507070300.0,581698340.0,83652350.0,,28975007.0,45068932.0,459958785.0
|
||||
2016-09,5158732.0,2004401400.0,,18101858.0,347623070.0,84077245.0,62830982.0,,96112558.0,26136702.0,628039417.0
|
||||
2016-10,2854832.0,2115443800.0,,23540851.0,311770270.0,44282688.0,83556300.0,,92834093.0,18317797.0,373315484.0
|
||||
2016-11,2665978.0,2635773100.0,,30321284.0,263548890.0,23103568.0,81387580.0,,60944653.0,29524784.0,344691117.0
|
||||
2016-12,2326324.0,3556763800.0,,56139879.0,388060700.0,61626920.0,164804910.0,,55858911.0,34218109.0,353995029.0
|
||||
2017-01,3239314.0,5143971700.0,,92380810.0,521748480.0,66866942.0,274656140.0,,39156759.0,106403615.0,486972009.0
|
||||
2017-02,2339587.0,4282761200.0,,91120440.0,467166760.0,37611839.0,149051010.0,,23637113.0,85492340.0,407382330.0
|
||||
2017-03,12889667.0,10872456000.0,,1059310430.0,4324810300.0,255602630.0,489000040.0,,220573420.0,631852200.0,1344849697.0
|
||||
2017-04,42193324.0,9757448000.0,,518009040.0,3154319700.0,514273000.0,2678262100.0,,1109643780.0,627975470.0,2701133044.0
|
||||
2017-05,429436130.0,34261857000.0,,921691700.0,14679954800.0,3225613100.0,6499161800.0,42001830.0,5788513300.0,2083012200.0,9688590953.0
|
||||
2017-06,3707167100.0,44478141000.0,,1513357000.0,34410801000.0,5438127300.0,13602595000.0,622968620.0,6264710700.0,3086254100.0,14872077005.0
|
||||
2017-07,1906913800.0,32619957000.0,6769350.0,1391381100.0,31034420000.0,4501486200.0,10712661700.0,433805260.0,3796232800.0,3692802800.0,8856206272.0
|
||||
2017-08,1339153300.0,63548017000.0,17120742800.0,1876818100.0,33197514000.0,2489664500.0,7363653600.0,2033757900.0,9021628800.0,4443483200.0,20262134476.0
|
||||
2017-09,871825680.0,55700949000.0,11313133000.0,1527726800.0,24310300000.0,5421110100.0,15971605100.0,3619483500.0,3693570800.0,6281031900.0,17114834981.0
|
||||
2017-10,149892530.0,34701438000.0,5105023000.0,754841700.0,9155628000.0,775898300.0,3410080200.0,1305457100.0,5986936100.0,3202831400.0,9198050669.0
|
||||
|
Reference in New Issue
Block a user