Skip to content

Instantly share code, notes, and snippets.

@fengshuo
Created June 13, 2015 10:33
Show Gist options
  • Save fengshuo/704a58fb1114ff6ac861 to your computer and use it in GitHub Desktop.
Save fengshuo/704a58fb1114ff6ac861 to your computer and use it in GitHub Desktop.
Air Quality Index Charts(BJ)
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Air Quality of Beijing</title>
<style>
body{
padding-top: 20px;
padding-bottom: 100px;
font-family: arial, 'Hiragino Sans GB',Tahoma, Arial, Helvetica, STHeiti, sans-serif;
font-size: 14px;
text-align: center;
}
/* layouts */
.block {
display: inline-block;
}
.day-wrapper {
width: 1000px;
height: 180px;
margin: 5px auto;
overflow-x: auto;
overflow-y: hidden;
}
.hour-wrapper {
width: 1200px;
height: 600px;
margin: 5px auto;
}
.txt-wrapper {
text-align: left;
padding: 10px 30px;
}
/* svg styles */
.legends{
width: 200px;
height: 100%;
}
.hours{
width: 800px;
height: 100%;
}
.air {
width: 180px;
height: 100%;
}
.days-axis path {
display: none;
}
.days-axis line {
fill:none;
stroke:#000;
}
.days-axis.days-x line{
display: none;
}
.line{
fill:none;
stroke: orange;
stroke-width: 1px;
}
.axis path,
.axis line{
fill:none;
stroke:#000;
}
.day-tip {
position: absolute;
width: 100px;
padding: 3px;
background: rgba(0, 0, 0, 0.6);
color: #fff;
border-radius: 10px;
}
.day-tip:after{
display: block;
content: "";
position: absolute;
top: 100%;
left:45px;
border:10px solid transparent;
border-top: 10px solid rgba(0, 0, 0, 0.6);
}
.dot {
fill: steelblue;
stroke: steelblue;
stroke-width: 2px;
}
.indicator{
stroke: lightgrey;
stroke-width: 2px;
stroke-dasharray: 10;
}
.slider-indicator path{
fill:none;
stroke:#000;
}
</style>
<script src="../lib/d3.js"></script>
</head>
<body>
<h1>Air Quality Index of Beijing (2014/04/14-2015/06/09)</h1>
<div class="day-wrapper"></div>
<h2>Hourly Data</h2>
<p>Click on hourly data to see index of each pollution substance</p>
<div class="hour-wrapper">
<div class="block legends"></div>
<div class="block hours"></div>
<div class="block air"></div>
</div>
<div class="txt-wrapper">
<h3>Air Quality Index and Health Implications</h3>
<ul>
<li>0-50: Excellent. No health implications.</li>
<li>51-100: Good. Few hypersensitive individuals should reduce outdoor exercise.</li>
<li>101-150: Lightly Polluted. Slight irritations may occur, individuals with breathing or heart problems should reduce outdoor exercise.</li>
<li>151–200: Moderately Polluted. Slight irritations may occur, individuals with breathing or heart problems should reduce outdoor exercise.</li>
<li>201–300: Heavily Polluted. Healthy people will be noticeably affected. People with breathing or heart problems will experience reduced endurance in activities. These individuals and elders should remain indoors and restrict activities.</li>
<li>300+: Severely Polluted. Healthy people will experience reduced endurance in activities. There may be strong irritations and symptoms and may trigger other illnesses. Elders and the sick should remain indoors and avoid exercise. Healthy individuals should avoid out door activities.</li>
</ul>
<h3>AQI Calculation</h3>
<p>As indicated <a href="http://kjs.mep.gov.cn/hjbhbz/bzwb/dqhjbh/jcgfffbz/201203/W020120410332725219541.pdf">here</a>, the
general AQI is the max of IAQIs, which is quality index for each pollution substance including SO2,, NO2, CO, O3, PM10, PM2.5.
</p>
</div>
<script>
window.onload = function(){
/**
* general setting
*/
/* margins setting */
var margin = {
top:10,
right:10,
bottom:30,
left:50
};
var width = 1150 - margin.left - margin.right;
var height = 200 - margin.top - margin.bottom;
var cellSize = 17;
/* time formatter */
var day = d3.time.format("%w");
var week = d3.time.format("%U");
var format = d3.time.format("%Y-%m-%d");
var year = d3.time.format("%Y"); // to differentiate 2014,2015, avoid overlap
var hourParser = d3.time.format("%H:%M:%S").parse; // format hourly data
/* standards */
// http://en.wikipedia.org/wiki/Air_quality_index#Mainland_China
var AQIStandard = [0,50,100,150,200,300,400,500];
var AQIStandardColors = ['#00E400','#FFFF00','#FF7E00','#FF0000','#99004C','#7E0023','#65001c'];
var metaData = ["Excellent","Good","Lightly Polluted","Moderately Polluted","Heavily Polluted","Severely Polluted","Severely Polluted","Severely Polluted"]
/* color scale */
var colorScale = d3.scale.quantile()
.domain(AQIStandard)
.range(AQIStandardColors);
/* initiate svg in blocks respectively */
// TODO: reuse
var svgDay = d3.select(".day-wrapper")
.append("svg")
.attr({
"width": width,
"height": height
})
.attr("class","day-svg")
.append("g")
.attr("transform", "translate("+ margin.left + "," + margin.top + ")")
var svgLegends = d3.select(".block.legends")
.append("svg")
.attr({
"width": "100%",
"height": "100%"
})
.append("g")
.attr("transform", "translate("+ margin.left*3 + "," + margin.top + ")")
var svgHour = d3.select(".block.hours")
.append("svg")
.attr({
"width": "100%",
"height": "100%"
})
.append("g")
.attr("transform", "translate("+ margin.left + "," + margin.top + ")");
var svgAir = d3.select(".block.air")
.append("svg")
.attr({
"width": "100%",
"height": "100%"
})
.append("g")
.attr("transform","translate(15,0)")
/* load data */
d3.csv("airquality.csv", function(err,csv){
//NOTE: the data is from 2014-04
/* reconstruct data */
var data = d3.nest()
.key(function(d){
return d.DATE;
})
.entries(csv);
data.forEach(function(d){
var sum = 0;
d.values.forEach(function(v){
sum += Number(v.AQI);
});
d.average = Math.round(sum / d.values.length);
d.max = d3.max(d.values, function(v){
return +v.AQI;
});
d.min = d3.min(d.values, function(v){
return +v.AQI;
});
d.key = format.parse(d.key)
});
/**
* add blocks in day svg, calendar view
* notice to avoid the overlap between years
*/
var rect = svgDay.selectAll(".day")
.data(data)
.enter()
.append("rect")
.attr("class","day")
.attr({
"width": cellSize,
"height": cellSize,
"x": function(d){
// avoid overlap
if(year(d.key) == "2014"){
return (week(d.key) - week(new Date(2014,3,13))) * cellSize;
}else {
return ( (52 - week(new Date(2014,3,13))) + Number(week(d.key)) ) * cellSize;
}
},
"y": function(d){
return day(d.key) * cellSize;
}
})
.style("fill", function(d){
return colorScale(d.average);
})
.on("mouseenter", showDayTip)
.on("mouseleave", removeDayTip)
.on("click", showHour);
var days_yscale = d3.time.scale()
.domain([new Date(2015,5,7), new Date(2015,5,14)])
.range([0, cellSize*7]);
var days_yaxis = d3.svg.axis()
.scale(days_yscale)
.orient("left")
.tickFormat(d3.time.format("%a"))
.ticks(d3.time.day, 3)
svgDay.append("g")
.attr("class","days-axis days-y")
.call(days_yaxis)
// x axis (year,month)
var daySVGWidth = parseInt(d3.select(".day-svg").style("width"));
var days_xscale = d3.time.scale()
.interpolate(function(a,b){
return function(t){
return (a+t*(b-a))/1.06; //TODO
// NOTE: in this case, the x axe is not fixed time range
// use time scale might not be appropriate
}
})
.domain([data[0].key, data[data.length-1].key])
.range([0, daySVGWidth])
var days_xaxis = d3.svg.axis()
.scale(days_xscale)
.orient("bottom")
svgDay.append("g")
.attr("transform","translate(0,"+cellSize*7+")")
.attr("class","days-axis days-x")
.call(days_xaxis)
/**
* initiate hourly data (line + scatterplot) in hour chart with the first data point
*/
var hourHeight = parseInt(d3.select(".hours").style("height"))/1.5;
var hourWidth = parseInt(d3.select(".hours").style("width")) - margin.left - margin.right;
var xScale = d3.time.scale()
.domain([hourParser("00:00:00"),hourParser("23:00:00")])
.range([0, hourWidth]);
// https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=js%20string%20to%20number
var yScale = d3.scale.linear()
.domain([0,510]) // in this case, y domain is fixed as described in standards
.range([hourHeight, 0]);
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.tickFormat(d3.time.format("%H"))
.ticks(24);
var yAxis = d3.svg.axis()
.scale(yScale)
.orient("left")
.tickValues(AQIStandard);
// line generator
var lineGenerator = d3.svg.line()
.x(function(d){
return xScale(hourParser(d.TIME))
})
.y(function(d){
return yScale(Number(d.AQI))
});
var line = svgHour.append("path")// there is only one line, no need to data()
.attr("d", lineGenerator(data[0].values))
.attr("class","line");
var xLineAxis = svgHour.append("g")
.attr("transform","translate(0," + parseInt(d3.select(".hours").style("height"))/1.5 + ")")
.attr("class","x axis")
.call(xAxis);
var yLineAxis = svgHour.append("g")
.attr("class","y axis")
.call(yAxis);
// draw scatterplots
var dots = svgHour.selectAll(".dot")
.data(data[0].values, function(d){
return d.TIME; // update binding by key, otherwise the selection is incorrect while updating new data
})
.enter()
.append("circle")
.attr({
"cx": function(d){
return xScale(hourParser(d.TIME))
},
"cy": function(d){
return yScale(+d.AQI);
},
"r": 6 // if you need interaction triggered by circle, you'd better not use fill:none, otherwise it won't trigger events
})
.attr("class","dot")
.on("mouseenter", dotEnter)
.on("mouseleave", dotLeave)
.on("click", dotClick);
/**
* add legends in svgLegends correspondent with yAxis in line chart
* color block, text label
*/
var legends = svgLegends.append("g")
.selectAll(".legend")
.data(colorScale.range())
// color blocks
legends.enter()
.append("rect")
.attr({
"x":30,
"y":function(d,i){
if(i == (AQIStandard.length-1)){
return 0
}else {
return yScale(AQIStandard[i+1])
}
},
"height":function(d,i){
if(i == (AQIStandard.length-1)){
return yScale(AQIStandard[i])
}else {
return yScale(AQIStandard[i]) - yScale(AQIStandard[i+1])
}
},
"width":cellSize
})
.attr("class","legend")
.style("fill", function(d,i){
return d;
});
// labels
legends.enter()
.append("text")
.attr({
"y": function(d,i){
return yScale(AQIStandard[i])
},
"text-anchor":"end",
"dy": function(d,i){
if(i == (AQIStandard.length-1)){
return -yScale(AQIStandard[i])/2
}else {
return -(yScale(AQIStandard[i]) - yScale(AQIStandard[i+1]))/2
}
},
"dx":25
})
.text(function(d,i){
return metaData[i];
})
/**
* add sliders in svgAir to response to scatterplots in svgHour
*/
/* standards for each substance in the air */
var so2 = [0,50,150,475,800,1600,2100,2620]; // so2 average in last 24 hours
var no2 = [0,40,80,180,280,565,750,940]; // no2 average in last 24 hours
var pm10 = [0,50,150,250,350,420,500,600]; // pm10 average in last 24 hours
var co = [0,2,4,14,24,36,48,60]; // co average in last 24 hours
var o3 = [0,160,200,300,400,800,1000,1200]; // calculation for o3 is average in last 1 hour
var pm25 = [0,35,75,115,150,250,350,500]; // pm2.5 average in last 24 hours
// add a chart for air detail
// the standards for each substance are different from each other
var sliderScale = d3.scale.linear()
.range(d3.range(0, cellSize*9, cellSize));
/**
* scales for each substance
*/
var so2Scale = colorScale
.domain(so2)
.copy();
var slider_so2 = sliderScale
.domain(so2)
.copy();
var no2Scale = colorScale
.domain(no2)
.copy();
var slider_no2 = sliderScale
.domain(no2)
.copy();
var pm10Scale = colorScale
.domain(pm10)
.copy();
var slider_pm10 = sliderScale
.domain(pm10)
.copy();
var coScale = colorScale
.domain(co)
.copy();
var slider_co = sliderScale
.domain(co)
.copy();
var o3Scale = colorScale
.domain(o3)
.copy();
var slider_o3 = sliderScale
.domain(o3)
.copy();
var pm25Scale = colorScale
.domain(pm25)
.copy();
var slider_pm25 = sliderScale
.domain(pm25)
.copy();
/* append each air substance slider to svgAir*/
var so2Slider = svgAir.append("g")
.attr("transform","translate(50,30)")
.attr("class","slider so2")
var no2Slider = svgAir.append("g")
.attr("transform","translate(50,60)")
.attr("class","slider no2")
var pm10Slider = svgAir.append("g")
.attr("transform","translate(50,90)")
.attr("class","slider pm10")
var coSlider = svgAir.append("g")
.attr("transform","translate(50,120)")
.attr("class","slider co")
var o3Slider = svgAir.append("g")
.attr("transform","translate(50,150)")
.attr("class","slider o3")
var pm25Slider = svgAir.append("g")
.attr("transform","translate(50,180)")
.attr("class","slider pm25")
/**
* add and initiate indicator for each slider
*/
// TODO:reuse
// so2
so2Slider.selectAll(".slider-legend")
.data(so2Scale.range())
.enter()
.append("rect")
.attr({
"x": function(d,i){
return i * cellSize
},
"y": 0,
"width":cellSize,
"height":cellSize
})
.attr("class","slider-legend")
.style("fill", function(d,i){
return d;
});
so2Slider.append("text")
.attr({
"x":-15,
"text-anchor":"end",
"dy":15
})
.text("so2")
var sliderIndicator_so2 = so2Slider.append("g")
.attr("class","slider-indicator")
.append("path")
.attr("d", d3.svg.symbol().type("triangle-down"))
// no2
no2Slider.selectAll(".slider-legend")
.data(no2Scale.range())
.enter()
.append("rect")
.attr({
"x": function(d,i){
return i * cellSize
},
"y": 0,
"width":cellSize,
"height":cellSize
})
.attr("class","slider-legend")
.style("fill", function(d,i){
return d;
});
no2Slider.append("text")
.attr({
"x":-15,
"text-anchor":"end",
"dy":15
})
.text("no2")
var sliderIndicator_no2 = no2Slider.append("g")
.attr("class","slider-indicator")
.attr("transform","translate(0,-5)")
.append("path")
.attr("d", d3.svg.symbol().type("triangle-down"))
//pm10
pm10Slider.selectAll(".slider-legend")
.data(pm10Scale.range())
.enter()
.append("rect")
.attr({
"x": function(d,i){
return i * cellSize
},
"y": 0,
"width":cellSize,
"height":cellSize
})
.attr("class","slider-legend")
.style("fill", function(d,i){
return d;
});
pm10Slider.append("text")
.attr({
"x":-15,
"text-anchor":"end",
"dy":15
})
.text("pm10")
var sliderIndicator_pm10 = pm10Slider.append("g")
.attr("class","slider-indicator")
.attr("transform","translate(0,-5)")
.append("path")
.attr("d", d3.svg.symbol().type("triangle-down"))
//co
coSlider.selectAll(".slider-legend")
.data(coScale.range())
.enter()
.append("rect")
.attr({
"x": function(d,i){
return i * cellSize
},
"y": 0,
"width":cellSize,
"height":cellSize
})
.attr("class","slider-legend")
.style("fill", function(d,i){
return d;
});
coSlider.append("text")
.attr({
"x":-15,
"text-anchor":"end",
"dy":15
})
.text("co")
var sliderIndicator_co = coSlider.append("g")
.attr("class","slider-indicator")
.attr("transform","translate(0,-5)")
.append("path")
.attr("d", d3.svg.symbol().type("triangle-down"))
//o3
o3Slider.selectAll(".slider-legend")
.data(o3Scale.range())
.enter()
.append("rect")
.attr({
"x": function(d,i){
return i * cellSize
},
"y": 0,
"width":cellSize,
"height":cellSize
})
.attr("class","slider-legend")
.style("fill", function(d,i){
return d;
});
o3Slider.append("text")
.attr({
"x":-15,
"text-anchor":"end",
"dy":15
})
.text("o3")
var sliderIndicator_o3 = o3Slider.append("g")
.attr("class","slider-indicator")
.attr("transform","translate(0,-5)")
.append("path")
.attr("d", d3.svg.symbol().type("triangle-down"))
//pm25
pm25Slider.selectAll(".slider-legend")
.data(pm25Scale.range())
.enter()
.append("rect")
.attr({
"x": function(d,i){
return i * cellSize
},
"y": 0,
"width":cellSize,
"height":cellSize
})
.attr("class","slider-legend")
.style("fill", function(d,i){
return d;
});
pm25Slider.append("text")
.attr({
"x":-15,
"text-anchor":"end",
"dy":15
})
.text("pm2.5")
var sliderIndicator_pm25 = pm25Slider.append("g")
.attr("class","slider-indicator")
.attr("transform","translate(0,-5)")
.append("path")
.attr("d", d3.svg.symbol().type("triangle-down"))
/**
* event handlers
*/
function showHour(newData){
line.transition()
.duration(1000)
.attr("d", lineGenerator(newData.values));
// dots transition
/* handle update, enter, exit selection*/
var selectedHour = svgHour.selectAll(".dot")
.data(newData.values, function(d){
return d.TIME;
});
selectedHour.enter()
.append("circle")
.attr({
"cx": function(d){
return xScale(hourParser(d.TIME))
},
"cy": function(d){
return yScale(+d.AQI);
},
"r":6
})
.attr("class","dot");
selectedHour.transition()
.duration(1000)
.delay(200)
.attr({
"cx": function(d){
return xScale(hourParser(d.TIME))
},
"cy": function(d){
return yScale(+d.AQI);
}
});
selectedHour.exit().transition().remove();
};
function showDayTip(d){
var xPos, yPos;
if(year(d.key) == "2014"){
xPos = (week(d.key) - week(new Date(2014,3,13))) * cellSize;
}else {
xPos = ( (52 - week(new Date(2014,3,13))) + Number(week(d.key)) ) * cellSize;
}
yPos = day(d.key) * cellSize;
d3.select(".day-wrapper").append("div")
.attr("class","day-tip")
.style({
"top": yPos + d3.select(".day-wrapper").node().getBoundingClientRect().top - 50 + "px",
"left": xPos + 25 + "px"
})
.html(format(d.key) + " average AQI is " + d.average);
}
function removeDayTip(){
d3.select(".day-wrapper").select(".day-tip").remove();
}
// hover on dots to toggle indication lines
function dotEnter(data){
svgHour.append("line")
.attr({
"x1":0,
"x2":function(d){
return xScale(hourParser(data.TIME));
},
"y1":function(d){
return yScale(+data.AQI);
},
"y2":function(d){
return yScale(+data.AQI);
}
})
.attr("class","indicator indicator-x");
svgHour.append("line")
.attr({
"x1":function(d){
return xScale(hourParser(data.TIME));
},
"x2":function(d){
return xScale(hourParser(data.TIME));
},
"y1": hourHeight,
"y2":function(d){
return yScale(+data.AQI);
}
})
.attr("class","indicator indicator-y");
}
function dotLeave(data){
svgHour.selectAll(".indicator").remove();
}
// click on dots to display air details
function dotClick(data){
so2Slider.select(".slider-indicator")
.transition()
.attr("transform", "translate("+slider_so2(+data.SO2_24h)+",-5)")
no2Slider.select(".slider-indicator")
.transition()
.attr("transform", "translate("+slider_no2(+data.NO_24h)+",-5)")
pm10Slider.select(".slider-indicator")
.transition()
.attr("transform", "translate("+slider_pm10(+data.pm10_24h)+",-5)")
coSlider.select(".slider-indicator")
.transition()
.attr("transform", "translate("+slider_co(+data.CO_24h)+",-5)")
o3Slider.select(".slider-indicator")
.transition()
.attr("transform", "translate("+slider_o3(+data.O3)+",-5)")
pm25Slider.select(".slider-indicator")
.transition()
.attr("transform", "translate("+slider_pm25(+data["PM2.5_24h"])+",-5)")
}
})
};
</script>
</body>
</html>
We can't make this file beautiful and searchable because it's too large.
DATE,TIME,AQI,PM2.5,PM2.5_24h,PM10,pm10_24h,CO,CO_24h,NO2,NO_24h,O3,O3_24h,O3_8h,O3_8h_24h,SO2,SO2_24h,Real_AQI
2014-04-14,00:00:00,269,219,164,268,198,2,1.476,142,79,5,235,97,203,26,28,0
2014-04-14,01:00:00,279,229,171,250,203,2.3,1.547,117,82,10,235,79,203,28,29,0
2014-04-14,02:00:00,258,208,173,231,205,2.3,1.589,98,83,13,235,68,203,28,29,0
2014-04-14,03:00:00,263,213,175,254,207,2.3,1.626,112,84,2,235,37,203,24,28,0
2014-04-14,04:00:00,272,222,180,270,214,2.4,1.674,106,86,2,235,13,203,21,28,0
2014-04-14,05:00:00,279,229,185,261,220,2.2,1.7,96,85,2,235,12,203,21,28,0
2014-04-14,06:00:00,0,0,187,0,224,0,1.694,0,85,0,235,12,203,0,29,0
2014-04-14,07:00:00,246,196,189,227,225,1.8,1.694,80,84,2,235,5,203,18,29,0
2014-04-14,08:00:00,287,237,194,254,227,1.9,1.711,81,84,4,235,5,203,29,30,0
2014-04-14,09:00:00,283,233,198,269,228,2,1.728,79,83,18,235,6,203,45,31,0
2014-04-14,10:00:00,322,272,202,317,233,2.3,1.758,96,83,35,235,9,203,58,32,0
2014-04-14,11:00:00,333,283,206,303,233,2.3,1.795,91,83,70,235,19,203,60,32,0
2014-04-14,12:00:00,344,294,211,321,238,2.4,1.842,96,83,100,235,33,203,64,33,0
2014-04-14,13:00:00,336,286,216,302,243,2.2,1.889,92,84,156,235,55,203,55,34,0
2014-04-14,14:00:00,285,235,218,263,247,1.9,1.926,75,86,198,235,73,203,46,35,0
2014-04-14,15:00:00,266,216,220,240,249,1.9,1.968,54,87,228,232,101,203,43,35,0
2014-04-14,16:00:00,268,218,223,0,250,1.6,1.995,46,88,219,228,128,203,44,36,0
2014-04-14,17:00:00,213,163,220,192,250,1.6,1.975,41,86,205,228,151,203,44,37,0
2014-04-14,18:00:00,221,171,218,226,249,1.8,1.967,50,84,197,228,172,203,46,37,0
2014-04-14,19:00:00,243,193,221,234,253,1.8,2,60,85,190,228,187,203,42,38,0
2014-04-14,20:00:00,247,197,224,240,257,1.8,2.029,69,86,151,228,193,203,33,38,0
2014-04-14,21:00:00,258,208,223,268,257,2.1,2.032,96,86,96,228,186,200,33,38,0
2014-04-14,22:00:00,244,194,222,0,251,1.7,2.017,72,86,92,228,172,193,38,38,0
2014-04-14,23:00:00,112,84,217,0,251,1,1.983,49,83,88,228,155,193,24,38,0
2014-04-15,00:00:00,73,53,210,58,249,0.8,1.93,48,78,82,228,138,193,18,37,0
2014-04-15,01:00:00,62,44,202,65,240,0.7,1.861,42,75,87,228,123,193,14,37,0
2014-04-15,02:00:00,59,42,195,60,231,0.8,1.796,43,73,79,228,108,193,12,36,0
2014-04-15,03:00:00,60,41,187,70,222,0.8,1.73,64,71,54,228,91,193,11,36,0
2014-04-15,04:00:00,0,0,186,0,219,0,1.7,0,69,0,228,83,193,0,36,0
2014-04-15,05:00:00,74,54,178,95,211,0.9,1.641,109,70,2,228,69,193,8,36,0
2014-04-15,06:00:00,74,54,173,95,205,0.9,1.609,109,71,2,228,56,193,8,34,0
2014-04-15,07:00:00,74,54,166,95,198,0.9,1.57,109,73,2,228,44,193,8,34,0
2014-04-15,08:00:00,74,54,158,95,190,0.9,1.526,109,74,2,228,33,193,8,33,0
2014-04-15,09:00:00,0,0,155,0,186,0,1.505,0,74,0,228,24,193,0,33,0
2014-04-15,10:00:00,137,104,147,142,177,1.5,1.468,61,72,72,228,22,193,45,32,0
2014-04-15,11:00:00,133,101,139,113,167,1.2,1.418,44,70,106,228,31,193,36,31,0
2014-04-15,12:00:00,97,72,129,96,155,1.1,1.359,32,67,130,228,45,193,29,29,0
2014-04-15,13:00:00,128,97,120,0,143,1.1,1.309,48,65,113,228,61,193,27,28,0
2014-04-15,14:00:00,107,46,112,163,142,0.7,1.255,54,64,56,228,69,193,24,27,0
2014-04-15,16:00:00,104,43,96,157,139,0.6,1.15,47,64,66,205,88,193,20,25,0
2014-04-15,17:00:00,94,30,90,137,136,0.6,1.105,51,64,53,197,83,193,18,24,0
2014-04-15,18:00:00,84,24,83,118,131,0.7,1.055,49,64,56,190,81,193,15,22,0
2014-04-15,19:00:00,77,29,76,104,124,0.7,1.005,63,64,42,151,73,193,10,21,0
2014-04-15,20:00:00,83,37,68,116,117,1,0.968,78,65,26,130,60,186,12,20,0
2014-04-15,21:00:00,89,42,61,127,110,1.1,0.923,77,64,20,130,49,172,12,19,0
2014-04-15,22:00:00,74,36,54,98,109,0.8,0.882,72,64,21,130,44,155,11,18,0
2014-04-15,23:00:00,59,30,51,67,107,0.7,0.868,68,65,23,130,38,138,10,17,0
2014-04-16,00:00:00,65,26,50,79,108,0.7,0.864,60,65,30,130,34,123,9,17,0
2014-04-16,01:00:00,58,28,49,66,108,0.7,0.864,61,66,31,130,31,108,8,16,0
2014-04-16,02:00:00,65,28,49,79,109,0.6,0.855,64,67,26,130,27,91,8,16,0
2014-04-16,03:00:00,75,29,48,100,111,0.5,0.841,78,68,9,130,23,88,7,16,0
2014-04-16,04:00:00,90,37,48,130,112,0.7,0.835,0,68,2,130,20,88,8,16,0
2014-04-16,05:00:00,68,41,47,85,111,0.7,0.826,82,66,2,130,18,88,8,16,0
2014-04-16,06:00:00,74,40,46,98,111,0.7,0.817,82,65,2,130,16,88,9,16,0
2014-04-16,07:00:00,52,36,46,52,109,0.6,0.804,75,64,7,130,14,88,8,16,0
2014-04-16,08:00:00,135,48,45,219,115,0.6,0.791,65,62,19,130,12,88,10,16,0
2014-04-16,09:00:00,75,37,45,99,114,0.7,0.788,70,62,19,130,11,88,15,16,0
2014-04-16,10:00:00,74,44,43,97,112,0.6,0.75,63,62,44,130,13,88,17,15,0
2014-04-16,12:00:00,86,41,39,122,112,0.5,0.7,54,63,64,113,28,88,13,13,0
2014-04-16,13:00:00,75,51,37,100,112,0.6,0.679,62,64,62,70,35,88,15,13,0
2014-04-16,14:00:00,71,50,37,91,109,0.6,0.675,57,64,75,75,44,88,15,12,0
2014-04-16,15:00:00,90,38,37,130,106,0.5,0.671,56,65,85,85,54,88,15,12,0
2014-04-16,16:00:00,93,49,37,135,106,0.5,0.667,58,65,92,92,63,83,13,12,0
2014-04-16,17:00:00,78,42,38,106,104,0.4,0.658,46,65,118,118,75,81,12,12,0
2014-04-16,18:00:00,91,55,39,132,105,0.5,0.65,60,65,102,118,83,83,15,12,0
2014-04-16,19:00:00,89,61,40,127,106,0.6,0.646,63,65,88,118,86,86,16,12,0
2014-04-16,20:00:00,106,58,41,162,108,0.8,0.638,81,65,50,118,84,86,17,12,0
2014-04-16,21:00:00,99,70,42,147,108,1.1,0.638,120,67,8,118,77,86,17,12,0
2014-04-16,22:00:00,123,75,44,196,113,1.3,0.658,126,70,2,118,68,86,16,12,0
2014-04-16,23:00:00,115,84,46,180,117,1.4,0.688,118,72,2,118,58,86,20,13,0
2014-04-17,00:00:00,117,88,49,171,121,1.4,0.717,112,74,3,118,47,86,30,14,0
2014-04-17,01:00:00,129,98,52,155,125,1.4,0.746,119,77,2,118,32,86,40,15,0
2014-04-17,02:00:00,104,78,54,132,127,1.2,0.771,118,79,2,118,20,86,38,16,0
2014-04-17,03:00:00,112,84,56,164,130,1.3,0.804,124,81,2,118,9,86,53,18,0
2014-04-17,04:00:00,144,100,59,237,134,1.3,0.829,120,83,2,118,3,86,51,20,0
2014-04-17,05:00:00,138,102,61,225,140,1.6,0.867,111,84,2,118,2,86,23,21,0
2014-04-17,06:00:00,130,96,63,210,145,1.4,0.896,94,84,2,118,2,86,10,21,0
2014-04-17,07:00:00,118,89,66,126,148,1.4,0.929,78,84,2,118,2,86,5,21,0
2014-04-17,08:00:00,119,90,67,108,143,1.4,0.962,75,85,2,118,2,86,4,20,0
2014-04-17,09:00:00,108,81,69,87,143,1.8,1.008,94,86,2,118,2,86,7,20,0
2014-04-17,10:00:00,129,98,72,0,141,1.4,1.042,78,86,27,118,5,86,12,20,0
2014-04-17,11:00:00,119,90,74,0,144,1.3,1.071,62,87,43,118,10,86,18,20,0
2014-04-17,12:00:00,118,89,76,0,145,1.5,1.112,61,87,49,118,16,86,24,20,0
2014-04-17,13:00:00,98,73,77,91,148,1.5,1.15,47,87,69,118,25,86,39,21,0
2014-04-17,14:00:00,104,78,78,99,149,1.3,1.179,35,86,93,118,36,86,40,22,0
2014-04-17,15:00:00,107,80,80,95,147,1.2,1.208,34,85,107,118,49,86,38,23,0
2014-04-17,16:00:00,109,82,81,97,145,1.2,1.238,37,84,115,118,63,86,36,24,0
2014-04-17,17:00:00,145,111,84,0,145,1.2,1.271,50,84,110,115,77,86,30,25,0
2014-04-17,18:00:00,127,96,85,112,146,1.3,1.304,54,84,109,115,87,87,30,26,0
2014-04-17,19:00:00,133,101,87,110,145,1.2,1.329,48,83,113,115,96,96,27,26,0
2014-04-17,20:00:00,162,123,90,0,142,1.2,1.346,50,82,96,115,102,102,21,26,0
2014-04-17,21:00:00,160,122,92,0,140,1.2,1.35,43,79,95,115,105,105,19,26,0
2014-04-17,22:00:00,132,100,93,122,140,1.3,1.35,61,76,62,115,101,105,19,26,0
2014-04-17,23:00:00,148,113,94,125,137,2.5,1.396,76,74,27,115,91,105,32,27,0
2014-04-18,00:00:00,193,145,97,155,136,2.3,1.433,88,73,6,115,77,105,26,27,0
2014-04-18,01:00:00,165,125,98,136,135,1.9,1.454,72,71,8,115,65,105,23,26,0
2014-04-18,02:00:00,156,119,99,126,135,1.7,1.475,76,70,2,115,51,105,17,25,0
2014-04-18,03:00:00,152,116,101,135,133,1.5,1.483,70,67,2,115,37,105,14,24,0
2014-04-18,04:00:00,156,119,102,127,127,1.3,1.483,68,65,2,115,26,105,11,22,0
2014-04-18,05:00:00,160,122,102,0,121,1.2,1.467,67,63,2,115,14,105,10,21,0
2014-04-18,06:00:00,163,124,104,0,115,1.3,1.462,61,62,2,115,6,105,8,21,0
2014-04-18,07:00:00,143,109,104,134,116,1.3,1.458,57,61,2,115,3,105,8,21,0
2014-04-18,08:00:00,158,120,106,150,119,1.3,1.454,58,60,2,115,3,105,10,22,0
2014-04-18,09:00:00,176,133,108,156,123,1.3,1.433,64,59,8,115,3,105,17,22,0
2014-04-18,10:00:00,219,169,111,187,127,1.4,1.433,70,59,18,115,5,105,24,23,0
2014-04-18,11:00:00,233,183,115,201,131,1.5,1.442,66,59,47,115,10,105,30,23,0
2014-04-18,12:00:00,228,178,118,0,132,1.4,1.437,48,58,97,115,22,105,30,23,0
2014-04-18,13:00:00,228,178,123,0,134,1.4,1.433,48,58,97,115,34,105,30,23,0
2014-04-18,14:00:00,228,178,127,0,137,1.4,1.438,48,59,97,115,46,105,30,23,0
2014-04-18,15:00:00,202,152,130,0,137,1.2,1.438,24,59,150,150,65,105,17,22,0
2014-04-18,18:00:00,190,143,136,0,141,1.3,1.442,32,56,131,157,116,116,16,20,0
2014-04-18,19:00:00,159,121,137,0,139,1.6,1.458,78,57,59,157,117,117,27,20,0
2014-04-18,20:00:00,110,83,135,102,144,1.2,1.458,74,58,61,157,113,117,27,20,0
2014-04-18,21:00:00,102,76,134,93,140,0.9,1.446,56,59,74,157,110,117,21,20,0
2014-04-18,22:00:00,90,67,132,74,137,0.9,1.429,52,59,75,157,107,117,20,20,0
2014-04-18,23:00:00,94,70,130,98,135,0.7,1.354,70,58,52,157,95,117,19,19,0
2014-04-19,00:00:00,100,75,127,103,132,0.9,1.296,77,58,38,157,80,117,21,19,0
2014-04-19,01:00:00,104,78,125,116,130,0.9,1.254,95,59,15,157,63,117,22,19,0
2014-04-19,02:00:00,100,75,124,114,130,1,1.225,106,60,3,157,47,117,23,19,0
2014-04-19,03:00:00,102,76,122,106,128,0.9,1.2,97,61,2,157,40,117,20,20,0
2014-04-19,04:00:00,89,66,120,99,126,0.9,1.183,0,61,2,157,33,117,19,20,0
2014-04-19,05:00:00,94,70,118,82,123,0.6,1.158,99,62,2,157,24,117,15,20,0
2014-04-19,06:00:00,77,56,115,89,121,0.6,1.129,98,64,2,157,15,117,16,21,0
2014-04-19,07:00:00,59,42,112,51,116,0.7,1.104,92,65,10,157,9,117,23,21,0
2014-04-19,08:00:00,92,68,110,93,113,0.9,1.087,98,67,9,157,6,117,29,22,0
2014-04-19,09:00:00,92,68,107,73,108,1.1,1.079,95,68,18,157,6,117,30,22,0
2014-04-19,10:00:00,82,60,103,71,101,1.4,1.079,76,69,41,157,11,117,38,23,0
2014-04-19,11:00:00,70,51,97,66,93,1.2,1.067,62,69,58,157,18,117,38,23,0
2014-04-19,13:00:00,84,45,85,118,91,0.7,1.013,49,69,74,157,36,117,21,23,0
2014-04-19,14:00:00,64,46,80,61,90,0.5,0.975,36,68,87,157,46,117,13,22,0
2014-04-19,15:00:00,60,43,75,47,88,0.5,0.946,39,69,86,157,56,117,12,22,0
2014-04-19,16:00:00,72,52,72,62,84,0.6,0.917,43,69,82,148,65,117,13,22,0
2014-04-19,17:00:00,57,40,67,53,82,0.6,0.892,41,70,86,131,73,117,15,22,0
2014-04-19,18:00:00,68,49,63,0,79,0.4,0.854,40,71,91,91,80,117,12,22,0
2014-04-19,19:00:00,69,50,60,57,81,0.5,0.808,48,69,82,91,83,113,10,21,0
2014-04-19,20:00:00,58,41,58,54,79,0.6,0.783,58,69,65,91,82,110,9,20,0
2014-04-19,21:00:00,62,44,57,52,77,0.6,0.771,60,69,57,91,80,107,8,20,0
2014-04-19,22:00:00,67,48,56,60,77,0.7,0.763,74,70,40,91,74,95,9,19,0
2014-04-19,23:00:00,77,56,55,66,75,0.7,0.763,66,69,43,91,68,83,10,19,0
2014-04-20,00:00:00,105,79,56,79,74,0.9,0.762,90,70,14,91,60,83,8,18,0
2014-04-20,01:00:00,122,92,56,115,74,1.3,0.779,100,70,2,91,49,83,7,18,0
2014-04-20,02:00:00,135,103,57,124,75,1.3,0.792,100,70,2,91,38,83,7,17,0
2014-04-20,03:00:00,156,119,59,145,76,1.3,0.808,98,70,2,91,28,83,7,17,0
2014-04-20,04:00:00,163,124,62,130,78,1.3,0.825,92,71,2,91,20,83,7,16,0
2014-04-20,05:00:00,128,97,63,114,79,1.3,0.854,89,71,2,91,13,83,6,16,0
2014-04-20,06:00:00,145,111,65,126,81,1.4,0.888,89,70,2,91,9,83,6,15,0
2014-04-20,07:00:00,127,96,67,0,81,0.9,0.896,77,70,2,91,4,83,6,15,0
2014-04-20,08:00:00,99,74,68,77,81,0.8,0.892,66,68,12,91,3,83,9,14,0
2014-04-20,09:00:00,100,75,68,0,80,0.7,0.875,45,66,40,91,8,83,14,13,0
2014-04-20,10:00:00,70,51,67,56,81,0.6,0.842,50,65,38,91,13,83,17,12,0
2014-04-20,11:00:00,49,34,67,0,78,0.4,0.808,37,64,50,91,19,83,16,11,0
2014-04-20,12:00:00,23,3,65,5,80,0.2,0.783,20,63,71,91,27,83,8,10,0
2014-04-20,13:00:00,24,3,64,13,75,0.2,0.763,22,62,76,91,36,83,6,10,0
2014-04-20,14:00:00,29,16,62,0,72,0.2,0.75,14,61,91,91,48,83,5,9,0
2014-04-20,15:00:00,41,18,61,41,75,0.2,0.737,25,60,87,91,58,83,8,9,0
2014-04-20,16:00:00,59,30,61,68,76,0.3,0.725,32,60,110,110,70,83,7,9,0
2014-04-20,17:00:00,65,47,61,60,76,0.3,0.713,30,59,131,131,82,83,7,9,0
2014-04-20,18:00:00,69,50,61,76,76,0.3,0.708,31,59,144,144,95,95,8,9,0
2014-04-20,19:00:00,69,50,61,76,77,0.4,0.704,45,59,116,144,103,103,8,8,0
2014-04-20,20:00:00,77,56,61,81,78,0.5,0.7,46,58,106,144,108,108,9,8,0
2014-04-20,21:00:00,92,68,62,97,80,0.6,0.7,59,58,86,144,109,109,10,9,0
2014-04-20,22:00:00,88,65,63,77,81,0.6,0.696,62,58,75,144,107,109,11,9,0
2014-04-20,23:00:00,87,64,64,107,83,0.7,0.696,70,58,56,144,103,109,10,9,0
2014-04-21,00:00:00,97,72,63,100,84,1,0.7,112,59,14,144,91,109,9,9,0
2014-04-21,01:00:00,100,75,63,92,83,1.1,0.692,119,60,2,144,75,109,8,9,0
2014-04-21,02:00:00,109,82,62,124,83,1.1,0.683,118,60,2,144,57,109,8,9,0
2014-04-21,03:00:00,109,82,60,124,82,1.1,0.675,118,61,2,144,43,109,8,9,0
2014-04-21,04:00:00,109,82,58,124,82,1.1,0.667,118,62,2,144,30,109,8,9,0
2014-04-21,05:00:00,109,82,58,124,82,1.1,0.658,118,63,2,144,19,109,8,9,0
2014-04-21,06:00:00,84,62,56,68,80,0.9,0.638,94,64,2,144,10,109,8,9,0
2014-04-21,07:00:00,72,52,54,78,79,0.6,0.625,84,64,2,144,4,109,9,9,0
2014-04-21,08:00:00,59,42,53,55,78,0.6,0.617,72,64,8,144,3,109,10,9,0
2014-04-21,09:00:00,64,46,51,73,78,0.5,0.608,65,65,20,144,5,109,10,9,0
2014-04-21,10:00:00,65,34,51,79,79,0.4,0.6,52,65,41,144,10,109,6,9,0
2014-04-21,11:00:00,42,26,50,42,78,0.3,0.596,39,65,67,144,18,109,4,8,0
2014-04-21,13:00:00,35,12,51,30,79,0.1,0.592,14,65,110,144,43,109,5,8,0
2014-04-21,14:00:00,52,17,51,53,78,0.2,0.592,13,65,111,144,57,109,6,8,0
2014-04-21,15:00:00,35,9,51,19,77,0.2,0.592,18,64,110,144,70,109,7,8,0
2014-04-21,16:00:00,48,33,51,43,76,0.2,0.587,26,64,122,144,85,109,5,8,0
2014-04-21,17:00:00,54,21,50,57,76,0.2,0.583,30,64,126,144,98,109,5,8,0
2014-04-21,18:00:00,48,33,49,47,74,0.2,0.579,30,64,123,126,108,109,4,7,0
2014-04-21,19:00:00,51,30,48,51,73,0.2,0.571,35,64,113,126,114,114,4,7,0
2014-04-21,20:00:00,66,35,47,82,73,0.4,0.567,56,64,92,126,113,114,5,7,0
2014-04-21,21:00:00,70,45,46,90,73,0.6,0.567,66,64,82,126,110,114,6,7,0
2014-04-21,22:00:00,81,57,46,112,75,0.6,0.567,67,65,80,126,106,114,8,7,0
2014-04-21,23:00:00,82,60,46,95,74,0.7,0.567,76,65,63,126,100,114,9,7,0
2014-04-22,00:00:00,101,69,46,151,76,0.8,0.558,78,64,51,126,91,114,11,7,0
2014-04-22,01:00:00,132,100,47,169,79,0.9,0.55,71,62,47,126,81,114,14,7,0
2014-04-22,02:00:00,139,106,48,150,80,1,0.546,100,61,12,126,68,114,7,7,0
2014-04-22,03:00:00,137,104,49,147,81,1.1,0.546,107,60,2,126,54,114,5,7,0
2014-04-22,04:00:00,128,97,49,0,79,0.9,0.538,0,58,2,126,42,114,7,7,0
2014-04-22,05:00:00,89,66,49,67,77,0.7,0.521,102,57,2,126,32,114,8,7,0
2014-04-22,06:00:00,79,58,48,92,78,0.7,0.513,96,57,2,126,23,114,6,7,0
2014-04-22,07:00:00,63,45,48,55,77,0.6,0.513,89,57,3,126,15,114,7,7,0
2014-04-22,08:00:00,61,40,48,72,78,0.6,0.513,82,58,8,126,10,114,8,7,0
2014-04-22,09:00:00,69,37,48,87,78,0.5,0.513,0,58,27,126,7,114,6,7,0
2014-04-22,10:00:00,69,26,47,87,79,0.4,0.513,59,58,52,126,12,114,3,6,0
2014-04-22,11:00:00,61,34,48,72,80,0.4,0.517,49,58,84,126,23,114,3,6,0
2014-04-22,12:00:00,72,50,49,94,84,0.5,0.529,63,60,101,126,35,114,6,6,0
2014-04-22,13:00:00,94,57,51,137,88,0.4,0.542,60,62,122,126,50,114,6,7,0
2014-04-22,14:00:00,92,68,53,90,90,0.3,0.546,38,64,152,152,69,114,5,6,0
2014-04-22,15:00:00,69,50,55,71,92,0.2,0.546,20,64,162,162,89,114,4,6,0
2014-04-22,16:00:00,62,44,56,73,93,0.3,0.55,20,63,167,167,108,114,6,6,0
2014-04-22,17:00:00,82,60,57,88,95,0.3,0.554,22,63,164,167,126,126,8,7,0
2014-04-22,18:00:00,83,61,58,105,97,0.4,0.563,28,63,155,167,138,138,11,7,0
2014-04-22,19:00:00,86,58,59,121,100,0.5,0.575,34,63,145,167,146,146,19,7,0
2014-04-22,20:00:00,96,64,61,141,103,0.6,0.583,45,62,130,167,150,150,26,8,0
2014-04-22,21:00:00,100,75,62,104,103,0.7,0.588,48,62,118,167,149,150,26,9,0
2014-04-22,22:00:00,85,63,62,91,103,0.7,0.592,59,61,98,167,142,150,21,10,0
2014-04-22,23:00:00,91,66,62,131,104,0.8,0.596,52,60,98,167,134,150,21,10,0
2014-04-23,00:00:00,103,77,63,143,104,0.9,0.6,48,59,90,167,125,150,22,11,0
2014-04-23,01:00:00,107,80,62,132,102,0.9,0.6,43,57,85,167,115,150,22,11,0
2014-04-23,02:00:00,112,84,61,146,102,0.8,0.592,34,54,87,167,106,150,19,11,0
2014-04-23,03:00:00,119,90,60,115,101,0.9,0.583,36,51,80,167,98,150,18,12,0
2014-04-23,04:00:00,124,94,60,116,101,0.9,0.583,46,51,60,167,90,150,17,12,0
2014-04-23,05:00:00,128,97,62,117,103,0.9,0.592,51,49,47,167,81,150,17,13,0
2014-04-23,06:00:00,137,104,64,116,104,0.9,0.6,56,47,37,167,73,150,14,13,0
2014-04-23,07:00:00,147,112,66,135,108,0.9,0.613,63,46,27,167,64,150,12,13,0
2014-04-23,08:00:00,180,136,70,156,111,1,0.629,73,46,20,167,55,150,17,14,0
2014-04-23,09:00:00,202,152,75,176,115,1,0.65,63,46,34,167,49,150,24,14,0
2014-04-23,10:00:00,216,166,81,196,119,1,0.675,67,47,42,167,43,150,27,15,0
2014-04-23,11:00:00,228,178,87,219,126,1,0.7,61,47,63,167,41,150,36,17,0
2014-04-23,13:00:00,210,160,97,165,131,1.1,0.754,33,46,121,167,54,150,36,20,0
2014-04-23,14:00:00,210,160,101,165,134,1.2,0.792,28,45,139,167,67,150,37,21,0
2014-04-23,15:00:00,209,159,105,0,137,1.1,0.829,27,45,166,167,85,150,41,23,0
2014-04-23,16:00:00,195,146,109,0,138,1.1,0.863,31,46,181,181,105,150,44,24,0
2014-04-23,17:00:00,198,148,113,163,143,1.1,0.896,39,47,164,181,121,150,44,26,0
2014-04-23,18:00:00,183,138,116,141,144,1,0.921,44,47,152,181,135,150,39,27,0
2014-04-23,19:00:00,139,106,118,133,145,0.8,0.933,39,48,143,181,145,150,24,27,0
2014-04-23,20:00:00,124,94,120,152,146,0.8,0.942,39,47,124,181,149,149,16,27,0
2014-04-23,21:00:00,94,70,119,0,143,0.7,0.942,43,47,111,181,148,149,12,26,0
2014-04-23,22:00:00,105,79,120,95,148,0.8,0.946,54,47,99,181,143,149,11,26,0
2014-04-23,23:00:00,107,80,121,92,146,0.8,0.946,54,47,93,181,133,149,11,25,0
2014-04-24,00:00:00,115,87,121,90,143,0.7,0.938,40,47,99,181,123,149,10,25,0
2014-04-24,01:00:00,109,82,121,87,141,0.7,0.929,35,46,101,181,115,149,11,24,0
2014-04-24,02:00:00,89,66,120,76,138,0.7,0.925,34,46,98,181,109,149,11,24,0
2014-04-24,03:00:00,90,67,119,80,136,0.8,0.921,38,46,89,181,102,149,10,24,0
2014-04-24,04:00:00,95,71,118,83,135,0.8,0.917,47,46,76,181,96,149,10,23,0
2014-04-24,05:00:00,102,76,118,81,133,0.8,0.913,42,46,79,181,92,149,12,23,0
2014-04-24,06:00:00,105,79,117,94,132,0.8,0.908,42,45,79,181,89,149,14,23,0
2014-04-24,07:00:00,139,106,116,112,131,0.9,0.908,51,45,68,181,86,149,16,23,0
2014-04-24,08:00:00,123,93,115,101,128,1,0.908,64,45,54,181,81,149,20,23,0
2014-04-24,09:00:00,150,115,113,119,125,0.9,0.904,66,45,50,181,74,149,26,24,0
2014-04-24,10:00:00,156,119,111,119,122,0.9,0.9,70,45,50,181,68,149,28,24,0
2014-04-24,11:00:00,175,132,109,152,119,0.9,0.896,66,45,55,181,64,149,38,24,0
2014-04-24,13:00:00,185,139,106,156,116,0.9,0.879,40,45,108,181,68,149,38,23,0
2014-04-24,14:00:00,199,149,106,161,116,1,0.871,32,46,134,181,75,149,39,23,0
2014-04-24,14:00:00,199,149,106,161,116,1,0.871,32,46,134,181,75,149,39,23,0
2014-04-24,15:00:00,163,124,104,131,116,0.9,0.862,26,46,157,181,86,149,35,23,0
2014-04-24,15:00:00,163,124,104,131,116,0.9,0.862,26,46,157,181,86,149,35,23,0
2014-04-24,16:00:00,149,114,103,115,116,0.8,0.85,26,45,170,170,100,149,31,23,0
2014-04-24,16:00:00,149,114,103,115,116,0.8,0.85,26,45,170,170,100,149,31,23,0
2014-04-24,17:00:00,153,117,101,0,113,0.8,0.838,30,45,172,172,116,149,27,22,0
2014-04-24,17:00:00,153,117,101,0,113,0.8,0.838,30,45,172,172,116,149,27,22,0
2014-04-24,18:00:00,127,96,100,97,112,0.8,0.829,36,45,168,172,130,149,22,21,0
2014-04-24,18:00:00,127,96,100,97,112,0.8,0.829,36,45,168,172,130,149,22,21,0
2014-04-24,19:00:00,117,88,99,98,111,0.9,0.833,46,45,157,172,143,149,20,21,0
2014-04-24,19:00:00,117,88,99,98,111,0.9,0.833,46,45,157,172,143,149,20,21,0
2014-04-24,20:00:00,148,113,100,122,109,1,0.842,63,46,129,172,149,149,17,21,0
2014-04-24,20:00:00,148,113,100,122,109,1,0.842,63,46,129,172,149,149,17,21,0
2014-04-24,21:00:00,133,101,101,120,110,1.1,0.858,70,47,112,172,150,150,15,21,0
2014-04-24,21:00:00,133,101,101,120,110,1.1,0.858,70,47,112,172,150,150,15,21,0
2014-04-24,22:00:00,132,100,102,113,111,1.3,0.879,110,49,64,172,141,150,14,21,0
2014-04-24,22:00:00,132,100,102,113,111,1.3,0.879,110,49,64,172,141,150,14,21,0
2014-04-24,23:00:00,175,132,104,144,113,1.3,0.9,134,53,31,172,125,150,13,21,0
2014-04-24,23:00:00,175,132,104,144,113,1.3,0.9,134,53,31,172,125,150,13,21,0
2014-04-25,00:00:00,179,135,106,140,115,1.3,0.925,138,57,22,172,107,150,15,22,0
2014-04-25,00:00:00,179,135,106,140,115,1.3,0.925,138,57,22,172,107,150,15,22,0
2014-04-25,01:00:00,152,116,108,121,116,1.3,0.95,120,60,37,172,90,150,23,22,0
2014-04-25,01:00:00,152,116,108,121,116,1.3,0.95,120,60,37,172,90,150,23,22,0
2014-04-25,02:00:00,183,138,111,150,120,1.3,0.975,126,64,27,172,72,150,26,23,0
2014-04-25,02:00:00,183,138,111,150,120,1.3,0.975,126,64,27,172,72,150,26,23,0
2014-04-25,03:00:00,160,122,113,140,122,1.4,1,149,69,8,172,54,150,26,23,0
2014-04-25,03:00:00,160,122,113,140,122,1.4,1,149,69,8,172,54,150,26,23,0
2014-04-25,04:00:00,166,126,115,140,125,1.8,1.042,0,70,2,172,38,150,27,24,0
2014-04-25,04:00:00,166,126,115,140,125,1.8,1.042,0,70,2,172,38,150,27,24,0
2014-04-25,05:00:00,172,130,117,131,127,1.6,1.075,124,73,2,172,24,150,24,25,0
2014-04-25,05:00:00,172,130,117,131,127,1.6,1.075,124,73,2,172,24,150,24,25,0
2014-04-25,06:00:00,159,121,119,123,128,1.3,1.096,116,77,2,172,16,150,18,25,0
2014-04-25,06:00:00,159,121,119,123,128,1.3,1.096,116,77,2,172,16,150,18,25,0
2014-04-25,07:00:00,155,118,120,129,129,1.4,1.117,104,79,3,172,13,150,17,25,0
2014-04-25,07:00:00,155,118,120,129,129,1.4,1.117,104,79,3,172,13,150,17,25,0
2014-04-25,08:00:00,185,139,121,178,132,1.8,1.15,118,81,4,172,11,150,33,25,0
2014-04-25,08:00:00,185,139,121,178,132,1.8,1.15,118,81,4,172,11,150,33,25,0
2014-04-25,09:00:00,217,167,124,206,136,1.8,1.188,115,83,22,172,9,150,48,26,0
2014-04-25,09:00:00,217,167,124,206,136,1.8,1.188,115,83,22,172,9,150,48,26,0
2014-04-25,10:00:00,225,175,126,222,141,1.6,1.217,116,85,40,172,10,150,53,27,0
2014-04-25,10:00:00,225,175,126,222,141,1.6,1.217,116,85,40,172,10,150,53,27,0
2014-04-25,11:00:00,238,188,128,240,144,1.7,1.25,126,88,54,172,16,150,51,28,0
2014-04-25,11:00:00,238,188,128,240,144,1.7,1.25,126,88,54,172,16,150,51,28,0
2014-04-25,12:00:00,242,192,131,218,148,1.7,1.283,125,91,89,172,27,150,50,28,0
2014-04-25,12:00:00,242,192,131,218,148,1.7,1.283,125,91,89,172,27,150,50,28,0
2014-04-25,13:00:00,227,177,132,0,147,1.3,1.3,95,93,151,172,46,150,49,29,0
2014-04-25,13:00:00,227,177,132,0,147,1.3,1.3,95,93,151,172,46,150,49,29,0
2014-04-25,14:00:00,176,133,132,0,147,0.8,1.292,38,94,222,222,73,150,44,29,0
2014-04-25,14:00:00,176,133,132,0,147,0.8,1.292,38,94,222,222,73,150,44,29,0
2014-04-25,16:00:00,114,86,129,88,146,0.5,1.267,22,93,214,222,126,150,25,29,0
2014-04-25,16:00:00,114,86,129,88,146,0.5,1.267,22,93,214,222,126,150,25,29,0
2014-04-25,17:00:00,104,78,128,86,143,0.6,1.258,30,93,193,222,148,150,22,28,0
2014-04-25,17:00:00,104,78,128,86,143,0.6,1.258,30,93,193,222,148,150,22,28,0
2014-04-25,18:00:00,132,97,128,214,149,0.5,1.246,41,93,104,222,156,156,13,28,0
2014-04-25,18:00:00,132,97,128,214,149,0.5,1.246,41,93,104,222,156,156,13,28,0
2014-04-25,19:00:00,146,88,128,241,156,0.4,1.225,40,93,79,222,159,159,11,28,0
2014-04-25,19:00:00,146,88,128,241,156,0.4,1.225,40,93,79,222,159,159,11,28,0
2014-04-25,20:00:00,165,90,127,279,163,0.4,1.2,28,92,79,222,157,159,7,27,0
2014-04-25,20:00:00,165,90,127,279,163,0.4,1.2,28,92,79,222,157,159,7,27,0
2014-04-25,21:00:00,194,90,126,338,173,0.4,1.171,20,89,82,222,149,159,5,27,0
2014-04-25,22:00:00,165,89,126,279,181,0.4,1.133,18,85,82,222,131,159,3,26,0
2014-04-25,22:00:00,165,89,126,279,181,0.4,1.133,18,85,82,222,131,159,3,26,0
2014-04-25,23:00:00,99,64,123,147,181,0.4,1.096,17,80,62,222,112,159,2,26,0
2014-04-25,23:00:00,99,64,123,147,181,0.4,1.096,17,80,62,222,112,159,2,26,0
2014-04-26,00:00:00,39,27,118,0,183,0.4,1.058,14,75,59,222,93,159,2,25,0
2014-04-26,00:00:00,39,27,118,0,183,0.4,1.058,14,75,59,222,93,159,2,25,0
2014-04-26,01:00:00,20,8,114,20,178,0.4,1.021,17,70,51,222,75,159,2,25,0
2014-04-26,01:00:00,20,8,114,20,178,0.4,1.021,17,70,51,222,75,159,2,25,0
2014-04-26,02:00:00,39,27,109,30,172,0.4,0.983,24,66,35,222,66,159,2,24,0
2014-04-26,02:00:00,39,27,109,30,172,0.4,0.983,24,66,35,222,66,159,2,24,0
2014-04-26,03:00:00,32,22,105,0,174,0.3,0.937,16,60,56,222,63,159,2,23,0
2014-04-26,03:00:00,32,22,105,0,174,0.3,0.937,16,60,56,222,63,159,2,23,0
2014-04-26,04:00:00,24,7,100,24,168,0.3,0.875,19,58,49,222,60,159,2,21,0
2014-04-26,04:00:00,24,7,100,24,168,0.3,0.875,19,58,49,222,60,159,2,21,0
2014-04-26,05:00:00,29,20,96,0,170,0.3,0.821,10,54,58,222,57,159,2,21,0
2014-04-26,05:00:00,29,20,96,0,170,0.3,0.821,10,54,58,222,57,159,2,21,0
2014-04-26,06:00:00,19,7,91,15,164,0.3,0.779,12,49,60,222,54,159,2,20,0
2014-04-26,06:00:00,19,7,91,15,164,0.3,0.779,12,49,60,222,54,159,2,20,0
2014-04-26,07:00:00,38,26,87,32,159,0.3,0.733,21,46,53,222,53,159,2,19,0
2014-04-26,07:00:00,38,26,87,32,159,0.3,0.733,21,46,53,222,53,159,2,19,0
2014-04-26,08:00:00,62,31,83,73,153,0.3,0.671,31,42,39,222,50,159,2,18,0
2014-04-26,08:00:00,62,31,83,73,153,0.3,0.671,31,42,39,222,50,159,2,18,0
2014-04-26,13:00:00,79,20,52,107,125,0.1,0.379,8,22,90,222,59,159,2,8,0
2014-04-26,13:00:00,79,20,52,107,125,0.1,0.379,8,22,90,222,59,159,2,8,0
2014-04-26,14:00:00,69,31,48,88,123,0.2,0.354,9,21,94,217,63,159,3,7,0
2014-04-26,14:00:00,69,31,48,88,123,0.2,0.354,9,21,94,217,63,159,3,7,0
2014-04-26,15:00:00,81,44,46,112,123,0.2,0.337,12,20,98,214,69,159,3,5,0
2014-04-26,15:00:00,81,44,46,112,123,0.2,0.337,12,20,98,214,69,159,3,5,0
2014-04-26,16:00:00,159,44,44,268,131,0.2,0.325,19,20,97,193,76,159,4,5,0
2014-04-26,16:00:00,159,44,44,268,131,0.2,0.325,19,20,97,193,76,159,4,5,0
2014-04-26,17:00:00,101,50,43,152,135,0.3,0.312,27,20,95,104,83,159,5,4,0
2014-04-26,17:00:00,101,50,43,152,135,0.3,0.312,27,20,95,104,83,159,5,4,0
2014-04-26,18:00:00,84,51,41,118,130,0.3,0.304,32,20,82,98,87,159,5,4,0
2014-04-26,18:00:00,84,51,41,118,130,0.3,0.304,32,20,82,98,87,159,5,4,0
2014-04-26,19:00:00,71,47,39,92,123,0.3,0.3,38,20,73,98,89,157,4,3,0
2014-04-26,19:00:00,71,47,39,92,123,0.3,0.3,38,20,73,98,89,157,4,3,0
2014-04-26,20:00:00,95,41,37,140,116,0.5,0.304,57,21,38,98,83,149,3,3,0
2014-04-26,20:00:00,95,41,37,140,116,0.5,0.304,57,21,38,98,83,149,3,3,0
2014-04-26,21:00:00,72,45,36,93,105,0.5,0.308,62,23,24,98,75,131,3,3,0
2014-04-26,21:00:00,72,45,36,93,105,0.5,0.308,62,23,24,98,75,131,3,3,0
2014-04-26,22:00:00,72,41,34,94,96,0.5,0.312,56,24,28,98,67,112,2,3,0
2014-04-26,22:00:00,72,41,34,94,96,0.5,0.312,56,24,28,98,67,112,2,3,0
2014-04-27,00:00:00,54,36,33,57,91,0.6,0.329,61,28,38,98,50,89,2,3,0
2014-04-27,00:00:00,54,36,33,57,91,0.6,0.329,61,28,38,98,50,89,2,3,0
2014-04-27,01:00:00,60,38,34,70,93,0.7,0.342,72,31,18,98,41,89,2,3,0
2014-04-27,01:00:00,60,38,34,70,93,0.7,0.342,72,31,18,98,41,89,2,3,0
2014-04-27,02:00:00,69,50,35,73,95,0.8,0.358,82,33,2,98,31,89,2,3,0
2014-04-27,02:00:00,69,50,35,73,95,0.8,0.358,82,33,2,98,31,89,2,3,0
2014-04-27,03:00:00,74,54,36,77,94,0.9,0.383,78,36,2,98,22,89,2,3,0
2014-04-27,03:00:00,74,54,36,77,94,0.9,0.383,78,36,2,98,22,89,2,3,0
2014-04-27,04:00:00,77,56,38,80,97,1,0.413,78,38,2,98,17,89,3,3,0
2014-04-27,04:00:00,77,56,38,80,97,1,0.413,78,38,2,98,17,89,3,3,0
2014-04-27,05:00:00,85,63,40,96,97,1,0.442,80,41,2,98,15,89,3,3,0
2014-04-27,05:00:00,85,63,40,96,97,1,0.442,80,41,2,98,15,89,3,3,0
2014-04-27,06:00:00,89,66,43,82,99,0.8,0.462,68,43,2,98,11,89,2,3,0
2014-04-27,06:00:00,89,66,43,82,99,0.8,0.462,68,43,2,98,11,89,2,3,0
2014-04-27,07:00:00,73,53,44,57,100,0.7,0.479,54,45,4,98,9,89,2,3,0
2014-04-27,07:00:00,73,53,44,57,100,0.7,0.479,54,45,4,98,9,89,2,3,0
2014-04-27,08:00:00,69,50,45,63,100,0.6,0.492,50,46,14,98,6,89,4,3,0
2014-04-27,08:00:00,69,50,45,63,100,0.6,0.492,50,46,14,98,6,89,4,3,0
2014-04-27,09:00:00,62,44,45,49,99,0.5,0.496,34,46,39,98,8,89,7,3,0
2014-04-27,09:00:00,62,44,45,49,99,0.5,0.496,34,46,39,98,8,89,7,3,0
2014-04-27,10:00:00,60,31,45,70,97,0.3,0.496,27,46,56,98,15,89,6,3,0
2014-04-27,10:00:00,60,31,45,70,97,0.3,0.496,27,46,56,98,15,89,6,3,0
2014-04-27,11:00:00,33,23,44,0,97,0.2,0.496,15,46,78,98,25,89,3,3,0
2014-04-27,11:00:00,33,23,44,0,97,0.2,0.496,15,46,78,98,25,89,3,3,0
2014-04-27,12:00:00,29,14,43,0,96,0.1,0.496,14,46,91,98,36,89,2,3,0
2014-04-27,12:00:00,29,14,43,0,96,0.1,0.496,14,46,91,98,36,89,2,3,0
2014-04-27,13:00:00,0,0,44,0,96,0,0.513,0,48,0,98,41,89,0,3,0
2014-04-27,14:00:00,64,46,45,64,94,0.2,0.513,14,48,149,149,62,89,3,3,0
2014-04-27,14:00:00,64,46,45,64,94,0.2,0.513,14,48,149,149,62,89,3,3,0
2014-04-27,15:00:00,52,36,44,38,91,0.2,0.513,13,48,150,150,82,89,3,3,0
2014-04-27,15:00:00,52,36,44,38,91,0.2,0.513,13,48,150,150,82,89,3,3,0
2014-04-27,16:00:00,47,29,44,40,80,0.2,0.513,14,48,150,150,102,102,2,3,0
2014-04-27,16:00:00,47,29,44,40,80,0.2,0.513,14,48,150,150,102,102,2,3,0
2014-04-27,17:00:00,93,50,44,136,79,0.2,0.509,22,47,146,150,117,117,5,3,0
2014-04-27,17:00:00,93,50,44,136,79,0.2,0.509,22,47,146,150,117,117,5,3,0
2014-04-27,18:00:00,90,56,44,130,80,0.5,0.517,35,48,123,150,127,127,16,4,0
2014-04-27,18:00:00,90,56,44,130,80,0.5,0.517,35,48,123,150,127,127,16,4,0
2014-04-27,19:00:00,65,47,44,78,79,0.5,0.526,34,47,117,150,132,132,13,4,0
2014-04-27,19:00:00,65,47,44,78,79,0.5,0.526,34,47,117,150,132,132,13,4,0
2014-04-27,20:00:00,73,51,44,96,77,0.7,0.535,49,47,91,150,132,132,11,4,0
2014-04-27,20:00:00,73,51,44,96,77,0.7,0.535,49,47,91,150,132,132,11,4,0
2014-04-27,21:00:00,116,80,46,182,81,1.3,0.57,73,48,60,150,123,132,17,5,0
2014-04-27,21:00:00,116,80,46,182,81,1.3,0.57,73,48,60,150,123,132,17,5,0
2014-04-27,22:00:00,144,110,49,181,85,1.9,0.63,68,48,68,150,113,132,24,6,0
2014-04-27,22:00:00,144,110,49,181,85,1.9,0.63,68,48,68,150,113,132,24,6,0
2014-04-27,23:00:00,134,102,52,149,89,1.3,0.661,63,48,54,150,101,132,18,7,0
2014-04-27,23:00:00,134,102,52,149,89,1.3,0.661,63,48,54,150,101,132,18,7,0
2014-04-28,00:00:00,64,46,52,0,91,0.6,0.661,39,47,65,150,91,132,14,7,0
2014-04-28,00:00:00,64,46,52,0,91,0.6,0.661,39,47,65,150,91,132,14,7,0
2014-04-28,01:00:00,55,37,52,60,90,0.5,0.652,35,45,62,150,80,132,12,8,0
2014-04-28,01:00:00,55,37,52,60,90,0.5,0.652,35,45,62,150,80,132,12,8,0
2014-04-28,02:00:00,51,35,51,51,89,0.6,0.643,47,44,46,150,70,132,11,8,0
2014-04-28,02:00:00,51,35,51,51,89,0.6,0.643,47,44,46,150,70,132,11,8,0
2014-04-28,03:00:00,52,35,50,54,88,0.6,0.63,41,42,54,150,63,132,8,8,0
2014-04-28,03:00:00,52,35,50,54,88,0.6,0.63,41,42,54,150,63,132,8,8,0
2014-04-28,04:00:00,77,48,50,103,89,0.8,0.622,0,40,2,150,51,132,8,8,0
2014-04-28,04:00:00,77,48,50,103,89,0.8,0.622,0,40,2,150,51,132,8,8,0
2014-04-28,05:00:00,98,64,50,146,91,1.2,0.63,87,41,2,150,44,132,9,9,0
2014-04-28,05:00:00,98,64,50,146,91,1.2,0.63,87,41,2,150,44,132,9,9,0
2014-04-28,06:00:00,97,72,50,115,93,1.2,0.648,83,41,2,150,36,132,8,9,0
2014-04-28,06:00:00,97,72,50,115,93,1.2,0.648,83,41,2,150,36,132,8,9,0
2014-04-28,07:00:00,99,74,51,125,97,1.2,0.67,78,43,2,150,29,132,9,9,0
2014-04-28,07:00:00,99,74,51,125,97,1.2,0.67,78,43,2,150,29,132,9,9,0
2014-04-28,08:00:00,105,79,53,131,100,1,0.687,66,43,13,150,23,132,14,10,0
2014-04-28,08:00:00,105,79,53,131,100,1,0.687,66,43,13,150,23,132,14,10,0
2014-04-28,09:00:00,129,98,55,178,106,1.1,0.713,72,45,22,150,18,132,19,10,0
2014-04-28,09:00:00,129,98,55,178,106,1.1,0.713,72,45,22,150,18,132,19,10,0
2014-04-28,10:00:00,158,120,59,188,112,1,0.743,62,47,52,150,19,132,20,11,0
2014-04-28,10:00:00,158,120,59,188,112,1,0.743,62,47,52,150,19,132,20,11,0
2014-04-28,11:00:00,117,88,62,109,112,0.8,0.77,35,47,103,150,25,132,20,12,0
2014-04-28,11:00:00,117,88,62,109,112,0.8,0.77,35,47,103,150,25,132,20,12,0
2014-04-28,12:00:00,38,0,64,0,112,0.3,0.778,22,48,121,150,40,132,12,12,0
2014-04-28,12:00:00,38,0,64,0,112,0.3,0.778,22,48,121,150,40,132,12,12,0
2014-04-28,13:00:00,73,19,62,96,111,0.4,0.762,16,46,134,150,56,132,6,12,0
2014-04-28,13:00:00,73,19,62,96,111,0.4,0.762,16,46,134,150,56,132,6,12,0
2014-04-28,14:00:00,54,38,61,57,111,0.4,0.771,18,47,144,150,74,132,5,12,0
2014-04-28,14:00:00,54,38,61,57,111,0.4,0.771,18,47,144,150,74,132,5,12,0
2014-04-28,15:00:00,58,41,62,62,112,0.4,0.779,21,47,152,152,93,132,5,12,0
2014-04-28,15:00:00,58,41,62,62,112,0.4,0.779,21,47,152,152,93,132,5,12,0
2014-04-28,16:00:00,126,0,63,202,120,0.4,0.787,20,47,165,165,112,132,4,12,0
2014-04-28,16:00:00,126,0,63,202,120,0.4,0.787,20,47,165,165,112,132,4,12,0
2014-04-28,17:00:00,68,23,62,85,117,0.4,0.796,30,48,164,165,129,132,5,12,0
2014-04-28,17:00:00,68,23,62,85,117,0.4,0.796,30,48,164,165,129,132,5,12,0
2014-04-28,18:00:00,87,60,62,123,117,0.5,0.796,44,48,175,175,145,145,7,12,0
2014-04-28,18:00:00,87,60,62,123,117,0.5,0.796,44,48,175,175,145,145,7,12,0
2014-04-28,19:00:00,92,68,63,124,119,0.6,0.8,55,49,161,175,152,152,7,11,0
2014-04-28,19:00:00,92,68,63,124,119,0.6,0.8,55,49,161,175,152,152,7,11,0
2014-04-28,20:00:00,88,65,64,126,120,0.7,0.8,55,49,147,175,155,155,8,11,0
2014-04-28,20:00:00,88,65,64,126,120,0.7,0.8,55,49,147,175,155,155,8,11,0
2014-04-28,21:00:00,98,73,63,123,118,0.9,0.783,69,49,120,175,154,155,8,11,0
2014-04-28,21:00:00,98,73,63,123,118,0.9,0.783,69,49,120,175,154,155,8,11,0
2014-04-28,22:00:00,98,73,62,134,115,0.9,0.742,75,49,99,175,148,155,8,10,0
2014-04-28,22:00:00,98,73,62,134,115,0.9,0.742,75,49,99,175,148,155,8,10,0
2014-04-28,23:00:00,90,67,60,122,114,0.9,0.725,69,50,89,175,140,155,8,10,0
2014-04-28,23:00:00,90,67,60,122,114,0.9,0.725,69,50,89,175,140,155,8,10,0
2014-04-29,00:00:00,87,64,61,124,115,0.9,0.738,66,51,87,175,130,155,12,10,0
2014-04-29,00:00:00,87,64,61,124,115,0.9,0.738,66,51,87,175,130,155,12,10,0
2014-04-29,01:00:00,103,77,63,144,118,1,0.758,97,53,44,175,115,155,12,10,0
2014-04-29,01:00:00,103,77,63,144,118,1,0.758,97,53,44,175,115,155,12,10,0
2014-04-29,02:00:00,109,82,65,152,123,1,0.775,104,56,25,175,97,155,11,10,0
2014-04-29,02:00:00,109,82,65,152,123,1,0.775,104,56,25,175,97,155,11,10,0
2014-04-29,03:00:00,114,86,67,173,128,1,0.792,112,59,10,175,78,155,9,10,0
2014-04-29,03:00:00,114,86,67,173,128,1,0.792,112,59,10,175,78,155,9,10,0
2014-04-29,04:00:00,132,94,69,214,133,1.1,0.804,117,61,2,175,60,155,8,10,0
2014-04-29,04:00:00,132,94,69,214,133,1.1,0.804,117,61,2,175,60,155,8,10,0
2014-04-29,05:00:00,125,87,70,200,135,1.1,0.8,105,62,2,175,45,155,11,10,0
2014-04-29,05:00:00,125,87,70,200,135,1.1,0.8,105,62,2,175,45,155,11,10,0
2014-04-29,06:00:00,109,82,71,165,137,1.3,0.804,90,62,2,175,33,155,11,10,0
2014-04-29,06:00:00,109,82,71,165,137,1.3,0.804,90,62,2,175,33,155,11,10,0
2014-04-29,07:00:00,103,77,71,150,138,1.3,0.808,83,63,4,175,22,155,18,10,0
2014-04-29,07:00:00,103,77,71,150,138,1.3,0.808,83,63,4,175,22,155,18,10,0
2014-04-29,08:00:00,116,81,71,181,141,1.4,0.825,90,64,7,175,12,155,33,11,0
2014-04-29,08:00:00,116,81,71,181,141,1.4,0.825,90,64,7,175,12,155,33,11,0
2014-04-29,09:00:00,125,91,71,199,141,1.4,0.837,100,65,14,175,8,155,39,12,0
2014-04-29,09:00:00,125,91,71,199,141,1.4,0.837,100,65,14,175,8,155,39,12,0
2014-04-29,10:00:00,119,90,69,164,140,1.2,0.846,77,65,48,175,11,155,39,13,0
2014-04-29,10:00:00,119,90,69,164,140,1.2,0.846,77,65,48,175,11,155,39,13,0
2014-04-29,11:00:00,128,97,70,164,143,1.2,0.862,71,67,78,175,20,155,39,14,0
2014-04-29,11:00:00,128,97,70,164,143,1.2,0.862,71,67,78,175,20,155,39,14,0
2014-04-29,12:00:00,139,106,71,175,144,1.2,0.9,86,70,95,175,31,155,39,15,0
2014-04-29,13:00:00,150,115,76,171,147,1.1,0.929,82,72,134,175,48,155,28,16,0
2014-04-29,14:00:00,134,102,78,150,151,0.9,0.95,60,74,170,175,69,155,18,16,0
2014-04-29,16:00:00,106,76,80,113,150,0.6,0.971,36,76,211,211,118,155,12,17,0
2014-04-29,17:00:00,104,77,82,106,151,0.7,0.983,33,76,208,211,143,155,12,17,0
2014-04-29,18:00:00,143,109,84,129,151,0.8,0.996,43,76,190,211,160,160,17,17,0
2014-04-29,19:00:00,102,76,84,128,152,0.9,1.008,43,75,186,211,174,174,19,18,0
2014-04-29,20:00:00,104,78,85,143,152,1.1,1.025,54,75,164,211,182,182,24,19,0
2014-04-29,21:00:00,133,101,86,167,154,1.3,1.042,62,75,135,211,183,183,37,20,0
2014-04-29,22:00:00,124,94,87,156,155,1.4,1.063,62,74,106,211,175,183,43,21,0
2014-04-29,23:00:00,123,93,88,152,156,1.5,1.088,56,74,107,211,163,183,38,23,0
2014-04-30,00:00:00,115,87,89,144,157,1.3,1.104,52,73,105,211,150,183,31,23,0
2014-04-30,01:00:00,112,84,89,134,157,1.1,1.108,48,71,108,211,138,183,32,24,0
2014-04-30,02:00:00,113,85,89,128,156,0.9,1.104,43,69,107,211,127,183,29,25,0
2014-04-30,03:00:00,114,86,89,128,154,0.9,1.1,48,66,90,211,115,183,24,26,0
2014-04-30,04:00:00,120,91,89,134,150,1,1.096,54,63,70,211,104,183,26,26,0
2014-04-30,05:00:00,134,102,90,142,148,1.1,1.096,69,62,47,211,93,183,26,27,0
2014-04-30,06:00:00,138,105,91,146,147,1.1,1.088,76,61,33,211,83,183,22,27,0
2014-04-30,07:00:00,139,106,92,152,147,1.2,1.083,85,61,24,211,73,183,26,28,0
2014-04-30,08:00:00,152,116,93,181,147,1.3,1.079,96,62,23,211,63,183,32,28,0
2014-04-30,09:00:00,170,129,95,227,148,1.6,1.088,131,63,17,211,51,183,31,27,0
2014-04-30,10:00:00,192,144,97,276,153,1.7,1.108,159,66,16,211,40,183,28,27,0
2014-04-30,11:00:00,193,145,99,231,156,1.4,1.117,125,68,73,211,38,183,33,27,0
2014-04-30,14:00:00,124,94,100,136,155,0.7,1.096,26,63,222,222,95,183,28,27,0
2014-04-30,17:00:00,106,70,100,123,157,0.7,1.1,33,63,211,222,167,183,18,29,0
2014-04-30,18:00:00,117,88,99,138,157,0.7,1.096,42,63,200,222,190,190,19,29,0
2014-04-30,19:00:00,103,77,99,137,158,0.7,1.087,42,63,193,222,205,205,18,29,0
2014-04-30,20:00:00,108,81,99,140,157,0.9,1.079,51,63,168,222,206,206,18,28,0
2014-04-30,21:00:00,112,84,99,140,156,0.9,1.062,61,63,142,222,197,206,16,27,0
2014-04-30,22:00:00,109,82,98,139,156,1,1.046,59,62,140,222,186,206,16,26,0
2014-04-30,23:00:00,104,78,98,147,155,1,1.025,53,62,138,222,176,206,16,25,0
2014-05-01,01:00:00,129,98,99,165,157,1.1,1.013,60,63,108,222,156,206,16,24,0
2014-05-01,02:00:00,139,106,100,167,159,1,1.017,58,64,98,222,141,206,20,24,0
2014-05-01,03:00:00,140,107,100,166,161,0.7,1.009,44,64,106,222,129,206,20,24,0
2014-05-01,04:00:00,147,112,101,159,162,0.7,0.996,0,64,68,222,114,206,19,24,0
2014-05-01,05:00:00,162,123,102,162,163,0.8,0.983,38,63,94,222,107,206,18,23,0
2014-05-01,06:00:00,166,126,103,165,163,0.9,0.974,42,61,76,222,98,206,15,23,0
2014-05-01,07:00:00,185,139,105,179,165,1,0.965,59,60,53,222,86,206,17,23,0
2014-05-01,08:00:00,202,152,106,208,166,1,0.952,68,59,47,222,81,206,24,22,0
2014-05-01,09:00:00,210,160,108,214,165,1.1,0.93,66,56,59,222,75,206,33,22,0
2014-05-01,10:00:00,213,163,108,229,163,1,0.9,59,51,99,222,75,206,38,23,0
2014-05-01,11:00:00,202,152,109,202,162,0.8,0.874,44,48,138,222,79,206,37,23,0
2014-05-01,12:00:00,195,146,109,200,163,0.7,0.857,29,47,176,222,93,206,39,23,0
2014-05-01,13:00:00,201,151,111,211,165,0.9,0.857,25,46,192,222,105,206,36,23,0
2014-05-01,14:00:00,202,152,114,188,167,0.8,0.861,24,46,210,219,122,206,37,23,0
2014-05-01,15:00:00,169,128,115,172,169,0.8,0.865,24,46,215,219,142,206,34,24,0
2014-05-01,16:00:00,186,140,118,195,172,1,0.878,28,46,220,220,164,206,38,24,0
2014-05-01,17:00:00,172,130,121,209,175,0.9,0.887,28,46,222,222,184,206,33,25,0
2014-05-01,18:00:00,138,92,121,225,179,0.5,0.878,27,45,124,222,187,206,16,25,0
2014-05-01,19:00:00,147,69,120,243,184,0.5,0.87,30,44,66,222,178,206,4,24,0
2014-05-01,20:00:00,332,69,120,445,197,0.4,0.848,21,43,78,222,166,197,6,24,0
2014-05-01,21:00:00,108,50,118,165,198,0.3,0.822,18,41,79,222,152,187,3,23,0
2014-05-01,22:00:00,100,31,116,149,198,0.3,0.791,16,39,77,222,135,187,2,23,0
2014-05-01,23:00:00,64,38,115,78,195,0.4,0.765,19,38,65,222,116,187,2,22,0
2014-05-02,00:00:00,53,36,111,55,190,0.3,0.746,18,37,69,222,98,187,4,21,0
2014-05-02,01:00:00,52,36,109,48,185,0.3,0.713,18,35,67,222,78,187,4,21,0
2014-05-02,02:00:00,49,32,106,49,180,0.3,0.683,19,33,66,222,71,187,4,20,0
2014-05-02,03:00:00,38,26,102,36,174,0.3,0.667,20,32,65,222,71,187,4,19,0
2014-05-02,04:00:00,73,53,100,0,175,0.3,0.65,20,32,67,222,69,187,4,19,0
2014-05-02,05:00:00,43,30,96,32,169,0.2,0.625,20,31,68,222,68,187,5,18,0
2014-05-02,06:00:00,40,28,92,36,164,0.1,0.592,13,30,94,222,70,187,2,18,0
2014-05-02,07:00:00,45,20,87,45,158,0.1,0.554,12,28,104,222,75,187,2,17,0
2014-05-02,08:00:00,70,18,81,89,153,0.1,0.517,14,26,93,222,78,187,2,16,0
2014-05-02,09:00:00,65,34,76,80,147,0.1,0.475,12,23,91,222,81,187,2,15,0
2014-05-02,10:00:00,57,23,70,64,140,0.1,0.438,11,21,98,222,85,187,2,13,0
2014-05-02,11:00:00,57,22,65,64,134,0.1,0.408,15,20,101,222,90,187,2,12,0
2014-05-02,14:00:00,40,28,49,30,112,0.1,0.321,15,19,112,222,102,187,2,8,0
2014-05-02,17:00:00,32,0,35,0,95,0.1,0.221,21,18,101,124,105,187,2,3,0
2014-05-02,18:00:00,63,16,32,75,88,0.1,0.204,21,18,96,112,105,178,2,3,0
2014-05-02,19:00:00,30,12,30,30,78,0.2,0.192,25,17,90,112,104,166,2,3,0
2014-05-02,20:00:00,27,16,27,27,59,0.2,0.183,32,18,79,112,100,152,2,3,0
2014-05-02,21:00:00,25,13,26,25,53,0.2,0.179,34,18,71,112,95,135,2,3,0
2014-05-02,22:00:00,37,20,25,37,48,0.3,0.179,66,21,36,112,86,116,2,3,0
2014-05-02,23:00:00,52,21,24,53,47,0.5,0.183,91,24,8,112,73,105,2,3,0
2014-05-03,00:00:00,70,32,24,89,48,0.8,0.204,99,27,2,112,60,105,2,2,0
2014-05-03,01:00:00,52,33,24,54,48,0.8,0.225,100,30,2,112,48,105,3,2,0
2014-05-03,02:00:00,50,29,24,50,48,0.4,0.229,92,33,6,112,37,105,3,2,0
2014-05-03,03:00:00,63,31,24,76,50,0.5,0.238,92,36,2,112,26,105,4,2,0
2014-05-03,04:00:00,66,34,23,81,52,0.4,0.242,87,39,2,112,16,105,4,2,0
2014-05-03,05:00:00,68,27,23,86,54,0.5,0.254,87,42,2,112,8,105,4,2,0
2014-05-03,06:00:00,97,47,24,144,59,0.8,0.283,82,45,2,112,3,105,4,2,0
2014-05-03,07:00:00,89,66,26,0,59,1.1,0.325,83,48,2,112,3,105,6,3,0
2014-05-03,08:00:00,100,75,29,0,58,1.1,0.367,92,51,2,112,3,105,8,3,0
2014-05-03,09:00:00,49,0,28,0,57,0.9,0.4,97,55,7,112,3,105,13,3,0
2014-05-03,10:00:00,83,61,30,115,59,0.5,0.417,55,56,50,112,9,105,22,4,0
2014-05-03,11:00:00,84,62,32,116,62,0.4,0.429,45,58,76,112,18,105,23,5,0
2014-05-03,12:00:00,79,56,34,108,66,0.3,0.438,32,58,104,112,31,105,24,6,0
2014-05-03,15:00:00,64,31,37,78,81,0.2,0.446,28,60,104,121,73,105,8,7,0
2014-05-03,17:00:00,104,31,36,158,86,0.1,0.446,16,59,107,121,98,105,4,7,0
2014-05-03,18:00:00,232,36,37,372,100,0.1,0.446,17,59,96,121,103,104,2,7,0
2014-05-03,19:00:00,440,50,39,540,124,0.1,0.442,15,59,93,121,105,105,2,7,0
2014-05-03,20:00:00,166,31,40,282,136,0.1,0.437,15,58,88,121,103,105,2,7,0
2014-05-03,21:00:00,123,20,40,195,144,0.1,0.433,16,57,84,121,99,105,2,7,0
2014-05-03,22:00:00,101,28,40,151,150,0.1,0.425,15,55,86,121,94,105,2,7,0
2014-05-03,23:00:00,98,30,41,146,154,0.1,0.408,14,52,86,121,92,105,2,7,0
2014-05-04,00:00:00,76,33,41,101,155,0.2,0.383,16,49,81,121,90,105,2,7,0
2014-05-04,01:00:00,62,29,40,73,156,0.2,0.358,18,45,76,121,86,105,2,7,0
2014-05-04,02:00:00,43,30,40,36,155,0.1,0.346,16,42,78,121,84,105,2,7,0
2014-05-04,03:00:00,35,24,40,30,153,0.2,0.333,18,39,78,121,82,105,2,7,0
2014-05-04,04:00:00,43,30,40,42,151,0.2,0.325,0,37,49,121,77,105,2,7,0
2014-05-04,05:00:00,48,33,40,38,149,0.2,0.312,11,34,84,121,77,105,5,7,0
2014-05-04,06:00:00,50,35,40,42,144,0.2,0.287,13,31,79,121,76,105,5,7,0
2014-05-04,07:00:00,50,35,38,45,139,0.2,0.25,18,28,73,121,75,105,3,7,0
2014-05-04,08:00:00,49,34,37,46,135,0.2,0.213,19,25,74,121,74,105,3,7,0
2014-05-04,09:00:00,47,28,36,47,132,0.1,0.179,14,21,83,121,75,105,4,7,0
2014-05-04,10:00:00,65,28,35,79,130,0.1,0.163,10,19,94,121,77,105,2,6,0
2014-05-04,11:00:00,70,20,33,90,129,0.1,0.15,9,17,99,121,79,105,2,5,0
2014-05-04,12:00:00,57,15,31,64,127,0.1,0.142,9,16,99,121,86,105,2,4,0
2014-05-04,13:00:00,69,28,30,87,125,0.1,0.138,8,16,101,121,88,105,2,3,0
2014-05-04,14:00:00,70,30,30,89,121,0.1,0.138,8,15,100,107,90,105,2,3,0
2014-05-04,15:00:00,54,24,29,57,120,0.1,0.133,9,14,99,107,94,105,2,3,0
2014-05-04,16:00:00,52,9,29,54,119,0.1,0.133,9,14,97,107,97,105,2,3,0
2014-05-04,17:00:00,43,6,28,43,115,0.1,0.133,10,13,94,101,98,105,2,2,0
2014-05-04,18:00:00,42,10,27,42,101,0.1,0.133,15,13,89,101,97,105,2,2,0
2014-05-04,19:00:00,40,16,25,40,80,0.2,0.138,21,14,80,101,95,103,2,2,0
2014-05-04,20:00:00,34,11,24,34,70,0.2,0.142,27,14,72,101,92,99,2,2,0
2014-05-04,21:00:00,43,14,24,43,63,0.2,0.146,46,15,48,101,85,98,2,2,0
2014-05-04,22:00:00,49,20,24,49,59,0.4,0.158,78,18,13,101,74,98,4,3,0
2014-05-04,23:00:00,45,27,24,45,55,0.6,0.179,90,21,2,101,62,98,3,3,0
2014-05-05,00:00:00,50,21,23,50,53,0.7,0.2,86,24,2,101,50,98,2,3,0
2014-05-05,01:00:00,45,0,23,0,52,1.1,0.238,90,28,2,101,39,98,4,3,0
2014-05-05,02:00:00,43,0,23,0,53,1.1,0.279,85,31,2,101,28,98,5,3,0
2014-05-05,03:00:00,85,0,23,120,57,1,0.313,86,34,2,101,18,98,7,3,0
2014-05-05,04:00:00,97,72,25,119,60,0.7,0.333,80,35,2,101,9,98,6,3,0
2014-05-05,05:00:00,67,41,25,83,62,0.4,0.342,76,38,2,101,3,98,5,3,0
2014-05-05,06:00:00,56,32,25,62,63,0.2,0.342,64,40,8,101,3,98,4,3,0
2014-05-05,07:00:00,49,24,24,49,63,0.2,0.342,32,41,53,101,9,98,2,3,0
2014-05-05,08:00:00,32,22,24,29,63,0.1,0.337,17,41,76,101,18,98,2,3,0
2014-05-05,09:00:00,32,22,23,27,62,0.1,0.338,8,41,89,101,29,98,2,3,0
2014-05-05,10:00:00,35,24,23,24,59,0.1,0.337,7,40,98,101,41,98,2,3,0
2014-05-05,11:00:00,34,17,23,20,56,0.1,0.337,8,40,106,106,54,98,2,3,0
2014-05-05,12:00:00,34,14,23,20,54,0.1,0.337,10,40,108,108,68,98,2,3,0
2014-05-05,13:00:00,36,0,23,0,52,0.1,0.337,10,41,113,113,81,98,3,3,0
2014-05-05,15:00:00,0,0,22,0,50,0,0.359,0,43,0,113,98,98,0,3,0
2014-05-05,16:00:00,0,0,23,0,50,0,0.371,0,45,0,113,103,103,0,3,0
2014-05-05,17:00:00,0,0,24,0,50,0,0.385,0,47,0,113,106,106,0,3,0
2014-05-05,18:00:00,0,0,25,0,51,0,0.4,0,48,0,113,109,109,0,3,0
2014-05-05,19:00:00,0,0,26,0,52,0,0.411,0,50,0,113,111,111,0,3,0
2014-05-05,20:00:00,0,0,27,0,53,0,0.424,0,51,0,113,113,113,0,3,0
2014-05-05,21:00:00,0,0,28,0,54,0,0.437,0,52,0,113,0,113,0,3,0
2014-05-05,22:00:00,0,0,29,0,54,0,0.44,0,50,0,113,0,113,0,3,0
2014-05-05,23:00:00,0,0,29,0,55,0,0.429,0,47,0,113,0,113,0,3,0
2014-05-06,00:00:00,0,0,30,0,55,0,0.408,0,44,0,113,0,113,0,4,0
2014-05-06,01:00:00,0,0,30,0,55,0,0.35,0,40,0,113,0,113,0,4,0
2014-05-06,02:00:00,0,0,30,0,55,0,0.282,0,36,0,113,0,113,0,3,0
2014-05-06,03:00:00,0,0,30,0,48,0,0.21,0,31,0,113,0,113,0,3,0
2014-05-06,04:00:00,0,0,25,0,39,0,0.156,0,26,0,113,0,113,0,3,0
2014-05-06,05:00:00,0,0,22,0,33,0,0.125,0,20,0,113,0,113,0,2,0
2014-05-06,06:00:00,0,0,21,0,28,0,0.114,0,13,0,113,0,113,0,2,0
2014-05-06,07:00:00,0,0,20,0,24,0,0.1,0,10,0,113,0,113,0,2,0
2014-05-06,08:00:00,0,0,19,0,23,0,0.1,0,9,0,113,0,113,0,2,0
2014-05-06,09:00:00,93,66,30,136,50,0.9,0.26,74,22,24,113,24,113,36,9,0
2014-05-06,10:00:00,92,68,41,119,74,0.7,0.38,57,32,53,113,39,113,41,17,0
2014-05-06,11:00:00,97,72,55,126,100,0.7,0.5,50,40,72,113,50,113,47,26,0
2014-05-06,12:00:00,105,79,71,153,134,0.7,0.62,47,48,92,113,60,113,49,35,0
2014-05-06,13:00:00,107,80,73,156,138,0.7,0.74,40,54,116,116,71,113,50,45,0
2014-05-06,14:00:00,113,85,75,156,141,0.8,0.75,42,52,126,126,81,113,50,45,0
2014-05-06,15:00:00,118,89,77,156,143,0.8,0.757,42,50,131,131,88,113,44,45,0
2014-05-06,17:00:00,132,100,82,169,149,1,0.8,43,48,143,143,109,113,42,45,0
2014-05-06,18:00:00,137,104,84,173,151,1.1,0.83,48,48,132,143,119,119,42,44,0
2014-05-06,19:00:00,135,103,86,182,154,1.2,0.864,51,49,122,143,126,126,39,44,0
2014-05-06,20:00:00,142,108,88,196,158,1.3,0.9,58,49,100,143,127,127,40,44,0
2014-05-06,21:00:00,144,110,89,218,162,1.4,0.938,79,52,69,143,121,127,40,43,0
2014-05-06,22:00:00,165,125,92,224,167,1.6,0.986,102,55,39,143,110,127,45,43,0
2014-05-06,23:00:00,165,125,94,225,171,1.8,1.04,100,58,30,143,97,127,49,44,0
2014-05-07,00:00:00,166,126,96,230,174,2,1.1,106,61,8,143,80,127,17,42,0
2014-05-07,01:00:00,158,120,97,170,174,2.4,1.176,107,64,2,143,63,127,13,40,0
2014-05-07,02:00:00,172,130,99,147,173,2.8,1.267,102,66,2,143,47,127,21,39,0
2014-05-07,03:00:00,162,123,100,160,172,2.8,1.347,103,68,2,143,32,127,26,39,0
2014-05-07,04:00:00,169,128,102,154,171,2.7,1.415,0,68,2,143,19,127,22,38,0
2014-05-07,05:00:00,170,129,103,140,170,2.8,1.481,93,69,2,143,11,127,20,37,0
2014-05-07,06:00:00,175,132,104,155,169,2.8,1.541,92,70,2,143,6,127,16,36,0
2014-05-07,07:00:00,195,146,106,225,171,2.6,1.587,100,72,2,143,3,127,19,35,0
2014-05-07,08:00:00,173,131,107,191,172,1.8,1.596,97,73,16,143,4,127,33,35,0
2014-05-07,09:00:00,129,98,109,178,174,1.1,1.604,0,73,47,143,9,127,29,35,0
2014-05-07,10:00:00,39,27,107,34,170,0.2,1.583,15,71,100,143,22,127,2,33,0
2014-05-07,11:00:00,51,14,104,51,167,0.1,1.558,11,69,111,143,35,127,2,31,0
2014-05-07,13:00:00,67,22,100,84,161,0.1,1.508,13,66,119,143,64,127,4,28,0
2014-05-07,14:00:00,62,24,97,73,157,0.1,1.479,14,65,125,143,79,127,5,26,0
2014-05-07,15:00:00,59,14,94,67,154,0.1,1.45,15,64,126,143,95,127,4,24,0
2014-05-07,16:00:00,56,19,91,61,149,0.1,1.417,15,63,123,143,108,127,3,22,0
2014-05-07,17:00:00,38,10,87,31,143,0.1,1.379,14,61,119,132,117,127,2,21,0
2014-05-07,18:00:00,36,10,83,36,138,0.1,1.338,16,60,110,126,118,127,2,19,0
2014-05-07,19:00:00,35,17,79,35,131,0.1,1.292,24,59,103,126,117,127,2,17,0
2014-05-07,20:00:00,52,17,76,53,125,0.3,1.25,39,58,79,126,113,121,2,16,0
2014-05-07,21:00:00,65,19,72,79,120,0.3,1.204,52,56,60,126,106,118,2,14,0
2014-05-07,22:00:00,58,21,68,66,113,0.3,1.15,47,54,62,126,98,118,2,13,0
2014-05-07,23:00:00,93,43,64,135,109,0.5,1.096,86,53,23,126,85,118,8,11,0
2014-05-08,00:00:00,121,78,62,191,108,1,1.054,67,52,57,126,77,118,12,11,0
2014-05-08,01:00:00,123,93,61,122,106,1,0.996,49,49,82,126,72,118,17,11,0
2014-05-08,02:00:00,147,112,60,130,105,1.1,0.925,63,47,53,126,65,118,18,11,0
2014-05-08,03:00:00,138,105,60,121,103,1.2,0.858,67,46,39,126,57,118,15,10,0
2014-05-08,04:00:00,168,127,59,132,103,1.2,0.796,91,47,7,126,48,118,9,10,0
2014-05-08,05:00:00,152,116,59,144,103,1.2,0.729,101,48,2,126,41,118,6,9,0
2014-05-08,06:00:00,162,123,59,149,102,1.3,0.667,95,48,2,126,33,118,5,9,0
2014-05-08,07:00:00,175,132,58,148,99,1.3,0.612,96,48,2,126,31,118,7,8,0
2014-05-08,08:00:00,193,145,59,160,98,1.7,0.608,102,48,8,126,24,118,15,7,0
2014-05-08,09:00:00,139,106,59,0,94,1.7,0.633,66,49,74,126,23,118,34,8,0
2014-05-08,10:00:00,108,81,61,86,97,1,0.667,42,50,111,126,31,118,27,9,0
2014-05-08,11:00:00,87,64,63,69,97,0.7,0.692,32,51,129,129,42,118,22,9,0
2014-05-08,12:00:00,80,59,65,64,97,0.6,0.713,25,51,148,148,60,118,19,10,0
2014-05-08,13:00:00,65,47,66,63,96,0.5,0.729,19,52,159,159,79,118,17,11,0
2014-05-08,14:00:00,84,62,68,77,96,0.5,0.746,21,52,164,164,99,118,16,11,0
2014-05-08,15:00:00,98,73,70,81,97,0.6,0.767,20,52,177,177,121,121,17,12,0
2014-05-08,16:00:00,114,86,73,109,99,0.6,0.788,26,52,192,192,144,144,22,12,0
2014-05-08,17:00:00,98,73,75,94,102,0.7,0.813,28,53,198,198,160,160,23,13,0
2014-05-08,18:00:00,85,63,78,86,104,0.6,0.833,32,54,185,198,169,169,19,14,0
2014-05-08,19:00:00,94,70,80,126,108,1,0.871,55,55,138,198,170,170,22,15,0
2014-05-08,20:00:00,88,63,82,125,111,1.1,0.904,57,56,125,198,167,170,24,16,0
2014-05-08,21:00:00,85,63,84,112,113,1,0.933,59,56,107,198,161,170,22,17,0
2014-05-08,22:00:00,79,58,85,104,114,0.7,0.95,62,57,94,198,152,170,27,18,0
2014-05-08,23:00:00,95,64,86,140,114,0.9,0.967,73,56,80,198,140,170,42,19,0
2014-05-09,00:00:00,89,66,85,109,111,0.9,0.962,62,56,88,198,127,170,35,20,0
2014-05-09,01:00:00,97,72,85,91,110,0.9,0.958,56,56,89,198,113,170,29,21,0
2014-05-09,02:00:00,78,57,82,85,108,0.8,0.946,54,56,84,198,101,170,24,21,0
2014-05-09,03:00:00,84,62,81,101,107,0.8,0.929,68,56,62,198,91,170,24,21,0
2014-05-09,04:00:00,92,68,78,108,106,0.7,0.908,82,56,41,198,81,170,17,21,0
2014-05-09,05:00:00,107,80,77,102,104,1.2,0.908,77,55,40,198,72,170,36,23,0
2014-05-09,06:00:00,110,83,75,109,102,2.2,0.946,78,54,47,198,66,170,64,25,0
2014-05-09,07:00:00,104,78,73,131,101,2.6,1,85,53,47,198,62,170,75,28,0
2014-05-09,08:00:00,109,82,70,151,101,2.8,1.046,92,53,46,198,57,170,82,31,0
2014-05-09,09:00:00,112,84,69,157,103,2.6,1.083,80,54,53,198,53,170,73,32,0
2014-05-09,10:00:00,109,82,69,146,106,2.1,1.129,65,55,61,198,50,170,57,34,0
2014-05-09,11:00:00,104,78,70,117,108,1.6,1.167,51,55,73,198,51,170,42,34,0
2014-05-09,12:00:00,97,72,70,103,109,1.3,1.196,44,56,82,198,56,170,36,35,0
2014-05-09,14:00:00,88,65,71,99,111,1.4,1.258,46,58,89,198,68,170,34,37,0
2014-05-09,17:00:00,59,38,69,67,112,0.5,1.313,26,60,149,185,91,170,19,38,0
2014-05-09,18:00:00,63,38,68,76,112,0.4,1.304,28,60,144,149,101,170,13,38,0
2014-05-09,19:00:00,79,41,67,107,111,0.4,1.279,27,59,142,149,110,167,10,37,0
2014-05-09,20:00:00,89,43,66,128,111,0.6,1.258,32,58,128,149,115,161,12,37,0
2014-05-09,21:00:00,91,49,65,131,112,0.9,1.254,41,57,109,149,118,152,19,36,0
2014-05-09,22:00:00,85,50,65,119,112,1.1,1.271,40,56,108,149,120,140,25,36,0
2014-05-09,23:00:00,73,52,65,95,110,1,1.275,34,55,112,149,124,127,24,36,0
2014-05-10,00:00:00,72,52,64,90,110,1.1,1.283,34,54,101,149,124,124,24,35,0
2014-05-10,01:00:00,67,48,63,81,109,1.2,1.296,38,53,87,149,116,124,24,35,0
2014-05-10,02:00:00,64,43,62,78,109,1.1,1.308,45,52,73,149,108,124,26,35,0
2014-05-10,03:00:00,63,31,61,76,108,1,1.317,47,52,71,149,99,124,26,35,0
2014-05-10,04:00:00,63,39,60,75,107,1,1.329,0,50,41,149,88,124,26,36,0
2014-05-10,05:00:00,66,38,58,81,106,1.1,1.325,47,49,65,149,82,124,27,35,0
2014-05-10,06:00:00,67,44,57,83,105,1.1,1.279,62,48,48,149,75,124,27,34,0
2014-05-10,07:00:00,68,41,55,86,103,1.1,1.217,57,47,54,149,68,124,28,32,0
2014-05-10,08:00:00,70,42,53,90,100,1.2,1.15,49,45,65,149,63,124,34,30,0
2014-05-10,09:00:00,73,48,52,95,98,1.2,1.092,44,44,77,149,62,124,40,28,0
2014-05-10,10:00:00,77,56,51,92,95,1.2,1.054,43,43,81,149,63,124,41,28,0
2014-05-10,11:00:00,78,57,50,95,94,1.1,1.033,45,42,85,149,65,124,41,28,0
2014-05-10,12:00:00,80,59,49,99,94,1.3,1.033,47,43,86,149,70,124,42,28,0
2014-05-10,13:00:00,83,61,49,96,95,1.2,1.037,45,43,99,149,74,124,43,28,0
2014-05-10,14:00:00,88,65,49,79,94,1.1,1.025,37,42,118,149,83,124,36,28,0
2014-05-10,15:00:00,85,63,48,88,93,1.1,1.008,39,42,124,149,92,124,33,28,0
2014-05-10,16:00:00,72,52,48,90,92,1,1,45,41,119,149,99,124,29,28,0
2014-05-10,17:00:00,79,58,49,98,93,1.1,1.025,48,42,123,144,104,124,28,28,0
2014-05-10,18:00:00,82,60,50,102,94,1.2,1.058,56,44,117,142,109,124,27,29,0
2014-05-10,19:00:00,81,59,50,111,94,1.3,1.096,71,45,86,128,109,124,23,29,0
2014-05-10,20:00:00,84,62,51,102,93,1.2,1.121,78,47,67,124,107,124,22,30,0
2014-05-10,21:00:00,70,42,51,90,91,1.3,1.138,74,49,59,124,102,124,23,30,0
2014-05-10,22:00:00,67,40,50,84,90,1.3,1.146,65,50,59,124,94,124,26,30,0
2014-05-10,23:00:00,86,33,50,122,91,1.1,1.15,45,50,70,124,88,124,10,29,0
2014-05-11,00:00:00,58,41,49,64,90,1.2,1.154,52,51,37,124,77,116,2,29,0
2014-05-11,01:00:00,57,40,49,0,90,1.1,1.15,58,52,38,124,67,109,2,28,0
2014-05-11,02:00:00,75,55,49,0,91,1.3,1.158,43,52,48,124,58,109,2,27,0
2014-05-11,03:00:00,64,46,50,0,92,1.5,1.179,33,51,57,124,54,109,2,26,0
2014-05-11,04:00:00,70,51,51,0,92,1.3,1.192,25,50,66,124,54,109,2,25,0
2014-05-11,05:00:00,62,44,51,0,93,1.1,1.192,18,49,77,124,57,109,2,24,0
2014-05-11,06:00:00,54,38,51,0,94,0.8,1.179,15,47,87,124,60,109,2,23,0
2014-05-11,07:00:00,49,34,50,0,94,0.8,1.167,20,46,81,124,61,109,2,21,0
2014-05-11,08:00:00,30,21,49,0,94,0.7,1.146,25,45,79,124,67,109,2,20,0
2014-05-11,09:00:00,29,20,48,0,94,0.7,1.125,24,44,81,124,72,109,2,19,0
2014-05-11,10:00:00,38,26,47,0,94,0.8,1.108,27,43,71,124,75,109,2,17,0
2014-05-11,11:00:00,30,16,45,0,94,0.6,1.088,20,42,93,124,79,109,2,15,0
2014-05-11,12:00:00,28,7,43,8,87,0.7,1.063,24,41,88,124,82,109,2,14,0
2014-05-11,13:00:00,30,15,41,0,86,0.6,1.038,23,40,94,124,84,109,2,12,0
2014-05-11,14:00:00,32,13,39,0,87,0.6,1.017,22,40,102,124,86,109,2,10,0
2014-05-11,16:00:00,38,9,35,0,87,0.5,0.971,16,38,120,123,95,109,2,8,0
2014-05-11,17:00:00,34,3,33,5,76,0.5,0.946,24,37,108,120,99,109,2,7,0
2014-05-11,18:00:00,29,3,30,6,66,0.6,0.921,37,36,92,120,101,109,2,6,0
2014-05-11,19:00:00,27,16,28,21,56,0.6,0.892,43,35,85,120,100,107,2,5,0
2014-05-11,20:00:00,32,22,27,28,48,0.7,0.871,51,34,78,120,99,102,2,4,0
2014-05-11,21:00:00,29,20,26,28,41,0.6,0.842,47,32,75,120,97,101,2,3,0
2014-05-11,22:00:00,29,20,25,28,34,0.7,0.817,52,32,64,120,92,101,2,2,0
2014-05-11,23:00:00,29,18,24,29,24,0.7,0.8,45,32,56,120,85,101,2,2,0
2014-05-12,00:00:00,36,25,24,28,20,0.8,0.783,55,32,34,120,74,101,2,2,0
2014-05-12,01:00:00,43,30,23,0,20,0.8,0.771,64,32,19,120,63,101,2,2,0
2014-05-12,02:00:00,52,36,23,0,20,0.8,0.75,61,33,14,120,53,101,2,2,0
2014-05-12,03:00:00,35,24,22,24,20,0.8,0.721,65,34,2,120,43,101,2,2,0
2014-05-12,04:00:00,57,40,21,40,22,1.1,0.712,73,36,2,120,33,101,2,2,0
2014-05-12,05:00:00,48,33,21,36,23,1,0.708,65,38,2,120,24,101,2,2,0
2014-05-12,06:00:00,53,37,21,42,25,1,0.717,57,40,2,120,16,101,2,2,0
2014-05-12,07:00:00,74,54,22,65,28,1.1,0.729,59,42,3,120,10,101,2,2,0
2014-05-12,08:00:00,90,67,23,90,32,1.2,0.75,88,44,4,120,6,101,2,2,0
2014-05-12,09:00:00,70,0,24,89,35,1.5,0.783,109,48,8,120,5,101,5,2,0
2014-05-12,10:00:00,69,50,25,0,35,0.9,0.788,78,50,50,120,9,101,7,2,0
2014-05-12,11:00:00,34,10,24,0,35,0.2,0.771,28,50,107,120,22,101,3,2,0
2014-05-12,12:00:00,54,17,25,58,39,0.1,0.746,26,50,122,122,37,101,3,2,0
2014-05-12,14:00:00,49,20,25,30,38,0.2,0.712,17,50,154,154,73,101,2,2,0
2014-05-12,15:00:00,50,19,26,46,38,0.2,0.7,22,50,157,157,93,101,2,2,0
2014-05-12,16:00:00,70,25,26,89,41,0.2,0.687,26,50,171,171,113,113,4,3,0
2014-05-12,17:00:00,70,24,27,87,45,0.3,0.679,28,51,176,176,134,134,6,3,0
2014-05-12,18:00:00,79,27,28,108,50,0.5,0.675,45,51,156,176,148,148,8,3,0
2014-05-12,19:00:00,95,43,30,140,56,0.6,0.675,60,52,139,176,152,152,10,3,0
2014-05-12,20:00:00,112,55,31,174,63,0.7,0.675,58,52,145,176,155,155,18,4,0
2014-05-12,21:00:00,74,54,32,71,66,0.7,0.679,58,52,119,176,152,155,19,5,0
2014-05-12,22:00:00,98,58,34,145,71,0.8,0.683,64,53,90,176,144,155,21,5,0
2014-05-12,23:00:00,71,47,35,92,75,0.7,0.683,46,53,106,176,138,155,24,6,0
2014-05-13,00:00:00,75,47,36,100,78,0.6,0.675,42,52,107,176,130,155,20,7,0
2014-05-13,01:00:00,73,39,37,95,79,0.6,0.667,43,52,96,176,120,155,19,8,0
2014-05-13,02:00:00,82,38,37,114,81,0.5,0.654,48,51,78,176,110,155,18,8,0
2014-05-13,03:00:00,88,40,38,125,85,0.5,0.642,55,51,63,176,101,155,18,9,0
2014-05-13,04:00:00,94,46,38,138,90,0.5,0.617,0,50,26,176,86,155,18,10,0
2014-05-13,05:00:00,82,48,38,114,93,0.7,0.604,71,50,28,176,74,155,10,10,0
2014-05-13,06:00:00,88,43,39,125,97,0.7,0.592,80,51,11,176,64,155,6,10,0
2014-05-13,07:00:00,97,64,39,143,100,1,0.587,100,53,2,176,51,155,7,10,0
2014-05-13,08:00:00,139,100,41,228,107,1.3,0.592,120,54,4,176,39,155,11,11,0
2014-05-13,09:00:00,139,100,43,228,113,1.3,0.583,120,55,4,176,27,155,11,11,0
2014-05-13,10:00:00,143,109,46,213,117,1.2,0.596,145,57,22,176,20,155,20,12,0
2014-05-13,11:00:00,144,110,50,200,121,1.2,0.638,157,63,34,176,16,155,21,12,0
2014-05-13,12:00:00,128,97,53,134,124,0.9,0.671,119,67,80,176,23,155,20,13,0
2014-05-13,13:00:00,0,0,54,0,128,0,0.691,0,69,0,176,22,155,0,14,0
2014-05-13,14:00:00,71,51,56,92,130,0.3,0.696,36,70,134,176,40,155,11,14,0
2014-05-13,15:00:00,77,35,57,103,133,0.2,0.696,20,70,137,176,59,155,4,14,0
2014-05-13,17:00:00,64,30,57,77,133,0.2,0.691,27,70,124,156,96,155,3,14,0
2014-05-13,18:00:00,62,26,57,74,132,0.2,0.678,29,69,124,145,110,155,4,14,0
2014-05-13,19:00:00,66,24,56,81,129,0.2,0.661,40,68,110,145,121,155,3,14,0
2014-05-13,20:00:00,78,31,55,105,126,0.2,0.639,46,68,98,139,124,152,2,13,0
2014-05-13,21:00:00,73,23,53,96,127,0.2,0.617,42,67,94,139,120,144,2,12,0
2014-05-13,22:00:00,73,25,52,96,125,0.2,0.591,43,66,86,139,114,138,2,11,0
2014-05-13,23:00:00,68,16,51,85,125,0.1,0.565,24,65,98,139,109,130,2,10,0
2014-05-14,00:00:00,89,19,49,128,126,0.1,0.543,30,64,87,139,103,124,2,10,0
2014-05-14,01:00:00,115,27,49,180,130,0.1,0.522,27,64,80,139,97,124,2,9,0
2014-05-14,02:00:00,92,24,48,134,130,0.1,0.504,21,62,86,139,92,124,2,8,0
2014-05-14,03:00:00,80,22,48,109,130,0.1,0.487,24,61,80,139,89,124,2,7,0
2014-05-14,04:00:00,77,21,46,103,128,0.1,0.47,29,60,72,139,85,124,2,7,0
2014-05-14,05:00:00,75,22,45,100,128,0.2,0.448,21,57,78,139,83,124,7,7,0
2014-05-14,06:00:00,69,12,44,88,126,0.2,0.426,21,55,75,139,82,124,6,7,0
2014-05-14,07:00:00,62,16,42,74,123,0.2,0.391,25,52,67,139,78,124,7,7,0
2014-05-14,08:00:00,55,8,38,59,116,0.2,0.343,30,48,60,139,75,124,6,6,0
2014-05-14,09:00:00,41,9,34,41,107,0.2,0.296,25,44,67,139,73,124,7,6,0
2014-05-14,10:00:00,44,10,30,44,100,0.2,0.252,24,38,71,139,71,124,11,6,0
2014-05-14,11:00:00,39,12,25,39,93,0.1,0.204,21,32,76,139,71,124,10,5,0
2014-05-14,12:00:00,38,17,22,38,89,0.1,0.17,22,28,78,139,72,124,9,5,0
2014-05-14,13:00:00,38,11,21,38,87,0.1,0.167,24,28,81,139,72,124,8,5,0
2014-05-14,14:00:00,32,11,20,32,84,0.1,0.158,20,27,93,139,74,124,4,5,0
2014-05-14,15:00:00,32,14,19,28,81,0.1,0.154,19,27,102,139,79,124,4,5,0
2014-05-14,16:00:00,33,7,18,19,78,0.1,0.15,22,27,104,124,84,124,2,5,0
2014-05-14,17:00:00,33,4,17,20,75,0.1,0.146,24,27,103,124,89,124,3,5,0
2014-05-14,18:00:00,31,8,16,31,74,0.2,0.146,40,28,88,110,91,124,4,5,0
2014-05-14,19:00:00,33,23,16,27,71,0.3,0.15,53,28,75,104,91,124,5,5,0
2014-05-14,20:00:00,47,19,16,47,69,0.3,0.154,68,29,61,104,88,120,3,5,0
2014-05-14,21:00:00,57,24,16,63,68,0.4,0.163,76,31,46,104,84,114,4,5,0
2014-05-14,22:00:00,59,27,16,68,66,0.4,0.171,80,32,38,104,77,109,4,5,0
2014-05-14,23:00:00,69,29,17,87,67,0.4,0.183,77,34,36,104,69,103,5,5,0
2014-05-15,00:00:00,69,29,17,88,65,0.4,0.196,88,37,19,104,58,97,5,5,0
2014-05-15,01:00:00,70,35,17,90,61,0.6,0.217,102,40,2,104,46,92,4,5,0
2014-05-15,02:00:00,77,43,18,104,60,0.8,0.246,103,43,2,104,35,91,4,5,0
2014-05-15,03:00:00,106,57,20,162,62,0.8,0.275,100,46,2,104,26,91,6,5,0
2014-05-15,04:00:00,122,67,21,193,66,0.9,0.308,101,49,2,104,18,91,7,6,0
2014-05-15,05:00:00,99,59,23,147,68,0.7,0.329,90,52,2,104,13,91,6,6,0
2014-05-15,06:00:00,81,49,24,112,69,0.6,0.346,81,55,2,104,8,91,5,6,0
2014-05-15,07:00:00,59,25,25,68,69,0.4,0.354,69,57,4,104,4,91,4,5,0
2014-05-15,08:00:00,55,23,26,60,69,0.5,0.367,66,58,12,104,4,91,6,5,0
2014-05-15,09:00:00,60,20,26,69,70,0.4,0.375,0,60,29,104,7,91,6,5,0
2014-05-15,10:00:00,62,24,27,74,71,0.4,0.383,58,61,42,104,12,91,6,5,0
2014-05-15,11:00:00,78,36,28,106,74,0.3,0.392,59,63,56,104,19,91,9,5,0
2014-05-15,12:00:00,101,42,29,151,79,0.3,0.4,55,64,78,104,28,91,13,5,0
2014-05-15,13:00:00,143,60,31,236,87,0.3,0.408,58,66,95,104,40,91,12,5,0
2014-05-15,14:00:00,164,79,33,277,97,0.3,0.417,48,67,118,118,54,91,9,6,0
2014-05-15,15:00:00,181,87,37,312,109,0.2,0.421,35,68,135,135,71,91,7,6,0
2014-05-15,17:00:00,268,96,44,397,138,0.3,0.433,46,69,138,138,99,99,7,6,0
2014-05-15,18:00:00,189,96,47,327,150,0.4,0.442,53,70,129,138,110,110,7,6,0
2014-05-15,19:00:00,173,91,50,295,162,0.4,0.446,70,71,103,138,116,116,7,6,0
2014-05-15,20:00:00,156,75,52,261,170,0.6,0.458,85,71,83,138,117,117,12,7,0
2014-05-15,21:00:00,199,98,55,348,182,0.6,0.467,97,72,59,138,112,117,12,7,0
2014-05-15,22:00:00,183,87,58,316,193,0.9,0.488,102,73,52,138,104,117,19,8,0
2014-05-15,23:00:00,169,94,61,287,201,1.4,0.529,126,75,25,138,90,117,26,9,0
2014-05-16,00:00:00,161,85,63,272,209,1.3,0.567,125,77,15,138,76,117,29,10,0
2014-05-16,01:00:00,127,77,65,204,213,0.9,0.579,117,78,13,138,60,117,29,11,0
2014-05-16,02:00:00,129,68,66,208,218,1,0.588,127,79,2,138,44,117,24,11,0
2014-05-16,03:00:00,129,70,66,207,220,0.9,0.592,131,80,2,138,31,117,26,12,0
2014-05-16,04:00:00,136,70,66,222,221,0.9,0.592,0,79,2,138,21,117,21,13,0
2014-05-16,05:00:00,161,82,67,271,226,1,0.604,122,81,2,138,14,117,21,13,0
2014-05-16,06:00:00,146,80,69,242,231,1,0.621,123,82,2,138,8,117,24,14,0
2014-05-16,07:00:00,120,60,70,189,236,0.6,0.629,92,83,14,138,7,117,17,15,0
2014-05-16,08:00:00,91,52,71,132,239,0.5,0.629,77,84,30,138,8,117,10,15,0
2014-05-16,09:00:00,63,24,72,76,240,0.2,0.621,34,82,80,138,17,117,5,15,0
2014-05-16,11:00:00,62,25,71,73,238,0.1,0.6,16,78,120,138,44,117,5,15,0
2014-05-16,12:00:00,41,11,69,40,234,0.1,0.592,12,76,129,138,60,117,3,14,0
2014-05-16,13:00:00,43,4,67,36,225,0.1,0.583,12,74,137,138,77,117,2,14,0
2014-05-16,14:00:00,45,26,65,28,215,0.1,0.575,12,73,143,143,95,117,2,13,0
2014-05-16,15:00:00,47,15,62,23,203,0.1,0.571,13,72,150,150,112,117,2,13,0
2014-05-16,16:00:00,49,3,58,33,190,0.1,0.567,16,71,154,154,127,127,2,13,0
2014-05-16,17:00:00,50,4,55,47,175,0.1,0.558,19,69,157,157,137,137,2,13,0
2014-05-16,18:00:00,45,17,51,43,164,0.1,0.546,29,68,144,157,142,142,4,13,0
2014-05-16,19:00:00,48,13,48,48,153,0.1,0.533,33,67,139,157,144,144,4,13,0
2014-05-16,20:00:00,82,24,46,114,147,0.3,0.521,50,65,132,157,145,145,6,12,0
2014-05-16,21:00:00,114,43,44,177,140,0.8,0.529,64,64,126,157,143,145,17,13,0
2014-05-16,22:00:00,114,60,43,177,134,1.2,0.542,54,62,129,157,141,145,29,13,0
2014-05-16,23:00:00,86,50,41,121,127,1,0.525,56,59,112,157,137,145,22,13,0
2014-05-17,00:00:00,78,48,39,105,120,1,0.512,50,55,114,157,132,145,25,13,0
2014-05-17,01:00:00,87,50,38,124,117,0.9,0.512,69,53,91,157,123,145,23,12,0
2014-05-17,02:00:00,116,64,38,182,116,1,0.512,139,54,4,157,106,145,21,12,0
2014-05-17,03:00:00,115,70,38,180,115,1,0.517,134,54,2,157,89,145,26,12,0
2014-05-17,04:00:00,94,67,38,137,111,1,0.521,132,57,5,157,73,145,27,13,0
2014-05-17,05:00:00,81,57,37,112,105,0.9,0.517,133,58,7,157,58,145,28,13,0
2014-05-17,06:00:00,78,57,36,97,99,1,0.517,128,58,15,157,44,145,40,14,0
2014-05-17,07:00:00,93,61,36,136,96,1.3,0.546,122,59,8,157,31,145,35,14,0
2014-05-17,08:00:00,97,72,37,134,96,1.4,0.583,113,61,10,157,18,145,37,15,0
2014-05-17,09:00:00,109,82,39,150,100,1.5,0.638,118,64,22,157,9,145,54,17,0
2014-05-17,10:00:00,107,80,42,161,103,1.7,0.704,104,68,51,157,15,145,75,20,0
2014-05-17,11:00:00,117,88,44,176,108,1.6,0.767,97,71,91,157,26,145,82,24,0
2014-05-17,12:00:00,97,72,47,109,110,1,0.804,62,73,138,157,43,145,53,26,0
2014-05-17,13:00:00,79,55,49,108,113,0.6,0.825,32,74,176,176,64,145,31,27,0
2014-05-17,14:00:00,104,55,50,106,117,0.7,0.85,25,75,208,208,88,145,27,28,0
2014-05-17,15:00:00,112,57,52,116,121,0.7,0.875,26,75,224,224,115,145,25,29,112
2014-05-17,22:00:00,58,24,58,65,119,0.9,0.971,57,76,85,240,182,206,13,31,58
2014-05-17,23:00:00,60,26,57,70,117,0.9,0.967,58,77,76,240,164,206,16,31,60
2014-05-18,00:00:00,68,34,56,85,116,1,0.967,65,77,60,240,143,206,17,31,68
2014-05-18,01:00:00,74,35,55,98,115,1,0.971,88,78,30,240,116,206,16,30,74
2014-05-18,02:00:00,87,51,55,124,113,1.2,0.979,115,77,2,240,88,206,14,30,0
2014-05-18,03:00:00,119,60,54,188,113,1.2,0.987,108,76,2,240,65,206,14,30,119
2014-05-18,04:00:00,109,70,55,167,114,1.4,1.004,100,75,2,240,46,206,16,29,109
2014-05-18,05:00:00,110,59,55,169,117,1.5,1.029,95,73,2,240,32,206,15,29,110
2014-05-18,06:00:00,116,65,55,181,120,1.4,1.046,92,71,2,240,22,206,19,28,116
2014-05-18,07:00:00,106,68,55,161,122,1.1,1.037,88,70,2,240,13,206,22,27,106
2014-05-18,08:00:00,90,67,55,126,121,1.1,1.025,87,69,12,240,7,206,32,27,90
2014-05-18,09:00:00,104,78,55,144,121,1.2,1.013,97,68,23,240,6,206,36,26,104
2014-05-18,10:00:00,107,80,55,152,121,1,0.983,88,67,50,240,12,206,32,24,107
2014-05-18,11:00:00,92,68,54,130,119,0.7,0.946,74,66,94,240,23,206,27,22,92
2014-05-18,13:00:00,117,88,56,166,122,0.9,0.95,74,69,170,240,61,206,34,21,117
2014-05-18,14:00:00,129,98,58,174,125,0.7,0.95,52,70,241,241,91,206,38,22,129
2014-05-18,15:00:00,131,86,59,119,125,0.5,0.942,24,70,261,261,123,206,38,22,131
2014-05-18,16:00:00,133,79,60,131,127,0.5,0.933,26,70,266,266,155,206,40,23,0
2014-05-18,17:00:00,137,95,62,191,129,0.8,0.933,29,70,274,274,186,206,46,24,137
2014-05-18,18:00:00,201,151,65,265,136,1.1,0.954,34,70,282,282,215,215,68,26,201
2014-05-18,19:00:00,210,160,70,273,144,1.4,0.987,44,70,275,282,238,238,71,28,210
2014-05-18,20:00:00,205,155,75,243,150,1.3,1.017,43,69,241,282,251,251,55,30,205
2014-05-18,21:00:00,165,125,79,197,156,1,1.025,43,69,210,282,256,256,37,31,165
2014-05-18,22:00:00,149,114,83,186,161,1,1.029,48,69,184,282,249,256,32,32,0
2014-05-18,23:00:00,142,108,86,191,166,0.9,1.029,52,68,165,282,237,256,30,33,142
2014-05-19,00:00:00,134,102,89,195,171,0.9,1.025,43,67,154,282,223,256,26,33,134
2014-05-19,01:00:00,135,103,92,192,175,0.9,1.021,49,66,121,282,204,256,24,33,0
2014-05-19,02:00:00,113,85,94,157,176,0.7,1,43,63,117,282,183,256,12,33,113
2014-05-19,03:00:00,75,55,93,97,172,0.6,0.975,47,60,116,282,164,256,10,33,75
2014-05-19,04:00:00,107,80,94,121,170,0.7,0.946,0,58,74,282,143,256,5,33,107
2014-05-19,05:00:00,123,93,95,0,170,0.8,0.917,29,56,129,282,133,256,4,32,123
2014-05-19,06:00:00,98,73,96,0,170,0.7,0.887,32,53,106,282,123,256,3,31,0
2014-05-19,07:00:00,92,68,96,0,170,0.7,0.871,45,51,91,282,114,256,3,31,92
2014-05-19,08:00:00,95,71,96,0,172,0.8,0.858,66,50,73,282,103,256,4,30,95
2014-05-19,09:00:00,109,82,96,87,170,0.9,0.846,79,49,64,282,96,256,10,28,109
2014-05-19,10:00:00,108,81,96,0,170,0.9,0.842,67,49,90,282,93,256,18,28,0
2014-05-19,11:00:00,170,129,98,178,173,1.2,0.862,46,47,128,282,94,256,36,28,170
2014-05-19,13:00:00,215,165,105,224,180,1.3,0.9,43,45,200,282,115,256,41,29,215
2014-05-19,14:00:00,212,162,107,197,181,1.4,0.929,40,44,236,282,131,256,38,29,212
2014-05-19,15:00:00,206,156,110,189,185,1.2,0.958,45,45,249,282,151,256,39,29,0
2014-05-19,16:00:00,196,147,113,215,190,1,0.979,41,46,262,282,174,256,29,29,196
2014-05-19,17:00:00,178,134,115,180,189,0.8,0.979,42,46,250,282,198,256,21,28,178
2014-05-19,18:00:00,139,106,113,164,184,0.7,0.962,44,47,214,275,213,256,15,25,139
2014-05-19,19:00:00,133,101,110,194,180,0.8,0.938,57,47,197,262,222,256,14,23,0
2014-05-19,20:00:00,137,104,108,187,177,0.9,0.921,68,48,177,262,223,256,12,21,137
2014-05-19,22:00:00,162,123,108,238,179,1.6,0.95,129,53,73,262,196,237,10,19,162
2014-05-19,23:00:00,208,158,110,267,183,1.9,0.992,170,59,49,262,171,223,12,18,208
2014-05-20,00:00:00,224,174,113,259,187,1.7,1.025,92,61,111,262,152,223,19,18,224
2014-05-20,01:00:00,246,196,117,265,191,1.7,1.058,89,62,86,262,131,223,25,18,246
2014-05-20,02:00:00,266,216,122,296,198,1.8,1.104,101,65,52,262,111,223,24,19,266
2014-05-20,03:00:00,271,221,129,263,207,1.9,1.158,79,66,63,262,94,223,24,19,271
2014-05-20,04:00:00,264,214,135,243,213,1.8,1.204,118,69,31,262,76,223,19,20,264
2014-05-20,05:00:00,240,190,139,197,212,1.6,1.238,99,71,52,262,65,223,13,20,240
2014-05-20,06:00:00,192,144,142,0,212,1.3,1.263,45,72,96,262,68,223,14,21,192
2014-05-20,07:00:00,125,95,143,0,212,0.9,1.271,46,72,72,262,70,223,13,21,125
2014-05-20,08:00:00,42,29,141,0,212,0.5,1.258,36,71,71,262,65,223,8,21,42
2014-05-20,09:00:00,28,19,139,0,219,0.3,1.233,26,69,84,262,65,223,4,21,28
2014-05-20,10:00:00,44,15,136,44,210,0.1,1.2,23,67,94,262,70,223,2,20,44
2014-05-20,11:00:00,34,13,131,30,203,0.1,1.154,24,66,108,262,76,223,2,19,34
2014-05-20,12:00:00,39,14,125,0,203,0.1,1.104,20,65,124,262,88,223,2,17,39
2014-05-20,13:00:00,47,8,119,0,201,0.1,1.054,18,64,148,262,100,223,2,15,47
2014-05-20,14:00:00,57,21,113,35,192,0.1,1,21,63,165,262,108,223,3,14,57
2014-05-20,15:00:00,77,24,107,0,193,0.3,0.963,25,62,181,262,122,223,5,13,77
2014-05-20,16:00:00,99,15,102,40,182,0.3,0.933,29,62,199,250,138,223,5,12,99
2014-05-20,17:00:00,99,15,97,40,174,0.3,0.913,29,61,199,214,152,223,5,11,99
2014-05-20,18:00:00,93,16,93,51,167,0.3,0.896,36,61,194,199,165,223,3,10,93
2014-05-20,19:00:00,89,23,90,70,160,0.3,0.875,40,60,191,199,175,223,4,10,89
2014-05-20,20:00:00,73,45,87,96,155,0.7,0.867,56,60,176,199,182,216,8,10,73
2014-05-20,21:00:00,263,107,87,394,166,2,0.904,67,59,172,199,185,196,27,11,263
2014-05-20,22:00:00,156,119,87,225,166,2.1,0.925,55,56,174,199,186,186,33,12,156
2014-05-20,23:00:00,149,114,85,214,162,1.7,0.917,71,52,96,199,175,186,23,12,149
2014-05-21,00:00:00,147,112,83,157,156,1.4,0.904,74,51,63,199,158,186,23,12,147
2014-05-21,01:00:00,120,91,78,104,147,0.9,0.871,64,50,59,199,141,186,17,12,120
2014-05-21,02:00:00,109,82,73,120,137,1.1,0.842,61,48,54,199,123,186,24,12,109
2014-05-21,03:00:00,104,78,67,123,128,1.1,0.808,81,49,30,199,103,186,21,12,104
2014-05-21,04:00:00,104,78,61,104,120,1.1,0.779,66,46,41,199,86,186,21,12,104
2014-05-21,05:00:00,113,85,57,100,115,1.2,0.763,79,45,28,199,68,186,24,12,113
2014-05-21,06:00:00,107,80,54,109,114,1.4,0.767,90,47,11,199,48,186,28,13,107
2014-05-21,07:00:00,104,78,53,139,116,1.7,0.8,86,49,17,199,38,186,40,14,104
2014-05-21,08:00:00,107,80,56,138,117,1.6,0.846,94,51,18,199,32,186,40,15,107
2014-05-21,09:00:00,107,80,58,127,117,1.4,0.892,74,53,62,199,33,186,40,17,107
2014-05-21,10:00:00,112,84,61,157,123,1.2,0.937,57,55,100,199,38,186,31,18,112
2014-05-21,11:00:00,115,87,64,147,128,1.1,0.979,52,56,127,199,51,186,28,19,115
2014-05-21,13:00:00,133,101,70,177,130,1.3,1.07,72,60,174,199,73,186,32,21,0
2014-05-21,14:00:00,149,114,74,213,138,1.5,1.13,62,62,216,216,102,186,32,22,149
2014-05-21,15:00:00,115,0,77,160,139,0,1.168,57,63,229,229,132,186,0,23,0
2014-05-21,17:00:00,126,59,82,202,151,1.8,1.281,37,65,0,229,169,186,54,26,126
2014-05-21,18:00:00,159,121,87,236,160,1.3,1.329,38,65,299,299,209,209,45,28,159
2014-05-21,19:00:00,166,126,91,248,168,1.6,1.39,52,66,294,299,242,242,42,30,166
2014-05-21,20:00:00,178,134,96,260,175,1.7,1.438,65,66,258,299,245,245,40,32,178
2014-05-21,21:00:00,190,143,97,245,168,1.7,1.424,66,66,211,299,251,251,34,32,190
2014-05-21,22:00:00,170,129,98,225,168,1.8,1.41,76,67,155,299,241,251,27,32,170
2014-05-21,23:00:00,170,129,99,227,169,1.7,1.41,93,68,99,299,219,251,28,32,170
2014-05-22,00:00:00,176,133,100,247,173,1.6,1.419,111,70,52,299,195,251,30,32,176
2014-05-22,01:00:00,189,142,102,270,181,1.8,1.462,120,72,27,299,174,251,38,33,189
2014-05-22,02:00:00,203,153,105,268,187,2.1,1.51,128,75,12,299,139,251,33,34,203
2014-05-22,03:00:00,218,168,110,264,194,2.3,1.567,125,77,17,299,104,251,28,34,218
2014-05-22,04:00:00,0,0,111,0,198,0,1.59,0,78,0,299,82,251,0,35,0
2014-05-22,05:00:00,237,187,116,279,207,2.6,1.66,123,80,2,299,52,251,15,34,237
2014-05-22,06:00:00,262,212,123,305,216,2,1.69,112,81,2,299,30,251,19,34,0
2014-05-22,07:00:00,280,230,131,306,224,2,1.705,100,82,4,299,17,251,22,33,280
2014-05-22,08:00:00,302,252,139,331,233,2.2,1.735,94,82,17,299,12,251,31,32,302
2014-05-22,09:00:00,313,263,148,341,243,2.6,1.795,85,82,61,299,16,251,43,33,313
2014-05-22,10:00:00,315,265,157,334,252,2.7,1.87,79,83,122,299,32,251,52,34,315
2014-05-22,11:00:00,313,263,166,328,260,2.8,1.955,79,84,178,299,55,251,53,35,313
2014-05-22,13:00:00,188,141,171,0,265,1.2,1.957,33,82,282,299,117,251,32,35,0
2014-05-22,14:00:00,107,62,168,66,258,0.6,1.914,22,80,214,299,143,251,14,35,107
2014-05-22,15:00:00,87,44,163,93,255,0.4,1.845,20,78,189,299,166,251,6,33,87
2014-05-22,16:00:00,92,41,158,105,248,0.5,1.787,22,76,193,299,188,251,9,32,92
2014-05-22,17:00:00,102,50,157,107,244,0.5,1.73,24,75,203,299,206,251,11,30,102
2014-05-22,18:00:00,78,42,154,86,237,0.5,1.696,28,75,182,294,213,251,10,29,78
2014-05-22,19:00:00,78,40,150,106,230,0.4,1.643,31,74,169,282,212,251,7,27,78
2014-05-22,20:00:00,86,59,147,122,224,0.6,1.596,51,73,147,282,197,251,8,26,86
2014-05-22,21:00:00,89,60,143,127,219,0.7,1.552,71,73,114,282,176,241,9,25,89
2014-05-22,22:00:00,91,60,140,131,214,0.7,1.504,69,73,112,282,164,219,10,24,91
2014-05-22,23:00:00,93,61,137,136,210,0.6,1.457,62,72,117,282,155,213,11,23,93
2014-05-23,00:00:00,97,63,134,144,206,0.6,1.413,57,69,123,282,146,213,12,23,97
2014-05-23,01:00:00,102,67,131,153,200,0.7,1.365,55,66,126,282,136,213,15,22,102
2014-05-23,02:00:00,105,70,127,159,195,0.8,1.309,58,63,116,282,128,213,17,21,105
2014-05-23,03:00:00,109,72,123,168,191,0.8,1.243,61,61,96,282,119,213,18,20,109
2014-05-23,04:00:00,0,0,123,0,191,0,1.243,0,61,0,282,115,213,0,20,0
2014-05-23,05:00:00,135,103,119,206,188,1,1.174,85,59,79,282,110,213,34,21,135
2014-05-23,06:00:00,138,105,115,187,182,1,1.13,66,57,101,282,108,213,35,22,138
2014-05-23,07:00:00,132,100,109,189,177,1,1.087,67,56,102,282,106,213,42,23,132
2014-05-23,08:00:00,135,103,103,210,172,1.1,1.039,80,55,95,282,102,213,42,23,135
2014-05-23,09:00:00,135,103,96,201,165,1.1,0.974,69,54,125,282,102,213,44,23,135
2014-05-23,10:00:00,129,98,88,193,159,1.2,0.909,58,53,172,282,110,213,47,23,129
2014-05-23,11:00:00,115,87,81,179,152,1,0.83,36,51,226,282,129,213,42,23,115
2014-05-23,15:00:00,68,44,71,86,146,0.5,0.757,22,50,214,248,193,213,11,22,68
2014-05-23,16:00:00,107,41,71,104,146,0.5,0.757,27,50,213,248,208,213,11,22,107
2014-05-23,17:00:00,107,52,71,125,147,0.6,0.761,38,51,214,248,219,219,14,22,0
2014-05-23,18:00:00,107,55,71,113,148,0.6,0.765,37,51,214,248,224,224,15,22,107
2014-05-23,19:00:00,93,50,72,126,149,0.6,0.774,44,52,194,248,220,224,13,22,93
2014-05-23,20:00:00,82,55,72,114,149,0.7,0.778,54,52,177,248,212,224,13,22,82
2014-05-23,21:00:00,0,0,72,0,150,0,0.782,0,51,0,248,207,224,0,23,0
2014-05-23,22:00:00,109,75,73,168,151,1,0.795,93,52,101,248,190,224,16,23,0
2014-05-23,23:00:00,129,90,74,208,155,1.3,0.827,98,54,92,248,172,224,30,24,129
2014-05-24,00:00:00,119,88,75,187,157,1.1,0.85,58,54,157,248,164,224,35,25,0
2014-05-24,01:00:00,123,93,76,186,158,1.3,0.877,69,55,107,248,149,224,36,26,123
2014-05-24,02:00:00,118,87,77,185,159,1.4,0.905,67,55,87,248,131,224,37,27,118
2014-05-24,03:00:00,115,87,78,173,160,1.3,0.927,66,55,73,248,113,224,36,28,115
2014-05-24,04:00:00,0,0,78,0,160,0,0.927,0,55,0,248,103,224,0,28,0
2014-05-24,05:00:00,134,102,78,154,157,1.4,0.945,57,54,51,248,95,224,6,27,134
2014-05-24,06:00:00,100,75,76,0,156,1,0.945,50,53,42,248,87,224,3,25,100
2014-05-24,07:00:00,90,67,75,0,154,0.8,0.936,32,52,80,248,85,224,2,23,90
2014-05-24,08:00:00,109,82,74,0,151,0.9,0.927,49,50,54,248,71,224,2,22,109
2014-05-24,09:00:00,97,72,73,0,148,1.1,0.927,44,49,51,248,63,224,2,20,97
2014-05-24,10:00:00,99,74,71,0,146,1.1,0.923,49,49,47,248,57,224,2,18,99
2014-05-24,11:00:00,102,76,71,0,144,1.2,0.932,47,49,56,248,54,224,2,16,102
2014-05-24,12:00:00,104,78,71,0,143,1.2,0.945,49,50,45,242,53,224,2,14,104
2014-05-24,13:00:00,95,71,71,0,146,1.1,0.968,53,51,39,224,52,224,2,14,95
2014-05-24,14:00:00,93,69,72,0,148,1,0.986,51,52,42,214,52,224,2,13,93
2014-05-24,15:00:00,94,70,73,0,154,1.1,1.014,49,54,48,214,48,224,2,13,94
2014-05-24,16:00:00,103,77,75,0,158,1.1,1.041,44,54,56,214,48,224,2,12,0
2014-05-24,17:00:00,115,87,76,0,161,1.1,1.064,39,55,65,214,50,224,2,12,115
2014-05-24,18:00:00,105,79,77,0,167,1,1.082,42,55,65,194,52,220,2,11,0
2014-05-24,19:00:00,99,74,79,0,172,1.2,1.109,47,55,47,177,51,212,2,11,99
2014-05-24,20:00:00,92,68,79,0,180,1,1.123,50,55,44,157,51,207,2,10,92
2014-05-24,21:00:00,104,78,79,0,180,0.8,1.109,38,54,64,157,54,190,2,10,104
2014-05-24,22:00:00,107,80,79,0,182,0.8,1.1,33,51,73,157,58,172,2,9,107
2014-05-24,23:00:00,107,80,79,0,177,0.8,1.078,31,48,72,157,61,164,2,8,107
2014-05-25,00:00:00,114,86,79,0,175,1.5,1.096,51,48,30,107,58,149,2,7,114
2014-05-25,01:00:00,122,92,79,0,171,2,1.126,64,48,17,87,52,131,2,5,122
2014-05-25,02:00:00,137,104,79,0,163,2.2,1.161,67,48,11,80,45,113,2,4,137
2014-05-25,03:00:00,138,105,80,0,154,1.7,1.178,55,47,24,80,42,103,2,2,138
2014-05-25,04:00:00,149,114,82,0,154,1.2,1.179,19,46,38,80,41,95,2,2,149
2014-05-25,05:00:00,175,132,83,0,0,1,1.162,32,45,36,80,38,87,2,2,175
2014-05-25,06:00:00,180,136,85,0,0,1,1.162,33,45,28,80,32,85,2,2,180
2014-05-25,07:00:00,173,131,88,0,0,1,1.171,40,45,21,73,26,71,2,2,173
2014-05-25,08:00:00,176,133,90,279,279,0.5,1.154,37,44,57,73,29,63,4,2,176
2014-05-25,09:00:00,0,0,91,0,279,0,1.157,0,44,0,73,31,61,0,2,0
2014-05-25,10:00:00,464,153,94,564,422,0.2,1.117,40,44,70,73,39,61,2,2,464
2014-05-25,11:00:00,430,132,97,530,458,0.2,1.074,25,43,88,88,48,61,2,2,430
2014-05-25,12:00:00,169,63,96,287,415,0.1,1.026,18,42,98,98,57,61,2,2,0
2014-05-25,13:00:00,82,23,94,114,355,0.1,0.983,16,40,105,105,67,67,2,2,82
2014-05-25,14:00:00,0,0,95,0,355,0,0.982,0,40,0,105,73,73,0,2,0
2014-05-25,15:00:00,80,12,93,110,314,0.1,0.936,18,38,110,110,88,88,2,2,80
2014-05-25,16:00:00,66,10,90,81,281,0.1,0.891,18,37,113,113,97,97,2,2,0
2014-05-25,17:00:00,66,3,86,82,256,0.1,0.845,19,36,113,113,100,100,2,2,66
2014-05-25,18:00:00,59,12,83,68,235,0.1,0.805,20,35,108,113,105,105,2,2,59
2014-05-25,19:00:00,52,7,80,53,217,0.1,0.755,28,34,98,113,106,106,2,2,52
2014-05-25,20:00:00,50,13,77,50,202,0.2,0.718,44,34,79,113,104,106,2,2,50
2014-05-25,21:00:00,53,12,74,56,190,0.3,0.695,58,35,65,113,98,106,2,2,53
2014-05-25,22:00:00,46,16,71,46,178,0.4,0.677,71,37,49,113,92,106,2,2,46
2014-05-25,23:00:00,49,18,68,49,169,0.5,0.664,79,39,36,113,83,106,2,2,49
2014-05-26,00:00:00,54,15,65,57,162,0.6,0.623,84,40,23,113,71,106,2,2,54
2014-05-26,01:00:00,26,11,62,26,153,0.3,0.545,41,39,70,113,66,106,2,2,26
2014-05-26,02:00:00,41,15,58,41,147,0.3,0.459,61,39,42,113,58,106,2,2,41
2014-05-26,03:00:00,50,16,53,50,141,0.5,0.405,95,41,4,113,46,106,2,2,50
2014-05-26,04:00:00,40,10,49,36,136,0.4,0.368,79,43,20,113,39,106,2,2,40
2014-05-26,05:00:00,56,14,43,62,132,0.4,0.341,76,45,18,113,33,106,2,2,0
2014-05-26,06:00:00,67,21,38,83,130,0.4,0.314,76,47,13,113,28,106,3,2,67
2014-05-26,07:00:00,61,21,33,71,127,0.5,0.291,74,49,14,113,26,106,3,2,61
2014-05-26,08:00:00,57,19,28,64,117,0.4,0.286,69,50,36,113,27,106,4,2,0
2014-05-26,09:00:00,63,20,28,76,115,0.4,0.291,65,51,56,113,25,106,4,2,63
2014-05-26,10:00:00,77,26,22,104,95,0.5,0.304,58,52,72,113,29,106,5,2,77
2014-05-26,11:00:00,81,11,17,111,77,0.3,0.309,46,53,100,113,41,106,5,3,81
2014-05-26,13:00:00,68,23,15,86,66,0.3,0.326,31,54,158,158,73,106,5,3,68
2014-05-26,14:00:00,77,20,15,103,68,0.3,0.325,29,53,170,170,92,106,4,3,77
2014-05-26,16:00:00,86,27,16,122,70,0.3,0.342,47,55,165,170,127,127,4,3,86
2014-05-26,17:00:00,87,33,17,123,71,0.4,0.354,53,56,154,170,140,140,5,3,87
2014-05-26,18:00:00,68,31,18,85,72,0.4,0.367,65,58,124,170,146,146,5,3,68
2014-05-26,19:00:00,77,24,19,103,74,0.4,0.379,72,60,111,170,148,148,4,3,77
2014-05-26,20:00:00,81,38,20,112,77,0.6,0.396,108,63,66,170,139,148,5,3,81
2014-05-26,21:00:00,79,30,21,107,79,0.6,0.408,109,65,44,170,125,148,4,4,79
2014-05-26,22:00:00,75,28,21,99,81,0.6,0.417,113,67,27,170,107,148,4,4,75
2014-05-26,23:00:00,66,32,22,82,82,0.7,0.425,131,69,8,170,87,148,4,4,66
2014-05-27,01:00:00,72,28,23,93,86,0.7,0.446,133,75,2,170,48,148,5,4,72
2014-05-27,02:00:00,70,21,23,89,88,0.6,0.458,129,78,2,170,33,148,7,4,70
2014-05-27,03:00:00,76,26,23,101,91,0.7,0.467,126,79,2,170,20,148,7,4,76
2014-05-27,04:00:00,83,28,24,116,94,0.9,0.487,114,80,2,170,12,148,6,5,83
2014-05-27,05:00:00,78,34,25,106,96,0.9,0.508,114,82,2,170,6,148,6,5,78
2014-05-27,06:00:00,88,36,26,125,97,0.7,0.521,115,84,2,170,3,148,4,5,0
2014-05-27,07:00:00,182,84,28,314,108,0.4,0.517,78,84,44,170,8,148,4,5,182
2014-05-27,08:00:00,279,102,32,405,122,0.5,0.521,100,85,18,170,9,148,4,5,0
2014-05-27,09:00:00,374,104,35,479,139,0.4,0.521,58,85,64,170,17,148,4,5,374
2014-05-27,10:00:00,143,42,36,236,144,0.1,0.504,18,83,119,170,32,148,2,5,143
2014-05-27,11:00:00,122,29,37,194,148,0.1,0.496,20,82,122,170,47,148,2,5,122
2014-05-27,12:00:00,99,16,37,147,151,0.1,0.488,19,81,123,170,62,148,2,4,99
2014-05-27,13:00:00,71,9,36,91,151,0.1,0.479,17,81,123,170,77,148,2,4,71
2014-05-27,14:00:00,72,21,36,94,151,0.1,0.471,0,83,0,167,88,148,2,4,0
2014-05-27,15:00:00,109,12,36,168,153,0.1,0.462,17,82,103,165,96,148,2,4,109
2014-05-27,17:00:00,58,18,35,66,151,0.2,0.45,25,80,89,124,111,148,2,4,58
2014-05-27,18:00:00,54,12,34,57,150,0.1,0.437,27,78,98,123,108,148,2,4,0
2014-05-27,20:00:00,0,0,33,0,151,0,0.417,0,75,0,123,102,125,0,4,0
2014-05-27,23:00:00,41,11,32,41,154,0.1,0.371,33,66,88,123,95,111,2,4,0
2014-05-28,01:00:00,39,8,32,39,154,0.3,0.335,52,58,60,123,88,111,2,3,39
2014-05-28,02:00:00,53,15,32,55,153,0.5,0.33,101,57,7,123,65,111,2,3,0
2014-05-28,03:00:00,69,25,32,87,152,1.3,0.36,112,56,2,123,39,111,3,3,0
2014-05-28,04:00:00,63,31,32,76,150,1.1,0.37,60,53,2,123,32,111,3,3,63
2014-05-28,05:00:00,74,30,32,98,150,1.1,0.38,99,52,2,123,27,111,3,3,0
2014-05-28,06:00:00,87,55,33,124,149,1,0.395,97,51,2,123,23,111,5,3,87
2014-05-28,07:00:00,89,44,31,128,140,0.9,0.42,97,52,2,123,11,111,7,3,0
2014-05-28,08:00:00,88,42,28,126,126,0.7,0.43,117,53,6,123,10,111,12,3,0
2014-05-28,09:00:00,92,49,25,134,109,0.8,0.45,132,57,18,123,5,111,20,4,92
2014-05-28,10:00:00,70,41,25,89,102,0.6,0.475,108,62,56,123,11,111,17,5,0
2014-05-28,11:00:00,57,0,25,63,95,0.3,0.485,42,63,130,130,27,111,14,5,0
2014-05-28,14:00:00,104,18,25,83,89,0.2,0.5,31,63,208,208,97,111,9,6,0
2014-05-28,16:00:00,0,0,26,0,82,0,0.521,0,66,0,209,139,139,0,7,0
2014-05-28,17:00:00,102,31,27,144,87,0.3,0.526,40,67,204,209,166,166,11,7,0
2014-05-28,18:00:00,80,31,28,109,90,0.3,0.537,40,67,175,209,183,183,7,7,0
2014-05-28,19:00:00,0,0,29,0,90,0,0.561,0,70,0,209,192,192,0,8,0
2014-05-28,20:00:00,101,31,29,151,93,0.4,0.553,47,69,179,209,194,194,17,8,0
2014-05-28,21:00:00,93,33,30,136,95,0.5,0.55,48,68,168,209,191,194,18,9,0
2014-05-28,22:00:00,92,34,30,133,97,0.6,0.552,57,67,148,209,181,194,19,9,92
2014-05-28,23:00:00,92,37,31,134,102,0.6,0.576,58,68,137,209,169,194,20,10,0
2014-05-29,00:00:00,94,41,32,138,104,0.6,0.577,59,68,127,209,163,194,21,11,0
2014-05-29,02:00:00,97,36,34,143,113,0.4,0.582,49,66,113,209,142,194,23,13,0
2014-05-29,04:00:00,101,43,36,152,120,0.5,0.514,52,62,84,209,125,194,23,14,101
2014-05-29,05:00:00,95,48,37,140,122,0.5,0.486,70,61,57,209,112,194,20,15,0
2014-05-29,06:00:00,100,47,36,149,123,0.6,0.468,86,60,32,209,97,194,14,16,0
2014-05-29,07:00:00,122,50,37,194,126,1,0.473,121,61,4,209,80,194,14,16,122
2014-05-29,08:00:00,139,75,38,228,131,1,0.486,142,63,11,209,66,194,18,16,0
2014-05-29,09:00:00,102,76,40,0,131,0.9,0.491,141,63,45,209,56,194,25,16,102
2014-05-29,11:00:00,117,62,41,183,139,0.7,0.505,79,63,179,209,59,194,24,17,117
2014-05-29,12:00:00,118,52,41,128,139,0.5,0.519,56,64,236,236,81,194,20,17,0
2014-05-29,14:00:00,129,25,43,60,140,0.2,0.533,37,65,258,264,142,194,8,18,0
2014-05-29,17:00:00,102,24,42,89,135,0.1,0.5,70,66,204,264,221,221,6,17,0
2014-05-29,18:00:00,141,43,42,132,137,0.1,0.491,82,68,282,282,229,229,9,17,0
2014-05-29,19:00:00,111,28,42,74,134,0.1,0.474,79,69,222,282,234,234,7,16,0
2014-05-29,20:00:00,73,24,41,96,131,0.1,0.461,80,70,165,282,225,234,5,16,0
2014-05-29,21:00:00,92,41,42,133,131,1.4,0.5,121,73,102,282,205,234,8,15,0
2014-05-29,22:00:00,89,45,42,128,131,0.7,0.504,102,75,120,282,188,234,12,15,0
2014-05-29,23:00:00,107,53,43,163,132,1.3,0.535,146,79,56,282,165,234,10,15,0
2014-05-30,00:00:00,121,68,44,191,134,1,0.552,211,86,2,282,144,234,12,14,0
2014-05-30,01:00:00,128,79,46,205,137,0.9,0.57,185,91,2,282,119,234,19,14,0
2014-05-30,02:00:00,161,90,48,271,143,0.9,0.591,180,97,2,282,84,234,22,14,0
2014-05-30,03:00:00,149,101,50,248,148,1.5,0.639,127,101,55,282,63,234,35,15,0
2014-05-30,04:00:00,144,110,53,234,152,2.4,0.722,89,102,99,282,55,234,52,16,0
2014-05-30,05:00:00,133,98,56,215,155,2.2,0.796,109,104,63,282,50,234,48,17,0
2014-05-30,06:00:00,103,71,57,156,156,1.5,0.835,131,106,23,282,38,234,37,18,0
2014-05-30,08:00:00,114,77,57,177,151,2.8,0.943,107,103,74,282,46,234,77,22,0
2014-05-30,09:00:00,140,93,58,229,155,3.3,1.048,113,102,97,282,58,234,96,25,140
2014-05-30,10:00:00,132,86,59,213,157,2.9,1.125,71,101,194,282,82,234,89,27,0
2014-05-30,11:00:00,151,105,61,252,160,3,1.221,68,100,235,282,105,234,91,30,151
2014-05-30,13:00:00,164,105,66,219,170,1.2,1.317,32,100,327,327,163,234,49,34,164
2014-05-30,15:00:00,184,106,73,216,184,1.2,1.404,32,99,367,367,243,243,54,37,184
2014-05-30,16:00:00,181,108,76,228,186,1.2,1.45,34,98,362,367,279,279,48,39,0
2014-05-30,18:00:00,157,99,82,194,194,0.8,1.513,34,94,314,367,300,300,42,42,157
2014-05-30,19:00:00,146,98,85,193,199,0.9,1.546,40,93,291,367,300,300,42,44,146
2014-05-30,20:00:00,127,86,87,200,203,0.9,1.579,44,91,254,367,300,300,34,45,0
2014-05-30,21:00:00,116,84,89,182,205,1,1.562,52,88,214,367,300,300,31,46,0
2014-05-30,22:00:00,117,88,91,182,207,1.1,1.579,56,86,185,367,290,300,34,47,0
2014-05-30,23:00:00,102,76,92,133,206,0.9,1.562,46,82,178,367,266,300,32,48,102
2014-05-31,00:00:00,92,68,92,128,204,0.8,1.554,44,75,161,367,241,300,27,48,92
2014-05-31,02:00:00,104,78,91,155,196,1,1.562,104,67,72,367,184,300,23,49,0
2014-05-31,03:00:00,107,78,90,164,192,1.4,1.558,134,68,42,367,153,300,26,48,107
2014-05-31,04:00:00,118,89,89,182,190,1.6,1.525,105,68,26,367,124,300,26,47,0
2014-05-31,05:00:00,119,86,89,188,189,1.9,1.513,80,67,29,367,101,300,30,46,0
2014-05-31,06:00:00,119,90,89,180,190,2.6,1.558,106,66,38,367,83,300,47,47,0
2014-05-31,07:00:00,128,97,91,187,192,3.1,1.617,105,66,37,367,65,300,74,48,128
2014-05-31,09:00:00,145,111,93,230,193,3.7,1.662,111,66,68,367,46,300,132,51,0
2014-05-31,10:00:00,0,0,93,0,192,0,1.609,0,66,0,367,42,300,0,49,0
2014-05-31,11:00:00,172,124,94,294,194,3.8,1.643,115,68,112,367,52,300,127,51,0
2014-05-31,12:00:00,177,132,95,303,197,3.4,1.7,112,70,148,367,69,300,108,53,0
2014-05-31,13:00:00,173,125,96,296,201,3,1.778,95,73,200,367,94,300,95,55,173
2014-05-31,14:00:00,173,131,97,257,203,2.7,1.843,79,75,251,367,124,300,86,56,173
2014-05-31,15:00:00,185,139,98,296,206,3,1.922,79,77,285,362,160,300,92,58,185
2014-05-31,16:00:00,199,149,100,288,209,2.7,1.987,62,79,322,333,198,300,61,58,199
2014-05-31,17:00:00,185,139,102,280,212,2.5,2.057,62,80,328,328,235,300,50,59,185
2014-05-31,18:00:00,199,149,104,266,215,2.7,2.139,62,81,300,328,243,300,40,59,0
2014-05-31,19:00:00,175,132,106,269,218,2.7,2.217,60,82,276,328,264,300,34,58,175
2014-05-31,20:00:00,173,131,108,230,219,2.3,2.278,58,82,251,328,277,300,34,58,0
2014-05-31,21:00:00,182,137,110,213,221,1.7,2.309,56,83,220,328,279,290,53,59,0
2014-05-31,22:00:00,195,105,111,340,228,1,2.304,30,81,188,328,271,279,24,59,195
2014-06-01,00:00:00,92,68,112,0,237,0.8,2.368,20,82,160,328,246,279,2,59,0
2014-06-01,01:00:00,89,66,112,0,242,0.7,2.355,19,80,149,328,221,279,2,58,0
2014-06-01,03:00:00,65,47,110,0,251,0.6,2.3,18,71,155,328,181,279,2,56,65
2014-06-01,04:00:00,59,42,108,0,255,0.6,2.255,20,67,146,328,166,279,2,55,0
2014-06-01,05:00:00,57,40,105,40,246,0.6,2.195,27,64,131,328,154,279,2,53,57
2014-06-01,06:00:00,67,48,104,64,239,0.7,2.109,22,61,146,328,148,279,2,51,67
2014-06-01,07:00:00,64,46,101,46,231,0.7,2,32,57,138,328,147,279,2,48,0
2014-06-01,08:00:00,0,0,101,0,232,0,1.929,0,55,0,328,145,279,0,45,0
2014-06-01,09:00:00,59,34,97,68,222,0.7,1.786,40,52,123,328,141,279,2,39,0
2014-06-01,10:00:00,54,38,95,54,212,0.7,1.736,45,51,121,328,137,279,3,38,0
2014-06-01,11:00:00,46,32,90,0,207,0.6,1.591,32,48,147,328,136,279,3,32,46
2014-06-01,12:00:00,55,29,86,60,192,0.6,1.464,28,44,158,328,138,279,3,27,55
2014-06-01,13:00:00,72,30,81,69,178,0.5,1.35,25,41,177,328,144,279,3,23,0
2014-06-01,14:00:00,106,34,77,0,172,0.5,1.25,19,38,212,328,154,279,3,19,106
2014-06-01,15:00:00,107,44,73,65,157,0.6,1.141,21,35,214,328,165,279,8,15,0
2014-06-01,16:00:00,117,74,69,156,148,1.1,1.068,30,34,234,328,173,279,16,13,0
2014-06-01,17:00:00,124,76,66,198,143,1.1,1.005,28,32,190,300,182,279,13,12,0
2014-06-01,18:00:00,75,55,62,96,131,0.7,0.914,32,31,169,276,188,279,7,10,75
2014-06-01,19:00:00,62,41,58,73,118,0.9,0.832,42,30,136,251,186,279,2,9,0
2014-06-01,20:00:00,68,49,54,54,106,1,0.773,66,31,93,234,178,279,2,7,0
2014-06-01,21:00:00,64,46,50,47,95,0.9,0.736,56,31,85,234,167,271,2,5,0
2014-06-01,22:00:00,72,52,48,0,78,0.9,0.732,52,32,79,234,150,269,2,4,0
2014-06-01,23:00:00,65,47,48,0,78,0.7,0.73,38,32,96,234,135,246,2,4,0
2014-06-02,00:00:00,67,48,47,53,76,0.8,0.73,57,33,61,234,114,221,2,4,0
2014-06-02,01:00:00,69,50,46,0,76,0.7,0.73,60,35,52,234,96,199,2,4,0
2014-06-02,02:00:00,64,46,46,52,75,0.7,0.735,69,37,38,234,80,188,2,4,0
2014-06-02,03:00:00,67,48,46,56,74,0.7,0.739,93,41,12,234,65,188,2,4,0
2014-06-02,05:00:00,41,17,45,18,72,0.3,0.732,19,41,129,234,67,188,2,4,0
2014-06-02,06:00:00,44,21,44,44,71,0.4,0.718,33,42,98,234,69,188,2,4,0
2014-06-02,07:00:00,37,13,42,37,71,0.4,0.705,33,42,101,234,70,188,2,4,0
2014-06-02,08:00:00,29,19,41,28,68,0.4,0.691,48,42,92,234,75,188,2,4,0
2014-06-02,09:00:00,35,19,40,28,66,0.4,0.678,42,42,110,234,83,188,2,4,0
2014-06-02,10:00:00,42,13,39,25,64,0.3,0.661,26,41,132,234,96,188,2,4,0
2014-06-02,11:00:00,42,24,39,42,63,0.4,0.652,35,41,123,234,112,188,2,4,0
2014-06-02,12:00:00,0,0,39,0,63,0,0.655,0,42,0,234,112,188,0,4,0
2014-06-02,14:00:00,50,27,39,44,61,0.5,0.655,18,42,157,234,124,188,4,4,50
2014-06-02,15:00:00,55,28,38,52,61,0.5,0.65,21,42,164,234,133,188,5,4,55
2014-06-02,16:00:00,78,31,36,42,55,0.5,0.623,16,41,182,190,146,188,4,3,78
2014-06-02,18:00:00,79,24,33,44,43,0.4,0.582,20,40,183,188,164,186,3,3,79
2014-06-02,19:00:00,62,26,32,47,42,0.5,0.564,28,39,169,188,171,178,3,3,62
2014-06-02,20:00:00,52,30,31,51,42,0.5,0.541,36,38,161,188,169,171,2,3,0
2014-06-02,21:00:00,53,37,31,47,42,0.7,0.532,64,38,118,188,165,171,2,3,53
2014-06-02,22:00:00,61,39,30,71,43,1,0.536,98,40,69,188,154,171,2,3,0
2014-06-02,23:00:00,0,0,29,0,43,0,0.529,0,41,0,188,153,171,0,3,0
2014-06-03,00:00:00,72,52,30,88,45,1,0.538,103,43,58,188,135,171,2,3,0
2014-06-03,02:00:00,60,43,29,54,46,0.8,0.548,79,44,62,188,101,171,4,3,0
2014-06-03,03:00:00,71,45,29,91,48,0.9,0.557,125,46,8,188,78,171,3,3,71
2014-06-03,04:00:00,67,48,30,62,48,0.9,0.573,110,49,4,188,55,171,3,3,67
2014-06-03,05:00:00,47,32,31,47,50,0.5,0.582,65,51,33,188,43,171,3,3,47
2014-06-03,06:00:00,66,31,31,82,51,0.5,0.586,90,53,25,188,37,171,3,3,66
2014-06-03,08:00:00,43,30,33,38,54,0.5,0.595,56,56,71,188,38,171,5,3,43
2014-06-03,09:00:00,51,27,33,52,55,0.5,0.6,48,56,91,188,41,171,10,3,0
2014-06-03,10:00:00,65,26,34,80,57,0.6,0.614,45,57,101,188,46,171,17,4,0
2014-06-03,12:00:00,49,21,33,41,58,0.3,0.604,21,56,156,188,73,171,6,5,0
2014-06-03,13:00:00,49,21,33,41,58,0.3,0.596,21,56,156,188,90,171,6,5,49
2014-06-03,14:00:00,49,21,33,41,57,0.3,0.587,21,56,156,188,109,171,6,5,0
2014-06-03,15:00:00,107,30,33,60,58,0.6,0.591,20,56,214,214,135,171,11,5,107
2014-06-03,16:00:00,0,0,33,0,58,0,0.595,0,58,0,214,146,171,0,5,0
2014-06-03,17:00:00,107,30,33,60,59,0.6,0.6,20,58,214,214,166,171,11,6,0
2014-06-03,18:00:00,107,30,33,60,60,0.6,0.609,20,58,214,214,185,185,11,6,107
2014-06-03,19:00:00,107,30,33,60,61,0.6,0.614,20,57,214,214,189,189,11,6,0
2014-06-03,20:00:00,107,30,33,60,61,0.6,0.618,20,57,214,214,197,197,11,7,107
2014-06-03,21:00:00,61,40,34,72,62,0.8,0.623,63,57,132,214,194,197,9,7,61
2014-06-03,22:00:00,76,48,34,102,64,0.9,0.618,87,56,105,214,187,197,10,7,0
2014-06-03,23:00:00,92,54,35,134,67,0.9,0.63,72,57,106,214,171,197,19,8,92
2014-06-04,00:00:00,74,45,35,97,67,0.7,0.617,56,55,111,214,164,197,21,9,0
2014-06-04,01:00:00,73,45,35,96,69,0.8,0.617,63,54,81,214,147,197,16,9,0
2014-06-04,03:00:00,92,52,35,134,73,1,0.626,125,55,4,214,99,197,12,10,0
2014-06-04,05:00:00,112,81,38,174,82,1,0.652,125,58,2,214,56,197,9,11,0
2014-06-04,06:00:00,113,85,40,0,83,0,0.659,0,57,0,214,49,197,0,11,0
2014-06-04,07:00:00,113,85,42,0,83,0,0.667,0,55,0,214,40,197,0,12,0
2014-06-04,08:00:00,0,0,43,0,85,0,0.675,0,55,0,214,25,197,0,12,0
2014-06-04,09:00:00,119,90,46,139,89,1.3,0.715,79,57,68,214,23,197,26,13,0
2014-06-04,10:00:00,109,82,48,119,91,1.2,0.745,75,59,94,214,34,197,24,13,0
2014-06-04,11:00:00,74,54,49,66,91,1,0.77,67,60,132,214,60,197,15,13,0
2014-06-04,13:00:00,79,33,51,57,93,0.6,0.81,24,61,183,214,130,197,9,14,0
2014-06-04,14:00:00,105,41,52,65,95,0.6,0.825,24,61,210,214,144,197,10,14,105
2014-06-04,15:00:00,118,44,53,82,96,0.7,0.83,27,62,235,235,157,197,14,14,118
2014-06-04,16:00:00,111,47,53,81,95,0.8,0.829,29,60,221,235,165,197,12,14,0
2014-06-04,17:00:00,95,45,53,95,97,0.8,0.838,44,61,196,235,181,197,11,14,95
2014-06-04,18:00:00,79,49,54,84,98,0.8,0.848,48,62,183,235,192,197,11,14,79
2014-06-04,19:00:00,77,43,55,93,99,0.6,0.848,40,63,181,235,198,198,9,14,0
2014-06-04,20:00:00,77,56,56,76,100,0.7,0.852,57,65,150,235,195,198,9,14,77
2014-06-04,21:00:00,69,50,56,57,99,0.7,0.848,50,65,136,235,189,198,8,14,0
2014-06-04,22:00:00,74,51,56,97,99,0.8,0.843,71,64,98,235,175,198,10,14,0
2014-06-04,23:00:00,0,0,57,0,98,0,0.84,0,63,0,235,166,198,0,13,0
2014-06-05,00:00:00,74,54,57,91,97,0.9,0.85,101,66,42,235,141,198,9,13,0
2014-06-05,01:00:00,78,57,57,102,98,1,0.86,94,67,43,235,119,198,8,12,0
2014-06-05,02:00:00,0,0,58,0,97,0,0.858,0,65,0,235,108,198,0,12,0
2014-06-05,03:00:00,103,77,59,122,96,1,0.858,72,63,61,235,88,198,12,12,0
2014-06-05,05:00:00,102,76,59,119,92,1,0.858,74,57,29,235,52,198,15,13,0
2014-06-05,06:00:00,0,0,58,0,92,0,0.858,0,57,0,235,43,198,0,13,0
2014-06-05,07:00:00,0,0,57,0,92,0,0.858,0,57,0,235,43,198,0,13,0
2014-06-05,08:00:00,0,0,57,0,92,0,0.858,0,57,0,235,43,198,0,13,0
2014-06-05,09:00:00,132,100,57,0,89,1.4,0.863,95,58,49,235,45,198,27,13,0
2014-06-05,11:00:00,88,65,58,103,93,0.9,0.858,36,55,146,235,73,198,31,14,0
2014-06-05,12:00:00,78,50,58,70,93,0.8,0.858,23,55,182,235,101,198,16,14,0
2014-06-05,13:00:00,104,43,59,0,95,0.7,0.863,20,54,208,235,137,198,11,15,104
2014-06-05,14:00:00,115,43,59,0,97,0.6,0.863,21,54,230,235,152,198,9,14,0
2014-06-05,16:00:00,131,39,58,88,96,0.7,0.853,27,54,262,262,178,198,8,14,0
2014-06-05,17:00:00,147,44,58,106,96,0.8,0.853,37,54,293,293,208,208,10,14,147
2014-06-05,18:00:00,138,61,58,106,98,0.8,0.853,43,53,276,293,230,230,10,14,0
2014-06-05,19:00:00,121,44,59,99,98,0.8,0.863,42,53,242,293,242,242,9,14,121
2014-06-05,20:00:00,99,60,59,117,101,0.8,0.868,63,54,199,293,245,245,8,14,0
2014-06-05,21:00:00,84,57,59,118,104,0.8,0.874,61,54,169,293,240,245,8,14,0
2014-06-05,22:00:00,98,62,60,145,107,0.9,0.879,65,54,163,293,231,245,10,14,0
2014-06-05,23:00:00,111,79,61,172,111,1,0.885,61,54,169,293,222,245,14,14,0
2014-06-06,00:00:00,114,85,62,178,116,1,0.89,56,52,162,293,209,245,17,14,114
2014-06-06,02:00:00,144,98,65,237,127,1.1,0.9,98,53,65,293,163,245,17,15,0
2014-06-06,03:00:00,151,103,66,251,134,1.5,0.924,100,54,32,293,137,245,16,15,0
2014-06-06,04:00:00,143,109,68,167,136,1.7,0.957,64,54,21,293,115,245,18,15,143
2014-06-06,06:00:00,109,82,69,124,136,1,0.964,45,52,41,293,81,245,14,15,0
2014-06-06,07:00:00,107,80,69,133,135,1.5,0.987,53,52,34,293,64,245,22,15,0
2014-06-06,08:00:00,125,95,70,163,137,2.9,1.067,63,52,34,293,48,245,38,16,0
2014-06-06,09:00:00,135,103,70,183,139,3.1,1.138,64,51,45,293,37,245,46,17,0
2014-06-06,10:00:00,139,106,71,193,141,3.2,1.221,65,51,61,293,36,245,46,17,0
2014-06-06,11:00:00,138,105,73,171,144,2.5,1.287,56,52,89,293,43,245,49,18,0
2014-06-06,12:00:00,142,108,75,150,148,2.4,1.354,52,53,114,293,55,245,46,19,0
2014-06-06,14:00:00,22,5,75,0,148,0.4,1.374,22,55,69,293,64,245,2,19,22
2014-06-06,15:00:00,24,8,74,0,152,0.4,1.365,24,55,76,293,70,245,2,19,0
2014-06-06,16:00:00,26,6,72,0,155,0.4,1.352,18,54,82,293,77,245,2,19,26
2014-06-06,17:00:00,22,3,70,18,151,0.4,1.335,27,54,68,276,80,245,2,19,22
2014-06-06,18:00:00,21,5,68,5,146,0.4,1.317,26,53,66,242,81,245,2,18,0
2014-06-06,19:00:00,20,6,66,10,141,0.4,1.3,28,53,62,199,77,245,2,18,0
2014-06-06,20:00:00,0,0,67,0,143,0,1.323,0,52,0,169,71,240,0,18,0
2014-06-06,21:00:00,22,11,64,0,144,0.4,1.305,44,51,45,169,67,231,2,18,0
2014-06-06,22:00:00,0,0,65,0,144,0,1.324,0,51,0,169,67,222,0,18,0
2014-06-06,23:00:00,27,13,61,25,135,0.6,1.305,53,50,29,162,59,209,2,18,27
2014-06-07,01:00:00,38,17,57,38,124,0.6,1.3,61,50,6,114,42,163,2,17,38
2014-06-07,02:00:00,31,16,53,30,111,0.7,1.28,62,48,2,114,29,137,2,16,31
2014-06-07,04:00:00,31,13,44,0,97,0.5,1.18,62,46,4,114,15,96,2,15,31
2014-06-07,05:00:00,29,11,41,0,96,0.4,1.145,57,47,14,114,10,81,2,14,0
2014-06-07,06:00:00,19,8,37,0,93,0.3,1.11,38,47,37,114,13,81,2,14,19
2014-06-07,07:00:00,16,7,33,0,90,0.3,1.05,31,46,50,114,16,81,2,13,0
2014-06-07,09:00:00,30,8,24,0,71,0.3,0.78,19,42,94,114,33,81,3,9,0
2014-06-07,11:00:00,35,6,14,13,33,0.2,0.515,14,38,110,114,59,81,2,4,35
2014-06-07,12:00:00,35,6,9,17,19,0.2,0.405,15,36,112,112,73,81,2,2,35
2014-06-07,13:00:00,36,6,9,0,19,0.2,0.395,16,35,113,113,85,85,2,2,0
2014-06-07,15:00:00,37,7,9,0,19,0.2,0.385,18,35,116,116,101,101,2,2,37
2014-06-07,16:00:00,35,3,9,24,19,0.2,0.375,20,35,112,116,109,109,2,2,35
2014-06-07,17:00:00,36,6,9,14,19,0.2,0.365,23,35,113,116,111,111,2,2,0
2014-06-07,18:00:00,36,11,10,32,21,0.2,0.355,21,35,113,116,113,113,2,2,0
2014-06-07,21:00:00,0,0,10,0,27,0,0.345,0,34,0,116,109,113,0,2,0
2014-06-07,22:00:00,63,20,10,75,31,0.6,0.357,73,36,34,116,98,113,3,2,0
2014-06-07,23:00:00,71,25,11,92,37,0.6,0.357,109,39,2,116,82,113,3,2,71
2014-06-08,01:00:00,91,37,13,132,51,0.9,0.386,111,45,2,116,50,113,3,2,0
2014-06-08,05:00:00,53,27,16,56,63,0.5,0.414,78,49,2,116,6,113,6,3,0
2014-06-08,06:00:00,54,23,17,58,63,0.5,0.423,71,51,2,116,2,113,8,3,54
2014-06-08,10:00:00,87,54,21,123,72,1.8,0.571,65,57,45,116,12,113,45,7,0
2014-06-08,11:00:00,87,64,24,102,76,1.8,0.648,52,59,95,116,26,113,45,9,87
2014-06-08,12:00:00,83,61,26,91,80,1.5,0.71,42,60,132,132,44,113,37,11,0
2014-06-08,13:00:00,70,51,28,80,80,1.2,0.757,44,62,158,158,67,113,30,12,0
2014-06-08,14:00:00,94,56,30,100,81,1,0.768,43,61,195,195,94,113,25,13,94
2014-06-08,15:00:00,101,45,31,94,82,0.9,0.8,36,62,202,202,108,113,16,13,0
2014-06-08,17:00:00,0,0,33,0,87,0,0.833,0,64,0,202,134,134,0,14,0
2014-06-08,18:00:00,36,11,33,36,87,0.5,0.848,61,66,66,202,137,137,3,14,36
2014-06-08,19:00:00,57,24,34,63,89,0.6,0.862,76,68,48,202,130,137,4,14,57
2014-06-08,20:00:00,53,25,35,26,87,0.8,0.886,106,71,26,202,115,137,2,14,0
2014-06-08,21:00:00,81,26,34,112,88,1,0.891,114,73,10,202,94,137,2,13,81
2014-06-08,22:00:00,78,34,35,105,90,1,0.909,116,75,2,202,66,137,2,13,0
2014-06-08,23:00:00,66,32,35,81,89,0.8,0.918,89,74,10,202,39,137,2,13,66
2014-06-09,00:00:00,46,28,35,46,86,0.6,0.914,78,73,14,202,25,137,2,13,46
2014-06-09,01:00:00,1,0,35,0,83,0,0.914,0,71,3,202,22,137,0,14,0
2014-06-09,02:00:00,49,26,34,49,79,0.6,0.895,78,69,4,202,15,137,2,14,49
2014-06-09,03:00:00,32,21,33,32,75,0.4,0.876,61,68,12,202,10,137,2,13,32
2014-06-09,04:00:00,35,18,33,35,74,0.4,0.867,56,67,11,202,8,137,2,13,35
2014-06-09,05:00:00,42,25,33,42,73,0.5,0.867,67,67,2,202,7,137,2,13,42
2014-06-09,06:00:00,55,21,33,60,73,0.6,0.871,69,66,2,202,7,137,2,13,55
2014-06-09,07:00:00,58,41,33,64,73,0.6,0.859,60,66,9,202,7,137,5,12,58
2014-06-09,08:00:00,75,48,34,99,74,0.8,0.864,60,66,19,202,8,137,11,12,75
2014-06-09,09:00:00,74,54,35,97,73,1.1,0.855,59,66,39,202,12,137,21,12,74
2014-06-09,10:00:00,75,55,35,75,71,1.3,0.832,48,65,70,202,21,137,28,11,0
2014-06-09,11:00:00,74,50,35,98,71,1.2,0.805,50,65,93,202,31,137,25,10,74
2014-06-09,13:00:00,54,38,34,0,69,0.8,0.768,36,65,132,202,60,137,20,9,0
2014-06-09,14:00:00,46,28,32,43,67,0.7,0.755,35,65,146,202,78,137,17,9,46
2014-06-09,16:00:00,103,41,33,94,65,0.6,0.755,34,65,206,206,121,137,11,9,0
2014-06-09,17:00:00,101,37,33,0,65,0.5,0.743,30,64,201,206,141,141,8,9,101
2014-06-09,18:00:00,49,16,33,26,64,0.3,0.735,29,62,154,206,152,152,6,9,0
2014-06-09,19:00:00,96,28,33,142,68,0.5,0.73,46,61,148,206,158,158,6,9,0
2014-06-09,20:00:00,52,26,33,53,69,0.5,0.717,38,58,132,206,160,160,5,9,0
2014-06-09,21:00:00,0,0,33,0,67,0,0.705,0,55,0,206,164,164,0,10,0
2014-06-09,22:00:00,68,25,33,85,66,0.6,0.686,38,52,110,206,159,164,5,10,0
2014-06-10,00:00:00,65,47,34,56,66,0.9,0.7,28,47,118,206,140,164,6,10,65
2014-06-10,01:00:00,72,52,35,67,66,0.9,0.709,36,47,98,206,125,164,4,10,0
2014-06-10,02:00:00,87,64,37,84,68,0.9,0.722,51,45,68,206,113,164,4,10,0
2014-06-10,03:00:00,83,61,38,81,70,0.9,0.743,56,45,60,206,101,164,4,10,0
2014-06-10,04:00:00,74,54,40,0,72,0.9,0.765,32,44,85,206,94,164,5,10,74
2014-06-10,05:00:00,64,46,41,48,72,0.9,0.783,39,43,72,206,91,164,5,10,0
2014-06-10,06:00:00,87,64,43,85,74,1.4,0.817,56,42,36,206,82,164,7,11,87
2014-06-10,07:00:00,93,69,44,82,75,1.5,0.857,45,42,46,206,73,164,11,11,93
2014-06-10,08:00:00,103,77,45,99,75,1.6,0.891,54,41,37,206,63,164,17,11,0
2014-06-10,09:00:00,113,85,47,132,76,1.8,0.922,61,41,38,206,55,164,25,11,0
2014-06-10,10:00:00,122,92,48,127,79,1.8,0.943,63,42,50,206,53,164,24,11,122
2014-06-10,11:00:00,128,97,50,137,81,1.8,0.97,68,43,56,206,53,164,28,11,128
2014-06-10,12:00:00,134,102,53,137,84,1.8,1,65,44,89,206,53,164,29,12,134
2014-06-10,13:00:00,134,102,56,119,86,1.7,1.039,39,44,162,206,64,164,25,12,134
2014-06-10,14:00:00,140,107,59,0,88,1.8,1.087,30,44,183,206,83,164,18,12,0
2014-06-10,15:00:00,124,94,62,97,91,1.4,1.122,27,43,157,206,97,164,8,12,124
2014-06-10,16:00:00,79,44,62,107,92,1.2,1.148,36,43,107,201,105,164,2,11,0
2014-06-10,17:00:00,87,64,63,73,91,1.4,1.187,51,44,76,183,110,164,3,11,87
2014-06-10,18:00:00,99,74,66,0,94,1.8,1.252,73,46,64,183,112,164,4,11,0
2014-06-10,19:00:00,117,88,68,0,91,1.8,1.309,41,46,100,183,117,164,7,11,0
2014-06-10,20:00:00,104,78,71,91,93,1.5,1.352,46,46,90,183,117,164,6,11,0
2014-06-10,21:00:00,104,78,71,0,93,1.3,1.35,45,46,78,183,107,159,5,11,0
2014-06-10,22:00:00,103,77,73,106,95,1.2,1.375,49,47,58,183,91,153,4,11,103
2014-06-10,23:00:00,102,76,75,96,96,1.2,1.392,61,48,37,183,76,140,3,11,102
2014-06-11,01:00:00,118,89,78,97,100,1.3,1.421,67,51,18,183,57,117,3,10,118
2014-06-11,02:00:00,122,92,79,102,101,1.5,1.446,77,53,5,183,50,117,4,10,122
2014-06-11,04:00:00,144,110,82,116,103,1.9,1.513,77,54,2,183,30,117,7,11,0
2014-06-11,03:00:00,0,0,80,0,102,0,1.47,0,52,0,183,43,117,0,11,0
2014-06-11,05:00:00,118,89,84,0,106,1.5,1.539,70,56,2,183,19,117,5,11,0
2014-06-11,06:00:00,84,62,84,0,107,1,1.522,60,56,6,183,12,117,4,11,0
2014-06-11,07:00:00,45,31,82,0,109,0.6,1.483,46,56,18,183,9,117,5,10,0
2014-06-11,08:00:00,68,42,81,85,108,0.8,1.448,33,55,45,183,14,117,7,10,0
2014-06-11,09:00:00,90,67,80,0,106,0.9,1.409,33,54,55,183,19,117,10,9,0
2014-06-11,10:00:00,26,16,77,0,105,0.4,1.348,18,52,82,183,30,117,9,9,26
2014-06-11,11:00:00,33,15,73,0,102,0.4,1.287,15,49,104,183,39,117,8,8,33
2014-06-11,13:00:00,43,15,66,0,90,0.4,1.17,12,46,137,183,71,117,4,6,0
2014-06-11,14:00:00,45,19,62,0,90,0.4,1.109,13,45,142,157,88,117,4,5,45
2014-06-11,15:00:00,46,11,58,0,90,0.3,1.061,12,45,146,146,104,117,3,5,0
2014-06-11,17:00:00,47,18,55,22,77,0.3,0.974,14,42,148,148,128,128,2,5,47
2014-06-11,18:00:00,45,16,52,16,72,0.3,0.909,15,40,144,148,136,136,2,5,45
2014-06-11,19:00:00,45,12,49,26,69,0.3,0.843,18,39,141,148,140,140,2,5,0
2014-06-11,20:00:00,41,15,46,19,63,0.4,0.796,28,38,131,148,142,142,2,4,0
2014-06-11,21:00:00,71,32,44,91,65,0.6,0.765,56,38,136,148,142,142,4,4,71
2014-06-11,22:00:00,70,41,43,89,64,0.6,0.739,67,39,115,148,138,142,4,4,70
2014-06-11,23:00:00,60,40,41,70,62,0.6,0.713,63,39,116,148,135,142,4,4,0
2014-06-12,00:00:00,62,33,39,73,60,0.6,0.687,45,38,128,148,132,142,5,5,62
2014-06-12,02:00:00,75,38,34,100,59,0.6,0.617,58,36,86,148,121,142,3,5,0
2014-06-12,03:00:00,75,44,35,100,62,0.8,0.625,97,39,34,148,108,142,2,5,75
2014-06-12,04:00:00,91,45,32,131,63,0.8,0.579,114,40,2,148,92,142,3,4,91
2014-06-12,05:00:00,81,46,30,112,66,0.7,0.546,97,41,2,148,75,142,2,4,0
2014-06-12,06:00:00,58,37,29,66,66,0.6,0.529,68,42,22,148,63,142,2,4,58
2014-06-12,07:00:00,61,32,29,71,66,0.6,0.529,59,42,29,148,53,142,3,4,0
2014-06-12,08:00:00,60,28,29,69,65,0.6,0.521,64,43,34,148,41,142,5,4,0
2014-06-12,09:00:00,67,29,27,84,66,0.7,0.512,65,45,49,148,32,142,12,4,67
2014-06-12,10:00:00,74,24,27,98,68,0.7,0.525,63,47,65,148,30,142,18,4,74
2014-06-12,13:00:00,59,10,28,44,67,0.4,0.533,11,47,167,167,78,142,8,5,0
2014-06-12,14:00:00,67,3,27,16,65,0.3,0.529,10,47,173,173,97,142,5,5,67
2014-06-12,15:00:00,72,24,28,32,64,0.3,0.529,12,47,177,177,115,142,4,6,72
2014-06-12,16:00:00,67,19,28,31,64,0.3,0.529,13,47,173,177,132,142,3,6,0
2014-06-12,17:00:00,64,8,27,24,64,0.3,0.529,13,47,171,177,148,148,3,6,64
2014-06-12,18:00:00,54,13,27,40,65,0.3,0.529,13,47,163,177,160,160,3,6,54
2014-06-12,19:00:00,98,24,28,145,70,0.5,0.538,24,47,175,177,168,168,4,6,0
2014-06-12,20:00:00,0,0,28,0,73,0,0.543,0,48,0,177,171,171,0,6,0
2014-06-12,21:00:00,76,32,28,102,73,0.9,0.557,32,47,156,177,170,171,6,6,0
2014-06-12,22:00:00,0,0,28,0,72,0,0.555,0,46,0,177,169,171,0,6,0
2014-06-12,23:00:00,71,39,28,92,73,0.8,0.564,52,46,73,177,152,171,9,6,0
2014-06-13,00:00:00,117,47,28,183,79,1,0.582,52,46,59,177,133,171,9,6,117
2014-06-13,01:00:00,123,78,30,196,84,1.3,0.614,56,47,62,177,115,171,9,7,123
2014-06-13,03:00:00,142,108,33,175,87,1.4,0.643,78,45,46,177,79,171,10,7,142
2014-06-13,04:00:00,132,100,36,145,87,1.4,0.671,78,43,38,177,72,171,10,8,132
2014-06-13,05:00:00,135,103,38,181,91,1.3,0.7,112,44,5,177,47,171,10,8,0
2014-06-13,06:00:00,139,106,42,188,97,1.4,0.738,98,46,13,177,42,171,10,8,139
2014-06-13,07:00:00,153,117,46,235,105,1.4,0.776,84,47,15,177,34,171,15,9,0
2014-06-13,08:00:00,127,96,49,197,112,1.4,0.814,74,47,31,177,30,171,22,10,127
2014-06-13,09:00:00,130,99,52,156,115,1.4,0.848,51,47,82,177,33,171,28,10,0
2014-06-13,10:00:00,85,63,54,68,114,1,0.862,36,45,101,177,41,171,21,11,85
2014-06-13,11:00:00,46,32,54,0,114,0.6,0.862,14,44,134,177,52,171,13,10,0
2014-06-13,12:00:00,48,30,55,38,114,0.5,0.867,8,44,153,177,67,171,9,10,0
2014-06-13,13:00:00,80,26,56,47,115,0.7,0.881,12,44,184,184,89,171,10,10,0
2014-06-13,15:00:00,110,41,59,65,121,0.8,0.935,12,46,220,220,129,171,9,11,0
2014-06-13,16:00:00,112,43,60,77,124,0.9,0.965,14,46,224,224,157,171,10,11,0
2014-06-13,17:00:00,112,42,62,91,127,1,1,18,46,223,224,177,177,11,11,0
2014-06-13,18:00:00,106,29,63,162,134,0.5,1.01,11,46,169,224,187,187,4,11,106
2014-06-13,19:00:00,40,13,62,40,128,0.5,1.01,25,46,121,224,185,187,2,11,40
2014-06-13,20:00:00,27,11,60,16,123,0.6,0.99,53,46,81,224,175,187,2,11,0
2014-06-13,21:00:00,0,0,61,0,124,0,0.995,0,47,0,224,173,187,0,11,0
2014-06-13,22:00:00,38,25,59,0,124,0.7,0.981,76,48,51,224,156,187,2,11,0
2014-06-13,23:00:00,39,27,59,0,126,0.7,0.976,70,49,54,224,132,187,2,10,39
2014-06-14,00:00:00,56,31,58,62,119,0.7,0.962,81,51,30,224,104,187,2,10,0
2014-06-14,01:00:00,63,39,56,76,112,0.8,0.938,96,52,6,224,73,187,2,10,0
2014-06-14,02:00:00,54,38,55,46,109,0.7,0.927,81,54,14,224,51,187,2,9,0
2014-06-14,03:00:00,57,40,52,0,105,0.7,0.895,70,53,19,224,36,187,2,9,0
2014-06-14,04:00:00,54,35,49,58,100,0.7,0.864,84,54,2,224,25,187,2,9,54
2014-06-14,06:00:00,30,21,42,27,83,0.4,0.782,38,48,21,224,20,187,2,8,30
2014-06-14,07:00:00,25,17,38,0,74,0.4,0.736,31,46,32,224,17,187,2,7,0
2014-06-14,09:00:00,52,33,31,54,59,0.5,0.65,32,43,62,224,27,187,3,5,52
2014-06-14,10:00:00,43,28,29,43,57,0.5,0.627,22,42,91,224,36,187,3,4,0
2014-06-14,11:00:00,51,29,29,52,57,0.5,0.623,28,43,112,224,48,187,3,4,0
2014-06-14,12:00:00,60,30,29,69,59,0.6,0.627,22,44,158,224,68,187,4,4,0
2014-06-14,13:00:00,99,34,30,58,60,0.7,0.627,23,44,199,224,91,187,5,4,0
2014-06-14,15:00:00,131,44,30,69,60,0.8,0.635,22,44,261,261,146,187,8,4,0
2014-06-14,16:00:00,134,30,30,47,59,0.7,0.626,20,44,268,268,173,187,8,4,0
2014-06-14,17:00:00,153,45,30,126,61,0.7,0.613,28,44,305,305,204,204,8,3,153
2014-06-14,18:00:00,154,57,31,92,57,0.7,0.622,29,45,307,307,231,231,7,4,0
2014-06-14,19:00:00,137,57,33,153,63,0.8,0.635,33,45,273,307,251,251,6,4,137
2014-06-14,20:00:00,117,57,35,126,69,0.9,0.648,46,45,234,307,260,260,6,4,0
2014-06-14,21:00:00,0,0,35,0,69,0,0.648,0,45,0,307,269,269,0,4,0
2014-06-14,22:00:00,115,84,38,180,74,1.1,0.665,59,44,187,307,262,269,6,4,0
2014-06-14,23:00:00,128,97,41,169,79,1.1,0.683,59,44,161,307,248,269,8,4,128
2014-06-15,00:00:00,166,126,45,184,85,1.5,0.717,68,43,104,307,224,269,19,5,0
2014-06-15,01:00:00,163,124,48,190,90,1.5,0.748,73,42,74,307,191,269,20,6,163
2014-06-15,02:00:00,148,113,52,150,95,1.4,0.778,85,43,56,307,156,269,18,7,0
2014-06-15,03:00:00,135,103,54,180,99,1.6,0.817,90,43,48,307,123,269,12,7,135
2014-06-15,04:00:00,0,0,55,0,101,0,0.823,0,42,0,307,105,269,0,7,0
2014-06-15,06:00:00,222,172,68,264,124,1.5,0.932,108,48,2,307,64,269,15,8,222
2014-06-15,07:00:00,209,159,74,253,130,1.4,0.977,95,50,19,307,44,269,18,9,0
2014-06-15,08:00:00,178,134,80,210,138,1.3,1.018,71,52,66,307,38,269,21,10,0
2014-06-15,09:00:00,165,125,84,192,144,1.2,1.05,65,54,92,307,41,269,24,11,0
2014-06-15,10:00:00,158,120,88,194,151,1.2,1.082,56,55,131,307,51,269,24,12,158
2014-06-15,11:00:00,139,106,92,155,155,1.2,1.114,42,56,188,307,71,269,27,13,139
2014-06-15,12:00:00,125,95,94,140,159,1.2,1.141,33,57,247,307,93,269,30,14,125
2014-06-15,13:00:00,144,90,97,120,162,1.2,1.164,26,57,287,307,129,269,35,15,0
2014-06-15,14:00:00,146,102,100,198,167,1.3,1.186,29,57,292,307,165,269,41,17,0
2014-06-15,15:00:00,170,129,104,234,175,1.3,1.209,36,58,288,307,199,269,41,18,0
2014-06-15,16:00:00,221,171,110,301,186,1.7,1.255,43,59,287,307,227,269,37,20,0
2014-06-15,18:00:00,159,121,119,150,194,1.4,1.327,59,61,243,292,263,269,26,22,159
2014-06-15,19:00:00,102,70,119,0,196,0.9,1.332,46,61,203,292,265,269,14,22,102
2014-06-15,20:00:00,151,77,120,252,202,1,1.336,41,61,193,292,258,269,7,22,0
2014-06-15,21:00:00,75,55,117,67,196,1.1,1.326,27,60,159,292,242,265,2,21,75
2014-06-15,22:00:00,90,67,117,78,191,1.3,1.335,55,59,102,292,218,265,2,21,90
2014-06-15,23:00:00,122,92,116,126,189,1.7,1.361,80,60,62,292,190,265,2,21,0
2014-06-16,00:00:00,153,117,116,0,190,1.5,1.361,71,60,62,292,162,265,2,20,153
2014-06-16,01:00:00,169,128,116,0,190,1.4,1.357,55,60,66,292,136,265,2,19,169
2014-06-16,03:00:00,0,0,117,0,192,0,1.332,0,56,0,292,107,265,0,19,0
2014-06-16,04:00:00,147,112,116,119,189,1,1.317,36,55,83,292,91,265,2,18,147
2014-06-16,05:00:00,178,134,116,174,183,1.1,1.287,37,52,66,292,78,265,2,18,0
2014-06-16,06:00:00,200,150,115,184,178,1.1,1.27,34,49,58,292,72,265,3,17,200
2014-06-16,07:00:00,206,156,114,179,175,1,1.252,34,46,55,292,71,265,4,17,0
2014-06-16,08:00:00,207,157,115,189,173,1.1,1.243,39,45,54,292,69,265,6,16,207
2014-06-16,09:00:00,219,169,117,228,175,1.2,1.243,50,44,56,292,68,265,8,15,0
2014-06-16,10:00:00,224,174,120,223,177,1.3,1.248,57,44,80,292,65,265,10,15,224
2014-06-16,13:00:00,241,191,132,207,192,1.5,1.274,67,48,117,292,79,265,4,12,241
2014-06-16,14:00:00,225,175,135,0,192,1.3,1.274,43,49,202,288,97,265,8,10,0
2014-06-16,15:00:00,185,139,135,0,190,1,1.261,26,48,239,287,120,265,8,9,185
2014-06-16,16:00:00,144,110,133,114,179,0.9,1.226,20,47,225,272,142,265,6,7,0
2014-06-16,17:00:00,142,108,130,159,174,1,1.2,27,47,230,243,163,265,5,6,142
2014-06-16,18:00:00,132,100,129,115,171,1,1.183,28,45,224,239,181,265,4,5,0
2014-06-16,20:00:00,148,113,132,144,164,1.1,1.191,36,44,202,239,207,242,3,4,0
2014-06-16,21:00:00,138,105,134,128,167,1.1,1.191,36,45,182,239,215,218,3,5,0
2014-06-16,22:00:00,132,100,136,128,170,1.2,1.187,54,45,143,239,207,215,3,5,0
2014-06-16,23:00:00,147,112,137,148,171,1.2,1.165,48,43,137,239,195,215,3,5,147
2014-06-17,00:00:00,204,154,138,213,174,1.3,1.157,40,42,137,239,184,215,5,5,0
2014-06-17,01:00:00,264,214,142,267,178,1.3,1.152,36,41,143,239,173,215,11,5,0
2014-06-17,02:00:00,271,221,147,261,182,1.3,1.161,29,41,142,239,163,215,15,6,0
2014-06-17,03:00:00,196,147,147,0,182,0.9,1.15,18,40,139,239,153,215,9,6,196
2014-06-17,05:00:00,45,8,143,21,178,0.5,1.13,13,39,141,239,140,215,2,6,0
2014-06-17,06:00:00,39,15,137,17,169,0.6,1.109,18,38,123,239,137,215,2,6,39
2014-06-17,08:00:00,43,30,126,0,161,0.7,1.083,49,39,81,239,123,215,2,6,0
2014-06-17,09:00:00,50,35,120,0,158,0.8,1.065,45,39,84,239,114,215,2,5,0
2014-06-17,10:00:00,42,29,113,0,154,0.8,1.043,41,38,88,239,106,215,2,5,42
2014-06-17,11:00:00,52,36,107,40,141,0.9,1.026,46,37,97,239,100,215,2,5,52
2014-06-17,12:00:00,64,46,101,68,131,1,1.009,44,36,109,239,102,215,2,5,0
2014-06-17,13:00:00,108,81,96,135,127,1.2,0.996,48,36,128,239,100,215,6,5,108
2014-06-17,14:00:00,147,112,93,140,127,1.2,0.991,44,36,166,239,105,215,6,5,0
2014-06-17,15:00:00,173,131,93,155,129,1.3,1.004,41,36,208,230,120,215,7,5,173
2014-06-17,16:00:00,178,134,94,148,131,1.3,1.022,35,37,218,230,137,215,4,4,0
2014-06-17,17:00:00,193,145,96,0,129,1.3,1.035,38,37,185,224,150,215,2,4,0
2014-06-17,18:00:00,46,32,93,0,130,0.7,1.022,25,37,124,218,154,215,2,4,0
2014-06-17,19:00:00,58,33,89,66,125,0.9,1.017,43,38,90,218,154,215,2,4,0
2014-06-17,20:00:00,0,0,88,0,124,0,1.014,0,38,0,218,160,215,0,4,0
2014-06-17,21:00:00,75,55,86,0,124,0.9,1.005,48,38,83,218,153,207,2,4,0
2014-06-17,22:00:00,67,48,84,0,123,0.9,0.991,61,39,56,218,138,195,2,4,0
2014-06-17,23:00:00,78,57,81,0,121,0.9,0.977,52,39,50,218,115,184,2,4,78
2014-06-18,00:00:00,77,56,77,0,114,0.9,0.959,58,40,37,218,89,173,2,4,77
2014-06-18,01:00:00,77,56,70,0,100,1,0.945,84,42,10,218,64,163,2,4,77
2014-06-18,02:00:00,75,55,62,0,84,1,0.932,82,44,10,218,48,160,2,3,0
2014-06-18,03:00:00,74,54,58,0,84,0.9,0.932,56,46,34,218,40,160,2,3,74
2014-06-18,04:00:00,75,55,58,0,84,1,0.935,87,48,2,218,35,160,2,3,0
2014-06-18,05:00:00,73,53,60,58,87,1,0.957,77,51,5,218,26,160,2,3,73
2014-06-18,06:00:00,73,53,61,0,95,1,0.974,80,53,7,218,19,160,2,3,73
2014-06-18,08:00:00,67,48,63,0,101,0.7,0.97,50,54,52,218,21,160,2,3,0
2014-06-18,09:00:00,60,43,63,0,101,0.7,0.965,39,53,77,218,29,160,2,3,60
2014-06-18,11:00:00,45,31,64,0,102,0.5,0.943,21,52,101,218,47,160,4,3,45
2014-06-18,13:00:00,47,23,60,44,94,0.4,0.883,13,49,150,218,80,160,6,3,47
2014-06-18,15:00:00,92,42,53,78,67,0.6,0.822,27,47,193,218,119,160,9,3,92
2014-06-18,16:00:00,114,57,50,139,66,0.8,0.8,34,47,228,228,141,160,12,3,114
2014-06-18,17:00:00,133,88,47,142,76,0.8,0.778,33,47,265,265,164,164,10,4,0
2014-06-18,18:00:00,120,79,49,108,79,0.8,0.783,33,47,240,265,184,184,8,4,0
2014-06-18,19:00:00,99,74,51,0,81,0.8,0.778,37,47,192,265,195,195,9,4,0
2014-06-18,20:00:00,94,70,52,108,84,0.9,0.783,52,47,154,265,200,200,7,4,0
2014-06-18,21:00:00,130,99,54,166,92,1,0.788,41,47,132,265,197,200,3,4,0
2014-06-18,22:00:00,137,104,56,141,96,1,0.792,35,46,128,265,192,200,3,4,137
2014-06-18,23:00:00,166,126,59,141,100,1,0.796,31,45,122,265,183,200,3,5,166
2014-06-19,00:00:00,165,125,62,132,103,1,0.8,30,44,116,265,169,200,3,5,0
2014-06-19,01:00:00,178,134,65,143,106,1.1,0.804,43,42,90,265,147,200,2,5,0
2014-06-19,02:00:00,168,127,68,141,108,1.2,0.813,51,41,61,265,124,200,2,5,168
2014-06-19,03:00:00,165,125,71,127,109,1.2,0.825,74,42,23,265,103,200,2,5,0
2014-06-19,04:00:00,159,121,74,137,111,1.1,0.829,77,41,17,265,86,200,2,5,159
2014-06-19,06:00:00,0,0,75,0,114,0,0.814,0,38,0,265,72,200,0,5,0
2014-06-19,07:00:00,179,135,80,0,114,1,0.827,78,39,25,265,55,200,3,5,179
2014-06-19,08:00:00,166,126,83,184,118,1.1,0.845,77,40,43,265,43,200,4,5,166
2014-06-19,09:00:00,233,183,90,215,124,1.9,0.9,55,41,78,265,41,200,14,5,0
2014-06-19,10:00:00,0,0,92,0,128,0,0.91,0,41,0,265,37,200,0,6,0
2014-06-19,11:00:00,260,210,100,292,137,2.5,1.005,47,43,128,265,58,200,27,7,0
2014-06-19,12:00:00,240,190,108,200,140,2.6,1.11,42,44,135,265,82,200,21,7,240
2014-06-19,15:00:00,163,124,122,134,156,1,1.233,24,45,162,265,123,200,8,8,0
2014-06-19,16:00:00,156,119,125,124,155,1.1,1.248,33,45,152,265,138,200,12,8,156
2014-06-19,17:00:00,125,95,126,0,155,1.2,1.267,32,45,141,240,147,200,10,8,0
2014-06-19,18:00:00,100,75,125,0,158,0.9,1.271,26,45,138,192,146,200,7,8,0
2014-06-19,19:00:00,0,0,128,0,158,0,1.295,0,45,0,165,149,200,0,8,0
2014-06-19,20:00:00,0,0,131,0,162,0,1.316,0,45,0,165,151,197,0,8,0
2014-06-19,21:00:00,0,0,133,0,162,0,1.333,0,45,0,165,152,192,0,8,0
2014-06-19,22:00:00,0,0,135,0,163,0,1.353,0,45,0,165,148,183,0,9,0
2014-06-19,23:00:00,0,0,135,0,165,0,1.375,0,46,0,165,144,169,0,9,0
2014-06-20,00:00:00,94,70,132,92,162,1,1.375,58,48,49,165,109,152,5,9,0
2014-06-20,01:00:00,112,84,129,90,157,1,1.369,49,49,46,165,78,152,3,9,112
2014-06-20,03:00:00,65,47,120,0,162,0.8,1.331,24,44,57,165,56,152,2,9,0
2014-06-20,04:00:00,45,31,115,0,165,0.7,1.306,26,41,64,165,57,152,2,9,0
2014-06-20,05:00:00,50,35,110,0,165,0.8,1.276,40,41,49,165,56,152,2,9,0
2014-06-20,06:00:00,49,34,106,0,165,0.7,1.244,22,40,67,165,57,152,2,8,0
2014-06-20,07:00:00,63,45,101,0,165,0.9,1.239,30,37,52,165,57,152,2,8,0
2014-06-20,08:00:00,65,47,96,0,162,0.9,1.228,35,35,46,165,56,152,2,8,0
2014-06-20,09:00:00,55,39,88,0,155,0.8,1.167,32,33,62,165,58,152,2,7,0
2014-06-20,10:00:00,30,21,85,0,155,0.7,1.142,26,33,90,165,61,152,2,7,0
2014-06-20,11:00:00,37,14,75,0,132,0.6,1.042,15,31,117,165,68,152,2,6,37
2014-06-20,13:00:00,49,17,58,0,118,0.6,0.874,9,28,154,165,91,152,2,4,49
2014-06-20,15:00:00,58,20,47,0,102,0.4,0.795,9,27,166,166,118,152,2,3,0
2014-06-20,16:00:00,68,17,42,30,71,0.4,0.758,13,26,174,174,134,152,2,3,0
2014-06-20,18:00:00,51,27,36,51,66,0.3,0.684,20,24,152,174,154,154,2,2,0
2014-06-20,19:00:00,76,34,36,102,73,0.6,0.68,29,25,129,174,156,156,2,2,0
2014-06-20,20:00:00,80,59,37,93,76,1.1,0.7,42,26,111,174,152,156,4,2,0
2014-06-20,21:00:00,0,0,37,0,76,0,0.7,0,26,0,174,151,156,0,2,0
2014-06-20,22:00:00,124,94,39,113,82,1.5,0.736,45,26,81,174,140,156,6,2,124
2014-06-20,23:00:00,105,79,41,0,82,1.1,0.752,38,27,82,174,128,156,6,3,105
2014-06-21,00:00:00,97,72,41,0,80,0.8,0.743,31,26,87,174,115,156,6,3,0
2014-06-21,01:00:00,93,69,40,0,78,0.8,0.735,36,25,75,174,102,156,6,3,0
2014-06-21,02:00:00,93,69,40,0,78,0.7,0.722,35,26,71,174,91,156,6,3,0
2014-06-21,03:00:00,87,64,41,0,78,0.6,0.713,39,26,66,174,82,156,5,3,0
2014-06-21,04:00:00,87,64,42,82,79,0.8,0.717,59,28,17,174,68,156,4,3,87
2014-06-21,05:00:00,93,69,44,86,80,0.8,0.717,67,29,15,174,62,156,4,3,93
2014-06-21,06:00:00,80,59,45,0,80,0.6,0.713,40,30,55,174,59,156,5,3,80
2014-06-21,07:00:00,85,63,46,66,78,0.7,0.704,45,30,52,174,55,156,5,4,85
2014-06-21,08:00:00,89,66,47,78,78,0.9,0.704,52,31,46,174,50,156,6,4,89
2014-06-21,10:00:00,108,81,50,0,78,1.4,0.732,39,32,70,174,46,156,15,4,0
2014-06-21,11:00:00,87,64,52,86,79,1.6,0.777,35,32,91,174,49,156,25,5,0
2014-06-21,12:00:00,94,70,55,89,80,1.6,0.823,27,33,122,174,64,156,20,6,94
2014-06-21,13:00:00,95,71,57,84,80,1.5,0.864,24,34,155,174,84,156,17,7,95
2014-06-21,15:00:00,79,49,60,0,80,0.9,0.918,17,35,183,183,120,156,7,7,0
2014-06-21,17:00:00,89,57,64,72,83,1,0.968,21,35,191,191,147,156,7,8,0
2014-06-21,18:00:00,89,66,66,78,86,1.2,1.009,25,36,188,191,161,161,6,8,0
2014-06-21,19:00:00,88,65,67,80,84,1.2,1.036,35,36,164,191,171,171,4,8,0
2014-06-21,20:00:00,57,18,65,64,81,0.7,1.018,26,35,122,191,171,171,2,8,0
2014-06-21,21:00:00,31,16,63,31,78,0.6,1,35,35,85,191,162,171,2,8,0
2014-06-21,22:00:00,26,18,60,0,75,0.7,0.965,45,35,74,191,149,171,2,8,0
2014-06-21,23:00:00,26,14,57,0,75,0.7,0.948,51,36,59,191,134,171,2,7,0
2014-06-22,00:00:00,23,16,55,0,75,0.6,0.939,36,36,71,191,119,171,2,7,0
2014-06-22,01:00:00,32,22,53,0,75,0.5,0.926,52,37,42,191,101,171,2,7,0
2014-06-22,02:00:00,27,18,50,0,75,0.5,0.917,54,38,40,191,82,171,2,7,0
2014-06-22,03:00:00,36,20,48,36,72,0.6,0.917,60,38,32,191,66,171,2,7,0
2014-06-22,04:00:00,31,19,46,0,71,0.5,0.904,61,39,27,191,54,171,2,7,0
2014-06-22,05:00:00,33,22,44,0,69,0.5,0.891,66,38,18,191,45,171,2,7,0
2014-06-22,06:00:00,34,22,43,28,66,0.6,0.891,67,40,19,191,39,171,2,6,0
2014-06-22,07:00:00,28,19,41,0,66,0.5,0.883,48,40,40,191,36,171,2,6,0
2014-06-22,08:00:00,56,29,39,61,64,0.6,0.87,52,40,39,191,32,171,2,6,0
2014-06-22,09:00:00,77,55,40,103,68,0.8,0.867,36,40,53,191,34,171,4,6,0
2014-06-22,10:00:00,79,58,39,76,68,0.8,0.842,32,39,69,191,37,171,4,6,0
2014-06-22,11:00:00,79,58,39,59,66,0.8,0.808,26,39,102,191,46,171,6,5,79
2014-06-22,13:00:00,69,50,37,63,63,0,0.743,22,39,158,191,75,171,5,4,0
2014-06-22,15:00:00,85,44,37,0,63,0,0.719,19,39,188,191,115,171,2,3,85
2014-06-22,16:00:00,83,39,36,66,63,0,0.71,24,39,186,191,133,171,2,3,0
2014-06-22,17:00:00,90,38,35,71,63,0,0.695,25,39,192,192,150,171,3,3,0
2014-06-22,18:00:00,85,33,34,43,61,0,0.667,21,39,188,192,165,171,2,3,0
2014-06-22,19:00:00,40,15,31,25,57,0,0.635,16,38,128,192,168,171,2,3,0
2014-06-22,20:00:00,58,25,32,65,57,0,0.631,23,38,131,192,170,170,2,3,0
2014-06-22,21:00:00,50,30,32,50,58,0,0.633,32,38,101,192,162,170,2,3,0
2014-06-22,22:00:00,57,32,33,64,59,0,0.629,54,39,68,192,148,170,2,3,0
2014-06-22,23:00:00,54,38,34,53,58,0,0.623,74,40,45,192,130,170,2,3,0
2014-06-23,00:00:00,43,30,34,32,57,0,0.625,70,41,45,192,112,170,2,3,0
2014-06-23,01:00:00,65,30,35,79,58,0,0.636,101,43,14,192,90,170,2,3,0
2014-06-23,02:00:00,52,36,36,54,58,0,0.65,85,44,18,192,69,170,2,3,0
2014-06-23,03:00:00,42,29,36,40,58,0,0.656,72,45,17,192,55,170,2,3,0
2014-06-23,04:00:00,65,35,37,80,59,0,0.675,83,46,2,192,39,170,2,3,0
2014-06-23,05:00:00,42,26,37,42,58,0,0.7,74,46,4,192,27,170,2,3,0
2014-06-23,06:00:00,39,27,37,37,59,0,0.717,62,46,11,192,20,170,2,3,0
2014-06-23,07:00:00,33,23,37,30,57,0,0.76,48,46,24,192,17,170,2,3,0
2014-06-23,08:00:00,35,19,37,35,56,0,0.8,40,45,41,192,16,170,2,3,35
2014-06-23,10:00:00,33,11,34,33,52,0,0.8,22,45,85,192,26,170,2,3,33
2014-06-23,11:00:00,35,14,32,19,50,0,0.8,17,45,111,192,40,170,2,2,0
2014-06-23,13:00:00,53,0,29,0,48,0.3,0.3,7,45,162,192,74,170,0,2,0
2014-06-23,15:00:00,97,8,26,26,46,0.3,0.3,11,44,197,197,122,170,4,2,0
2014-06-23,16:00:00,107,21,25,32,45,0.3,0.3,13,44,213,213,147,170,3,2,107
2014-06-23,18:00:00,114,25,24,62,45,0.4,0.333,33,44,228,228,175,175,2,2,0
2014-06-23,19:00:00,100,24,25,55,46,0.4,0.343,43,45,200,228,186,186,3,3,100
2014-06-23,20:00:00,55,22,24,55,46,0.4,0.35,43,46,164,228,196,196,3,3,0
2014-06-23,21:00:00,57,31,24,63,46,0.6,0.378,63,48,123,228,191,196,2,3,0
2014-06-23,22:00:00,59,33,25,68,47,0.6,0.4,65,48,104,228,182,196,3,3,0
2014-06-23,23:00:00,57,30,24,64,47,0.6,0.418,71,48,96,228,169,196,4,3,0
2014-06-24,01:00:00,69,45,25,88,50,0.9,0.485,89,48,73,228,133,196,5,3,0
2014-06-24,03:00:00,80,58,27,110,55,0.9,0.54,95,50,42,228,91,196,7,3,0
2014-06-24,04:00:00,80,59,29,105,57,0.9,0.563,100,50,30,228,75,196,9,4,0
2014-06-24,05:00:00,85,63,30,113,60,1,0.588,109,52,18,228,61,196,8,4,0
2014-06-24,06:00:00,83,60,32,116,64,0.9,0.606,88,53,31,228,52,196,8,4,83
2014-06-24,07:00:00,107,64,34,163,70,1,0.626,107,56,4,228,41,196,6,4,107
2014-06-24,08:00:00,114,70,36,178,77,0.9,0.64,107,59,11,228,33,196,8,5,0
2014-06-24,09:00:00,104,76,38,158,81,0.9,0.652,106,61,35,228,28,196,0,5,0
2014-06-24,10:00:00,112,84,41,156,86,1,0.668,120,65,72,228,30,196,15,5,0
2014-06-24,11:00:00,100,75,43,124,91,0.9,0.678,75,67,157,228,45,196,13,6,0
2014-06-24,12:00:00,112,49,45,86,94,0.7,0.679,26,66,224,228,69,196,12,6,0
2014-06-24,13:00:00,115,42,45,61,92,0.6,0.692,17,67,230,230,96,196,9,6,0
2014-06-24,15:00:00,128,50,48,79,93,0.7,0.721,20,67,256,256,153,196,9,7,128
2014-06-24,16:00:00,131,51,49,83,95,0.8,0.742,19,68,262,262,184,196,12,7,0
2014-06-24,18:00:00,120,46,51,76,97,0.8,0.775,28,67,239,262,233,233,11,8,0
2014-06-24,19:00:00,112,42,52,79,98,0.8,0.792,33,67,223,262,241,241,13,8,0
2014-06-24,20:00:00,0,0,53,0,100,0,0.809,0,68,0,262,243,243,0,8,0
2014-06-24,21:00:00,0,0,54,0,101,0,0.818,0,68,0,262,245,245,0,9,0
2014-06-24,22:00:00,83,61,55,108,103,1,0.836,49,67,153,262,232,245,12,9,0
2014-06-24,23:00:00,83,58,56,115,106,1.4,0.873,52,66,137,262,212,245,27,10,0
2014-06-25,00:00:00,73,48,57,96,106,1.5,0.905,46,65,126,262,189,245,29,11,73
2014-06-25,01:00:00,81,54,57,112,108,1.5,0.932,54,63,102,262,163,245,28,12,81
2014-06-25,02:00:00,79,57,57,108,108,1.5,0.959,51,61,94,262,139,245,29,14,0
2014-06-25,03:00:00,83,61,58,95,107,1.5,0.986,38,58,94,262,118,245,28,15,0
2014-06-25,04:00:00,88,65,58,123,108,1.5,1.014,98,58,20,262,104,245,19,15,0
2014-06-25,05:00:00,92,68,58,123,108,1.4,1.032,105,58,2,262,91,245,14,15,0
2014-06-25,06:00:00,108,81,59,147,110,1.4,1.055,97,59,2,262,72,245,14,16,0
2014-06-25,07:00:00,117,88,60,150,109,1.3,1.068,87,58,7,262,56,245,17,16,0
2014-06-25,08:00:00,107,80,61,132,107,1.2,1.082,68,56,28,262,44,245,26,17,0
2014-06-25,09:00:00,107,80,61,122,105,1.2,1.095,63,54,43,262,36,245,33,18,107
2014-06-25,10:00:00,115,87,61,147,105,1.2,1.105,62,51,57,262,32,245,32,18,0
2014-06-25,11:00:00,0,0,60,0,104,0,1.114,0,50,0,262,23,245,0,19,0
2014-06-25,12:00:00,0,0,61,0,105,0,1.135,0,51,0,262,23,245,0,19,0
2014-06-25,13:00:00,128,97,63,110,107,1.1,1.16,37,52,159,262,49,245,15,19,128
2014-06-25,14:00:00,129,98,66,0,110,1,1.18,29,53,170,262,77,245,12,20,0
2014-06-25,15:00:00,145,111,69,0,111,1.1,1.2,34,54,167,262,104,245,12,20,145
2014-06-25,16:00:00,148,113,72,0,113,1,1.21,39,55,149,256,124,245,12,20,0
2014-06-25,17:00:00,153,117,76,122,116,1,1.22,36,55,131,239,139,245,10,20,0
2014-06-25,18:00:00,165,125,80,0,118,1.1,1.235,38,56,116,223,149,245,9,20,0
2014-06-25,19:00:00,140,107,83,0,121,1.1,1.25,37,56,120,170,145,245,9,19,0
2014-06-25,20:00:00,143,109,84,0,121,1.1,1.243,41,55,114,170,141,245,9,19,0
2014-06-25,21:00:00,162,123,86,0,121,1.2,1.241,50,55,96,170,133,232,8,18,0
2014-06-25,22:00:00,170,129,89,0,122,1.1,1.245,38,55,107,170,125,212,9,18,0
2014-06-25,23:00:00,188,141,93,0,122,1.2,1.236,47,54,81,170,114,189,9,17,0
2014-06-26,00:00:00,189,142,97,0,124,1.1,1.218,28,54,89,170,107,163,7,16,0
2014-06-26,01:00:00,211,161,102,0,125,1.2,1.205,26,52,79,170,100,149,7,15,0
2014-06-26,02:00:00,224,174,107,0,127,1.5,1.205,34,51,60,170,93,149,11,15,0
2014-06-26,03:00:00,231,181,113,0,131,1.6,1.209,37,51,49,170,84,149,9,14,0
2014-06-26,04:00:00,226,176,118,0,132,1.5,1.209,31,48,52,170,77,149,8,13,0
2014-06-26,05:00:00,225,175,123,0,133,1.3,1.205,29,45,53,170,71,149,7,13,0
2014-06-26,06:00:00,229,179,127,0,131,1.3,1.2,28,42,55,170,65,149,6,13,0
2014-06-26,07:00:00,227,177,131,0,127,1.3,1.2,35,39,52,170,61,149,6,12,0
2014-06-26,08:00:00,223,173,135,0,125,1.4,1.209,49,39,51,170,56,149,8,11,0
2014-06-26,09:00:00,196,147,138,0,126,1.3,1.214,44,38,82,170,57,149,8,10,0
2014-06-26,10:00:00,193,145,141,0,116,1.3,1.218,48,37,109,170,63,149,8,9,0
2014-06-26,11:00:00,159,121,140,0,116,1.1,1.213,35,37,160,170,77,149,7,9,159
2014-06-26,13:00:00,124,92,138,93,108,1.1,1.208,27,36,247,247,120,149,10,9,124
2014-06-26,14:00:00,131,0,140,0,108,0.9,1.204,22,36,261,261,146,149,10,9,0
2014-06-26,16:00:00,155,80,140,137,117,1.2,1.217,38,36,310,310,210,210,7,8,155
2014-06-26,17:00:00,145,111,140,0,115,1.2,1.225,31,36,250,310,231,231,6,8,0
2014-06-26,18:00:00,128,97,138,0,115,1.1,1.225,35,36,227,310,246,246,5,8,0
2014-06-26,19:00:00,102,76,137,90,107,1,1.221,46,36,170,310,247,247,4,8,0
2014-06-26,20:00:00,83,61,135,77,99,1,1.217,55,37,132,310,238,247,4,8,0
2014-06-26,21:00:00,70,51,131,76,95,1.2,1.217,69,38,87,310,218,247,3,7,0
2014-06-26,22:00:00,0,0,132,0,95,0,1.222,0,38,0,310,212,247,0,7,0
2014-06-26,23:00:00,81,59,128,112,98,1.2,1.222,100,40,34,310,173,247,4,7,0
2014-06-27,00:00:00,102,76,125,120,101,1.3,1.23,127,44,19,310,131,247,6,7,0
2014-06-27,01:00:00,87,64,120,87,99,1.3,1.235,131,49,9,310,97,247,6,7,0
2014-06-27,02:00:00,57,40,114,45,93,0.8,1.204,76,51,32,310,69,247,4,7,0
2014-06-27,03:00:00,63,45,107,63,90,0.9,1.174,100,53,6,310,46,247,4,6,0
2014-06-27,04:00:00,43,29,100,0,90,0.6,1.135,85,56,16,310,29,247,4,6,0
2014-06-27,05:00:00,18,8,92,8,83,0.3,1.091,36,56,55,310,24,247,3,6,0
2014-06-27,06:00:00,19,11,84,16,77,0.3,1.048,26,56,60,310,29,247,3,6,0
2014-06-27,07:00:00,35,10,76,35,74,0.4,1.009,35,56,45,310,30,247,2,6,0
2014-06-27,08:00:00,58,19,69,66,73,0.5,0.97,48,56,38,310,33,247,3,6,0
2014-06-27,09:00:00,26,9,62,26,70,0.4,0.93,24,55,69,310,40,247,2,5,26
2014-06-27,10:00:00,30,6,56,11,66,0.3,0.887,13,53,94,310,48,247,2,5,0
2014-06-27,11:00:00,33,7,50,17,63,0.3,0.852,12,52,104,310,60,247,2,5,33
2014-06-27,13:00:00,35,10,42,0,59,0.3,0.783,12,51,110,310,79,247,2,4,35
2014-06-27,14:00:00,36,6,40,9,56,0.3,0.757,14,50,114,310,86,247,2,4,0
2014-06-27,15:00:00,38,14,39,15,54,0.2,0.713,15,50,120,310,95,247,2,4,38
2014-06-27,16:00:00,43,13,36,18,48,0.3,0.674,17,49,135,250,107,247,2,3,0
2014-06-27,17:00:00,43,7,32,23,46,0.3,0.635,20,48,137,227,116,247,2,3,0
2014-06-27,18:00:00,42,6,28,24,45,0.3,0.6,21,48,134,170,121,247,2,3,0
2014-06-27,19:00:00,38,13,25,34,43,0.4,0.574,39,47,121,137,123,238,4,3,0
2014-06-27,20:00:00,46,13,23,46,41,0.4,0.548,49,47,114,137,123,218,3,3,0
2014-06-27,21:00:00,0,0,21,0,39,0,0.518,0,46,0,137,125,212,0,3,0
2014-06-27,22:00:00,0,0,21,0,39,0,0.518,0,46,0,137,127,173,0,3,0
2014-06-27,23:00:00,55,30,20,60,37,0.6,0.491,71,45,104,137,124,131,10,3,0
2014-06-28,00:00:00,54,25,18,57,34,0.6,0.459,56,41,112,137,120,127,6,3,0
2014-06-28,01:00:00,53,25,16,55,32,0.5,0.423,44,38,112,137,116,127,7,3,0
2014-06-28,02:00:00,59,24,15,67,33,0.6,0.414,65,37,72,137,106,127,7,3,0
2014-06-28,03:00:00,61,34,15,72,34,0.6,0.4,99,37,23,137,90,127,8,4,0
2014-06-28,04:00:00,59,31,15,68,35,0.6,0.4,100,38,6,137,72,127,8,4,0
2014-06-28,05:00:00,64,30,16,78,39,0.5,0.409,98,40,2,137,62,127,6,4,0
2014-06-28,06:00:00,59,20,16,68,41,0.5,0.418,86,43,4,137,54,127,4,4,0
2014-06-28,07:00:00,58,16,17,65,43,0.4,0.418,67,45,15,137,43,127,5,4,0
2014-06-28,08:00:00,65,20,17,80,43,0.5,0.418,64,45,26,137,33,127,7,4,0
2014-06-28,09:00:00,65,21,17,80,46,0.5,0.423,52,47,50,137,25,127,7,5,0
2014-06-28,10:00:00,57,12,17,63,48,0.5,0.432,40,48,82,137,26,127,5,5,0
2014-06-28,11:00:00,40,11,18,40,49,0.4,0.436,24,48,113,137,37,127,4,5,40
2014-06-28,12:00:00,37,12,18,28,50,0.3,0.436,11,48,118,137,51,127,2,5,0
2014-06-28,13:00:00,41,12,18,21,49,0.3,0.436,9,48,130,137,67,127,2,5,41
2014-06-28,14:00:00,48,21,19,21,49,0.3,0.436,14,48,151,151,86,127,3,5,0
2014-06-28,17:00:00,48,12,19,17,51,0.4,0.452,20,50,152,152,128,128,3,5,0
2014-06-28,18:00:00,49,15,19,33,51,0.4,0.457,22,50,155,155,139,139,3,5,0
2014-06-28,19:00:00,0,0,20,0,52,0,0.46,0,51,0,155,143,143,0,5,0
2014-06-28,20:00:00,0,0,20,0,52,0,0.463,0,51,0,155,148,148,0,5,0
2014-06-28,21:00:00,0,0,20,0,52,0,0.463,0,51,0,155,152,152,0,5,0
2014-06-28,22:00:00,0,0,20,0,52,0,0.463,0,51,0,155,153,153,0,5,0
2014-06-28,23:00:00,55,26,20,60,52,0.7,0.468,101,52,18,155,108,153,4,5,0
2014-06-29,00:00:00,61,37,21,72,53,1.9,0.537,115,55,2,155,82,153,4,5,0
2014-06-29,01:00:00,69,36,21,88,55,1.2,0.574,113,59,2,155,44,153,5,5,0
2014-06-29,02:00:00,94,49,22,137,59,0.9,0.589,110,61,2,155,6,153,9,5,0
2014-06-29,03:00:00,71,34,22,91,60,0.7,0.595,96,61,2,155,5,153,8,5,0
2014-06-29,04:00:00,71,30,22,91,61,0.7,0.6,88,61,2,155,5,153,8,5,0
2014-06-29,05:00:00,67,30,22,84,61,0.6,0.605,72,59,2,155,4,153,6,5,0
2014-06-29,06:00:00,51,25,23,52,60,0.5,0.605,60,58,2,155,4,153,5,5,0
2014-06-29,07:00:00,66,30,23,82,61,0.9,0.632,58,57,10,155,3,153,12,5,0
2014-06-29,08:00:00,104,78,26,158,65,2.1,0.716,64,57,35,155,7,153,30,6,0
2014-06-29,09:00:00,128,97,30,144,69,2.6,0.826,58,58,67,155,15,153,43,8,128
2014-06-29,11:00:00,78,46,34,106,73,1.6,0.942,62,60,92,155,36,153,29,11,0
2014-06-29,12:00:00,88,65,37,121,78,2,1.032,48,62,172,172,57,153,44,13,88
2014-06-29,15:00:00,130,60,42,100,90,2,1.218,23,68,260,260,117,153,28,16,0
2014-06-29,16:00:00,0,0,42,0,90,0,1.218,0,68,0,260,133,153,0,16,0
2014-06-29,18:00:00,114,35,46,52,95,1.1,1.313,20,71,227,260,188,188,12,17,114
2014-06-29,19:00:00,113,35,45,58,93,1.1,1.3,29,69,225,260,221,221,15,17,0
2014-06-29,20:00:00,0,0,45,0,93,0,1.3,0,69,0,260,237,237,0,17,0
2014-06-29,21:00:00,0,0,45,0,93,0,1.3,0,69,0,260,237,237,0,17,0
2014-06-29,22:00:00,0,0,45,0,93,0,1.3,0,69,0,260,237,237,0,17,0
2014-06-29,23:00:00,89,66,47,119,97,1.5,1.347,56,66,186,260,213,237,32,19,0
2014-06-30,00:00:00,89,66,49,105,98,1.9,1.347,58,63,138,260,194,237,39,21,0
2014-06-30,01:00:00,87,64,51,105,99,1.3,1.353,53,59,122,260,180,237,32,22,0
2014-06-30,02:00:00,82,60,51,88,97,1.1,1.365,45,55,123,260,159,237,25,23,0
2014-06-30,03:00:00,84,62,53,106,97,1.3,1.4,81,55,92,260,132,237,21,24,0
2014-06-30,04:00:00,113,76,56,175,102,1.5,1.447,149,58,2,260,111,237,16,24,0
2014-06-30,05:00:00,123,93,59,195,109,1.7,1.512,128,61,2,260,95,237,14,25,0
2014-06-30,06:00:00,124,94,63,166,116,1.7,1.582,124,65,2,260,83,237,14,25,0
2014-06-30,07:00:00,0,0,65,0,118,0,1.625,0,66,0,260,69,237,0,26,0
2014-06-30,09:00:00,92,68,63,115,113,1.3,1.507,71,67,71,260,49,237,19,24,0
2014-06-30,10:00:00,89,66,64,127,116,1.4,1.5,68,68,103,260,45,237,19,24,0
2014-06-30,11:00:00,102,76,66,137,118,1.4,1.487,66,68,156,260,56,237,24,24,0
2014-06-30,14:00:00,174,98,70,146,123,1.5,1.463,33,66,348,348,182,237,36,24,0
2014-06-30,15:00:00,149,73,71,119,124,1.1,1.406,22,66,298,348,201,237,26,24,0
2014-06-30,16:00:00,138,73,71,102,123,0.9,1.376,20,63,275,348,212,237,20,24,0
2014-06-30,17:00:00,0,0,71,0,123,0,1.376,0,63,0,348,235,237,0,24,0
2014-06-30,18:00:00,118,51,72,78,124,0.7,1.353,27,64,235,348,257,257,15,24,0
2014-06-30,19:00:00,106,45,72,57,124,0.5,1.318,27,64,211,348,266,266,9,24,0
2014-06-30,20:00:00,0,0,72,0,124,0,1.318,0,64,0,348,273,273,0,24,0
2014-06-30,21:00:00,0,0,72,0,124,0,1.318,0,64,0,348,273,273,0,24,0
2014-06-30,22:00:00,0,0,72,0,124,0,1.318,0,64,0,348,255,273,0,24,0
2014-06-30,23:00:00,0,0,73,0,125,0,1.306,0,64,0,348,240,273,0,23,0
2014-07-01,00:00:00,0,0,73,0,126,0,1.267,0,65,0,348,223,273,0,22,0
2014-07-01,02:00:00,85,63,73,100,126,0.7,1.2,46,65,100,348,136,273,13,20,0
2014-07-01,03:00:00,84,62,73,92,125,0.7,1.16,39,62,94,348,97,273,12,19,84
2014-07-01,04:00:00,94,70,72,104,121,0.8,1.113,43,55,77,348,92,273,19,19,0
2014-07-01,05:00:00,112,84,72,125,116,0.9,1.06,54,50,61,348,86,273,23,20,0
2014-07-01,06:00:00,123,93,72,133,114,1.1,1.02,71,46,39,348,78,273,24,21,0
2014-07-01,07:00:00,138,105,74,198,119,1.3,1.037,99,50,10,348,68,273,19,21,0
2014-07-01,08:00:00,142,108,76,198,124,1.6,1.071,106,53,18,348,62,273,22,21,0
2014-07-01,09:00:00,140,107,78,135,125,1.5,1.082,72,53,79,348,60,273,49,22,0
2014-07-01,10:00:00,150,115,81,150,126,1.6,1.094,56,52,120,348,62,273,68,25,0
2014-07-01,11:00:00,149,114,83,146,127,1.7,1.112,54,51,149,348,69,273,82,29,0
2014-07-01,12:00:00,0,0,82,0,124,0,1.081,0,51,0,348,68,273,0,28,0
2014-07-01,13:00:00,0,0,82,0,124,0,1.081,0,51,0,348,69,273,0,28,0
2014-07-01,14:00:00,0,0,81,0,122,0,1.053,0,52,0,298,75,273,0,28,0
2014-07-01,16:00:00,183,138,87,158,127,1.2,1.071,32,56,264,264,153,273,55,30,0
2014-07-01,17:00:00,0,0,87,0,127,0,1.071,0,56,0,264,178,273,0,30,0
2014-07-01,18:00:00,0,0,89,0,130,0,1.1,0,58,0,264,207,273,0,31,0
2014-07-01,20:00:00,0,0,93,0,136,0,1.15,0,60,0,264,264,273,0,33,0
2014-07-01,21:00:00,0,0,93,0,136,0,1.15,0,60,0,264,264,264,0,33,0
2014-07-01,22:00:00,0,0,93,0,136,0,1.15,0,60,0,264,264,264,0,33,0
2014-07-01,23:00:00,0,0,93,0,136,0,1.15,0,60,0,264,264,264,0,33,0
2014-07-02,00:00:00,47,17,87,0,136,0.8,1.123,14,57,148,264,148,264,2,31,0
2014-07-02,01:00:00,45,23,85,0,140,0.8,1.131,14,54,141,264,145,264,2,30,0
2014-07-02,02:00:00,41,28,82,0,144,0.7,1.131,12,51,130,264,140,264,2,29,0
2014-07-02,03:00:00,50,35,80,0,150,0.8,1.138,11,49,129,264,137,264,2,28,0
2014-07-02,04:00:00,57,40,77,0,155,0.8,1.138,11,47,108,264,131,264,2,27,0
2014-07-02,05:00:00,59,42,74,0,160,0.8,1.131,21,44,96,264,125,264,2,25,0
2014-07-02,06:00:00,69,50,71,0,164,0.9,1.115,17,40,101,264,122,264,2,24,0
2014-07-02,07:00:00,73,53,67,0,157,0.9,1.085,23,34,96,264,119,264,2,22,0
2014-07-02,08:00:00,64,46,62,0,147,0.9,1.031,29,28,82,264,110,264,2,21,0
2014-07-02,09:00:00,62,44,57,0,151,0.9,0.985,37,25,85,264,103,264,2,17,0
2014-07-02,10:00:00,50,35,51,0,152,1,0.938,36,24,90,264,98,264,2,12,0
2014-07-02,11:00:00,65,47,46,0,158,1,0.885,39,23,89,264,93,264,2,6,0
2014-07-02,13:00:00,77,56,47,0,158,1.2,0.92,28,24,101,264,93,264,3,6,0
2014-07-02,14:00:00,33,0,47,0,158,1.1,0.931,32,24,103,264,93,264,4,6,0
2014-07-02,16:00:00,71,48,41,92,93,1.1,0.947,51,26,98,148,95,264,4,3,0
2014-07-02,17:00:00,65,0,41,80,88,1.1,0.956,43,27,97,148,97,264,4,3,0
2014-07-02,18:00:00,74,0,41,98,91,1,0.958,38,28,121,148,101,264,4,3,0
2014-07-02,19:00:00,81,50,42,111,95,1.2,0.97,44,28,98,148,103,264,3,3,0
2014-07-02,20:00:00,122,92,45,116,98,1.1,0.976,50,29,88,148,101,264,3,3,0
2014-07-02,21:00:00,127,96,48,112,100,1.2,0.986,55,31,65,148,96,264,3,3,0
2014-07-02,22:00:00,0,0,48,0,100,0,0.986,0,31,0,148,95,264,0,3,0
2014-07-02,23:00:00,130,99,50,0,100,1.1,0.991,48,31,56,148,89,148,4,3,130
2014-07-03,00:00:00,127,96,54,0,100,1,1,44,33,53,141,83,145,3,3,0
2014-07-03,01:00:00,139,106,59,0,100,1.1,1.013,35,34,68,130,78,140,4,3,0
2014-07-03,02:00:00,173,131,64,0,100,1.1,1.03,34,35,59,129,70,137,5,3,0
2014-07-03,03:00:00,211,161,71,0,100,1.3,1.052,39,36,46,121,62,131,6,3,0
2014-07-03,04:00:00,225,175,78,0,100,1.5,1.083,39,37,44,121,56,125,7,3,0
2014-07-03,05:00:00,250,200,86,0,100,1.7,1.122,43,38,37,121,52,122,8,4,0
2014-07-03,06:00:00,256,206,94,0,100,1.7,1.157,53,40,22,121,48,119,9,4,0
2014-07-03,07:00:00,262,212,103,0,100,1.7,1.191,62,41,11,121,43,110,8,4,0
2014-07-03,08:00:00,286,236,113,0,100,1.9,1.235,68,43,7,121,37,103,8,5,0
2014-07-03,09:00:00,325,275,125,0,100,1.9,1.278,65,44,31,121,32,103,13,5,0
2014-07-03,10:00:00,311,261,137,0,100,1.8,1.313,64,45,50,121,31,103,14,6,0
2014-07-03,11:00:00,323,273,149,0,100,1.9,1.352,63,46,53,121,32,103,11,6,0
2014-07-03,12:00:00,302,252,159,0,100,1.8,1.383,64,48,67,121,35,103,11,6,302
2014-07-03,13:00:00,0,0,165,0,100,0,1.391,0,49,0,121,34,103,0,6,0
2014-07-03,15:00:00,266,216,168,217,118,1.3,1.405,39,50,195,195,67,103,11,7,0
2014-07-03,16:00:00,247,197,175,0,122,1.2,1.41,33,49,209,209,101,103,8,7,0
2014-07-03,18:00:00,0,0,175,0,139,0,1.447,0,50,0,209,131,131,0,7,0
2014-07-03,19:00:00,0,0,182,0,148,0,1.461,0,50,0,209,157,157,0,8,0
2014-07-03,20:00:00,0,0,188,0,165,0,1.482,0,50,0,209,202,202,0,8,0
2014-07-03,21:00:00,0,0,194,0,217,0,1.5,0,50,0,209,202,202,0,8,0
2014-07-03,22:00:00,0,0,194,0,217,0,1.5,0,50,0,209,202,202,0,8,0
2014-07-03,23:00:00,0,0,200,0,217,0,1.527,0,50,0,209,209,209,0,8,0
2014-07-04,00:00:00,0,0,207,0,217,0,1.564,0,50,0,209,0,209,0,9,0
2014-07-04,02:00:00,0,0,222,0,217,0,1.642,0,53,0,209,0,209,0,10,0
2014-07-04,03:00:00,0,0,228,0,217,0,1.673,0,54,0,209,0,209,0,10,0
2014-07-04,04:00:00,0,0,233,0,217,0,1.69,0,55,0,209,0,209,0,10,0
2014-07-04,05:00:00,0,0,236,0,217,0,1.689,0,57,0,209,0,209,0,10,0
2014-07-04,06:00:00,0,0,240,0,217,0,1.688,0,57,0,209,0,209,0,10,0
2014-07-04,07:00:00,0,0,244,0,217,0,1.686,0,57,0,209,0,209,0,11,0
2014-07-04,08:00:00,246,196,239,0,217,1.3,1.6,50,54,75,209,75,209,2,10,0
2014-07-04,09:00:00,243,193,227,0,217,1.3,1.514,42,51,90,209,83,209,2,8,0
2014-07-04,10:00:00,236,186,216,0,217,1.3,1.443,46,48,102,209,89,209,3,7,0
2014-07-04,11:00:00,227,177,202,0,217,1.2,1.343,34,44,152,209,105,209,3,6,0
2014-07-04,12:00:00,233,183,193,0,217,1.2,1.257,27,39,200,209,124,209,3,5,0
2014-07-04,14:00:00,221,171,188,0,217,1.2,1.244,22,35,266,266,160,209,3,4,0
2014-07-04,16:00:00,255,205,185,228,228,1.7,1.3,27,34,247,266,185,209,6,3,0
2014-07-04,17:00:00,258,208,188,226,227,1.9,1.367,32,34,218,266,203,209,9,4,0
2014-07-04,19:00:00,219,169,186,0,227,1.5,1.38,47,35,140,266,218,218,7,4,0
2014-07-04,20:00:00,0,0,186,0,227,0,1.38,0,35,0,266,222,222,0,4,0
2014-07-04,21:00:00,215,165,184,0,227,1.6,1.4,55,37,113,266,197,222,3,4,215
2014-07-04,23:00:00,183,138,180,0,227,1.5,1.408,70,40,50,266,154,222,2,4,0
2014-07-05,00:00:00,189,142,177,154,203,1.5,1.415,96,44,16,266,107,222,2,4,0
2014-07-05,01:00:00,195,146,175,147,189,1.3,1.407,65,45,37,266,71,222,2,4,0
2014-07-05,02:00:00,190,143,173,0,189,1.2,1.393,53,46,42,266,66,222,2,3,0
2014-07-05,03:00:00,175,132,170,0,189,1.3,1.388,65,47,28,266,48,222,2,3,0
2014-07-05,04:00:00,175,132,168,0,189,1.2,1.376,79,49,12,266,43,222,2,3,0
2014-07-05,05:00:00,160,122,165,0,189,1.1,1.361,50,49,31,266,31,222,2,3,160
2014-07-05,06:00:00,152,116,163,132,177,1.3,1.358,75,50,2,266,27,222,2,3,0
2014-07-05,07:00:00,166,126,161,143,172,1.3,1.355,77,52,9,266,22,222,2,3,0
2014-07-05,08:00:00,165,125,158,129,166,1.3,1.355,58,52,39,266,25,222,4,3,0
2014-07-05,09:00:00,156,119,154,128,161,1.3,1.355,63,53,61,266,28,222,5,3,0
2014-07-05,10:00:00,159,121,151,129,157,1.3,1.355,47,53,100,266,35,222,8,4,0
2014-07-05,11:00:00,183,138,149,0,157,1.2,1.355,36,53,139,266,49,222,9,4,183
2014-07-05,12:00:00,149,114,145,0,157,1,1.345,27,53,184,266,71,222,10,4,0
2014-07-05,13:00:00,112,84,141,0,157,0.9,1.33,23,53,219,266,94,222,6,4,0
2014-07-05,15:00:00,107,74,133,0,157,0.8,1.286,18,52,213,247,147,222,4,4,107
2014-07-05,16:00:00,102,76,127,0,149,0.8,1.243,19,51,199,219,167,222,4,4,102
2014-07-05,17:00:00,107,80,121,0,137,0.8,1.19,20,51,198,219,184,222,3,4,0
2014-07-05,18:00:00,103,77,119,82,131,0.8,1.173,21,49,192,219,195,222,3,4,0
2014-07-05,19:00:00,104,78,115,85,125,0.8,1.141,22,48,186,219,201,222,3,4,0
2014-07-05,20:00:00,0,0,115,0,125,0,1.141,0,48,0,219,203,203,0,4,0
2014-07-05,21:00:00,132,100,112,123,125,1.1,1.118,35,47,165,219,196,203,4,4,0
2014-07-05,22:00:00,0,0,112,0,125,0,1.118,0,47,0,219,192,203,0,4,0
2014-07-05,23:00:00,0,0,111,0,125,0,1.1,0,46,0,219,188,203,0,4,0
2014-07-06,00:00:00,222,172,112,0,122,1.7,1.11,34,43,164,219,181,203,11,4,0
2014-07-06,01:00:00,240,190,114,0,119,1.6,1.124,35,42,134,219,168,203,11,5,0
2014-07-06,02:00:00,262,212,118,0,119,1.7,1.148,38,41,108,219,151,203,13,5,0
2014-07-06,03:00:00,246,196,121,0,119,1.4,1.152,37,40,93,219,133,203,9,6,0
2014-07-06,04:00:00,239,189,123,0,119,1.4,1.162,32,38,99,219,127,203,9,6,0
2014-07-06,05:00:00,252,202,127,0,119,1.6,1.186,45,37,74,219,112,203,8,6,0
2014-07-06,06:00:00,264,214,132,0,117,1.7,1.205,47,36,47,219,103,203,7,7,0
2014-07-06,07:00:00,252,202,135,0,113,1.8,1.229,50,35,37,219,95,203,8,7,0
2014-07-06,08:00:00,260,210,139,0,109,1.9,1.257,52,34,43,219,79,203,10,7,0
2014-07-06,09:00:00,266,216,144,0,105,1.9,1.286,55,34,65,219,71,203,14,8,0
2014-07-06,10:00:00,255,205,148,0,97,1.8,1.31,56,34,82,219,68,203,17,8,0
2014-07-06,11:00:00,247,197,151,0,97,1.7,1.333,48,35,121,219,71,203,22,9,0
2014-07-06,14:00:00,231,181,162,0,97,1.3,1.4,23,36,224,224,95,203,15,9,0
2014-07-06,15:00:00,0,0,167,0,97,0,1.433,0,37,0,224,107,203,0,10,0
2014-07-06,16:00:00,0,0,172,0,97,0,1.471,0,38,0,224,123,203,0,10,0
2014-07-06,17:00:00,215,165,177,174,116,1.2,1.494,25,39,213,224,160,203,9,10,0
2014-07-06,18:00:00,216,166,182,201,146,1.3,1.524,30,39,208,224,192,203,8,10,0
2014-07-06,19:00:00,215,165,187,0,166,1.5,1.565,34,40,212,224,214,214,11,11,0
2014-07-06,20:00:00,0,0,187,0,166,0,1.565,0,40,0,224,214,214,0,11,0
2014-07-06,21:00:00,0,0,193,0,188,0,1.594,0,40,0,224,214,214,0,11,0
2014-07-06,22:00:00,0,0,193,0,188,0,1.594,0,40,0,224,211,214,0,11,0
2014-07-06,23:00:00,0,0,193,0,188,0,1.594,0,40,0,224,211,214,0,11,0
2014-07-07,00:00:00,178,134,190,0,188,1.5,1.581,45,41,91,224,181,214,11,11,178
2014-07-07,03:00:00,145,111,179,120,165,1,1.533,82,45,4,224,49,214,5,11,0
2014-07-07,04:00:00,127,96,172,128,156,1,1.507,80,48,2,224,38,214,4,11,127
2014-07-07,05:00:00,119,90,165,101,145,0.9,1.46,63,49,6,224,31,214,4,10,0
2014-07-07,06:00:00,109,82,156,90,136,0.8,1.4,60,50,4,224,27,214,3,10,0
2014-07-07,07:00:00,104,78,148,91,129,0.8,1.333,58,51,9,224,24,214,4,10,0
2014-07-07,08:00:00,100,75,139,100,126,0.9,1.267,57,51,18,224,14,214,5,9,0
2014-07-07,09:00:00,115,87,130,110,124,1,1.207,62,51,33,224,16,214,11,9,0
2014-07-07,10:00:00,140,107,124,148,126,1.1,1.16,66,52,51,224,16,214,17,9,140
2014-07-07,11:00:00,162,123,119,168,130,1.1,1.12,59,53,90,224,27,214,20,9,0
2014-07-07,13:00:00,226,176,124,193,140,1.2,1.129,42,53,200,224,68,214,25,11,0
2014-07-07,14:00:00,237,187,124,215,145,1.2,1.124,31,53,213,213,94,214,20,11,0
2014-07-07,15:00:00,248,198,128,222,150,1.2,1.128,28,52,222,222,121,214,17,12,248
2014-07-07,16:00:00,256,206,132,224,155,1.2,1.132,30,51,223,223,146,214,16,12,0
2014-07-07,17:00:00,253,203,134,226,158,1.2,1.132,35,51,219,223,170,214,16,12,253
2014-07-07,18:00:00,253,203,136,233,160,1.4,1.137,40,52,231,231,192,214,17,13,253
2014-07-07,19:00:00,247,197,138,222,164,1.4,1.132,45,52,213,231,207,214,17,13,247
2014-07-07,20:00:00,237,187,141,214,166,1.4,1.145,53,52,175,231,212,214,13,13,237
2014-07-07,21:00:00,252,202,143,266,172,1.5,1.162,56,53,142,231,205,212,12,13,252
2014-07-07,22:00:00,292,242,148,299,178,1.6,1.182,58,53,122,231,193,212,15,13,292
2014-07-07,23:00:00,278,228,151,255,182,1.7,1.204,54,53,114,231,180,212,15,13,278
2014-07-08,00:00:00,254,204,154,204,183,1.9,1.222,51,53,113,231,166,212,17,13,254
2014-07-08,01:00:00,234,184,156,199,183,1.9,1.25,61,53,85,231,149,212,17,13,234
2014-07-08,02:00:00,236,186,158,198,184,1.9,1.271,70,54,60,231,128,212,16,14,236
2014-07-08,03:00:00,250,200,162,219,188,1.8,1.304,74,54,47,231,107,212,12,14,250
2014-07-08,04:00:00,222,172,165,0,191,1.5,1.325,81,54,36,231,90,212,9,14,222
2014-07-08,05:00:00,202,152,168,158,193,1.2,1.337,64,54,34,231,76,212,7,14,202
2014-07-08,06:00:00,185,139,170,0,198,1.2,1.354,65,54,24,231,64,212,6,14,185
2014-07-08,07:00:00,176,133,173,0,203,1.2,1.371,70,55,21,231,53,212,6,15,176
2014-07-08,08:00:00,170,129,175,169,206,1.3,1.388,76,56,33,231,43,212,10,15,170
2014-07-08,09:00:00,178,134,177,190,210,1.4,1.404,55,55,71,231,41,212,14,15,178
2014-07-08,10:00:00,189,142,178,169,211,1.4,1.417,42,54,112,231,47,212,19,15,189
2014-07-08,11:00:00,127,96,177,0,213,1,1.412,0,54,143,231,59,212,0,15,0
2014-07-08,12:00:00,0,0,178,0,214,0,1.422,0,54,0,231,63,212,0,14,0
2014-07-08,13:00:00,38,15,171,0,216,0.3,1.383,10,52,121,231,75,212,3,13,38
2014-07-08,14:00:00,40,18,164,23,205,0.3,1.343,9,51,126,231,90,212,4,13,40
2014-07-08,16:00:00,37,8,147,32,193,0.3,1.265,17,50,118,231,116,212,5,12,37
2014-07-08,17:00:00,33,15,139,0,191,0.3,1.226,24,50,103,231,120,212,3,11,33
2014-07-08,18:00:00,31,8,131,31,178,0.3,1.178,32,49,94,213,118,212,4,10,31
2014-07-08,19:00:00,26,11,122,26,166,0.4,1.135,45,49,80,175,109,212,6,10,26
2014-07-08,20:00:00,0,0,120,0,163,0,1.123,0,49,0,143,109,205,0,10,0
2014-07-08,21:00:00,0,0,116,0,155,0,1.105,0,49,0,143,107,193,0,10,0
2014-07-08,22:00:00,99,32,106,147,144,1.1,1.081,125,52,2,143,86,180,5,9,99
2014-07-08,23:00:00,77,36,96,104,134,1,1.048,128,56,2,143,67,166,5,9,77
2014-07-09,00:00:00,70,30,88,89,125,0.8,0.995,116,59,7,143,48,149,5,8,70
2014-07-09,01:00:00,76,31,81,102,118,1.2,0.962,118,62,2,143,31,128,4,7,76
2014-07-09,02:00:00,87,43,74,124,113,1.4,0.938,118,64,2,143,16,120,6,7,87
2014-07-09,03:00:00,114,61,67,178,110,1.4,0.919,104,66,2,143,3,120,7,7,114
2014-07-09,04:00:00,38,24,60,37,105,0.5,0.871,76,66,2,143,3,120,3,6,38
2014-07-09,05:00:00,41,16,54,41,97,0.4,0.833,69,66,2,143,3,120,3,6,41
2014-07-09,06:00:00,32,13,48,28,93,0.4,0.795,63,66,2,143,3,120,2,6,32
2014-07-09,07:00:00,43,11,42,43,90,0.4,0.757,56,65,4,143,3,120,2,6,43
2014-07-09,08:00:00,52,16,37,53,83,0.5,0.719,50,64,8,143,3,120,2,5,52
2014-07-09,09:00:00,51,16,31,52,75,0.5,0.676,49,63,17,143,5,120,2,5,51
2014-07-09,10:00:00,44,11,25,44,68,0.5,0.633,42,63,27,143,8,120,2,4,44
2014-07-09,11:00:00,34,12,21,34,66,0.5,0.61,45,62,37,126,12,120,2,4,34
2014-07-09,14:00:00,0,0,21,0,69,0,0.642,0,68,0,118,19,120,0,4,0
2014-07-09,15:00:00,0,0,22,0,69,0,0.661,0,71,0,118,22,120,0,4,0
2014-07-09,16:00:00,47,17,22,47,69,0.3,0.661,22,71,114,114,49,120,2,4,47
2014-07-09,18:00:00,50,14,20,50,64,0.5,0.609,48,63,133,133,97,109,2,3,50
2014-07-09,19:00:00,95,29,21,140,70,0.7,0.623,68,64,150,150,111,111,6,3,95
2014-07-09,20:00:00,67,37,22,84,71,0.7,0.626,51,63,166,166,122,122,8,3,67
2014-07-09,21:00:00,57,30,22,64,70,0.6,0.625,49,63,104,166,124,124,6,4,57
2014-07-09,22:00:00,58,29,22,65,67,0.6,0.604,57,60,68,166,119,124,5,4,58
2014-07-09,23:00:00,55,26,21,60,65,0.6,0.588,58,57,66,166,113,124,5,4,55
2014-07-10,01:00:00,68,32,21,86,64,0.7,0.558,83,53,39,166,99,124,5,4,68
2014-07-10,03:00:00,101,40,20,152,61,1.1,0.525,118,54,2,166,64,124,5,4,101
2014-07-10,04:00:00,116,59,22,181,68,1.1,0.55,109,55,2,166,44,124,6,4,116
2014-07-10,05:00:00,103,47,23,155,73,1,0.575,91,56,2,166,31,124,6,4,103
2014-07-10,06:00:00,67,37,24,84,76,0.8,0.592,76,57,2,166,23,124,4,4,67
2014-07-10,07:00:00,53,26,24,55,76,0.6,0.6,67,57,6,166,15,124,4,4,53
2014-07-10,08:00:00,47,17,25,47,76,0.7,0.608,60,57,22,166,10,124,5,4,47
2014-07-10,09:00:00,63,20,25,75,77,0.7,0.617,61,58,37,166,9,124,13,5,63
2014-07-10,10:00:00,71,27,25,91,79,0.7,0.625,58,59,61,166,17,124,18,5,71
2014-07-10,11:00:00,44,21,26,44,79,0.6,0.629,32,58,117,166,31,124,20,6,44
2014-07-10,12:00:00,47,19,26,0,83,0.5,0.637,18,58,150,166,50,124,13,6,47
2014-07-10,13:00:00,50,14,27,0,86,0.4,0.642,12,58,159,166,69,124,6,7,50
2014-07-10,14:00:00,0,0,27,0,86,0,0.657,0,59,0,166,79,124,0,7,0
2014-07-10,15:00:00,134,27,28,120,87,0.6,0.67,28,60,268,268,116,124,10,7,134
2014-07-10,16:00:00,73,23,28,0,89,0.4,0.674,22,60,178,268,139,139,3,7,73
2014-07-10,17:00:00,52,13,28,38,89,0.4,0.674,21,59,161,268,156,156,2,7,52
2014-07-10,18:00:00,73,15,28,76,90,0.4,0.67,24,58,178,268,173,173,3,7,73
2014-07-10,19:00:00,83,13,28,115,89,0.5,0.661,31,57,170,268,181,181,5,7,0
2014-07-10,20:00:00,92,28,27,133,91,0.5,0.652,36,56,164,268,183,183,8,7,92
2014-07-10,21:00:00,0,0,27,0,92,0,0.655,0,56,0,268,187,187,0,7,0
2014-07-10,22:00:00,76,32,27,101,94,0.5,0.65,36,56,116,268,176,187,8,7,76
2014-07-10,23:00:00,76,36,28,102,97,0.6,0.65,37,55,107,268,153,187,9,8,76
2014-07-11,00:00:00,83,44,28,116,98,0.7,0.655,37,53,100,268,142,187,11,8,83
2014-07-11,01:00:00,81,52,29,112,100,0.8,0.659,45,52,81,268,131,187,12,8,81
2014-07-11,02:00:00,80,55,30,109,100,0.8,0.655,44,48,69,268,115,187,10,8,80
2014-07-11,03:00:00,76,54,31,102,98,0.8,0.641,52,45,50,268,98,187,8,8,76
2014-07-11,04:00:00,80,48,30,110,94,0.9,0.632,93,45,8,268,76,187,7,8,80
2014-07-11,05:00:00,101,53,31,152,94,0.9,0.627,100,45,2,268,67,187,6,8,101
2014-07-11,06:00:00,96,60,32,141,97,0.9,0.632,105,46,3,268,53,187,7,9,96
2014-07-11,07:00:00,77,44,33,104,99,0.7,0.636,77,47,32,268,43,187,7,9,77
2014-07-11,08:00:00,69,50,34,85,101,0.7,0.636,73,47,44,268,36,187,6,9,69
2014-07-11,09:00:00,47,26,34,47,100,0.5,0.627,38,46,79,268,36,187,3,8,47
2014-07-11,10:00:00,39,17,34,39,97,0.4,0.614,26,45,95,268,39,187,2,8,39
2014-07-11,11:00:00,60,16,34,69,98,0.4,0.605,27,45,111,268,47,187,2,7,60
2014-07-11,13:00:00,36,7,33,0,95,0.3,0.595,10,45,115,268,77,187,2,6,36
2014-07-11,15:00:00,0,0,34,0,94,0,0.595,0,45,0,178,97,187,0,6,0
2014-07-11,16:00:00,62,15,33,74,93,0.3,0.59,15,45,140,178,113,187,5,6,62
2014-07-11,17:00:00,50,9,33,50,93,0.4,0.59,23,45,142,178,124,187,3,6,50
2014-07-11,18:00:00,52,12,33,38,92,0.5,0.595,27,45,161,170,135,187,4,6,52
2014-07-11,19:00:00,62,14,33,44,88,0.4,0.59,33,45,169,169,144,187,5,6,62
2014-07-11,20:00:00,46,13,32,36,83,0.5,0.59,46,46,146,169,146,187,5,6,46
2014-07-11,21:00:00,55,16,32,59,82,0.5,0.586,51,46,112,169,145,176,5,6,55
2014-07-11,22:00:00,71,22,31,91,82,0.6,0.591,67,48,77,169,135,153,3,6,71
2014-07-12,00:00:00,86,36,31,122,81,0.8,0.595,137,53,2,169,116,146,5,5,86
2014-07-12,02:00:00,52,23,28,53,76,0.5,0.571,85,57,5,169,74,146,3,4,52
2014-07-12,03:00:00,26,12,26,0,75,0.3,0.548,51,57,30,169,54,146,2,4,26
2014-07-12,04:00:00,18,12,24,17,70,0.3,0.519,36,54,44,169,39,146,2,4,18
2014-07-12,05:00:00,22,6,22,22,63,0.3,0.49,32,51,47,169,30,146,2,4,22
2014-07-12,06:00:00,29,8,19,29,57,0.3,0.462,30,47,46,169,26,146,2,4,29
2014-07-12,07:00:00,34,6,17,34,54,0.3,0.443,34,45,40,169,28,146,2,3,34
2014-07-12,08:00:00,39,5,15,39,51,0.3,0.424,28,43,55,169,34,146,2,3,39
2014-07-12,10:00:00,30,4,14,18,49,0.3,0.41,12,42,93,169,54,146,2,3,30
2014-07-12,11:00:00,33,15,14,31,47,0.3,0.405,10,41,103,169,63,146,2,3,33
2014-07-12,12:00:00,36,4,13,10,46,0.2,0.395,9,40,114,169,72,146,2,3,36
2014-07-12,13:00:00,41,9,13,24,45,0.3,0.395,10,40,129,169,82,146,2,3,41
2014-07-12,14:00:00,45,9,13,0,45,0.3,0.391,9,39,141,169,94,146,2,3,45
2014-07-12,15:00:00,43,10,13,15,43,0.3,0.387,10,38,137,169,106,146,2,3,43
2014-07-12,17:00:00,45,6,12,27,40,0.3,0.383,12,37,141,169,124,146,2,3,45
2014-07-12,18:00:00,47,3,12,19,39,0.3,0.374,22,37,148,169,131,146,2,3,47
2014-07-12,19:00:00,47,14,12,35,38,0.4,0.374,31,37,148,148,137,146,2,3,47
2014-07-12,20:00:00,48,11,12,37,38,0.4,0.37,32,36,151,151,141,145,2,2,48
2014-07-12,21:00:00,44,14,12,43,38,0.4,0.365,39,36,140,151,143,143,2,2,44
2014-07-12,22:00:00,57,22,12,63,36,0.5,0.361,56,35,114,151,139,143,2,2,57
2014-07-12,23:00:00,61,25,12,71,38,0.6,0.371,67,37,90,151,134,143,2,2,61
2014-07-13,00:00:00,71,22,12,92,37,0.5,0.358,76,34,76,151,126,143,3,2,71
2014-07-13,01:00:00,101,36,12,152,40,0.7,0.363,124,35,6,151,109,143,5,2,101
2014-07-13,02:00:00,75,31,12,100,42,0.6,0.367,94,36,24,151,94,143,6,2,75
2014-07-13,03:00:00,23,9,12,23,41,0.4,0.371,37,35,53,151,82,143,2,2,23
2014-07-13,04:00:00,30,11,12,30,42,0.3,0.371,40,35,44,151,68,143,2,2,30
2014-07-13,05:00:00,28,17,13,28,42,0.4,0.375,52,36,32,151,55,143,2,2,28
2014-07-13,06:00:00,46,13,13,46,43,0.4,0.379,57,37,24,151,44,143,2,2,46
2014-07-13,07:00:00,69,19,13,87,45,0.5,0.387,69,39,11,151,34,143,3,2,69
2014-07-13,08:00:00,47,16,14,47,45,0.4,0.392,47,39,40,151,29,143,2,2,47
2014-07-13,09:00:00,35,8,14,35,46,0.4,0.396,25,40,70,151,37,143,2,2,35
2014-07-13,10:00:00,28,3,14,26,46,0.3,0.396,15,40,89,151,45,143,2,2,28
2014-07-13,11:00:00,41,8,13,41,47,0.3,0.396,16,40,105,151,52,143,2,2,41
2014-07-13,13:00:00,40,6,14,16,47,0.3,0.4,8,40,128,151,74,143,2,2,40
2014-07-13,14:00:00,45,18,14,0,47,0.3,0.4,8,40,141,151,89,143,2,2,0
2014-07-13,16:00:00,48,14,15,0,48,0.3,0.4,8,40,152,154,120,143,2,2,48
2014-07-13,17:00:00,107,12,15,164,54,0.3,0.4,17,40,120,154,127,143,2,2,107
2014-07-13,18:00:00,65,17,15,80,57,0.5,0.408,35,41,100,154,128,143,2,2,65
2014-07-13,19:00:00,35,15,15,34,57,0.8,0.425,69,42,63,154,123,143,2,2,35
2014-07-13,20:00:00,48,29,16,31,57,0.8,0.442,96,45,42,154,113,143,2,2,0
2014-07-13,21:00:00,59,26,17,67,58,0.8,0.458,92,47,49,154,103,139,2,2,0
2014-07-13,22:00:00,94,36,17,138,61,1.1,0.483,113,49,19,154,87,134,2,2,94
2014-07-13,23:00:00,118,54,19,185,66,1.2,0.508,121,52,2,154,68,128,4,2,118
2014-07-14,00:00:00,114,54,20,178,70,1.2,0.537,118,53,2,154,50,128,5,3,114
2014-07-14,01:00:00,101,54,21,152,70,1.2,0.558,116,53,2,154,35,128,5,3,101
2014-07-14,02:00:00,106,49,21,162,73,1.1,0.579,105,54,2,154,23,128,7,3,106
2014-07-14,03:00:00,91,43,23,132,78,0.9,0.6,94,56,2,154,15,128,6,3,91
2014-07-14,04:00:00,79,37,24,108,82,0.7,0.617,78,58,2,154,10,128,5,3,79
2014-07-14,06:00:00,30,19,24,27,81,0.5,0.625,60,58,9,154,3,128,5,3,30
2014-07-14,07:00:00,48,16,24,48,79,0.5,0.625,63,58,10,154,4,128,4,3,48
2014-07-14,08:00:00,55,19,24,60,80,0.5,0.629,57,58,25,154,7,128,4,3,55
2014-07-14,09:00:00,56,22,25,61,81,0.6,0.638,54,60,44,154,12,128,5,3,56
2014-07-14,10:00:00,53,18,25,55,83,0.5,0.646,42,61,83,154,22,128,5,3,53
2014-07-14,11:00:00,51,20,26,52,83,0.5,0.654,42,62,119,154,37,128,4,4,51
2014-07-14,12:00:00,73,19,26,46,84,0.5,0.663,27,62,178,178,59,128,4,4,73
2014-07-14,14:00:00,120,34,28,68,85,0.5,0.683,26,64,240,240,112,128,8,4,120
2014-07-14,15:00:00,130,28,28,87,88,0.6,0.696,26,65,260,260,143,143,9,4,0
2014-07-14,16:00:00,130,40,30,91,88,0.6,0.708,33,66,259,260,172,172,11,5,130
2014-07-14,17:00:00,141,33,30,86,85,0.6,0.721,30,67,281,281,202,202,9,5,141
2014-07-14,18:00:00,129,32,31,54,84,0.6,0.725,33,67,257,281,224,224,9,5,129
2014-07-14,19:00:00,107,28,32,67,86,0.6,0.717,41,65,213,281,235,235,8,6,107
2014-07-14,20:00:00,69,35,32,58,87,0.7,0.712,56,64,175,281,235,235,7,6,69
2014-07-14,21:00:00,50,28,32,50,86,0.7,0.708,66,63,125,281,226,235,6,6,50
2014-07-14,22:00:00,32,10,31,32,82,0.4,0.679,34,59,94,281,208,235,2,6,32
2014-07-14,23:00:00,45,13,29,45,76,0.4,0.646,40,56,82,281,186,235,3,6,45
2014-07-15,00:00:00,94,21,28,137,74,0.6,0.621,71,54,55,281,160,235,4,6,94
2014-07-15,10:00:00,117,40,30,183,102,0.8,0.558,64,38,90,281,105,235,8,6,117
2014-07-15,12:00:00,102,49,33,153,111,0.7,0.579,37,39,169,281,107,235,12,6,102
2014-07-15,13:00:00,102,50,34,122,113,0.7,0.583,22,38,204,281,118,235,9,6,102
2014-07-15,15:00:00,112,47,35,96,115,0.8,0.6,20,37,224,281,149,235,14,7,112
2014-07-15,17:00:00,111,43,36,69,114,0.6,0.608,18,36,222,257,183,235,10,7,111
2014-07-15,18:00:00,109,41,36,80,115,0.7,0.612,24,36,217,224,199,235,9,7,109
2014-07-15,19:00:00,94,41,37,74,115,0.7,0.617,30,35,195,224,209,235,9,7,94
2014-07-15,20:00:00,74,46,37,83,116,0.7,0.617,31,34,179,224,210,226,10,7,74
2014-07-15,21:00:00,0,0,38,0,119,0,0.613,0,33,0,224,211,211,0,7,0
2014-07-15,22:00:00,0,0,39,0,123,0,0.623,0,33,0,224,210,211,0,7,0
2014-07-15,23:00:00,94,70,42,115,126,0.9,0.645,52,34,104,224,190,211,2,7,94
2014-07-16,00:00:00,102,76,44,82,124,1,0.664,48,33,95,224,169,211,2,7,102
2014-07-16,01:00:00,117,88,46,112,110,1.1,0.686,57,34,66,224,143,211,2,7,117
2014-07-16,02:00:00,130,99,49,0,107,1,0.709,74,37,38,224,113,211,2,7,130
2014-07-16,03:00:00,135,103,52,107,107,1,0.736,99,40,11,224,82,211,2,7,135
2014-07-16,04:00:00,132,100,55,0,108,1,0.764,94,44,9,224,54,211,2,7,132
2014-07-16,05:00:00,109,82,57,0,108,0.8,0.777,80,47,14,224,48,211,2,7,109
2014-07-16,06:00:00,110,83,60,95,108,0.8,0.791,89,49,6,224,43,211,2,7,110
2014-07-16,07:00:00,117,88,62,139,111,0.9,0.809,75,50,15,224,32,211,2,7,117
2014-07-16,08:00:00,150,115,66,142,113,0.9,0.823,44,50,48,224,26,211,4,7,150
2014-07-16,09:00:00,158,120,69,160,113,1.1,0.841,49,50,57,224,25,211,8,7,158
2014-07-16,10:00:00,0,0,71,0,109,0,0.843,0,49,0,224,23,211,0,7,0
2014-07-16,11:00:00,0,0,72,0,106,0,0.845,0,49,0,224,25,211,0,6,0
2014-07-16,12:00:00,212,162,77,230,111,1.5,0.885,52,50,95,224,39,211,8,6,212
2014-07-16,14:00:00,0,0,81,0,110,0,0.906,0,53,0,224,54,211,0,6,0
2014-07-16,15:00:00,0,0,83,0,111,0,0.912,0,55,0,222,67,211,0,5,0
2014-07-16,16:00:00,0,0,85,0,114,0,0.919,0,57,0,222,76,211,0,5,0
2014-07-16,17:00:00,0,0,92,0,118,0,0.975,0,59,0,227,161,217,0,5,0
2014-07-16,18:00:00,138,105,96,0,122,1,0.994,36,60,204,227,175,211,8,5,0
2014-07-16,19:00:00,72,52,97,0,127,0.9,1.006,36,60,146,227,168,211,5,5,0
2014-07-16,21:00:00,0,0,100,0,131,0,1.027,0,62,0,227,192,210,0,4,0
2014-07-16,22:00:00,72,52,97,56,124,0.9,1.019,45,61,73,227,163,192,2,4,0
2014-07-16,23:00:00,89,66,107,0,134,0.8,1.095,37,58,68,246,155,192,2,5,89
2014-07-17,00:00:00,84,62,103,0,138,0.9,1.077,56,57,44,246,128,170,2,5,84
2014-07-17,01:00:00,93,69,103,0,141,1,1.073,59,57,40,246,102,170,2,5,93
2014-07-17,02:00:00,120,91,102,94,137,1.6,1.1,55,56,34,246,81,170,2,5,120
2014-07-17,03:00:00,123,93,102,0,140,1.5,1.123,63,55,18,246,65,170,2,5,123
2014-07-17,04:00:00,138,105,102,0,140,2,1.168,55,53,19,246,52,170,4,5,138
2014-07-17,05:00:00,139,106,103,0,140,2.6,1.25,54,52,18,246,39,170,5,5,139
2014-07-17,06:00:00,142,108,104,0,144,3.1,1.355,54,50,17,246,32,170,6,5,142
2014-07-17,07:00:00,163,124,106,0,145,3.1,1.455,53,49,17,246,26,170,6,5,163
2014-07-17,08:00:00,170,129,107,0,145,3,1.55,67,50,14,246,22,170,7,5,170
2014-07-17,09:00:00,186,140,107,143,143,2.7,1.623,66,51,24,246,20,170,9,5,186
2014-07-17,10:00:00,178,134,109,160,145,1.9,1.635,56,51,36,246,20,170,7,5,178
2014-07-17,11:00:00,196,147,110,164,147,1.9,1.646,53,51,65,246,26,170,8,6,196
2014-07-17,13:00:00,186,140,108,0,131,1.9,1.671,39,49,136,246,53,170,9,6,186
2014-07-17,14:00:00,189,142,107,0,127,1.9,1.679,36,48,158,246,70,170,8,6,189
2014-07-17,15:00:00,208,158,106,159,125,2.4,1.713,35,47,130,246,84,170,6,6,208
2014-07-17,16:00:00,218,168,107,168,130,2.7,1.763,42,47,129,246,99,170,9,5,218
2014-07-17,17:00:00,211,161,108,0,130,3,1.842,48,48,137,204,113,170,10,5,211
2014-07-17,18:00:00,199,149,110,0,130,2.8,1.917,43,48,162,162,129,170,11,6,199
2014-07-17,19:00:00,193,145,114,0,130,2.7,1.992,45,49,142,162,138,170,7,6,193
2014-07-17,20:00:00,0,0,117,0,136,0,2.039,0,49,0,162,142,170,0,6,0
2014-07-17,21:00:00,203,153,121,0,136,2.7,2.122,45,50,106,162,138,170,5,6,203
2014-07-17,22:00:00,210,160,126,0,147,2.7,2.2,48,50,88,162,128,151,4,6,210
2014-07-17,23:00:00,219,169,130,0,147,2.9,2.291,49,50,76,162,120,142,4,6,219
2014-07-18,00:00:00,235,185,136,0,147,3.1,2.387,55,50,58,162,110,142,4,6,235
2014-07-18,01:00:00,238,188,141,209,155,2.9,2.47,90,52,18,162,93,142,4,6,238
2014-07-18,02:00:00,201,151,143,0,164,2,2.487,77,53,36,162,75,142,5,6,201
2014-07-18,03:00:00,182,137,145,0,164,1.4,2.483,67,53,42,162,61,142,3,6,182
2014-07-18,04:00:00,160,122,146,0,164,1.4,2.457,76,54,23,162,56,142,4,6,160
2014-07-18,05:00:00,142,108,146,0,164,1.4,2.404,59,54,29,162,46,142,4,6,142
2014-07-18,06:00:00,145,111,146,0,164,1.5,2.335,45,53,52,162,42,142,5,6,145
2014-07-18,07:00:00,135,103,145,0,164,1.3,2.257,38,53,69,162,41,142,5,6,135
2014-07-18,08:00:00,130,99,144,0,164,1.8,2.204,42,52,66,162,42,142,8,6,130
2014-07-18,09:00:00,152,116,143,128,162,2.4,2.191,52,51,62,162,47,142,15,7,152
2014-07-18,10:00:00,169,128,143,162,162,2.5,2.217,50,51,84,162,53,142,23,7,0
2014-07-18,11:00:00,186,140,142,174,163,2.4,2.239,43,50,121,162,63,142,25,8,186
2014-07-18,12:00:00,196,147,143,183,169,2.2,2.261,37,50,163,163,81,142,26,9,196
2014-07-18,13:00:00,209,159,143,189,172,2.4,2.283,41,51,200,200,102,142,23,9,209
2014-07-18,14:00:00,218,168,145,195,174,2.2,2.296,42,51,240,240,126,142,18,10,218
2014-07-18,15:00:00,179,135,144,144,172,1.5,2.257,28,51,263,263,150,150,10,10,179
2014-07-18,16:00:00,135,103,141,0,173,1.2,2.191,21,50,228,263,170,170,8,10,135
2014-07-18,18:00:00,115,87,135,92,164,0.9,2.017,27,48,203,263,203,203,4,10,115
2014-07-18,19:00:00,130,99,133,140,162,1,1.943,33,47,193,263,212,212,4,9,130
2014-07-18,20:00:00,134,102,131,129,159,1,1.904,39,47,173,263,214,214,3,9,134
2014-07-18,21:00:00,108,81,128,102,154,0.9,1.829,40,47,154,263,208,214,3,9,108
2014-07-18,22:00:00,100,75,125,88,149,0.9,1.754,48,47,136,263,195,214,2,9,100
2014-07-18,23:00:00,102,76,121,97,145,0.9,1.671,52,47,115,263,176,214,2,9,102
2014-07-19,00:00:00,100,75,116,103,142,0.9,1.579,59,47,91,263,159,214,2,9,100
2014-07-19,01:00:00,89,66,111,82,134,0.8,1.492,53,45,76,263,143,214,2,9,89
2014-07-19,03:00:00,80,59,104,76,127,0.7,1.408,52,44,48,263,107,214,4,9,80
2014-07-19,04:00:00,84,62,102,90,125,0.7,1.379,58,43,32,263,89,214,3,9,84
2014-07-19,05:00:00,92,68,100,90,124,0.8,1.354,61,43,19,263,72,214,3,9,0
2014-07-19,06:00:00,89,66,98,76,121,0.8,1.325,55,43,20,263,58,214,3,9,89
2014-07-19,07:00:00,89,66,97,86,119,0.8,1.304,59,44,20,263,46,214,4,9,89
2014-07-19,08:00:00,94,70,96,119,119,0.9,1.267,61,45,32,263,39,214,5,8,94
2014-07-19,09:00:00,95,71,94,97,118,0.8,1.2,59,45,59,263,37,214,6,8,95
2014-07-19,10:00:00,79,58,91,64,114,0.7,1.125,38,45,112,263,43,214,7,7,79
2014-07-19,12:00:00,92,68,84,0,106,0.6,0.988,20,43,177,263,74,214,8,6,92
2014-07-19,14:00:00,72,52,75,0,97,0.5,0.842,13,41,174,263,113,214,2,4,72
2014-07-19,15:00:00,62,44,71,0,94,0.6,0.804,11,41,166,228,132,214,2,4,62
2014-07-19,16:00:00,0,0,70,0,94,0,0.787,0,41,0,209,146,214,0,4,0
2014-07-19,17:00:00,65,36,68,71,93,0.5,0.77,14,41,172,203,162,214,2,4,65
2014-07-19,18:00:00,65,38,66,80,92,0.6,0.757,14,40,168,193,170,214,2,4,65
2014-07-19,19:00:00,65,47,63,76,89,0.6,0.739,23,40,168,179,172,214,2,4,65
2014-07-19,20:00:00,77,56,61,92,87,0.7,0.726,26,39,172,179,171,208,2,4,77
2014-07-19,21:00:00,90,67,61,112,87,0.8,0.722,31,39,153,179,168,195,2,3,90
2014-07-19,22:00:00,98,73,61,116,89,0.8,0.717,34,38,138,179,162,176,3,4,98
2014-07-19,23:00:00,97,72,61,86,88,0.9,0.717,30,38,124,179,156,172,4,4,97
2014-07-20,00:00:00,69,46,59,88,87,0.7,0.709,31,36,95,179,149,172,2,4,69
2014-07-20,01:00:00,52,36,58,0,88,0.7,0.704,48,36,54,179,134,172,2,4,52
2014-07-20,02:00:00,64,46,57,0,88,0.7,0.704,55,36,54,179,120,172,2,4,64
2014-07-20,03:00:00,67,48,57,0,89,0.8,0.709,51,36,45,179,104,172,2,3,67
2014-07-20,04:00:00,73,53,56,0,89,0.7,0.709,44,36,54,179,90,172,2,3,73
2014-07-20,05:00:00,75,55,56,0,89,0.7,0.704,35,35,57,179,78,172,2,3,75
2014-07-20,06:00:00,78,57,56,65,88,0.8,0.704,40,34,42,179,66,172,2,3,78
2014-07-20,07:00:00,70,51,55,59,86,0.7,0.7,40,33,38,179,55,172,2,3,70
2014-07-20,08:00:00,69,50,54,71,82,0.7,0.691,36,32,46,179,49,172,3,3,69
2014-07-20,09:00:00,74,54,53,92,82,0.8,0.691,36,31,62,179,50,172,4,3,74
2014-07-20,10:00:00,87,64,54,100,85,0.8,0.696,35,31,92,179,55,172,7,3,87
2014-07-20,11:00:00,80,59,54,68,84,0.7,0.696,26,31,129,179,65,172,8,3,80
2014-07-20,15:00:00,124,94,57,121,91,1.2,0.77,17,32,209,209,134,172,11,4,124
2014-07-20,16:00:00,0,0,57,0,91,0,0.77,0,32,0,209,147,172,0,4,0
2014-07-20,17:00:00,79,58,58,0,92,0.9,0.787,16,32,180,209,164,172,8,4,79
2014-07-20,18:00:00,84,62,59,116,94,0.9,0.8,21,32,181,209,176,176,8,5,84
2014-07-20,19:00:00,70,51,59,74,94,0.7,0.804,23,32,169,209,182,182,5,5,70
2014-07-20,20:00:00,65,45,59,80,93,0.7,0.804,28,32,155,209,181,182,4,5,65
2014-07-20,21:00:00,66,46,58,82,91,0.8,0.804,38,32,129,209,174,182,5,5,66
2014-07-20,22:00:00,76,48,57,101,90,0.8,0.804,44,33,94,209,160,182,4,5,76
2014-07-20,23:00:00,69,46,55,87,90,0.8,0.8,44,33,75,209,140,182,3,5,69
2014-07-21,00:00:00,68,48,55,86,90,0.7,0.8,37,34,81,209,133,182,3,5,68
2014-07-21,01:00:00,73,53,56,96,91,0.7,0.8,39,33,76,209,120,182,2,5,73
2014-07-21,02:00:00,65,46,56,80,90,0.7,0.8,37,32,66,209,106,182,2,5,65
2014-07-21,03:00:00,72,52,56,91,90,0.7,0.796,34,32,60,209,92,182,3,5,72
2014-07-21,04:00:00,73,53,56,91,90,0.7,0.796,35,31,56,209,80,182,3,5,73
2014-07-21,05:00:00,80,59,57,81,90,0.7,0.796,36,31,50,209,70,182,3,5,0
2014-07-21,06:00:00,72,52,56,0,91,0.7,0.791,32,31,51,209,64,182,4,5,72
2014-07-21,07:00:00,43,30,55,0,93,0.5,0.783,17,30,60,209,63,182,2,5,43
2014-07-21,08:00:00,19,13,54,0,94,0.5,0.774,22,29,50,209,59,182,2,5,19
2014-07-21,09:00:00,18,12,52,0,94,0.6,0.765,28,29,46,209,55,182,2,5,18
2014-07-21,10:00:00,17,9,50,13,89,0.6,0.757,28,29,52,209,53,182,2,5,17
2014-07-21,11:00:00,23,16,48,0,90,0.6,0.752,29,29,60,209,53,182,9,5,23
2014-07-21,12:00:00,27,11,46,0,89,0.5,0.739,20,29,84,209,57,182,13,5,27
2014-07-21,13:00:00,30,13,43,0,89,0.5,0.722,14,29,94,209,62,182,9,5,30
2014-07-21,14:00:00,30,15,41,0,86,0.4,0.691,15,28,94,209,68,182,8,5,30
2014-07-21,15:00:00,36,0,38,9,78,0.4,0.657,13,28,113,181,74,182,6,5,0
2014-07-21,16:00:00,41,0,38,5,73,0.4,0.646,24,28,130,181,84,182,7,5,0
2014-07-21,17:00:00,37,3,36,14,69,0.4,0.625,28,29,117,181,93,182,5,5,37
2014-07-21,18:00:00,36,5,33,8,62,0.4,0.604,29,29,114,169,101,182,3,5,36
2014-07-21,19:00:00,31,7,31,24,59,0.4,0.592,40,30,97,155,105,181,3,4,31
2014-07-21,20:00:00,26,10,29,24,56,0.4,0.579,46,30,83,130,105,174,6,5,26
2014-07-21,21:00:00,40,9,28,40,53,0.4,0.563,48,31,58,130,101,160,4,5,40
2014-07-21,22:00:00,20,7,26,15,48,0.4,0.546,39,31,52,130,96,140,2,4,20
2014-07-21,23:00:00,17,8,24,10,43,0.4,0.529,34,30,51,130,88,133,2,4,17
2014-07-22,00:00:00,17,9,22,0,40,0.3,0.513,34,30,50,130,78,120,2,4,17
2014-07-22,01:00:00,18,6,20,9,34,0.3,0.496,36,30,45,130,69,106,2,4,18
2014-07-22,02:00:00,19,8,19,16,30,0.4,0.483,38,30,40,130,60,105,6,5,19
2014-07-22,03:00:00,28,9,17,28,26,0.4,0.471,41,30,35,130,52,105,6,5,28
2014-07-22,04:00:00,60,11,15,70,24,0.4,0.458,62,31,2,130,42,105,5,5,60
2014-07-22,05:00:00,34,6,12,34,21,0.4,0.446,47,32,15,130,36,105,4,5,0
2014-07-22,06:00:00,35,11,10,35,22,0.4,0.433,39,32,21,130,32,105,2,5,35
2014-07-22,07:00:00,34,7,9,34,23,0.4,0.429,41,33,18,130,28,105,2,5,34
2014-07-22,08:00:00,67,9,9,84,26,0.5,0.429,51,34,7,130,23,105,2,5,67
2014-07-22,09:00:00,26,9,9,26,26,0.6,0.429,49,35,12,130,19,105,5,5,26
2014-07-22,10:00:00,27,12,9,27,27,0.6,0.429,42,36,24,130,17,105,15,5,27
2014-07-22,11:00:00,32,9,9,32,27,0.6,0.429,40,36,31,130,16,105,12,5,32
2014-07-22,12:00:00,30,7,9,30,27,0.6,0.433,33,37,43,130,21,105,10,5,30
2014-07-22,13:00:00,22,14,9,22,27,0.5,0.433,28,37,53,130,26,105,8,5,22
2014-07-22,14:00:00,36,12,9,36,27,0.6,0.442,30,38,54,130,30,105,8,5,36
2014-07-22,15:00:00,37,17,9,37,29,0.8,0.458,32,39,50,130,34,105,27,6,37
2014-07-22,16:00:00,35,17,9,35,30,0.8,0.475,38,39,41,117,39,105,28,7,35
2014-07-22,17:00:00,27,11,10,27,31,0.6,0.483,30,39,50,114,43,105,14,7,27
2014-07-22,18:00:00,20,9,10,12,31,0.5,0.488,27,39,63,97,48,105,5,8,20
2014-07-22,19:00:00,19,11,10,17,30,0.5,0.492,37,39,53,83,51,105,5,8,19
2014-07-22,20:00:00,34,10,10,34,31,0.6,0.5,48,39,43,63,51,101,7,8,34
2014-07-22,21:00:00,34,13,10,30,30,0.7,0.512,67,40,20,63,47,96,9,8,34
2014-07-22,22:00:00,0,0,10,0,31,0,0.517,0,40,0,63,46,88,0,8,0
2014-07-22,23:00:00,0,0,10,0,32,0,0.523,0,40,0,63,45,78,0,8,0
2014-07-23,00:00:00,29,15,11,25,32,0.7,0.541,58,42,17,63,41,69,10,9,29
2014-07-23,01:00:00,23,12,11,23,32,0.6,0.555,46,42,28,63,37,60,10,9,23
2014-07-23,02:00:00,34,17,11,32,33,0.7,0.568,67,43,6,63,28,52,9,9,34
2014-07-23,03:00:00,56,16,12,62,35,0.7,0.582,70,45,2,63,19,51,7,9,56
2014-07-23,04:00:00,58,20,12,66,35,0.7,0.595,72,45,2,63,13,51,10,10,58
2014-07-23,05:00:00,58,20,13,66,36,0.8,0.614,70,46,2,63,10,51,11,10,0
2014-07-23,06:00:00,40,19,13,40,36,0.8,0.632,69,47,2,63,8,51,10,10,0
2014-07-23,07:00:00,35,19,14,35,36,0.7,0.645,67,49,2,63,8,51,10,11,35
2014-07-23,08:00:00,77,17,14,104,37,1.2,0.677,62,49,2,63,6,51,7,11,77
2014-07-23,09:00:00,37,17,14,37,38,1.1,0.7,66,50,3,63,3,51,8,11,37
2014-07-23,10:00:00,41,21,15,41,38,0.8,0.709,68,51,8,63,3,51,9,11,41
2014-07-23,11:00:00,56,13,15,62,40,0.8,0.718,67,52,14,63,4,51,8,10,56
2014-07-23,12:00:00,42,16,15,42,40,0.9,0.732,61,54,28,63,8,51,6,10,42
2014-07-23,13:00:00,48,21,16,46,41,1.2,0.764,96,57,28,63,11,51,5,10,48
2014-07-23,14:00:00,54,26,16,57,42,0.8,0.773,68,58,73,73,20,51,4,10,54
2014-07-23,15:00:00,58,20,16,66,44,0.7,0.768,43,59,121,121,35,51,4,9,58
2014-07-23,16:00:00,67,22,17,84,46,0.7,0.764,48,59,109,121,48,51,3,8,67
2014-07-23,17:00:00,57,30,17,64,47,0.8,0.773,63,61,109,121,61,61,3,7,57
2014-07-23,18:00:00,59,21,18,68,50,0.8,0.786,60,62,104,121,73,73,3,7,59
2014-07-23,19:00:00,81,35,19,111,54,1.1,0.814,118,66,40,121,77,77,5,7,81
2014-07-23,20:00:00,94,45,21,138,59,1.2,0.841,131,70,43,121,78,78,5,7,94
2014-07-23,21:00:00,80,42,22,109,63,1,0.855,81,71,48,121,81,81,5,7,80
2014-07-23,22:00:00,83,38,23,115,65,1,0.861,95,72,24,121,75,81,5,7,83
2014-07-23,23:00:00,86,43,24,121,67,1.1,0.871,107,73,10,121,61,81,5,7,86
2014-07-24,00:00:00,86,48,25,122,71,1.2,0.892,106,75,7,121,48,81,5,7,86
2014-07-24,01:00:00,75,50,27,100,75,1.1,0.913,97,77,13,121,36,81,7,6,75
2014-07-24,02:00:00,72,48,28,94,77,1,0.925,89,78,14,121,25,81,6,6,72
2014-07-24,03:00:00,71,47,29,92,78,0.9,0.933,86,79,10,121,21,81,7,6,71
2014-07-24,04:00:00,95,52,30,139,81,1,0.946,69,79,18,121,18,81,7,6,95
2014-07-24,05:00:00,141,66,32,232,88,1.3,0.967,112,80,2,121,12,81,5,6,141
2014-07-24,06:00:00,118,71,35,186,94,1.1,0.979,106,82,2,121,10,81,4,6,0
2014-07-24,07:00:00,113,70,37,175,100,1.3,1.004,114,84,2,121,9,81,5,5,113
2014-07-24,08:00:00,135,72,39,220,105,1.4,1.013,114,86,2,121,8,81,6,5,135
2014-07-24,09:00:00,130,79,41,209,112,1.4,1.025,0,87,2,121,7,81,6,5,130
2014-07-24,10:00:00,118,84,44,186,118,1.3,1.046,0,88,15,121,7,81,6,5,118
2014-07-24,11:00:00,139,97,48,227,125,1.4,1.071,132,91,13,121,7,81,7,5,139
2014-07-24,12:00:00,137,104,51,162,130,1.3,1.088,112,93,43,121,10,81,8,5,137
2014-07-24,13:00:00,107,80,54,133,134,1.1,1.083,83,92,68,121,18,81,10,5,107
2014-07-24,14:00:00,123,93,57,169,138,1.2,1.1,97,94,78,121,28,81,9,6,123
2014-07-24,15:00:00,94,70,59,78,139,1.1,1.117,62,95,105,109,41,81,11,6,94
2014-07-24,16:00:00,82,60,60,61,138,0.9,1.125,45,95,124,124,56,81,12,6,82
2014-07-24,17:00:00,89,66,62,121,140,1,1.133,65,95,122,124,71,81,13,7,89
2014-07-24,18:00:00,79,58,63,0,143,0.8,1.133,51,94,140,140,87,87,11,7,79
2014-07-24,19:00:00,44,19,63,42,140,0.6,1.113,30,90,138,140,102,102,5,7,44
2014-07-24,20:00:00,46,32,62,36,136,0.8,1.096,45,86,121,140,112,112,6,7,46
2014-07-24,21:00:00,62,33,62,73,134,1.1,1.1,51,85,102,140,116,116,10,7,62
2014-07-24,22:00:00,89,58,63,128,135,1.8,1.133,64,84,67,140,115,116,17,8,89
2014-07-24,23:00:00,109,82,64,143,136,2,1.171,72,82,50,140,108,116,14,8,109
2014-07-25,00:00:00,97,0,65,144,137,2.8,1.238,70,80,40,140,98,116,14,9,0
2014-07-25,01:00:00,144,110,67,113,138,2.6,1.3,73,79,32,140,86,116,11,9,144
2014-07-25,02:00:00,142,108,70,158,140,2.5,1.363,100,80,2,140,69,116,7,9,142
2014-07-25,03:00:00,145,111,73,179,144,2.3,1.421,96,80,2,140,52,116,5,9,145
2014-07-25,04:00:00,159,121,76,158,145,2.6,1.488,88,81,2,140,37,116,5,9,159
2014-07-25,05:00:00,162,123,78,142,141,2.8,1.55,86,80,2,140,25,116,5,9,162
2014-07-25,06:00:00,153,117,80,139,139,2.7,1.617,85,79,2,140,17,116,5,9,153
2014-07-25,07:00:00,125,95,81,0,137,1.8,1.638,59,76,19,140,13,116,7,9,125
2014-07-25,08:00:00,114,86,82,101,132,1.8,1.654,47,73,44,140,13,116,11,9,114
2014-07-25,09:00:00,99,74,82,77,126,1.5,1.658,42,72,83,140,20,116,14,9,99
2014-07-25,10:00:00,74,54,80,61,120,1.2,1.654,31,70,133,140,36,116,12,10,74
2014-07-25,11:00:00,70,46,78,55,112,1.2,1.646,28,66,176,176,58,116,12,10,70
2014-07-25,12:00:00,92,34,75,0,110,0.8,1.625,23,62,193,193,82,116,9,10,92
2014-07-25,13:00:00,101,29,73,0,109,0.7,1.608,14,59,201,201,106,116,7,10,101
2014-07-25,14:00:00,107,32,70,32,102,0.8,1.592,17,56,214,214,133,133,8,10,107
2014-07-25,15:00:00,98,26,68,0,103,0.7,1.575,16,54,198,214,155,155,6,9,98
2014-07-25,17:00:00,110,39,66,60,101,1.1,1.583,31,52,219,219,193,193,13,9,110
2014-07-25,18:00:00,105,42,65,48,99,1,1.592,38,51,209,219,203,203,15,9,0
2014-07-25,19:00:00,98,42,66,49,99,1.1,1.613,43,52,198,219,206,206,10,10,98
2014-07-25,20:00:00,92,52,67,94,102,1.3,1.633,50,52,193,219,206,206,12,10,92
2014-07-25,21:00:00,79,58,68,88,103,1.4,1.646,48,52,183,219,203,206,12,10,79
2014-07-25,22:00:00,88,65,69,105,102,1.5,1.633,60,52,161,219,197,206,12,10,88
2014-07-25,23:00:00,93,69,68,113,100,1.5,1.612,64,51,157,219,192,206,13,10,93
2014-07-26,00:00:00,112,71,68,174,102,1.6,1.563,49,51,172,219,187,206,13,10,112
2014-07-26,01:00:00,112,84,67,162,104,1.5,1.517,49,50,148,219,178,206,15,10,112
2014-07-26,02:00:00,124,94,67,140,103,1.4,1.471,47,47,139,219,169,206,15,10,124
2014-07-26,03:00:00,139,106,66,150,102,1.6,1.442,42,45,136,219,161,206,17,11,139
2014-07-26,04:00:00,178,134,67,175,103,1.7,1.404,40,43,104,219,150,206,14,11,178
2014-07-26,05:00:00,180,136,67,167,104,1.7,1.358,33,41,96,219,139,206,10,11,180
2014-07-26,06:00:00,185,139,68,162,105,1.7,1.317,38,39,84,219,130,206,8,11,0
2014-07-26,08:00:00,189,142,73,173,111,1.7,1.308,55,39,71,219,106,206,10,11,189
2014-07-26,09:00:00,189,142,75,176,116,1.6,1.313,49,39,93,219,99,206,11,11,189
2014-07-26,10:00:00,190,143,79,190,122,1.7,1.333,51,40,124,219,97,206,13,11,190
2014-07-26,11:00:00,192,144,83,199,129,1.7,1.354,62,41,155,219,100,206,18,12,0
2014-07-26,13:00:00,0,0,90,0,131,0,1.417,0,44,0,244,120,206,0,12,0
2014-07-26,15:00:00,135,65,95,66,132,1,1.459,14,45,270,270,160,206,16,13,135
2014-07-26,18:00:00,134,71,99,110,138,1.2,1.477,18,43,267,276,248,248,27,15,134
2014-07-26,19:00:00,118,66,100,102,140,1,1.473,24,42,236,276,261,261,20,15,118
2014-07-26,20:00:00,101,57,101,90,140,0.9,1.455,27,41,201,276,254,261,14,15,101
2014-07-26,21:00:00,83,60,101,115,141,0.9,1.432,38,40,167,276,242,261,10,15,83
2014-07-26,22:00:00,80,59,100,77,140,0.8,1.4,37,39,151,276,230,261,10,15,80
2014-07-26,23:00:00,80,59,100,88,139,0.7,1.364,37,38,141,276,214,261,12,15,80
2014-07-27,00:00:00,88,65,100,104,136,0.7,1.323,33,37,138,276,197,261,13,15,88
2014-07-27,01:00:00,90,67,99,114,134,0.7,1.286,38,37,126,276,178,261,14,15,0
2014-07-27,02:00:00,90,67,98,106,132,0.8,1.259,33,36,127,276,161,261,16,15,0
2014-07-27,03:00:00,105,79,96,114,130,0.8,1.223,32,36,130,276,148,261,21,15,105
2014-07-27,04:00:00,118,89,94,136,129,0.8,1.182,30,35,124,276,138,261,26,16,0
2014-07-27,05:00:00,129,98,93,152,128,0.9,1.145,37,35,100,276,130,261,28,16,129
2014-07-27,06:00:00,139,106,91,154,128,0.9,1.109,34,35,93,276,122,261,29,17,0
2014-07-27,07:00:00,145,111,90,163,127,1,1.077,42,35,81,276,115,261,26,18,0
2014-07-27,08:00:00,153,117,89,166,127,1.1,1.05,52,35,76,276,107,261,28,19,0
2014-07-27,09:00:00,153,117,88,185,128,1.1,1.027,56,35,86,276,102,261,28,20,0
2014-07-27,10:00:00,0,0,85,0,125,0,0.995,0,34,0,276,99,261,0,20,0
2014-07-27,12:00:00,186,140,82,225,124,1.7,0.965,27,32,257,276,116,261,61,22,186
2014-07-27,13:00:00,180,136,84,161,125,1.5,0.99,19,31,277,277,145,261,49,24,0
2014-07-27,14:00:00,139,106,85,0,125,1.3,1.005,15,31,277,277,176,261,39,24,139
2014-07-27,15:00:00,138,92,86,113,128,1.1,1.009,14,31,275,277,208,261,28,25,138
2014-07-27,16:00:00,132,84,87,132,130,0.9,1,14,31,264,277,239,261,21,25,132
2014-07-27,17:00:00,129,81,88,129,130,0.9,0.986,17,31,257,277,268,268,14,24,129
2014-07-27,18:00:00,127,90,88,149,132,0.9,0.973,20,31,253,277,266,268,14,24,127
2014-07-27,19:00:00,124,94,90,134,134,0.9,0.968,23,31,245,277,263,268,15,23,124
2014-07-27,20:00:00,125,95,91,162,137,0.9,0.968,27,31,228,277,260,268,14,23,125
2014-07-27,21:00:00,113,85,93,137,138,0.9,0.968,29,30,201,277,250,268,14,24,113
2014-07-27,22:00:00,103,77,93,116,140,0.9,0.973,27,30,183,277,238,268,13,24,103
2014-07-27,23:00:00,109,82,94,122,142,0.9,0.982,27,29,177,277,226,268,14,24,109
2014-07-28,00:00:00,114,86,95,174,145,0.9,0.991,25,29,160,277,213,268,14,24,114
2014-07-28,01:00:00,130,99,97,156,147,0.9,1,24,28,138,277,198,268,12,24,0
2014-07-28,02:00:00,139,106,99,143,149,0.9,1.005,19,28,126,277,182,268,12,24,139
2014-07-28,03:00:00,148,113,100,146,150,0.9,1.009,20,27,112,277,166,268,12,23,148
2014-07-28,04:00:00,152,116,101,145,151,0.9,1.014,22,27,89,277,148,268,9,22,0
2014-07-28,05:00:00,155,118,102,146,150,0.9,1.014,47,27,58,277,130,268,7,22,155
2014-07-28,06:00:00,159,121,103,140,150,0.9,1.014,47,28,44,277,113,268,5,20,159
2014-07-28,07:00:00,166,126,104,141,149,1,1.014,48,28,44,277,96,268,7,20,166
2014-07-28,08:00:00,178,134,104,158,148,1.1,1.014,57,28,49,277,83,268,9,19,178
2014-07-28,09:00:00,186,140,106,155,147,1.1,1.014,57,28,84,277,76,268,13,18,186
2014-07-28,10:00:00,175,132,107,171,148,1.2,1.022,40,29,147,277,78,268,19,18,175
2014-07-28,11:00:00,178,134,108,185,150,1.5,1.042,33,29,189,277,88,268,35,19,0
2014-07-28,12:00:00,173,131,107,0,146,1.5,1.033,25,29,230,277,106,268,39,18,173
2014-07-28,14:00:00,113,77,105,0,145,1,1.008,18,29,226,275,152,268,19,16,113
2014-07-28,15:00:00,105,63,104,81,143,0.7,0.992,16,29,210,264,172,268,12,16,105
2014-07-28,16:00:00,106,73,104,95,142,0.7,0.983,19,30,211,257,193,268,10,15,106
2014-07-28,17:00:00,105,75,104,133,142,0.7,0.975,20,30,210,253,208,266,8,15,105
2014-07-28,18:00:00,104,78,103,90,139,0.7,0.967,22,30,203,245,215,263,6,15,104
2014-07-28,19:00:00,99,74,102,113,138,0.7,0.958,27,30,193,243,216,260,4,14,99
2014-07-29,01:00:00,119,90,104,127,134,0.8,0.952,40,32,98,243,156,216,7,13,119
2014-07-29,02:00:00,123,93,103,128,133,0.8,0.948,37,33,102,243,136,216,7,13,123
2014-07-29,03:00:00,127,96,103,130,132,0.7,0.938,26,33,118,243,121,216,9,13,127
2014-07-29,04:00:00,134,102,102,121,131,0.8,0.933,28,33,124,243,122,216,8,12,134
2014-07-29,05:00:00,156,119,102,148,131,0.8,0.929,30,33,115,243,121,216,8,13,156
2014-07-29,06:00:00,193,145,103,182,133,0.9,0.929,34,32,107,243,113,216,11,13,0
2014-07-29,07:00:00,226,176,105,209,137,1,0.929,40,32,102,243,109,216,12,13,0
2014-07-29,08:00:00,242,192,108,234,141,1.1,0.929,54,31,92,243,107,216,14,13,242
2014-07-29,09:00:00,227,177,110,215,144,1.1,0.929,53,31,111,243,109,216,15,13,227
2014-07-29,10:00:00,202,152,111,198,145,1,0.919,37,31,149,243,115,216,12,13,202
2014-07-29,11:00:00,169,128,111,0,143,0.9,0.89,25,31,186,243,123,216,8,12,169
2014-07-29,12:00:00,147,112,110,0,143,0.8,0.857,18,30,195,243,132,216,5,10,147
2014-07-29,13:00:00,139,106,109,0,144,0.7,0.833,15,30,201,226,143,216,4,9,139
2014-07-29,15:00:00,115,87,112,88,144,0.7,0.819,13,30,211,211,169,216,3,8,115
2014-07-29,16:00:00,122,92,113,0,147,0.8,0.824,15,30,217,217,185,216,3,7,122
2014-07-29,17:00:00,115,87,113,88,145,0.8,0.829,16,29,216,217,198,216,3,7,115
2014-07-29,18:00:00,113,85,113,114,146,0.8,0.833,23,29,209,217,205,216,4,7,113
2014-07-29,19:00:00,115,87,114,119,146,0.8,0.838,28,30,201,217,207,214,5,7,115
2014-07-29,20:00:00,113,85,113,115,145,0.8,0.836,30,30,189,217,207,209,6,7,113
2014-07-29,21:00:00,112,84,111,118,143,0.8,0.835,36,30,168,217,202,207,6,7,112
2014-07-29,22:00:00,107,80,111,0,145,0.8,0.835,31,30,159,217,196,207,4,7,107
2014-07-29,23:00:00,90,67,111,91,143,0.8,0.835,16,29,156,217,189,207,2,7,90
2014-07-30,00:00:00,75,55,108,0,143,0.8,0.833,18,28,145,217,180,207,2,7,75
2014-07-30,02:00:00,64,46,105,0,145,0.7,0.829,8,26,166,217,165,207,2,6,64
2014-07-30,03:00:00,60,43,103,0,146,0.7,0.829,9,25,153,217,159,207,2,6,60
2014-07-30,04:00:00,73,53,101,56,141,0.8,0.829,33,25,105,217,149,207,2,6,73
2014-07-30,05:00:00,102,76,99,0,141,0.8,0.829,16,25,112,217,142,207,2,6,102
2014-07-30,06:00:00,114,86,96,0,137,0.9,0.829,17,24,121,217,137,207,2,5,114
2014-07-30,07:00:00,137,104,93,0,131,1.2,0.838,32,24,90,217,129,207,2,5,137
2014-07-30,08:00:00,153,117,90,0,120,1.4,0.85,36,23,76,217,120,207,2,4,153
2014-07-30,09:00:00,172,130,88,0,110,1.8,0.879,39,23,63,217,111,207,2,4,172
2014-07-30,10:00:00,179,135,88,0,99,1.8,0.913,0,22,75,217,99,207,4,3,179
2014-07-30,12:00:00,183,138,89,0,99,1.9,0.992,32,23,80,217,88,207,4,3,183
2014-07-30,14:00:00,176,133,91,149,104,1.9,1.092,25,24,112,217,85,207,9,4,176
2014-07-30,15:00:00,159,121,92,0,106,1.8,1.138,19,24,146,217,92,207,6,4,159
2014-07-30,17:00:00,180,136,95,0,109,1.8,1.217,27,25,151,209,112,207,6,4,180
2014-07-30,19:00:00,186,140,100,0,113,1.8,1.3,33,25,140,189,128,207,5,4,186
2014-07-30,20:00:00,208,158,103,181,123,2.1,1.354,42,26,116,168,133,202,4,4,208
2014-07-30,21:00:00,216,166,106,204,135,2.2,1.413,46,26,99,166,133,196,4,4,216
2014-07-30,22:00:00,229,179,111,224,146,2.1,1.467,46,27,71,166,128,189,5,4,229
2014-07-30,23:00:00,234,184,115,212,161,2.1,1.521,47,28,55,166,117,180,4,4,234
2014-07-31,00:00:00,226,176,121,190,164,2,1.571,35,29,65,166,107,170,4,4,226
2014-07-31,01:00:00,222,172,125,186,167,1.8,1.613,34,30,65,166,96,165,4,4,222
2014-07-31,02:00:00,223,173,131,193,169,2.1,1.671,44,31,42,155,82,159,5,4,223
2014-07-31,03:00:00,220,170,136,0,169,2,1.725,55,33,25,155,67,149,6,4,220
2014-07-31,04:00:00,211,161,141,0,180,1.8,1.767,58,34,14,155,55,142,5,4,211
2014-07-31,05:00:00,217,167,144,0,180,1.8,1.808,59,36,12,155,44,137,4,5,217
2014-07-31,06:00:00,212,162,148,0,180,1.8,1.846,59,38,10,155,36,133,5,5,212
2014-07-31,07:00:00,234,184,151,0,180,1.8,1.871,55,39,21,155,32,133,8,5,234
2014-07-31,08:00:00,269,219,155,0,180,1.9,1.892,56,40,37,155,28,133,10,5,269
2014-07-31,09:00:00,271,221,159,0,180,1.9,1.896,53,40,59,155,28,133,10,6,271
2014-07-31,10:00:00,260,210,162,0,180,1.9,1.9,55,41,73,155,31,133,10,6,260
2014-07-31,11:00:00,261,211,165,0,180,1.9,1.908,47,42,112,155,42,133,13,6,261
2014-07-31,12:00:00,250,200,168,0,180,2,1.912,45,42,146,155,59,133,14,7,250
2014-07-31,13:00:00,250,200,171,0,180,1.9,1.912,38,43,195,195,82,133,16,7,250
2014-07-31,14:00:00,248,198,174,0,184,1.8,1.908,36,43,230,230,109,133,13,7,248
2014-07-31,18:00:00,182,137,178,0,199,1.2,1.837,25,44,216,250,202,202,4,7,182
2014-07-31,19:00:00,168,127,178,0,199,1.2,1.812,29,44,199,250,213,213,4,7,168
2014-07-31,20:00:00,182,137,177,0,202,1.2,1.775,38,43,189,250,219,219,4,7,182
2014-07-31,21:00:00,208,158,176,191,199,1.4,1.742,38,43,175,250,216,219,4,7,208
2014-07-31,22:00:00,229,179,176,181,192,1.9,1.733,43,43,146,250,206,219,5,7,229
2014-07-31,23:00:00,244,194,177,199,190,2.1,1.733,54,43,113,250,188,219,5,7,244
2014-08-01,01:00:00,204,154,177,0,191,1.6,1.725,47,45,86,250,153,219,6,7,204
2014-08-01,02:00:00,144,110,174,0,190,1.1,1.683,30,44,83,250,137,219,6,7,144
2014-08-01,03:00:00,153,117,172,0,190,1.4,1.658,41,43,57,250,119,219,6,7,153
2014-08-01,04:00:00,156,119,170,0,190,1.9,1.662,45,43,48,250,101,219,7,7,156
2014-08-01,05:00:00,163,124,168,0,190,1.8,1.662,46,42,37,250,84,219,7,8,163
2014-08-01,06:00:00,160,122,167,0,190,2.2,1.679,52,42,22,250,68,219,6,8,0
2014-08-01,07:00:00,178,134,164,0,190,1.5,1.667,56,42,2,250,55,219,4,7,178
2014-08-01,08:00:00,200,150,162,0,190,1.4,1.646,50,42,9,250,43,219,5,7,200
2014-08-01,10:00:00,217,167,158,0,186,1.3,1.596,38,41,59,250,32,219,5,7,217
2014-08-01,11:00:00,188,141,155,0,186,1.2,1.567,22,40,117,250,40,219,6,7,188
2014-08-01,12:00:00,188,141,152,0,186,1.2,1.533,23,39,134,250,51,219,5,6,188
2014-08-01,14:00:00,152,116,146,0,186,1.1,1.475,12,37,223,250,95,219,5,5,152
2014-08-01,15:00:00,138,105,143,0,186,1.1,1.458,14,36,217,235,122,219,4,5,138
2014-08-01,17:00:00,135,103,139,104,170,0.9,1.425,20,36,209,223,170,219,4,5,135
2014-08-01,18:00:00,135,103,137,104,159,0.9,1.412,20,36,209,223,188,219,4,5,135
2014-08-01,19:00:00,168,127,137,0,159,1.1,1.408,24,35,185,223,197,219,4,5,168
2014-08-01,20:00:00,170,129,137,0,159,1.1,1.404,20,35,190,223,204,216,3,5,170
2014-08-01,21:00:00,175,132,136,0,152,1.3,1.4,27,34,171,223,201,206,4,5,175
2014-08-01,22:00:00,175,132,134,0,145,1.3,1.375,31,34,142,223,191,204,4,5,175
2014-08-01,23:00:00,130,99,130,0,127,1,1.329,31,33,111,223,178,204,3,5,130
2014-08-02,00:00:00,115,87,126,0,127,0.9,1.283,39,32,70,223,161,204,3,5,115
2014-08-02,01:00:00,102,76,122,102,121,1,1.258,61,33,22,223,138,204,4,5,102
2014-08-02,02:00:00,105,79,121,126,122,1.3,1.267,76,35,2,223,112,204,4,5,105
2014-08-02,04:00:00,110,83,118,100,119,1.3,1.238,68,37,2,223,65,204,5,5,110
2014-08-02,05:00:00,103,77,116,0,119,1.2,1.213,58,37,2,223,44,204,6,5,103
2014-08-02,06:00:00,84,62,114,0,119,1,1.163,49,37,2,223,27,204,6,5,84
2014-08-02,07:00:00,82,60,110,64,112,0.8,1.133,41,37,2,223,13,204,6,5,82
2014-08-02,08:00:00,92,68,107,95,110,1,1.117,44,36,5,223,5,204,7,5,92
2014-08-02,09:00:00,97,72,103,97,102,1.1,1.108,45,36,13,223,4,204,8,5,97
2014-08-02,10:00:00,120,91,100,136,105,1.1,1.1,51,37,31,223,7,204,8,5,120
2014-08-02,11:00:00,144,110,99,122,107,1.2,1.1,44,38,76,223,17,204,9,5,144
2014-08-02,13:00:00,168,127,98,150,112,1.2,1.1,36,39,178,223,54,204,8,5,168
2014-08-02,14:00:00,180,136,98,0,112,1.3,1.108,33,40,240,240,83,204,9,5,180
2014-08-02,15:00:00,169,128,99,0,112,1.2,1.113,28,41,289,289,119,204,8,6,169
2014-08-02,16:00:00,158,120,100,124,113,1.1,1.117,23,41,297,297,156,204,6,6,158
2014-08-02,17:00:00,148,113,100,0,114,1,1.121,18,41,257,297,186,204,4,6,148
2014-08-02,18:00:00,143,109,101,110,114,0.9,1.121,20,41,234,297,212,212,4,6,143
2014-08-02,19:00:00,139,106,100,0,114,1,1.117,24,41,202,297,227,227,3,6,139
2014-08-02,20:00:00,147,112,99,156,117,1,1.113,26,41,179,297,235,235,4,6,147
2014-08-02,21:00:00,148,113,98,0,117,1.1,1.104,32,41,154,297,232,235,3,6,148
2014-08-02,22:00:00,147,112,98,116,117,1.1,1.096,24,41,166,297,222,235,3,6,147
2014-08-02,23:00:00,160,122,98,139,118,1.2,1.104,31,41,148,297,205,235,4,6,160
2014-08-03,00:00:00,163,124,100,137,120,1.3,1.121,32,41,138,297,185,235,3,6,163
2014-08-03,01:00:00,176,133,102,188,125,1.5,1.142,129,44,15,297,155,235,4,6,176
2014-08-03,02:00:00,192,144,105,204,129,1.7,1.158,140,46,2,297,126,235,4,6,192
2014-08-03,03:00:00,198,148,108,245,136,1.8,1.179,131,49,2,297,101,235,4,6,198
2014-08-03,04:00:00,207,157,111,222,143,1.6,1.192,124,51,5,297,79,235,4,6,0
2014-08-03,06:00:00,219,169,119,177,147,1.4,1.217,120,56,2,297,39,235,4,5,219
2014-08-03,07:00:00,195,146,123,0,152,1.2,1.233,69,57,57,297,28,235,3,5,195
2014-08-03,08:00:00,169,128,125,0,155,1.1,1.238,38,57,94,297,22,235,4,5,169
2014-08-03,09:00:00,155,118,127,0,159,1.1,1.238,34,57,112,297,35,235,4,5,155
2014-08-03,10:00:00,118,89,127,98,156,1,1.233,23,55,131,297,51,235,4,5,118
2014-08-03,11:00:00,119,90,126,110,156,1,1.225,23,54,171,297,72,235,4,5,119
2014-08-03,13:00:00,127,88,124,0,154,1,1.208,13,53,254,297,129,235,4,4,127
2014-08-03,15:00:00,130,99,121,124,150,1.1,1.196,25,52,254,297,189,235,4,4,130
2014-08-03,16:00:00,124,94,119,146,152,1.1,1.196,38,53,216,289,205,235,3,4,124
2014-08-03,17:00:00,112,84,118,0,152,1,1.196,27,53,179,289,213,235,2,4,112
2014-08-03,18:00:00,89,66,116,102,151,1,1.2,27,53,158,289,216,235,2,4,89
2014-08-03,19:00:00,80,59,114,76,147,0.9,1.196,23,53,162,289,215,235,2,4,80
2014-08-03,20:00:00,68,49,112,77,143,1,1.196,44,54,125,289,205,232,2,4,68
2014-08-03,21:00:00,77,56,110,80,139,1.2,1.2,62,55,92,289,184,222,2,3,77
2014-08-03,22:00:00,77,56,107,58,136,0.9,1.192,59,57,74,289,158,216,2,3,77
2014-08-03,23:00:00,87,64,105,93,134,1,1.183,90,59,28,289,129,216,3,3,87
2014-08-04,00:00:00,87,64,102,79,131,1.3,1.183,106,62,9,289,103,216,3,3,87
2014-08-04,01:00:00,104,78,100,85,125,1.1,1.167,96,61,13,289,83,216,4,3,104
2014-08-04,02:00:00,103,77,97,139,122,1.1,1.142,99,59,2,289,63,216,5,3,103
2014-08-04,03:00:00,109,82,94,122,115,1.1,1.113,78,57,6,289,44,216,4,3,109
2014-08-04,04:00:00,102,76,91,77,108,1,1.088,62,55,14,289,30,216,3,3,102
2014-08-04,05:00:00,92,68,87,79,102,1.1,1.075,50,52,18,289,21,216,2,3,92
2014-08-04,06:00:00,95,71,83,78,97,1.2,1.067,52,49,13,289,13,216,2,3,95
2014-08-04,07:00:00,97,72,80,92,97,1.2,1.067,71,49,3,289,10,216,2,3,97
2014-08-04,08:00:00,102,76,78,0,97,1,1.063,60,50,17,289,11,216,3,3,102
2014-08-04,09:00:00,32,22,74,0,97,0.5,1.038,21,50,61,289,17,216,3,3,32
2014-08-04,10:00:00,20,8,70,0,97,0.4,1.013,20,50,64,289,25,216,2,3,20
2014-08-04,11:00:00,30,8,67,30,93,0.4,0.987,16,49,68,289,32,216,2,3,30
2014-08-04,12:00:00,44,5,63,44,90,0.4,0.962,14,49,65,289,39,216,2,3,0
2014-08-04,13:00:00,19,3,60,5,85,0.4,0.937,18,49,59,289,44,216,2,3,19
2014-08-04,14:00:00,18,7,56,13,80,0.4,0.908,16,49,55,254,49,216,2,3,18
2014-08-04,15:00:00,20,6,52,0,78,0.4,0.879,14,48,61,216,56,216,2,3,20
2014-08-04,16:00:00,17,4,48,5,70,0.4,0.85,20,48,54,179,61,216,2,3,17
2014-08-04,17:00:00,15,3,45,5,67,0.5,0.829,30,48,43,162,59,216,2,3,15
2014-08-04,18:00:00,16,4,42,5,62,0.5,0.808,32,48,43,162,56,215,2,3,16
2014-08-04,19:00:00,17,10,40,0,61,0.5,0.792,34,49,41,125,53,205,2,3,17
2014-08-04,20:00:00,14,7,39,0,60,0.4,0.767,28,48,44,92,50,184,2,3,14
2014-08-04,21:00:00,16,10,37,0,59,0.4,0.733,31,47,43,74,48,158,2,3,16
2014-08-04,22:00:00,15,10,35,0,59,0.4,0.712,29,45,44,68,47,129,2,3,15
2014-08-04,23:00:00,16,11,33,0,57,0.4,0.688,23,43,48,68,45,103,2,2,16
2014-08-05,01:00:00,13,8,27,10,50,0.4,0.621,26,36,39,68,43,63,2,2,13
2014-08-05,02:00:00,24,5,24,13,41,0.4,0.592,47,34,14,68,39,61,2,2,24
2014-08-05,03:00:00,25,11,21,0,35,0.5,0.567,49,33,13,68,36,61,2,2,25
2014-08-05,04:00:00,29,13,19,0,32,0.5,0.546,58,33,2,68,30,61,2,2,29
2014-08-05,05:00:00,22,7,16,10,26,0.5,0.521,43,33,2,68,25,61,2,2,22
2014-08-05,06:00:00,13,9,14,12,20,0.5,0.492,26,31,11,68,21,61,2,2,13
2014-08-05,07:00:00,26,18,11,0,14,0.5,0.463,24,29,11,68,16,61,2,2,26
2014-08-05,08:00:00,38,13,9,38,16,0.6,0.446,23,28,12,68,13,61,2,2,0
2014-08-05,09:00:00,42,15,8,42,18,0.6,0.45,23,28,17,68,10,61,3,2,0
2014-08-05,10:00:00,47,26,9,47,20,0.7,0.463,0,28,22,68,11,61,6,2,47
2014-08-05,11:00:00,60,31,10,69,23,0.9,0.483,0,29,33,65,14,61,14,3,60
2014-08-05,12:00:00,55,39,11,43,23,1,0.508,0,30,63,63,21,61,26,4,55
2014-08-05,13:00:00,48,33,13,0,24,0.9,0.529,0,30,105,105,34,61,25,5,48
2014-08-05,15:00:00,47,23,14,30,25,0.8,0.554,0,32,149,149,67,67,18,6,47
2014-08-05,16:00:00,79,35,15,108,33,0.8,0.571,0,33,176,176,87,87,17,6,79
2014-08-05,18:00:00,67,42,19,56,47,0.7,0.596,0,33,173,246,135,135,5,7,67
2014-08-05,19:00:00,57,31,20,64,48,0.7,0.604,0,33,127,246,147,147,3,7,57
2014-08-05,20:00:00,45,31,21,0,48,0.7,0.617,0,33,86,246,149,149,4,7,45
2014-08-05,21:00:00,36,25,22,0,48,0.7,0.629,0,33,69,246,145,149,6,7,36
2014-08-05,22:00:00,55,31,23,59,49,0.7,0.642,0,34,67,246,137,149,6,7,55
2014-08-05,23:00:00,51,33,24,52,49,0.7,0.654,0,35,50,246,124,149,6,8,51
2014-08-06,00:00:00,59,32,25,68,50,0.7,0.667,0,35,49,246,108,149,5,8,59
2014-08-06,01:00:00,63,45,26,64,53,0.7,0.679,0,37,51,246,84,149,5,8,63
2014-08-06,02:00:00,60,42,28,69,57,0.8,0.696,0,35,22,246,65,149,4,8,60
2014-08-06,03:00:00,64,44,29,78,58,0.9,0.712,0,33,2,246,50,149,3,8,64
2014-08-06,04:00:00,69,50,31,87,59,1.1,0.737,0,28,2,246,39,149,2,8,69
2014-08-06,05:00:00,86,51,33,122,65,1.2,0.767,0,24,2,246,31,149,3,8,86
2014-08-06,06:00:00,78,57,35,68,68,1,0.787,0,23,2,246,23,149,3,8,78
2014-08-06,07:00:00,77,56,36,82,69,1.1,0.812,0,23,3,246,17,149,2,8,77
2014-08-06,08:00:00,92,68,39,83,71,1,0.829,0,23,17,246,13,149,4,8,92
2014-08-06,09:00:00,54,38,40,0,73,0.7,0.833,0,0,49,246,12,149,4,8,54
2014-08-06,10:00:00,36,25,39,0,74,0.6,0.829,20,20,84,246,20,149,4,8,36
2014-08-06,11:00:00,40,16,39,22,72,0.5,0.813,2,11,125,246,36,149,2,8,40
2014-08-06,12:00:00,40,14,38,0,73,0.4,0.787,2,8,128,246,51,149,2,7,40
2014-08-06,13:00:00,35,3,37,5,69,0.3,0.763,2,7,109,246,65,149,2,6,35
2014-08-06,14:00:00,35,3,36,5,66,0.3,0.75,2,6,109,246,78,149,2,5,35
2014-08-06,15:00:00,34,20,36,0,68,0.3,0.729,2,5,108,246,91,149,2,4,34
2014-08-06,17:00:00,34,15,33,0,61,0.3,0.683,2,4,107,173,111,149,2,3,34
2014-08-06,18:00:00,34,8,31,0,62,0.3,0.667,2,4,107,128,114,149,2,3,34
2014-08-06,19:00:00,85,8,30,119,66,0.5,0.658,18,5,130,130,114,149,3,3,85
2014-08-06,20:00:00,72,21,30,94,67,0.6,0.654,28,7,141,141,116,145,3,3,72
2014-08-06,21:00:00,71,28,30,91,69,0.7,0.654,36,10,126,141,118,137,3,3,71
2014-08-06,22:00:00,92,30,30,133,73,0.8,0.658,34,12,104,141,117,124,4,3,92
2014-08-06,23:00:00,102,47,30,154,79,1.2,0.679,57,15,68,141,112,118,5,3,102
2014-08-07,00:00:00,121,0,30,192,86,2,0.733,59,18,56,141,105,118,7,3,0
2014-08-07,01:00:00,168,127,34,175,93,2.2,0.796,85,22,14,141,93,118,6,3,168
2014-08-07,02:00:00,150,115,37,125,96,1.8,0.838,79,25,2,141,80,118,6,3,150
2014-08-07,03:00:00,115,87,39,118,99,1.3,0.854,70,28,2,141,64,118,7,3,115
2014-08-07,04:00:00,113,85,40,102,99,1.2,0.858,66,30,2,141,47,118,6,4,113
2014-08-07,05:00:00,109,82,42,105,98,1.1,0.854,86,33,4,141,32,118,6,4,0
2014-08-07,06:00:00,104,78,43,115,101,1.2,0.862,82,35,9,141,20,118,6,4,104
2014-08-07,07:00:00,109,82,44,0,102,1.2,0.867,65,36,31,141,15,118,6,4,109
2014-08-07,08:00:00,74,54,43,0,104,1.1,0.871,46,37,62,141,16,118,7,4,74
2014-08-07,09:00:00,71,47,44,92,103,1,0.883,48,37,75,141,23,118,8,4,71
2014-08-07,10:00:00,98,62,45,146,105,1.3,0.913,48,38,111,141,37,118,18,5,98
2014-08-07,11:00:00,75,55,47,60,108,1.6,0.958,29,40,167,167,58,118,30,6,75
2014-08-07,13:00:00,111,48,50,0,110,1.2,1.033,31,42,221,221,108,118,22,8,111
2014-08-07,14:00:00,127,43,52,62,114,1.1,1.067,30,43,253,253,139,139,19,9,127
2014-08-07,15:00:00,141,40,53,72,111,1.1,1.1,26,44,282,282,170,170,16,9,141
2014-08-07,16:00:00,140,49,55,61,109,1.1,1.133,23,45,279,282,197,197,16,10,140
2014-08-07,17:00:00,136,50,56,77,107,1.2,1.171,24,46,271,282,222,222,20,11,136
2014-08-07,18:00:00,120,42,58,0,107,1,1.2,28,47,240,282,238,238,15,11,120
2014-08-07,19:00:00,123,44,59,102,106,1.2,1.229,33,48,246,282,248,248,16,12,123
2014-08-07,20:00:00,119,55,61,132,108,1.4,1.263,39,48,237,282,254,254,16,12,119
2014-08-07,21:00:00,80,52,62,109,109,1,1.275,44,48,165,282,247,254,11,12,80
2014-08-07,22:00:00,77,52,63,104,108,1.1,1.288,63,50,120,282,230,254,10,13,77
2014-08-07,23:00:00,68,49,63,58,103,1,1.279,52,49,114,282,209,254,12,13,68
2014-08-08,00:00:00,60,43,62,55,96,0.8,1.229,39,49,111,282,188,254,13,13,60
2014-08-08,01:00:00,59,42,58,50,90,0.8,1.171,43,47,98,282,166,254,13,14,59
2014-08-08,02:00:00,62,44,55,72,87,0.8,1.129,46,45,87,282,147,254,12,14,62
2014-08-08,03:00:00,67,48,54,0,85,0.8,1.108,47,44,78,282,126,254,13,14,67
2014-08-08,04:00:00,67,48,52,76,84,0.8,1.092,50,44,66,282,105,254,11,14,67
2014-08-08,05:00:00,69,50,51,63,82,1.2,1.096,48,42,62,282,92,254,11,15,69
2014-08-08,06:00:00,90,60,50,130,83,1.5,1.108,91,43,10,282,78,254,8,15,90
2014-08-08,07:00:00,115,87,50,179,87,1.7,1.129,91,44,2,282,64,254,7,15,115
2014-08-08,08:00:00,120,91,52,147,90,1.5,1.146,90,46,10,282,52,254,11,15,120
2014-08-08,09:00:00,113,85,53,128,92,1.5,1.167,72,47,52,282,46,254,19,15,113
2014-08-08,10:00:00,110,83,54,135,91,1.4,1.171,59,47,95,282,47,254,23,15,110
2014-08-08,12:00:00,113,85,57,87,98,1.4,1.167,54,49,163,282,64,254,23,15,113
2014-08-08,13:00:00,117,62,58,0,98,0.9,1.154,27,49,234,282,85,254,16,15,117
2014-08-08,14:00:00,116,52,58,0,100,0.9,1.146,18,49,232,282,113,254,11,14,116
2014-08-08,17:00:00,126,45,58,114,106,1.2,1.129,24,48,252,252,191,254,12,13,126
2014-08-08,19:00:00,138,63,59,138,108,1.9,1.179,42,49,276,276,232,254,18,13,138
2014-08-08,20:00:00,116,66,60,101,106,1.5,1.183,41,49,231,276,240,247,16,13,116
2014-08-08,21:00:00,72,52,60,52,103,1,1.183,38,49,171,276,232,240,10,13,72
2014-08-08,22:00:00,79,58,60,100,103,1,1.179,48,48,143,276,221,240,10,13,79
2014-08-08,23:00:00,81,56,60,111,106,1,1.179,54,48,122,276,208,240,12,13,81
2014-08-09,00:00:00,89,66,61,116,109,1.1,1.192,60,49,110,276,196,240,14,13,89
2014-08-09,01:00:00,97,72,62,135,114,1.3,1.213,66,50,93,276,176,240,15,14,97
2014-08-09,02:00:00,108,81,64,133,117,1.3,1.233,62,51,97,276,155,240,12,14,108
2014-08-09,04:00:00,145,111,69,148,123,1.6,1.3,93,55,39,276,105,240,10,13,145
2014-08-09,05:00:00,142,108,71,173,129,1.7,1.321,105,57,21,276,86,240,9,13,142
2014-08-09,07:00:00,182,137,76,188,133,1.7,1.329,96,58,6,276,54,240,9,13,182
2014-08-09,08:00:00,190,143,78,196,135,1.8,1.342,88,58,22,276,43,240,12,13,190
2014-08-09,09:00:00,196,147,81,0,136,1.8,1.354,65,57,71,276,40,240,22,14,196
2014-08-09,10:00:00,147,112,82,0,136,1.4,1.354,56,57,110,276,42,240,22,14,147
2014-08-09,11:00:00,112,84,82,0,134,1.3,1.35,35,56,166,276,55,240,21,13,112
2014-08-09,13:00:00,123,73,82,0,134,1.3,1.358,19,54,246,276,105,240,18,13,123
2014-08-09,14:00:00,123,64,82,0,134,1.2,1.371,15,54,246,276,135,240,15,14,123
2014-08-09,15:00:00,120,54,82,64,130,1.2,1.383,13,54,239,276,164,240,11,14,120
2014-08-09,16:00:00,120,49,83,0,130,1.1,1.392,13,54,240,276,191,240,10,14,120
2014-08-09,17:00:00,113,42,83,0,131,0.8,1.375,15,53,225,276,210,240,9,14,113
2014-08-09,18:00:00,108,45,83,57,127,0.8,1.346,21,53,216,276,224,240,9,13,108
2014-08-09,19:00:00,105,47,82,77,123,0.9,1.304,26,52,209,246,229,240,8,13,105
2014-08-09,20:00:00,85,45,81,66,121,0.8,1.275,28,52,188,246,226,232,8,13,85
2014-08-09,21:00:00,80,46,81,109,124,0.9,1.271,41,52,151,246,214,229,7,13,80
2014-08-09,22:00:00,104,18,79,157,128,0.5,1.25,17,50,141,246,201,229,2,12,104
2014-08-09,23:00:00,37,9,77,22,122,0.6,1.233,27,49,116,246,186,229,2,12,37
2014-08-10,00:00:00,28,14,75,0,123,0.7,1.217,31,48,89,246,167,229,2,11,28
2014-08-10,01:00:00,35,24,73,0,122,0.7,1.192,37,47,73,246,148,229,2,11,35
2014-08-10,02:00:00,29,20,70,0,121,0.6,1.163,30,46,61,246,129,229,2,10,29
2014-08-10,03:00:00,35,24,67,0,119,0.7,1.125,39,43,44,246,108,229,2,10,35
2014-08-10,04:00:00,40,28,64,0,116,0.7,1.088,36,41,38,246,89,229,2,10,40
2014-08-10,05:00:00,39,27,60,0,111,0.7,1.046,41,38,24,246,73,229,2,9,39
2014-08-10,06:00:00,42,29,56,0,103,0.7,1.004,53,36,14,246,57,229,2,9,42
2014-08-10,07:00:00,44,29,52,44,89,0.8,0.967,66,35,9,246,44,229,2,9,44
2014-08-10,08:00:00,38,26,47,0,77,0.7,0.921,45,33,47,246,39,229,2,8,38
2014-08-10,09:00:00,43,30,42,0,77,0.7,0.875,42,32,70,246,38,229,2,8,43
2014-08-10,10:00:00,62,44,39,57,75,0.8,0.85,57,32,75,246,40,229,2,7,62
2014-08-10,12:00:00,67,48,37,0,72,0.9,0.821,46,34,148,246,61,229,4,5,67
2014-08-10,13:00:00,89,38,36,0,72,0.8,0.8,30,35,191,246,82,229,3,5,89
2014-08-10,15:00:00,117,34,34,44,70,0.6,0.754,17,35,233,240,136,229,3,4,117
2014-08-10,16:00:00,112,32,33,58,69,0.6,0.733,18,35,224,233,158,229,3,4,112
2014-08-10,17:00:00,105,27,32,0,69,0.6,0.725,21,35,210,233,176,229,3,3,105
2014-08-10,18:00:00,89,24,31,46,68,0.6,0.717,24,36,191,233,190,229,3,3,89
2014-08-10,19:00:00,79,36,31,98,70,0.7,0.708,31,36,183,233,201,226,4,3,79
2014-08-10,20:00:00,85,53,31,119,75,0.9,0.712,33,36,184,233,205,214,5,3,85
2014-08-10,21:00:00,70,51,32,79,72,0.9,0.712,36,36,158,233,201,205,5,3,70
2014-08-10,22:00:00,81,54,33,112,68,0.9,0.729,46,37,127,233,189,205,5,3,81
2014-08-11,00:00:00,119,90,39,168,87,1.3,0.775,95,42,38,233,145,205,4,3,119
2014-08-11,01:00:00,105,79,41,133,91,1.3,0.8,140,46,2,233,119,205,5,3,105
2014-08-11,02:00:00,90,67,43,122,93,1.1,0.821,123,50,11,233,96,205,4,3,90
2014-08-11,03:00:00,72,52,44,60,91,0.8,0.825,82,52,58,233,81,205,3,3,72
2014-08-11,04:00:00,55,39,45,0,91,0.6,0.821,64,53,34,233,62,205,2,3,55
2014-08-11,05:00:00,43,30,45,0,91,0.5,0.813,68,54,21,233,45,205,2,3,43
2014-08-11,06:00:00,31,13,44,0,91,0.4,0.8,61,54,25,233,32,205,2,3,31
2014-08-11,07:00:00,50,18,44,50,91,0.5,0.788,63,54,20,233,26,205,2,3,50
2014-08-11,08:00:00,33,13,43,0,91,0.6,0.783,65,55,26,233,25,205,2,3,33
2014-08-11,09:00:00,30,13,42,30,87,0.4,0.771,41,55,56,233,31,205,2,3,30
2014-08-11,10:00:00,48,10,41,48,87,0.4,0.754,30,54,76,233,40,205,2,3,48
2014-08-11,11:00:00,32,19,40,0,88,0.3,0.729,17,52,100,233,45,205,2,3,32
2014-08-11,14:00:00,43,9,35,0,79,0.3,0.667,12,50,135,233,83,205,2,3,43
2014-08-11,15:00:00,44,3,34,10,77,0.3,0.654,13,49,138,224,98,205,2,3,44
2014-08-11,16:00:00,44,8,33,0,78,0.3,0.642,11,49,139,210,112,205,2,3,44
2014-08-11,17:00:00,48,8,32,0,78,0.3,0.629,14,49,152,191,124,205,2,3,48
2014-08-11,18:00:00,50,9,32,27,77,0.3,0.617,20,49,157,184,134,205,2,3,50
2014-08-11,19:00:00,49,19,31,46,74,0.4,0.604,38,49,154,184,141,205,2,3,49
2014-08-11,20:00:00,52,22,30,54,69,0.5,0.588,61,50,128,158,142,201,2,3,52
2014-08-11,21:00:00,44,25,29,42,67,0.6,0.575,54,51,140,157,143,189,2,3,44
2014-08-11,22:00:00,74,22,27,97,66,0.7,0.567,66,52,116,157,141,168,2,2,74
2014-08-11,23:00:00,64,28,25,69,61,0.9,0.558,127,54,38,157,128,145,2,2,64
2014-08-12,00:00:00,88,39,23,125,58,1.7,0.575,165,57,2,157,111,143,2,2,88
2014-08-12,01:00:00,87,42,22,123,57,1.4,0.579,157,57,2,157,92,143,2,2,87
2014-08-12,02:00:00,92,52,21,133,58,1.2,0.583,141,58,2,157,73,143,3,2,92
2014-08-12,03:00:00,60,36,20,70,59,0.8,0.583,117,59,2,157,54,143,3,2,60
2014-08-12,04:00:00,48,27,20,0,59,0.6,0.583,96,61,19,157,40,143,2,2,48
2014-08-12,05:00:00,45,22,20,0,59,0.4,0.579,90,62,9,157,24,143,2,2,45
2014-08-12,06:00:00,43,22,20,25,57,0.4,0.579,86,63,2,157,10,143,2,2,43
2014-08-12,07:00:00,34,15,20,0,57,0.4,0.575,67,63,15,157,7,143,2,2,34
2014-08-12,08:00:00,31,14,20,31,56,0.4,0.567,48,62,36,157,11,143,2,2,31
2014-08-12,09:00:00,40,14,20,40,56,0.4,0.567,42,62,52,157,17,143,2,2,40
2014-08-12,10:00:00,43,8,20,43,56,0.4,0.567,41,63,67,157,25,143,4,2,43
2014-08-12,12:00:00,43,19,20,42,57,0.4,0.575,27,64,136,157,52,143,8,3,43
2014-08-12,13:00:00,69,18,20,58,59,0.6,0.588,20,64,175,175,73,143,9,3,69
2014-08-12,14:00:00,110,33,21,70,60,0.9,0.613,23,65,220,220,100,143,15,3,110
2014-08-12,15:00:00,122,48,23,64,63,1,0.642,25,65,244,244,129,143,15,4,122
2014-08-12,16:00:00,111,32,24,64,63,0.9,0.667,23,66,221,244,152,152,10,4,111
2014-08-12,17:00:00,95,17,24,57,63,0.8,0.688,26,66,196,244,170,170,9,5,95
2014-08-12,18:00:00,93,19,25,52,64,0.9,0.713,32,67,194,244,186,186,10,5,93
2014-08-12,19:00:00,97,31,25,76,65,1,0.738,44,67,197,244,198,198,12,5,97
2014-08-12,20:00:00,76,40,26,102,67,1.2,0.767,66,67,162,244,201,201,11,6,76
2014-08-12,21:00:00,88,48,27,125,71,1.3,0.796,70,68,135,244,196,201,12,6,88
2014-08-12,22:00:00,73,53,28,95,71,1.2,0.817,72,68,104,244,182,201,10,6,73
2014-08-12,23:00:00,58,15,28,66,71,0.4,0.796,31,64,107,244,165,201,3,7,58
2014-08-13,00:00:00,107,13,27,163,73,0.4,0.742,19,58,111,244,151,201,2,7,0
2014-08-13,01:00:00,46,16,26,46,69,0.5,0.704,24,53,94,244,138,201,2,7,46
2014-08-13,02:00:00,30,18,24,0,66,0.6,0.679,28,48,95,244,126,201,2,6,30
2014-08-13,03:00:00,36,21,24,36,64,0.6,0.671,28,44,75,244,110,201,2,6,36
2014-08-13,04:00:00,26,18,23,0,64,0.6,0.671,42,42,48,244,96,201,2,6,26
2014-08-13,05:00:00,33,23,23,26,63,0.5,0.675,33,40,47,244,85,201,2,6,33
2014-08-13,06:00:00,50,35,24,42,63,0.6,0.683,37,37,57,244,79,201,2,6,50
2014-08-13,07:00:00,46,32,25,0,63,0.6,0.692,37,36,61,244,74,201,2,6,46
2014-08-13,08:00:00,46,32,25,0,65,0.6,0.7,38,36,58,244,67,201,2,6,46
2014-08-13,09:00:00,62,44,27,0,66,0.7,0.712,49,36,36,244,60,201,2,6,62
2014-08-13,10:00:00,72,52,28,0,68,0.8,0.729,41,36,61,244,55,201,2,6,72
2014-08-13,11:00:00,63,45,30,0,70,0.9,0.75,29,36,90,244,57,201,2,6,63
2014-08-13,12:00:00,50,35,31,0,71,0.9,0.771,40,37,93,244,63,201,2,6,50
2014-08-13,14:00:00,25,17,31,0,72,0.5,0.758,28,37,56,244,66,201,2,5,25
2014-08-13,15:00:00,20,14,29,0,73,0.5,0.737,29,37,48,221,64,201,2,5,20
2014-08-13,16:00:00,30,21,29,0,74,0.6,0.725,32,38,49,197,63,201,2,4,30
2014-08-13,17:00:00,30,21,29,0,75,0.6,0.717,28,38,62,197,66,201,2,4,30
2014-08-13,18:00:00,29,20,29,0,78,0.6,0.704,29,38,67,197,67,201,2,4,29
2014-08-13,19:00:00,29,20,28,0,78,0.6,0.688,29,37,67,162,64,201,2,3,29
2014-08-13,20:00:00,35,24,28,0,75,0.6,0.662,29,35,65,135,61,196,2,3,35
2014-08-13,21:00:00,39,27,27,31,63,0.7,0.637,59,35,27,111,55,182,2,2,39
2014-08-13,22:00:00,32,22,26,0,59,0.7,0.617,63,35,17,111,50,165,2,2,32
2014-08-14,00:00:00,32,22,26,28,35,0.9,0.65,63,37,8,95,42,138,2,2,32
2014-08-14,01:00:00,35,20,26,0,33,0.8,0.662,69,39,6,95,35,126,2,2,35
2014-08-14,02:00:00,36,25,27,0,33,0.9,0.675,68,41,5,93,27,110,2,2,36
2014-08-14,03:00:00,32,18,27,0,32,0.9,0.688,64,42,4,93,20,96,2,2,32
2014-08-14,04:00:00,26,18,27,0,32,0.8,0.696,48,43,16,93,13,85,2,2,26
2014-08-14,05:00:00,33,23,27,0,34,0.8,0.708,43,43,15,93,12,79,2,2,33
2014-08-14,06:00:00,43,30,26,0,30,0.9,0.721,55,44,2,93,10,74,2,2,43
2014-08-14,07:00:00,35,24,26,34,31,0.8,0.729,49,44,4,93,8,67,2,2,35
2014-08-14,08:00:00,33,23,26,29,31,0.7,0.733,47,45,16,93,9,67,4,2,33
2014-08-14,09:00:00,43,30,25,0,31,0.8,0.737,46,45,33,93,12,67,7,2,43
2014-08-14,10:00:00,42,29,24,35,31,0.8,0.738,53,45,45,93,17,67,11,3,42
2014-08-14,11:00:00,33,23,23,25,30,0.8,0.733,49,46,71,93,25,67,10,3,33
2014-08-14,12:00:00,57,36,23,64,35,0.9,0.733,63,47,81,81,33,67,13,3,57
2014-08-14,13:00:00,77,56,24,80,41,0.9,0.742,65,48,127,127,47,67,11,4,77
2014-08-14,14:00:00,107,64,26,68,44,0.8,0.754,49,49,213,213,74,74,8,4,107
2014-08-14,15:00:00,113,38,27,47,44,0.7,0.763,26,49,226,226,102,102,6,4,113
2014-08-14,16:00:00,97,31,28,0,44,0.6,0.763,23,49,197,226,124,124,4,4,97
2014-08-14,17:00:00,85,25,28,0,44,0.6,0.763,24,49,188,226,144,144,4,4,85
2014-08-14,18:00:00,93,25,28,38,44,0.6,0.763,30,49,194,226,162,162,6,5,93
2014-08-14,19:00:00,52,34,29,54,44,0.7,0.767,40,49,152,226,172,172,5,5,52
2014-08-14,20:00:00,55,39,29,51,45,0.8,0.775,45,50,138,226,179,179,5,5,55
2014-08-14,21:00:00,46,32,30,0,46,0.8,0.779,60,50,89,226,175,179,4,5,46
2014-08-14,22:00:00,48,33,30,0,46,0.9,0.788,96,51,32,226,152,179,3,5,48
2014-08-14,23:00:00,51,21,30,0,46,0.9,0.796,101,53,14,226,126,179,2,5,51
2014-08-15,00:00:00,48,25,30,42,47,0.8,0.792,96,55,15,226,103,179,3,5,48
2014-08-15,01:00:00,60,20,30,70,49,0.9,0.796,110,56,6,226,80,179,3,5,60
2014-08-15,02:00:00,61,29,30,71,51,1.1,0.804,109,58,2,226,56,179,2,5,61
2014-08-15,03:00:00,54,37,31,57,51,1.2,0.817,102,60,2,226,37,179,2,5,54
2014-08-15,04:00:00,49,34,32,0,51,0.8,0.817,93,61,2,226,20,179,2,5,49
2014-08-15,05:00:00,64,28,32,77,53,0.8,0.817,79,63,2,226,9,179,2,5,64
2014-08-15,07:00:00,94,70,34,0,57,0.9,0.817,79,65,2,226,4,179,2,5,94
2014-08-15,08:00:00,139,106,38,0,59,1.2,0.838,76,67,10,226,4,179,4,5,139
2014-08-15,10:00:00,135,103,45,0,67,1.1,0.867,59,68,82,226,18,179,13,5,135
2014-08-15,11:00:00,34,0,46,0,70,0,0.87,50,68,108,226,32,179,16,5,0
2014-08-15,13:00:00,48,19,43,35,65,0.5,0.843,19,64,153,226,68,179,8,5,48
2014-08-15,15:00:00,80,18,40,28,63,0.5,0.817,19,63,184,197,111,179,6,5,80
2014-08-15,16:00:00,119,30,40,70,64,0.6,0.817,30,63,238,238,139,179,7,5,119
2014-08-15,17:00:00,151,52,41,119,67,0.7,0.822,42,64,301,301,171,179,7,6,151
2014-08-15,18:00:00,112,29,41,63,69,0.5,0.817,30,64,223,301,189,189,4,5,112
2014-08-15,19:00:00,54,21,41,58,69,0.6,0.813,46,64,161,301,196,196,2,5,54
2014-08-15,20:00:00,58,26,40,66,70,0.6,0.804,52,64,156,301,198,198,2,5,58
2014-08-15,21:00:00,57,25,40,63,70,0.6,0.796,52,64,136,301,196,198,3,5,57
2014-08-15,22:00:00,58,27,40,66,70,0.7,0.787,55,62,112,301,189,198,4,5,58
2014-08-15,23:00:00,65,31,40,79,70,0.7,0.778,76,61,79,301,176,198,4,5,65
2014-08-16,00:00:00,64,32,41,78,72,0.7,0.774,72,60,70,301,155,198,2,5,64
2014-08-16,01:00:00,74,54,42,0,72,1.2,0.787,134,61,2,301,117,198,2,5,74
2014-08-16,02:00:00,114,63,43,178,79,1.2,0.791,129,62,2,301,90,198,2,5,114
2014-08-16,03:00:00,108,67,45,166,85,1.3,0.796,130,63,2,301,70,198,2,5,108
2014-08-16,04:00:00,110,83,47,166,90,1.1,0.809,131,65,2,301,51,198,3,5,110
2014-08-16,05:00:00,95,71,49,114,92,0.8,0.809,101,66,17,301,36,198,2,5,95
2014-08-16,06:00:00,67,48,49,79,90,0.7,0.804,78,65,37,301,26,198,2,5,67
2014-08-16,07:00:00,63,44,48,76,89,0.7,0.796,82,66,39,301,21,198,2,5,63
2014-08-16,08:00:00,60,39,45,70,88,0.7,0.774,63,65,55,301,20,198,2,5,60
2014-08-16,09:00:00,72,47,42,93,85,0.7,0.752,69,65,61,301,27,198,3,5,72
2014-08-16,10:00:00,110,83,41,148,88,1.7,0.778,52,65,97,301,39,198,21,5,110
2014-08-16,11:00:00,132,100,43,147,91,1.9,0.825,42,65,160,301,59,198,31,6,132
2014-08-16,12:00:00,112,72,46,101,94,1.2,0.846,28,64,224,301,86,198,21,6,112
2014-08-16,13:00:00,129,48,47,76,96,0.8,0.858,18,64,257,301,116,198,14,6,129
2014-08-16,14:00:00,127,38,48,56,94,0.6,0.867,16,64,253,301,143,198,8,7,127
2014-08-16,15:00:00,124,30,48,54,95,0.6,0.871,17,64,248,301,169,198,7,7,124
2014-08-16,17:00:00,140,58,49,109,96,1.3,0.913,27,64,279,286,226,226,22,8,140
2014-08-16,18:00:00,117,53,50,100,97,1.3,0.946,34,64,234,286,243,243,14,8,117
2014-08-16,19:00:00,107,54,52,113,100,1.3,0.975,40,63,214,286,249,249,9,8,107
2014-08-16,20:00:00,93,61,53,122,102,1.2,1,54,64,194,286,246,249,7,8,93
2014-08-16,21:00:00,103,77,55,131,105,1.1,1.021,54,64,195,286,238,249,6,9,103
2014-08-16,22:00:00,107,80,58,128,108,1.1,1.038,58,64,181,286,229,249,6,9,107
2014-08-16,23:00:00,117,88,60,175,112,1.6,1.075,109,65,77,286,208,249,6,9,117
2014-08-17,00:00:00,182,137,64,206,118,1.6,1.113,63,65,126,286,188,249,8,9,182
2014-08-17,01:00:00,236,186,70,236,122,1.5,1.125,63,62,86,286,163,249,6,9,236
2014-08-17,02:00:00,183,138,73,0,120,1.1,1.121,32,58,111,286,148,249,6,9,183
2014-08-17,03:00:00,46,24,71,28,114,0.4,1.083,13,53,147,286,140,249,4,9,46
2014-08-17,04:00:00,55,26,69,60,109,0.4,1.054,18,48,120,286,130,249,3,9,55
2014-08-17,05:00:00,52,29,67,53,107,0.5,1.042,13,45,135,286,123,249,4,10,52
2014-08-17,06:00:00,47,30,66,47,105,0.7,1.042,21,42,122,286,116,249,4,10,47
2014-08-17,07:00:00,49,31,66,49,104,0.7,1.042,28,40,111,286,120,249,5,10,49
2014-08-17,09:00:00,59,38,65,68,103,0.7,1.042,39,37,97,286,118,249,5,10,59
2014-08-17,10:00:00,70,41,64,90,100,0.8,1.004,44,37,98,286,117,249,6,9,70
2014-08-17,11:00:00,68,44,61,86,97,0.7,0.954,39,37,119,286,113,249,6,8,68
2014-08-17,12:00:00,60,39,60,70,96,0.7,0.933,32,37,151,286,117,249,6,8,60
2014-08-17,13:00:00,62,42,60,74,96,0.7,0.929,44,38,159,286,120,249,12,8,62
2014-08-17,14:00:00,107,33,59,71,97,0.6,0.929,24,39,213,286,132,249,7,7,107
2014-08-17,15:00:00,107,38,60,67,97,0.6,0.929,23,39,213,286,144,249,6,7,107
2014-08-17,16:00:00,103,32,59,48,95,0.6,0.913,20,39,206,279,157,249,4,7,103
2014-08-17,17:00:00,104,19,57,37,92,0.5,0.879,17,38,207,234,171,249,4,6,104
2014-08-17,18:00:00,101,26,56,41,89,0.5,0.846,21,38,202,214,184,249,4,6,101
2014-08-17,19:00:00,106,29,55,57,87,0.6,0.817,26,37,212,213,195,246,6,6,106
2014-08-17,20:00:00,93,42,55,91,86,0.9,0.804,32,36,194,213,201,238,10,6,93
2014-08-17,21:00:00,69,43,53,88,84,1,0.8,35,35,168,213,202,229,12,6,69
2014-08-17,22:00:00,76,53,52,102,83,1.2,0.804,66,36,112,213,189,208,11,6,76
2014-08-17,23:00:00,92,68,51,112,80,1.1,0.783,65,34,89,213,174,202,8,6,92
2014-08-18,00:00:00,92,68,48,119,76,1.3,0.771,63,34,78,213,158,202,7,6,92
2014-08-18,01:00:00,98,73,44,101,70,1.1,0.754,68,34,75,213,141,202,6,6,98
2014-08-18,02:00:00,64,46,40,53,70,0.8,0.742,30,34,119,213,131,202,6,6,64
2014-08-18,03:00:00,74,54,41,66,71,0.9,0.763,38,35,92,213,116,202,6,6,74
2014-08-18,04:00:00,97,72,43,110,73,1.1,0.792,87,38,25,213,95,202,4,6,97
2014-08-18,05:00:00,77,56,44,66,74,0.9,0.808,86,41,19,213,76,202,4,6,77
2014-08-18,06:00:00,62,44,45,58,74,0.8,0.813,63,43,34,213,66,202,3,6,62
2014-08-18,07:00:00,54,36,45,57,75,0.7,0.813,51,44,49,213,61,202,2,6,54
2014-08-18,08:00:00,44,23,44,44,74,0.6,0.808,41,44,69,213,60,202,2,6,44
2014-08-18,09:00:00,66,30,44,81,75,0.8,0.813,53,45,60,213,58,202,4,6,66
2014-08-18,10:00:00,62,37,44,74,74,0.7,0.808,45,45,84,213,54,202,6,6,62
2014-08-18,11:00:00,59,33,43,68,73,0.7,0.808,34,44,123,213,58,202,7,6,59
2014-08-18,12:00:00,75,52,44,100,74,0.9,0.817,29,44,170,213,76,202,11,6,75
2014-08-18,14:00:00,116,86,47,122,78,1.1,0.85,32,44,232,232,124,202,12,7,116
2014-08-18,17:00:00,100,75,54,94,84,0.9,0.9,20,44,200,232,182,202,8,7,100
2014-08-18,18:00:00,93,67,55,94,86,0.8,0.913,22,44,194,232,195,202,7,7,93
2014-08-18,19:00:00,92,68,57,94,88,0.8,0.921,24,44,174,232,202,202,6,7,92
2014-08-18,20:00:00,92,68,58,98,88,0.9,0.921,39,44,142,232,198,202,6,7,92
2014-08-18,21:00:00,88,65,59,98,89,0.9,0.917,45,45,125,232,188,202,6,7,88
2014-08-18,22:00:00,84,62,59,90,88,1.6,0.933,50,44,136,232,176,202,16,7,84
2014-08-18,23:00:00,78,57,59,90,87,1.5,0.95,49,44,132,232,164,202,21,8,78
2014-08-19,00:00:00,87,64,59,100,87,1.3,0.95,42,43,133,232,155,202,14,8,87
2014-08-19,01:00:00,94,70,59,92,86,1,0.946,53,42,99,232,142,202,9,8,94
2014-08-19,02:00:00,93,69,60,87,88,0.9,0.95,50,43,87,232,129,202,8,8,93
2014-08-19,03:00:00,92,68,60,90,89,1,0.954,42,43,83,232,117,202,6,8,92
2014-08-19,04:00:00,99,74,60,100,88,1,0.95,41,41,63,232,107,202,6,8,99
2014-08-19,05:00:00,112,84,61,114,90,1.1,0.958,51,40,42,232,97,202,5,8,112
2014-08-19,06:00:00,122,92,63,117,93,1.1,0.971,59,39,28,232,83,202,5,8,122
2014-08-19,07:00:00,122,92,66,123,95,1.2,0.992,67,40,17,232,69,202,5,8,122
2014-08-19,08:00:00,129,98,69,155,100,1.5,1.029,94,42,11,232,54,202,6,9,129
2014-08-19,10:00:00,152,116,76,154,107,1.3,1.083,59,44,106,232,49,202,13,9,152
2014-08-19,11:00:00,144,110,79,147,111,1.3,1.108,52,45,158,232,58,202,12,9,144
2014-08-19,12:00:00,125,95,81,119,111,1.2,1.121,48,46,198,232,75,202,9,9,125
2014-08-19,13:00:00,121,78,81,100,111,1,1.121,28,46,242,242,100,202,7,9,121
2014-08-19,15:00:00,119,60,79,80,108,0.8,1.1,15,45,237,246,155,202,6,9,119
2014-08-19,16:00:00,111,49,77,67,107,0.7,1.092,17,45,221,246,181,202,6,8,111
2014-08-19,17:00:00,103,47,76,78,106,0.7,1.083,21,45,206,246,202,202,6,8,103
2014-08-19,18:00:00,98,51,76,86,106,0.8,1.083,27,45,198,246,213,213,7,8,98
2014-08-19,19:00:00,108,67,76,130,107,0.9,1.088,35,45,215,246,220,220,10,9,108
2014-08-19,20:00:00,106,74,76,132,109,1,1.092,33,45,212,246,222,222,11,9,106
2014-08-19,21:00:00,104,78,76,129,110,1.1,1.1,40,45,169,246,213,222,14,9,104
2014-08-19,22:00:00,100,75,77,112,111,1,1.075,34,44,167,246,203,222,20,9,100
2014-08-19,23:00:00,92,68,77,112,112,1,1.054,37,44,148,246,192,222,20,9,92
2014-08-20,00:00:00,93,69,78,118,113,1,1.042,47,44,110,246,178,222,17,9,93
2014-08-20,02:00:00,87,64,77,92,113,0.8,1.029,27,42,114,246,156,222,13,10,87
2014-08-20,03:00:00,104,78,78,111,114,0.9,1.025,30,42,92,246,141,222,17,10,104
2014-08-20,04:00:00,115,87,78,128,115,1,1.025,34,42,76,246,124,222,18,11,115
2014-08-20,05:00:00,119,90,78,132,116,1.1,1.025,34,41,66,246,111,222,16,11,119
2014-08-20,06:00:00,128,97,79,133,116,1.1,1.025,40,40,52,246,97,222,12,11,128
2014-08-20,07:00:00,133,101,79,140,117,1.2,1.025,53,39,34,246,82,222,12,12,133
2014-08-20,08:00:00,137,104,79,146,117,1.2,1.013,64,38,31,246,72,222,14,12,137
2014-08-20,09:00:00,147,112,79,162,116,1.4,1.008,70,37,37,246,63,222,15,12,147
2014-08-20,10:00:00,160,122,79,180,117,1.4,1.013,76,38,64,246,57,222,17,12,160
2014-08-20,11:00:00,149,114,79,158,118,1.3,1.013,55,38,139,246,62,222,18,13,149
2014-08-20,13:00:00,118,89,80,95,117,1.1,1.013,22,37,220,246,97,222,21,14,118
2014-08-20,14:00:00,110,70,80,88,118,1,1.017,18,37,219,237,118,222,24,14,110
2014-08-20,15:00:00,125,73,81,119,119,1.1,1.029,16,37,250,250,145,222,30,15,125
2014-08-20,16:00:00,128,82,82,137,122,1.3,1.054,19,37,255,255,173,222,33,17,128
2014-08-20,17:00:00,128,83,84,143,125,1.4,1.083,22,37,256,256,200,222,38,18,128
2014-08-20,18:00:00,124,94,85,136,127,1.5,1.113,26,37,248,256,223,223,39,19,124
2014-08-20,20:00:00,117,88,87,135,127,1.2,1.138,41,38,188,256,232,233,22,20,117
2014-08-20,21:00:00,102,76,87,129,127,1,1.133,42,38,150,256,223,233,14,20,102
2014-08-20,22:00:00,103,77,87,130,128,1,1.133,40,38,137,256,213,233,14,20,103
2014-08-20,23:00:00,117,88,87,135,129,1,1.133,40,38,134,256,199,233,13,20,117
2014-08-21,00:00:00,122,92,88,135,130,1,1.133,36,38,126,256,182,233,13,20,122
2014-08-21,01:00:00,123,93,90,138,132,1,1.142,43,38,105,256,164,233,14,20,123
2014-08-21,02:00:00,134,102,91,148,134,1,1.15,36,38,105,256,146,233,16,20,134
2014-08-21,03:00:00,147,112,93,154,136,1,1.154,38,39,93,256,130,233,16,20,147
2014-08-21,04:00:00,155,118,94,159,137,1,1.154,44,39,65,256,114,233,14,20,155
2014-08-21,05:00:00,166,126,95,161,138,1.1,1.154,49,40,55,256,103,233,12,20,166
2014-08-21,06:00:00,172,130,97,169,140,1.2,1.158,58,41,38,256,90,233,10,19,172
2014-08-21,07:00:00,176,133,98,179,141,1.3,1.163,89,42,7,256,74,233,8,19,176
2014-08-21,08:00:00,185,139,99,220,144,1.8,1.188,106,44,2,256,59,233,7,19,185
2014-08-21,09:00:00,204,154,101,238,148,1.5,1.192,117,46,6,256,46,233,12,19,204
2014-08-21,10:00:00,216,166,103,232,150,1.5,1.196,96,47,25,256,36,233,12,19,216
2014-08-21,11:00:00,210,160,105,208,152,1.5,1.204,78,48,49,256,31,233,12,18,210
2014-08-21,13:00:00,204,154,110,211,159,1.4,1.229,60,50,184,256,53,233,22,18,204
2014-08-21,15:00:00,201,151,117,190,167,1.5,1.263,52,54,243,256,104,233,20,18,201
2014-08-21,16:00:00,185,139,119,168,168,1.2,1.258,39,54,290,290,140,233,16,17,185
2014-08-21,18:00:00,148,113,121,159,169,1.3,1.242,30,55,250,290,200,233,18,15,148
2014-08-21,19:00:00,156,119,123,172,171,1.5,1.25,38,55,211,290,220,232,24,15,156
2014-08-21,20:00:00,176,133,125,194,173,1.6,1.267,43,55,189,290,230,230,23,15,176
2014-08-21,21:00:00,137,104,126,218,177,1.2,1.275,30,54,157,290,226,230,16,15,137
2014-08-21,22:00:00,56,18,124,61,174,0.4,1.25,14,53,129,290,216,230,3,15,56
2014-08-21,23:00:00,47,22,121,47,170,0.5,1.229,28,53,116,290,200,230,3,15,47
2014-08-22,00:00:00,52,24,118,53,167,0.6,1.213,40,53,87,290,174,230,2,14,52
2014-08-22,01:00:00,26,18,115,22,162,0.5,1.192,43,53,73,290,152,230,2,14,26
2014-08-22,02:00:00,31,20,111,31,157,0.5,1.171,50,54,61,290,128,230,2,13,31
2014-08-22,03:00:00,33,23,108,31,152,0.5,1.15,49,54,58,290,109,230,2,12,33
2014-08-22,04:00:00,32,20,104,32,147,0.5,1.129,39,54,63,290,93,230,2,12,32
2014-08-22,05:00:00,34,21,99,34,141,0.5,1.104,60,54,38,290,78,230,2,12,34
2014-08-22,06:00:00,46,26,95,46,136,0.5,1.075,70,55,21,290,65,230,2,11,46
2014-08-22,07:00:00,44,22,90,44,131,0.5,1.042,41,53,36,290,55,230,2,11,44
2014-08-22,08:00:00,43,24,86,43,123,0.5,0.987,46,50,32,290,48,230,2,11,43
2014-08-22,09:00:00,46,24,80,46,115,0.5,0.946,40,47,48,290,45,230,3,10,46
2014-08-22,10:00:00,51,22,74,51,108,0.6,0.908,39,45,61,290,45,230,4,10,51
2014-08-22,11:00:00,59,28,69,68,102,0.7,0.875,49,44,60,290,45,230,6,10,59
2014-08-22,12:00:00,63,38,64,75,98,0.9,0.854,69,44,50,290,43,230,5,9,63
2014-08-22,13:00:00,67,43,59,83,92,1,0.837,77,45,46,290,44,230,4,9,67
2014-08-22,14:00:00,73,53,55,82,88,1.1,0.825,70,45,78,290,51,230,5,8,73
2014-08-22,15:00:00,95,71,52,109,84,1.1,0.808,72,46,90,290,58,230,6,7,95
2014-08-22,16:00:00,100,75,49,120,82,1.2,0.808,72,47,97,256,66,230,6,7,100
2014-08-22,17:00:00,105,79,48,135,82,1.3,0.813,90,50,84,250,71,230,6,6,0
2014-08-22,18:00:00,112,84,46,137,81,1.3,0.813,100,53,83,211,74,230,8,6,112
2014-08-22,19:00:00,127,96,45,149,80,1.3,0.804,90,55,89,189,77,230,8,5,127
2014-08-22,20:00:00,134,102,44,150,78,1.4,0.796,78,57,84,157,81,226,9,5,134
2014-08-22,21:00:00,148,113,44,180,76,1.6,0.813,117,60,34,129,80,216,10,4,148
2014-08-22,22:00:00,162,123,49,185,81,1.6,0.863,115,64,27,116,74,200,9,5,162
2014-08-22,23:00:00,143,109,52,171,87,1.5,0.904,121,68,13,97,64,174,6,5,143
2014-08-23,00:00:00,132,100,56,178,92,1.5,0.942,132,72,2,97,52,152,5,5,132
2014-08-23,01:00:00,143,109,59,193,99,1.7,0.992,134,76,2,97,42,128,5,5,143
2014-08-23,02:00:00,160,122,64,251,108,1.6,1.038,128,79,2,97,32,109,4,5,160
2014-08-23,03:00:00,145,111,67,151,113,1.5,1.079,123,82,2,97,21,93,2,5,145
2014-08-23,05:00:00,145,111,75,135,121,1.6,1.167,114,87,2,97,7,81,2,5,145
2014-08-23,06:00:00,148,113,79,145,125,1.7,1.217,116,89,2,97,4,81,2,5,148
2014-08-23,07:00:00,135,103,82,156,130,1.5,1.258,105,92,2,97,3,81,2,5,135
2014-08-23,08:00:00,147,112,86,155,134,1.4,1.296,100,94,4,97,3,81,2,5,147
2014-08-23,09:00:00,178,134,90,187,140,1.4,1.333,91,96,27,97,6,81,4,5,178
2014-08-23,10:00:00,198,148,95,188,146,1.4,1.367,69,97,72,97,15,81,6,5,198
2014-08-23,11:00:00,200,150,101,185,151,1.3,1.392,62,98,128,128,30,81,6,5,200
2014-08-23,13:00:00,169,128,109,0,157,1.3,1.425,54,97,223,223,79,81,10,6,169
2014-08-23,14:00:00,135,103,111,0,160,1.1,1.425,50,96,241,241,109,109,12,6,135
2014-08-23,15:00:00,137,94,112,0,163,1,1.421,43,95,273,273,143,143,8,6,137
2014-08-23,17:00:00,122,92,114,116,163,1,1.404,35,91,237,283,204,204,9,6,122
2014-08-23,18:00:00,130,99,114,126,162,1.1,1.396,36,88,215,283,222,222,10,6,130
2014-08-23,19:00:00,149,114,115,176,163,1.3,1.396,37,86,205,283,231,231,8,6,149
2014-08-23,20:00:00,162,123,116,147,163,1.4,1.396,42,85,176,283,232,232,8,6,162
2014-08-23,21:00:00,183,138,117,163,162,1.5,1.392,50,82,144,283,222,232,8,6,183
2014-08-23,22:00:00,209,159,118,207,164,1.7,1.396,61,79,106,283,205,232,8,6,209
2014-08-23,23:00:00,137,104,118,0,163,1,1.375,32,76,113,283,185,232,4,6,0
2014-08-24,00:00:00,38,26,115,0,162,0.5,1.333,20,71,109,283,163,232,2,6,38
2014-08-24,01:00:00,24,16,111,24,153,0.7,1.292,44,67,62,283,141,232,2,6,24
2014-08-24,02:00:00,32,22,107,0,148,0.6,1.25,43,64,53,283,121,232,2,6,32
2014-08-24,04:00:00,45,31,100,33,143,0.6,1.175,30,57,65,283,89,232,2,6,45
2014-08-24,05:00:00,50,35,97,41,137,0.6,1.133,43,54,43,283,77,232,2,6,50
2014-08-24,06:00:00,54,38,94,48,132,0.7,1.092,51,52,23,283,66,232,2,6,54
2014-08-24,07:00:00,46,32,91,40,125,0.7,1.058,55,49,14,283,54,232,2,6,46
2014-08-24,08:00:00,29,20,87,0,123,0.5,1.021,52,47,24,283,43,232,2,6,29
2014-08-24,09:00:00,19,4,82,5,112,0.4,0.979,37,45,45,283,41,232,6,6,19
2014-08-24,10:00:00,18,8,76,18,101,0.4,0.938,32,44,53,283,41,232,12,6,18
2014-08-24,11:00:00,34,13,70,34,92,0.5,0.904,28,42,63,283,41,232,17,7,34
2014-08-24,12:00:00,25,8,64,19,83,0.4,0.862,22,40,80,283,43,232,10,7,25
2014-08-24,13:00:00,30,5,59,22,80,0.3,0.821,16,39,96,283,50,232,6,6,30
2014-08-24,14:00:00,35,12,55,18,76,0.3,0.787,14,37,109,283,61,232,3,6,35
2014-08-24,15:00:00,38,10,52,17,73,0.3,0.758,14,36,120,283,74,232,5,6,38
2014-08-24,16:00:00,41,13,48,18,67,0.3,0.725,15,35,130,237,87,232,3,6,41
2014-08-24,18:00:00,39,9,40,25,56,0.3,0.663,18,34,124,205,106,232,2,5,39
2014-08-24,19:00:00,37,10,36,29,48,0.4,0.625,24,33,117,176,113,232,2,5,37
2014-08-24,20:00:00,73,20,32,96,46,0.5,0.588,37,33,119,144,118,222,2,5,73
2014-08-24,21:00:00,91,36,28,131,44,0.8,0.558,39,32,113,130,120,205,2,4,91
2014-08-24,22:00:00,59,42,23,60,36,0.9,0.525,33,31,114,130,120,185,2,4,59
2014-08-25,00:00:00,32,20,20,32,36,0.6,0.525,36,32,60,130,108,141,2,4,32
2014-08-25,01:00:00,53,18,20,55,38,0.6,0.521,57,33,30,130,96,121,2,4,53
2014-08-25,02:00:00,56,22,20,62,39,0.8,0.529,67,34,16,130,82,120,2,4,56
2014-08-25,03:00:00,53,22,20,56,40,0.7,0.533,72,35,9,130,69,120,2,4,53
2014-08-25,04:00:00,34,18,19,24,39,0.5,0.529,67,37,19,130,56,120,2,4,34
2014-08-25,05:00:00,33,16,18,33,39,0.4,0.521,62,38,11,130,43,120,2,4,33
2014-08-25,06:00:00,47,18,18,47,39,0.5,0.513,68,38,2,130,29,120,2,4,47
2014-08-25,07:00:00,39,17,17,39,39,0.5,0.504,58,38,6,130,19,120,2,4,39
2014-08-25,08:00:00,29,19,17,0,39,0.5,0.504,58,39,17,130,14,120,4,4,29
2014-08-25,09:00:00,67,24,18,83,42,0.5,0.508,57,39,25,130,13,120,4,4,67
2014-08-25,10:00:00,33,14,18,33,43,0.5,0.513,0,40,49,130,17,120,4,4,33
2014-08-25,11:00:00,26,6,18,14,42,0.3,0.504,24,40,83,130,27,120,2,3,26
2014-08-25,12:00:00,33,9,18,12,42,0.3,0.5,10,39,104,130,37,120,2,3,33
2014-08-25,13:00:00,37,3,18,8,41,0.2,0.496,10,39,116,130,50,120,2,2,37
2014-08-25,14:00:00,39,3,17,9,41,0.2,0.492,10,39,123,130,65,120,2,2,39
2014-08-25,16:00:00,42,6,17,13,40,0.2,0.488,13,38,133,133,96,120,2,2,42
2014-08-25,17:00:00,43,6,17,27,41,0.2,0.483,16,38,135,135,110,120,2,2,43
2014-08-25,18:00:00,42,8,17,27,41,0.3,0.483,24,39,132,135,120,120,2,2,42
2014-08-25,19:00:00,46,8,17,46,42,0.4,0.483,37,39,130,135,126,126,2,2,46
2014-08-25,20:00:00,53,14,16,55,40,0.4,0.479,48,40,113,135,127,127,2,2,53
2014-08-25,21:00:00,54,24,16,57,37,0.5,0.467,65,41,97,135,125,127,2,2,54
2014-08-25,22:00:00,62,25,15,73,37,0.5,0.45,60,42,91,135,121,127,4,2,62
2014-08-25,23:00:00,59,22,14,67,38,0.5,0.433,71,44,68,135,112,127,5,2,59
2014-08-26,00:00:00,68,28,15,86,41,0.7,0.438,82,46,46,135,102,127,7,3,68
2014-08-26,01:00:00,73,34,15,96,42,0.7,0.442,90,47,32,135,89,127,7,3,73
2014-08-26,02:00:00,67,34,16,84,43,0.8,0.442,116,49,2,135,72,127,5,3,67
2014-08-26,03:00:00,72,32,16,94,45,0.7,0.442,113,51,2,135,56,127,3,3,72
2014-08-26,04:00:00,87,34,17,123,49,0.8,0.454,105,53,2,135,43,127,2,3,87
2014-08-26,05:00:00,85,40,18,119,53,0.8,0.471,98,54,2,135,31,127,2,3,85
2014-08-26,06:00:00,59,31,19,68,54,0.6,0.475,90,55,2,135,20,127,2,3,59
2014-08-26,07:00:00,56,23,19,62,55,0.5,0.475,81,56,5,135,12,127,2,3,56
2014-08-26,08:00:00,54,21,19,57,55,0.5,0.475,59,56,25,135,9,127,2,3,54
2014-08-26,09:00:00,62,18,19,74,55,0.5,0.475,54,56,41,135,10,127,3,3,62
2014-08-26,10:00:00,0,0,19,0,56,0,0.474,0,56,0,135,11,127,0,3,0
2014-08-26,11:00:00,51,16,19,52,57,0.5,0.483,44,57,81,135,23,127,15,3,51
2014-08-26,12:00:00,50,16,20,50,59,0.5,0.491,40,58,106,135,37,127,14,4,50
2014-08-26,13:00:00,40,22,20,33,60,0.4,0.5,29,59,128,135,55,127,10,4,40
2014-08-26,14:00:00,43,15,21,0,62,0.3,0.504,18,59,135,135,74,127,4,4,43
2014-08-26,16:00:00,53,14,22,0,67,0.3,0.518,18,62,162,162,109,127,2,5,53
2014-08-26,17:00:00,52,10,22,25,67,0.3,0.523,24,62,161,162,129,129,4,5,52
2014-08-26,18:00:00,75,20,23,60,69,0.4,0.527,36,63,180,180,136,136,3,5,75
2014-08-26,19:00:00,55,20,23,50,69,0.5,0.532,55,63,164,180,148,148,2,5,55
2014-08-26,20:00:00,60,20,24,70,70,0.5,0.536,74,65,123,180,150,150,3,5,60
2014-08-26,21:00:00,63,30,24,76,71,0.7,0.545,96,66,71,180,142,150,3,5,63
2014-08-26,22:00:00,70,28,24,90,72,0.7,0.555,124,69,33,180,128,150,3,5,70
2014-08-26,23:00:00,56,31,24,62,72,0.7,0.564,110,71,34,180,116,150,3,5,56
2014-08-27,00:00:00,69,32,25,73,71,1,0.577,137,73,2,180,96,150,3,4,69
2014-08-27,01:00:00,78,35,25,106,71,1.2,0.6,132,75,2,180,76,150,3,4,78
2014-08-27,02:00:00,93,46,25,136,74,1.3,0.623,134,76,2,180,54,150,4,4,93
2014-08-27,03:00:00,117,51,26,184,79,1.4,0.655,127,77,2,180,34,150,4,4,117
2014-08-27,04:00:00,139,74,28,227,84,1.3,0.677,135,78,2,180,19,150,7,4,139
2014-08-27,05:00:00,102,57,29,154,85,0.9,0.682,123,79,2,180,10,150,7,5,102
2014-08-27,06:00:00,84,44,29,117,88,0.8,0.691,112,80,2,180,6,150,4,5,84
2014-08-27,07:00:00,62,32,30,74,89,0.6,0.695,92,81,5,180,2,150,2,5,62
2014-08-27,08:00:00,57,25,30,64,89,0.5,0.695,74,81,27,180,6,150,3,5,57
2014-08-27,09:00:00,50,18,30,50,88,0.5,0.695,55,81,72,180,14,150,3,5,50
2014-08-27,10:00:00,64,25,30,77,87,0.5,0.687,61,80,88,180,25,150,3,5,64
2014-08-27,11:00:00,68,29,30,85,89,0.6,0.691,59,81,127,180,41,150,4,4,68
2014-08-27,12:00:00,73,32,31,95,91,0.6,0.696,62,82,164,180,61,150,13,4,73
2014-08-27,13:00:00,102,42,32,89,94,0.7,0.709,41,83,204,204,86,150,12,4,102
2014-08-27,14:00:00,118,47,33,99,94,0.6,0.722,30,83,235,235,115,150,12,5,118
2014-08-27,16:00:00,112,50,35,85,94,0.6,0.729,24,81,224,239,169,169,12,5,112
2014-08-27,17:00:00,107,47,37,96,97,0.6,0.742,25,81,213,239,187,187,17,6,107
2014-08-27,18:00:00,103,55,38,115,99,0.6,0.75,28,81,205,239,201,201,21,7,103
2014-08-27,19:00:00,85,63,40,115,102,0.7,0.758,40,80,187,239,209,209,16,7,85
2014-08-27,20:00:00,93,69,42,131,104,0.8,0.771,52,79,169,239,210,210,14,8,93
2014-08-27,21:00:00,100,75,44,133,107,0.9,0.779,58,77,147,239,202,210,16,8,100
2014-08-27,22:00:00,104,78,46,142,109,1,0.792,78,76,112,239,187,210,16,9,104
2014-08-27,23:00:00,115,86,48,180,114,1.1,0.808,89,75,93,239,169,210,16,9,115
2014-08-28,00:00:00,116,84,50,182,118,1.3,0.821,109,73,69,239,149,210,20,10,116
2014-08-28,01:00:00,114,86,53,173,121,1.3,0.825,125,73,49,239,129,210,19,11,114
2014-08-28,02:00:00,115,87,54,152,122,1.1,0.817,70,71,106,239,117,210,22,11,115
2014-08-28,03:00:00,122,92,56,146,120,1,0.8,60,68,110,239,107,210,26,12,122
2014-08-28,04:00:00,128,97,57,0,116,1.3,0.8,131,68,20,239,88,210,16,13,128
2014-08-28,05:00:00,117,88,58,169,116,1.1,0.808,115,67,16,239,72,210,14,13,117
2014-08-28,06:00:00,114,86,60,151,118,1,0.817,110,67,11,239,59,210,10,13,114
2014-08-28,07:00:00,105,79,62,123,120,0.9,0.829,82,67,43,239,53,210,8,14,105
2014-08-28,08:00:00,74,54,63,74,120,0.7,0.837,46,66,99,239,57,210,6,14,74
2014-08-28,09:00:00,78,57,65,99,122,0.7,0.846,41,65,117,239,65,210,5,14,78
2014-08-28,10:00:00,77,56,66,73,122,0.7,0.854,32,64,137,239,69,210,7,14,77
2014-08-28,11:00:00,83,61,67,85,122,0.7,0.858,40,63,122,239,71,210,8,14,83
2014-08-28,12:00:00,85,63,69,87,122,0.8,0.867,44,62,116,239,83,210,10,14,85
2014-08-28,13:00:00,78,57,69,72,121,0.8,0.871,31,62,159,239,101,210,16,14,78
2014-08-28,15:00:00,95,71,71,101,120,0.9,0.896,35,63,166,224,135,210,14,14,95
2014-08-28,16:00:00,99,74,72,117,122,0.9,0.908,32,63,153,213,141,210,10,14,99
2014-08-28,17:00:00,98,73,73,114,123,0.9,0.921,39,63,139,205,144,210,7,14,98
2014-08-28,18:00:00,112,84,74,106,122,1.1,0.942,63,65,123,187,142,210,8,13,112
2014-08-28,20:00:00,132,100,77,164,123,1.3,0.983,87,68,85,166,137,202,8,13,132
2014-08-28,21:00:00,152,116,79,117,123,1.5,1.008,91,69,57,166,125,187,2,12,152
2014-08-28,22:00:00,104,78,79,0,122,1.2,1.017,36,67,124,166,120,169,3,12,104
2014-08-28,23:00:00,74,54,77,0,119,1.2,1.021,37,65,119,166,114,149,3,11,74
2014-08-29,00:00:00,89,66,77,0,116,1,1.008,32,62,118,166,110,144,3,10,89
2014-08-29,01:00:00,92,68,76,0,113,0.9,0.992,24,58,117,166,107,144,3,10,92
2014-08-29,02:00:00,87,64,75,0,111,1,0.987,34,56,86,166,102,144,2,9,87
2014-08-29,03:00:00,95,71,74,0,109,1.1,0.992,31,55,70,166,97,144,2,8,95
2014-08-29,04:00:00,89,66,73,0,109,1,0.979,34,51,78,166,96,144,2,7,89
2014-08-29,05:00:00,89,66,72,0,105,0.9,0.971,29,47,83,166,99,144,2,7,89
2014-08-29,06:00:00,97,72,71,0,102,0.9,0.967,30,44,70,166,93,144,2,6,97
2014-08-29,07:00:00,102,76,71,0,100,1,0.971,38,42,56,166,85,144,2,6,102
2014-08-29,08:00:00,89,66,72,0,102,1,0.983,38,42,75,166,79,144,2,6,89
2014-08-29,09:00:00,84,62,72,62,99,1,0.996,42,42,72,166,74,144,2,6,84
2014-08-29,10:00:00,85,63,72,0,102,1,1.008,44,42,81,166,73,144,3,6,85
2014-08-29,12:00:00,75,55,72,0,102,1,1.029,26,41,141,166,86,144,7,6,75
2014-08-29,13:00:00,79,58,72,66,102,1,1.037,24,41,155,166,95,144,10,5,79
2014-08-29,14:00:00,95,71,72,76,101,1.1,1.046,34,41,153,166,106,144,10,5,95
2014-08-29,15:00:00,99,74,72,86,99,1.1,1.054,41,41,157,157,118,144,13,5,99
2014-08-29,16:00:00,110,83,72,102,98,1.2,1.067,39,42,166,166,130,144,10,5,110
2014-08-29,18:00:00,104,78,73,90,95,1.1,1.079,43,41,182,182,155,155,9,5,104
2014-08-29,19:00:00,107,80,72,89,93,1.1,1.075,38,39,175,182,163,163,7,5,107
2014-08-29,20:00:00,119,90,72,131,90,1.4,1.079,54,38,133,182,162,163,6,5,119
2014-08-29,21:00:00,147,112,72,141,92,1.5,1.079,64,37,100,182,155,163,5,5,147
2014-08-29,22:00:00,152,116,73,140,96,1.4,1.088,79,39,68,182,144,163,5,5,152
2014-08-29,23:00:00,139,106,75,0,96,1.2,1.088,54,39,89,182,136,163,4,5,139
2014-08-30,00:00:00,125,95,77,0,96,1.1,1.092,45,40,98,182,127,163,3,5,125
2014-08-30,01:00:00,112,84,77,0,96,1,1.096,45,41,100,182,118,163,3,5,112
2014-08-30,02:00:00,119,90,78,119,98,1.1,1.1,80,43,53,182,102,163,3,5,119
2014-08-30,03:00:00,186,140,81,236,108,1.6,1.121,115,46,2,182,80,163,2,5,186
2014-08-30,04:00:00,202,152,85,186,113,1.7,1.15,97,49,2,182,64,163,2,5,202
2014-08-30,05:00:00,172,130,88,146,115,1.8,1.188,82,51,2,182,52,163,2,5,172
2014-08-30,06:00:00,173,131,90,0,115,1.8,1.225,70,53,2,182,44,163,2,5,173
2014-08-30,07:00:00,175,132,92,151,117,1.9,1.263,71,54,2,182,33,163,3,5,175
2014-08-30,08:00:00,172,130,95,145,119,1.9,1.3,61,55,12,182,22,163,4,5,172
2014-08-30,09:00:00,172,130,98,155,124,1.8,1.333,61,56,22,182,12,163,5,6,172
2014-08-30,10:00:00,176,133,101,148,125,1.7,1.363,52,56,40,182,11,163,8,6,176
2014-08-30,11:00:00,204,154,105,165,130,2.1,1.408,51,57,47,182,16,163,10,6,204
2014-08-30,12:00:00,223,173,110,205,134,2.7,1.479,54,58,49,182,22,163,11,6,223
2014-08-30,13:00:00,224,174,114,200,140,3,1.563,51,59,69,182,30,163,13,6,224
2014-08-30,14:00:00,224,174,119,192,146,2.8,1.633,50,60,84,182,41,163,14,6,224
2014-08-30,16:00:00,170,129,124,130,151,2.3,1.733,58,61,60,182,55,163,9,6,170
2014-08-30,17:00:00,183,138,126,0,154,2.5,1.787,44,61,91,182,64,163,6,6,183
2014-08-30,18:00:00,183,138,128,0,158,2.4,1.842,58,62,73,175,68,163,5,6,183
2014-08-30,19:00:00,158,120,130,0,162,1.7,1.867,62,63,85,133,72,162,3,6,158
2014-08-30,20:00:00,163,124,131,0,164,1.5,1.871,60,63,74,100,76,155,2,6,163
2014-08-30,21:00:00,169,128,132,0,166,1.4,1.867,54,63,64,100,75,144,2,5,169
2014-08-30,22:00:00,152,116,132,0,168,1.3,1.862,51,62,54,100,71,136,2,5,152
2014-08-30,23:00:00,137,104,132,0,168,1.2,1.863,38,61,94,100,74,127,2,5,137
2014-08-31,00:00:00,104,78,131,0,168,1.2,1.867,21,60,113,113,81,118,2,5,104
2014-08-31,02:00:00,120,91,131,0,172,1.2,1.879,52,58,49,113,77,81,2,5,120
2014-08-31,03:00:00,128,97,129,0,166,1.2,1.863,57,56,27,113,70,81,2,5,128
2014-08-31,04:00:00,119,90,127,0,164,1.2,1.842,59,54,30,113,65,81,2,5,119
2014-08-31,05:00:00,95,71,124,0,166,1,1.808,28,52,53,113,63,81,2,5,95
2014-08-31,06:00:00,89,66,122,0,166,1,1.775,24,50,67,113,65,81,2,5,89
2014-08-31,07:00:00,89,66,119,0,167,1,1.738,24,48,52,113,60,81,2,5,89
2014-08-31,08:00:00,84,62,116,0,171,1.1,1.704,31,47,44,113,51,81,2,5,84
2014-08-31,10:00:00,117,88,112,0,178,1.2,1.658,38,46,58,113,46,81,2,5,117
2014-08-31,11:00:00,92,68,108,0,182,1.4,1.629,20,45,100,113,55,81,4,4,92
2014-08-31,13:00:00,82,60,98,0,161,1.1,1.488,12,41,141,141,78,81,4,4,82
2014-08-31,15:00:00,98,73,91,77,104,1.3,1.375,21,38,159,159,103,103,6,3,98
2014-08-31,16:00:00,104,78,89,83,80,1.2,1.329,19,37,148,159,116,116,4,3,104
2014-08-31,17:00:00,89,66,86,0,80,1.1,1.271,21,36,143,159,129,129,3,3,89
2014-08-31,18:00:00,89,66,83,0,80,1.1,1.217,22,34,133,159,138,138,3,3,89
2014-08-31,19:00:00,82,60,80,80,80,1.1,1.192,34,33,108,159,139,139,2,3,82
2014-08-31,20:00:00,97,72,78,0,80,1.1,1.175,39,32,90,159,135,139,2,3,97
2014-08-31,21:00:00,92,68,76,0,80,1.1,1.163,25,31,98,159,129,139,2,3,92
2014-08-31,22:00:00,99,74,74,0,80,1.3,1.163,52,31,46,159,116,139,2,3,99
2014-08-31,23:00:00,107,80,73,0,80,1.5,1.175,70,32,20,159,98,139,2,3,107
2014-09-01,01:00:00,94,70,72,0,80,1.5,1.187,71,35,10,159,72,139,2,3,94
2014-09-01,02:00:00,93,69,71,0,80,1.4,1.196,81,36,4,159,54,139,2,3,93
2014-09-01,03:00:00,90,67,70,0,80,1.5,1.209,81,37,2,159,39,139,2,3,90
2014-09-01,04:00:00,92,68,69,0,80,1.5,1.222,73,37,2,159,26,139,2,3,92
2014-09-01,05:00:00,100,75,69,0,80,1.7,1.252,74,39,2,159,12,139,2,3,100
2014-09-01,06:00:00,104,78,70,0,80,1.7,1.283,70,41,2,159,6,139,2,3,104
2014-09-01,07:00:00,99,74,70,85,81,1.9,1.322,65,43,2,159,3,139,2,3,99
2014-09-01,08:00:00,118,89,71,94,84,2,1.361,62,45,2,159,3,139,2,3,118
2014-09-01,09:00:00,129,98,73,114,89,2.2,1.412,64,46,2,159,2,139,4,3,129
2014-09-01,10:00:00,150,115,74,144,97,2.3,1.458,68,48,7,159,3,139,6,3,150
2014-09-01,11:00:00,176,133,76,0,97,2.6,1.508,64,50,46,159,8,139,9,3,176
2014-09-01,13:00:00,183,138,83,0,97,2.3,1.612,46,52,92,159,30,139,6,4,183
2014-09-01,14:00:00,168,127,85,0,97,2.4,1.662,34,53,103,159,43,139,2,3,168
2014-09-01,15:00:00,175,132,88,0,100,2.4,1.708,49,54,76,148,52,139,2,3,175
2014-09-01,16:00:00,132,100,89,0,103,1.3,1.712,23,54,117,143,66,139,3,3,132
2014-09-01,17:00:00,135,103,90,106,104,1.7,1.737,38,55,103,133,79,139,3,3,135
2014-09-01,18:00:00,168,127,93,0,104,2.1,1.779,59,57,79,117,88,139,2,3,168
2014-09-01,19:00:00,158,120,95,0,109,2.2,1.825,97,59,40,117,87,135,2,3,158
2014-09-01,20:00:00,149,114,97,0,109,2.1,1.867,99,62,19,117,79,129,2,3,149
2014-09-01,21:00:00,133,101,98,0,109,2.2,1.913,86,64,29,117,71,116,2,3,133
2014-09-01,22:00:00,46,32,97,0,109,1,1.9,22,63,108,117,71,98,2,3,46
2014-09-01,23:00:00,31,19,94,0,109,0.9,1.875,23,61,98,117,74,88,2,3,31
2014-09-02,00:00:00,36,25,92,0,109,1,1.85,27,59,84,117,70,88,2,3,36
2014-09-02,01:00:00,45,31,90,0,109,1,1.829,29,57,75,117,67,88,2,3,45
2014-09-02,02:00:00,55,39,89,0,109,1,1.813,32,55,68,117,65,88,2,3,55
2014-09-02,03:00:00,57,40,88,0,109,1,1.792,32,53,59,117,68,88,2,3,57
2014-09-02,04:00:00,48,33,87,0,109,0.9,1.767,18,51,74,117,74,88,2,3,48
2014-09-02,05:00:00,29,18,84,0,109,0.9,1.733,11,48,90,117,82,88,2,3,29
2014-09-02,06:00:00,28,17,82,0,109,0.9,1.7,11,46,87,117,79,88,2,3,28
2014-09-02,08:00:00,33,23,77,0,121,1,1.617,30,44,72,117,77,88,2,3,33
2014-09-02,09:00:00,33,23,74,0,125,1.1,1.571,38,43,65,117,75,88,2,3,33
2014-09-02,10:00:00,33,23,70,24,65,1.1,1.521,46,42,60,117,74,88,2,3,33
2014-09-02,11:00:00,42,29,65,0,65,1.2,1.462,49,41,51,117,73,88,2,3,42
2014-09-02,12:00:00,40,28,61,0,65,1.1,1.404,31,40,67,117,72,88,2,2,40
2014-09-02,14:00:00,28,19,52,0,54,1,1.292,16,39,84,117,71,88,2,2,28
2014-09-02,15:00:00,38,26,48,0,54,1,1.233,30,38,76,117,70,88,2,2,38
2014-09-02,17:00:00,30,21,41,0,29,1.3,1.208,32,38,68,108,71,88,2,2,30
2014-09-02,18:00:00,25,11,36,0,29,0.8,1.154,26,36,79,108,73,87,2,2,25
2014-09-02,19:00:00,21,5,32,5,21,0.8,1.096,32,34,66,108,75,82,2,2,21
2014-09-02,20:00:00,23,15,27,0,21,0.9,1.046,46,31,44,108,72,82,2,2,23
2014-09-02,21:00:00,19,13,24,0,21,0.7,0.983,34,29,55,108,68,82,2,2,19
2014-09-02,22:00:00,19,7,23,0,21,0.7,0.971,38,30,47,98,64,82,2,2,19
2014-09-02,23:00:00,21,14,22,0,21,0.7,0.963,41,31,40,90,59,82,2,2,21
2014-09-03,00:00:00,17,10,22,0,21,0.6,0.946,33,31,44,90,55,82,2,2,17
2014-09-03,01:00:00,20,10,21,0,21,0.6,0.929,40,31,31,90,51,82,2,2,20
2014-09-03,02:00:00,34,11,20,0,21,0.7,0.917,68,33,3,90,41,82,2,2,34
2014-09-03,03:00:00,33,12,19,0,21,0.7,0.904,65,34,4,90,34,82,2,2,33
2014-09-03,04:00:00,31,10,18,0,21,0.6,0.892,62,36,4,90,29,82,2,2,31
2014-09-03,05:00:00,24,9,17,0,21,0.6,0.879,48,38,16,87,24,79,2,2,24
2014-09-03,06:00:00,24,12,17,0,21,0.5,0.863,47,39,14,87,20,78,2,2,24
2014-09-03,07:00:00,24,15,17,0,21,0.5,0.846,48,40,13,85,16,77,2,2,24
2014-09-03,08:00:00,21,11,16,18,20,0.6,0.829,42,40,20,85,13,75,2,2,21
2014-09-03,10:00:00,30,16,16,30,22,0.8,0.8,42,40,36,85,16,75,16,3,30
2014-09-03,11:00:00,18,11,15,0,22,0.7,0.779,33,40,56,85,23,75,20,4,18
2014-09-03,13:00:00,29,14,13,22,20,0.5,0.733,25,39,90,90,41,75,14,5,29
2014-09-03,14:00:00,34,3,13,10,19,0.4,0.708,20,40,106,106,53,75,10,5,34
2014-09-03,15:00:00,39,3,12,13,18,0.4,0.683,22,39,124,124,67,75,6,5,39
2014-09-03,16:00:00,45,18,11,45,21,0.5,0.658,29,39,141,141,82,82,6,5,45
2014-09-03,17:00:00,54,15,11,46,24,0.5,0.625,30,39,163,163,99,99,6,5,54
2014-09-03,18:00:00,40,10,11,39,25,0.5,0.612,35,39,127,163,111,111,4,6,40
2014-09-03,19:00:00,31,14,12,30,28,0.5,0.6,40,40,99,163,116,116,3,6,31
2014-09-03,20:00:00,45,10,11,45,29,0.6,0.588,53,40,75,163,116,116,4,6,45
2014-09-03,21:00:00,54,20,12,58,32,0.6,0.583,58,41,66,163,113,116,4,6,54
2014-09-03,22:00:00,55,20,12,60,34,0.7,0.583,79,43,38,163,104,116,4,6,55
2014-09-03,23:00:00,57,22,12,64,36,0.7,0.583,79,44,29,163,92,116,4,6,57
2014-09-04,01:00:00,59,29,14,68,40,0.9,0.604,94,49,2,163,56,116,2,6,59
2014-09-04,02:00:00,57,28,15,64,41,1,0.617,90,50,2,163,40,116,2,6,57
2014-09-04,03:00:00,67,33,15,84,43,1.1,0.633,84,51,2,163,28,116,2,6,67
2014-09-04,04:00:00,80,39,17,109,47,1.2,0.658,85,52,2,163,19,116,2,6,80
2014-09-04,05:00:00,77,42,18,103,50,1.2,0.683,85,53,2,163,11,116,2,6,77
2014-09-04,06:00:00,71,50,20,92,52,1.2,0.712,82,55,2,163,6,116,2,6,71
2014-09-04,07:00:00,74,49,21,98,54,1.3,0.746,77,56,2,163,3,116,2,6,74
2014-09-04,08:00:00,81,56,23,112,58,1.2,0.771,94,58,2,163,2,116,3,6,81
2014-09-04,09:00:00,79,54,24,107,62,1.1,0.788,102,60,11,163,3,116,5,6,79
2014-09-04,10:00:00,70,43,26,90,64,1.1,0.8,103,63,27,163,6,116,7,6,70
2014-09-04,11:00:00,68,49,27,66,64,1.1,0.817,109,66,50,163,12,116,7,5,68
2014-09-04,13:00:00,60,43,30,0,66,0,0.848,102,72,104,163,36,116,6,4,60
2014-09-04,14:00:00,48,3,30,0,68,0,0.868,68,74,153,163,55,116,0,4,48
2014-09-04,15:00:00,15,0,31,0,71,0.4,0.868,29,75,0,163,62,116,6,4,0
2014-09-04,17:00:00,103,28,32,71,73,0.6,0.873,30,77,205,205,105,116,5,4,103
2014-09-04,18:00:00,97,29,33,86,76,0.7,0.882,37,77,197,205,130,130,6,4,97
2014-09-04,19:00:00,80,31,33,90,79,0.8,0.895,40,77,184,205,149,149,8,4,0
2014-09-04,20:00:00,78,37,34,105,82,0.8,0.905,56,77,142,205,156,156,11,4,78
2014-09-04,21:00:00,88,49,36,126,85,0.9,0.918,62,77,132,205,160,160,17,5,88
2014-09-04,23:00:00,83,53,39,116,91,1,0.945,60,75,99,205,149,160,23,7,83
2014-09-05,00:00:00,89,54,40,128,95,1,0.955,56,74,88,205,146,160,22,8,89
2014-09-05,01:00:00,88,58,41,126,98,1,0.959,71,73,60,205,128,160,16,8,88
2014-09-05,02:00:00,88,63,43,126,101,1.1,0.964,82,72,40,205,109,160,12,9,88
2014-09-05,03:00:00,87,64,44,121,102,1.1,0.964,75,72,36,205,90,160,12,9,87
2014-09-05,04:00:00,92,63,45,134,104,1.2,0.964,92,72,9,205,74,160,6,9,92
2014-09-05,05:00:00,97,72,46,0,104,1.5,0.977,104,73,2,205,57,160,4,9,97
2014-09-05,06:00:00,88,64,47,125,105,1.2,0.977,87,73,2,205,42,160,3,9,88
2014-09-05,07:00:00,89,65,48,127,107,1.2,0.973,79,73,2,205,30,160,3,9,89
2014-09-05,08:00:00,105,79,49,156,109,1.2,0.973,78,73,6,205,20,160,5,9,105
2014-09-05,09:00:00,122,92,50,165,112,1.2,0.977,79,72,23,205,15,160,8,10,122
2014-09-05,10:00:00,129,98,53,155,116,1.2,0.982,58,70,73,205,19,160,14,10,129
2014-09-05,11:00:00,143,109,55,174,121,1.3,0.991,57,67,106,205,28,160,18,10,143
2014-09-05,13:00:00,168,127,62,179,131,1.4,1.035,48,64,205,205,70,160,21,12,168
2014-09-05,14:00:00,138,105,67,136,131,1.2,1.042,30,62,262,262,102,160,19,12,138
2014-09-05,16:00:00,119,70,69,95,128,0.9,1.087,16,60,238,262,163,163,14,13,119
2014-09-05,17:00:00,113,57,71,91,129,0.8,1.096,16,59,226,262,188,188,12,13,113
2014-09-05,18:00:00,106,62,72,97,130,0.9,1.104,23,58,212,262,206,206,12,13,106
2014-09-05,19:00:00,97,70,74,115,131,1,1.112,33,58,197,262,217,217,11,13,97
2014-09-05,20:00:00,172,130,77,202,135,1.4,1.137,38,57,208,262,225,225,22,14,172
2014-09-05,21:00:00,186,140,81,170,137,1.4,1.158,40,56,192,262,224,225,21,14,186
2014-09-05,22:00:00,166,126,84,153,138,1.2,1.167,30,55,166,262,212,225,24,14,166
2014-09-05,23:00:00,162,123,87,148,139,1.3,1.179,36,54,115,262,194,225,17,14,162
2014-09-06,00:00:00,168,127,90,136,140,1.3,1.192,43,54,83,262,175,225,12,13,168
2014-09-06,01:00:00,173,131,93,137,140,1.5,1.213,58,53,48,262,153,225,9,13,173
2014-09-06,02:00:00,178,134,96,139,141,1.5,1.229,85,53,10,262,127,225,10,13,178
2014-09-06,03:00:00,169,128,99,0,142,1.6,1.25,80,54,5,262,103,225,9,13,169
2014-09-06,04:00:00,163,124,101,130,141,1.5,1.263,78,53,2,262,78,225,6,13,163
2014-09-06,05:00:00,160,122,103,128,141,1.3,1.254,78,52,2,262,54,225,5,13,160
2014-09-06,06:00:00,156,119,106,0,142,1.4,1.263,77,52,2,262,33,225,5,13,156
2014-09-06,07:00:00,142,108,108,113,141,1.4,1.271,72,51,2,262,19,225,4,13,142
2014-09-06,08:00:00,148,113,109,133,140,1.6,1.288,69,51,3,262,9,225,6,13,148
2014-09-06,09:00:00,163,124,110,137,139,2,1.321,64,50,24,262,6,225,14,13,163
2014-09-06,10:00:00,188,141,112,147,138,2.3,1.367,48,50,72,262,14,225,24,14,188
2014-09-06,11:00:00,190,143,114,164,138,2.8,1.429,40,49,113,262,28,225,38,15,190
2014-09-06,13:00:00,189,142,115,169,137,2.6,1.538,39,48,179,262,67,225,46,17,189
2014-09-06,14:00:00,190,143,117,166,138,2.2,1.579,35,48,221,254,94,225,42,18,190
2014-09-06,15:00:00,179,135,119,149,141,1.7,1.604,28,49,241,241,124,225,32,18,179
2014-09-06,16:00:00,147,112,121,131,142,1.3,1.621,23,49,214,241,151,225,20,19,147
2014-09-06,17:00:00,123,93,122,0,145,1,1.629,24,49,188,241,171,225,17,19,123
2014-09-06,18:00:00,123,93,124,114,146,0.9,1.629,29,50,183,241,185,225,17,19,123
2014-09-06,19:00:00,132,100,125,141,147,1,1.629,41,50,172,241,192,225,18,19,132
2014-09-06,20:00:00,145,111,124,151,144,1.1,1.617,46,50,155,241,194,224,17,19,145
2014-09-06,21:00:00,166,126,123,173,145,1.2,1.608,62,51,123,241,187,212,18,19,166
2014-09-06,22:00:00,182,137,124,176,146,1.3,1.612,75,53,96,241,172,194,19,19,182
2014-09-06,23:00:00,185,139,125,188,148,1.3,1.613,90,55,73,241,151,194,18,19,185
2014-09-07,01:00:00,206,156,127,197,155,1.3,1.612,108,60,36,241,109,194,13,19,206
2014-09-07,02:00:00,186,140,127,164,156,1.1,1.596,76,60,59,241,94,194,13,19,186
2014-09-07,03:00:00,169,128,127,144,155,1.1,1.575,55,59,79,241,82,194,12,19,169
2014-09-07,04:00:00,182,137,128,157,157,1.2,1.563,49,58,79,241,73,194,37,21,182
2014-09-07,05:00:00,185,139,129,160,158,1.2,1.558,49,57,68,241,66,194,26,22,185
2014-09-07,06:00:00,200,150,130,159,158,1.1,1.546,45,55,57,241,61,194,15,22,200
2014-09-07,07:00:00,207,157,132,167,160,1.2,1.538,63,55,31,241,56,194,10,22,207
2014-09-07,08:00:00,213,163,134,185,163,1.4,1.529,81,55,13,241,53,194,13,23,213
2014-09-07,09:00:00,214,164,136,182,165,1.5,1.508,86,56,10,241,50,194,13,23,214
2014-09-07,10:00:00,220,170,137,197,167,1.6,1.479,92,58,14,241,44,194,13,22,220
2014-09-07,11:00:00,238,188,139,225,169,1.8,1.438,110,61,16,241,36,194,10,21,238
2014-09-07,12:00:00,247,197,141,227,172,1.8,1.392,112,64,44,241,32,194,13,20,247
2014-09-07,13:00:00,183,138,141,0,172,1.3,1.338,38,64,148,241,42,194,22,19,183
2014-09-07,14:00:00,123,93,139,100,169,1.1,1.292,21,63,178,241,57,194,18,18,123
2014-09-07,15:00:00,107,80,136,99,166,1.1,1.267,19,63,188,214,76,194,18,17,107
2014-09-07,16:00:00,123,93,136,141,167,1.1,1.258,23,63,197,197,99,194,19,17,123
2014-09-07,17:00:00,142,108,136,141,166,1.2,1.267,24,63,201,201,123,194,22,17,142
2014-09-07,18:00:00,135,103,137,146,167,1.3,1.283,28,63,185,201,145,194,19,17,135
2014-09-07,19:00:00,150,115,137,150,168,1.4,1.3,37,63,188,201,166,194,23,17,150
2014-09-07,20:00:00,153,117,137,165,168,1.5,1.317,47,63,153,201,180,187,20,18,153
2014-09-07,21:00:00,160,122,137,149,167,1.6,1.333,47,62,146,201,180,180,21,18,160
2014-09-07,22:00:00,170,129,137,160,166,1.9,1.358,69,62,109,201,171,180,17,18,170
2014-09-07,23:00:00,188,141,137,187,166,1.8,1.379,115,63,45,201,153,180,9,17,188
2014-09-08,00:00:00,173,131,136,0,164,1.4,1.375,87,62,63,201,136,180,6,17,173
2014-09-08,01:00:00,25,15,130,0,162,0.3,1.333,23,58,78,201,121,180,2,16,25
2014-09-08,02:00:00,25,6,124,10,155,0.2,1.296,23,56,78,201,108,180,2,16,25
2014-09-08,03:00:00,26,3,119,26,149,0.2,1.258,25,55,75,201,93,180,2,15,26
2014-09-08,04:00:00,21,6,114,20,143,0.2,1.217,28,54,67,201,83,180,2,14,21
2014-09-08,05:00:00,20,6,108,19,136,0.2,1.175,19,53,64,201,72,180,2,13,20
2014-09-08,06:00:00,18,4,102,18,129,0.3,1.142,26,52,55,201,66,180,2,12,18
2014-09-08,07:00:00,19,3,96,17,122,0.3,1.104,38,51,41,201,65,180,3,12,19
2014-09-08,08:00:00,21,7,89,21,114,0.3,1.058,32,49,48,201,63,180,4,12,21
2014-09-08,09:00:00,28,8,83,28,107,0.3,1.008,23,46,60,201,61,180,9,12,28
2014-09-08,11:00:00,26,6,68,10,88,0.3,0.892,6,39,83,201,61,180,3,11,26
2014-09-08,12:00:00,29,3,60,15,78,0.3,0.829,5,34,92,201,64,180,2,11,29
2014-09-08,13:00:00,33,3,55,5,75,0.3,0.788,3,33,103,201,69,180,2,10,33
2014-09-08,14:00:00,37,7,51,16,71,0.3,0.754,6,32,116,201,77,180,2,9,37
2014-09-08,15:00:00,40,11,48,0,70,0.3,0.721,5,31,125,201,87,180,3,8,40
2014-09-08,16:00:00,40,10,45,0,66,0.3,0.688,6,31,128,201,97,180,4,8,40
2014-09-08,17:00:00,39,10,41,22,60,0.3,0.65,14,30,123,188,105,180,5,7,39
2014-09-08,18:00:00,39,6,37,36,55,0.4,0.613,28,30,124,188,112,180,4,6,39
2014-09-08,19:00:00,43,17,33,43,49,0.4,0.571,34,30,123,153,117,180,3,6,43
2014-09-08,20:00:00,60,16,28,69,44,0.5,0.529,42,30,108,146,119,180,4,5,60
2014-09-08,21:00:00,53,19,24,56,40,0.5,0.483,46,30,89,128,117,171,4,4,53
2014-09-08,22:00:00,48,16,19,48,34,0.5,0.425,56,29,72,128,112,153,4,4,48
2014-09-08,23:00:00,57,25,14,63,28,0.6,0.375,62,27,57,128,103,136,6,4,57
2014-09-09,00:00:00,65,26,10,80,30,0.6,0.342,64,26,47,128,93,121,7,4,65
2014-09-09,01:00:00,64,28,11,77,33,0.7,0.358,76,28,30,128,81,119,6,4,64
2014-09-09,02:00:00,77,35,12,104,37,0.8,0.383,94,31,5,128,66,119,5,4,77
2014-09-09,03:00:00,82,38,13,113,41,1,0.417,93,34,2,128,51,119,4,4,82
2014-09-09,04:00:00,95,45,15,139,46,1,0.45,85,37,2,128,38,119,4,4,95
2014-09-09,05:00:00,68,35,16,85,49,0.7,0.471,74,39,2,128,27,119,5,4,68
2014-09-09,06:00:00,58,27,17,66,51,0.6,0.483,67,41,2,128,18,119,4,4,58
2014-09-09,07:00:00,44,24,18,44,53,0.6,0.496,54,41,8,128,12,119,3,4,44
2014-09-09,08:00:00,48,19,18,48,54,0.5,0.504,47,42,20,128,9,119,3,4,48
2014-09-09,10:00:00,59,21,19,68,58,0.5,0.521,38,43,55,128,17,119,5,4,59
2014-09-09,12:00:00,73,38,22,95,64,0.7,0.55,58,47,95,128,38,119,11,5,73
2014-09-09,13:00:00,78,42,24,106,69,0.7,0.567,47,49,143,143,56,119,13,5,78
2014-09-09,15:00:00,111,52,27,99,75,0.7,0.604,22,51,222,222,105,119,11,6,111
2014-09-09,16:00:00,109,45,29,74,75,0.6,0.617,15,51,218,222,130,130,10,6,109
2014-09-09,17:00:00,99,28,30,69,77,0.6,0.629,14,51,199,222,149,149,11,6,99
2014-09-09,18:00:00,87,34,31,91,79,0.7,0.642,19,51,189,222,166,166,11,7,87
2014-09-09,19:00:00,78,44,32,84,81,0.8,0.658,26,50,182,222,178,178,14,7,78
2014-09-09,20:00:00,70,48,33,90,82,0.8,0.671,55,51,140,222,184,184,11,7,70
2014-09-09,21:00:00,74,52,35,98,84,0.9,0.687,56,51,130,222,182,184,10,8,0
2014-09-09,22:00:00,84,49,36,117,87,1.1,0.712,99,53,70,222,169,184,11,8,84
2014-09-09,23:00:00,85,55,37,119,89,1.1,0.733,70,54,86,222,152,184,18,8,85
2014-09-10,00:00:00,67,43,38,84,89,1,0.75,34,52,109,222,138,184,21,9,67
2014-09-10,01:00:00,63,39,38,76,89,1,0.763,37,51,96,222,125,184,24,10,63
2014-09-10,02:00:00,69,42,39,87,88,1,0.771,31,48,100,222,114,184,28,11,69
2014-09-10,03:00:00,69,48,39,87,87,1,0.771,36,46,85,222,102,184,23,11,69
2014-09-10,04:00:00,69,50,39,85,85,1,0.771,47,44,50,222,91,184,15,12,69
2014-09-10,05:00:00,96,64,40,142,87,1.6,0.808,109,46,2,222,75,184,8,12,96
2014-09-10,06:00:00,105,79,43,155,91,1.8,0.858,105,47,2,222,66,184,6,12,105
2014-09-10,07:00:00,127,96,46,141,95,1.7,0.904,96,49,2,222,56,184,7,12,127
2014-09-10,08:00:00,134,102,49,163,100,1.8,0.958,95,51,3,222,43,184,10,13,134
2014-09-10,09:00:00,145,111,53,200,106,1.8,1.013,96,54,15,222,32,184,15,13,145
2014-09-10,10:00:00,158,120,57,206,111,1.8,1.067,84,55,44,222,25,184,20,14,158
2014-09-10,12:00:00,105,79,61,110,115,1.5,1.146,56,56,132,222,37,184,32,15,105
2014-09-10,13:00:00,75,55,62,71,113,1.1,1.163,39,56,173,222,58,184,25,16,75
2014-09-10,14:00:00,101,44,61,56,110,0.9,1.167,22,55,201,222,83,184,20,16,101
2014-09-10,15:00:00,105,37,61,43,108,1,1.179,20,55,210,218,109,184,18,17,105
2014-09-10,16:00:00,109,33,60,63,107,1,1.196,23,55,217,217,136,184,16,17,109
2014-09-10,17:00:00,114,36,61,75,108,1.2,1.221,27,56,227,227,163,184,20,17,114
2014-09-10,18:00:00,107,46,61,86,107,1.2,1.242,41,57,213,227,184,184,23,18,107
2014-09-10,19:00:00,73,47,61,87,108,0.9,1.246,53,58,178,227,194,194,22,18,73
2014-09-10,20:00:00,75,52,61,99,108,0.9,1.25,68,59,149,227,196,196,23,19,75
2014-09-10,21:00:00,83,61,62,105,108,1,1.254,119,61,78,227,184,196,19,19,83
2014-09-10,22:00:00,94,61,62,138,109,1.4,1.267,139,63,36,227,164,196,14,19,94
2014-09-10,23:00:00,117,83,63,183,112,1.7,1.292,179,67,2,227,138,196,16,19,117
2014-09-11,00:00:00,97,72,65,139,114,1.5,1.312,149,72,20,227,113,196,15,19,97
2014-09-11,01:00:00,83,52,65,115,116,1.7,1.342,79,74,60,227,92,196,15,18,83
2014-09-11,02:00:00,84,50,66,117,117,1.9,1.379,105,77,20,227,68,196,10,18,0
2014-09-11,03:00:00,92,68,66,98,117,1.7,1.408,113,80,2,227,46,196,9,17,92
2014-09-11,04:00:00,114,78,68,177,121,1.4,1.425,96,82,2,227,28,196,7,17,114
2014-09-11,05:00:00,105,79,68,140,121,1.1,1.404,86,81,2,227,18,196,7,17,105
2014-09-11,06:00:00,98,73,68,123,120,1,1.371,85,81,2,227,14,196,10,17,98
2014-09-11,07:00:00,112,84,67,121,119,1,1.342,81,80,2,227,14,196,11,17,112
2014-09-11,08:00:00,110,83,67,142,118,1.3,1.321,78,79,5,227,12,196,16,17,110
2014-09-11,09:00:00,117,88,66,168,117,1.7,1.317,80,79,11,227,6,196,22,18,117
2014-09-11,10:00:00,131,95,65,212,117,2.3,1.337,80,78,22,227,6,196,29,18,131
2014-09-11,11:00:00,135,103,65,202,120,2.8,1.383,79,79,39,227,11,196,36,18,135
2014-09-11,12:00:00,128,97,66,178,122,2.8,1.438,72,80,73,227,20,196,50,19,128
2014-09-11,14:00:00,114,86,69,151,129,2.3,1.558,45,81,155,227,54,196,53,22,114
2014-09-11,16:00:00,115,87,73,135,136,0,1.643,45,83,154,227,91,196,49,24,115
2014-09-11,17:00:00,129,98,76,135,139,2,1.678,53,84,137,213,106,196,41,25,129
2014-09-11,18:00:00,147,112,79,154,141,2.1,1.717,69,86,121,178,119,196,35,26,147
2014-09-11,19:00:00,155,118,82,153,144,1.9,1.761,79,87,91,155,125,196,30,26,155
2014-09-11,20:00:00,150,115,84,157,147,2.1,1.813,83,87,62,155,124,184,26,26,150
2014-09-11,21:00:00,139,106,86,0,148,2.3,1.87,65,85,55,155,116,164,16,26,139
2014-09-11,22:00:00,132,100,88,0,149,1.7,1.883,53,81,72,155,105,138,16,26,132
2014-09-11,23:00:00,127,96,88,0,147,1.7,1.883,39,76,83,155,97,125,14,26,127
2014-09-12,00:00:00,127,96,89,0,148,1.7,1.891,37,71,81,155,88,125,13,26,127
2014-09-12,01:00:00,140,107,92,0,149,1.7,1.891,57,70,47,155,77,125,12,26,140
2014-09-12,02:00:00,158,120,95,0,151,1.7,1.883,57,68,40,155,66,125,11,26,158
2014-09-12,03:00:00,163,124,97,0,154,1.4,1.87,60,66,23,155,58,125,8,26,163
2014-09-12,04:00:00,109,82,97,0,153,0.8,1.843,33,63,77,155,60,125,6,26,109
2014-09-12,05:00:00,78,57,96,0,154,0.6,1.822,29,61,71,155,62,125,3,26,78
2014-09-12,06:00:00,79,58,96,0,156,0.6,1.804,30,59,62,155,61,125,2,25,79
2014-09-12,07:00:00,74,54,94,0,159,0.6,1.787,38,57,51,155,57,125,2,25,0
2014-09-12,08:00:00,70,51,93,0,160,0.6,1.757,51,56,35,155,51,125,2,24,70
2014-09-12,09:00:00,80,59,92,0,159,0.7,1.713,76,55,15,155,47,125,3,24,80
2014-09-12,10:00:00,82,60,90,0,154,0.8,1.648,78,55,16,155,44,125,4,23,82
2014-09-12,11:00:00,77,56,88,76,141,0.9,1.565,76,55,26,155,44,125,4,21,77
2014-09-12,12:00:00,97,72,87,78,131,0.8,1.478,82,56,31,155,38,125,4,19,97
2014-09-12,13:00:00,94,70,86,0,130,0.7,1.396,67,56,57,155,37,125,6,17,94
2014-09-12,14:00:00,97,72,86,78,122,0.7,1.326,67,57,68,154,37,125,6,15,97
2014-09-12,15:00:00,70,51,84,0,121,0.6,1.248,54,57,96,154,43,125,10,13,70
2014-09-12,17:00:00,92,68,81,116,116,0.6,1.158,75,58,82,121,61,125,11,11,92
2014-09-12,18:00:00,85,63,79,68,104,0.5,1.092,66,58,67,109,67,125,8,10,85
2014-09-12,19:00:00,62,44,76,73,92,0.6,1.038,75,58,39,109,69,124,8,9,62
2014-09-12,20:00:00,77,56,74,85,82,0.7,0.979,93,59,17,109,67,116,8,8,77
2014-09-12,21:00:00,78,57,72,82,82,0.8,0.917,100,60,6,109,61,105,7,8,78
2014-09-12,22:00:00,77,56,70,84,82,0.9,0.883,98,62,4,109,53,97,7,7,77
2014-09-12,23:00:00,80,59,68,71,81,0.8,0.846,82,64,14,109,42,88,7,7,80
2014-09-13,00:00:00,72,52,67,69,80,0.8,0.808,80,65,16,109,31,77,8,7,72
2014-09-13,01:00:00,70,51,64,63,79,0.8,0.771,81,66,13,109,22,69,8,6,70
2014-09-13,02:00:00,68,49,61,61,77,0.8,0.733,78,67,16,109,16,69,8,6,68
2014-09-13,03:00:00,72,52,58,80,77,0.9,0.713,91,69,2,109,11,69,6,6,72
2014-09-13,04:00:00,75,55,57,99,79,1.1,0.725,88,71,2,109,9,69,5,6,75
2014-09-13,05:00:00,100,75,58,0,79,1.4,0.758,88,73,2,109,9,69,5,6,100
2014-09-13,06:00:00,112,82,59,173,85,1.4,0.792,80,75,2,109,8,69,4,6,112
2014-09-13,07:00:00,114,85,60,178,90,1.5,0.829,73,77,2,109,7,69,4,6,114
2014-09-13,08:00:00,118,89,62,180,95,1.5,0.867,80,78,2,109,5,69,5,7,118
2014-09-13,09:00:00,112,84,63,119,96,1.1,0.883,88,79,8,109,5,69,10,7,112
2014-09-13,10:00:00,85,63,63,66,95,0.7,0.879,74,78,46,109,8,69,15,7,85
2014-09-13,11:00:00,88,65,63,88,96,0.6,0.867,0,79,77,109,18,69,19,8,88
2014-09-13,12:00:00,95,71,63,76,95,0.6,0.858,0,78,117,117,32,69,19,9,95
2014-09-13,13:00:00,74,54,63,0,95,0.4,0.846,0,79,155,155,51,69,16,9,74
2014-09-13,14:00:00,68,47,62,0,96,0.3,0.829,0,80,174,174,73,73,14,9,68
2014-09-13,15:00:00,70,34,61,53,94,0.3,0.817,0,81,176,176,94,94,13,9,70
2014-09-13,17:00:00,85,48,60,64,91,0.3,0.796,0,83,188,188,140,140,11,9,85
2014-09-13,18:00:00,72,43,59,68,91,0.4,0.792,0,84,177,188,156,156,11,10,72
2014-09-13,19:00:00,74,54,59,80,91,0.5,0.788,0,85,166,188,167,167,11,10,74
2014-09-13,20:00:00,82,60,60,94,92,0.5,0.779,0,84,149,188,171,171,12,10,82
2014-09-13,21:00:00,87,64,60,92,92,0.6,0.771,0,83,130,188,168,171,14,10,87
2014-09-13,22:00:00,95,71,61,108,93,0.7,0.763,0,82,113,188,161,171,14,10,95
2014-09-13,23:00:00,109,82,62,111,95,0.7,0.758,0,82,110,188,152,171,14,11,109
2014-09-14,00:00:00,104,78,63,99,97,0.7,0.754,0,82,110,188,143,171,13,11,104
2014-09-14,01:00:00,107,80,64,94,98,0.7,0.75,0,82,106,188,133,171,13,11,107
2014-09-14,02:00:00,108,81,65,97,100,0.7,0.746,0,83,82,188,121,171,12,11,108
2014-09-14,03:00:00,108,81,66,97,101,0.8,0.742,0,82,48,188,106,171,8,11,108
2014-09-14,04:00:00,105,79,67,122,102,0.9,0.733,0,81,2,188,88,171,5,11,105
2014-09-14,05:00:00,108,81,68,130,103,0.9,0.712,0,79,2,188,72,171,4,11,108
2014-09-14,06:00:00,118,89,68,163,103,1,0.696,0,79,2,188,58,171,4,11,118
2014-09-14,07:00:00,133,101,69,151,101,1,0.675,0,81,2,188,44,171,8,12,133
2014-09-14,08:00:00,107,80,68,107,98,0.7,0.642,0,81,37,188,35,171,7,12,107
2014-09-14,09:00:00,85,63,67,90,97,0.6,0.621,0,74,63,188,30,171,5,11,85
2014-09-14,10:00:00,68,49,67,56,96,0.7,0.621,0,0,55,188,26,171,4,11,68
2014-09-14,11:00:00,36,25,65,0,97,0.3,0.608,0,0,57,188,28,171,3,10,36
2014-09-14,12:00:00,20,14,63,0,98,0.1,0.588,0,0,52,188,34,171,2,10,20
2014-09-14,13:00:00,17,10,61,0,98,0.1,0.575,0,0,52,188,40,171,2,9,17
2014-09-14,14:00:00,22,10,59,22,94,0.1,0.567,0,0,49,188,46,171,2,8,22
2014-09-14,15:00:00,17,11,58,17,92,0.1,0.558,0,0,52,188,52,171,2,8,17
2014-09-14,16:00:00,26,16,57,26,90,0.1,0.55,0,0,56,188,55,171,2,8,26
2014-09-14,17:00:00,36,14,56,36,89,0.1,0.542,0,0,55,177,54,171,2,7,36
2014-09-14,18:00:00,44,16,55,44,87,0.1,0.529,0,0,47,166,53,171,2,7,44
2014-09-14,19:00:00,26,18,53,26,85,0.3,0.521,0,0,34,149,50,171,2,7,26
2014-09-14,20:00:00,57,22,51,63,83,0.7,0.529,0,0,6,130,44,168,2,6,57
2014-09-14,21:00:00,81,30,50,111,84,0.8,0.538,0,0,2,113,38,161,3,6,81
2014-09-14,22:00:00,75,34,49,100,84,0.7,0.537,0,0,2,110,32,152,3,5,75
2014-09-14,23:00:00,75,37,47,100,83,0.8,0.542,0,0,2,110,26,143,4,5,75
2014-09-15,00:00:00,75,39,45,100,83,0.9,0.55,0,0,2,106,19,133,3,4,75
2014-09-15,01:00:00,82,38,43,114,84,0.9,0.558,0,0,2,82,12,121,3,4,82
2014-09-15,02:00:00,72,42,42,93,84,1,0.571,0,0,2,63,7,106,3,4,72
2014-09-15,03:00:00,61,32,40,71,83,0.6,0.562,0,0,2,63,3,88,3,3,61
2014-09-15,04:00:00,60,26,37,70,80,0.5,0.546,0,0,2,63,2,72,2,3,60
2014-09-15,05:00:00,33,18,35,33,76,0.3,0.521,0,0,2,63,2,58,2,3,33
2014-09-15,06:00:00,31,15,32,31,70,0.3,0.492,0,0,2,63,2,55,2,3,31
2014-09-15,07:00:00,30,15,28,30,64,0.3,0.463,0,0,2,63,2,55,2,3,30
2014-09-15,08:00:00,29,20,26,0,62,0.4,0.45,0,0,4,63,2,55,10,3,29
2014-09-15,09:00:00,0,0,24,0,60,0,0.443,0,0,0,57,2,55,0,3,0
2014-09-15,10:00:00,0,0,23,0,60,0,0.432,0,0,0,57,2,55,0,3,0
2014-09-15,11:00:00,0,0,23,0,60,0,0.438,0,0,0,56,2,55,0,3,0
2014-09-15,12:00:00,0,0,23,0,60,0,0.455,0,0,0,56,3,55,0,3,0
2014-09-15,13:00:00,0,0,24,0,60,0,0.474,0,0,0,56,3,55,0,3,0
2014-09-15,14:00:00,0,0,25,0,63,0,0.494,0,0,0,56,3,55,0,3,0
2014-09-15,15:00:00,0,0,25,0,66,0,0.518,0,0,0,56,4,55,0,3,0
2014-09-15,16:00:00,0,0,26,0,68,0,0.544,0,0,0,55,0,54,0,3,0
2014-09-15,17:00:00,0,0,27,0,70,0,0.573,0,0,0,47,0,53,0,3,0
2014-09-15,18:00:00,0,0,28,0,72,0,0.607,0,0,0,34,0,50,0,3,0
2014-09-15,20:00:00,55,24,28,60,76,0.2,0.564,50,46,61,104,83,104,3,3,55
2014-09-15,21:00:00,62,27,28,73,73,0.3,0.529,59,50,44,104,70,104,4,3,62
2014-09-15,22:00:00,66,27,27,82,71,0.3,0.5,64,54,36,104,61,104,9,4,66
2014-09-15,23:00:00,78,30,27,106,72,0.4,0.471,65,56,31,104,55,104,10,4,78
2014-09-16,00:00:00,74,31,26,97,72,0.4,0.436,64,57,23,104,50,104,9,5,74
2014-09-16,01:00:00,70,36,26,89,70,0.6,0.414,79,60,4,104,43,104,7,5,70
2014-09-16,02:00:00,72,35,26,93,70,0.6,0.386,81,63,2,104,38,104,5,5,72
2014-09-16,03:00:00,93,40,26,135,75,0.7,0.393,82,65,2,104,25,104,5,5,93
2014-09-16,04:00:00,95,49,28,140,80,0.8,0.414,90,67,2,104,18,104,8,6,95
2014-09-16,05:00:00,78,40,29,105,86,0.6,0.436,78,68,2,104,13,104,6,6,78
2014-09-16,06:00:00,49,19,30,49,87,0.4,0.443,68,68,4,104,9,104,4,6,49
2014-09-16,07:00:00,41,13,29,41,88,0.3,0.443,57,68,12,104,6,104,3,6,41
2014-09-16,08:00:00,52,12,29,54,85,0.3,0.436,51,66,18,104,6,104,3,6,52
2014-09-16,09:00:00,56,19,28,62,84,0.3,0.427,46,65,27,104,9,104,4,6,56
2014-09-16,10:00:00,52,23,28,54,82,0.2,0.413,47,64,31,104,12,104,4,6,52
2014-09-16,11:00:00,61,19,27,72,81,0.2,0.4,54,63,32,104,16,104,5,5,61
2014-09-16,12:00:00,60,22,27,70,81,0.3,0.394,54,63,43,104,21,104,6,6,60
2014-09-16,13:00:00,73,30,27,96,82,0.3,0.389,59,63,51,104,27,104,6,6,73
2014-09-16,15:00:00,89,53,29,128,85,0.5,0.395,96,65,36,104,36,104,8,6,89
2014-09-16,17:00:00,112,83,33,174,92,0.8,0.422,113,69,43,104,41,104,9,6,112
2014-09-16,18:00:00,112,84,35,134,93,0.9,0.442,113,71,35,104,41,104,8,6,112
2014-09-16,19:00:00,92,68,37,116,95,0.7,0.462,104,73,26,61,41,83,10,6,92
2014-09-16,20:00:00,87,64,39,113,97,0.8,0.488,98,75,17,51,37,70,15,7,87
2014-09-16,21:00:00,88,59,40,126,100,0.8,0.508,89,76,13,51,33,61,13,7,88
2014-09-16,22:00:00,95,64,42,139,102,0.8,0.529,101,78,2,51,27,55,13,7,95
2014-09-16,23:00:00,79,58,43,106,102,0.8,0.546,87,79,2,51,23,50,9,7,79
2014-09-17,00:00:00,43,30,43,34,99,0.6,0.554,69,79,12,51,19,43,6,7,43
2014-09-17,01:00:00,46,22,42,46,98,0.5,0.55,56,78,26,51,17,41,4,7,46
2014-09-17,02:00:00,30,16,42,30,95,0.4,0.542,51,77,37,51,17,41,3,7,30
2014-09-17,03:00:00,28,9,40,28,91,0.3,0.525,48,75,40,51,19,41,3,7,28
2014-09-17,04:00:00,32,18,39,32,86,0.3,0.504,46,74,38,51,21,41,4,7,32
2014-09-17,05:00:00,46,18,38,46,84,0.4,0.496,46,72,32,51,24,41,5,7,46
2014-09-17,06:00:00,48,21,38,48,84,0.4,0.496,46,71,26,51,27,41,4,7,48
2014-09-17,07:00:00,40,22,39,40,84,0.4,0.5,49,71,26,51,30,41,4,7,40
2014-09-17,08:00:00,41,19,39,41,83,0.5,0.508,58,71,19,51,31,41,4,7,41
2014-09-17,09:00:00,39,18,39,39,82,0.5,0.517,54,72,29,51,31,41,4,7,39
2014-09-17,10:00:00,57,25,39,63,82,0.6,0.533,61,72,19,51,29,41,4,7,57
2014-09-17,11:00:00,65,34,40,80,83,0.7,0.554,68,73,16,51,26,41,5,7,65
2014-09-17,13:00:00,84,62,42,104,84,0.8,0.596,95,75,23,47,22,41,5,7,84
2014-09-17,14:00:00,80,59,43,103,85,0.9,0.617,100,77,24,44,22,41,10,7,80
2014-09-17,15:00:00,80,59,43,85,83,0.8,0.629,94,77,43,44,24,41,7,7,80
2014-09-17,17:00:00,62,44,41,71,75,0.4,0.608,60,73,85,85,38,41,5,7,62
2014-09-17,18:00:00,58,36,39,65,72,0.4,0.588,57,70,76,85,45,45,5,6,58
2014-09-17,19:00:00,61,31,37,71,70,0.5,0.579,51,68,70,85,52,52,4,6,61
2014-09-17,20:00:00,57,30,36,64,68,0.6,0.571,54,66,58,85,57,57,4,6,57
2014-09-17,21:00:00,66,43,35,82,67,0.8,0.571,73,66,35,85,59,59,4,5,66
2014-09-17,22:00:00,66,46,34,81,64,0.8,0.571,80,65,20,85,58,59,4,5,66
2014-09-17,23:00:00,69,50,34,84,63,0.9,0.575,82,65,11,85,54,59,4,5,69
2014-09-18,00:00:00,69,50,35,76,65,0.9,0.588,82,65,5,85,45,59,4,5,69
2014-09-18,01:00:00,70,51,36,75,66,0.9,0.604,84,66,2,85,35,59,2,5,70
2014-09-18,02:00:00,78,57,38,85,68,1,0.629,87,68,2,85,25,59,2,5,78
2014-09-18,03:00:00,85,63,40,108,72,1.2,0.667,91,70,2,85,17,59,2,4,85
2014-09-18,04:00:00,104,78,42,139,76,1.2,0.704,93,72,2,85,10,59,2,4,104
2014-09-18,05:00:00,118,89,45,112,79,0.9,0.725,85,73,2,85,6,59,2,4,118
2014-09-18,06:00:00,37,0,46,0,80,0,0.739,74,74,2,85,4,59,2,4,0
2014-09-18,07:00:00,39,0,47,0,82,0,0.755,78,76,2,85,2,59,2,4,0
2014-09-18,08:00:00,96,55,49,142,87,0,0.767,82,77,4,85,2,59,3,4,96
2014-09-18,09:00:00,130,99,53,146,92,0,0.78,0,78,8,85,3,59,5,4,130
2014-09-18,10:00:00,127,96,56,0,93,0,0.789,90,79,21,85,5,59,6,4,127
2014-09-18,11:00:00,102,76,58,103,94,0,0.794,80,79,58,85,12,59,6,4,102
2014-09-18,12:00:00,88,65,59,93,94,0,0.794,76,79,92,92,24,59,5,4,88
2014-09-18,13:00:00,99,74,59,116,94,0,0.794,91,79,98,98,36,59,10,4,99
2014-09-18,15:00:00,57,39,59,63,93,0,0.786,47,76,165,165,72,72,7,4,57
2014-09-18,16:00:00,63,40,58,69,92,0,0.808,44,74,170,170,93,93,6,4,63
2014-09-18,17:00:00,46,25,57,0,93,0,0.842,28,73,146,170,110,110,5,4,46
2014-09-18,18:00:00,63,23,57,76,94,0,0.882,40,72,147,170,126,126,4,4,63
2014-09-18,19:00:00,64,32,57,77,94,0,0.92,55,72,138,170,136,136,4,4,64
2014-09-18,20:00:00,60,38,57,70,95,0,0.956,89,74,87,170,135,136,5,4,60
2014-09-18,21:00:00,76,46,57,102,96,0,0.975,103,75,65,170,131,136,7,5,76
2014-09-18,22:00:00,85,57,58,120,98,0,1,100,76,52,170,121,136,14,5,85
2014-09-18,23:00:00,94,65,58,137,100,0,1.017,91,77,52,170,107,136,15,5,94
2014-09-19,00:00:00,87,64,59,120,103,0,1.04,79,76,59,170,93,136,10,6,87
2014-09-19,01:00:00,85,60,60,120,105,0,1.075,57,75,76,170,85,136,8,6,85
2014-09-19,02:00:00,99,74,60,120,107,0,1.1,59,74,64,170,74,136,10,6,99
2014-09-19,03:00:00,108,81,61,127,108,0,1.05,68,73,39,170,62,136,9,7,108
2014-09-19,04:00:00,122,92,62,136,108,0,0.9,92,73,10,170,52,136,8,7,122
2014-09-19,05:00:00,135,103,62,147,110,0,0,80,73,7,170,45,136,7,7,135
2014-09-19,06:00:00,31,0,62,0,110,0,0,62,72,13,170,40,136,7,7,0
2014-09-19,07:00:00,88,61,62,125,110,0,0,77,72,2,170,34,136,6,7,88
2014-09-19,08:00:00,132,100,64,0,109,0,0,97,73,2,170,27,136,6,8,132
2014-09-19,09:00:00,160,122,65,0,107,0,0,100,74,2,170,17,136,7,8,160
2014-09-19,10:00:00,183,138,67,0,107,0,0,111,75,7,170,10,136,8,8,183
2014-09-19,11:00:00,201,151,70,0,107,0,0,112,76,21,170,8,136,14,8,201
2014-09-19,12:00:00,173,131,73,174,112,0,0,63,76,85,170,17,136,21,9,173
2014-09-19,13:00:00,134,102,74,108,111,2.1,2.1,34,73,126,170,32,136,20,9,134
2014-09-19,14:00:00,123,93,76,112,111,1.9,2,26,71,143,170,49,136,16,9,123
2014-09-19,16:00:00,80,59,78,66,112,1.6,1.825,27,70,137,147,83,136,9,10,80
2014-09-19,17:00:00,69,50,79,61,109,1.6,1.78,27,70,144,147,101,136,10,10,69
2014-09-19,18:00:00,68,49,80,59,109,1.6,1.75,32,69,146,146,119,136,8,10,68
2014-09-19,19:00:00,72,49,81,93,109,1.6,1.729,41,69,128,146,132,135,10,10,72
2014-09-19,20:00:00,117,64,82,183,115,2.1,1.775,63,68,102,146,134,134,8,10,117
2014-09-19,21:00:00,109,82,84,165,119,2.1,1.811,87,67,57,146,125,134,6,10,109
2014-09-19,22:00:00,118,89,85,122,119,2.3,1.86,80,66,32,146,112,134,2,10,118
2014-09-19,23:00:00,114,86,86,99,117,2.5,1.918,102,67,6,146,94,134,2,9,114
2014-09-20,00:00:00,122,92,87,123,117,2.7,1.983,117,68,2,146,77,134,2,9,122
2014-09-20,01:00:00,127,96,89,111,116,2.3,2.008,102,70,5,146,60,134,2,9,127
2014-09-20,02:00:00,134,102,90,126,117,2.2,2.021,94,72,2,146,42,134,2,8,134
2014-09-20,03:00:00,147,112,91,124,117,2.1,2.027,91,73,2,146,26,134,2,8,147
2014-09-20,04:00:00,153,117,92,132,116,2,2.025,91,72,2,146,14,134,3,8,153
2014-09-20,05:00:00,153,117,93,126,115,2,2.024,88,73,2,146,7,134,3,8,153
2014-09-20,06:00:00,155,118,94,0,115,1.9,2.017,83,74,2,146,3,134,3,7,155
2014-09-20,07:00:00,139,106,96,0,115,1.8,2.005,64,73,10,146,3,134,3,7,139
2014-09-20,08:00:00,132,100,96,0,115,1.8,1.995,53,71,24,146,6,134,4,7,132
2014-09-20,09:00:00,147,112,96,128,115,1.9,1.99,56,69,40,146,11,134,6,7,147
2014-09-20,10:00:00,156,119,95,140,117,1.9,1.986,67,68,50,146,17,134,8,7,156
2014-09-20,11:00:00,170,129,94,161,119,1.9,1.983,48,65,90,146,28,134,11,7,170
2014-09-20,12:00:00,163,124,94,152,118,1.9,1.979,30,64,138,146,45,134,13,7,163
2014-09-20,13:00:00,156,119,94,140,119,1.9,1.971,28,63,167,167,65,134,14,7,156
2014-09-20,14:00:00,148,113,95,116,119,1.8,1.967,29,63,190,190,89,134,14,6,148
2014-09-20,15:00:00,137,104,96,0,121,1.8,1.971,27,64,208,208,113,134,12,7,137
2014-09-20,16:00:00,134,102,98,123,124,1.8,1.979,37,64,216,216,137,137,14,7,134
2014-09-20,18:00:00,159,121,102,229,136,2.1,2.008,57,66,199,216,175,175,13,7,159
2014-09-20,19:00:00,186,140,106,198,142,2.3,2.037,62,67,177,216,186,186,12,7,186
2014-09-20,20:00:00,193,145,110,191,142,2.3,2.046,67,67,128,216,185,186,11,8,193
2014-09-20,21:00:00,209,159,113,225,146,2.4,2.058,94,67,80,216,174,186,10,8,209
2014-09-20,22:00:00,230,180,117,242,152,2.6,2.071,97,68,64,216,158,186,8,8,230
2014-09-20,23:00:00,251,201,121,251,160,2.8,2.083,90,67,55,216,139,186,7,8,251
2014-09-21,01:00:00,253,203,131,221,173,2.6,2.104,79,66,28,216,93,186,8,9,253
2014-09-21,02:00:00,212,162,133,166,175,2.5,2.117,56,65,30,216,72,186,9,9,212
2014-09-21,03:00:00,180,136,134,153,176,3,2.154,59,64,24,216,53,186,13,9,180
2014-09-21,04:00:00,144,110,134,121,176,3.4,2.213,55,62,28,216,41,186,20,10,144
2014-09-21,05:00:00,112,84,132,0,179,3.4,2.271,51,61,35,216,35,186,26,11,112
2014-09-21,06:00:00,97,72,130,83,174,3.4,2.333,58,59,26,216,30,186,25,12,97
2014-09-21,07:00:00,98,73,129,95,170,3.3,2.396,76,60,5,216,24,186,20,13,98
2014-09-21,08:00:00,90,67,128,99,166,3.2,2.454,75,61,10,216,23,186,22,13,90
2014-09-21,09:00:00,88,65,126,112,166,3.3,2.512,73,62,19,216,22,186,26,14,88
2014-09-21,10:00:00,83,61,123,107,164,3,2.558,71,62,28,216,22,186,26,15,83
2014-09-21,11:00:00,77,56,120,93,161,2.8,2.596,59,62,52,216,25,186,41,16,77
2014-09-21,13:00:00,109,76,116,168,162,3,2.704,50,65,95,216,37,186,45,19,109
2014-09-21,14:00:00,110,83,115,125,162,2.3,2.725,36,65,128,216,50,186,31,20,110
2014-09-21,15:00:00,117,88,115,120,160,2.4,2.75,41,65,131,216,66,186,29,21,117
2014-09-21,16:00:00,124,94,114,135,161,2.3,2.771,35,65,149,199,83,186,23,21,124
2014-09-21,17:00:00,120,91,114,136,160,2.5,2.8,31,65,147,199,99,186,20,21,120
2014-09-21,18:00:00,119,90,113,132,156,2.6,2.821,35,64,132,177,112,186,18,21,119
2014-09-21,19:00:00,107,80,111,114,152,2.2,2.817,36,63,114,149,120,185,13,22,107
2014-09-21,20:00:00,110,83,108,106,148,1.8,2.796,39,62,102,149,125,174,14,22,110
2014-09-21,21:00:00,102,76,105,110,143,1.8,2.771,39,59,97,149,125,158,12,22,102
2014-09-21,22:00:00,83,61,100,0,139,1.6,2.729,38,57,102,149,122,139,14,22,83
2014-09-21,23:00:00,83,61,94,90,131,1.6,2.679,40,55,94,149,117,125,13,22,83
2014-09-22,00:00:00,90,67,88,107,124,1.7,2.629,59,52,63,149,106,125,13,22,90
2014-09-22,01:00:00,94,70,83,97,119,1.8,2.596,67,52,34,149,92,125,13,23,94
2014-09-22,02:00:00,85,63,78,71,115,2.1,2.579,60,52,36,149,80,125,13,23,85
2014-09-22,03:00:00,88,65,75,69,111,0.8,2.488,59,52,40,149,71,125,15,23,88
2014-09-22,04:00:00,102,76,74,96,110,0.7,2.375,77,53,4,149,59,125,12,23,102
2014-09-22,05:00:00,100,75,74,78,108,0.9,2.271,41,53,26,149,50,125,10,22,100
2014-09-22,06:00:00,89,66,73,72,108,1.9,2.208,45,52,29,149,41,125,15,22,89
2014-09-22,07:00:00,110,83,74,114,109,2.7,2.183,63,51,14,149,31,125,20,22,110
2014-09-22,08:00:00,125,95,75,160,111,3.4,2.192,75,51,8,149,24,125,24,22,125
2014-09-22,09:00:00,129,98,76,0,111,0,2.143,80,52,8,149,21,125,25,22,129
2014-09-22,10:00:00,130,99,78,168,114,0,2.105,81,52,11,149,18,125,25,22,130
2014-09-22,12:00:00,138,105,81,166,118,3.4,2.136,83,54,14,149,16,125,24,19,138
2014-09-22,13:00:00,145,111,83,174,119,3.3,2.15,78,55,24,149,15,125,26,19,145
2014-09-22,14:00:00,158,120,84,186,122,3.4,2.2,82,57,21,149,14,125,26,18,158
2014-09-22,15:00:00,158,120,86,186,125,3.4,2.245,82,59,21,149,15,125,26,18,158
2014-09-22,16:00:00,148,113,86,171,126,3.1,2.282,94,61,7,147,15,125,22,18,148
2014-09-22,18:00:00,148,113,88,171,129,3.1,2.332,94,66,7,114,15,125,22,19,148
2014-09-22,19:00:00,115,87,89,134,130,2.2,2.332,90,68,4,102,13,125,18,19,115
2014-09-22,20:00:00,115,87,89,134,132,2.2,2.35,90,70,4,102,12,125,18,19,115
2014-09-22,21:00:00,115,87,89,134,133,2.2,2.368,90,73,4,102,9,122,18,19,115
2014-09-22,22:00:00,137,104,91,0,133,2.1,2.391,69,74,4,94,7,117,10,19,137
2014-09-22,23:00:00,125,95,92,0,135,2.3,2.423,72,75,2,63,5,106,9,19,125
2014-09-23,00:00:00,134,102,94,0,136,0,2.457,0,76,0,40,5,92,0,19,134
2014-09-23,01:00:00,117,88,95,0,138,2.2,2.476,64,76,2,40,4,80,6,19,117
2014-09-23,02:00:00,122,92,96,0,142,2.1,2.476,59,76,2,40,3,71,4,18,122
2014-09-23,03:00:00,122,92,97,0,146,2.1,2.538,59,76,2,29,3,59,4,18,122
2014-09-23,04:00:00,122,92,98,0,149,2.1,2.605,59,75,2,29,3,50,4,18,122
2014-09-23,05:00:00,97,72,97,0,154,1.5,2.633,49,75,2,29,2,41,4,17,97
2014-09-23,06:00:00,97,72,98,0,160,1.5,2.614,49,75,2,24,2,31,4,17,97
2014-09-23,07:00:00,97,72,97,0,164,1.5,2.557,49,75,2,24,2,24,4,16,97
2014-09-23,09:00:00,97,72,95,0,164,1.5,2.423,49,72,2,24,2,18,4,14,97
2014-09-23,10:00:00,59,42,93,0,164,0.8,2.352,46,71,6,24,3,16,2,13,59
2014-09-23,11:00:00,59,42,90,0,163,0.8,2.235,46,69,6,24,3,16,2,12,59
2014-09-23,12:00:00,59,42,88,0,162,0.8,2.122,46,68,6,24,4,15,2,11,59
2014-09-23,13:00:00,40,28,84,0,161,0.5,2,25,65,35,35,8,15,2,10,40
2014-09-23,15:00:00,40,28,76,0,153,0.5,1.748,25,61,35,35,16,16,2,8,40
2014-09-23,16:00:00,38,26,73,0,149,0.4,1.63,46,58,17,35,18,18,2,7,38
2014-09-23,17:00:00,38,26,69,0,143,0.4,1.513,46,56,17,35,20,20,2,6,38
2014-09-23,18:00:00,46,32,66,36,110,0.6,1.404,59,55,3,35,19,20,2,6,46
2014-09-23,19:00:00,46,32,64,36,85,0.6,1.335,59,53,3,35,19,20,2,5,46
2014-09-23,20:00:00,46,32,61,36,61,0.6,1.265,59,52,3,35,19,20,2,4,46
2014-09-23,21:00:00,46,32,59,36,36,0.6,1.196,59,51,3,35,15,20,2,4,46
2014-09-23,22:00:00,46,32,56,36,36,0.6,1.13,59,50,3,35,11,20,2,3,46
2014-09-23,23:00:00,46,32,53,36,36,0.6,1.057,59,50,3,35,7,20,2,3,46
2014-09-24,00:00:00,46,32,50,36,36,0.6,1.038,59,50,3,35,5,20,2,3,46
2014-09-24,01:00:00,46,32,48,36,36,0.6,0.971,59,50,3,35,3,20,2,3,46
2014-09-24,02:00:00,46,32,46,36,36,0.6,0.908,59,50,3,35,3,20,2,3,46
2014-09-24,03:00:00,46,32,43,36,36,0.6,0.846,59,50,3,35,3,20,2,3,46
2014-09-24,04:00:00,46,32,41,36,36,0.6,0.783,59,50,3,35,3,20,2,2,46
2014-09-24,05:00:00,46,32,39,36,36,0.6,0.746,59,50,3,35,3,20,2,2,46
2014-09-24,06:00:00,46,32,37,36,36,0.6,0.708,59,51,3,35,3,20,2,2,46
2014-09-24,07:00:00,46,32,36,36,36,0.6,0.671,59,51,3,35,3,20,2,2,46
2014-09-24,08:00:00,46,32,34,36,36,0.6,0.633,59,52,3,35,3,20,2,2,46
2014-09-24,09:00:00,46,32,32,36,36,0.6,0.596,59,52,3,35,3,20,2,2,46
2014-09-24,10:00:00,46,32,32,36,36,0.6,0.587,59,53,3,35,3,20,2,2,46
2014-09-24,11:00:00,46,32,31,36,36,0.6,0.579,59,53,3,35,3,20,2,2,46
2014-09-24,12:00:00,22,15,30,16,35,0.5,0.567,21,52,45,45,8,20,3,2,22
2014-09-24,13:00:00,23,16,30,0,35,0.5,0.567,16,52,62,62,16,20,2,2,23
2014-09-24,14:00:00,25,14,29,0,35,0.4,0.562,15,51,77,77,25,25,2,2,25
2014-09-24,15:00:00,29,11,29,0,35,0.4,0.558,15,51,90,90,36,36,2,2,29
2014-09-24,17:00:00,31,10,27,26,34,0.4,0.558,27,49,99,103,60,60,4,2,31
2014-09-24,18:00:00,63,27,27,76,36,0.5,0.554,34,48,101,103,73,73,3,2,63
2014-09-24,19:00:00,61,42,27,71,37,0.6,0.554,45,47,90,103,83,83,2,2,61
2014-09-24,20:00:00,67,48,28,80,39,1,0.571,55,47,70,103,87,87,4,2,67
2014-09-24,21:00:00,83,61,29,81,42,1.1,0.592,56,47,57,103,86,87,4,2,83
2014-09-24,22:00:00,77,56,30,82,44,1.2,0.617,64,47,41,103,81,87,6,3,77
2014-09-24,23:00:00,112,84,32,121,48,1.8,0.667,75,48,19,103,73,87,9,3,112
2014-09-25,00:00:00,128,97,35,129,52,1.7,0.712,62,48,14,103,61,87,8,3,128
2014-09-25,01:00:00,108,81,37,106,56,1.4,0.746,56,48,12,103,51,87,6,3,108
2014-09-25,02:00:00,97,72,39,84,58,1.1,0.767,55,48,8,103,39,87,4,3,97
2014-09-25,03:00:00,89,66,40,75,60,1,0.783,55,47,4,103,28,87,3,3,89
2014-09-25,04:00:00,98,73,42,83,62,1.2,0.808,58,47,2,103,20,87,2,3,98
2014-09-25,05:00:00,98,73,44,84,64,1.1,0.829,54,47,2,103,13,87,2,3,98
2014-09-25,07:00:00,100,75,47,123,72,1.3,0.883,59,47,2,103,6,87,2,3,100
2014-09-25,08:00:00,119,90,49,140,77,1.6,0.925,68,47,2,103,4,87,3,3,119
2014-09-25,09:00:00,134,102,52,136,81,1.8,0.975,70,48,2,103,3,87,3,3,134
2014-09-25,10:00:00,150,115,56,157,87,1.5,1.013,68,48,6,103,3,87,4,4,150
2014-09-25,11:00:00,158,120,59,141,92,1.4,1.046,73,49,14,103,4,87,4,4,158
2014-09-25,12:00:00,175,132,64,184,100,1.5,1.088,81,51,7,103,5,87,4,4,175
2014-09-25,14:00:00,192,144,75,159,106,1.2,1.154,59,55,55,103,14,87,4,4,192
2014-09-25,15:00:00,198,148,81,149,108,1.1,1.183,34,56,86,103,24,87,5,4,198
2014-09-25,17:00:00,175,132,91,155,119,1,1.233,48,58,76,101,44,87,6,4,175
2014-09-25,18:00:00,153,117,95,126,121,0.9,1.25,49,58,70,90,52,87,3,4,153
2014-09-25,19:00:00,149,114,98,128,123,1.1,1.271,61,59,62,86,58,87,3,4,149
2014-09-25,20:00:00,156,119,101,135,125,1.3,1.283,72,60,51,86,63,86,4,4,156
2014-09-25,21:00:00,158,120,103,135,128,1.4,1.296,69,60,50,86,67,81,4,4,158
2014-09-25,22:00:00,153,117,106,0,130,1.3,1.3,62,60,48,86,66,73,5,4,153
2014-09-25,23:00:00,110,83,106,0,130,1,1.267,54,59,44,86,61,67,7,4,110
2014-09-26,00:00:00,85,63,104,65,127,0.7,1.225,40,59,50,86,56,67,10,4,85
2014-09-26,01:00:00,89,66,104,101,127,0.8,1.2,40,58,44,86,52,67,11,4,89
2014-09-26,02:00:00,105,79,104,103,128,1,1.196,42,57,40,86,49,67,14,5,105
2014-09-26,03:00:00,115,87,105,104,129,1.1,1.2,45,57,36,86,45,67,13,5,115
2014-09-26,04:00:00,118,89,106,105,130,1.1,1.196,43,56,34,86,43,67,13,6,118
2014-09-26,05:00:00,122,92,106,0,132,1.2,1.2,48,56,30,86,41,67,12,6,122
2014-09-26,06:00:00,127,96,108,0,134,1.5,1.213,70,57,12,86,36,67,12,6,127
2014-09-26,07:00:00,138,105,109,121,134,1.7,1.229,75,58,2,86,31,67,10,7,138
2014-09-26,08:00:00,143,109,110,118,132,1.9,1.242,76,58,3,86,25,67,11,7,143
2014-09-26,09:00:00,152,116,110,126,132,1.8,1.242,79,58,8,86,21,67,16,8,152
2014-09-26,10:00:00,156,119,110,128,130,1.7,1.25,81,59,11,86,17,67,21,8,156
2014-09-26,11:00:00,168,127,111,151,131,1.7,1.263,81,59,16,86,15,67,24,9,168
2014-09-26,13:00:00,179,135,110,168,129,1.5,1.271,57,58,66,86,20,67,37,12,179
2014-09-26,14:00:00,195,146,110,170,129,1.4,1.279,49,57,100,100,31,67,36,13,195
2014-09-26,15:00:00,204,154,110,192,131,1.3,1.287,49,58,114,114,45,67,37,14,204
2014-09-26,17:00:00,188,141,111,156,134,1.8,1.329,69,59,43,114,62,67,7,15,188
2014-09-26,18:00:00,208,158,113,0,134,2.1,1.379,77,60,21,114,63,67,5,15,208
2014-09-26,19:00:00,227,177,115,0,134,2.2,1.425,93,62,13,114,63,67,6,15,227
2014-09-26,20:00:00,223,173,118,0,134,2,1.454,101,63,2,114,58,67,5,15,223
2014-09-26,21:00:00,212,162,119,0,134,1.9,1.475,104,64,2,114,50,66,4,15,212
2014-09-26,22:00:00,200,150,121,0,134,2.1,1.508,98,66,2,114,38,63,3,15,200
2014-09-26,23:00:00,180,136,123,0,134,2.2,1.558,96,68,2,114,24,63,3,15,180
2014-09-27,00:00:00,127,96,124,0,139,1.6,1.596,87,70,2,114,11,63,2,15,127
2014-09-27,01:00:00,135,103,126,0,142,1.8,1.638,80,71,2,114,6,63,2,14,135
2014-09-27,02:00:00,122,92,126,0,145,1.4,1.654,77,73,2,114,3,63,2,14,122
2014-09-27,03:00:00,67,48,125,0,148,0.8,1.642,77,74,2,114,2,63,2,13,67
2014-09-27,04:00:00,29,20,122,0,152,0.4,1.612,53,74,20,114,4,63,2,13,29
2014-09-27,05:00:00,49,28,119,49,143,0.5,1.583,42,74,30,114,8,63,2,12,49
2014-09-27,06:00:00,60,43,117,0,143,0.6,1.546,46,73,21,114,10,63,2,12,60
2014-09-27,07:00:00,65,47,115,0,145,0.7,1.504,61,73,5,114,11,63,2,12,65
2014-09-27,08:00:00,65,47,112,0,148,0.6,1.45,45,71,18,114,13,63,2,11,65
2014-09-27,09:00:00,53,32,108,55,141,0.5,1.396,42,70,27,114,16,63,3,11,53
2014-09-27,10:00:00,39,27,105,0,142,0.4,1.342,41,68,35,114,20,63,4,10,39
2014-09-27,12:00:00,23,10,95,17,125,0.2,1.225,21,64,72,114,34,63,2,8,23
2014-09-27,13:00:00,26,9,90,0,119,0.2,1.171,18,62,82,114,41,63,2,6,26
2014-09-27,14:00:00,29,9,84,0,111,0.2,1.121,17,61,91,114,50,63,2,5,29
2014-09-27,15:00:00,31,12,78,16,82,0.2,1.075,19,60,99,103,61,63,2,4,31
2014-09-27,16:00:00,33,15,73,0,59,0.2,1.033,28,59,104,104,72,72,3,3,33
2014-09-27,17:00:00,56,10,67,62,40,0.3,0.971,37,58,91,104,80,80,4,3,56
2014-09-27,18:00:00,39,22,61,39,40,0.3,0.896,51,56,85,104,86,86,4,3,39
2014-09-27,19:00:00,58,26,55,66,43,0.5,0.825,80,56,58,104,85,86,3,3,58
2014-09-27,20:00:00,74,35,49,97,50,0.6,0.767,100,56,36,104,81,86,3,3,74
2014-09-27,21:00:00,86,38,44,122,58,0.7,0.717,107,56,18,104,73,86,3,3,86
2014-09-27,22:00:00,92,49,40,134,66,1,0.671,130,57,2,104,62,86,4,3,0
2014-09-27,23:00:00,69,41,36,88,68,0.8,0.612,127,59,2,104,50,86,4,3,69
2014-09-28,00:00:00,94,47,34,137,74,1.1,0.592,123,60,2,104,37,86,4,3,94
2014-09-28,01:00:00,133,78,33,216,84,1.2,0.567,114,62,2,104,26,86,6,3,133
2014-09-28,02:00:00,128,82,33,206,93,1.3,0.563,101,63,2,104,15,86,4,3,128
2014-09-28,03:00:00,117,69,33,183,99,1,0.571,88,63,2,104,8,86,5,3,117
2014-09-28,04:00:00,102,61,35,153,103,0.8,0.588,69,64,2,104,4,86,4,3,102
2014-09-28,05:00:00,77,52,36,104,106,0.7,0.596,60,64,2,104,2,86,4,3,77
2014-09-28,06:00:00,86,45,36,121,107,0.8,0.604,60,65,2,104,2,86,5,3,86
2014-09-28,07:00:00,100,56,37,149,109,0.9,0.613,59,65,2,104,2,86,6,4,100
2014-09-28,09:00:00,122,63,38,193,119,1.7,0.688,66,67,2,104,2,86,12,4,122
2014-09-28,10:00:00,127,72,40,204,124,2,0.754,75,68,4,104,2,86,15,5,127
2014-09-28,11:00:00,131,79,43,212,128,2.2,0.837,84,71,7,104,3,86,17,5,131
2014-09-28,12:00:00,134,84,46,218,137,2.3,0.925,94,74,9,104,4,86,18,6,134
2014-09-28,13:00:00,123,93,50,175,139,2.1,1.004,90,77,36,104,8,86,22,7,123
2014-09-28,16:00:00,68,49,56,63,137,1.1,1.133,46,81,82,91,35,86,16,9,68
2014-09-28,17:00:00,65,47,57,80,137,1.2,1.171,49,81,74,85,44,86,14,9,65
2014-09-28,18:00:00,67,45,58,83,139,1.3,1.213,0,83,63,82,52,85,14,9,67
2014-09-28,20:00:00,77,56,60,0,142,1.2,1.275,0,82,36,82,60,73,10,10,77
2014-09-28,21:00:00,65,44,61,80,141,1.2,1.296,0,81,12,82,57,62,10,10,65
2014-09-28,22:00:00,72,51,61,93,139,1.1,1.3,0,78,12,82,50,60,10,11,0
2014-09-28,23:00:00,82,60,62,86,139,1.1,1.313,0,75,8,82,41,60,10,11,82
2014-09-29,00:00:00,94,70,62,107,137,1.1,1.313,0,72,2,82,31,60,8,11,94
2014-09-29,01:00:00,107,80,63,118,133,1.2,1.313,0,70,2,82,22,60,7,11,107
2014-09-29,02:00:00,105,79,62,139,130,1.2,1.308,0,68,2,82,15,60,5,11,105
2014-09-29,03:00:00,107,80,63,140,128,1.5,1.329,0,66,2,82,10,60,4,11,107
2014-09-29,04:00:00,114,86,64,162,129,1.7,1.367,0,66,2,82,5,60,3,11,114
2014-09-29,05:00:00,118,89,65,149,131,1.7,1.408,0,67,2,82,4,60,3,11,118
2014-09-29,06:00:00,124,94,68,164,133,1.8,1.45,0,67,2,82,3,60,4,11,124
2014-09-29,07:00:00,123,93,69,133,132,1.7,1.483,0,68,2,82,2,60,4,11,123
2014-09-29,08:00:00,123,93,71,133,131,1.7,1.504,0,69,2,82,2,60,4,11,123
2014-09-29,09:00:00,120,91,72,116,127,1.5,1.496,0,69,8,82,3,60,7,10,120
2014-09-29,10:00:00,117,88,72,101,123,1.2,1.463,0,68,28,82,6,60,8,10,117
2014-09-29,11:00:00,103,77,72,106,118,1,1.412,9,58,60,82,13,60,8,10,103
2014-09-29,12:00:00,50,35,70,0,114,0.4,1.333,0,52,73,82,22,60,3,9,50
2014-09-29,13:00:00,25,17,67,0,111,0.2,1.254,14,39,78,82,32,60,2,8,25
2014-09-29,14:00:00,25,11,64,12,107,0.2,1.204,14,30,80,82,41,60,2,8,25
2014-09-29,15:00:00,26,7,62,20,104,0.2,1.162,16,25,81,82,51,60,2,7,26
2014-09-29,16:00:00,26,7,61,0,106,0.1,1.121,17,20,82,82,61,61,2,6,26
2014-09-29,17:00:00,25,5,59,5,102,0.1,1.075,19,15,77,82,70,70,2,6,25
2014-09-29,18:00:00,23,12,58,0,103,0.1,1.025,20,16,72,82,75,75,2,5,23
2014-09-29,19:00:00,60,11,56,69,102,0.2,0.975,40,19,48,82,74,75,2,5,60
2014-09-29,20:00:00,95,23,54,140,104,0.5,0.946,50,22,32,82,69,75,4,5,95
2014-09-29,21:00:00,31,15,53,31,101,0.4,0.912,40,24,34,82,63,75,4,5,31
2014-09-29,22:00:00,36,20,52,36,98,0.3,0.879,39,25,30,82,57,75,4,4,0
2014-09-29,23:00:00,57,21,50,63,97,0.4,0.85,46,27,20,82,49,75,8,4,57
2014-09-30,00:00:00,55,27,48,59,95,0.5,0.825,50,29,12,82,41,75,10,4,55
2014-09-30,01:00:00,59,20,46,68,92,0.7,0.804,48,30,11,82,32,75,14,5,59
2014-09-30,02:00:00,51,23,44,52,88,0.8,0.787,48,31,10,82,25,75,11,5,51
2014-09-30,03:00:00,42,14,41,42,83,0.6,0.75,43,32,18,82,21,75,10,5,42
2014-09-30,04:00:00,44,18,38,44,77,0.7,0.708,49,33,12,82,18,75,11,5,44
2014-09-30,05:00:00,27,16,35,27,71,0.6,0.662,34,33,24,82,17,75,10,6,27
2014-09-30,06:00:00,28,18,32,28,64,0.6,0.612,35,33,26,82,17,75,10,6,28
2014-09-30,07:00:00,28,15,29,28,59,0.5,0.563,36,33,25,82,17,75,10,6,28
2014-09-30,08:00:00,28,15,25,28,54,0.5,0.513,36,33,25,82,19,75,10,7,28
2014-09-30,09:00:00,52,8,22,53,51,0.6,0.475,55,34,7,82,18,75,10,7,52
2014-09-30,10:00:00,50,11,19,50,48,0.6,0.45,0,34,11,82,19,75,10,7,50
2014-09-30,11:00:00,39,21,16,39,45,0.6,0.433,44,36,22,82,19,75,11,7,39
2014-09-30,12:00:00,46,13,15,46,45,0.5,0.437,37,36,32,82,22,75,10,7,46
2014-09-30,13:00:00,36,19,15,36,44,0.5,0.45,31,37,43,82,24,75,9,7,36
2014-09-30,14:00:00,43,22,16,43,46,0.4,0.458,26,37,54,82,27,75,7,8,43
2014-09-30,15:00:00,51,20,16,51,47,0.4,0.467,30,38,57,82,31,75,6,8,51
2014-09-30,16:00:00,50,22,17,50,47,0.4,0.479,31,39,60,77,36,75,6,8,50
2014-09-30,17:00:00,53,29,18,56,50,0.4,0.492,36,39,51,72,41,75,5,8,53
2014-09-30,18:00:00,54,19,18,57,50,0.5,0.508,43,40,42,60,45,74,5,8,54
2014-09-30,19:00:00,55,20,19,59,49,0.5,0.521,57,41,27,60,46,69,5,8,55
2014-09-30,20:00:00,0,0,19,0,45,0,0.522,0,41,0,60,48,63,0,9,0
2014-09-30,21:00:00,74,40,20,97,48,0.7,0.535,84,43,8,60,43,57,6,9,74
2014-09-30,22:00:00,81,50,21,111,52,0.8,0.557,74,44,13,60,37,49,7,9,81
2014-09-30,23:00:00,84,56,22,118,54,0.8,0.574,78,46,7,60,30,48,8,9,84
2014-10-01,01:00:00,108,79,27,165,62,0.9,0.6,81,49,2,60,15,48,8,8,108
2014-10-01,02:00:00,113,85,29,158,66,0.9,0.604,76,50,2,60,9,48,7,8,113
2014-10-01,03:00:00,104,78,32,148,71,0.9,0.617,72,51,2,60,5,48,6,8,104
2014-10-01,04:00:00,109,82,35,160,76,0.8,0.622,69,52,2,60,5,48,6,8,109
2014-10-01,05:00:00,103,77,37,150,81,0.9,0.635,66,54,2,60,4,48,7,8,103
2014-10-01,06:00:00,98,73,40,146,86,0.9,0.648,64,55,2,60,3,48,6,8,98
2014-10-01,07:00:00,95,66,42,139,91,0.8,0.661,60,56,2,60,2,48,6,7,95
2014-10-01,08:00:00,91,61,44,131,96,0.9,0.678,58,57,2,60,2,48,6,7,91
2014-10-01,09:00:00,99,72,47,148,100,1.1,0.7,59,57,2,60,2,48,8,7,99
2014-10-01,10:00:00,108,81,50,148,104,1.2,0.726,64,57,3,60,2,48,9,7,108
2014-10-01,13:00:00,122,92,58,170,119,1.3,0.805,78,62,3,60,3,48,7,7,122
2014-10-01,16:00:00,92,68,65,0,129,1.1,0.886,58,66,2,51,3,48,2,6,92
2014-10-01,17:00:00,104,78,67,0,133,1.2,0.923,62,67,2,42,3,48,2,6,104
2014-10-01,18:00:00,118,89,70,0,138,1.2,0.955,67,68,2,27,3,48,2,6,118
2014-10-01,19:00:00,113,85,73,0,142,1.2,0.986,69,69,2,13,3,48,2,6,113
2014-10-01,20:00:00,114,86,74,0,142,1.1,0.991,69,69,2,13,2,43,2,6,114
2014-10-01,21:00:00,104,78,75,0,145,1.1,1.009,60,68,2,13,2,37,2,5,104
2014-10-01,22:00:00,94,70,76,0,147,1,1.017,57,67,3,7,2,30,2,5,94
2014-10-01,23:00:00,99,74,77,0,149,1,1.026,55,66,2,5,2,22,2,5,99
2014-10-02,00:00:00,95,71,77,0,150,0.9,1.026,54,65,2,5,2,15,2,5,95
2014-10-02,01:00:00,82,60,77,0,149,0.8,1.022,48,64,3,5,2,9,2,4,82
2014-10-02,02:00:00,83,61,75,0,148,0.8,1.017,49,62,2,5,2,5,2,4,83
2014-10-02,03:00:00,78,57,75,0,148,0.9,1.017,47,61,2,5,2,5,2,4,78
2014-10-02,05:00:00,72,52,73,0,146,0.9,1.027,44,60,2,5,2,3,2,4,72
2014-10-02,06:00:00,79,58,72,0,146,1,1.032,46,59,2,5,2,3,2,4,79
2014-10-02,07:00:00,87,64,72,0,148,1.1,1.045,49,59,2,5,2,3,2,3,87
2014-10-02,08:00:00,83,61,72,88,141,1.2,1.059,49,58,2,5,2,3,2,3,83
2014-10-02,09:00:00,85,63,72,76,128,1,1.055,48,58,6,6,3,3,2,3,85
2014-10-02,11:00:00,79,58,70,0,125,1,1.039,50,56,20,20,7,7,11,3,79
2014-10-02,12:00:00,88,65,69,68,103,1.1,1.03,55,55,26,26,9,9,15,3,88
2014-10-02,13:00:00,70,51,67,0,87,1,1.017,47,54,38,38,14,14,14,4,70
2014-10-02,14:00:00,54,38,65,0,77,0.8,1.009,35,53,50,50,20,20,12,4,54
2014-10-02,15:00:00,49,34,64,0,77,0.6,0.996,32,52,57,57,27,27,8,4,49
2014-10-02,16:00:00,30,21,62,0,77,0.5,0.97,27,50,59,59,34,34,7,5,30
2014-10-02,17:00:00,60,24,60,70,76,0.5,0.939,31,49,50,59,39,39,8,5,60
2014-10-02,18:00:00,73,53,58,87,78,0.8,0.922,68,49,34,59,42,42,5,5,73
2014-10-02,19:00:00,70,37,56,89,80,0.8,0.904,73,49,5,59,40,42,4,5,70
2014-10-02,20:00:00,91,50,54,131,87,1.1,0.904,85,50,2,59,37,42,4,5,91
2014-10-02,21:00:00,98,73,54,140,94,1.5,0.922,93,51,2,59,32,42,3,5,98
2014-10-02,22:00:00,122,92,55,177,103,1.8,0.957,89,53,2,59,26,42,3,5,0
2014-10-02,23:00:00,122,92,56,177,110,1.8,0.991,89,54,2,59,20,42,3,5,122
2014-10-03,00:00:00,144,110,58,145,113,1.4,1.013,75,55,2,59,12,42,2,5,144
2014-10-03,01:00:00,134,102,59,130,115,1.3,1.035,70,56,2,59,6,42,2,5,134
2014-10-03,02:00:00,128,97,61,121,115,1.4,1.061,65,57,2,59,2,42,2,5,128
2014-10-03,03:00:00,114,86,62,125,116,1.4,1.083,61,57,2,59,2,42,2,5,114
2014-10-03,04:00:00,114,86,63,125,117,1.4,1.096,61,58,2,59,2,42,2,5,114
2014-10-03,05:00:00,114,86,65,125,117,1.4,1.117,61,58,2,59,2,42,2,5,114
2014-10-03,06:00:00,109,82,66,117,117,2,1.158,55,59,2,59,2,42,6,5,109
2014-10-03,07:00:00,92,68,66,81,115,1.8,1.187,51,59,2,59,2,42,8,6,92
2014-10-03,08:00:00,99,74,66,108,116,2.1,1.225,51,59,2,59,2,42,10,6,99
2014-10-03,09:00:00,94,70,67,81,116,1.6,1.25,47,59,2,59,2,42,8,6,94
2014-10-03,10:00:00,94,70,67,81,115,1.6,1.279,47,59,2,59,2,42,8,6,94
2014-10-03,11:00:00,89,66,68,101,114,1.7,1.308,50,59,2,59,2,42,9,6,89
2014-10-03,12:00:00,89,66,68,101,116,1.7,1.333,50,59,2,59,2,42,9,6,89
2014-10-03,13:00:00,89,66,68,101,115,1.7,1.363,50,59,2,59,2,42,9,6,89
2014-10-03,15:00:00,196,147,76,0,118,2.4,1.488,80,63,12,59,4,42,8,6,196
2014-10-03,16:00:00,196,147,81,0,118,2.4,1.567,80,65,12,50,5,42,8,6,196
2014-10-03,17:00:00,229,179,88,218,124,2.5,1.65,73,66,46,46,11,42,7,6,229
2014-10-03,18:00:00,232,182,93,211,130,2.6,1.725,85,67,24,46,14,40,5,6,232
2014-10-03,19:00:00,230,180,99,219,136,2.6,1.8,91,68,6,46,14,37,5,6,230
2014-10-03,20:00:00,230,180,104,219,140,2.6,1.863,91,68,6,46,15,32,5,6,230
2014-10-03,21:00:00,214,164,108,201,143,3,1.925,86,68,2,46,15,26,6,6,214
2014-10-03,22:00:00,195,146,110,176,143,3.2,1.983,82,68,2,46,14,20,7,6,0
2014-10-03,23:00:00,183,138,112,162,142,3.2,2.042,77,67,2,46,13,15,6,6,183
2014-10-04,00:00:00,183,138,113,162,143,3.2,2.117,77,67,2,46,11,15,6,6,183
2014-10-04,01:00:00,119,90,113,0,143,2,2.146,48,66,34,46,10,15,6,6,119
2014-10-04,02:00:00,97,72,112,0,144,1.8,2.163,34,65,44,46,12,15,7,7,97
2014-10-04,03:00:00,103,77,112,0,145,1.2,2.154,30,64,49,49,18,18,6,7,103
2014-10-04,04:00:00,94,70,111,0,146,1,2.138,25,62,63,63,25,25,7,7,94
2014-10-04,05:00:00,84,62,110,0,148,0.8,2.113,20,60,83,83,35,35,8,7,84
2014-10-04,06:00:00,72,52,109,0,150,0.9,2.067,24,59,74,83,44,44,6,7,72
2014-10-04,07:00:00,64,46,108,0,154,1,2.033,28,58,68,83,52,52,7,7,64
2014-10-04,08:00:00,64,46,107,0,158,1,1.988,41,58,50,83,58,58,6,7,64
2014-10-04,09:00:00,68,49,106,0,163,0.9,1.958,46,58,43,83,59,59,5,7,68
2014-10-04,10:00:00,72,52,105,0,170,0.9,1.929,43,58,49,83,60,60,5,7,72
2014-10-04,13:00:00,112,84,105,0,181,0.9,1.837,46,56,43,83,54,60,4,6,112
2014-10-04,14:00:00,117,88,105,0,182,0.9,1.792,43,55,49,83,51,60,4,6,117
2014-10-04,17:00:00,118,89,96,99,156,1,1.612,46,51,45,83,47,60,4,6,118
2014-10-04,18:00:00,118,89,92,99,146,1,1.546,46,50,45,83,47,60,4,6,118
2014-10-04,19:00:00,130,99,89,0,139,1,1.479,74,49,6,83,41,60,3,5,130
2014-10-04,20:00:00,123,93,85,103,127,1.1,1.417,80,49,2,83,35,60,3,5,123
2014-10-04,21:00:00,109,82,82,122,119,1,1.333,72,48,3,83,30,60,3,5,109
2014-10-04,22:00:00,109,82,79,122,114,1,1.242,72,48,3,83,24,60,3,5,109
2014-10-05,03:00:00,85,63,71,0,102,1.6,1.088,49,48,2,83,3,60,2,4,85
2014-10-05,05:00:00,74,54,70,62,98,1.6,1.146,46,50,2,74,3,60,2,4,74
2014-10-05,06:00:00,74,54,71,62,94,1.6,1.175,46,51,2,68,3,60,2,4,74
2014-10-05,07:00:00,69,50,71,58,91,1.3,1.188,52,52,2,52,3,60,2,4,69
2014-10-05,08:00:00,60,43,71,50,87,1.1,1.192,45,52,8,52,3,60,2,3,60
2014-10-05,09:00:00,46,32,70,0,87,0,1.204,0,52,0,52,3,60,0,3,46
2014-10-05,10:00:00,46,32,69,0,87,0,1.218,0,53,0,52,3,60,0,3,46
2014-10-05,11:00:00,22,11,67,0,87,0.2,1.182,16,52,70,70,14,59,3,3,22
2014-10-05,12:00:00,24,3,64,5,82,0.3,1.15,14,50,76,76,27,54,4,3,24
2014-10-05,13:00:00,0,0,64,0,82,0,1.162,0,51,0,76,32,51,0,3,0
2014-10-05,14:00:00,0,0,63,0,82,0,1.175,0,51,0,76,39,48,0,3,0
2014-10-05,15:00:00,0,0,61,0,80,0,1.184,0,51,0,76,51,51,0,3,0
2014-10-05,16:00:00,25,11,58,0,78,0.3,1.147,17,50,80,80,75,75,2,3,25
2014-10-05,17:00:00,0,0,56,0,76,0,1.156,0,50,0,80,75,75,0,3,0
2014-10-05,18:00:00,0,0,54,0,73,0,1.165,0,50,0,80,75,75,0,3,0
2014-10-05,19:00:00,27,10,50,27,68,0.4,1.129,46,49,49,80,68,75,3,3,27
2014-10-05,20:00:00,0,0,47,0,64,0,1.131,0,47,0,80,65,75,0,3,0
2014-10-05,21:00:00,53,24,44,56,55,0.9,1.125,91,48,3,80,44,75,3,3,53
2014-10-05,23:00:00,0,0,40,0,46,0,1.107,0,45,0,80,44,75,0,3,0
2014-10-06,00:00:00,64,26,38,78,50,1,1.071,83,47,2,80,18,75,3,3,64
2014-10-06,01:00:00,0,0,36,0,50,0,1.038,0,46,0,80,18,75,0,2,0
2014-10-06,02:00:00,0,0,33,0,50,0,0.992,0,46,0,80,18,75,0,2,0
2014-10-06,03:00:00,56,36,32,61,51,0.9,0.933,78,48,2,80,2,75,2,3,56
2014-10-06,04:00:00,0,0,30,0,51,0,0.873,0,49,0,80,2,75,0,3,0
2014-10-06,05:00:00,0,0,28,0,50,0,0.8,0,49,0,80,2,75,0,3,0
2014-10-06,06:00:00,32,22,25,29,46,0.5,0.69,63,51,2,80,2,75,2,3,32
2014-10-06,07:00:00,0,0,23,0,44,0,0.622,0,50,0,80,2,75,0,3,0
2014-10-06,08:00:00,0,0,21,0,43,0,0.563,0,51,0,80,2,75,0,3,0
2014-10-06,10:00:00,28,14,17,28,41,0.5,0.556,52,51,8,80,4,75,2,3,28
2014-10-06,11:00:00,0,0,18,0,41,0,0.6,0,56,0,80,5,75,0,3,0
2014-10-06,12:00:00,33,23,21,29,44,0.4,0.613,32,58,52,80,21,75,2,2,33
2014-10-06,13:00:00,0,0,21,0,44,0,0.613,0,58,0,80,21,75,0,2,0
2014-10-06,14:00:00,0,0,21,0,44,0,0.613,0,58,0,80,30,75,0,2,0
2014-10-06,15:00:00,35,23,21,35,43,0.4,0.589,39,56,82,82,47,75,2,2,35
2014-10-06,16:00:00,0,0,22,0,43,0,0.625,0,61,0,82,47,75,0,2,0
2014-10-06,17:00:00,0,0,22,0,43,0,0.625,0,61,0,82,47,75,0,2,0
2014-10-06,18:00:00,66,19,22,81,47,0.4,0.6,41,58,95,95,76,76,3,2,66
2014-10-06,19:00:00,0,0,23,0,50,0,0.625,0,60,0,95,76,76,0,2,0
2014-10-06,20:00:00,0,0,23,0,50,0,0.625,0,60,0,95,89,89,0,2,0
2014-10-06,21:00:00,94,70,29,105,56,0.7,0.6,70,57,59,95,79,89,11,3,94
2014-10-06,23:00:00,0,0,29,0,56,0,0.6,0,57,0,95,77,89,0,3,0
2014-10-07,00:00:00,118,89,37,128,62,0.9,0.588,110,61,6,95,53,89,8,4,118
2014-10-07,01:00:00,0,0,37,0,62,0,0.588,0,61,0,95,53,89,0,4,0
2014-10-07,02:00:00,0,0,37,0,62,0,0.588,0,61,0,95,33,89,0,4,0
2014-10-07,03:00:00,137,104,46,166,75,1,0.6,99,63,2,95,22,89,6,5,137
2014-10-07,04:00:00,0,0,46,0,75,0,0.6,0,63,0,95,22,89,0,5,0
2014-10-07,05:00:00,0,0,46,0,75,0,0.6,0,63,0,95,4,89,0,5,0
2014-10-07,06:00:00,123,93,54,166,92,1.2,0.688,78,65,2,95,3,89,3,5,123
2014-10-07,07:00:00,0,0,54,0,92,0,0.688,0,65,0,95,3,89,0,5,0
2014-10-07,08:00:00,0,0,54,0,92,0,0.688,0,65,0,95,2,89,0,5,0
2014-10-07,09:00:00,0,0,54,0,92,0,0.688,0,65,0,95,2,89,0,5,0
2014-10-07,10:00:00,78,57,60,98,101,0.9,0.738,64,67,13,95,6,89,9,6,78
2014-10-07,11:00:00,78,57,59,98,101,0.9,0.756,64,66,13,95,9,89,9,6,78
2014-10-07,12:00:00,130,99,68,160,115,1.3,0.856,98,74,19,95,12,89,19,8,130
2014-10-07,13:00:00,153,117,73,174,121,1.3,0.9,98,76,39,95,17,89,24,9,153
2014-10-07,15:00:00,211,161,91,220,145,1.3,1.018,98,83,84,95,39,89,27,13,211
2014-10-07,16:00:00,229,179,98,237,152,1.4,1.05,101,84,107,107,49,89,28,14,229
2014-10-07,17:00:00,232,182,105,220,158,1.2,1.062,67,83,145,145,61,89,26,15,232
2014-10-07,18:00:00,230,180,117,198,167,1.2,1.123,69,85,134,145,76,89,23,17,230
2014-10-07,19:00:00,235,185,122,226,171,1.5,1.15,97,86,89,145,86,89,18,17,235
2014-10-07,20:00:00,262,212,128,260,177,1.9,1.2,153,90,29,145,87,87,15,17,262
2014-10-07,21:00:00,273,223,138,290,189,2.5,1.32,179,98,2,145,82,87,10,17,273
2014-10-07,22:00:00,293,243,145,309,197,2.9,1.419,185,103,2,145,74,87,9,16,0
2014-10-07,23:00:00,309,259,151,343,205,3,1.512,190,108,2,145,64,87,8,16,309
2014-10-08,00:00:00,318,268,162,0,210,3.1,1.641,178,112,2,145,51,87,7,16,318
2014-10-08,01:00:00,340,290,169,376,220,2.9,1.711,166,115,2,145,33,87,7,15,340
2014-10-08,02:00:00,319,269,174,336,226,2.4,1.747,144,117,2,145,16,87,7,15,319
2014-10-08,03:00:00,294,244,182,281,233,1.8,1.789,124,118,2,145,5,87,6,15,294
2014-10-08,04:00:00,286,236,184,282,235,1.7,1.785,122,118,2,145,2,87,6,14,286
2014-10-08,05:00:00,280,230,187,277,237,1.7,1.781,115,118,2,145,2,87,5,14,0
2014-10-08,06:00:00,266,216,192,242,241,1.5,1.795,112,120,2,145,2,87,5,14,266
2014-10-08,07:00:00,257,207,193,229,241,1.4,1.777,100,119,2,145,2,87,5,14,257
2014-10-08,08:00:00,253,203,194,243,241,1.4,1.761,89,117,2,145,2,87,4,13,253
2014-10-08,12:00:00,299,249,215,284,259,2.3,1.922,122,121,12,145,6,87,16,13,299
2014-10-08,13:00:00,309,259,221,276,264,2.1,1.957,120,122,21,145,9,87,15,13,309
2014-10-08,14:00:00,320,270,227,293,268,2.2,1.996,127,124,36,145,14,87,22,13,320
2014-10-08,15:00:00,358,308,233,330,273,2.3,2.039,107,124,73,145,24,87,27,13,358
2014-10-08,16:00:00,390,340,240,413,281,2.6,2.091,137,126,47,145,31,87,21,13,390
2014-10-08,17:00:00,408,362,248,401,289,2.6,2.152,133,129,41,134,32,87,15,12,408
2014-10-08,18:00:00,412,367,256,375,298,2.7,2.217,154,132,16,89,33,87,9,12,412
2014-10-08,19:00:00,415,372,264,382,305,2.9,2.278,174,136,2,73,31,87,7,11,415
2014-10-08,20:00:00,416,374,271,395,311,3.1,2.33,171,137,2,73,30,82,6,11,416
2014-10-08,21:00:00,419,378,278,400,316,3.2,2.361,170,136,2,73,27,74,5,10,419
2014-10-08,22:00:00,423,384,284,403,320,3.4,2.383,168,135,2,73,23,64,5,10,0
2014-10-08,23:00:00,416,373,289,375,321,3.4,2.4,157,134,2,73,14,51,4,10,416
2014-10-09,00:00:00,408,362,293,0,321,3.3,2.409,142,132,2,73,9,33,4,10,408
2014-10-09,01:00:00,401,351,296,0,319,3.1,2.417,134,131,2,73,4,33,4,10,401
2014-10-09,02:00:00,388,338,299,0,318,3.1,2.448,127,130,2,73,2,33,3,10,388
2014-10-09,04:00:00,362,312,306,0,322,2.6,2.548,104,129,2,73,2,33,3,9,362
2014-10-09,05:00:00,362,312,309,0,325,2.6,2.587,104,129,2,73,2,33,3,9,362
2014-10-09,06:00:00,362,312,314,0,330,2.6,2.635,104,129,2,73,2,33,3,9,362
2014-10-09,07:00:00,342,292,317,293,334,2.5,2.683,93,128,2,73,2,33,3,9,342
2014-10-09,08:00:00,330,280,321,319,339,2.4,2.726,94,129,2,73,2,33,3,9,330
2014-10-09,09:00:00,334,284,319,362,340,2.4,2.713,101,127,2,73,2,33,5,9,334
2014-10-09,10:00:00,364,314,323,322,346,2.2,2.717,106,128,4,73,2,33,9,9,0
2014-10-09,12:00:00,387,337,330,347,355,2,2.692,95,127,38,73,8,33,12,9,387
2014-10-09,13:00:00,383,333,333,348,360,1.9,2.683,75,125,77,77,18,33,15,9,383
2014-10-09,14:00:00,408,361,337,366,364,1.9,2.671,79,123,102,102,30,33,17,8,408
2014-10-09,15:00:00,50,0,338,0,367,2.1,2.663,100,123,99,102,42,42,16,8,0
2014-10-09,17:00:00,429,393,340,399,363,2.1,2.643,104,121,100,102,62,62,11,7,429
2014-10-09,18:00:00,435,402,341,0,362,2.1,2.617,123,120,74,102,72,72,7,7,435
2014-10-09,19:00:00,440,410,343,0,361,2.3,2.591,156,119,34,102,75,75,5,7,440
2014-10-09,20:00:00,444,415,345,416,363,2.7,2.574,189,120,2,102,70,75,4,7,444
2014-10-09,21:00:00,448,422,347,0,359,3.1,2.57,194,121,2,102,59,75,3,7,448
2014-10-09,22:00:00,453,429,349,0,355,3.6,2.578,194,122,2,102,45,75,3,7,0
2014-10-09,23:00:00,434,400,350,0,352,3.3,2.574,158,122,2,102,31,75,3,7,0
2014-10-10,00:00:00,433,399,352,0,352,2.7,2.548,152,123,2,102,27,75,3,7,0
2014-10-10,01:00:00,431,396,354,0,352,2.8,2.535,150,123,2,102,15,75,3,7,0
2014-10-10,02:00:00,418,377,356,0,352,2.6,2.513,139,124,2,102,6,75,2,6,0
2014-10-10,03:00:00,408,362,357,0,352,2.2,2.47,117,124,2,102,2,75,2,6,408
2014-10-10,04:00:00,395,345,359,0,352,2.2,2.452,109,124,2,102,2,75,2,6,395
2014-10-10,05:00:00,372,322,359,0,352,1.9,2.422,93,123,2,102,2,75,2,6,372
2014-10-10,07:00:00,366,316,363,0,360,2,2.391,90,124,2,102,2,75,2,6,366
2014-10-10,08:00:00,341,291,363,0,366,2.1,2.377,88,124,2,102,2,75,2,6,341
2014-10-10,09:00:00,340,290,363,0,366,2,2.359,92,123,2,102,2,75,2,6,340
2014-10-10,10:00:00,373,323,364,0,375,2.1,2.355,98,123,4,102,2,75,7,6,373
2014-10-10,11:00:00,393,343,365,344,370,2.2,2.359,113,123,9,102,3,75,17,6,393
2014-10-10,12:00:00,401,351,366,365,373,2.5,2.382,127,125,22,102,6,75,23,7,401
2014-10-10,14:00:00,369,319,364,0,381,2.4,2.427,75,125,137,137,33,75,46,9,369
2014-10-10,15:00:00,331,281,360,0,381,2.1,2.427,59,123,170,170,54,75,46,11,331
2014-10-10,16:00:00,312,262,356,0,381,2,2.409,60,121,173,173,76,76,38,12,312
2014-10-10,17:00:00,300,250,350,0,375,1.9,2.4,57,119,180,180,98,98,36,13,300
2014-10-10,18:00:00,301,251,343,0,375,2,2.396,74,116,155,180,117,117,34,14,301
2014-10-10,19:00:00,322,272,337,0,375,2.3,2.396,85,113,112,180,130,130,27,15,322
2014-10-10,20:00:00,354,304,332,0,355,2.7,2.396,161,112,17,180,129,130,16,16,354
2014-10-10,21:00:00,381,331,328,0,355,2.6,2.374,163,111,9,180,119,130,15,16,381
2014-10-10,22:00:00,368,318,324,0,355,2.2,2.313,109,107,59,180,109,130,15,17,0
2014-10-10,23:00:00,368,318,320,0,355,2.2,2.265,109,105,59,180,96,130,15,17,368
2014-10-11,00:00:00,368,318,317,0,355,2.2,2.243,109,103,59,180,81,130,15,18,368
2014-10-11,01:00:00,368,318,313,0,355,2.2,2.217,109,101,59,180,66,130,15,18,368
2014-10-11,02:00:00,368,318,311,0,355,2.2,2.2,109,100,59,180,54,130,15,19,368
2014-10-11,03:00:00,345,295,308,0,355,2.4,2.209,96,99,28,180,44,130,9,19,345
2014-10-11,04:00:00,361,311,306,0,355,2.2,2.209,99,99,2,180,42,130,4,19,361
2014-10-11,05:00:00,320,270,304,0,355,2.2,2.222,92,99,2,180,41,130,3,19,320
2014-10-11,07:00:00,270,220,300,0,355,2.3,2.235,78,98,8,180,31,130,4,19,270
2014-10-11,08:00:00,252,202,296,217,309,2.3,2.243,74,98,8,180,24,130,4,19,252
2014-10-11,09:00:00,227,177,289,0,309,2.2,2.25,70,96,18,180,16,130,5,19,227
2014-10-11,10:00:00,252,202,284,0,309,1.9,2.242,60,95,37,180,13,130,6,19,252
2014-10-11,11:00:00,312,262,280,0,291,1.8,2.225,65,93,36,180,14,130,8,18,312
2014-10-11,12:00:00,305,255,276,0,217,1.7,2.192,58,90,61,180,22,130,12,18,305
2014-10-11,13:00:00,308,258,273,0,217,1.6,2.158,59,88,76,180,31,130,14,17,308
2014-10-11,15:00:00,291,241,268,0,217,1.6,2.104,60,88,102,180,54,130,16,14,291
2014-10-11,17:00:00,308,258,269,0,217,1.8,2.104,85,90,64,155,67,130,10,12,308
2014-10-11,18:00:00,226,176,265,0,217,1.3,2.074,72,90,34,112,66,130,11,11,226
2014-10-11,19:00:00,51,28,255,51,134,0.5,1.996,43,88,41,102,67,129,12,11,51
2014-10-11,20:00:00,48,17,242,48,105,0.4,1.896,44,83,38,102,64,119,8,10,48
2014-10-11,21:00:00,31,9,228,31,87,0.4,1.8,41,78,46,102,59,109,6,10,31
2014-10-11,22:00:00,19,9,215,14,72,0.4,1.722,37,75,50,102,54,96,6,9,19
2014-10-11,23:00:00,18,8,201,14,63,0.3,1.639,32,71,56,102,47,81,6,9,18
2014-10-12,00:00:00,25,9,188,25,57,0.3,1.557,29,68,63,102,49,67,4,9,25
2014-10-12,01:00:00,19,6,174,10,51,0.3,1.474,28,64,59,102,48,67,4,8,19
2014-10-12,02:00:00,17,4,161,5,46,0.3,1.391,30,61,52,102,51,67,5,8,17
2014-10-12,03:00:00,16,4,148,5,42,0.3,1.3,30,58,50,102,52,67,9,8,16
2014-10-12,04:00:00,17,8,135,0,42,0.3,1.217,33,55,39,102,52,67,13,8,17
2014-10-12,05:00:00,21,8,123,19,40,0.3,1.135,41,53,26,102,49,67,9,8,21
2014-10-12,06:00:00,19,5,114,8,37,0.3,1.052,38,51,27,102,47,67,2,8,19
2014-10-12,07:00:00,16,10,104,0,37,0.2,0.961,32,49,27,102,43,67,2,8,16
2014-10-12,09:00:00,16,3,92,16,21,0.2,0.809,26,46,37,102,37,67,2,8,16
2014-10-12,10:00:00,18,12,83,18,20,0.3,0.736,28,44,37,102,35,67,2,8,18
2014-10-12,11:00:00,18,10,72,18,20,0.3,0.668,24,42,42,102,34,67,2,8,18
2014-10-12,12:00:00,17,9,61,11,20,0.3,0.605,17,40,52,102,35,67,2,7,17
2014-10-12,13:00:00,20,6,49,0,20,0.2,0.541,9,38,64,102,41,67,2,7,20
2014-10-12,14:00:00,20,12,39,0,20,0.2,0.477,12,36,63,102,46,67,2,6,20
2014-10-12,15:00:00,19,13,28,0,20,0.2,0.414,16,34,59,64,51,67,2,6,19
2014-10-12,16:00:00,22,5,27,22,20,0.2,0.404,17,33,57,64,51,67,2,5,22
2014-10-12,17:00:00,0,0,17,0,20,0,0.341,0,31,0,64,53,67,0,5,0
2014-10-12,18:00:00,0,0,9,0,20,0,0.295,0,29,0,64,56,67,0,5,0
2014-10-12,19:00:00,24,12,9,24,18,0.3,0.286,44,29,27,64,54,64,2,4,24
2014-10-12,20:00:00,25,10,8,25,17,0.3,0.281,48,29,23,64,49,59,2,4,25
2014-10-12,21:00:00,22,11,8,22,16,0.3,0.276,40,29,29,64,43,56,2,4,22
2014-10-12,22:00:00,18,8,8,18,16,0.3,0.271,36,29,33,64,38,56,2,4,0
2014-10-12,23:00:00,18,5,8,17,16,0.3,0.271,35,29,32,64,34,56,2,4,18
2014-10-13,00:00:00,16,3,8,12,16,0.2,0.267,32,29,32,64,29,56,2,3,16
2014-10-13,01:00:00,15,6,8,12,16,0.2,0.262,30,29,34,64,30,56,2,3,15
2014-10-13,02:00:00,13,7,8,12,16,0.2,0.257,25,29,38,64,31,56,2,3,13
2014-10-13,03:00:00,13,4,8,11,17,0.2,0.252,26,29,36,64,32,56,2,3,13
2014-10-13,04:00:00,16,3,8,8,16,0.2,0.248,31,29,31,64,33,56,2,2,16
2014-10-13,05:00:00,13,6,8,10,16,0.2,0.243,26,28,36,64,34,56,2,2,13
2014-10-13,06:00:00,14,9,8,0,16,0.2,0.238,18,27,43,64,35,56,2,2,14
2014-10-13,07:00:00,13,8,8,8,16,0.2,0.238,21,27,40,64,36,56,2,2,13
2014-10-13,08:00:00,23,11,8,23,16,0.2,0.236,29,27,33,64,36,56,4,2,23
2014-10-13,09:00:00,28,5,8,28,17,0.3,0.241,28,27,36,64,37,56,6,2,28
2014-10-13,10:00:00,23,8,8,23,17,0.3,0.241,20,27,46,64,38,56,6,2,23
2014-10-13,11:00:00,17,8,8,15,17,0.2,0.236,17,26,54,64,40,56,5,3,17
2014-10-13,12:00:00,19,3,7,17,17,0.2,0.232,16,26,59,64,43,56,5,3,19
2014-10-13,13:00:00,20,8,8,0,17,0.3,0.236,18,27,62,63,47,56,5,3,20
2014-10-13,14:00:00,21,11,7,11,17,0.3,0.241,19,27,67,67,50,56,6,3,21
2014-10-13,15:00:00,22,14,8,0,17,0.3,0.245,22,27,68,68,53,56,6,3,22
2014-10-13,16:00:00,21,12,8,18,17,0.3,0.25,25,28,65,68,57,57,6,3,21
2014-10-13,17:00:00,38,26,9,0,17,0.3,0.252,40,28,50,68,59,59,5,3,38
2014-10-13,18:00:00,34,11,9,34,17,0.4,0.258,58,29,33,68,57,59,4,4,34
2014-10-13,19:00:00,56,12,9,61,19,0.4,0.263,81,31,16,68,53,59,3,4,56
2014-10-13,20:00:00,63,29,10,75,22,0.5,0.271,100,33,11,68,47,59,4,4,63
2014-10-13,21:00:00,65,37,11,80,25,0.6,0.283,109,36,4,68,39,59,5,4,65
2014-10-13,22:00:00,75,48,12,100,29,0.6,0.296,112,39,2,68,31,59,7,4,0
2014-10-13,23:00:00,77,56,14,101,33,0.7,0.312,102,42,2,68,23,59,6,4,77
2014-10-14,00:00:00,84,62,17,108,38,1,0.346,102,45,2,68,15,59,6,4,84
2014-10-14,01:00:00,84,54,19,117,43,0.9,0.375,92,47,2,68,9,59,4,4,84
2014-10-14,02:00:00,78,46,20,106,48,0.8,0.4,81,50,2,68,5,59,4,4,78
2014-10-14,03:00:00,80,48,22,110,53,0.9,0.429,77,52,2,68,3,59,3,5,80
2014-10-14,04:00:00,69,42,24,88,57,0.7,0.45,67,53,2,68,2,59,3,5,69
2014-10-14,05:00:00,64,40,25,77,60,0.6,0.467,61,55,2,68,2,59,3,5,64
2014-10-14,07:00:00,39,23,27,39,61,0.4,0.488,57,58,2,68,2,59,2,5,39
2014-10-14,08:00:00,52,20,27,54,63,0.4,0.496,54,59,2,68,2,59,2,5,52
2014-10-14,09:00:00,56,27,28,62,64,0.5,0.504,55,60,6,68,3,59,4,4,56
2014-10-14,10:00:00,0,0,29,0,66,0,0.513,0,62,0,68,3,59,0,4,0
2014-10-14,11:00:00,62,37,30,74,69,0.6,0.53,59,64,17,68,5,59,8,4,62
2014-10-14,12:00:00,70,49,32,90,73,0.9,0.561,79,66,17,68,7,59,8,5,70
2014-10-14,13:00:00,83,44,34,116,75,0.8,0.583,93,70,34,68,11,59,9,5,83
2014-10-14,14:00:00,82,60,36,104,79,0.6,0.596,81,72,53,68,19,59,9,5,82
2014-10-14,15:00:00,62,36,37,73,79,0.5,0.604,44,73,89,89,31,59,9,5,62
2014-10-14,16:00:00,62,34,38,74,82,0.4,0.609,38,74,96,96,45,59,9,5,62
2014-10-14,17:00:00,64,40,38,78,81,0.4,0.613,43,74,88,96,56,57,10,5,64
2014-10-14,18:00:00,76,51,40,101,84,0.6,0.622,61,74,76,96,59,59,12,6,76
2014-10-14,19:00:00,89,66,43,124,87,0.7,0.635,82,74,62,96,64,64,13,6,89
2014-10-14,20:00:00,102,76,45,143,90,0.8,0.648,105,74,34,96,67,67,15,7,102
2014-10-14,21:00:00,119,90,47,165,94,0.9,0.661,116,75,15,96,64,67,22,7,119
2014-10-14,22:00:00,142,108,49,185,97,1,0.678,122,75,5,96,58,67,32,8,0
2014-10-14,23:00:00,165,125,52,195,102,1,0.691,117,76,4,96,48,67,34,10,165
2014-10-15,00:00:00,190,143,56,209,106,1,0.691,108,76,6,96,36,67,35,11,190
2014-10-15,01:00:00,206,156,60,230,111,1,0.696,93,76,6,96,26,67,31,12,206
2014-10-15,02:00:00,206,156,65,224,116,1,0.704,94,77,2,96,17,67,23,13,206
2014-10-15,03:00:00,212,162,70,220,121,1.1,0.713,93,77,2,96,9,67,15,13,212
2014-10-15,04:00:00,200,150,75,206,126,1.1,0.73,86,78,2,96,5,67,6,14,200
2014-10-15,05:00:00,150,115,78,169,130,1.2,0.757,87,79,2,96,4,67,4,14,150
2014-10-15,06:00:00,152,116,82,166,135,1.1,0.783,88,81,2,96,3,67,5,14,152
2014-10-15,07:00:00,140,107,86,150,140,1,0.809,82,82,2,96,3,67,4,14,140
2014-10-15,08:00:00,129,98,89,158,144,1.2,0.843,83,83,2,96,3,67,6,14,129
2014-10-15,09:00:00,120,91,92,162,149,1.1,0.87,84,84,6,96,3,67,13,14,120
2014-10-15,10:00:00,107,30,89,163,149,0.4,0.85,38,82,44,96,8,67,8,14,107
2014-10-15,11:00:00,103,19,88,156,153,0.3,0.838,18,81,64,96,16,67,5,14,103
2014-10-15,12:00:00,75,4,87,99,153,0.2,0.808,12,78,69,96,24,67,3,14,75
2014-10-15,13:00:00,65,10,85,80,151,0.2,0.783,12,74,72,96,33,67,4,14,65
2014-10-15,14:00:00,69,19,83,88,151,0.3,0.771,14,72,74,96,42,67,4,13,69
2014-10-15,15:00:00,67,14,82,84,151,0.2,0.758,18,71,74,96,51,67,3,13,67
2014-10-15,17:00:00,46,14,80,46,149,0.2,0.742,23,69,69,76,67,67,2,13,46
2014-10-15,18:00:00,51,13,79,52,147,0.2,0.725,28,68,63,74,70,70,2,12,51
2014-10-15,19:00:00,50,9,76,50,144,0.3,0.708,40,66,49,74,68,70,2,12,50
2014-10-15,20:00:00,48,14,74,48,140,0.3,0.687,56,64,29,74,63,70,2,11,48
2014-10-15,21:00:00,37,12,70,37,135,0.3,0.662,50,61,32,74,58,70,2,10,37
2014-10-15,22:00:00,42,14,66,42,129,0.3,0.633,50,58,29,74,52,70,2,9,0
2014-10-15,23:00:00,38,6,61,38,122,0.4,0.608,49,55,27,74,46,70,2,8,38
2014-10-16,00:00:00,51,22,56,51,116,0.6,0.592,78,54,2,74,38,70,2,6,51
2014-10-16,01:00:00,57,17,51,64,109,0.8,0.583,80,53,2,74,29,70,2,5,57
2014-10-16,02:00:00,55,24,45,59,102,0.9,0.579,74,53,2,74,22,70,2,4,55
2014-10-16,03:00:00,61,15,39,71,96,0.9,0.571,74,52,2,74,16,70,2,4,61
2014-10-16,04:00:00,63,23,34,75,90,0.8,0.558,69,51,2,74,12,70,2,4,63
2014-10-16,05:00:00,66,31,30,81,87,1,0.55,64,50,2,74,9,70,2,3,66
2014-10-16,06:00:00,66,25,26,82,83,1,0.546,69,49,2,74,5,70,2,3,66
2014-10-16,07:00:00,69,32,23,88,81,0.9,0.542,74,49,2,74,2,70,3,3,69
2014-10-16,08:00:00,82,33,21,114,79,0.9,0.529,75,49,2,74,2,70,4,3,82
2014-10-16,09:00:00,72,40,18,93,76,0.9,0.521,70,48,6,74,3,70,7,3,72
2014-10-16,10:00:00,60,29,18,70,72,0.6,0.529,53,49,24,74,5,70,11,3,60
2014-10-16,11:00:00,68,26,19,86,69,0.4,0.533,31,49,51,74,11,70,7,3,68
2014-10-16,12:00:00,75,23,20,99,69,0.4,0.542,26,50,65,74,19,70,8,3,75
2014-10-16,16:00:00,86,42,23,121,74,0.4,0.571,34,52,100,100,63,70,15,5,86
2014-10-16,17:00:00,101,61,25,151,78,0.5,0.583,43,53,112,112,76,76,18,5,101
2014-10-16,18:00:00,95,60,27,139,82,0.5,0.596,56,54,92,112,84,84,16,6,95
2014-10-16,19:00:00,98,62,29,145,86,0.6,0.608,84,56,51,112,84,84,15,7,98
2014-10-16,20:00:00,98,53,31,146,90,0.6,0.621,82,57,41,112,81,84,15,7,98
2014-10-16,21:00:00,101,60,33,152,95,0.6,0.633,84,58,28,112,75,84,16,8,101
2014-10-16,22:00:00,102,68,35,153,99,0.7,0.65,89,60,15,112,66,84,18,8,102
2014-10-16,23:00:00,114,79,38,178,105,0.8,0.667,104,62,2,112,55,84,19,9,114
2014-10-17,00:00:00,113,85,41,175,110,1,0.683,102,63,2,112,43,84,13,10,113
2014-10-17,01:00:00,115,87,44,172,115,1.1,0.696,95,64,2,112,29,84,8,10,115
2014-10-17,02:00:00,115,84,46,180,120,1.2,0.708,97,65,2,112,18,84,5,10,115
2014-10-17,03:00:00,120,89,50,189,125,1.2,0.721,101,66,2,112,12,84,4,10,120
2014-10-17,04:00:00,123,93,52,192,130,1.2,0.737,102,67,2,112,7,84,5,10,123
2014-10-17,06:00:00,127,96,58,179,138,1.1,0.746,89,70,2,112,2,84,4,10,127
2014-10-17,07:00:00,120,91,61,160,141,1,0.75,88,70,2,112,2,84,8,11,120
2014-10-17,08:00:00,127,96,63,179,144,1.1,0.758,84,71,2,112,2,84,8,11,127
2014-10-17,09:00:00,114,86,65,162,147,0.9,0.758,81,71,4,112,2,84,12,11,114
2014-10-17,10:00:00,0,0,67,0,150,0,0.765,0,72,0,112,2,84,0,11,0
2014-10-17,11:00:00,120,91,69,168,154,0.8,0.783,68,73,44,112,8,84,20,11,120
2014-10-17,12:00:00,123,93,73,151,156,0.9,0.804,80,76,54,112,16,84,20,12,123
2014-10-17,13:00:00,120,91,75,155,159,0.9,0.826,87,78,61,112,24,84,20,13,120
2014-10-17,14:00:00,147,112,79,199,163,1.2,0.861,125,83,61,112,33,84,19,13,147
2014-10-17,16:00:00,173,131,87,201,172,1,0.917,136,92,69,112,53,84,18,13,173
2014-10-17,17:00:00,165,125,89,207,174,1,0.939,132,96,78,92,63,84,18,13,165
2014-10-17,18:00:00,166,126,92,183,176,1,0.961,151,100,54,78,62,84,16,13,166
2014-10-17,19:00:00,172,130,95,206,179,1.4,0.996,186,104,10,78,58,81,13,13,172
2014-10-17,20:00:00,195,146,99,217,182,1.6,1.039,190,109,2,78,52,75,12,13,195
2014-10-17,21:00:00,201,151,103,257,186,1.9,1.096,183,113,2,78,44,66,10,13,201
2014-10-17,22:00:00,224,174,108,319,193,2.2,1.161,187,117,2,78,37,63,8,12,0
2014-10-17,23:00:00,244,194,113,325,200,2,1.213,185,121,2,78,27,63,10,12,244
2014-10-18,00:00:00,253,203,118,316,206,2,1.257,166,124,2,78,19,63,10,12,253
2014-10-18,01:00:00,239,189,122,277,211,1.8,1.287,154,126,2,78,10,63,8,12,239
2014-10-18,02:00:00,238,188,127,276,215,2,1.322,150,129,2,78,3,63,5,12,238
2014-10-18,03:00:00,235,185,131,268,218,1.8,1.348,146,131,2,78,2,63,5,12,235
2014-10-18,04:00:00,232,182,135,272,222,1.9,1.378,139,132,2,78,2,63,4,12,232
2014-10-18,05:00:00,220,170,138,253,224,1.9,1.413,127,133,2,78,2,63,4,12,220
2014-10-18,06:00:00,203,153,141,217,226,1.7,1.439,126,135,2,78,2,63,4,12,203
2014-10-18,07:00:00,169,128,142,159,226,1.2,1.448,101,136,2,78,2,63,3,12,169
2014-10-18,08:00:00,149,114,143,144,224,0.9,1.439,88,136,2,78,2,63,5,11,149
2014-10-18,09:00:00,149,114,144,162,224,0.9,1.439,86,136,5,78,2,63,6,11,149
2014-10-18,10:00:00,153,117,143,191,223,0.9,1.417,87,134,15,78,4,63,10,11,153
2014-10-18,11:00:00,168,127,145,195,224,1,1.425,93,135,34,78,8,63,14,11,168
2014-10-18,12:00:00,212,162,147,247,228,1.7,1.458,103,136,70,78,17,63,43,12,212
2014-10-18,14:00:00,278,228,157,306,238,2.5,1.571,119,137,130,130,44,63,67,16,278
2014-10-18,15:00:00,289,239,161,337,243,2.9,1.646,136,137,140,140,62,63,66,18,289
2014-10-18,16:00:00,287,237,166,357,249,3.4,1.746,120,136,167,167,82,82,71,20,287
2014-10-18,17:00:00,309,259,171,363,256,3.6,1.854,114,136,160,167,102,102,63,22,309
2014-10-18,18:00:00,301,251,177,336,262,3,1.937,128,135,123,167,115,115,39,23,301
2014-10-18,19:00:00,312,262,182,338,268,2.9,2,160,134,64,167,119,119,24,23,312
2014-10-18,20:00:00,321,271,187,354,273,3.4,2.075,218,135,8,167,111,119,15,23,321
2014-10-18,21:00:00,386,336,195,434,281,4,2.162,232,137,2,167,99,119,11,23,386
2014-10-18,22:00:00,386,336,202,454,286,4.3,2.25,232,139,2,167,83,119,10,23,386
2014-10-18,23:00:00,104,0,202,0,285,4.6,2.358,234,141,2,167,66,119,9,23,0
2014-10-19,00:00:00,379,0,202,483,292,4.5,2.463,218,143,2,167,45,119,10,23,0
2014-10-19,01:00:00,357,0,203,465,300,4.3,2.567,204,145,2,167,26,119,11,24,0
2014-10-19,02:00:00,342,0,203,453,308,4,2.65,202,147,2,167,11,119,11,24,0
2014-10-19,03:00:00,365,0,204,472,317,4.1,2.746,194,149,2,167,3,119,10,24,0
2014-10-19,04:00:00,387,0,206,489,326,3.9,2.829,172,151,2,167,2,119,9,24,0
2014-10-19,05:00:00,432,398,218,449,335,3.6,2.9,153,152,2,167,2,119,8,24,432
2014-10-19,06:00:00,420,380,231,407,343,3.1,2.958,126,152,2,167,2,119,7,25,420
2014-10-19,07:00:00,412,367,244,396,353,3,3.033,114,152,2,167,2,119,7,25,412
2014-10-19,08:00:00,400,350,257,380,363,2.7,3.108,109,153,2,167,2,119,7,25,0
2014-10-19,09:00:00,395,345,270,395,373,2.7,3.183,106,154,2,167,2,119,7,25,395
2014-10-19,11:00:00,426,388,299,481,397,3,3.358,154,159,2,167,2,119,12,25,426
2014-10-19,13:00:00,276,226,309,269,401,1.4,3.346,84,159,58,167,11,119,34,23,276
2014-10-19,15:00:00,248,198,307,203,393,1.1,3.221,60,153,101,167,33,119,20,19,248
2014-10-19,16:00:00,222,172,303,0,395,1,3.121,56,151,109,160,47,119,15,17,222
2014-10-19,17:00:00,211,161,298,0,396,1,3.013,62,149,104,123,59,119,13,15,211
2014-10-19,18:00:00,211,161,293,169,388,1.1,2.933,78,146,77,109,69,119,9,13,211
2014-10-19,19:00:00,225,175,288,185,381,1.3,2.867,92,144,49,109,75,111,7,13,225
2014-10-19,20:00:00,242,192,284,214,374,1.4,2.783,126,140,24,109,76,99,6,12,242
2014-10-19,21:00:00,244,194,276,0,371,1.1,2.663,80,133,52,109,75,83,4,12,244
2014-10-19,22:00:00,228,178,267,0,367,1.1,2.529,75,127,39,109,69,76,4,12,228
2014-10-20,00:00:00,210,160,257,0,361,1,2.233,67,114,32,109,51,76,5,11,210
2014-10-20,01:00:00,219,169,252,0,354,1,2.096,60,108,31,109,42,76,4,11,219
2014-10-20,02:00:00,224,174,249,0,348,1,1.971,72,103,12,109,33,76,3,11,224
2014-10-20,03:00:00,225,175,246,0,340,1,1.842,77,98,5,109,28,76,2,10,225
2014-10-20,05:00:00,225,175,233,0,320,1.2,1.621,79,91,2,109,19,76,2,10,225
2014-10-20,06:00:00,233,183,225,0,313,1.4,1.55,77,89,2,109,14,76,2,10,233
2014-10-20,07:00:00,231,181,217,184,295,1.6,1.492,69,87,2,109,11,76,2,9,231
2014-10-20,08:00:00,237,187,210,210,281,1.7,1.45,70,85,2,109,7,76,2,9,237
2014-10-20,10:00:00,287,237,199,255,255,1.8,1.362,97,83,3,109,3,76,4,9,287
2014-10-20,11:00:00,319,269,194,0,234,1.5,1.3,95,80,28,109,5,76,7,8,319
2014-10-20,16:00:00,306,256,197,0,212,1.5,1.309,80,81,63,104,30,76,3,4,306
2014-10-20,18:00:00,0,0,211,0,231,0,1.378,0,86,0,63,40,76,0,4,0
2014-10-20,20:00:00,307,257,218,0,243,1.8,1.446,84,86,34,63,37,75,4,3,307
2014-10-20,21:00:00,298,248,220,0,243,1.7,1.471,68,85,33,63,38,69,6,4,298
2014-10-20,22:00:00,219,169,220,0,243,1.3,1.479,66,85,26,63,36,60,11,4,0
2014-10-20,23:00:00,107,80,216,0,243,0.8,1.471,50,84,30,63,35,51,10,4,107
2014-10-21,01:00:00,63,45,207,0,214,0.7,1.446,48,83,22,63,26,38,9,4,63
2014-10-21,02:00:00,55,37,201,59,192,0.5,1.425,50,82,20,63,25,38,8,5,55
2014-10-21,03:00:00,48,28,195,48,174,0.5,1.404,50,81,19,63,26,38,10,5,48
2014-10-21,04:00:00,57,40,190,0,174,0.9,1.4,43,79,27,63,25,38,21,6,57
2014-10-21,05:00:00,59,32,184,68,162,0.9,1.388,42,78,26,63,24,38,20,6,59
2014-10-21,06:00:00,66,29,177,82,154,1,1.371,54,77,15,63,23,38,26,7,66
2014-10-21,07:00:00,66,29,171,82,144,1,1.346,54,76,15,63,21,38,26,8,66
2014-10-21,08:00:00,85,30,165,119,135,1.3,1.329,70,76,6,63,19,38,34,10,85
2014-10-21,09:00:00,79,35,158,107,119,1.2,1.3,68,75,6,63,17,38,31,11,79
2014-10-21,10:00:00,78,35,149,106,104,1.3,1.279,67,74,10,63,16,38,31,12,78
2014-10-21,11:00:00,81,25,139,111,105,1.2,1.267,70,73,10,63,14,38,29,13,81
2014-10-21,12:00:00,86,32,129,122,88,1.3,1.25,66,71,16,63,13,38,29,14,86
2014-10-21,14:00:00,68,34,107,85,89,0.9,1.192,48,66,38,63,16,38,21,16,68
2014-10-21,15:00:00,68,34,97,85,89,0.9,1.162,48,64,38,63,19,38,21,16,68
2014-10-21,16:00:00,68,35,87,86,89,1,1.142,53,63,36,49,23,38,20,17,68
2014-10-21,17:00:00,68,23,78,86,89,1,1.117,55,62,39,39,27,38,22,18,68
2014-10-21,18:00:00,74,38,70,97,89,1.3,1.092,73,60,17,39,28,38,20,18,74
2014-10-21,19:00:00,74,46,61,97,90,1.7,1.079,88,59,6,39,27,38,23,19,74
2014-10-21,21:00:00,92,61,45,133,93,2.1,1.104,95,61,2,39,22,36,20,21,92
2014-10-21,23:00:00,109,82,41,144,98,1.6,1.167,92,64,2,39,13,29,22,22,109
2014-10-22,00:00:00,86,60,41,122,100,0.8,1.171,79,65,2,39,9,28,20,22,86
2014-10-22,01:00:00,69,50,41,87,100,0.6,1.167,76,66,2,39,4,28,15,23,69
2014-10-22,02:00:00,68,46,42,86,101,0.8,1.179,72,67,2,39,3,28,14,23,68
2014-10-22,03:00:00,69,50,43,84,103,0.8,1.192,74,68,2,39,2,28,13,23,69
2014-10-22,04:00:00,76,47,43,102,103,0.8,1.188,76,70,2,39,2,28,10,22,76
2014-10-22,05:00:00,120,0,43,190,108,1.6,1.217,71,71,2,39,2,28,9,22,0
2014-10-22,06:00:00,129,0,44,207,113,1.8,1.25,74,72,2,39,2,28,9,21,0
2014-10-22,07:00:00,122,0,45,194,117,1.8,1.283,66,72,2,39,2,28,8,21,0
2014-10-22,08:00:00,118,0,45,185,120,1.7,1.3,65,72,2,39,2,28,9,19,0
2014-10-22,09:00:00,122,83,48,194,124,1.6,1.317,67,72,2,39,2,28,9,19,122
2014-10-22,10:00:00,121,82,50,191,127,1.6,1.329,70,72,2,39,2,28,10,18,121
2014-10-22,13:00:00,129,98,59,195,139,1.3,1.371,86,74,2,39,2,28,14,16,129
2014-10-22,14:00:00,132,100,63,172,143,1.1,1.379,87,76,4,39,2,28,15,16,132
2014-10-22,15:00:00,114,86,65,149,145,0.9,1.379,74,77,9,39,3,28,15,15,114
2014-10-22,16:00:00,115,87,68,142,148,0.8,1.371,68,78,14,39,5,28,13,15,115
2014-10-22,17:00:00,122,92,71,141,150,0.7,1.358,73,78,11,17,6,28,11,15,122
2014-10-22,18:00:00,113,85,74,123,151,0.8,1.338,79,79,7,14,6,27,10,14,113
2014-10-22,19:00:00,129,98,76,154,154,1.1,1.313,99,79,2,14,6,26,12,14,129
2014-10-22,20:00:00,158,120,80,174,156,1.3,1.283,103,79,2,14,6,22,14,13,158
2014-10-22,21:00:00,158,120,83,193,158,1.5,1.258,96,79,2,14,6,18,13,13,158
2014-10-22,22:00:00,158,120,85,190,160,1.6,1.242,92,79,2,14,6,13,15,13,0
2014-10-22,23:00:00,173,131,87,194,162,1.7,1.246,91,79,2,14,5,9,15,12,173
2014-10-23,00:00:00,176,133,91,219,166,1.8,1.288,90,80,2,14,4,6,16,12,176
2014-10-23,01:00:00,163,124,95,198,171,1.6,1.329,88,80,2,14,3,6,16,12,163
2014-10-23,02:00:00,149,114,98,176,175,1.5,1.358,83,81,2,14,2,6,14,12,149
2014-10-23,03:00:00,137,104,101,171,178,1.4,1.383,81,81,2,14,2,6,14,12,137
2014-10-23,04:00:00,142,108,104,178,181,1.5,1.413,80,81,2,14,2,6,14,12,142
2014-10-23,05:00:00,140,107,104,166,180,1.4,1.404,84,82,2,14,2,6,12,13,140
2014-10-23,06:00:00,145,111,104,174,179,1.3,1.383,90,82,2,14,2,6,12,13,145
2014-10-23,07:00:00,142,108,104,179,178,1.3,1.363,91,83,2,14,2,6,12,13,142
2014-10-23,08:00:00,143,109,105,185,178,1.3,1.346,89,84,2,14,2,6,11,13,143
2014-10-23,09:00:00,170,129,107,192,178,1.2,1.329,79,85,2,14,2,6,8,13,170
2014-10-23,10:00:00,176,133,109,186,178,1.1,1.308,72,85,0,14,2,6,7,13,176
2014-10-23,13:00:00,209,159,115,198,177,1.2,1.271,87,85,11,14,5,6,17,13,209
2014-10-23,14:00:00,0,0,116,0,177,0,1.278,0,85,0,14,5,6,0,13,0
2014-10-23,16:00:00,0,0,118,0,180,0,1.319,0,86,0,11,7,7,0,13,0
2014-10-23,17:00:00,219,169,122,222,184,1.7,1.367,125,88,3,11,7,7,30,14,219
2014-10-23,18:00:00,212,162,126,203,188,1.8,1.414,130,91,2,11,6,7,21,14,212
2014-10-23,19:00:00,214,164,129,209,190,2.1,1.462,129,92,2,11,5,7,17,14,214
2014-10-23,20:00:00,219,169,131,220,192,2.4,1.514,122,93,2,11,4,7,12,14,219
2014-10-23,22:00:00,233,183,136,234,195,3.2,1.657,117,95,2,11,2,7,8,14,0
2014-10-24,00:00:00,256,206,143,269,201,3.4,1.814,123,99,2,11,2,7,7,13,256
2014-10-24,02:00:00,258,208,151,262,210,3.5,2.005,117,102,2,11,2,7,6,12,258
2014-10-24,03:00:00,236,186,155,216,212,2.3,2.048,111,103,2,11,2,7,6,12,236
2014-10-24,04:00:00,230,180,159,200,213,2.1,2.076,102,104,2,11,2,7,5,11,230
2014-10-24,05:00:00,218,168,162,188,214,1.9,2.1,87,104,2,11,2,7,4,11,218
2014-10-24,06:00:00,211,161,164,181,215,1.7,2.119,89,104,2,11,2,7,4,11,211
2014-10-24,07:00:00,209,159,167,188,215,1.7,2.138,91,104,2,11,2,7,3,10,209
2014-10-24,08:00:00,210,160,169,222,217,2,2.171,101,105,2,11,2,7,4,10,210
2014-10-24,09:00:00,229,179,171,250,220,2,2.21,105,106,2,11,2,7,7,10,229
2014-10-24,10:00:00,260,210,175,220,221,1.7,2.238,100,107,2,11,2,7,13,10,260
2014-10-24,11:00:00,286,236,180,286,226,1.7,2.262,101,109,10,11,3,7,18,10,286
2014-10-24,12:00:00,45,0,181,0,227,1.6,2.281,89,109,36,36,7,7,0,10,0
2014-10-24,14:00:00,375,325,190,376,236,2,2.318,87,108,76,76,19,19,34,11,375
2014-10-24,15:00:00,392,342,197,393,244,2,2.304,89,107,83,83,30,30,33,12,392
2014-10-24,16:00:00,394,344,203,401,251,2,2.292,101,107,82,83,42,42,32,13,394
2014-10-24,17:00:00,397,347,211,392,259,2.1,2.308,114,106,69,83,51,51,27,13,397
2014-10-24,18:00:00,396,346,219,373,266,2.2,2.325,123,106,41,83,57,57,17,13,396
2014-10-24,19:00:00,396,346,227,364,273,2.5,2.342,147,107,9,83,57,57,11,13,396
2014-10-24,20:00:00,390,340,234,0,276,2.8,2.358,146,108,2,83,52,57,7,12,390
2014-10-24,21:00:00,400,350,242,390,284,3.3,2.375,156,109,2,83,46,57,7,12,0
2014-10-24,23:00:00,396,346,263,430,328,3.6,2.396,147,111,2,83,26,57,6,12,396
2014-10-25,00:00:00,388,338,269,391,334,3.4,2.396,127,112,2,83,16,57,5,12,388
2014-10-25,01:00:00,363,313,274,364,337,3.4,2.387,123,112,2,83,8,57,4,12,363
2014-10-25,02:00:00,357,307,278,362,342,3.8,2.4,119,112,2,83,3,57,5,12,357
2014-10-25,03:00:00,335,285,282,328,348,3.1,2.433,109,112,2,83,2,57,4,12,335
2014-10-25,04:00:00,311,261,286,298,352,2.6,2.454,104,112,2,83,2,57,4,12,311
2014-10-25,05:00:00,315,265,290,274,356,2.3,2.471,104,113,2,83,2,57,3,12,315
2014-10-25,06:00:00,313,263,295,266,360,2.2,2.492,98,113,2,83,2,57,3,12,313
2014-10-25,07:00:00,313,263,299,0,369,2.2,2.513,93,113,2,83,2,57,3,12,313
2014-10-25,08:00:00,307,257,303,273,372,2.3,2.525,98,113,2,83,2,57,3,11,307
2014-10-25,09:00:00,297,247,306,284,373,2.4,2.542,100,113,2,83,2,57,6,11,297
2014-10-25,10:00:00,349,299,310,0,381,2,2.554,91,112,15,83,4,57,10,11,349
2014-10-25,11:00:00,395,345,315,0,387,1.9,2.563,79,112,37,83,8,57,13,11,395
2014-10-25,13:00:00,421,381,325,0,387,2.1,2.571,90,112,82,83,25,57,18,12,421
2014-10-25,14:00:00,431,396,328,0,387,2.2,2.579,108,113,89,89,36,57,18,11,431
2014-10-25,17:00:00,468,452,339,0,393,2.5,2.629,147,118,63,89,63,63,12,9,468
2014-10-25,18:00:00,478,467,344,0,394,2.7,2.65,146,119,54,89,68,68,10,9,478
2014-10-25,19:00:00,483,474,350,0,396,2.8,2.663,133,118,41,89,69,69,9,9,0
2014-10-25,21:00:00,443,414,357,0,397,3.1,2.658,133,116,4,89,54,69,4,8,0
2014-10-25,22:00:00,418,377,351,402,351,3.2,2.646,124,115,2,89,43,69,4,8,0
2014-10-25,23:00:00,386,336,350,365,346,3,2.621,111,114,2,89,33,69,3,8,0
2014-10-26,00:00:00,373,323,350,411,347,3,2.604,112,113,2,89,24,69,4,8,0
2014-10-26,02:00:00,350,300,350,348,349,2.6,2.529,99,112,2,89,9,69,3,8,0
2014-10-26,03:00:00,360,310,351,0,350,2.4,2.5,88,111,2,89,5,69,2,8,0
2014-10-26,04:00:00,302,252,350,0,355,1.9,2.471,67,109,33,89,6,69,2,8,0
2014-10-26,05:00:00,245,195,347,0,363,1.1,2.421,41,107,51,89,12,69,6,8,0
2014-10-26,06:00:00,95,71,339,0,374,0.5,2.35,31,104,53,89,18,69,3,8,0
2014-10-26,07:00:00,20,14,329,0,374,0.2,2.267,25,101,54,89,25,69,2,8,0
2014-10-26,08:00:00,44,14,319,44,349,0.2,2.179,31,98,46,89,30,69,2,8,0
2014-10-26,09:00:00,80,13,309,110,329,0.2,2.088,23,95,58,89,37,69,2,8,0
2014-10-26,10:00:00,55,11,297,59,302,0.2,2.013,21,92,65,89,45,69,2,8,0
2014-10-26,11:00:00,36,10,283,36,278,0.2,1.942,21,90,70,89,54,69,2,7,0
2014-10-26,12:00:00,24,12,268,24,257,0.2,1.867,21,87,76,89,59,69,2,7,0
2014-10-26,13:00:00,25,3,253,8,238,0.1,1.783,21,84,80,89,63,69,2,6,0
2014-10-26,15:00:00,27,10,220,0,222,0.1,1.6,26,77,85,85,70,70,2,4,0
2014-10-26,16:00:00,28,5,202,0,200,0.1,1.504,23,71,88,88,76,76,2,4,0
2014-10-26,17:00:00,26,12,183,0,200,0.2,1.408,25,66,81,88,78,78,2,3,0
2014-10-26,18:00:00,19,10,164,14,185,0.2,1.304,37,62,60,88,78,78,2,3,0
2014-10-26,19:00:00,35,20,146,22,172,0.4,1.204,70,59,27,88,72,78,2,3,0
2014-10-26,20:00:00,38,20,127,24,162,0.4,1.1,76,57,20,88,65,78,2,3,0
2014-10-26,21:00:00,37,19,111,33,153,0.4,0.987,73,54,19,88,58,78,2,3,0
2014-10-26,22:00:00,35,14,96,28,128,0.3,0.867,69,52,20,88,50,78,2,2,0
2014-10-26,23:00:00,25,10,82,0,111,0.2,0.75,50,50,39,88,44,78,2,2,0
2014-10-27,00:00:00,26,9,69,13,83,0.2,0.633,52,47,35,88,38,78,2,2,0
2014-10-27,01:00:00,24,10,56,12,55,0.2,0.525,47,44,37,88,32,78,2,2,0
2014-10-27,02:00:00,32,7,44,17,32,0.2,0.425,64,43,18,88,27,78,2,2,0
2014-10-27,03:00:00,36,5,32,29,32,0.3,0.338,71,42,6,88,24,78,2,2,0
2014-10-27,04:00:00,32,17,22,32,32,0.3,0.271,57,42,16,88,24,78,2,2,0
2014-10-27,06:00:00,35,13,12,32,32,0.3,0.229,69,44,2,88,21,78,3,2,0
2014-10-27,07:00:00,39,19,12,39,32,0.4,0.238,68,46,2,88,16,78,3,2,0
2014-10-27,08:00:00,53,24,12,55,33,0.5,0.25,70,48,3,88,12,78,4,2,0
2014-10-27,09:00:00,67,20,12,83,31,0.6,0.267,72,50,5,88,8,78,6,2,0
2014-10-27,10:00:00,87,59,14,123,34,1.5,0.321,76,52,12,88,7,78,43,4,0
2014-10-27,11:00:00,74,48,16,98,38,1.3,0.367,66,54,25,88,10,78,30,5,0
2014-10-27,12:00:00,73,36,17,95,41,1.1,0.404,66,56,30,88,11,78,24,6,0
2014-10-27,13:00:00,63,38,19,75,45,0.8,0.433,46,57,54,88,17,78,19,7,0
2014-10-27,14:00:00,60,30,19,70,46,0.6,0.454,40,57,64,88,24,78,20,8,0
2014-10-27,16:00:00,69,34,21,88,48,0.7,0.496,50,60,69,81,37,78,18,9,0
2014-10-27,18:00:00,72,45,24,93,54,0.6,0.53,71,62,44,72,51,72,14,10,0
2014-10-27,19:00:00,78,53,25,105,58,0.9,0.552,95,63,14,72,50,65,17,10,0
2014-10-27,20:00:00,99,60,27,148,63,1.1,0.583,96,64,2,72,46,58,20,11,0
2014-10-27,22:00:00,91,54,30,131,73,1.1,0.652,86,66,2,72,29,51,13,12,0
2014-10-27,23:00:00,65,34,31,79,74,0.9,0.683,79,67,5,72,26,51,9,13,0
2014-10-28,00:00:00,61,37,33,71,76,1.4,0.735,70,68,13,72,19,51,15,13,0
2014-10-28,01:00:00,62,44,34,73,79,0.9,0.765,71,69,11,72,12,51,16,14,0
2014-10-28,03:00:00,67,46,37,84,83,0.8,0.804,76,69,2,72,6,51,7,14,0
2014-10-28,04:00:00,113,85,40,171,89,1.2,0.843,72,70,2,72,6,51,5,15,0
2014-10-28,05:00:00,118,89,44,178,95,1.2,0.883,68,70,2,72,6,51,5,15,0
2014-10-28,07:00:00,108,81,50,132,105,1.2,0.961,71,71,2,72,5,51,5,15,0
2014-10-28,08:00:00,117,88,52,156,109,1.4,1,71,71,2,72,4,51,7,15,0
2014-10-28,10:00:00,117,88,57,170,116,1.4,1.039,84,71,4,72,2,51,22,14,0
2014-10-28,12:00:00,115,87,61,144,122,1,1.03,91,73,17,72,5,51,26,14,0
2014-10-28,14:00:00,94,70,64,107,125,0.7,1.035,62,76,60,72,16,51,28,15,0
2014-10-28,16:00:00,75,53,65,99,125,0.5,1.008,53,75,68,72,33,51,23,16,0
2014-10-28,17:00:00,76,53,65,102,125,0.6,1.008,67,76,49,70,39,51,22,16,0
2014-10-28,18:00:00,75,49,66,100,125,0.6,1.008,70,75,43,70,44,50,22,16,0
2014-10-28,19:00:00,72,48,65,93,125,0.6,0.996,64,74,42,70,48,48,20,16,0
2014-10-28,20:00:00,78,57,65,88,122,0.7,0.979,72,73,30,70,50,50,19,16,0
2014-10-28,21:00:00,79,58,65,91,120,0.7,0.958,84,73,22,70,48,50,20,16,0
2014-10-28,22:00:00,84,62,65,102,119,0.8,0.946,100,73,9,70,42,50,21,17,0
2014-10-28,23:00:00,90,67,67,108,120,0.9,0.946,103,74,6,70,34,50,24,17,0
2014-10-29,00:00:00,98,73,68,145,123,1.2,0.938,107,76,2,70,25,50,16,17,0
2014-10-29,01:00:00,102,75,70,153,126,1.3,0.954,104,77,2,70,20,50,11,17,0
2014-10-29,02:00:00,130,92,72,209,132,1.6,0.996,105,79,2,70,14,50,8,17,0
2014-10-29,03:00:00,137,104,74,199,137,1.6,1.029,106,80,2,70,9,50,9,17,0
2014-10-29,04:00:00,163,124,76,236,140,1.8,1.054,106,82,2,70,6,50,7,17,0
2014-10-29,06:00:00,162,123,79,198,144,1.6,1.092,96,84,2,70,3,50,6,17,0
2014-10-29,07:00:00,147,112,80,157,145,1.4,1.1,85,85,2,70,2,50,5,17,0
2014-10-29,08:00:00,133,101,81,138,144,1.2,1.092,81,85,2,70,2,50,6,17,0
2014-10-29,09:00:00,142,108,81,174,143,1.4,1.083,87,85,2,70,2,50,10,17,0
2014-10-29,10:00:00,144,110,82,180,144,1.3,1.079,91,86,4,70,2,50,14,17,0
2014-10-29,11:00:00,147,112,83,170,144,1.1,1.075,86,86,12,70,4,50,18,16,0
2014-10-29,13:00:00,155,118,86,152,146,1.3,1.1,93,86,37,70,11,50,28,16,0
2014-10-29,14:00:00,149,114,88,155,148,1.2,1.121,98,87,52,70,18,50,29,16,0
2014-10-29,15:00:00,168,127,91,174,151,1.2,1.146,109,90,55,68,24,50,29,16,0
2014-10-29,17:00:00,196,147,99,197,158,1.2,1.196,125,95,36,55,35,50,27,17,0
2014-10-29,18:00:00,195,146,103,179,162,1.3,1.225,127,97,31,55,38,50,28,17,0
2014-10-29,19:00:00,204,154,107,200,166,1.7,1.271,141,100,9,55,38,50,20,17,0
2014-10-29,20:00:00,226,176,112,274,174,2.3,1.338,165,104,2,55,35,48,19,17,0
2014-10-29,21:00:00,234,184,117,300,182,2.5,1.413,162,107,2,55,30,42,17,17,0
2014-10-29,22:00:00,251,201,123,322,192,2.8,1.496,165,110,2,55,24,38,15,17,0
2014-10-29,23:00:00,273,223,130,329,201,2.9,1.579,167,113,2,55,17,38,16,17,0
2014-10-30,01:00:00,278,228,142,360,218,3.1,1.725,163,117,2,55,7,38,14,17,0
2014-10-30,02:00:00,281,231,148,347,224,2.9,1.779,147,119,2,55,3,38,12,17,0
2014-10-30,03:00:00,285,235,154,366,231,2.9,1.833,139,121,2,55,2,38,12,17,0
2014-10-30,04:00:00,282,232,158,351,235,3,1.883,132,122,2,55,2,38,9,17,0
2014-10-30,05:00:00,278,228,162,339,240,2.8,1.925,132,123,2,55,2,38,9,17,0
2014-10-30,06:00:00,262,212,166,300,244,2.7,1.971,127,124,2,55,2,38,9,17,0
2014-10-30,07:00:00,238,188,169,251,248,2.2,2.004,118,126,2,55,2,38,9,17,0
2014-10-30,08:00:00,221,171,172,238,252,1.9,2.033,111,127,2,55,2,38,10,18,0
2014-10-30,09:00:00,206,156,174,207,253,1.7,2.046,103,128,2,55,2,38,15,18,0
2014-10-30,10:00:00,200,150,176,190,254,1.5,2.054,105,128,3,55,2,38,19,18,0
2014-10-30,11:00:00,209,159,178,209,255,1.6,2.075,111,129,3,55,2,38,18,18,0
2014-10-30,12:00:00,224,174,180,223,258,1.8,2.104,119,131,4,55,3,38,18,18,0
2014-10-30,14:00:00,237,187,186,205,263,1.5,2.129,118,133,19,55,5,38,34,18,0
2014-10-30,16:00:00,245,195,191,215,266,1.7,2.171,112,133,36,36,13,38,72,20,0
2014-10-30,17:00:00,243,193,193,202,266,1.7,2.192,113,133,26,36,16,38,56,22,0
2014-10-30,18:00:00,245,195,195,213,268,1.9,2.217,143,133,4,36,16,38,50,22,0
2014-10-30,19:00:00,256,206,197,246,270,1.9,2.225,154,134,2,36,16,35,42,23,0
2014-10-30,20:00:00,263,213,198,266,269,2,2.213,160,134,2,36,16,30,42,24,0
2014-10-30,21:00:00,269,219,200,254,267,2,2.192,157,133,2,36,15,24,34,25,0
2014-10-30,22:00:00,0,0,200,0,265,0,2.165,0,132,0,36,14,17,0,25,0
2014-10-30,23:00:00,0,0,199,0,262,0,2.132,0,131,0,36,12,16,0,26,0
2014-10-31,00:00:00,0,0,197,0,258,0,2.095,0,129,0,36,7,16,0,26,0
2014-10-31,01:00:00,0,0,196,0,253,0,2.045,0,127,0,36,3,16,0,27,0
2014-10-31,02:00:00,0,0,194,0,248,0,2,0,126,0,36,2,16,0,28,0
2014-10-31,04:00:00,0,0,189,0,235,0,1.888,0,125,0,36,2,16,0,30,0
2014-10-31,05:00:00,0,0,187,0,229,0,1.831,0,125,0,36,0,16,0,31,0
2014-10-31,06:00:00,0,0,185,0,224,0,1.773,0,124,0,36,0,16,0,33,0
2014-10-31,07:00:00,0,0,185,0,222,0,1.743,0,125,0,36,0,16,0,34,0
2014-10-31,08:00:00,0,0,186,0,221,0,1.731,0,126,0,36,0,16,0,36,0
2014-10-31,09:00:00,265,215,191,261,225,0,1.733,0,128,0,36,0,16,0,38,0
2014-10-31,11:00:00,189,142,189,147,222,0,1.77,0,132,0,36,0,16,0,42,0
2014-10-31,12:00:00,195,146,187,0,222,0,1.767,0,133,0,36,0,16,0,44,0
2014-10-31,13:00:00,190,143,184,0,224,0,1.788,0,135,0,36,0,16,0,47,0
2014-10-31,14:00:00,192,144,181,0,226,0,1.829,0,137,0,36,0,16,0,49,0
2014-10-31,15:00:00,193,145,177,0,226,0,1.867,0,140,0,36,0,16,0,49,0
2014-10-31,17:00:00,216,166,173,0,231,0,1.95,0,154,0,4,0,16,0,42,0
2014-10-31,18:00:00,234,184,172,194,228,2.1,2,103,144,11,11,11,16,11,32,0
2014-10-31,19:00:00,254,204,172,216,223,2.3,2.1,116,134,2,11,7,16,10,24,0
2014-10-31,20:00:00,273,223,172,243,219,2.4,2.2,120,124,2,11,5,15,9,16,0
2014-10-31,21:00:00,275,225,173,229,215,2.2,2.25,112,113,2,11,4,14,9,10,0
2014-10-31,22:00:00,255,205,175,0,215,2.1,2.22,108,112,2,11,4,12,9,10,0
2014-10-31,23:00:00,248,198,177,0,215,2.3,2.233,113,112,2,11,4,11,7,9,0
2014-11-01,00:00:00,234,184,177,0,215,2.4,2.257,111,112,2,11,3,11,5,9,0
2014-11-01,01:00:00,229,179,177,0,215,2.7,2.313,112,112,2,11,3,11,5,8,0
2014-11-01,02:00:00,239,189,178,0,215,3,2.389,109,112,2,11,2,11,4,8,0
2014-11-01,04:00:00,179,135,176,0,215,1.9,2.34,93,110,2,11,2,11,7,8,0
2014-11-01,05:00:00,127,96,172,0,215,1.7,2.282,78,107,2,11,2,11,5,7,0
2014-11-01,06:00:00,92,68,167,0,215,1.1,2.183,70,104,2,11,2,11,7,7,0
2014-11-01,07:00:00,54,38,161,0,215,0.9,2.085,70,101,2,11,2,11,7,7,0
2014-11-01,08:00:00,46,32,155,0,215,0.8,1.993,69,99,2,11,2,11,7,7,0
2014-11-01,09:00:00,40,28,147,0,206,0.8,1.913,70,97,3,11,2,11,10,7,0
2014-11-01,11:00:00,23,16,141,0,221,0.3,1.813,37,93,49,49,9,11,9,8,0
2014-11-01,13:00:00,29,14,129,29,158,0.3,1.644,28,86,59,60,25,25,8,8,0
2014-11-01,14:00:00,25,17,124,19,138,0.3,1.574,29,83,61,61,34,34,9,8,0
2014-11-01,16:00:00,55,8,111,60,120,0.2,1.443,30,78,64,64,51,51,6,8,0
2014-11-01,18:00:00,36,11,96,36,96,0.3,1.305,44,73,47,64,57,59,7,7,0
2014-11-01,19:00:00,40,16,87,40,78,0.4,1.218,59,71,29,64,55,59,8,7,0
2014-11-01,20:00:00,40,19,78,40,58,0.4,1.127,68,68,18,64,50,59,7,7,0
2014-11-01,21:00:00,41,18,69,41,39,0.5,1.05,76,67,8,64,43,59,8,7,0
2014-11-01,22:00:00,28,15,60,23,38,0.4,0.973,56,64,28,64,39,59,7,7,0
2014-11-01,23:00:00,46,16,52,46,38,0.3,0.882,47,61,34,64,36,59,4,7,0
2014-11-02,00:00:00,30,9,44,30,38,0.2,0.782,38,58,39,64,32,59,3,7,0
2014-11-02,01:00:00,19,7,36,16,36,0.2,0.668,21,54,58,64,33,59,5,7,0
2014-11-02,02:00:00,20,3,27,7,34,0.2,0.541,18,50,63,64,35,59,5,7,0
2014-11-02,03:00:00,21,3,26,10,33,0.2,0.526,17,48,65,65,39,59,3,7,0
2014-11-02,04:00:00,20,4,21,7,31,0.1,0.448,20,45,62,65,45,59,2,6,0
2014-11-02,05:00:00,19,7,17,7,30,0.2,0.383,20,43,60,65,51,59,3,6,0
2014-11-02,06:00:00,17,10,14,0,30,0.2,0.343,26,41,52,65,54,59,6,6,0
2014-11-02,08:00:00,31,9,12,31,29,0.4,0.3,60,39,15,65,52,59,8,6,0
2014-11-02,10:00:00,18,3,11,16,29,0.3,0.279,23,37,57,65,49,59,7,6,0
2014-11-02,11:00:00,22,3,10,20,28,0.2,0.275,17,36,69,69,50,59,5,6,0
2014-11-02,12:00:00,22,14,10,0,28,0.2,0.271,18,36,70,70,51,59,4,6,0
2014-11-02,13:00:00,30,3,10,30,28,0.2,0.267,22,35,69,70,52,59,5,6,0
2014-11-02,15:00:00,34,8,9,34,28,0.2,0.263,24,35,71,71,58,59,5,6,0
2014-11-02,16:00:00,39,4,9,39,27,0.2,0.263,24,35,71,71,65,65,5,6,0
2014-11-02,18:00:00,27,8,9,27,27,0.3,0.267,45,34,41,71,65,67,6,6,0
2014-11-02,19:00:00,28,7,8,28,26,0.3,0.263,44,34,39,71,62,67,6,5,0
2014-11-02,20:00:00,28,11,8,24,25,0.4,0.263,56,33,26,71,56,67,6,5,0
2014-11-02,21:00:00,34,13,8,22,24,0.4,0.258,68,33,12,71,49,67,5,5,0
2014-11-02,22:00:00,37,7,7,20,24,0.5,0.263,73,34,7,71,41,67,3,5,0
2014-11-02,23:00:00,38,12,7,31,24,0.7,0.279,76,35,2,71,33,67,3,5,0
2014-11-03,00:00:00,39,15,7,33,24,0.9,0.308,77,36,2,71,24,67,3,5,0
2014-11-03,01:00:00,41,21,8,41,25,1,0.342,78,39,2,71,16,67,4,5,0
2014-11-03,02:00:00,47,30,9,47,27,0.8,0.367,79,41,2,71,12,67,4,5,0
2014-11-03,03:00:00,48,26,10,48,28,0.8,0.392,78,44,2,71,7,67,4,5,0
2014-11-03,04:00:00,53,28,11,55,31,0.8,0.421,74,46,2,71,4,67,3,5,0
2014-11-03,05:00:00,54,32,12,57,33,1,0.454,68,48,2,71,3,67,3,5,0
2014-11-03,06:00:00,40,28,13,31,33,0.8,0.479,67,50,2,71,2,67,4,5,0
2014-11-03,07:00:00,32,22,14,30,33,0.6,0.492,64,51,2,71,2,67,7,5,0
2014-11-03,08:00:00,60,36,15,69,35,1.1,0.521,71,51,2,71,2,67,10,5,0
2014-11-03,09:00:00,64,37,16,78,37,1.4,0.567,75,53,3,71,2,67,11,5,0
2014-11-03,10:00:00,63,45,17,68,40,1.3,0.608,84,56,7,71,3,67,12,5,0
2014-11-03,11:00:00,35,24,18,28,40,0.6,0.625,58,57,29,71,6,67,6,5,0
2014-11-03,12:00:00,32,18,19,32,40,0.4,0.633,44,58,55,71,13,67,4,5,0
2014-11-03,13:00:00,40,24,19,40,40,0.3,0.638,38,59,79,79,22,67,4,5,0
2014-11-03,15:00:00,29,18,21,26,39,0.2,0.638,30,60,90,96,45,67,3,5,0
2014-11-03,16:00:00,28,13,21,22,39,0.2,0.638,30,60,88,96,56,67,3,5,0
2014-11-03,17:00:00,39,14,21,39,39,0.3,0.638,38,60,77,96,65,65,4,5,0
2014-11-03,18:00:00,0,0,22,0,40,0,0.652,0,61,0,96,73,73,0,5,0
2014-11-03,19:00:00,0,0,23,0,40,0,0.668,0,62,0,96,81,81,0,5,0
2014-11-03,20:00:00,0,0,23,0,41,0,0.681,0,62,0,96,86,86,0,5,0
2014-11-03,21:00:00,0,0,24,0,42,0,0.695,0,62,0,96,88,88,0,5,0
2014-11-03,22:00:00,71,46,26,91,46,0.6,0.7,88,62,14,96,67,88,12,5,0
2014-11-03,23:00:00,77,53,28,104,49,0.7,0.7,86,63,12,96,48,88,20,6,0
2014-11-04,00:00:00,0,0,28,0,50,0,0.689,0,62,0,96,34,88,0,6,0
2014-11-04,01:00:00,88,65,31,111,54,0.7,0.674,83,62,9,96,12,88,20,7,0
2014-11-04,02:00:00,97,72,33,110,58,0.7,0.668,76,62,4,96,10,88,17,8,0
2014-11-04,03:00:00,108,81,36,112,61,0.7,0.663,71,62,6,96,9,88,17,9,0
2014-11-04,04:00:00,100,75,38,111,64,0.8,0.663,68,61,2,96,8,88,9,9,0
2014-11-04,05:00:00,99,74,41,103,67,1.3,0.679,75,62,2,96,7,88,5,9,0
2014-11-04,06:00:00,112,84,43,116,72,1.7,0.726,73,62,2,96,5,88,4,9,0
2014-11-04,07:00:00,122,92,47,121,77,1.7,0.784,71,62,2,96,4,88,4,9,0
2014-11-04,08:00:00,115,87,50,128,80,1.6,0.811,67,62,2,96,4,88,4,9,0
2014-11-04,09:00:00,105,79,52,122,82,1.4,0.811,76,62,3,96,3,88,10,8,0
2014-11-04,10:00:00,125,95,55,158,87,1.3,0.811,90,63,6,96,3,88,19,9,0
2014-11-04,11:00:00,149,114,59,184,96,1.5,0.858,107,65,11,96,4,88,24,10,0
2014-11-04,13:00:00,0,0,68,0,108,0,0.944,0,71,0,96,7,88,0,11,0
2014-11-04,15:00:00,210,160,82,201,123,1.6,1.1,100,80,62,88,20,88,74,17,0
2014-11-04,17:00:00,204,154,98,201,142,1.6,1.261,99,87,44,62,33,88,67,25,0
2014-11-04,18:00:00,206,156,101,205,145,1.6,1.279,125,89,11,62,34,88,56,26,0
2014-11-04,19:00:00,215,165,104,204,148,1.8,1.305,136,91,2,62,33,88,46,27,0
2014-11-04,20:00:00,223,173,108,216,152,1.9,1.333,135,93,2,62,30,88,38,28,0
2014-11-04,21:00:00,227,177,111,217,155,2.4,1.382,127,95,2,62,26,67,23,28,0
2014-11-04,22:00:00,262,212,118,270,163,3.5,1.514,131,97,2,62,23,48,20,28,0
2014-11-04,23:00:00,286,236,127,298,172,3.7,1.65,130,99,2,62,15,34,19,28,0
2014-11-05,00:00:00,287,237,132,292,177,3.7,1.739,122,100,2,62,8,34,14,27,0
2014-11-05,01:00:00,282,232,139,278,184,3.9,1.878,128,102,2,62,3,34,13,27,0
2014-11-05,02:00:00,276,226,146,263,191,3.6,2.004,124,104,2,62,2,34,10,27,0
2014-11-05,04:00:00,242,192,154,194,198,2.1,2.123,112,107,2,62,2,34,15,28,0
2014-11-05,05:00:00,226,176,158,176,201,1.8,2.145,105,109,2,62,2,34,12,28,0
2014-11-05,06:00:00,219,169,162,0,205,1.8,2.15,101,110,3,62,2,34,14,28,0
2014-11-05,07:00:00,166,126,164,0,210,1.5,2.141,90,111,2,62,2,34,14,29,0
2014-11-05,08:00:00,166,126,166,155,211,2,2.159,88,112,2,62,2,34,10,29,0
2014-11-05,09:00:00,170,129,168,160,213,2.3,2.2,91,113,4,62,2,34,12,29,0
2014-11-05,11:00:00,54,38,163,0,218,0.6,2.145,43,109,47,62,10,34,12,29,0
2014-11-05,13:00:00,28,16,152,28,199,0.2,2.009,19,101,77,77,28,34,5,27,0
2014-11-05,16:00:00,24,8,132,21,171,0.2,1.817,28,90,76,82,57,57,2,19,0
2014-11-05,18:00:00,30,11,119,26,152,0.3,1.7,60,85,36,82,66,66,5,14,0
2014-11-05,19:00:00,32,8,113,26,142,0.4,1.639,64,82,32,82,64,66,3,12,0
2014-11-05,21:00:00,40,10,102,40,128,0.2,1.527,28,75,57,82,60,66,2,10,0
2014-11-05,22:00:00,19,4,93,16,114,0.2,1.377,25,70,59,82,57,66,2,9,0
2014-11-06,00:00:00,0,0,75,0,87,0,1.1,0,62,0,82,52,66,0,8,0
2014-11-06,01:00:00,25,5,64,5,71,0.2,0.924,14,57,78,82,55,66,2,8,0
2014-11-06,02:00:00,24,5,53,6,55,0.2,0.762,14,52,76,82,61,66,2,7,0
2014-11-06,03:00:00,25,8,51,0,55,0.2,0.736,12,50,77,82,69,69,2,7,0
2014-11-06,04:00:00,25,6,43,0,47,0.2,0.65,11,45,78,82,70,70,2,7,0
2014-11-06,05:00:00,19,5,35,18,37,0.2,0.577,21,41,60,82,71,71,2,6,0
2014-11-06,06:00:00,16,6,28,10,35,0.3,0.509,32,38,44,82,68,71,2,6,0
2014-11-06,07:00:00,18,6,22,0,35,0.2,0.45,25,35,57,82,67,71,2,5,0
2014-11-06,08:00:00,26,9,17,26,28,0.3,0.373,30,33,50,82,65,71,2,5,0
2014-11-06,09:00:00,34,9,12,34,20,0.2,0.277,22,29,57,82,62,71,2,4,0
2014-11-06,10:00:00,29,9,9,29,21,0.2,0.241,17,27,62,82,61,71,2,3,0
2014-11-06,11:00:00,26,4,7,26,21,0.2,0.223,15,26,66,82,59,71,2,3,0
2014-11-06,13:00:00,24,10,7,0,20,0.2,0.223,14,25,74,82,60,71,2,3,0
2014-11-06,14:00:00,24,7,7,0,20,0.2,0.223,18,25,76,82,64,71,2,2,0
2014-11-06,15:00:00,25,8,7,0,20,0.2,0.223,16,25,80,80,67,71,2,2,0
2014-11-06,16:00:00,27,9,7,12,19,0.2,0.223,13,24,84,84,71,71,2,2,0
2014-11-06,17:00:00,25,3,7,13,19,0.2,0.223,16,23,79,84,74,74,2,2,0
2014-11-06,19:00:00,0,0,6,0,18,0,0.214,0,19,0,84,75,75,0,2,0
2014-11-06,20:00:00,57,25,7,63,21,0.7,0.236,76,22,10,84,66,75,3,2,0
2014-11-06,22:00:00,78,43,10,106,28,1.1,0.305,72,25,14,84,52,75,19,3,0
2014-11-06,23:00:00,72,45,12,93,34,1,0.341,66,28,18,84,43,75,25,4,0
2014-11-07,00:00:00,64,43,13,78,36,1.1,0.374,71,29,13,84,33,75,31,5,0
2014-11-07,01:00:00,64,46,15,77,41,1,0.409,66,32,15,84,24,75,30,7,0
2014-11-07,02:00:00,62,44,17,71,44,1,0.443,65,34,16,84,17,75,25,8,0
2014-11-07,03:00:00,85,63,19,115,48,1.5,0.5,75,37,3,84,15,75,18,8,0
2014-11-07,04:00:00,107,80,22,119,52,1.7,0.565,70,39,2,84,14,75,14,9,0
2014-11-07,05:00:00,103,77,26,109,57,1.7,0.63,67,41,2,84,10,75,13,9,0
2014-11-07,06:00:00,104,78,29,111,62,1.8,0.696,64,43,2,84,9,75,14,10,0
2014-11-07,07:00:00,108,81,32,110,65,1.6,0.757,57,44,2,84,7,75,14,10,0
2014-11-07,08:00:00,98,73,35,100,68,1.4,0.804,55,45,2,84,6,75,13,11,0
2014-11-07,09:00:00,117,88,38,127,73,1.6,0.865,60,47,3,84,4,75,16,11,0
2014-11-07,10:00:00,82,60,40,90,76,1.7,0.93,61,49,7,84,3,75,25,12,0
2014-11-07,11:00:00,87,64,43,101,80,1.5,0.987,68,51,10,84,4,75,28,14,0
2014-11-07,12:00:00,84,62,46,92,84,1.4,1.039,63,53,20,84,6,75,34,15,0
2014-11-07,14:00:00,57,40,49,54,82,1,1.113,52,56,40,84,15,75,21,17,0
2014-11-07,16:00:00,39,27,50,33,81,0.6,1.161,40,59,54,79,27,75,13,18,0
2014-11-07,17:00:00,47,31,52,47,83,0.6,1.178,49,60,45,62,32,75,14,19,0
2014-11-07,18:00:00,59,39,53,67,85,0.7,1.196,60,62,33,54,35,75,13,19,0
2014-11-07,19:00:00,63,42,53,75,85,0.6,1.171,58,62,30,54,38,66,12,19,0
2014-11-07,21:00:00,57,40,54,45,84,0.6,1.163,55,61,30,54,37,52,9,19,0
2014-11-07,22:00:00,57,40,54,42,82,0.6,1.142,64,61,17,54,34,43,8,19,0
2014-11-07,23:00:00,52,36,54,41,79,0.5,1.121,49,60,29,54,32,38,8,18,0
2014-11-08,00:00:00,59,42,54,0,80,0.6,1.1,59,59,13,54,27,38,6,17,0
2014-11-08,01:00:00,62,44,54,0,80,0.7,1.088,61,59,7,54,23,38,5,16,0
2014-11-08,02:00:00,69,50,54,0,80,1,1.088,66,59,2,54,19,38,4,15,0
2014-11-08,03:00:00,84,62,54,0,78,1.4,1.083,71,59,2,54,15,38,6,14,0
2014-11-08,04:00:00,99,74,54,76,76,1.8,1.088,74,59,2,54,13,38,8,14,0
2014-11-08,05:00:00,95,71,53,74,74,1.6,1.083,68,59,2,54,9,38,8,14,0
2014-11-08,06:00:00,87,64,53,71,72,1.5,1.071,66,59,2,54,7,38,8,14,0
2014-11-08,07:00:00,88,65,52,75,71,1.5,1.067,66,60,2,54,4,38,7,13,0
2014-11-08,08:00:00,84,62,52,82,70,1.5,1.071,67,60,2,54,3,38,9,13,0
2014-11-08,09:00:00,109,82,51,105,69,2,1.088,69,61,3,54,2,38,9,13,0
2014-11-08,10:00:00,107,80,52,103,69,1.9,1.096,77,61,6,54,3,38,16,13,0
2014-11-08,14:00:00,120,91,57,0,70,1.3,1.108,86,63,47,54,21,38,37,16,0
2014-11-08,16:00:00,120,91,62,100,76,1.1,1.146,75,66,82,82,38,38,25,17,0
2014-11-08,18:00:00,99,74,65,85,79,0.9,1.167,75,68,64,82,54,54,11,17,0
2014-11-08,20:00:00,122,92,69,116,83,1,1.196,89,70,31,82,56,57,10,17,0
2014-11-08,21:00:00,119,90,71,104,86,0.9,1.208,67,71,46,82,56,57,10,17,0
2014-11-08,22:00:00,118,89,73,100,89,1,1.225,84,72,23,82,53,57,8,17,0
2014-11-08,23:00:00,122,92,75,95,92,1.2,1.254,100,74,3,82,46,57,7,17,0
2014-11-09,00:00:00,119,90,77,93,92,1.1,1.275,73,74,23,82,39,57,8,17,0
2014-11-09,01:00:00,124,94,79,0,92,1,1.287,67,75,21,82,32,57,7,17,0
2014-11-09,02:00:00,125,95,81,0,92,1.2,1.296,84,75,3,82,24,57,3,17,0
2014-11-09,03:00:00,142,108,83,0,92,1.7,1.308,87,76,2,82,19,57,4,17,0
2014-11-09,04:00:00,133,101,84,0,93,1.7,1.304,79,76,2,82,15,57,3,17,0
2014-11-09,05:00:00,122,92,85,0,94,1.5,1.3,73,76,2,82,10,57,2,16,0
2014-11-09,06:00:00,107,80,86,0,95,1.3,1.292,66,76,7,82,8,57,2,16,0
2014-11-09,08:00:00,72,52,85,0,98,1,1.246,62,76,9,82,9,57,4,16,0
2014-11-09,09:00:00,64,46,84,0,97,1,1.204,65,75,11,82,7,57,7,16,0
2014-11-09,10:00:00,60,43,82,0,97,0.8,1.158,53,74,29,82,11,57,10,15,0
2014-11-09,11:00:00,65,47,81,0,97,0.7,1.125,49,74,42,82,16,57,17,14,0
2014-11-09,13:00:00,45,31,77,36,94,0.6,1.075,45,72,64,82,29,57,14,11,0
2014-11-09,15:00:00,75,55,75,0,93,0.6,1.035,58,70,97,97,43,57,10,9,0
2014-11-09,16:00:00,73,53,73,0,92,0.6,1.013,58,69,91,97,55,57,8,8,0
2014-11-09,17:00:00,67,48,72,0,92,0.6,1,66,69,72,97,63,63,6,8,0
2014-11-09,18:00:00,64,46,71,48,88,0.7,0.991,87,70,42,97,65,65,6,8,0
2014-11-09,19:00:00,77,56,69,94,86,0.9,0.987,103,70,24,97,63,65,7,8,0
2014-11-09,20:00:00,104,78,69,111,85,1,0.987,101,71,32,97,60,65,7,7,0
2014-11-09,21:00:00,0,0,68,0,82,0,0.991,0,71,0,97,60,65,0,7,0
2014-11-09,22:00:00,130,99,68,133,87,1,0.991,89,71,29,97,55,65,8,7,0
2014-11-09,23:00:00,139,106,69,128,92,1.1,0.986,97,71,15,97,44,65,7,7,0
2014-11-10,00:00:00,140,107,70,114,95,1.2,0.991,102,72,6,97,31,65,6,7,0
2014-11-10,01:00:00,143,109,70,122,98,1.4,1.009,100,74,2,97,21,65,3,7,0
2014-11-10,02:00:00,148,113,71,121,101,2,1.045,98,74,2,97,16,65,2,7,0
2014-11-10,04:00:00,0,0,70,0,101,0,1.024,0,74,0,97,9,65,0,7,0
2014-11-10,05:00:00,77,56,68,0,101,1.1,1.005,75,74,2,97,8,65,4,7,0
2014-11-10,06:00:00,64,46,66,0,101,0.9,0.986,62,74,8,97,5,65,4,7,0
2014-11-10,07:00:00,49,34,65,37,94,0.8,0.981,58,75,8,97,4,65,3,7,0
2014-11-10,08:00:00,58,41,65,0,94,0.9,0.976,62,75,5,97,4,65,5,7,0
2014-11-10,09:00:00,57,40,64,63,92,1.1,0.981,67,75,8,97,5,65,10,7,0
2014-11-10,10:00:00,57,40,64,0,92,1.1,0.995,71,76,11,97,6,65,11,8,0
2014-11-10,11:00:00,34,18,63,34,87,0.8,1,57,76,29,97,10,65,13,7,0
2014-11-10,12:00:00,53,37,63,45,84,0.8,1.005,58,76,38,97,14,65,18,7,0
2014-11-10,13:00:00,62,44,63,54,85,0.8,1.014,65,77,55,97,20,65,17,8,0
2014-11-10,14:00:00,88,65,64,0,85,0.9,1.009,88,78,36,97,24,65,15,8,0
2014-11-10,15:00:00,107,80,65,95,86,1.2,1.036,99,80,28,91,26,65,16,8,0
2014-11-10,17:00:00,107,80,67,95,86,0.9,1.064,99,83,31,55,32,65,15,9,0
2014-11-10,18:00:00,120,91,69,100,90,1,1.077,110,84,12,55,32,63,13,9,0
2014-11-10,19:00:00,144,110,72,132,92,1.3,1.095,127,85,2,55,29,60,12,9,0
2014-11-10,20:00:00,201,151,75,188,97,1.6,1.123,133,87,2,55,25,60,13,10,0
2014-11-10,21:00:00,200,150,78,163,101,1.4,1.135,122,88,7,55,19,55,9,10,0
2014-11-10,22:00:00,200,150,81,164,102,1.6,1.161,136,90,2,55,14,44,8,10,0
2014-11-10,23:00:00,0,0,80,0,101,0,1.164,0,90,0,55,12,32,0,10,0
2014-11-11,00:00:00,200,150,81,0,100,1.7,1.186,128,91,2,55,8,32,6,10,0
2014-11-11,01:00:00,188,141,83,147,102,1.7,1.2,122,92,2,55,4,32,5,10,0
2014-11-11,02:00:00,208,158,85,165,105,1.9,1.195,118,93,2,55,3,32,3,10,0
2014-11-11,03:00:00,223,173,88,186,110,2.8,1.236,116,94,2,55,3,32,3,10,0
2014-11-11,04:00:00,238,188,92,0,110,2.9,1.309,116,95,3,55,3,32,4,10,0
2014-11-11,05:00:00,124,94,94,0,110,1,1.304,51,94,24,55,5,32,7,10,0
2014-11-11,06:00:00,37,11,92,37,105,0.2,1.274,16,92,64,64,14,32,3,10,0
2014-11-11,07:00:00,49,6,91,49,106,0.2,1.248,21,91,56,64,19,32,3,10,0
2014-11-11,08:00:00,46,16,90,46,103,0.2,1.217,30,89,46,64,25,32,4,10,0
2014-11-11,09:00:00,51,19,89,52,102,0.3,1.183,28,88,47,64,31,32,6,10,0
2014-11-11,10:00:00,63,10,88,75,101,0.3,1.148,27,86,48,64,36,36,7,9,0
2014-11-11,11:00:00,53,16,88,56,102,0.3,1.126,22,84,54,64,43,43,4,9,0
2014-11-11,12:00:00,54,18,87,57,102,0.3,1.104,20,82,60,64,50,50,5,8,0
2014-11-11,13:00:00,0,0,89,0,105,0,1.118,0,83,0,64,54,54,0,8,0
2014-11-11,14:00:00,0,0,90,0,105,0,1.129,0,83,0,64,52,54,0,8,0
2014-11-11,15:00:00,42,14,87,42,102,0.3,1.086,21,79,61,64,53,54,4,7,0
2014-11-11,16:00:00,29,15,84,29,99,0.3,1.057,21,75,62,64,55,55,2,6,0
2014-11-11,17:00:00,20,4,80,16,95,0.2,1.024,19,72,63,64,58,58,2,6,0
2014-11-11,18:00:00,18,12,76,14,90,0.3,0.99,28,68,51,64,59,59,2,5,0
2014-11-11,19:00:00,31,17,72,0,87,0.5,0.952,61,65,14,64,52,59,2,5,0
2014-11-11,20:00:00,29,12,65,17,77,0.4,0.895,57,61,18,64,45,59,2,4,0
2014-11-11,21:00:00,55,10,59,60,71,0.3,0.843,34,57,43,64,45,59,2,4,0
2014-11-11,22:00:00,123,5,52,196,73,0.2,0.776,16,51,66,66,47,59,2,4,0
2014-11-11,23:00:00,105,9,50,159,78,0.2,0.75,13,49,73,73,49,59,3,4,0
2014-11-12,00:00:00,58,8,43,65,77,0.2,0.682,14,44,70,73,50,59,2,4,0
2014-11-12,01:00:00,40,5,37,40,72,0.2,0.614,12,39,71,73,51,59,2,3,0
2014-11-12,02:00:00,24,5,30,24,64,0.2,0.536,12,34,70,73,53,59,4,3,0
2014-11-12,03:00:00,26,3,23,26,56,0.2,0.418,12,30,72,73,60,60,6,4,0
2014-11-12,04:00:00,30,3,14,30,55,0.2,0.295,11,25,73,73,67,67,7,4,0
2014-11-12,05:00:00,39,4,10,39,54,0.2,0.259,11,23,73,73,71,71,6,4,0
2014-11-12,06:00:00,55,11,10,59,55,0.2,0.259,11,23,75,75,72,72,3,4,0
2014-11-12,07:00:00,57,5,10,63,55,0.2,0.259,15,23,71,75,72,72,2,4,0
2014-11-12,08:00:00,50,3,9,50,56,0.2,0.259,22,22,63,75,71,72,2,4,0
2014-11-12,09:00:00,31,15,9,31,55,0.2,0.255,23,22,62,75,70,72,2,3,0
2014-11-12,10:00:00,27,12,9,27,52,0.2,0.25,20,22,71,75,70,72,2,3,0
2014-11-12,11:00:00,60,5,9,70,53,0.2,0.245,14,21,80,80,71,72,2,3,0
2014-11-12,12:00:00,50,0,8,50,53,0.2,0.241,14,21,81,81,72,72,2,3,0
2014-11-12,14:00:00,0,0,8,0,53,0,0.239,0,20,0,81,73,73,0,3,0
2014-11-12,15:00:00,51,10,8,51,53,0.2,0.235,13,20,83,83,74,74,2,3,0
2014-11-12,16:00:00,32,3,8,32,53,0.2,0.23,16,20,80,83,77,77,2,3,0
2014-11-12,17:00:00,40,8,8,40,54,0.2,0.23,20,20,72,83,78,78,2,3,0
2014-11-12,18:00:00,57,9,8,63,57,0.2,0.226,23,20,69,83,78,78,2,3,0
2014-11-12,19:00:00,47,8,7,47,56,0.2,0.213,28,18,63,83,76,78,2,3,0
2014-11-12,20:00:00,41,7,7,41,57,0.2,0.204,26,17,65,83,73,78,2,3,0
2014-11-12,21:00:00,36,9,7,36,56,0.3,0.204,32,17,56,83,70,78,2,3,0
2014-11-12,22:00:00,32,16,8,32,49,0.4,0.213,33,18,52,83,68,78,2,3,0
2014-11-12,23:00:00,32,11,8,32,43,0.4,0.222,33,18,48,83,63,78,3,3,0
2014-11-13,00:00:00,26,11,8,26,41,0.4,0.23,42,20,38,83,58,78,3,3,0
2014-11-13,01:00:00,20,12,8,20,40,0.4,0.239,31,21,49,83,55,78,3,3,0
2014-11-13,02:00:00,20,9,8,12,40,0.4,0.248,40,22,39,83,51,78,3,3,0
2014-11-13,03:00:00,25,8,9,14,39,0.4,0.257,49,23,26,83,47,78,4,3,0
2014-11-13,04:00:00,25,11,9,13,39,0.6,0.274,50,25,17,83,41,78,3,3,0
2014-11-13,05:00:00,23,10,9,10,37,0.5,0.287,46,27,24,83,37,78,4,2,0
2014-11-13,06:00:00,26,6,9,14,35,0.6,0.304,52,28,14,83,32,78,2,2,0
2014-11-13,07:00:00,34,15,9,21,33,0.9,0.335,68,31,2,83,26,78,3,2,0
2014-11-13,08:00:00,43,18,10,43,33,1,0.37,71,33,2,83,22,78,4,3,0
2014-11-13,09:00:00,65,39,11,80,35,1.5,0.426,78,35,5,83,16,78,14,3,0
2014-11-13,10:00:00,67,35,12,84,38,1.2,0.47,74,38,12,83,13,78,17,4,0
2014-11-13,11:00:00,52,32,14,54,37,0.8,0.496,56,39,35,83,14,78,10,4,0
2014-11-13,12:00:00,28,19,14,22,36,0.4,0.504,29,40,64,83,20,78,4,4,0
2014-11-13,13:00:00,40,26,14,40,36,0.5,0.517,43,41,59,83,24,78,5,4,0
2014-11-13,15:00:00,41,27,16,41,36,0.4,0.525,38,42,74,80,40,78,6,5,0
2014-11-13,16:00:00,40,23,17,40,36,0.4,0.533,42,44,66,74,48,78,5,5,0
2014-11-13,17:00:00,41,21,17,41,36,0.4,0.542,56,45,51,74,54,78,4,5,0
2014-11-13,18:00:00,53,25,18,56,36,0.6,0.558,82,47,21,74,55,76,4,5,0
2014-11-13,19:00:00,61,34,19,72,37,0.7,0.579,94,50,7,74,51,73,6,5,0
2014-11-13,20:00:00,61,35,20,71,38,0.6,0.596,82,53,14,74,45,70,6,5,0
2014-11-13,21:00:00,65,44,21,79,40,0.7,0.612,78,54,16,74,40,68,11,6,0
2014-11-13,22:00:00,75,55,23,91,42,0.8,0.629,89,57,4,74,32,63,14,6,0
2014-11-13,23:00:00,72,45,24,94,45,0.8,0.646,82,59,7,74,23,58,12,6,0
2014-11-14,00:00:00,74,50,26,98,48,1.1,0.675,88,61,2,74,15,55,10,7,0
2014-11-14,01:00:00,63,44,27,75,50,1.1,0.704,89,63,2,74,9,55,10,7,0
2014-11-14,02:00:00,60,42,29,70,53,1.3,0.742,83,65,2,74,7,55,18,8,0
2014-11-14,03:00:00,78,57,31,83,56,1.4,0.783,81,66,2,74,6,55,16,8,0
2014-11-14,04:00:00,80,59,33,77,58,1.4,0.817,78,67,2,74,5,55,11,8,0
2014-11-14,05:00:00,69,50,35,71,61,1.4,0.854,73,69,2,74,3,55,10,9,0
2014-11-14,06:00:00,63,45,36,56,62,1.2,0.879,70,69,2,74,3,55,12,9,0
2014-11-14,07:00:00,52,36,37,47,64,1.2,0.892,71,69,2,74,2,55,14,10,0
2014-11-14,08:00:00,56,33,38,61,64,1.2,0.9,69,69,2,74,2,55,10,10,0
2014-11-14,09:00:00,65,32,37,80,64,1.3,0.892,73,69,3,74,2,55,19,10,0
2014-11-14,10:00:00,42,22,37,42,63,0.8,0.875,55,68,20,74,4,55,15,10,0
2014-11-14,11:00:00,42,20,36,42,62,0.7,0.871,46,68,32,74,8,55,16,10,0
2014-11-14,12:00:00,35,24,37,28,62,0.5,0.875,28,68,51,74,14,55,12,11,0
2014-11-14,13:00:00,32,22,36,28,62,0.4,0.871,24,67,62,74,22,55,14,11,0
2014-11-14,14:00:00,32,19,36,32,61,0.4,0.867,27,67,63,74,29,55,16,11,0
2014-11-14,15:00:00,28,14,35,28,61,0.4,0.867,28,66,64,66,37,55,15,12,0
2014-11-14,16:00:00,36,20,35,36,61,0.5,0.871,40,66,53,64,44,55,15,12,0
2014-11-14,17:00:00,52,27,36,53,61,0.6,0.879,69,67,22,64,46,55,14,13,0
2014-11-14,18:00:00,59,36,36,68,62,0.8,0.887,88,67,3,64,44,51,13,13,0
2014-11-14,19:00:00,64,43,36,77,62,0.9,0.896,91,67,2,64,40,46,13,13,0
2014-11-14,20:00:00,69,50,37,82,62,1,0.912,94,67,2,64,34,46,15,14,0
2014-11-14,21:00:00,89,66,38,106,64,1.2,0.933,96,68,2,64,26,46,20,14,0
2014-11-14,22:00:00,104,78,39,123,65,1.3,0.954,99,68,2,64,19,46,20,14,0
2014-11-14,23:00:00,110,83,41,129,66,1.5,0.983,98,69,2,64,11,46,20,15,0
2014-11-15,00:00:00,163,124,44,211,71,2.7,1.05,106,70,3,64,5,46,29,15,0
2014-11-15,01:00:00,192,144,48,221,77,3.1,1.133,113,71,3,64,2,46,30,16,0
2014-11-15,02:00:00,225,175,53,252,85,3.4,1.221,115,72,4,64,3,46,34,17,0
2014-11-15,03:00:00,255,205,59,280,93,4,1.329,114,74,4,64,3,46,39,18,0
2014-11-15,04:00:00,236,186,65,252,100,3.2,1.404,102,75,7,64,3,46,45,19,0
2014-11-15,05:00:00,188,141,69,167,104,2.3,1.442,92,75,5,64,4,46,36,20,0
2014-11-15,06:00:00,134,102,71,127,107,1.8,1.467,88,76,4,64,4,46,30,21,0
2014-11-15,07:00:00,123,93,73,118,110,1.8,1.492,81,77,3,64,4,46,25,21,0
2014-11-15,08:00:00,102,76,75,114,112,1.7,1.513,73,77,4,64,4,46,20,22,0
2014-11-15,09:00:00,90,67,77,114,114,1.8,1.533,75,77,4,64,4,46,23,22,0
2014-11-15,10:00:00,0,0,79,0,117,0,1.565,0,78,0,64,4,46,0,22,0
2014-11-15,11:00:00,0,0,82,0,120,0,1.605,0,79,0,64,5,46,0,23,0
2014-11-15,12:00:00,163,124,86,186,127,1.9,1.668,125,84,9,64,5,46,66,25,0
2014-11-15,13:00:00,199,149,92,202,135,2,1.741,137,89,7,64,5,46,65,27,0
2014-11-15,14:00:00,216,166,99,225,144,2.1,1.818,149,94,6,64,6,46,61,29,0
2014-11-15,20:00:00,293,243,131,311,185,3.1,2.288,175,108,4,9,6,26,74,37,0
2014-11-15,21:00:00,291,241,141,298,196,3.1,2.4,170,112,4,9,5,19,66,40,0
2014-11-15,22:00:00,298,248,153,311,210,3.6,2.517,169,118,4,9,4,11,63,44,0
2014-11-16,01:00:00,272,222,175,265,233,2.4,2.637,119,126,3,9,4,6,56,50,0
2014-11-16,02:00:00,282,232,178,262,234,2.3,2.579,115,126,4,9,4,6,50,51,0
2014-11-16,03:00:00,300,250,181,298,235,2.7,2.511,122,127,4,9,4,6,47,51,0
2014-11-16,04:00:00,298,248,184,291,237,2.8,2.489,119,127,4,9,4,6,36,51,0
2014-11-16,05:00:00,332,282,191,348,247,5.2,2.642,142,130,5,9,4,6,33,51,0
2014-11-16,06:00:00,319,269,200,320,257,5.3,2.826,140,133,4,9,4,6,48,52,0
2014-11-16,07:00:00,282,232,207,271,265,4.6,2.974,133,136,3,9,4,6,49,53,0
2014-11-16,08:00:00,292,242,216,287,274,4.8,3.137,131,139,3,9,4,6,42,54,0
2014-11-16,09:00:00,293,243,225,290,283,5,3.305,140,142,4,9,4,6,50,56,0
2014-11-16,10:00:00,189,142,221,150,276,2.5,3.265,103,140,5,9,4,6,48,55,0
2014-11-16,11:00:00,53,37,212,0,276,0.8,3.148,42,135,29,29,7,7,28,54,0
2014-11-16,12:00:00,20,14,207,0,281,0.4,3.076,19,130,54,54,13,13,14,51,0
2014-11-16,14:00:00,21,13,194,0,289,0.3,2.91,16,118,67,67,29,29,7,46,0
2014-11-16,15:00:00,26,18,185,0,290,0.3,2.81,18,112,68,68,37,37,7,44,0
2014-11-16,16:00:00,21,12,177,21,274,0.3,2.695,22,108,63,68,44,44,8,42,0
2014-11-16,17:00:00,26,18,170,25,261,0.3,2.609,27,102,56,68,51,51,8,40,0
2014-11-16,18:00:00,25,15,163,25,248,0.4,2.513,35,99,46,68,56,56,9,38,0
2014-11-16,19:00:00,26,14,157,26,236,0.4,2.425,41,97,40,68,57,57,9,37,0
2014-11-16,20:00:00,26,16,147,25,221,0.4,2.312,51,92,29,68,54,57,8,34,0
2014-11-16,21:00:00,27,18,138,22,206,0.4,2.2,53,87,27,68,50,57,8,32,0
2014-11-16,22:00:00,27,14,128,19,191,0.4,2.067,53,82,27,68,45,57,6,30,0
2014-11-16,23:00:00,20,14,118,15,175,0.3,1.908,39,77,41,68,41,57,6,27,0
2014-11-17,00:00:00,20,14,108,18,157,0.3,1.787,31,72,49,68,39,57,7,25,0
2014-11-17,01:00:00,18,12,99,14,144,0.3,1.7,34,68,45,68,38,57,7,23,0
2014-11-17,02:00:00,18,12,90,0,137,0.3,1.617,35,65,43,68,38,57,11,21,0
2014-11-17,03:00:00,16,10,80,12,121,0.3,1.517,32,61,48,68,39,57,12,20,0
2014-11-17,04:00:00,19,13,70,0,111,0.3,1.412,35,58,45,68,41,57,12,19,0
2014-11-17,05:00:00,18,8,59,10,91,0.3,1.208,23,53,55,68,44,57,15,18,0
2014-11-17,06:00:00,17,10,48,17,73,0.3,1,26,48,53,68,47,57,14,16,0
2014-11-17,07:00:00,23,13,39,23,59,0.4,0.825,40,44,35,68,47,57,16,15,0
2014-11-17,08:00:00,31,15,30,29,44,0.5,0.646,61,41,14,68,42,57,23,14,0
2014-11-17,09:00:00,33,15,20,33,28,0.6,0.463,60,38,16,68,39,57,31,14,0
2014-11-17,10:00:00,30,15,15,30,21,0.6,0.383,50,36,29,68,37,57,30,13,0
2014-11-17,11:00:00,26,16,14,26,22,0.5,0.371,34,36,49,68,37,57,22,13,0
2014-11-17,12:00:00,20,14,14,15,21,0.4,0.371,26,36,60,68,39,57,14,13,0
2014-11-17,13:00:00,21,12,14,18,21,0.3,0.371,26,36,66,68,40,57,14,13,0
2014-11-17,14:00:00,24,10,14,14,21,0.3,0.371,22,36,75,75,43,57,11,13,0
2014-11-17,15:00:00,24,13,13,0,21,0.3,0.371,25,37,74,75,48,57,10,13,0
2014-11-17,16:00:00,24,10,13,15,21,0.2,0.367,26,37,74,75,55,57,8,13,0
2014-11-17,17:00:00,28,10,13,28,21,0.3,0.367,33,37,65,75,62,62,9,13,0
2014-11-17,18:00:00,54,21,13,58,22,0.5,0.371,74,39,28,75,61,62,10,13,0
2014-11-17,19:00:00,68,46,15,85,25,0.7,0.383,89,41,31,75,59,62,18,13,0
2014-11-17,20:00:00,0,0,15,0,25,0,0.383,0,40,0,75,59,62,0,14,0
2014-11-17,21:00:00,82,60,16,91,29,0.8,0.4,96,42,10,75,51,62,16,14,0
2014-11-17,22:00:00,83,61,18,98,32,0.9,0.422,90,44,10,75,42,62,19,15,0
2014-11-17,23:00:00,93,69,21,100,37,0.9,0.448,94,46,3,75,32,62,17,15,0
2014-11-18,00:00:00,93,69,23,110,41,1.2,0.487,98,49,2,75,21,62,16,15,0
2014-11-18,02:00:00,200,150,33,216,56,3.5,0.713,117,56,3,75,9,62,34,17,0
2014-11-18,03:00:00,173,131,38,190,65,3,0.83,107,59,2,75,5,62,25,18,0
2014-11-18,04:00:00,113,85,41,101,66,1.8,0.896,85,61,2,75,4,62,35,19,0
2014-11-18,05:00:00,82,60,44,73,69,1.4,0.943,82,64,2,75,3,62,35,20,0
2014-11-18,06:00:00,57,40,45,40,70,0.9,0.97,74,66,2,75,2,62,22,20,0
2014-11-18,07:00:00,45,31,46,45,71,1.1,1,72,67,2,75,2,62,16,20,0
2014-11-18,08:00:00,55,38,47,59,73,1.3,1.035,73,68,2,75,2,62,15,20,0
2014-11-18,09:00:00,60,37,48,70,74,1.3,1.065,73,68,2,75,2,62,16,19,0
2014-11-18,10:00:00,52,27,48,54,75,1,1.083,67,69,8,75,3,62,14,18,0
2014-11-18,11:00:00,61,37,49,71,77,0.9,1.1,63,70,16,75,5,62,23,18,0
2014-11-18,12:00:00,73,53,51,84,81,1,1.126,66,72,21,75,7,62,37,19,0
2014-11-18,13:00:00,75,55,53,84,84,1,1.157,74,74,22,75,9,62,40,21,0
2014-11-18,14:00:00,84,62,55,85,87,1.1,1.191,86,77,20,74,12,62,39,22,0
2014-11-18,15:00:00,80,59,57,90,87,1,1.222,84,80,25,74,15,62,43,23,0
2014-11-18,23:00:00,253,203,73,245,104,2.3,1.535,136,86,2,25,2,21,73,30,0
2014-11-19,00:00:00,248,198,80,241,112,2.9,1.635,132,88,2,25,2,15,51,32,0
2014-11-19,02:00:00,340,290,96,413,134,5.5,1.882,172,94,3,25,3,15,57,35,0
2014-11-19,03:00:00,407,360,110,465,150,7,2.118,170,98,4,25,3,15,57,37,0
2014-11-19,04:00:00,440,410,129,502,174,7.5,2.453,169,103,10,25,4,15,56,38,0
2014-11-19,05:00:00,424,386,148,463,197,6.6,2.759,148,107,6,25,4,15,54,39,0
2014-11-19,06:00:00,350,300,164,344,214,4.9,2.994,133,110,4,25,4,15,58,41,0
2014-11-19,07:00:00,0,0,172,0,225,0,3.113,0,113,0,25,5,15,0,43,0
2014-11-19,08:00:00,0,0,181,0,236,0,3.233,0,115,0,25,5,15,0,45,0
2014-11-19,09:00:00,309,259,196,370,256,4.2,3.427,122,119,4,25,5,15,77,49,0
2014-11-19,10:00:00,0,0,208,0,271,0,3.6,0,122,0,25,6,15,0,51,0
2014-11-19,11:00:00,364,314,199,406,262,3.9,3.329,139,123,4,25,6,19,94,54,0
2014-11-19,13:00:00,0,0,210,0,274,0,3.345,0,131,0,25,4,19,0,61,0
2014-11-19,14:00:00,426,388,226,448,292,3.4,3.46,169,135,6,25,5,19,91,63,0
2014-11-19,15:00:00,438,407,243,468,311,3.6,3.59,183,140,5,25,5,19,78,65,0
2014-11-19,16:00:00,0,0,253,0,322,0,3.732,0,143,0,12,5,19,0,66,0
2014-11-19,17:00:00,401,351,268,366,336,2.8,3.832,154,145,4,10,5,18,58,68,0
2014-11-19,18:00:00,0,0,279,0,348,0,3.967,0,147,0,10,5,16,0,69,0
2014-11-19,19:00:00,0,0,289,0,360,0,4.094,0,148,0,10,5,14,0,69,0
2014-11-19,21:00:00,0,0,312,0,382,0,4.306,0,151,0,10,5,9,0,67,0
2014-11-19,22:00:00,0,0,321,0,393,0,4.433,0,152,0,10,4,6,0,67,0
2014-11-19,23:00:00,0,0,329,0,403,0,4.586,0,154,0,10,4,6,0,66,0
2014-11-20,00:00:00,0,0,339,0,416,0,4.715,0,155,0,10,4,6,0,67,0
2014-11-20,01:00:00,422,382,351,407,421,4.6,4.723,165,156,3,10,4,6,33,66,0
2014-11-20,02:00:00,0,0,356,0,422,0,4.658,0,155,0,10,4,6,0,66,0
2014-11-20,03:00:00,402,353,355,0,418,3.7,4.383,152,153,2,10,3,6,34,65,0
2014-11-20,04:00:00,0,0,350,0,410,0,4.1,0,152,0,6,3,6,0,65,0
2014-11-20,05:00:00,0,0,347,0,404,0,3.85,0,152,0,6,3,6,0,66,0
2014-11-20,06:00:00,431,396,356,436,414,6,3.96,158,154,3,6,3,6,26,63,0
2014-11-20,07:00:00,0,0,356,0,414,0,3.96,0,154,0,6,3,6,0,63,0
2014-11-20,08:00:00,410,364,357,395,412,5.2,4.073,142,153,2,6,3,6,23,60,0
2014-11-20,09:00:00,0,0,367,0,417,0,4.06,0,156,0,6,2,6,0,58,0
2014-11-20,10:00:00,0,0,367,0,417,0,4.06,0,156,0,6,2,6,0,58,0
2014-11-20,11:00:00,0,0,373,0,418,0,4.078,0,158,0,6,3,5,0,54,0
2014-11-20,12:00:00,0,0,375,0,418,0,4.138,0,160,0,6,3,5,0,49,0
2014-11-20,13:00:00,0,0,375,0,418,0,4.138,0,160,0,6,3,5,0,49,0
2014-11-20,15:00:00,355,305,359,326,389,2.6,4.1,149,153,10,10,6,6,70,42,0
2014-11-20,16:00:00,0,0,359,0,389,0,4.1,0,153,0,10,10,10,0,42,0
2014-11-20,17:00:00,0,0,360,0,394,0,4.317,0,153,0,10,10,10,0,39,0
2014-11-20,18:00:00,0,0,360,0,394,0,4.317,0,153,0,10,10,10,0,39,0
2014-11-20,19:00:00,0,0,360,0,394,0,4.317,0,153,0,10,10,10,0,39,0
2014-11-20,20:00:00,0,0,360,0,391,0,4.42,0,153,0,10,10,10,0,37,0
2014-11-20,21:00:00,0,0,360,0,391,0,4.42,0,153,0,10,10,10,0,37,0
2014-11-20,22:00:00,0,0,360,0,391,0,4.42,0,153,0,10,10,10,0,37,0
2014-11-21,00:00:00,0,0,360,0,391,0,4.42,0,153,0,10,0,10,0,37,0
2014-11-21,01:00:00,0,0,355,0,386,0,4.375,0,150,0,10,0,10,0,38,0
2014-11-21,02:00:00,500,602,404,629,447,6.6,4.82,174,155,3,10,3,10,11,33,0
2014-11-21,03:00:00,0,0,417,0,447,0,5.1,0,156,0,10,3,10,0,33,0
2014-11-21,04:00:00,0,0,417,0,447,0,5.1,0,156,0,10,3,10,0,33,0
2014-11-21,05:00:00,0,0,417,0,447,0,5.1,0,156,0,10,3,10,0,33,0
2014-11-21,06:00:00,414,370,410,0,450,4,4.6,158,156,3,10,3,10,22,32,0
2014-11-21,07:00:00,0,0,410,0,450,0,4.6,0,156,0,10,3,10,0,32,0
2014-11-21,08:00:00,0,0,426,0,478,0,4.4,0,160,0,10,3,10,0,34,0
2014-11-21,10:00:00,324,274,388,288,414,3.5,4.175,147,157,4,10,4,10,36,35,0
2014-11-21,11:00:00,0,0,388,0,414,0,4.175,0,157,0,10,4,10,0,35,0
2014-11-21,12:00:00,0,0,388,0,414,0,4.175,0,157,0,10,4,10,0,35,0
2014-11-21,13:00:00,57,0,388,63,327,1,3.54,65,139,0,10,4,10,25,33,0
2014-11-21,15:00:00,113,85,274,96,230,1.1,3.24,91,118,37,44,28,28,28,25,0
2014-11-21,16:00:00,84,62,239,0,230,0.8,2.833,72,112,42,44,32,32,20,24,0
2014-11-21,17:00:00,38,26,209,26,196,0.4,2.486,52,104,53,53,36,36,13,23,0
2014-11-21,18:00:00,36,19,185,0,196,0.5,2.238,72,101,28,53,41,41,9,21,0
2014-11-21,19:00:00,48,19,166,0,196,0.7,2.067,95,100,4,53,35,41,13,20,0
2014-11-21,20:00:00,113,85,158,130,187,1.9,2.05,130,103,3,53,30,41,22,20,0
2014-11-21,21:00:00,67,48,148,48,169,1.2,1.973,107,103,2,53,27,41,17,20,0
2014-11-21,22:00:00,46,32,139,0,169,0.9,1.883,91,102,3,53,22,41,14,20,0
2014-11-21,23:00:00,43,26,130,0,169,0.9,1.808,86,101,3,53,17,41,13,19,0
2014-11-22,00:00:00,30,18,122,0,169,0.5,1.714,60,98,22,53,15,41,7,18,0
2014-11-22,02:00:00,17,5,79,0,104,0.2,1.257,34,89,49,53,12,41,2,18,0
2014-11-22,03:00:00,19,10,75,0,104,0.3,1.193,37,86,42,53,18,41,2,17,0
2014-11-22,04:00:00,22,10,71,0,104,0.4,1.144,43,83,36,53,22,41,5,16,0
2014-11-22,05:00:00,27,12,67,0,104,0.4,1.1,53,81,25,53,26,41,9,16,0
2014-11-22,06:00:00,28,12,46,0,104,0.4,0.888,56,76,21,53,28,41,11,15,0
2014-11-22,07:00:00,30,14,44,0,104,0.5,0.867,60,75,16,53,30,41,10,15,0
2014-11-22,08:00:00,38,17,41,18,93,0.7,0.835,76,74,3,53,29,41,16,14,0
2014-11-22,09:00:00,37,20,40,35,86,0.7,0.829,73,74,7,53,25,41,15,14,0
2014-11-22,10:00:00,39,27,28,36,58,0.8,0.7,70,70,15,53,21,41,28,14,0
2014-11-22,12:00:00,36,25,28,32,56,0.6,0.695,47,69,46,53,19,41,11,14,0
2014-11-22,13:00:00,38,26,28,0,55,0.6,0.678,50,68,47,53,23,41,10,13,0
2014-11-22,14:00:00,40,28,28,36,51,0.6,0.675,55,67,49,53,26,41,8,13,0
2014-11-22,15:00:00,43,30,26,31,44,0.4,0.646,51,66,60,60,32,41,6,12,0
2014-11-22,16:00:00,45,31,24,42,43,0.5,0.633,55,65,53,60,38,41,9,11,0
2014-11-22,17:00:00,55,39,25,60,47,0.6,0.642,72,66,34,60,41,41,15,11,0
2014-11-22,19:00:00,90,67,28,96,54,1.1,0.671,98,67,3,60,39,42,19,12,0
2014-11-22,20:00:00,117,88,28,120,54,1.4,0.65,100,65,3,60,33,42,26,12,0
2014-11-22,21:00:00,145,111,31,160,63,1.8,0.675,103,65,3,60,28,42,33,13,0
2014-11-22,22:00:00,182,137,35,222,75,2.8,0.754,105,66,3,60,22,42,37,14,0
2014-11-23,00:00:00,125,95,39,132,79,1.9,0.809,90,66,2,60,9,42,26,15,0
2014-11-23,01:00:00,133,101,47,152,92,2.2,0.946,90,69,2,60,4,42,17,16,0
2014-11-23,02:00:00,139,106,51,155,95,2.1,1.025,84,71,2,60,3,42,17,17,0
2014-11-23,03:00:00,134,102,55,121,97,1.6,1.079,79,73,2,60,2,42,21,18,0
2014-11-23,04:00:00,125,95,58,113,98,1.8,1.138,76,75,2,60,2,42,20,18,0
2014-11-23,05:00:00,123,93,62,117,99,1.9,1.2,76,75,2,60,2,42,24,19,0
2014-11-23,06:00:00,125,95,65,115,99,1.9,1.263,77,76,2,60,2,42,27,19,0
2014-11-23,08:00:00,134,102,72,139,106,2.3,1.396,79,77,2,60,2,42,28,21,0
2014-11-23,09:00:00,134,102,76,144,111,2.2,1.458,87,78,2,60,2,42,49,22,0
2014-11-23,10:00:00,122,92,78,127,115,2.1,1.513,84,78,3,60,2,42,64,23,0
2014-11-23,11:00:00,119,90,81,127,116,1.9,1.563,84,79,3,60,2,42,54,25,0
2014-11-23,12:00:00,130,99,84,133,120,2,1.621,86,81,3,60,2,42,45,26,0
2014-11-23,13:00:00,147,112,87,149,121,2.1,1.683,97,83,5,60,3,42,48,28,0
2014-11-23,15:00:00,180,136,95,218,133,2.7,1.83,118,87,5,53,3,42,44,30,0
2014-11-23,16:00:00,199,149,101,205,142,2.7,1.942,125,91,4,34,4,42,45,33,0
2014-11-23,17:00:00,178,134,105,155,146,2.1,2.004,117,93,3,16,4,42,36,33,0
2014-11-23,18:00:00,176,133,108,177,150,2.3,2.067,120,94,2,5,4,39,27,34,0
2014-11-23,19:00:00,217,167,112,225,155,3.1,2.15,137,96,2,5,4,33,27,34,0
2014-11-23,20:00:00,242,192,116,231,160,3.2,2.225,128,97,2,5,4,28,24,34,0
2014-11-23,21:00:00,226,176,119,186,161,2.7,2.263,117,97,2,5,3,22,16,33,0
2014-11-23,22:00:00,229,179,121,185,159,2.9,2.267,117,98,2,5,3,15,11,32,0
2014-11-23,23:00:00,232,182,123,182,158,3,2.296,113,98,2,5,2,9,8,31,0
2014-11-24,00:00:00,250,200,127,248,163,4.5,2.404,118,100,2,5,2,4,8,30,0
2014-11-24,01:00:00,300,250,134,322,170,5.7,2.55,127,101,3,5,2,4,8,30,0
2014-11-24,02:00:00,312,262,140,332,177,6,2.713,119,103,2,5,2,4,7,30,0
2014-11-24,03:00:00,292,242,146,290,185,4.8,2.846,112,104,2,5,2,4,7,29,0
2014-11-24,04:00:00,244,194,150,213,189,3.7,2.925,97,105,2,5,2,4,6,28,0
2014-11-24,05:00:00,186,140,152,142,190,2.3,2.942,102,106,2,5,2,4,12,28,0
2014-11-24,06:00:00,169,128,153,0,193,2.2,2.954,89,106,2,5,2,4,13,27,0
2014-11-24,07:00:00,110,83,153,0,196,1.4,2.925,77,107,2,5,2,4,14,27,0
2014-11-24,08:00:00,62,44,150,0,199,0.9,2.867,72,106,3,5,2,4,18,27,0
2014-11-24,09:00:00,55,39,148,0,201,0.9,2.813,66,105,7,7,3,4,19,25,0
2014-11-24,10:00:00,48,33,145,41,197,0.8,2.758,54,104,20,20,5,5,16,23,0
2014-11-24,11:00:00,46,32,143,0,201,0.6,2.704,46,103,33,33,9,9,10,21,0
2014-11-24,12:00:00,33,23,140,0,204,0.5,2.642,37,100,48,48,15,15,10,20,0
2014-11-24,13:00:00,32,22,136,0,208,0.4,2.571,32,98,59,59,22,22,11,18,0
2014-11-24,15:00:00,25,17,127,25,197,0.4,2.396,48,92,54,63,36,36,12,16,0
2014-11-24,17:00:00,57,35,118,63,182,0.6,2.246,74,88,32,63,44,44,13,13,0
2014-11-24,18:00:00,60,43,114,67,175,0.8,2.183,89,86,12,63,43,44,19,13,0
2014-11-24,19:00:00,62,44,109,69,165,0.9,2.092,85,84,11,63,40,44,19,13,0
2014-11-24,20:00:00,82,60,103,77,156,1.1,2.004,95,83,3,63,34,44,23,13,0
2014-11-24,21:00:00,97,72,99,98,150,1.5,1.954,100,82,2,63,27,44,26,13,0
2014-11-24,22:00:00,124,94,95,149,148,2.3,1.929,104,81,3,63,20,44,37,14,0
2014-11-24,23:00:00,145,111,92,169,147,2.3,1.9,98,81,2,63,13,44,44,16,0
2014-11-25,00:00:00,120,91,88,133,140,2,1.796,87,80,2,63,8,44,41,17,0
2014-11-25,01:00:00,100,75,80,93,126,1.5,1.621,81,78,2,63,5,44,37,18,0
2014-11-25,02:00:00,104,78,73,96,111,1.5,1.433,80,76,2,63,3,44,28,19,0
2014-11-25,03:00:00,120,91,67,114,100,2.3,1.329,83,75,2,63,2,44,26,20,0
2014-11-25,04:00:00,166,126,64,188,98,3,1.3,90,75,4,63,2,44,23,21,0
2014-11-25,05:00:00,170,129,63,204,102,3.1,1.333,85,74,2,63,2,44,20,21,0
2014-11-25,06:00:00,158,120,63,186,107,2.8,1.358,82,74,2,63,2,44,18,21,0
2014-11-25,07:00:00,150,115,64,153,110,2.6,1.408,81,74,2,63,2,44,24,22,0
2014-11-25,08:00:00,160,122,68,160,112,2.9,1.492,79,74,2,63,2,44,26,22,0
2014-11-25,09:00:00,207,157,72,211,117,3.6,1.604,86,75,2,63,2,44,43,23,0
2014-11-25,10:00:00,193,145,77,207,126,3.3,1.708,96,77,2,63,2,44,52,25,0
2014-11-25,12:00:00,195,146,84,292,133,2.5,1.843,108,81,5,63,2,44,60,27,0
2014-11-25,13:00:00,217,167,91,213,137,2.2,1.922,113,84,9,63,3,44,68,30,0
2014-11-25,14:00:00,249,199,100,246,145,2.2,2.013,126,89,18,54,6,44,65,33,0
2014-11-25,16:00:00,230,180,114,194,159,2,2.138,91,92,43,43,16,44,51,37,0
2014-11-25,17:00:00,222,172,119,188,165,1.7,2.183,87,92,39,43,20,43,43,38,0
2014-11-25,18:00:00,246,196,126,221,171,1.8,2.225,108,93,13,43,22,40,37,39,0
2014-11-25,20:00:00,319,269,141,286,186,2.5,2.329,120,96,5,43,22,27,46,40,0
2014-11-25,21:00:00,328,278,150,306,195,2.6,2.375,124,97,2,43,21,22,46,41,0
2014-11-25,22:00:00,324,274,157,309,202,3.3,2.417,122,97,2,43,19,22,27,41,0
2014-11-25,23:00:00,352,302,165,360,209,4.5,2.508,129,99,2,43,14,22,25,40,0
2014-11-26,00:00:00,383,333,175,396,220,5.4,2.65,131,100,3,43,9,22,18,39,0
2014-11-26,01:00:00,399,349,187,428,234,5.7,2.825,129,102,3,43,4,22,16,38,0
2014-11-26,02:00:00,354,304,196,349,245,4.9,2.967,117,104,2,43,3,22,17,38,0
2014-11-26,03:00:00,313,263,203,283,252,4.6,3.063,102,105,2,43,3,22,17,37,0
2014-11-26,05:00:00,270,220,211,233,256,3.6,3.087,93,106,2,43,2,22,21,38,0
2014-11-26,06:00:00,268,218,215,252,259,4.2,3.148,96,106,2,43,2,22,24,38,0
2014-11-26,07:00:00,278,228,220,261,264,4.9,3.248,92,107,2,43,2,22,22,38,0
2014-11-26,08:00:00,261,211,224,248,267,4.3,3.309,96,108,2,43,2,22,26,38,0
2014-11-26,09:00:00,253,203,227,266,270,4.2,3.358,104,108,2,43,2,22,37,37,0
2014-11-26,10:00:00,257,207,229,264,272,3.9,3.383,112,109,2,43,2,22,50,37,0
2014-11-26,11:00:00,288,238,234,299,276,4,3.454,128,110,2,43,2,22,69,38,0
2014-11-26,12:00:00,289,239,238,293,276,3.3,3.488,133,111,2,43,2,22,88,39,0
2014-11-26,13:00:00,296,246,241,291,279,3,3.521,138,112,4,43,2,22,92,40,0
2014-11-26,14:00:00,306,256,243,296,281,2.9,3.55,143,113,5,43,3,22,88,41,0
2014-11-26,15:00:00,339,289,247,335,286,3.1,3.596,158,115,4,43,3,22,79,41,0
2014-11-26,16:00:00,391,341,254,413,295,3.8,3.671,188,119,2,39,3,22,64,42,0
2014-11-26,17:00:00,400,350,261,410,304,3.6,3.75,180,123,2,13,3,22,63,43,0
2014-11-26,21:00:00,420,380,282,451,332,4.7,4.046,136,128,2,5,3,19,25,43,0
2014-11-26,22:00:00,462,443,289,558,343,5.2,4.125,146,129,3,5,2,14,25,42,0
2014-11-26,23:00:00,484,476,296,584,352,5.9,4.183,148,130,3,5,2,9,27,43,0
2014-11-27,00:00:00,500,502,303,597,360,6.4,4.225,146,131,3,5,2,4,27,43,0
2014-11-27,01:00:00,494,490,309,580,367,6.4,4.254,147,132,2,5,2,3,29,43,0
2014-11-27,02:00:00,440,409,314,462,371,4.8,4.25,144,133,2,5,2,3,34,44,0
2014-11-27,03:00:00,290,240,313,0,375,1.9,4.138,107,133,2,5,2,3,44,45,0
2014-11-27,04:00:00,153,117,307,121,369,1.4,4.033,85,132,4,5,3,3,26,46,0
2014-11-27,05:00:00,77,56,300,0,375,0.7,3.913,53,131,18,18,5,5,16,45,0
2014-11-27,06:00:00,23,16,292,0,381,0.3,3.75,30,128,47,47,10,10,12,45,0
2014-11-27,07:00:00,35,11,283,35,370,0.2,3.554,26,125,56,56,17,17,11,44,0
2014-11-27,08:00:00,42,9,275,42,360,0.3,3.388,30,122,53,56,23,23,5,44,0
2014-11-27,09:00:00,61,10,266,71,351,0.3,3.225,33,120,51,56,29,29,6,42,0
2014-11-27,10:00:00,36,14,258,36,340,0.3,3.075,33,116,52,56,35,35,5,40,0
2014-11-27,11:00:00,0,0,259,0,342,0,3.035,0,116,0,56,40,40,0,39,0
2014-11-27,12:00:00,0,0,260,0,345,0,3.023,0,115,0,56,46,46,0,37,0
2014-11-27,13:00:00,26,0,261,26,331,0.3,2.9,26,110,64,64,54,54,4,33,0
2014-11-27,14:00:00,21,13,249,21,316,0.3,2.782,23,104,67,67,57,57,2,29,0
2014-11-27,15:00:00,28,17,236,28,300,0.3,2.655,34,99,53,67,57,57,4,26,0
2014-11-27,16:00:00,25,11,221,25,280,0.4,2.5,42,92,45,67,55,57,6,23,0
2014-11-27,18:00:00,45,23,189,45,240,0.5,2.223,65,82,19,67,47,57,9,18,0
2014-11-27,19:00:00,44,22,173,44,221,0.6,2.082,78,79,8,67,41,57,20,17,0
2014-11-27,20:00:00,50,29,157,50,200,0.6,1.918,81,76,5,67,37,57,18,16,0
2014-11-27,21:00:00,48,27,140,48,179,0.7,1.736,80,73,5,67,30,57,20,16,0
2014-11-27,22:00:00,66,37,121,82,154,0.7,1.532,82,70,5,67,22,57,22,16,0
2014-11-27,23:00:00,71,33,100,91,128,0.5,1.286,28,65,59,67,23,57,16,16,0
2014-11-28,00:00:00,61,30,77,71,100,0.5,1.018,18,59,71,71,26,57,15,15,0
2014-11-28,01:00:00,55,34,56,59,73,0.6,0.755,45,54,40,71,27,57,16,14,0
2014-11-28,02:00:00,61,40,38,71,52,0.8,0.573,71,51,12,71,26,57,15,14,0
2014-11-28,03:00:00,67,38,28,84,54,1.1,0.536,83,50,3,71,25,57,17,12,0
2014-11-28,04:00:00,92,63,26,133,54,1.9,0.559,86,50,3,71,25,57,23,12,0
2014-11-28,05:00:00,112,77,27,174,60,2.4,0.636,88,52,3,71,25,57,28,13,0
2014-11-28,06:00:00,92,68,29,131,63,2.1,0.718,86,54,3,71,24,57,33,14,0
2014-11-28,07:00:00,99,74,32,138,68,2.4,0.818,86,57,3,71,17,57,36,15,0
2014-11-28,08:00:00,103,76,36,155,73,2.3,0.909,85,59,3,71,9,57,37,16,0
2014-11-28,09:00:00,114,82,39,178,78,2.4,1.005,87,62,4,71,4,57,34,18,0
2014-11-28,10:00:00,107,70,42,163,84,2,1.082,86,64,5,71,3,57,34,19,0
2014-11-28,11:00:00,99,74,43,139,86,1.7,1.109,85,65,9,71,4,57,33,20,0
2014-11-28,12:00:00,97,71,44,144,89,1.5,1.125,79,66,22,71,7,57,29,20,0
2014-11-28,13:00:00,97,68,45,143,93,1.1,1.158,67,67,44,71,12,57,23,21,0
2014-11-28,15:00:00,120,91,50,161,102,1.1,1.23,74,71,45,71,19,55,21,22,0
2014-11-28,16:00:00,105,79,54,160,110,1.1,1.254,74,72,41,71,27,53,22,23,0
2014-11-28,17:00:00,114,86,57,160,116,1.1,1.283,83,74,26,71,30,47,24,24,0
2014-11-28,18:00:00,115,87,60,176,121,1.2,1.313,89,75,16,71,31,41,21,24,0
2014-11-28,19:00:00,156,119,64,192,127,1.5,1.35,92,75,15,71,32,37,25,24,0
2014-11-28,20:00:00,198,148,69,220,135,1.7,1.396,105,76,4,71,30,32,29,25,0
2014-11-28,21:00:00,236,186,75,256,143,2.1,1.454,105,77,3,71,25,32,34,25,0
2014-11-28,22:00:00,253,203,82,276,151,2.3,1.521,99,78,3,71,19,32,39,26,0
2014-11-28,23:00:00,257,207,89,264,158,2.4,1.6,92,81,2,71,14,32,46,27,0
2014-11-29,00:00:00,259,209,97,255,166,2.5,1.683,88,84,2,47,9,32,51,29,0
2014-11-29,01:00:00,277,227,105,265,175,2.5,1.763,89,85,2,47,6,32,56,31,0
2014-11-29,02:00:00,280,230,113,262,183,2.7,1.842,91,86,2,47,4,32,40,32,0
2014-11-29,03:00:00,282,232,121,278,191,3.5,1.942,90,87,2,47,3,32,28,32,0
2014-11-29,04:00:00,288,238,128,282,197,3.5,2.008,91,87,3,47,2,32,29,32,0
2014-11-29,05:00:00,300,250,135,290,202,4.1,2.079,87,87,3,47,2,32,23,32,0
2014-11-29,06:00:00,300,250,143,322,210,4.8,2.192,98,87,3,47,2,32,22,32,0
2014-11-29,07:00:00,323,273,151,339,218,5,2.3,95,88,3,47,3,32,25,31,0
2014-11-29,08:00:00,328,278,160,341,226,5.6,2.438,97,88,3,47,3,32,20,30,0
2014-11-29,09:00:00,343,293,168,390,235,5.7,2.575,106,89,3,47,3,32,26,30,0
2014-11-29,10:00:00,354,304,178,380,244,5.2,2.708,109,90,2,47,3,32,28,30,0
2014-11-29,11:00:00,378,328,189,417,255,4.9,2.842,116,91,2,47,3,32,31,30,0
2014-11-29,12:00:00,376,326,199,414,267,4.3,2.958,120,93,2,47,3,32,34,30,0
2014-11-29,13:00:00,364,314,210,374,276,3.7,3.067,121,95,2,47,3,32,35,31,0
2014-11-29,15:00:00,426,389,234,519,304,4.6,3.346,135,100,2,41,2,32,25,31,0
2014-11-29,16:00:00,456,385,247,556,321,4.3,3.479,131,103,2,26,2,32,26,31,0
2014-11-29,18:00:00,374,324,268,437,347,3.8,3.704,117,105,2,15,2,32,21,31,0
2014-11-29,19:00:00,385,335,277,438,357,4,3.808,115,106,2,4,2,30,20,31,0
2014-11-29,20:00:00,376,326,284,459,367,3.9,3.9,111,107,2,3,2,25,17,30,0
2014-11-29,21:00:00,366,316,289,413,373,3.8,3.971,106,107,2,3,2,19,18,30,0
2014-11-29,22:00:00,362,312,294,398,378,3.9,4.038,104,107,2,3,2,14,20,29,0
2014-11-29,23:00:00,345,295,298,363,383,3.5,4.083,96,107,2,3,2,9,20,28,0
2014-11-30,00:00:00,307,257,300,301,384,3.2,4.113,89,107,2,3,2,6,22,27,0
2014-11-30,01:00:00,313,263,301,310,386,3.4,4.15,91,107,2,3,2,4,24,25,0
2014-11-30,02:00:00,269,219,301,0,392,2.9,4.158,91,107,2,3,2,3,23,25,0
2014-11-30,03:00:00,226,176,298,0,397,2.5,4.117,84,107,2,3,2,3,23,24,0
2014-11-30,04:00:00,236,186,296,0,402,2.7,4.083,84,107,2,3,2,3,22,24,0
2014-11-30,05:00:00,243,193,294,0,408,2.8,4.029,88,107,2,3,2,3,25,24,0
2014-11-30,06:00:00,260,210,292,0,413,2.8,3.946,95,107,2,3,2,3,25,24,0
2014-11-30,07:00:00,242,192,289,0,417,2.3,3.833,93,107,2,3,2,3,32,25,0
2014-11-30,08:00:00,65,47,279,0,421,0.7,3.629,54,105,20,20,4,4,24,25,0
2014-11-30,09:00:00,19,13,267,0,423,0.4,3.408,28,101,50,50,10,10,17,24,0
2014-11-30,10:00:00,18,9,255,0,426,0.4,3.208,26,98,57,57,17,17,11,24,0
2014-11-30,11:00:00,44,18,242,44,401,0.4,3.021,24,94,61,61,25,25,12,23,0
2014-11-30,12:00:00,29,14,229,29,375,0.3,2.854,19,90,68,68,33,33,11,22,0
2014-11-30,13:00:00,108,21,217,166,362,0.2,2.708,14,86,76,76,42,42,2,21,0
2014-11-30,14:00:00,155,25,203,259,347,0.2,2.537,13,80,80,80,52,52,4,20,0
2014-11-30,15:00:00,152,31,188,253,329,0.2,2.354,17,76,78,80,61,61,4,19,0
2014-11-30,16:00:00,112,19,173,174,304,0.2,2.183,17,71,77,80,68,68,4,18,0
2014-11-30,17:00:00,99,17,159,148,279,0.2,2.029,18,66,74,80,71,71,2,17,0
2014-11-30,18:00:00,121,15,146,192,263,0.2,1.879,20,62,68,80,73,73,2,16,0
2014-11-30,20:00:00,262,25,121,393,247,0.3,1.575,18,55,66,80,73,73,2,15,0
2014-12-01,00:00:00,443,39,76,543,295,0.3,1.021,10,40,65,80,69,73,2,12,0
2014-12-01,05:00:00,80,5,40,109,282,0.3,0.525,8,27,57,80,66,73,7,8,0
2014-12-01,06:00:00,55,12,30,59,268,0.3,0.4,8,22,58,80,62,73,7,8,0
2014-12-01,07:00:00,50,7,21,50,255,0.3,0.3,15,19,53,80,58,73,6,6,0
2014-12-01,09:00:00,24,6,19,24,233,0.4,0.283,20,15,50,80,54,73,8,5,0
2014-12-01,10:00:00,22,7,20,22,233,0.4,0.278,16,15,56,80,55,73,10,5,0
2014-12-01,11:00:00,22,7,19,22,232,0.4,0.278,16,14,56,80,55,73,10,5,0
2014-12-01,12:00:00,21,4,19,16,231,0.4,0.283,14,14,65,80,56,73,9,5,0
2014-12-01,13:00:00,28,0,19,0,234,0.3,0.287,12,14,89,89,60,73,7,5,0
2014-12-01,16:00:00,13,5,16,13,215,0.3,0.313,17,14,0,0,0,73,6,5,0
2014-12-01,17:00:00,16,11,15,14,208,0.3,0.317,25,14,51,89,64,73,5,5,0
2014-12-01,18:00:00,18,9,15,17,200,0.4,0.325,36,15,37,89,61,73,8,6,0
2014-12-01,19:00:00,21,10,15,19,188,0.4,0.329,42,16,29,89,57,73,14,6,0
2014-12-01,20:00:00,25,14,14,24,171,0.5,0.338,49,17,23,89,50,73,12,7,0
2014-12-01,21:00:00,19,10,13,19,142,0.4,0.346,37,18,38,89,41,72,9,7,0
2014-12-01,22:00:00,17,9,13,14,117,0.4,0.35,34,19,39,89,41,71,9,7,0
2014-12-01,23:00:00,16,10,12,11,94,0.4,0.354,31,20,41,89,37,69,8,7,0
2014-12-02,00:00:00,21,11,11,15,69,0.4,0.358,41,21,30,89,36,67,10,8,0
2014-12-02,01:00:00,17,6,10,10,48,0.4,0.363,34,22,36,89,34,66,6,8,0
2014-12-02,02:00:00,19,12,9,12,37,0.4,0.363,38,23,33,89,34,66,8,8,0
2014-12-02,03:00:00,17,6,8,13,30,0.4,0.371,33,24,38,89,35,66,5,8,0
2014-12-02,04:00:00,25,17,9,22,26,0.6,0.388,49,26,16,89,34,66,7,8,0
2014-12-02,05:00:00,22,10,9,14,21,0.5,0.396,44,27,22,89,32,64,10,8,0
2014-12-02,06:00:00,19,13,9,0,0,0.5,0.404,35,29,29,89,31,64,13,8,0
2014-12-02,07:00:00,20,12,9,15,18,0.5,0.413,39,30,25,89,29,64,16,9,0
2014-12-02,08:00:00,22,10,9,16,17,0.6,0.421,43,30,21,89,28,64,13,9,0
2014-12-02,09:00:00,30,15,10,30,17,0.8,0.438,55,32,13,89,25,64,20,10,0
2014-12-02,10:00:00,47,18,10,47,18,1,0.463,59,34,12,89,22,64,14,10,0
2014-12-03,13:00:00,17,0,0,0,0,0,0,15,55,52,64,44,44,10,24,0
2014-12-03,15:00:00,53,12,51,55,86,0.1,0.99,15,51,78,78,54,54,5,22,0
2014-12-03,16:00:00,88,11,49,125,88,0.1,0.95,17,49,80,80,60,60,6,21,0
2014-12-03,17:00:00,74,12,48,98,89,0.1,0.913,22,48,71,80,64,64,5,20,0
2014-12-03,18:00:00,70,16,45,89,87,0.1,0.865,30,46,58,80,67,67,4,19,0
2014-12-03,19:00:00,63,10,41,75,83,0.1,0.813,30,44,57,80,66,67,5,18,0
2014-12-03,20:00:00,67,9,37,84,81,0.1,0.757,25,42,64,80,66,67,4,16,0
2014-12-03,21:00:00,63,14,33,76,78,0.1,0.696,20,39,70,80,68,68,3,15,0
2014-12-03,22:00:00,57,9,29,64,75,0.1,0.626,18,36,71,80,69,69,4,13,0
2014-12-03,23:00:00,48,11,25,48,70,0.1,0.552,16,33,72,80,68,69,6,12,0
2014-12-04,00:00:00,39,10,20,39,65,0.1,0.47,17,31,72,80,67,69,11,11,0
2014-12-04,01:00:00,31,9,16,31,60,0.1,0.365,16,27,70,80,67,69,12,10,0
2014-12-04,02:00:00,36,10,12,36,55,0.1,0.265,16,25,67,80,68,69,12,10,0
2014-12-04,03:00:00,40,10,11,40,55,0.1,0.239,15,23,66,80,69,69,11,9,0
2014-12-04,04:00:00,27,10,11,27,55,0.1,0.222,16,22,65,80,69,69,6,9,0
2014-12-04,05:00:00,22,9,10,22,55,0.1,0.209,16,21,66,80,69,69,4,9,0
2014-12-04,06:00:00,21,11,10,20,55,0.1,0.196,16,21,65,80,68,69,9,9,0
2014-12-04,07:00:00,19,10,11,19,54,0.1,0.183,24,21,57,80,66,69,7,9,0
2014-12-04,08:00:00,22,9,10,22,54,0.1,0.17,30,20,51,80,63,69,8,8,0
2014-12-04,09:00:00,32,7,10,32,54,0.1,0.152,27,20,55,80,62,69,7,8,0
2014-12-04,10:00:00,49,10,10,49,53,0.1,0.13,20,19,64,80,61,69,11,8,0
2014-12-04,11:00:00,54,9,10,57,53,0.1,0.117,16,19,71,80,62,69,8,7,0
2014-12-04,12:00:00,57,13,10,64,53,0.1,0.104,16,19,72,80,63,69,11,7,0
2014-12-04,13:00:00,48,15,11,48,53,0.1,0.104,15,19,76,80,64,69,10,7,0
2014-12-04,14:00:00,44,8,11,44,53,0.1,0.1,16,20,77,80,65,69,10,7,0
2014-12-04,15:00:00,46,13,11,46,52,0.1,0.1,19,20,76,80,68,69,7,8,0
2014-12-04,16:00:00,56,10,11,62,50,0.1,0.1,22,20,74,77,71,71,7,8,0
2014-12-04,17:00:00,55,11,11,59,48,0.1,0.1,28,20,65,77,72,72,7,8,0
2014-12-04,18:00:00,52,10,10,53,47,0.1,0.1,35,20,57,77,71,72,6,8,0
2014-12-04,20:00:00,44,13,10,44,44,0.1,0.1,33,21,57,77,67,72,5,8,0
2014-12-04,21:00:00,39,12,10,39,42,0.1,0.1,39,22,48,77,64,72,4,8,0
2014-12-04,22:00:00,39,9,10,39,41,0.1,0.1,39,23,46,77,60,72,5,8,0
2014-12-04,23:00:00,34,17,11,34,41,0.1,0.1,41,24,42,77,56,72,9,8,0
2014-12-05,00:00:00,28,11,11,28,40,0.1,0.1,26,24,60,77,54,72,4,8,0
2014-12-05,01:00:00,19,6,11,19,40,0.1,0.1,26,24,58,77,53,72,3,7,0
2014-12-05,02:00:00,22,9,11,22,39,0.1,0.1,39,25,44,77,51,72,3,7,0
2014-12-05,03:00:00,30,8,10,30,39,0.3,0.108,45,27,38,77,49,72,3,7,0
2014-12-05,04:00:00,22,8,10,22,39,0.3,0.117,41,28,39,77,47,72,7,7,0
2014-12-05,05:00:00,24,13,11,23,39,0.4,0.129,48,29,30,77,45,72,9,7,0
2014-12-05,06:00:00,25,10,10,24,39,0.4,0.142,50,30,29,77,42,72,10,7,0
2014-12-05,07:00:00,34,12,11,34,39,0.6,0.162,64,32,12,77,39,72,12,7,0
2014-12-05,08:00:00,30,16,11,26,40,0.5,0.179,60,33,18,77,34,72,14,7,0
2014-12-05,09:00:00,34,13,11,34,40,0.6,0.2,54,35,27,77,30,72,18,8,0
2014-12-05,10:00:00,30,12,11,30,39,0,0,46,36,37,77,29,72,0,0,0
2014-12-05,11:00:00,34,17,12,34,38,0.5,0.222,0,0,0,0,0,72,14,8,0
2014-12-05,12:00:00,26,17,12,26,36,0.4,0.235,31,37,62,77,31,72,15,8,0
2014-12-05,13:00:00,23,11,12,12,35,0.3,0.243,22,37,72,77,37,72,0,0,0
2014-12-05,14:00:00,25,10,12,15,34,0,0,24,38,77,77,44,72,12,8,0
2014-12-05,15:00:00,24,11,12,16,32,0,0,28,38,76,77,53,72,11,8,0
2014-12-05,19:00:00,142,108,17,164,35,1.6,0.367,104,42,2,77,51,67,48,11,0
2014-12-05,20:00:00,152,116,21,162,39,1.7,0.443,104,46,3,77,41,64,55,13,0
2014-12-05,22:00:00,186,140,31,185,51,1.9,0.605,108,52,3,77,17,61,59,18,0
2014-12-05,23:00:00,189,142,36,176,57,2,0.695,108,55,3,77,5,61,64,21,0
2014-12-06,00:00:00,199,149,42,176,63,2.2,0.795,106,59,3,77,5,61,66,23,0
2014-12-06,01:00:00,193,145,48,175,70,2.1,0.89,103,63,2,77,4,61,71,27,0
2014-12-06,02:00:00,249,199,56,253,80,5.2,1.133,126,67,5,77,3,61,78,30,0
2014-12-06,03:00:00,227,177,63,216,87,4.4,1.329,119,70,2,77,3,61,69,33,0
2014-12-06,04:00:00,196,147,69,174,94,4,1.505,107,74,2,77,3,61,53,35,0
2014-12-06,05:00:00,140,107,73,114,97,2.7,1.614,90,76,2,77,3,61,35,36,0
2014-12-06,06:00:00,72,52,74,0,0,1.4,1.662,77,77,2,77,3,61,30,37,0
2014-12-06,07:00:00,55,39,76,0,0,1.2,1.69,74,77,2,77,2,61,24,38,0
2014-12-06,08:00:00,58,41,77,44,104,1.1,1.719,77,78,2,77,2,61,41,39,0
2014-12-06,09:00:00,54,38,78,50,105,1.1,1.743,75,79,6,77,3,61,36,40,0
2014-12-06,10:00:00,45,31,78,45,106,0.9,1.705,68,80,17,77,4,61,22,39,0
2014-12-06,11:00:00,48,33,79,47,106,0.7,1.714,49,79,41,77,9,61,23,39,0
2014-12-06,12:00:00,38,26,79,30,107,0.6,1.723,41,79,57,77,16,61,20,40,0
2014-12-06,13:00:00,23,16,80,17,107,0.4,1.727,35,80,69,77,24,61,17,39,0
2014-12-06,15:00:00,51,30,81,51,113,0.6,1.625,61,82,44,69,38,61,19,39,0
2014-12-06,16:00:00,80,59,83,98,116,1,1.658,97,85,11,69,39,61,28,40,0
2014-12-06,17:00:00,94,70,86,108,120,0.9,1.688,96,86,10,69,39,61,26,41,0
2014-12-06,18:00:00,93,69,87,97,122,1,1.7,97,86,4,69,38,51,27,41,0
2014-12-06,19:00:00,97,72,86,95,119,1.3,1.688,98,86,2,69,33,41,26,40,0
2014-12-06,20:00:00,139,106,85,139,117,2,1.7,104,86,2,69,26,39,42,40,0
2014-12-06,21:00:00,166,126,85,171,117,2.7,1.742,95,85,2,69,18,39,62,40,0
2014-12-06,22:00:00,113,85,83,100,113,1.8,1.737,81,84,4,69,10,39,49,39,0
2014-12-06,23:00:00,105,79,80,85,109,1.6,1.721,82,83,5,69,5,39,52,39,0
2014-12-07,00:00:00,103,77,77,86,105,1.6,1.696,88,83,4,69,4,39,48,38,0
2014-12-07,01:00:00,223,173,78,197,106,2.4,1.708,95,82,4,69,3,39,72,38,0
2014-12-07,02:00:00,212,162,77,181,102,2.4,1.592,86,81,2,69,3,39,55,37,0
2014-12-07,03:00:00,148,113,74,129,98,2.3,1.504,81,79,2,69,3,39,58,37,0
2014-12-07,04:00:00,100,75,71,91,94,2.4,1.438,79,78,4,69,3,39,59,37,0
2014-12-07,05:00:00,82,60,69,77,92,2.2,1.417,72,77,3,69,4,39,52,38,0
2014-12-07,06:00:00,87,64,70,86,92,2.3,1.454,71,77,3,69,3,39,44,38,0
2014-12-07,07:00:00,82,60,70,80,91,2,1.487,69,77,3,69,3,39,38,39,0
2014-12-07,08:00:00,88,65,71,84,93,2.3,1.537,67,76,3,69,3,39,31,39,0
2014-12-07,09:00:00,97,72,73,101,95,2.5,1.596,65,76,6,69,3,39,26,38,0
2014-12-07,10:00:00,107,80,75,108,98,2.5,1.662,72,76,8,69,4,39,42,39,0
2014-12-07,11:00:00,103,77,77,94,100,1.9,1.712,68,77,23,69,7,39,49,40,0
2014-12-07,12:00:00,64,44,78,77,102,1,1.729,42,77,43,69,12,39,35,41,0
2014-12-07,13:00:00,50,16,78,50,104,0.4,1.729,17,76,66,66,19,39,18,41,0
2014-12-07,14:00:00,48,16,77,48,101,0.3,1.725,18,75,68,68,28,39,14,41,0
2014-12-07,15:00:00,43,15,76,43,101,0.3,1.712,17,73,69,69,36,39,11,40,0
2014-12-07,16:00:00,49,10,74,49,99,0.3,1.683,20,70,67,69,44,44,9,39,0
2014-12-07,17:00:00,44,12,72,44,96,0.3,1.658,26,67,60,69,50,50,12,39,0
2014-12-07,18:00:00,45,14,70,45,94,0.4,1.633,32,64,52,69,56,56,17,38,0
2014-12-07,19:00:00,41,15,67,41,92,0.4,1.596,37,62,43,69,58,58,18,38,0
2014-12-07,20:00:00,38,15,64,38,88,0.4,1.529,43,59,32,69,57,58,11,37,0
2014-12-07,21:00:00,37,19,59,37,82,0.5,1.437,45,57,31,69,53,58,14,35,0
2014-12-07,22:00:00,35,13,56,35,79,0.6,1.388,51,56,27,69,48,58,18,33,0
2014-12-07,23:00:00,26,13,53,26,77,0.4,1.338,43,54,37,69,44,58,14,32,0
2014-12-08,00:00:00,31,13,51,31,75,0.5,1.292,50,53,29,69,39,58,15,31,0
2014-12-08,01:00:00,25,11,44,25,67,0.5,1.212,43,51,35,69,36,58,13,28,0
2014-12-08,02:00:00,27,13,38,27,61,0.5,1.133,39,49,37,69,34,58,14,26,0
2014-12-08,03:00:00,25,13,34,25,57,0.5,1.058,39,47,37,69,33,58,17,25,0
2014-12-08,04:00:00,30,21,31,24,54,0.5,0.979,46,46,32,69,33,58,17,23,0
2014-12-08,05:00:00,24,12,29,24,52,0.5,0.908,41,44,37,69,34,58,19,22,0
2014-12-08,06:00:00,28,19,27,27,49,0.7,0.842,56,44,21,69,33,58,23,21,0
2014-12-08,07:00:00,28,16,26,28,47,0.6,0.783,53,43,25,69,32,58,12,20,0
2014-12-08,08:00:00,37,17,24,30,45,0.7,0.717,73,43,7,69,29,58,12,19,0
2014-12-08,09:00:00,48,22,22,48,43,1,0.654,71,43,10,69,26,58,16,18,0
2014-12-08,10:00:00,51,22,19,52,40,1,0.592,70,43,15,69,23,58,14,17,0
2014-12-08,11:00:00,44,17,17,44,38,0.8,0.546,57,43,29,69,22,58,16,16,0
2014-12-08,12:00:00,59,41,16,67,38,1.1,0.55,60,44,32,69,22,58,24,15,0
2014-12-08,13:00:00,117,88,19,122,41,1.5,0.596,67,46,36,69,22,58,51,17,0
2014-12-08,14:00:00,139,106,23,130,44,1.4,0.642,61,47,52,69,26,58,51,18,0
2014-12-08,15:00:00,127,96,27,117,47,1.3,0.683,60,49,54,67,29,58,35,19,0
2014-12-08,16:00:00,147,112,31,140,51,1.4,0.729,66,51,52,60,35,58,44,21,0
2014-12-08,17:00:00,168,127,36,153,56,1.5,0.779,79,53,39,54,39,58,48,22,0
2014-12-08,18:00:00,158,120,40,142,60,1.5,0.825,85,56,27,54,40,58,50,24,0
2014-12-08,19:00:00,143,109,44,126,63,1.4,0.867,88,58,17,54,39,57,46,25,0
2014-12-08,20:00:00,139,106,48,128,67,1.5,0.912,98,60,6,54,35,53,46,26,0
2014-12-08,21:00:00,139,106,51,128,71,1.5,0.954,98,62,5,54,32,48,44,27,0
2014-12-08,22:00:00,148,113,56,136,75,1.7,1,99,64,5,54,26,44,44,29,0
2014-12-08,23:00:00,158,120,60,148,80,2.4,1.083,101,67,5,54,20,40,47,30,0
2014-12-09,00:00:00,162,123,65,150,85,2.1,1.15,95,69,5,54,14,40,48,31,0
2014-12-09,01:00:00,324,274,76,349,99,6.1,1.383,128,72,10,54,10,40,67,34,0
2014-12-09,02:00:00,412,368,90,429,115,7.2,1.662,124,76,9,54,8,40,79,36,0
2014-12-09,03:00:00,416,374,105,451,133,6.6,1.917,114,79,8,54,7,40,72,39,0
2014-12-09,04:00:00,403,354,119,401,149,6.4,2.162,107,81,9,54,7,40,61,40,0
2014-12-09,05:00:00,383,333,133,362,163,6.2,2.4,100,84,5,54,7,40,50,42,0
2014-12-09,06:00:00,360,310,145,335,176,5.9,2.617,100,86,4,54,7,40,52,43,0
2014-12-09,07:00:00,331,281,156,298,187,5.4,2.817,100,88,4,54,7,40,58,45,0
2014-12-09,08:00:00,332,282,167,313,199,6,3.038,103,89,4,54,7,40,61,47,0
2014-12-09,09:00:00,352,302,179,347,211,6.4,3.263,106,90,4,54,6,40,67,49,0
2014-12-09,10:00:00,360,310,190,359,224,6.3,3.483,113,92,4,54,5,40,71,51,0
2014-12-09,11:00:00,371,321,203,331,236,6,3.7,123,95,4,54,5,40,77,54,0
2014-12-09,12:00:00,392,342,216,383,249,6,3.904,134,98,4,54,4,40,83,56,0
2014-12-09,13:00:00,408,362,227,408,261,6.2,4.1,143,101,3,54,4,40,86,58,0
2014-12-09,14:00:00,432,398,239,441,274,6.3,4.304,150,105,3,54,4,40,87,59,0
2014-12-09,15:00:00,436,404,252,473,289,6.6,4.525,151,109,2,52,4,40,96,62,0
2014-12-09,16:00:00,421,381,263,462,302,6.2,4.725,148,112,2,39,3,40,98,64,0
2014-12-09,17:00:00,425,387,274,447,314,6.5,4.933,149,115,2,27,3,40,108,67,0
2014-12-09,18:00:00,418,377,285,432,327,6.6,5.146,147,117,2,17,3,39,104,69,0
2014-12-09,19:00:00,418,377,296,424,339,6.7,5.367,146,120,2,10,2,35,109,71,0
2014-12-09,20:00:00,410,365,307,401,350,6.6,5.579,146,122,2,10,2,32,107,74,0
2014-12-09,21:00:00,407,360,317,392,361,6.7,5.796,144,124,2,10,2,26,114,77,0
2014-12-09,22:00:00,418,376,328,421,373,7.2,6.025,148,126,2,10,2,20,124,80,0
2014-12-09,23:00:00,418,376,339,431,385,7,6.217,153,128,2,10,2,14,135,84,0
2014-12-10,00:00:00,386,336,348,365,394,6.4,6.396,139,130,2,10,2,10,140,88,0
2014-12-10,01:00:00,384,334,350,369,395,6.5,6.413,138,130,2,9,2,8,137,91,0
2014-12-10,02:00:00,390,340,349,374,393,6.6,6.387,140,131,2,9,2,7,134,93,0
2014-12-10,03:00:00,393,343,348,374,389,6.5,6.383,139,132,2,9,2,7,128,95,0
2014-12-10,04:00:00,364,314,346,331,386,5.5,6.346,134,133,2,5,2,7,108,97,0
2014-12-10,05:00:00,358,308,345,312,384,5.4,6.312,132,134,2,4,2,7,92,99,0
2014-12-10,06:00:00,359,309,345,321,384,5.8,6.308,128,136,2,4,2,7,76,100,0
2014-12-10,07:00:00,390,340,348,359,386,6.6,6.358,132,137,2,4,2,7,80,101,0
2014-12-10,08:00:00,399,349,350,371,389,7.2,6.408,136,138,3,4,2,6,71,101,0
2014-12-10,09:00:00,276,226,347,311,387,3.8,6.3,103,138,3,4,2,5,66,101,0
2014-12-10,10:00:00,156,74,337,261,383,1,6.079,0,0,16,16,4,5,28,100,0
2014-12-10,11:00:00,179,58,326,308,382,0.5,5.85,0,0,38,38,8,8,18,97,0
2014-12-10,12:00:00,239,60,315,377,382,0.4,5.617,31,135,46,46,14,14,14,94,0
2014-12-10,13:00:00,197,54,302,344,379,0.3,5.371,18,130,64,64,22,22,15,91,0
2014-12-10,14:00:00,190,47,287,330,375,0.3,5.121,20,124,67,67,30,30,14,88,0
2014-12-10,15:00:00,133,26,272,216,364,0.3,4.858,20,118,71,71,38,38,12,85,0
2014-12-10,16:00:00,168,18,256,285,356,0.2,4.608,20,112,74,74,47,47,7,81,0
2014-12-10,17:00:00,111,10,241,172,345,0.2,4.346,22,106,69,74,56,56,4,77,0
2014-12-10,18:00:00,76,17,226,101,331,0.2,4.079,27,101,58,74,61,61,4,72,0
2014-12-10,19:00:00,67,15,211,83,317,0.2,3.808,29,95,56,74,63,63,5,68,0
2014-12-10,20:00:00,50,13,196,50,302,0.2,3.542,30,90,54,74,64,64,5,64,0
2014-12-10,22:00:00,24,9,166,24,273,0.3,2.988,28,80,55,74,61,64,6,54,0
2014-12-10,23:00:00,17,9,151,17,256,0.3,2.708,27,74,53,74,59,64,6,49,0
2014-12-11,00:00:00,19,13,138,14,241,0.3,2.454,31,69,46,74,55,64,8,43,0
2014-12-11,01:00:00,17,11,124,15,226,0.4,2.2,33,64,45,74,52,64,13,38,0
2014-12-11,02:00:00,18,12,110,0,0,0.4,1.942,30,59,46,74,51,64,14,33,0
2014-12-11,03:00:00,15,10,97,0,0,0.3,1.683,27,54,48,74,50,64,15,29,0
2014-12-11,04:00:00,19,13,84,0,0,0.4,1.471,30,49,40,74,48,64,17,25,0
2014-12-11,05:00:00,19,9,72,0,0,0.4,1.262,38,45,33,74,46,64,14,22,0
2014-12-11,06:00:00,19,13,59,0,0,0.4,1.037,36,41,38,74,44,64,15,19,0
2014-12-11,07:00:00,20,12,46,0,0,0.4,0.779,39,37,34,74,41,64,26,17,0
2014-12-11,08:00:00,22,11,31,14,167,0.5,0.5,44,32,29,74,39,64,27,15,0
2014-12-11,09:00:00,25,16,23,23,151,0.6,0.367,49,30,26,74,37,64,26,13,0
2014-12-11,10:00:00,20,14,20,19,137,0.5,0.346,37,30,40,74,36,64,19,13,0
2014-12-11,11:00:00,20,14,18,17,121,0.5,0.346,30,30,46,74,36,64,0,0,0
2014-12-11,12:00:00,18,12,16,14,101,0,0,26,30,53,74,37,64,0,0,0
2014-12-11,13:00:00,23,16,15,0,0,0,0,21,30,67,74,42,64,13,13,0
2014-12-11,14:00:00,19,13,13,0,0,0.4,0.35,20,30,0,0,0,64,11,12,0
2014-12-11,16:00:00,50,29,13,50,44,0.5,0.364,0,0,56,69,48,64,13,13,0
2014-12-11,17:00:00,64,46,15,69,38,0.6,0.382,0,0,43,67,51,64,20,13,0
2014-12-11,18:00:00,102,76,17,117,39,0.9,0.414,58,33,44,67,52,64,40,15,0
2014-12-11,19:00:00,107,80,20,111,40,1,0.45,70,34,25,67,48,64,42,17,0
2014-12-11,20:00:00,102,76,22,100,44,1,0.486,78,37,12,67,41,63,35,18,0
2014-12-11,21:00:00,77,53,24,104,45,0.7,0.505,57,38,28,67,35,61,24,19,0
2014-12-11,22:00:00,79,8,24,107,50,0.2,0.5,20,38,61,67,38,59,4,19,0
2014-12-11,23:00:00,79,6,24,107,56,0.2,0.495,13,37,66,67,42,55,4,19,0
2014-12-12,00:00:00,55,8,24,60,59,0.2,0.491,13,36,63,67,43,52,7,19,0
2014-12-12,01:00:00,46,12,24,46,61,0.2,0.482,14,35,57,67,44,52,11,19,0
2014-12-12,02:00:00,51,6,23,51,60,0.2,0.473,11,34,60,67,46,52,8,18,0
2014-12-12,03:00:00,36,6,23,36,59,0.2,0.468,12,34,58,67,51,52,10,18,0
2014-12-12,04:00:00,35,8,23,35,57,0.3,0.464,11,33,56,67,56,56,10,18,0
2014-12-12,05:00:00,20,11,23,20,56,0.3,0.459,14,32,51,67,59,59,11,18,0
2014-12-12,06:00:00,19,10,23,19,54,0.3,0.455,16,31,48,67,57,59,11,17,0
2014-12-12,07:00:00,24,8,23,24,52,0.4,0.455,24,30,43,67,54,59,14,17,0
2014-12-12,08:00:00,21,8,23,21,53,0.4,0.45,33,30,36,67,51,59,13,16,0
2014-12-12,09:00:00,44,12,23,44,54,0.4,0.441,26,29,46,67,50,59,12,16,0
2014-12-12,10:00:00,32,11,22,32,54,0.4,0.436,24,28,48,67,48,59,12,15,0
2014-12-12,11:00:00,56,10,22,62,56,0.3,0.427,17,27,56,67,48,59,10,15,0
2014-12-12,12:00:00,55,15,22,59,58,0.4,0.426,17,27,58,67,48,59,13,15,0
2014-12-12,13:00:00,59,13,22,67,59,0.3,0.421,19,27,58,66,49,59,11,15,0
2014-12-12,14:00:00,51,10,22,51,58,0.3,0.417,16,27,66,66,51,59,7,15,0
2014-12-12,15:00:00,56,14,22,61,61,0.3,0.417,20,27,62,66,54,59,9,15,0
2014-12-12,16:00:00,53,11,22,56,61,0.3,0.408,23,26,59,66,57,59,10,15,0
2014-12-12,17:00:00,49,8,20,49,60,0.3,0.396,34,27,45,66,56,59,8,14,0
2014-12-12,18:00:00,46,12,17,46,57,0.3,0.371,39,26,37,66,55,59,10,13,0
2014-12-12,19:00:00,44,12,15,44,54,0.4,0.346,53,25,20,66,51,59,11,11,0
2014-12-12,20:00:00,52,19,12,54,52,0.5,0.325,63,25,11,66,45,59,10,10,0
2014-12-12,21:00:00,66,30,11,81,51,0.9,0.333,73,25,2,66,38,59,22,10,0
2014-12-12,22:00:00,68,27,12,85,50,0.8,0.358,59,27,16,66,32,59,16,11,0
2014-12-12,23:00:00,41,13,12,41,48,0.3,0.363,30,28,40,66,29,59,12,11,0
2014-12-13,00:00:00,34,6,12,34,47,0.3,0.367,19,28,54,66,28,59,10,11,0
2014-12-13,01:00:00,30,11,12,30,46,0.3,0.371,27,28,44,66,28,59,10,11,0
2014-12-13,02:00:00,24,10,12,24,45,0.3,0.375,28,29,41,66,28,59,11,11,0
2014-12-13,03:00:00,26,9,12,26,44,0.4,0.383,32,30,37,66,31,59,17,12,0
2014-12-13,04:00:00,28,13,13,28,44,0.4,0.388,34,31,37,66,34,59,15,12,0
2014-12-13,05:00:00,33,12,13,33,45,0.4,0.392,23,31,47,66,40,57,12,12,0
2014-12-13,06:00:00,34,11,13,34,45,0.4,0.396,26,32,46,66,43,57,14,12,0
2014-12-13,07:00:00,30,14,13,30,46,0.4,0.396,36,32,35,66,43,57,14,12,0
2014-12-13,08:00:00,43,16,13,43,46,0.7,0.408,57,33,13,66,38,57,21,12,0
2014-12-13,09:00:00,76,45,15,101,49,1.8,0.467,71,35,6,66,33,57,47,14,0
2014-12-13,10:00:00,63,32,16,76,51,1.2,0.5,64,37,12,66,29,57,32,15,0
2014-12-13,11:00:00,65,43,17,79,51,1.2,0.538,62,39,21,66,27,57,33,16,0
2014-12-13,12:00:00,82,60,19,107,53,1.2,0.571,57,40,35,66,27,57,29,16,0
2014-12-13,13:00:00,65,42,20,79,54,0.8,0.592,40,41,53,66,28,57,22,17,0
2014-12-13,14:00:00,68,43,21,85,55,0.7,0.608,40,42,58,62,29,57,28,18,0
2014-12-13,15:00:00,62,42,23,74,56,0.7,0.625,43,43,58,59,32,57,28,18,0
2014-12-13,16:00:00,69,50,24,77,57,0.8,0.646,52,44,51,58,37,56,21,19,0
2014-12-13,17:00:00,92,68,27,101,59,1.1,0.679,70,46,35,58,40,55,24,20,0
2014-12-13,18:00:00,98,73,29,111,62,1.2,0.717,80,47,27,58,42,51,27,20,0
2014-12-13,19:00:00,100,75,32,113,64,1.3,0.754,98,49,10,58,41,45,29,21,0
2014-12-13,20:00:00,128,97,35,125,67,1.3,0.788,100,51,3,58,37,43,37,22,0
2014-12-13,21:00:00,125,95,38,123,69,1.3,0.804,92,52,4,58,31,43,39,23,0
2014-12-14,11:00:00,79,58,95,77,129,1.4,1.962,62,81,16,58,5,42,33,43,0
2014-12-14,12:00:00,83,61,95,88,128,1.3,1.967,59,81,25,58,8,42,34,43,0
2014-12-14,13:00:00,73,53,95,67,127,1,1.975,56,82,34,58,12,42,28,43,0
2014-12-14,14:00:00,65,47,95,74,127,1,1.987,58,83,37,58,16,42,30,43,0
2014-12-14,15:00:00,69,50,96,68,127,0.9,1.996,61,83,36,51,20,42,29,43,0
2014-12-14,16:00:00,77,56,96,87,127,1.1,2.008,79,84,19,37,22,42,30,44,0
2014-12-14,17:00:00,88,65,96,116,128,1.3,2.017,98,86,4,37,22,42,38,44,0
2014-12-14,18:00:00,130,99,97,151,129,1.7,2.037,114,87,2,37,22,41,44,45,0
2014-12-14,19:00:00,180,136,99,184,132,2.2,2.075,130,88,2,37,20,37,45,46,0
2014-12-14,20:00:00,178,134,101,160,134,2,2.104,122,89,2,37,17,31,43,46,0
2014-12-14,21:00:00,155,118,102,148,135,1.9,2.129,114,90,2,37,13,24,41,46,0
2014-12-14,22:00:00,166,126,103,153,136,2.2,2.158,114,91,2,37,9,22,46,46,0
2014-12-14,23:00:00,190,143,103,182,137,2.5,2.192,119,92,2,37,4,22,67,46,0
2014-12-15,00:00:00,195,146,104,184,137,2.6,2.225,117,93,2,37,2,22,59,46,0
2014-12-15,01:00:00,307,257,109,299,141,3.5,2.225,131,94,2,37,2,22,84,47,0
2014-12-15,02:00:00,342,292,112,338,142,4,2.171,139,94,2,37,2,22,77,47,0
2014-12-15,03:00:00,362,312,115,401,147,4.7,2.154,151,94,2,37,2,22,83,48,0
2014-12-15,04:00:00,364,314,123,387,156,5.1,2.246,150,97,6,37,2,22,97,49,0
2014-12-15,05:00:00,362,312,132,361,167,6.1,2.404,142,99,4,37,3,22,105,51,0
2014-12-15,06:00:00,345,295,141,346,177,6.3,2.567,145,102,4,37,3,22,122,54,0
2014-12-15,07:00:00,175,132,143,140,179,2.3,2.567,78,102,18,37,5,22,53,55,0
2014-12-15,08:00:00,56,17,140,61,177,0.4,2.479,30,100,47,47,11,22,6,53,0
2014-12-15,09:00:00,63,11,137,75,176,0.4,2.4,28,98,48,48,16,22,10,52,0
2014-12-15,10:00:00,57,10,135,64,175,0.4,2.346,23,97,57,57,23,23,12,51,0
2014-12-15,11:00:00,65,8,133,80,176,0.3,2.3,16,95,68,68,32,32,9,50,0
2014-12-15,12:00:00,47,12,131,47,174,0.3,2.258,14,93,72,72,40,40,9,49,0
2014-12-15,13:00:00,43,4,129,43,173,0.3,2.229,13,91,76,76,49,49,2,48,0
2014-12-15,14:00:00,72,10,127,93,174,0.3,2.2,15,89,72,76,57,57,2,46,0
2014-12-15,15:00:00,68,9,126,86,174,0.3,2.175,16,87,70,76,64,64,2,45,0
2014-12-15,16:00:00,63,11,124,75,174,0.3,2.142,16,85,66,76,66,66,2,44,0
2014-12-15,18:00:00,58,7,118,65,169,0.3,2.042,22,78,51,76,66,67,2,41,0
2014-12-15,19:00:00,53,5,112,56,163,0.3,1.962,24,73,48,76,64,67,2,39,0
2014-12-15,20:00:00,38,10,107,38,158,0.3,1.892,27,69,44,76,60,67,3,37,0
2014-12-15,21:00:00,42,8,103,42,154,0.3,1.825,21,65,51,76,57,67,5,36,0
2014-12-15,22:00:00,34,10,98,34,149,0.4,1.75,21,62,51,76,55,67,8,34,0
2014-12-15,23:00:00,31,10,92,31,142,0.4,1.662,17,57,55,76,53,67,9,32,0
2014-12-16,00:00:00,21,9,86,21,136,0.4,1.571,17,53,54,76,51,67,9,30,0
2014-12-16,01:00:00,17,7,76,12,124,0.4,1.442,17,48,54,76,51,67,5,27,0
2014-12-16,02:00:00,17,6,64,11,110,0.4,1.292,16,43,54,76,51,67,4,23,0
2014-12-16,03:00:00,18,7,51,14,94,0.5,1.117,15,38,55,76,52,67,8,20,0
2014-12-16,04:00:00,18,4,39,11,78,0.4,0.921,14,32,55,76,54,67,10,17,0
2014-12-16,05:00:00,18,11,26,11,64,0.4,0.683,13,27,56,76,54,67,8,13,0
2014-12-16,06:00:00,18,10,14,0,0,0.4,0.438,13,21,56,76,55,67,5,8,0
2014-12-16,07:00:00,16,7,9,15,46,0.5,0.363,19,19,51,76,54,67,10,6,0
2014-12-16,08:00:00,20,9,9,20,44,0.5,0.367,26,19,44,76,53,67,10,6,0
2014-12-16,09:00:00,27,10,9,27,42,0.5,0.371,22,18,49,76,52,67,12,6,0
2014-12-16,10:00:00,53,8,8,56,42,0.5,0.375,16,18,56,76,53,67,10,6,0
2014-12-16,11:00:00,53,9,8,56,41,0.5,0.383,15,18,60,76,53,67,7,6,0
2014-12-16,12:00:00,46,6,8,46,42,0.5,0.391,12,18,65,76,55,67,13,6,0
2014-12-16,15:00:00,48,12,8,48,39,0.4,0.409,14,18,68,68,60,67,3,7,0
2014-12-16,16:00:00,34,3,8,34,37,0.4,0.413,17,18,65,68,62,67,2,7,0
2014-12-16,17:00:00,33,7,8,33,35,0.4,0.417,25,18,55,68,63,66,2,7,0
2014-12-16,19:00:00,54,0,0,57,34,0.4,0.427,28,18,51,68,63,64,4,7,0
2014-12-16,20:00:00,48,4,8,48,35,0.4,0.432,30,18,50,68,60,64,3,7,0
2014-12-16,21:00:00,49,8,8,49,35,0.4,0.436,23,18,54,68,59,64,2,7,0
2014-12-16,22:00:00,52,8,8,53,36,0.4,0.436,18,18,58,68,57,64,8,7,0
2014-12-16,23:00:00,29,8,8,29,36,0.4,0.436,18,18,57,68,56,64,5,7,0
2014-12-17,00:00:00,34,11,8,34,36,0.4,0.435,18,18,58,68,55,64,10,7,0
2014-12-17,01:00:00,24,6,8,24,36,0.5,0.439,19,18,57,68,55,64,14,7,0
2014-12-17,02:00:00,20,5,8,16,36,0.4,0.439,17,18,61,68,56,64,4,7,0
2014-12-17,03:00:00,24,9,8,24,37,0.5,0.439,35,19,48,68,55,64,9,7,0
2014-12-17,04:00:00,53,25,9,55,39,0.6,0.448,40,20,35,68,54,64,14,8,0
2014-12-17,05:00:00,64,44,10,78,42,0.9,0.47,56,22,17,68,49,64,26,8,0
2014-12-17,06:00:00,73,53,12,82,44,1.2,0.504,59,24,13,68,43,64,29,9,0
2014-12-17,07:00:00,74,52,14,97,47,1.1,0.53,59,26,11,68,38,64,31,10,0
2014-12-17,08:00:00,97,72,17,116,51,1.4,0.57,63,27,8,68,31,64,37,11,0
2014-12-17,09:00:00,100,75,20,124,56,1.6,0.617,64,29,10,68,25,64,44,13,0
2014-12-17,10:00:00,109,82,24,141,59,1.9,0.678,68,31,0,0,0,64,47,14,0
2014-12-17,11:00:00,122,92,27,148,63,2,0.743,79,34,14,68,15,64,46,16,0
2014-12-17,12:00:00,142,108,32,182,69,2.8,0.843,110,39,11,68,12,64,50,18,0
2014-12-17,14:00:00,163,124,43,185,83,2.2,1.039,108,48,20,68,12,64,46,21,0
2014-12-17,15:00:00,102,76,46,108,85,1.3,1.078,86,51,34,65,15,64,34,23,0
2014-12-17,16:00:00,102,76,50,108,89,1.3,1.117,86,54,34,61,19,63,34,24,0
2014-12-17,17:00:00,95,71,52,110,92,1.2,1.152,90,57,14,61,19,63,29,25,0
2014-12-17,18:00:00,99,74,53,126,93,1.3,1.158,98,59,2,61,17,63,29,25,0
2014-12-17,19:00:00,109,82,55,129,96,1.4,1.2,100,62,2,61,16,59,34,27,0
2014-12-17,20:00:00,170,129,60,224,104,3.2,1.317,115,66,2,61,15,59,68,29,0
2014-12-17,21:00:00,276,226,69,344,116,3.9,1.463,122,70,2,61,14,57,96,33,0
2014-12-17,22:00:00,275,225,78,318,127,3.6,1.596,118,74,2,61,12,56,95,37,0
2014-12-17,23:00:00,234,184,85,238,136,3.2,1.713,113,78,2,61,8,56,80,40,0
2014-12-18,11:00:00,145,111,129,172,189,3.8,3.133,80,102,8,34,3,19,106,74,0
2014-12-18,12:00:00,153,117,130,162,189,3.5,3.162,82,101,11,34,4,19,98,76,0
2014-12-18,13:00:00,153,117,129,151,185,3.1,3.158,81,98,15,34,6,19,86,77,0
2014-12-18,14:00:00,169,128,129,173,184,3,3.192,88,97,15,34,7,19,83,79,0
2014-12-18,15:00:00,190,143,132,198,188,3.2,3.271,96,98,10,34,8,19,90,81,0
2014-12-18,17:00:00,216,166,139,223,197,4.1,3.483,102,99,2,15,9,17,87,86,0
2014-12-18,18:00:00,235,185,143,241,202,4.3,3.608,106,99,2,15,9,16,87,88,0
2014-12-18,19:00:00,243,193,148,251,207,4.2,3.725,106,99,2,15,8,15,89,90,0
2014-12-18,20:00:00,265,215,152,261,208,4.1,3.762,107,99,2,15,7,14,90,91,0
2014-12-18,21:00:00,266,216,151,268,205,4.4,3.783,108,99,2,15,5,12,83,91,0
2014-12-19,04:00:00,245,195,147,230,199,4.7,3.939,117,94,4,15,3,9,86,93,0
2014-12-19,05:00:00,241,191,151,238,203,5.3,4.028,119,96,3,15,4,9,76,93,0
2014-12-19,06:00:00,265,215,156,281,208,6.2,4.122,124,98,3,15,3,9,72,91,0
2014-12-19,07:00:00,179,135,157,0,0,3.1,4.033,96,98,5,15,4,9,48,87,0
2014-12-19,08:00:00,36,16,151,36,202,0.5,3.822,40,96,43,43,12,12,13,83,0
2014-12-19,09:00:00,40,15,146,40,195,0.5,3.639,43,93,41,43,16,17,17,78,0
2014-12-19,10:00:00,45,13,140,45,187,0.4,3.439,30,90,57,57,22,22,13,73,0
2014-12-19,11:00:00,31,9,135,31,179,0.4,3.25,20,87,69,69,28,28,12,68,0
2014-12-19,12:00:00,24,12,129,24,171,0.4,3.078,23,84,66,69,36,36,14,63,0
2014-12-19,13:00:00,38,11,123,38,164,0.3,2.922,20,80,71,71,44,44,13,59,0
2014-12-19,14:00:00,30,11,116,30,156,0.3,2.772,20,76,70,71,53,53,8,55,0
2014-12-19,15:00:00,26,10,109,26,146,0.2,2.606,21,72,71,71,61,61,2,50,0
2014-12-19,16:00:00,34,8,101,34,135,0.2,2.422,19,68,72,72,65,65,2,45,0
2014-12-19,17:00:00,36,6,92,36,124,0.2,2.206,23,63,63,72,67,68,2,40,0
2014-12-19,18:00:00,28,4,82,28,112,0.2,1.978,27,59,55,72,67,68,2,36,0
2014-12-19,19:00:00,38,8,72,38,99,0.3,1.761,26,55,53,72,65,68,3,31,0
2014-12-19,20:00:00,27,8,60,27,85,0.3,1.55,30,50,43,72,62,68,3,26,0
2014-12-19,21:00:00,17,8,49,17,71,0.3,1.322,27,46,40,72,58,68,3,22,0
2014-12-19,22:00:00,15,10,47,14,67,0.3,1.268,27,45,38,72,54,68,5,21,0
2014-12-19,23:00:00,17,8,45,11,64,0.4,1.225,34,44,29,72,49,68,8,20,0
2014-12-20,00:00:00,16,8,43,0,0,0.4,1.186,32,44,31,72,44,68,8,20,0
2014-12-20,01:00:00,21,13,42,16,62,0.5,1.155,42,44,21,72,39,68,10,19,0
2014-12-20,02:00:00,16,11,40,0,0,0.4,1.122,29,43,34,72,36,68,10,19,0
2014-12-20,03:00:00,16,10,39,0,0,0.5,1.096,31,43,30,72,33,68,16,19,0
2014-12-20,04:00:00,18,11,31,0,0,0.6,0.925,35,39,26,72,31,68,21,16,0
2014-12-20,05:00:00,19,13,24,0,0,0.5,0.725,36,36,25,72,29,68,24,14,0
2014-12-20,06:00:00,22,6,15,0,0,0.5,0.488,43,32,18,72,27,68,26,12,0
2014-12-20,07:00:00,27,8,10,0,0,0.7,0.388,53,30,10,72,24,68,22,11,0
2014-12-20,08:00:00,29,6,9,9,27,0.7,0.396,57,31,9,72,22,68,16,11,0
2014-12-20,09:00:00,28,10,9,20,26,0.8,0.408,55,32,13,72,21,68,18,11,0
2014-12-20,10:00:00,22,10,9,16,24,0.7,0.421,44,32,28,72,20,68,16,11,0
2014-12-20,11:00:00,42,10,9,42,25,0.7,0.433,38,33,36,72,21,68,13,11,0
2014-12-20,12:00:00,15,9,9,11,24,0.6,0.442,30,33,45,72,23,68,11,11,0
2014-12-20,13:00:00,17,11,9,0,0,0.5,0.45,25,34,54,72,27,68,9,11,0
2014-12-20,14:00:00,22,15,9,16,23,0.4,0.454,21,34,62,72,32,68,9,11,0
2014-12-20,15:00:00,19,13,9,0,0,0.4,0.462,24,34,60,72,38,68,8,11,0
2014-12-20,16:00:00,20,3,9,12,21,0.3,0.467,20,34,61,63,45,68,7,11,0
2014-12-20,17:00:00,17,8,9,16,20,0.3,0.471,27,34,52,62,50,65,7,11,0
2014-12-20,18:00:00,20,12,10,20,19,0.4,0.479,36,34,41,62,51,64,10,12,0
2014-12-20,19:00:00,20,9,10,20,18,0.4,0.483,31,34,45,62,52,59,11,12,0
2014-12-20,20:00:00,18,11,10,17,17,0.4,0.488,36,35,34,62,51,55,8,12,0
2014-12-20,21:00:00,15,6,10,14,17,0.4,0.492,30,35,39,62,49,52,4,12,0
2014-12-20,22:00:00,16,3,9,16,17,0.3,0.492,23,35,48,62,48,52,2,12,0
2014-12-20,23:00:00,17,3,9,15,17,0.3,0.488,21,34,52,62,46,52,2,12,0
2014-12-21,00:00:00,17,4,9,15,17,0.3,0.483,18,34,52,62,45,52,2,12,0
2014-12-21,01:00:00,14,9,9,13,17,0.4,0.479,23,33,43,62,44,52,4,12,0
2014-12-21,02:00:00,14,7,9,0,0,0.4,0.479,22,32,43,62,44,52,5,11,0
2014-12-21,03:00:00,15,7,9,7,16,0.3,0.471,18,32,46,62,45,52,8,11,0
2014-12-21,04:00:00,16,10,8,0,0,0.3,0.458,16,31,50,62,47,52,11,11,0
2014-12-21,05:00:00,16,3,8,5,16,0.3,0.45,15,30,50,62,48,52,12,10,0
2014-12-21,06:00:00,16,3,8,5,15,0.3,0.442,16,29,51,62,48,52,14,10,0
2014-12-21,07:00:00,15,8,8,0,0,0.3,0.425,22,28,45,62,48,52,11,9,0
2014-12-21,08:00:00,15,3,8,7,15,0.4,0.413,30,27,35,62,45,52,6,9,0
2014-12-21,09:00:00,14,3,8,8,14,0.4,0.396,27,26,41,62,45,52,5,8,0
2014-12-21,10:00:00,15,4,7,10,14,0.4,0.383,24,25,46,62,46,52,6,8,0
2014-12-21,11:00:00,20,10,7,20,13,0.6,0.379,32,24,43,62,45,52,11,8,0
2014-12-21,12:00:00,28,11,7,28,14,0.7,0.383,36,25,42,62,44,52,12,8,0
2014-12-21,13:00:00,36,14,7,36,15,0.6,0.387,35,25,48,62,44,52,12,8,0
2014-12-21,14:00:00,29,18,8,29,16,0.5,0.392,31,26,54,61,44,52,14,8,0
2014-12-21,15:00:00,53,11,8,55,18,0.4,0.392,28,26,59,61,46,52,12,8,0
2014-12-21,16:00:00,51,13,8,51,19,0.3,0.392,25,26,59,59,49,52,11,8,0
2014-12-21,17:00:00,53,14,8,56,21,0.4,0.396,38,26,41,59,49,52,11,9,0
2014-12-21,18:00:00,51,17,8,51,23,0.5,0.4,62,27,17,59,45,52,11,9,0
2014-12-21,19:00:00,55,27,9,59,25,0.7,0.413,68,29,11,59,41,51,16,9,0
2014-12-21,20:00:00,61,35,10,72,27,1,0.437,80,31,2,59,36,49,20,9,0
2014-12-21,21:00:00,72,44,12,93,31,1,0.462,77,33,2,59,31,49,24,10,0
2014-12-21,22:00:00,77,54,14,104,35,1.1,0.496,75,35,2,59,24,49,33,11,0
2014-12-21,23:00:00,82,60,16,111,40,1.3,0.538,78,37,2,59,17,49,40,13,0
2014-12-22,00:00:00,85,62,19,120,45,1.5,0.588,80,40,2,59,10,49,41,15,0
2014-12-22,01:00:00,88,65,21,120,50,1.5,0.633,81,42,2,59,5,49,41,16,0
2014-12-22,02:00:00,90,67,23,129,53,1.8,0.692,79,45,2,59,3,49,47,18,0
2014-12-22,03:00:00,110,83,27,143,60,2,0.763,78,47,2,59,2,49,56,20,0
2014-12-22,04:00:00,114,86,30,146,63,2.3,0.846,81,50,2,59,2,49,57,22,0
2014-12-22,05:00:00,129,98,34,143,69,2.3,0.929,81,53,2,59,2,49,58,24,0
2014-12-22,06:00:00,135,103,38,150,76,2.6,1.025,79,55,2,59,2,49,71,26,0
2014-12-22,07:00:00,155,118,42,174,80,3.4,1.154,81,58,2,59,2,49,76,29,0
2014-12-22,08:00:00,147,112,47,166,86,3.4,1.279,89,60,2,59,2,49,63,31,0
2014-12-22,09:00:00,139,106,51,188,94,3.8,1.421,101,63,2,59,2,49,50,33,0
2014-12-22,10:00:00,149,114,56,209,102,4.7,1.6,117,67,2,59,2,49,51,35,0
2014-12-22,11:00:00,50,0,0,0,0,2.9,1.696,99,70,7,59,3,49,44,36,0
2014-12-22,12:00:00,47,0,0,0,0,2.2,1.758,93,72,16,59,4,49,43,38,0
2014-12-22,13:00:00,64,36,61,78,111,1.7,1.804,83,74,24,59,7,49,33,38,0
2014-12-22,14:00:00,80,59,63,93,114,1.9,1.862,100,77,17,59,9,49,31,39,0
2014-12-22,15:00:00,102,76,66,110,117,1.9,1.925,118,81,17,59,11,49,31,40,0
2014-12-22,16:00:00,92,68,68,97,119,1.4,1.971,94,84,31,41,14,49,24,41,0
2014-12-22,17:00:00,74,54,70,80,120,1.1,2,84,86,27,31,18,45,21,41,0
2014-12-22,18:00:00,99,74,73,118,123,1.5,2.042,111,88,2,31,18,41,26,42,0
2014-12-22,19:00:00,118,89,76,130,126,1.8,2.088,114,90,2,31,17,36,30,42,0
2014-12-22,20:00:00,127,96,78,149,130,1.8,2.121,112,91,2,31,15,31,40,43,0
2014-12-22,21:00:00,152,116,82,174,133,2.1,2.167,111,92,2,31,12,24,71,45,0
2014-12-22,22:00:00,166,126,85,176,137,2.1,2.208,110,94,2,31,11,18,96,48,0
2014-12-22,23:00:00,153,117,88,164,139,2.1,2.242,107,95,2,31,9,18,102,50,0
2014-12-23,00:00:00,169,128,91,168,141,2.2,2.271,104,96,2,31,5,18,106,53,0
2014-12-23,01:00:00,189,142,94,196,145,3.4,2.35,112,97,2,31,2,18,87,55,0
2014-12-23,02:00:00,268,218,101,298,152,6.3,2.537,140,100,2,31,2,18,83,56,0
2014-12-23,03:00:00,265,215,107,279,158,5.8,2.696,135,102,2,31,2,18,74,57,0
2014-12-23,04:00:00,229,179,111,227,162,4.9,2.804,116,104,8,31,3,18,63,57,0
2014-12-23,05:00:00,210,160,114,207,165,4.3,2.887,106,105,5,31,3,18,60,57,0
2014-12-23,06:00:00,160,122,115,152,165,3.6,2.929,95,106,4,31,3,18,55,57,0
2014-12-23,07:00:00,107,80,113,93,161,2.9,2.908,81,106,4,31,4,18,54,56,0
2014-12-23,08:00:00,97,72,111,88,158,2.5,2.871,83,105,5,31,4,18,57,55,0
2014-12-23,09:00:00,95,71,110,112,154,2.7,2.825,85,105,6,31,4,18,49,55,0
2014-12-23,10:00:00,98,73,108,118,150,2.6,2.737,88,103,8,31,5,18,47,55,0
2014-12-23,11:00:00,117,88,107,134,150,2.3,2.712,88,103,11,31,6,18,61,56,0
2014-12-23,12:00:00,113,85,106,127,149,1.9,2.7,83,103,21,31,8,18,68,57,0
2014-12-23,13:00:00,108,81,108,106,150,1.6,2.696,77,102,26,31,11,18,61,58,0
2014-12-23,15:00:00,94,70,108,100,150,1.2,2.642,73,99,35,35,18,18,54,60,0
2014-12-23,16:00:00,55,39,107,60,148,0.7,2.613,55,98,47,47,24,24,48,61,0
2014-12-23,17:00:00,59,40,107,68,148,0.9,2.604,85,98,15,47,25,25,48,62,0
2014-12-23,18:00:00,67,45,105,83,147,1.3,2.596,97,97,3,47,24,25,48,63,0
2014-12-23,19:00:00,136,89,105,221,150,3,2.646,131,98,5,47,23,25,55,64,0
2014-12-23,20:00:00,166,126,107,210,153,3.4,2.712,146,99,4,47,21,25,62,65,0
2014-12-23,21:00:00,59,42,103,67,148,0.8,2.658,64,97,24,47,21,25,29,64,0
2014-12-23,22:00:00,36,15,99,36,143,0.4,2.588,31,94,55,55,24,25,9,60,0
2014-12-23,23:00:00,25,12,94,25,137,0.4,2.517,33,91,54,55,26,26,7,56,0
2014-12-24,00:00:00,28,13,90,28,131,0.4,2.442,40,88,44,55,26,26,10,52,0
2014-12-24,01:00:00,42,11,84,42,125,0.3,2.312,36,85,46,55,29,29,7,49,0
2014-12-24,02:00:00,34,7,75,34,114,0.2,2.058,28,80,53,55,36,36,5,45,0
2014-12-24,03:00:00,34,9,67,34,103,0.3,1.829,28,76,50,55,41,41,10,43,0
2014-12-24,04:00:00,51,11,60,51,96,0.4,1.642,27,72,47,55,47,47,22,41,0
2014-12-24,05:00:00,37,9,54,37,89,0.4,1.479,24,69,49,55,50,50,17,39,0
2014-12-24,06:00:00,35,7,49,35,84,0.4,1.346,26,66,47,55,49,50,20,38,0
2014-12-24,07:00:00,49,12,46,49,82,0.4,1.242,28,64,45,55,48,50,28,37,0
2014-12-24,08:00:00,39,9,43,39,80,0.5,1.158,41,62,34,55,46,50,28,35,0
2014-12-24,09:00:00,42,9,41,42,77,0.5,1.067,42,60,35,55,45,50,28,35,0
2014-12-24,10:00:00,44,12,38,44,74,0.5,0.979,32,58,47,55,44,50,34,34,0
2014-12-24,11:00:00,32,12,35,32,70,0.4,0.9,22,55,63,63,46,50,28,33,0
2014-12-24,12:00:00,32,14,32,32,66,0.4,0.837,19,52,74,74,49,50,22,31,0
2014-12-24,14:00:00,42,17,27,42,60,0.3,0.746,22,48,78,78,56,56,16,28,0
2014-12-24,15:00:00,36,12,24,36,57,0.3,0.708,24,46,79,79,61,61,13,26,0
2014-12-24,16:00:00,40,13,23,40,57,0.3,0.692,24,45,79,79,66,66,16,25,0
2014-12-24,17:00:00,38,15,22,38,55,0.3,0.667,32,42,69,79,71,71,14,23,0
2014-12-24,18:00:00,38,15,21,38,53,0.4,0.629,47,40,50,79,71,71,21,22,0
2014-12-24,19:00:00,38,17,18,38,46,0.6,0.529,66,38,29,79,67,71,23,21,0
2014-12-24,20:00:00,39,18,13,37,39,0.7,0.417,77,35,17,79,60,71,24,19,0
2014-12-24,21:00:00,31,17,12,30,37,0.5,0.404,62,35,28,79,54,71,18,19,0
2014-12-24,22:00:00,30,17,13,28,37,0.5,0.408,60,36,30,79,48,71,17,19,0
2014-12-24,23:00:00,32,18,13,31,37,0.6,0.417,64,37,24,79,41,71,22,20,0
2014-12-25,00:00:00,34,19,13,28,37,0.6,0.425,67,38,20,79,33,71,29,20,0
2014-12-25,01:00:00,35,18,13,30,37,0.7,0.442,69,40,18,79,27,71,35,22,0
2014-12-25,02:00:00,33,19,14,30,36,0.7,0.462,66,41,20,79,23,71,29,23,0
2014-12-25,03:00:00,28,19,14,23,36,0.4,0.467,50,42,34,79,24,71,25,23,0
2014-12-25,04:00:00,20,12,14,16,34,0.3,0.462,39,43,45,79,27,71,19,23,0
2014-12-25,05:00:00,20,13,14,15,34,0.4,0.462,39,43,42,79,29,71,19,23,0
2014-12-25,06:00:00,23,12,15,18,33,0.4,0.462,45,44,36,79,30,71,16,23,0
2014-12-25,07:00:00,26,10,15,19,32,0.5,0.467,52,45,29,79,30,71,20,23,0
2014-12-25,08:00:00,30,13,15,25,31,0.5,0.467,60,46,21,79,31,71,31,23,0
2014-12-25,09:00:00,36,18,15,36,31,0.7,0.475,58,46,26,79,32,71,39,23,0
2014-12-25,10:00:00,51,23,16,52,31,0.7,0.483,58,48,28,79,33,71,34,23,0
2014-12-25,11:00:00,47,30,16,47,32,0.7,0.496,44,48,47,79,34,71,35,23,0
2014-12-25,12:00:00,23,16,16,23,31,0.4,0.496,25,49,69,79,37,71,28,24,0
2014-12-25,13:00:00,25,13,16,17,31,0.3,0.492,21,49,78,79,42,71,22,24,0
2014-12-25,14:00:00,26,9,16,18,30,0.3,0.492,21,49,82,82,48,71,15,24,0
2014-12-25,15:00:00,26,13,16,16,29,0.3,0.492,23,49,82,82,54,71,12,23,0
2014-12-25,16:00:00,25,15,16,25,28,0.3,0.492,32,49,72,82,60,71,14,23,0
2014-12-25,17:00:00,40,21,16,40,28,0.5,0.5,52,50,48,82,63,71,15,23,0
2014-12-25,18:00:00,64,31,17,78,30,0.8,0.517,87,52,8,82,61,67,18,23,0
2014-12-25,19:00:00,73,49,18,96,32,1.2,0.542,93,53,2,82,55,63,22,23,0
2014-12-25,20:00:00,60,42,19,69,34,0.9,0.55,92,53,2,82,47,63,23,23,0
2014-12-25,21:00:00,58,41,20,58,35,0.8,0.563,89,54,3,82,37,63,22,23,0
2014-12-25,22:00:00,63,45,22,66,37,1.1,0.588,94,56,2,82,27,63,29,24,0
2014-12-25,23:00:00,73,53,23,79,39,1.1,0.608,93,57,2,82,17,63,30,24,0
2014-12-26,00:00:00,84,62,25,87,41,1.5,0.646,93,58,2,82,9,63,44,25,0
2014-12-26,01:00:00,115,87,28,113,44,1.8,0.692,93,59,2,82,3,63,56,26,0
2014-12-26,02:00:00,134,102,31,129,49,2,0.746,92,60,2,82,2,63,62,27,0
2014-12-26,03:00:00,175,132,36,183,55,4.1,0.9,105,62,2,82,2,63,58,28,0
2014-12-26,04:00:00,224,174,43,227,64,5.5,1.117,103,65,2,82,2,63,64,30,0
2014-12-26,05:00:00,207,157,49,207,72,5,1.308,96,68,2,82,2,63,84,33,0
2014-12-26,06:00:00,183,138,54,186,79,4.5,1.479,94,70,2,82,2,63,80,36,0
2014-12-26,07:00:00,168,127,59,173,85,4,1.625,92,71,2,82,2,63,73,38,0
2014-12-26,08:00:00,158,120,63,169,91,3.8,1.762,87,72,2,82,2,63,67,39,0
2014-12-26,09:00:00,155,118,67,164,97,3.7,1.888,91,74,2,82,2,63,66,41,0
2014-12-26,11:00:00,158,120,75,173,106,3.4,2.108,106,78,3,82,2,63,87,44,0
2014-12-26,12:00:00,166,126,79,174,112,3.3,2.229,107,82,4,82,2,63,95,47,0
2014-12-26,13:00:00,179,135,84,184,119,3.3,2.354,115,85,5,82,3,63,103,50,0
2014-12-26,14:00:00,203,153,90,193,126,3.3,2.479,123,90,5,82,3,63,110,54,0
2014-12-26,15:00:00,210,160,97,216,135,3.3,2.604,130,94,4,72,3,63,103,58,0
2014-12-26,16:00:00,229,179,103,235,143,3.5,2.737,132,98,2,48,3,63,107,62,0
2014-12-26,17:00:00,257,207,111,283,154,3.8,2.875,138,102,2,8,3,61,108,66,0
2014-12-26,18:00:00,288,238,120,333,164,4.1,3.012,147,104,2,5,3,55,116,70,0
2014-12-27,01:00:00,213,163,148,193,198,3.7,3.756,118,110,2,5,2,3,96,86,0
2014-12-27,02:00:00,226,176,152,215,203,4.3,3.883,121,111,2,5,2,3,98,88,0
2014-12-27,03:00:00,244,194,155,245,206,5.3,3.95,127,113,2,5,2,3,109,91,0
2014-12-27,04:00:00,250,200,157,236,207,5.7,3.961,121,114,5,5,3,3,102,93,0
2014-12-27,05:00:00,254,204,159,241,209,5.7,4,123,115,3,5,3,3,105,94,0
2014-12-27,06:00:00,249,199,163,243,212,5.5,4.056,129,117,2,5,3,3,100,95,0
2014-12-27,07:00:00,260,210,167,253,216,6.5,4.194,126,119,2,5,3,3,98,97,0
2014-12-27,08:00:00,242,192,171,230,220,5.4,4.283,121,121,2,5,2,3,103,99,0
2014-12-27,09:00:00,221,171,174,204,222,4.4,4.322,116,122,2,5,2,3,88,100,0
2014-12-27,10:00:00,218,168,178,214,226,4.1,4.367,118,123,4,5,3,3,81,100,0
2014-12-27,11:00:00,217,167,180,188,227,3.2,4.356,110,123,8,8,4,4,81,100,0
2014-12-27,12:00:00,235,185,183,212,229,3.2,4.35,115,124,11,11,4,4,86,100,0
2014-12-27,13:00:00,236,186,186,219,231,3.1,4.339,123,124,13,13,6,6,85,99,0
2014-12-27,14:00:00,239,189,188,212,232,3.1,4.328,136,125,12,13,7,7,81,97,0
2014-12-27,16:00:00,274,224,193,278,235,4.3,4.406,181,130,3,13,7,7,77,94,0
2014-12-27,17:00:00,298,248,195,318,237,4.2,4.428,176,132,2,13,7,7,82,92,0
2014-12-27,18:00:00,354,304,199,384,240,4.7,4.461,190,134,2,13,7,7,114,92,0
2014-12-27,19:00:00,382,332,206,400,248,4.8,4.479,187,137,2,13,6,7,119,94,0
2014-12-27,20:00:00,400,350,213,412,257,4.9,4.5,184,139,2,13,5,7,139,96,0
2014-12-27,22:00:00,394,344,224,384,268,4.8,4.518,178,143,2,13,2,7,107,97,0
2014-12-27,23:00:00,404,356,230,404,274,5.1,4.543,178,144,2,13,2,7,104,98,0
2014-12-28,00:00:00,411,366,236,414,280,5.3,4.575,180,146,2,13,2,7,106,98,0
2014-12-28,01:00:00,400,0,0,500,292,9.3,4.808,201,149,4,13,2,7,106,98,0
2014-12-28,02:00:00,395,273,243,496,304,9.4,5.021,201,153,2,13,2,7,96,98,0
2014-12-28,03:00:00,427,390,252,484,314,8.9,5.171,203,156,2,13,2,7,114,98,0
2014-12-28,04:00:00,409,363,259,440,323,7.9,5.262,190,159,2,13,2,7,109,99,0
2014-12-28,05:00:00,318,268,261,297,325,5.7,5.262,152,160,2,13,2,7,99,99,0
2014-12-28,06:00:00,261,211,262,243,325,4.9,5.238,138,160,2,13,2,7,86,98,0
2014-12-28,07:00:00,263,213,262,230,324,4.7,5.163,127,160,2,13,2,7,82,97,0
2014-12-28,08:00:00,209,159,261,170,321,3.5,5.083,114,160,2,13,2,7,73,96,0
2014-12-28,09:00:00,209,159,260,190,321,3.6,5.05,107,160,2,13,2,7,69,95,0
2014-12-28,10:00:00,144,110,258,127,317,2.2,4.971,91,158,4,13,2,7,47,94,0
2014-12-28,11:00:00,79,58,253,79,313,1.1,4.883,62,156,21,21,5,7,30,92,0
2014-12-28,12:00:00,79,58,247,86,308,1,4.792,55,154,38,38,9,9,38,90,0
2014-12-28,13:00:00,75,52,242,100,303,0.9,4.7,54,151,50,50,15,15,34,88,0
2014-12-28,14:00:00,76,24,234,102,298,0.4,4.588,31,147,74,74,24,24,18,85,0
2014-12-28,15:00:00,65,28,227,80,292,0.5,4.446,35,141,72,74,33,33,24,83,0
2014-12-28,16:00:00,70,42,219,89,284,0.6,4.292,40,135,66,74,41,41,36,81,0
2014-12-28,17:00:00,72,40,210,93,274,0.6,4.142,52,130,50,74,47,47,33,79,0
2014-12-28,18:00:00,72,36,198,93,262,0.8,3.979,86,126,13,74,48,48,25,75,0
2014-12-28,19:00:00,128,97,188,178,253,2,3.862,125,123,3,74,46,48,44,72,0
2014-12-28,20:00:00,212,162,180,239,246,2.7,3.771,142,122,2,74,41,48,64,69,0
2014-12-28,21:00:00,326,276,178,368,245,3.5,3.725,153,121,2,74,35,48,98,68,0
2014-12-28,22:00:00,343,293,175,378,245,3.7,3.679,151,120,2,74,26,48,105,68,0
2014-12-28,23:00:00,358,308,173,382,244,3.7,3.621,146,118,2,74,18,48,128,69,0
2014-12-29,00:00:00,386,336,172,413,244,4.2,3.575,153,117,2,74,10,48,157,71,0
2014-12-29,01:00:00,400,350,179,433,241,4.3,3.367,155,115,2,74,4,48,188,75,0
2014-12-29,02:00:00,381,331,182,407,238,4.1,3.146,149,113,2,74,2,48,160,78,0
2014-12-29,03:00:00,373,323,179,411,234,4.6,2.967,149,111,2,74,2,48,134,78,0
2014-12-29,04:00:00,354,304,177,386,232,6.4,2.904,166,110,6,74,2,48,90,78,0
2014-12-29,05:00:00,321,271,177,350,234,6.1,2.921,149,110,4,74,3,48,80,77,0
2014-12-29,06:00:00,262,212,177,278,236,6.1,2.971,132,109,4,74,3,48,65,76,0
2014-12-29,07:00:00,230,180,175,239,236,5.4,3,115,109,3,74,3,48,68,75,0
2014-12-29,08:00:00,183,138,174,202,238,4.3,3.033,102,108,4,74,3,48,68,75,0
2014-12-29,09:00:00,180,136,174,206,238,4.2,3.058,102,108,4,74,4,48,60,75,0
2014-12-29,10:00:00,162,123,174,206,242,3.9,3.129,111,109,5,74,4,48,62,75,0
2014-12-29,11:00:00,175,132,177,232,248,3.8,3.242,126,112,5,74,4,48,58,77,0
2014-12-29,12:00:00,137,104,179,142,250,2.1,3.288,98,113,18,74,6,48,38,77,0
2014-12-29,13:00:00,66,38,178,81,250,0.9,3.288,53,113,47,74,11,48,23,76,0
2014-12-29,14:00:00,53,23,178,55,248,0.4,3.288,28,113,72,72,20,48,16,76,0
2014-12-29,15:00:00,59,20,178,67,247,0.4,3.283,30,113,76,76,29,48,12,76,0
2014-12-29,16:00:00,63,16,177,76,246,0.4,3.275,32,113,76,76,38,48,12,75,0
2014-12-29,17:00:00,59,18,176,68,245,0.6,3.275,58,113,51,76,44,48,14,74,0
2014-12-29,18:00:00,129,98,179,190,249,1.7,3.313,118,114,18,76,45,46,25,74,0
2014-12-29,19:00:00,112,84,178,162,249,1.6,3.296,116,114,6,76,46,46,21,73,0
2014-12-29,20:00:00,119,90,175,172,246,1.9,3.263,121,113,4,76,44,46,23,71,0
2014-12-29,21:00:00,124,94,168,181,238,2.7,3.229,123,112,3,76,38,46,32,68,0
2014-12-29,22:00:00,138,105,160,194,231,3.2,3.208,126,111,3,76,30,46,36,65,0
2014-12-29,23:00:00,159,121,152,217,224,3.6,3.204,132,110,4,76,21,46,41,62,0
2014-12-30,00:00:00,145,111,143,186,214,3.5,3.175,125,109,3,76,12,46,39,57,0
2014-12-30,01:00:00,113,85,132,132,202,2.7,3.108,112,107,3,76,6,46,53,51,0
2014-12-30,02:00:00,78,57,120,95,189,2.2,3.029,101,105,2,76,4,46,40,46,0
2014-12-30,03:00:00,45,31,108,32,173,1.1,2.883,80,102,5,76,3,46,32,42,0
2014-12-30,04:00:00,30,21,96,0,0,0.7,2.646,57,98,20,76,5,46,29,39,0
2014-12-30,05:00:00,23,12,85,0,0,0.6,2.417,46,94,32,76,9,46,24,37,0
2014-12-30,06:00:00,23,11,77,0,0,0.5,2.183,45,90,36,76,13,46,22,35,0
2014-12-30,07:00:00,22,9,70,0,0,0.5,1.979,44,87,38,76,17,46,16,33,0
2014-12-30,08:00:00,34,12,65,20,136,0.6,1.825,68,86,16,76,19,46,26,31,0
2014-12-30,09:00:00,35,13,59,34,127,0.7,1.679,70,84,15,76,20,46,20,30,0
2014-12-30,10:00:00,42,17,55,42,119,0.9,1.554,73,83,20,76,23,46,33,29,0
2014-12-30,11:00:00,62,36,51,73,111,1.4,1.454,80,81,22,76,25,46,26,27,0
2014-12-30,12:00:00,65,46,49,79,108,1.4,1.425,75,80,30,76,26,46,36,27,0
2014-12-30,13:00:00,82,60,50,101,109,1.7,1.458,76,81,35,76,26,46,47,28,0
2014-12-30,14:00:00,79,58,51,88,110,1.5,1.504,69,82,40,76,27,46,37,29,0
2014-12-30,15:00:00,72,52,52,72,111,1.3,1.542,63,84,47,76,28,46,30,30,0
2014-12-30,16:00:00,72,52,54,84,111,1.3,1.579,67,85,41,51,31,46,26,30,0
2014-12-30,18:00:00,77,56,54,98,108,1.5,1.608,81,85,24,47,33,46,29,31,0
2014-12-30,19:00:00,91,65,53,131,106,1.5,1.604,82,83,11,47,32,44,42,32,0
2014-12-30,20:00:00,48,33,51,48,100,0.7,1.554,63,81,19,47,30,38,37,33,0
2014-12-30,21:00:00,50,22,48,50,94,0.6,1.467,48,78,33,47,30,33,20,32,0
2014-12-30,22:00:00,103,21,44,156,92,0.3,1.346,17,73,67,67,33,33,2,31,0
2014-12-30,23:00:00,157,14,40,264,94,0.2,1.204,14,68,71,71,36,36,3,29,0
2014-12-31,00:00:00,115,9,35,179,94,0.2,1.067,13,64,68,71,40,40,3,28,0
2014-12-31,01:00:00,86,4,32,121,93,0.3,0.967,12,59,62,71,44,44,10,26,0
2014-12-31,02:00:00,73,9,30,95,93,0.3,0.888,14,56,57,71,48,48,9,25,0
2015-01-02,01:00:00,166,126,55,175,84,3.6,1.395,105,63,2,68,9,48,68,31,0
2015-01-02,02:00:00,130,99,57,125,86,2.7,1.452,92,64,2,68,4,48,46,32,0
2015-01-02,03:00:00,93,69,60,95,89,1.6,1.5,83,67,2,68,3,48,32,33,0
2015-01-02,04:00:00,65,47,59,70,88,1.3,1.492,76,67,4,68,3,48,25,33,0
2015-01-02,05:00:00,43,28,60,43,89,0.9,1.508,50,68,20,68,5,48,23,33,0
2015-01-02,06:00:00,23,12,61,23,90,0.7,1.512,43,68,32,68,8,48,17,33,0
2015-01-02,07:00:00,24,13,61,22,90,0.6,1.508,48,68,28,68,12,48,14,33,0
2015-01-02,08:00:00,30,12,61,20,90,0.6,1.508,59,69,17,68,13,48,15,33,0
2015-01-02,09:00:00,32,12,61,24,90,0.7,1.513,63,70,15,68,15,48,19,34,0
2015-01-02,10:00:00,30,19,62,30,90,0.9,1.517,56,70,29,68,18,48,27,34,0
2015-01-02,11:00:00,33,21,61,33,89,0.8,1.496,55,70,36,68,23,48,27,34,0
2015-01-02,12:00:00,22,15,60,16,87,0.5,1.463,30,69,58,68,29,48,21,34,0
2015-01-02,13:00:00,20,12,58,16,84,0.5,1.429,31,68,64,68,35,48,20,33,0
2015-01-02,14:00:00,25,17,56,0,0,0.5,1.404,35,68,65,68,39,48,19,33,0
2015-01-02,15:00:00,30,21,55,28,81,0.6,1.392,48,68,53,68,42,48,23,33,0
2015-01-02,16:00:00,49,32,54,49,81,0.8,1.392,70,69,33,65,44,48,27,33,0
2015-01-02,17:00:00,81,59,55,111,82,1.2,1.404,86,70,20,65,45,48,38,34,0
2015-01-02,18:00:00,138,105,56,164,85,1.6,1.421,96,72,13,65,43,47,53,35,0
2015-01-02,19:00:00,114,86,56,132,85,1.3,1.417,88,72,13,65,40,45,37,35,0
2015-01-02,20:00:00,110,83,56,125,85,1.4,1.408,82,71,23,65,36,45,38,35,0
2015-01-02,21:00:00,137,104,56,150,86,1.9,1.417,92,71,22,65,30,45,45,35,0
2015-01-02,22:00:00,147,112,57,148,85,1.8,1.404,99,71,7,65,23,45,55,35,0
2015-01-02,23:00:00,159,121,57,161,84,1.8,1.346,97,71,5,65,17,45,68,35,0
2015-01-03,00:00:00,176,133,57,171,84,2,1.262,98,70,2,65,13,45,77,35,0
2015-01-03,01:00:00,193,145,57,180,84,2.2,1.204,100,70,2,65,11,45,85,35,0
2015-01-03,02:00:00,206,156,60,197,87,2.4,1.192,100,70,2,65,10,45,93,37,0
2015-01-03,03:00:00,216,166,64,204,92,2.9,1.246,101,71,2,65,8,45,94,40,0
2015-01-03,04:00:00,220,170,69,220,99,3.7,1.346,103,72,2,65,6,45,75,42,0
2015-01-03,05:00:00,226,176,75,237,107,4.5,1.496,113,75,2,65,3,45,80,44,0
2015-01-03,06:00:00,244,194,83,248,117,5.2,1.683,108,77,2,65,2,45,78,47,0
2015-01-03,07:00:00,245,195,90,248,127,5.2,1.875,106,80,2,65,2,45,78,50,0
2015-01-03,08:00:00,243,193,98,239,136,5,2.058,102,82,2,65,2,45,78,52,0
2015-01-03,09:00:00,219,169,104,219,145,4,2.196,95,83,2,65,2,45,94,55,0
2015-01-03,10:00:00,204,154,110,210,152,3.9,2.321,94,85,2,65,2,45,88,58,0
2015-01-03,11:00:00,180,136,115,177,159,3.3,2.425,90,86,5,65,2,45,85,60,0
2015-01-03,12:00:00,179,135,120,175,166,3.2,2.538,92,89,10,65,3,45,93,63,0
2015-01-03,13:00:00,202,152,126,191,173,3.1,2.646,98,91,16,65,5,45,100,67,0
2015-01-03,14:00:00,204,154,131,188,174,2.9,2.746,107,94,19,53,7,45,94,70,0
2015-01-03,15:00:00,212,162,137,196,181,2.9,2.842,117,97,16,33,9,45,86,72,0
2015-01-03,16:00:00,220,170,143,212,188,3,2.933,130,100,7,23,10,45,82,75,0
2015-01-03,17:00:00,214,164,147,220,192,3.2,3.017,138,102,2,23,10,43,78,76,0
2015-01-03,18:00:00,235,185,151,261,196,3.9,3.113,152,104,2,23,10,40,91,78,0
2015-01-03,19:00:00,254,204,156,288,203,4.1,3.229,159,107,2,23,9,36,102,81,0
2015-01-03,20:00:00,272,222,161,322,211,4.9,3.375,158,110,2,22,8,30,103,83,0
2015-01-03,21:00:00,300,250,167,348,219,5,3.504,162,113,2,19,6,23,110,86,0
2015-01-03,22:00:00,298,248,173,328,227,5,3.637,158,116,2,19,4,17,109,88,0
2015-01-03,23:00:00,302,252,179,342,234,5.2,3.779,158,118,2,19,3,13,109,90,0
2015-01-04,00:00:00,350,300,186,402,244,6.9,3.983,170,121,2,19,2,11,119,92,0
2015-01-04,12:00:00,124,94,197,112,262,1.8,3.992,77,137,28,28,28,28,45,94,0
2015-01-04,13:00:00,134,102,193,130,258,1.9,3.9,87,136,34,34,31,31,47,90,0
2015-01-04,14:00:00,134,102,189,133,253,1.8,3.815,98,136,30,34,31,31,47,87,0
2015-01-04,15:00:00,112,0,0,173,252,2,3.746,108,135,31,34,31,31,55,84,0
2015-01-04,16:00:00,146,0,0,241,254,2.5,3.708,135,135,19,34,28,31,73,84,0
2015-01-04,17:00:00,70,0,0,0,0,2.8,3.677,139,135,10,34,25,31,78,84,0
2015-01-04,19:00:00,334,284,202,351,264,4.8,3.685,162,135,2,34,20,31,108,83,0
2015-01-04,20:00:00,372,322,212,396,270,6.4,3.8,174,137,2,34,16,31,129,85,0
2015-01-04,21:00:00,394,344,221,413,276,7,3.954,173,137,3,34,12,31,147,88,0
2015-01-04,22:00:00,379,329,229,373,279,6.1,4.038,161,138,2,34,9,31,128,89,0
2015-01-04,23:00:00,363,313,235,372,282,6.6,4.146,150,137,2,34,5,31,129,91,0
2015-01-05,00:00:00,356,306,236,357,278,6.1,4.085,142,135,2,34,3,31,129,92,0
2015-01-05,01:00:00,303,253,237,301,280,5.2,4.164,121,134,2,34,2,31,118,93,0
2015-01-05,02:00:00,252,202,234,250,278,4.5,4.187,109,132,2,34,2,31,110,95,0
2015-01-05,03:00:00,221,171,229,209,273,4,4.175,101,130,2,34,2,31,97,95,0
2015-01-05,04:00:00,209,159,224,200,269,4,4.165,101,129,2,34,2,31,94,95,0
2015-01-05,05:00:00,201,151,220,188,264,4,4.156,100,127,2,34,2,31,101,95,0
2015-01-05,06:00:00,203,153,215,205,261,4.1,4.153,108,126,2,34,2,31,101,95,0
2015-01-05,07:00:00,205,155,212,205,258,4.2,4.155,109,125,2,34,2,31,98,95,0
2015-01-05,08:00:00,220,170,209,226,256,4.6,4.176,115,125,2,34,2,31,106,96,0
2015-01-05,09:00:00,201,151,206,216,254,4.2,4.177,112,124,2,34,2,31,113,97,0
2015-01-05,10:00:00,219,169,205,248,254,4.8,4.204,120,124,3,34,2,31,127,98,0
2015-01-05,11:00:00,220,170,203,248,254,4.2,4.204,117,124,8,34,3,31,109,98,0
2015-01-05,12:00:00,206,156,206,221,258,2.8,4.246,95,124,26,34,6,31,70,100,0
2015-01-05,13:00:00,87,39,203,124,258,0.5,4.188,31,122,72,72,15,31,17,98,0
2015-01-05,14:00:00,129,28,199,207,261,0.4,4.129,22,119,84,84,25,31,10,97,0
2015-01-05,17:00:00,65,16,176,79,248,0.3,3.863,21,105,83,90,57,57,3,89,0
2015-01-05,18:00:00,55,10,170,60,239,0.3,3.737,25,100,76,90,66,66,4,86,0
2015-01-05,19:00:00,61,11,159,72,227,0.3,3.55,23,95,80,90,75,75,4,81,0
2015-01-05,20:00:00,58,7,146,65,214,0.2,3.292,20,88,82,90,82,82,3,76,0
2015-01-05,21:00:00,36,3,131,36,198,0.2,3.008,19,82,82,90,83,83,4,70,0
2015-01-05,22:00:00,27,3,118,26,183,0.3,2.767,17,76,85,90,83,83,4,65,0
2015-01-05,23:00:00,35,3,105,35,169,0.2,2.5,14,70,87,90,83,83,4,60,0
2015-01-06,00:00:00,28,8,92,28,156,0.3,2.258,23,65,72,90,81,83,8,55,0
2015-01-06,01:00:00,25,10,82,25,144,0.4,2.058,29,61,56,90,78,83,19,51,0
2015-01-06,02:00:00,21,11,74,18,135,0.4,1.887,21,58,66,90,76,83,20,47,0
2015-01-06,03:00:00,20,7,67,17,127,0.4,1.737,26,54,61,90,74,83,21,44,0
2015-01-06,04:00:00,17,10,61,17,119,0.4,1.587,28,51,51,90,70,83,23,41,0
2015-01-06,05:00:00,18,7,55,18,112,0.5,1.442,26,48,50,90,66,83,28,38,0
2015-01-06,06:00:00,19,12,49,19,104,0.5,1.292,33,45,41,90,60,83,28,35,0
2015-01-06,07:00:00,18,9,43,17,96,0.5,1.138,35,42,39,90,54,83,31,32,0
2015-01-06,08:00:00,31,10,37,23,88,0.6,0.971,61,40,12,90,47,83,32,29,0
2015-01-06,09:00:00,39,16,31,39,80,0.7,0.825,52,37,24,90,43,83,23,25,0
2015-01-06,11:00:00,25,16,18,25,62,0.6,0.5,30,31,55,90,39,83,21,17,0
2015-01-06,13:00:00,23,10,11,14,49,0.5,0.404,24,27,71,90,43,83,11,14,0
2015-01-06,14:00:00,32,17,11,32,42,0.7,0.417,44,28,56,90,45,83,16,15,0
2015-01-06,15:00:00,51,33,12,51,38,0.7,0.433,44,29,61,87,48,83,16,15,0
2015-01-06,16:00:00,55,33,12,59,34,0.7,0.45,46,30,63,87,54,83,20,16,0
2015-01-06,17:00:00,70,51,14,89,35,0.8,0.471,53,32,55,87,58,83,24,17,0
2015-01-06,18:00:00,84,62,16,114,37,0.9,0.496,68,33,31,87,57,83,27,18,0
2015-01-06,19:00:00,81,58,18,111,39,0.9,0.521,83,36,12,87,52,83,30,19,0
2015-01-06,20:00:00,104,78,21,134,42,1.2,0.562,93,39,4,87,44,83,46,21,0
2015-01-06,21:00:00,135,103,25,154,46,1.4,0.612,90,42,2,87,36,83,57,23,0
2015-01-06,22:00:00,133,101,29,156,52,1.6,0.667,93,45,2,87,29,83,58,25,0
2015-01-06,23:00:00,139,106,33,160,57,1.7,0.729,90,48,2,72,21,81,62,27,0
2015-01-07,00:00:00,149,114,38,174,63,2,0.8,90,51,2,71,14,78,62,30,0
2015-01-07,01:00:00,166,126,43,187,70,3.1,0.913,105,54,2,71,7,76,69,32,0
2015-01-07,02:00:00,183,138,48,193,77,3.2,1.029,111,58,2,71,4,74,70,34,0
2015-01-07,03:00:00,153,117,52,141,82,2.5,1.117,96,61,2,71,2,70,62,36,0
2015-01-07,04:00:00,104,78,55,92,85,2,1.183,83,63,2,71,2,66,56,37,0
2015-01-07,05:00:00,90,67,58,69,88,1.6,1.229,74,65,2,71,2,60,34,37,0
2015-01-07,06:00:00,52,36,59,0,0,1,1.25,68,67,2,71,2,58,25,37,0
2015-01-07,07:00:00,35,24,59,25,91,0.9,1.267,67,68,2,71,2,58,30,37,0
2015-01-07,08:00:00,40,28,60,37,92,1.2,1.292,74,69,2,71,2,58,37,37,0
2015-01-07,09:00:00,52,27,61,54,92,1.4,1.321,75,69,3,71,2,58,29,37,0
2015-01-07,10:00:00,67,39,62,84,95,2,1.379,86,71,4,71,2,58,39,38,0
2015-01-07,11:00:00,84,62,64,99,98,2.1,1.442,75,73,16,71,4,58,63,40,0
2015-01-07,12:00:00,94,70,66,98,101,2.1,1.508,72,75,24,71,7,58,56,42,0
2015-01-07,13:00:00,78,57,68,76,104,1.6,1.554,56,77,40,63,12,58,47,43,0
2015-01-07,14:00:00,89,66,70,89,106,1.7,1.596,58,77,46,63,17,58,51,45,0
2015-01-07,15:00:00,98,73,71,94,108,1.8,1.642,62,78,42,63,22,58,57,46,0
2015-01-07,16:00:00,90,67,73,97,110,1.9,1.692,70,79,34,55,26,58,60,48,0
2015-01-07,17:00:00,108,81,74,106,111,2.2,1.75,80,80,21,46,28,57,62,50,0
2015-01-07,18:00:00,109,82,75,118,111,2.4,1.812,88,81,10,46,29,52,60,51,0
2015-01-07,19:00:00,97,72,76,99,110,2,1.858,86,81,5,46,28,44,46,52,0
2015-01-07,20:00:00,102,76,75,100,109,1.8,1.883,87,81,2,46,25,36,39,51,0
2015-01-07,21:00:00,112,84,75,120,107,2.2,1.917,91,81,2,46,20,29,49,51,0
2015-01-07,22:00:00,134,102,75,165,108,2.4,1.95,91,81,2,46,15,29,55,51,0
2015-01-07,23:00:00,132,100,74,125,106,2.1,1.967,83,80,2,46,10,29,44,50,0
2015-01-08,00:00:00,80,59,72,80,102,1.8,1.958,72,80,2,46,6,29,38,49,0
2015-01-08,01:00:00,94,70,70,91,98,2.6,1.938,77,78,2,46,3,29,41,48,0
2015-01-08,02:00:00,94,70,67,90,93,2.1,1.892,72,77,2,46,2,29,39,47,0
2015-01-08,03:00:00,105,79,65,98,92,1.9,1.867,77,76,2,46,2,29,44,46,0
2015-01-08,04:00:00,132,100,66,118,93,2.1,1.871,82,76,2,46,2,29,44,45,0
2015-01-08,05:00:00,218,168,70,212,99,4.7,2,98,77,3,46,2,29,54,46,0
2015-01-08,06:00:00,260,210,78,264,106,5.8,2.2,99,78,2,46,2,29,46,47,0
2015-01-08,07:00:00,236,186,84,224,114,5.1,2.375,93,79,2,46,2,29,41,48,0
2015-01-08,08:00:00,210,160,90,190,120,4.2,2.5,90,80,2,46,2,29,44,48,0
2015-01-08,09:00:00,215,165,96,200,127,4.4,2.625,92,81,2,46,2,29,54,49,0
2015-01-08,10:00:00,160,122,99,160,130,3.2,2.675,88,81,2,46,2,29,62,50,0
2015-01-08,11:00:00,127,96,101,127,131,2.3,2.683,81,81,6,46,3,29,59,50,0
2015-01-08,12:00:00,127,96,102,116,132,2,2.679,82,81,12,46,4,29,52,50,0
2015-01-08,13:00:00,143,109,104,135,134,2.2,2.704,97,83,12,46,5,29,52,50,0
2015-01-08,14:00:00,163,124,106,161,137,2.7,2.746,120,86,12,42,6,29,53,50,0
2015-01-08,15:00:00,252,202,112,265,144,3.8,2.829,167,90,6,34,7,29,70,50,0
2015-01-08,16:00:00,212,162,116,203,149,2.7,2.863,136,93,9,21,8,29,60,50,0
2015-01-08,17:00:00,225,175,120,217,153,2.9,2.892,141,95,3,12,8,29,61,50,0
2015-01-08,19:00:00,236,186,128,228,163,3.4,2.975,140,100,2,12,7,25,56,51,0
2015-01-08,20:00:00,239,189,133,240,169,3.8,3.058,140,102,2,12,6,20,54,51,0
2015-01-08,23:00:00,420,379,167,442,207,6,3.558,182,113,2,12,3,8,98,57,0
2015-01-09,00:00:00,412,367,180,410,221,6.2,3.742,174,118,2,12,2,8,78,59,0
2015-01-09,01:00:00,359,309,189,341,232,5.8,3.875,166,121,2,12,2,8,80,60,0
2015-01-09,02:00:00,296,246,197,270,239,5.3,4.008,134,124,2,12,2,8,94,62,0
2015-01-09,03:00:00,303,253,204,280,247,5.7,4.167,132,126,2,12,2,8,98,65,0
2015-01-09,04:00:00,302,252,210,270,253,5.8,4.321,136,129,2,12,2,8,97,67,0
2015-01-09,05:00:00,168,127,209,0,0,2.7,4.238,103,129,2,12,2,8,50,67,0
2015-01-09,06:00:00,53,37,201,0,0,1.1,4.042,74,128,2,12,2,8,20,66,0
2015-01-09,07:00:00,38,26,195,28,245,0.9,3.867,60,126,10,12,3,8,18,65,0
2015-01-09,08:00:00,24,10,189,20,238,0.5,3.712,48,125,22,22,6,8,20,64,0
2015-01-09,09:00:00,37,13,182,37,230,0.5,3.55,39,122,34,34,10,10,20,62,0
2015-01-09,10:00:00,32,14,178,32,224,0.5,3.438,32,120,43,43,15,15,21,61,0
2015-01-09,11:00:00,30,13,174,30,220,0.6,3.367,32,118,47,47,20,20,23,59,0
2015-01-09,12:00:00,26,13,171,26,216,0.5,3.304,25,116,59,59,27,27,17,58,0
2015-01-09,13:00:00,22,12,167,15,211,0.4,3.229,22,112,69,69,36,36,10,56,0
2015-01-09,14:00:00,24,8,162,16,204,0.3,3.129,20,108,76,76,45,45,9,54,0
2015-01-09,15:00:00,25,11,154,18,193,0.3,2.983,22,102,77,77,53,53,8,51,0
2015-01-09,16:00:00,22,11,148,19,184,0.3,2.883,28,98,70,77,59,59,7,49,0
2015-01-09,17:00:00,52,13,141,53,177,0.4,2.779,38,93,56,77,62,62,10,47,0
2015-01-09,18:00:00,34,14,134,29,168,0.5,2.675,68,90,20,77,59,62,8,45,0
2015-01-09,19:00:00,49,28,127,48,160,1,2.575,97,89,3,77,54,62,15,43,0
2015-01-09,21:00:00,192,144,116,182,144,2.2,2.317,129,86,2,77,38,62,57,42,0
2015-01-09,22:00:00,327,277,112,331,138,3.4,2.192,160,85,2,77,29,62,139,43,0
2015-01-09,23:00:00,348,298,108,340,133,3.5,2.088,157,84,2,77,20,62,149,45,0
2015-01-10,00:00:00,376,326,107,358,131,3.7,1.983,154,83,2,77,11,62,141,48,0
2015-01-10,01:00:00,345,295,106,315,130,3.5,1.888,144,82,2,77,5,62,125,50,0
2015-01-10,02:00:00,330,280,107,297,131,3.4,1.808,138,82,2,77,2,62,145,52,0
2015-01-10,03:00:00,356,306,110,327,133,3.8,1.729,142,83,2,77,2,62,168,55,0
2015-01-10,04:00:00,362,312,112,332,136,3.9,1.65,143,83,5,77,2,62,156,57,0
2015-01-10,05:00:00,302,252,117,0,0,4.6,1.729,114,83,4,77,3,62,92,59,0
2015-01-10,06:00:00,220,170,123,0,0,4.2,1.858,106,85,3,77,3,62,68,61,0
2015-01-10,07:00:00,222,172,129,180,143,4.7,2.017,109,87,3,77,3,62,65,63,0
2015-01-10,08:00:00,248,198,137,215,152,5.8,2.238,120,90,4,77,3,62,70,65,0
2015-01-10,09:00:00,244,194,144,225,160,5.8,2.458,124,93,4,77,3,62,85,68,0
2015-01-10,10:00:00,254,204,152,232,169,5.9,2.683,133,98,4,77,4,62,80,70,0
2015-01-10,11:00:00,274,224,161,257,180,5.8,2.9,161,103,5,77,4,62,76,73,0
2015-01-10,12:00:00,264,214,169,259,190,5.1,3.092,177,109,7,77,4,62,58,74,0
2015-01-10,13:00:00,301,251,179,314,204,5.8,3.317,208,117,6,77,4,62,60,76,0
2015-01-10,14:00:00,169,128,184,133,209,2.5,3.408,128,122,24,77,7,62,44,78,0
2015-01-10,15:00:00,226,176,191,200,217,2.6,3.504,144,127,23,70,10,62,53,80,0
2015-01-10,16:00:00,149,114,196,119,222,1.5,3.554,94,129,42,56,14,62,34,81,0
2015-01-10,17:00:00,109,82,198,86,223,1.2,3.587,85,131,41,42,19,59,27,82,0
2015-01-10,18:00:00,120,91,202,108,227,1.3,3.621,105,133,18,42,21,54,27,82,0
2015-01-10,19:00:00,182,137,206,175,233,1.8,3.654,122,134,16,42,22,47,41,83,0
2015-01-10,20:00:00,253,203,210,232,237,2.4,3.683,146,135,4,42,22,38,65,84,0
2015-01-10,21:00:00,280,230,214,262,241,2.8,3.708,153,136,2,42,21,29,72,85,0
2015-01-10,22:00:00,281,231,212,259,238,3.3,3.704,150,136,2,42,18,22,73,82,0
2015-01-10,23:00:00,158,120,205,135,228,2.4,3.658,112,134,2,42,16,22,55,78,0
2015-01-11,00:00:00,77,56,193,72,215,1.4,3.562,90,131,4,42,11,22,31,74,0
2015-01-11,01:00:00,58,15,182,65,204,0.4,3.433,37,127,45,45,12,22,8,69,0
2015-01-11,02:00:00,36,8,170,36,192,0.3,3.304,20,122,63,63,17,22,4,63,0
2015-01-11,03:00:00,21,6,158,11,178,0.3,3.158,15,116,67,67,24,24,3,56,0
2015-01-11,04:00:00,21,8,145,0,0,0.3,3.008,15,111,66,67,31,31,4,50,0
2015-01-11,06:00:00,20,6,128,0,0,0.3,2.667,18,103,61,67,46,46,6,44,0
2015-01-11,07:00:00,16,6,121,0,0,0.4,2.487,32,100,47,67,52,52,10,41,0
2015-01-11,08:00:00,22,3,113,14,160,0.4,2.262,43,97,35,67,56,56,10,39,0
2015-01-11,09:00:00,25,5,105,22,150,0.4,2.037,50,94,30,67,54,56,8,36,0
2015-01-11,10:00:00,17,9,97,13,139,0.4,1.808,31,90,52,67,52,56,7,33,0
2015-01-11,11:00:00,19,12,88,0,0,0.4,1.583,28,84,59,67,51,56,7,30,0
2015-01-11,12:00:00,20,8,80,10,119,0.4,1.387,30,78,62,67,51,56,7,28,0
2015-01-11,13:00:00,29,20,70,0,0,0.5,1.167,39,71,57,67,50,56,7,25,0
2015-01-11,14:00:00,32,22,66,30,103,0.7,1.092,56,68,44,67,48,56,11,24,0
2015-01-11,15:00:00,45,31,60,44,94,0.7,1.012,52,64,50,67,49,56,14,22,0
2015-01-11,16:00:00,46,30,56,46,90,0.6,0.975,52,62,50,67,50,56,14,22,0
2015-01-11,17:00:00,46,32,54,44,88,0.6,0.95,53,61,49,67,53,56,14,21,0
2015-01-11,18:00:00,69,47,52,88,87,1.1,0.942,69,60,32,67,50,56,27,21,0
2015-01-11,19:00:00,110,83,50,128,84,1.4,0.925,80,58,21,67,46,56,42,21,0
2015-01-11,20:00:00,112,84,45,118,78,1.3,0.879,76,55,22,67,41,56,40,20,0
2015-01-11,21:00:00,122,92,39,120,70,1.5,0.825,89,52,11,67,35,56,38,19,0
2015-01-11,22:00:00,124,94,34,123,62,1.5,0.75,94,50,5,67,30,56,38,17,0
2015-01-11,23:00:00,132,100,33,133,62,1.7,0.721,90,49,4,67,24,56,46,17,0
2015-01-12,00:00:00,114,86,34,110,64,1.5,0.725,74,48,4,67,18,56,37,17,0
2015-01-12,01:00:00,93,69,36,77,65,1.2,0.758,67,50,7,67,13,56,32,18,0
2015-01-12,02:00:00,82,60,38,0,0,1.1,0.792,65,51,12,67,11,56,31,19,0
2015-01-12,03:00:00,94,70,41,73,70,1.1,0.825,65,54,7,66,9,56,34,20,0
2015-01-12,04:00:00,93,69,44,0,0,1.1,0.858,57,55,9,62,7,56,36,22,0
2015-01-12,05:00:00,110,83,47,0,0,1.2,0.896,62,57,6,62,7,56,35,23,0
2015-01-12,06:00:00,117,88,50,0,0,1.6,0.95,68,59,2,62,6,56,36,24,0
2015-01-12,07:00:00,132,100,54,114,73,2.3,1.029,72,61,2,62,6,56,37,25,0
2015-01-12,08:00:00,144,110,59,123,79,2.7,1.125,74,62,2,62,6,54,45,27,0
2015-01-12,09:00:00,144,110,63,126,84,2.8,1.225,74,63,3,62,5,53,50,29,0
2015-01-12,10:00:00,152,116,67,129,91,2.4,1.308,74,65,6,62,5,53,59,31,0
2015-01-12,11:00:00,182,137,73,161,95,2.7,1.404,87,67,8,62,5,53,66,33,0
2015-01-12,13:00:00,149,114,83,0,0,1.4,1.525,68,71,36,50,9,53,62,38,0
2015-01-12,14:00:00,123,93,86,0,0,1.2,1.546,61,71,48,50,15,53,54,40,0
2015-01-12,15:00:00,117,88,88,0,0,1.1,1.562,59,72,52,52,21,53,46,41,0
2015-01-12,16:00:00,112,84,90,0,0,1,1.579,59,72,54,54,28,53,55,43,0
2015-01-12,17:00:00,100,75,92,0,0,0.9,1.592,58,72,52,54,34,50,54,45,0
2015-01-12,18:00:00,87,64,93,76,119,0.8,1.579,59,72,55,55,40,46,38,45,0
2015-01-12,22:00:00,256,206,97,256,129,4.2,1.704,123,74,2,55,34,44,85,47,0
2015-01-12,23:00:00,226,176,101,200,134,3.8,1.792,109,75,2,55,28,44,73,48,0
2015-01-13,00:00:00,212,162,104,187,140,3.9,1.892,107,76,2,55,22,44,67,49,0
2015-01-13,01:00:00,216,166,108,203,149,4.3,2.021,106,78,2,55,15,44,62,50,0
2015-01-13,02:00:00,206,156,112,189,151,4.4,2.158,103,79,2,55,9,44,61,51,0
2015-01-13,03:00:00,245,195,117,246,163,4.7,2.308,102,81,2,55,4,44,59,53,0
2015-01-13,04:00:00,224,174,121,223,166,4.3,2.442,95,82,2,55,2,44,67,54,0
2015-01-13,05:00:00,210,160,125,188,168,3.7,2.546,90,84,2,55,2,44,54,55,0
2015-01-13,06:00:00,198,148,127,178,168,3.6,2.629,90,84,2,55,2,44,50,55,0
2015-01-13,07:00:00,189,142,129,164,171,3.5,2.679,92,85,2,55,2,44,53,56,0
2015-01-13,08:00:00,188,141,130,155,173,3.2,2.7,90,86,2,55,2,44,56,56,0
2015-01-13,09:00:00,208,158,132,182,176,4,2.75,98,87,2,55,2,44,58,57,0
2015-01-13,10:00:00,219,169,134,208,180,4.3,2.829,102,88,2,55,2,44,70,57,0
2015-01-13,11:00:00,175,132,134,154,180,2.6,2.825,89,88,5,55,2,44,80,58,0
2015-01-13,12:00:00,182,137,133,157,179,2.4,2.825,89,88,10,55,3,44,88,58,0
2015-01-13,13:00:00,176,133,134,134,177,2,2.85,87,89,16,55,5,44,89,60,0
2015-01-13,14:00:00,205,155,137,164,176,2.1,2.887,100,90,16,55,7,44,86,61,0
2015-01-13,15:00:00,231,181,141,210,178,2.4,2.942,105,92,14,55,8,44,89,63,0
2015-01-13,16:00:00,254,204,146,235,180,2.4,3,113,95,9,55,9,44,90,64,0
2015-01-13,17:00:00,237,187,150,212,182,2.2,3.054,111,97,4,55,10,44,82,65,0
2015-01-13,18:00:00,240,190,156,217,188,2.5,3.125,123,100,2,35,10,44,74,67,0
2015-01-13,19:00:00,272,222,162,248,196,2.9,3.208,127,102,2,21,9,44,68,68,0
2015-01-13,20:00:00,294,244,170,275,199,3.5,3.313,127,104,2,16,8,40,63,70,0
2015-01-13,21:00:00,311,261,175,282,203,3.8,3.363,129,104,2,16,6,34,63,70,0
2015-01-13,22:00:00,342,292,179,326,206,4.6,3.379,138,105,2,16,5,28,66,70,0
2015-01-13,23:00:00,418,377,187,432,215,5.8,3.462,156,107,3,16,3,22,91,70,0
2015-01-14,00:00:00,425,387,196,420,225,6.4,3.567,145,109,3,16,2,15,116,72,0
2015-01-14,01:00:00,402,352,204,378,232,5.6,3.621,131,110,2,16,2,10,110,74,0
2015-01-14,02:00:00,353,303,210,314,238,4.9,3.642,120,110,2,16,2,10,83,75,0
2015-01-14,03:00:00,351,301,215,313,240,4.9,3.65,122,111,2,16,2,10,76,76,0
2015-01-14,04:00:00,309,259,218,0,0,4.1,3.642,113,112,4,16,2,10,69,76,0
2015-01-14,05:00:00,242,192,219,0,0,2.6,3.596,90,112,2,16,2,10,70,77,0
2015-01-14,06:00:00,213,163,220,0,0,2.2,3.537,91,112,2,16,2,10,66,77,0
2015-01-14,07:00:00,214,164,221,0,0,2.1,3.479,87,112,2,16,2,10,63,78,0
2015-01-14,08:00:00,212,162,222,0,0,2.2,3.437,87,112,2,16,2,10,62,78,0
2015-01-14,09:00:00,211,161,222,0,0,2,3.354,83,111,2,16,2,10,58,78,0
2015-01-14,10:00:00,214,164,222,0,0,2,3.258,84,110,3,16,2,10,58,78,0
2015-01-14,12:00:00,286,236,228,271,272,3.6,3.312,117,112,3,16,2,10,76,77,0
2015-01-14,13:00:00,281,231,232,0,0,2.9,3.35,113,113,3,16,2,10,80,76,0
2015-01-14,14:00:00,282,232,236,0,0,2.5,3.367,111,113,5,14,3,10,90,77,0
2015-01-14,15:00:00,294,244,238,252,291,2.6,3.375,115,114,5,9,3,10,88,77,0
2015-01-14,16:00:00,313,263,241,0,0,2.7,3.388,117,114,4,5,4,10,86,76,0
2015-01-14,17:00:00,319,269,244,0,0,3.2,3.429,125,115,2,5,4,10,87,77,0
2015-01-14,18:00:00,315,265,247,280,307,3.1,3.454,123,115,2,5,3,9,87,77,0
2015-01-14,19:00:00,324,274,249,289,310,3.6,3.483,122,114,2,5,3,8,78,78,0
2015-01-14,20:00:00,331,281,251,291,311,3.7,3.492,125,114,3,5,3,6,84,78,0
2015-01-14,21:00:00,352,302,253,321,314,4.2,3.508,128,114,3,5,3,5,86,79,0
2015-01-14,22:00:00,372,322,254,350,316,4.6,3.508,132,114,3,5,3,4,75,80,0
2015-01-14,23:00:00,374,324,252,360,310,4.5,3.454,135,113,3,5,3,4,72,79,0
2015-01-15,00:00:00,381,331,249,343,304,4.8,3.388,134,113,3,5,3,4,63,77,0
2015-01-15,01:00:00,362,312,248,0,0,4.5,3.342,128,113,3,5,3,4,72,75,0
2015-01-15,02:00:00,322,272,246,0,0,3.6,3.288,125,113,2,5,3,4,74,75,0
2015-01-15,03:00:00,336,286,246,0,0,4.3,3.263,130,113,3,5,3,4,69,74,0
2015-01-15,04:00:00,353,303,248,0,0,4.9,3.296,131,114,3,5,3,4,65,74,0
2015-01-15,05:00:00,326,276,251,0,0,4.7,3.383,114,115,2,5,3,4,64,74,0
2015-01-15,06:00:00,285,235,254,0,0,3.7,3.446,102,115,2,5,3,4,70,74,0
2015-01-15,07:00:00,285,235,257,0,0,3.7,3.513,102,116,2,5,2,4,66,74,0
2015-01-15,08:00:00,265,215,259,0,0,3.4,3.563,93,116,2,5,2,4,65,74,0
2015-01-15,09:00:00,264,214,261,0,0,3.6,3.629,89,116,3,5,2,4,68,75,0
2015-01-15,10:00:00,266,216,264,0,0,3.5,3.692,87,117,3,5,2,4,64,75,0
2015-01-15,11:00:00,303,253,266,0,0,3.9,3.742,108,117,4,5,3,4,72,75,0
2015-01-15,13:00:00,90,0,0,0,0,0,0,180,121,12,12,4,4,56,74,0
2015-01-15,14:00:00,403,354,275,0,0,7.1,4.043,185,124,7,12,5,5,58,72,0
2015-01-15,15:00:00,474,460,285,502,339,5.5,4.17,176,126,5,12,5,5,64,71,0
2015-01-15,16:00:00,490,484,295,515,357,5.5,4.291,182,129,3,12,5,5,51,70,0
2015-01-15,17:00:00,478,466,304,482,368,5.2,4.378,161,130,2,12,5,5,40,68,0
2015-01-15,18:00:00,452,427,311,434,382,4.7,4.448,142,131,2,12,5,5,42,66,0
2015-01-15,19:00:00,467,450,319,459,398,5,4.509,141,132,2,12,5,5,39,64,0
2015-01-15,20:00:00,452,428,326,433,411,5,4.565,133,132,2,12,4,5,38,63,0
2015-01-15,21:00:00,468,451,332,0,0,5.3,4.613,131,132,2,12,3,5,28,60,0
2015-01-15,22:00:00,453,429,337,0,0,4.5,4.609,123,132,2,12,2,5,28,58,0
2015-01-15,23:00:00,474,461,344,0,0,5.3,4.643,122,132,2,12,2,5,30,56,0
2015-01-16,00:00:00,498,497,351,0,0,5.9,4.691,124,131,2,12,2,5,22,55,0
2015-01-16,01:00:00,500,512,360,0,0,5.8,4.748,121,131,2,12,2,5,22,53,0
2015-01-16,02:00:00,500,513,371,0,0,5.9,4.848,121,131,2,12,2,5,16,50,0
2015-01-16,03:00:00,500,501,381,0,0,5.9,4.917,121,130,2,12,2,5,13,48,0
2015-01-16,04:00:00,494,490,389,0,0,6.1,4.97,123,130,5,12,2,5,14,46,0
2015-01-16,05:00:00,199,149,384,0,0,1.5,4.83,42,127,28,28,6,6,18,44,0
2015-01-16,06:00:00,20,14,374,0,0,0.4,4.687,16,123,61,61,13,13,13,41,0
2015-01-16,07:00:00,19,13,364,14,394,0.4,4.543,22,120,54,61,20,20,12,39,0
2015-01-16,08:00:00,24,14,354,24,353,0.4,4.413,35,118,42,61,24,24,15,37,0
2015-01-16,09:00:00,26,18,345,23,320,0.5,4.278,38,115,40,61,29,29,16,35,0
2015-01-16,10:00:00,53,11,336,55,296,0.4,4.143,22,113,56,61,36,36,5,33,0
2015-01-16,11:00:00,61,10,325,71,277,0.4,3.991,18,109,61,61,43,43,7,30,0
2015-01-16,12:00:00,93,18,312,136,262,0.4,3.787,17,104,62,62,50,50,11,27,0
2015-01-16,13:00:00,74,16,299,98,250,0.4,3.646,17,97,66,66,55,55,9,25,0
2015-01-16,14:00:00,56,12,285,62,236,0.4,3.367,19,90,69,69,56,56,9,23,0
2015-01-16,15:00:00,54,10,266,57,204,0.3,3.15,19,84,72,72,58,58,9,21,0
2015-01-16,17:00:00,29,9,228,29,138,0.3,2.729,27,72,66,72,65,65,6,18,0
2015-01-16,18:00:00,19,9,210,19,108,0.4,2.55,35,67,54,72,65,65,8,16,0
2015-01-16,19:00:00,19,12,192,0,0,0.4,2.358,38,63,50,72,64,65,8,15,0
2015-01-16,21:00:00,23,14,156,0,0,0.5,1.967,45,55,40,72,58,65,8,13,0
2015-01-16,22:00:00,17,9,139,0,0,0.4,1.796,34,52,51,72,56,65,5,12,0
2015-01-16,23:00:00,18,12,120,0,0,0.4,1.592,30,48,51,72,53,65,7,11,0
2015-01-17,00:00:00,18,12,100,0,0,0.4,1.362,34,44,44,72,50,65,11,11,0
2015-01-17,01:00:00,19,13,79,0,0,0.4,1.137,36,41,41,72,47,65,13,10,0
2015-01-17,02:00:00,30,21,59,0,0,0.7,0.921,52,38,30,72,44,65,13,10,0
2015-01-17,03:00:00,23,16,39,0,0,0.5,0.696,42,34,39,72,43,65,14,10,0
2015-01-17,04:00:00,22,15,19,0,0,0.5,0.463,38,31,42,72,42,65,13,10,0
2015-01-17,05:00:00,22,10,13,0,0,0.5,0.421,43,31,38,72,42,65,15,10,0
2015-01-17,06:00:00,26,11,13,0,0,0.5,0.425,51,32,32,72,40,65,18,10,0
2015-01-17,07:00:00,29,14,13,0,0,0.7,0.438,57,34,24,72,36,65,19,10,0
2015-01-17,08:00:00,26,12,13,0,0,0.6,0.446,52,34,28,72,34,65,17,11,0
2015-01-17,09:00:00,30,16,13,0,0,0.6,0.45,60,35,25,72,32,65,12,10,0
2015-01-17,10:00:00,24,15,13,0,0,0.6,0.458,48,36,36,72,33,65,10,11,0
2015-01-17,11:00:00,28,19,13,23,58,0.8,0.475,54,38,33,72,32,65,12,11,0
2015-01-17,12:00:00,92,68,15,71,49,1.3,0.513,55,40,35,72,31,65,42,12,0
2015-01-17,13:00:00,123,93,19,0,0,1.3,0.55,54,41,43,72,32,65,47,14,0
2015-01-17,14:00:00,120,91,22,98,48,1.3,0.588,56,43,47,72,34,65,49,15,0
2015-01-17,15:00:00,120,91,25,102,54,1.2,0.625,59,44,53,70,38,65,46,17,0
2015-01-17,16:00:00,134,102,29,112,65,1.3,0.667,63,46,52,66,40,65,54,19,0
2015-01-17,17:00:00,156,119,34,133,80,1.5,0.717,75,48,41,54,42,65,56,21,0
2015-01-17,18:00:00,172,130,39,146,98,1.5,0.763,88,50,29,53,42,64,53,23,0
2015-01-17,19:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-01-17,20:00:00,193,145,46,174,107,1.8,0.839,112,54,8,53,39,58,60,26,0
2015-01-17,21:00:00,207,157,52,179,115,2,0.904,114,57,4,53,33,56,61,28,0
2015-01-17,22:00:00,140,107,56,121,116,1.4,0.948,96,60,6,53,28,53,40,30,0
2015-01-17,23:00:00,137,104,60,125,117,1.6,1,98,62,4,53,21,50,44,31,0
2015-01-18,03:00:00,207,157,90,170,143,2.9,1.57,105,75,3,53,5,42,68,41,0
2015-01-18,04:00:00,193,145,96,161,144,3.1,1.683,100,78,4,53,4,42,65,43,0
2015-01-18,05:00:00,202,152,102,165,145,3.4,1.809,100,80,2,53,4,42,69,46,0
2015-01-18,06:00:00,200,150,108,162,146,3.1,1.922,99,82,2,53,4,42,60,47,0
2015-01-18,07:00:00,195,146,114,162,147,3.2,2.03,101,84,2,53,4,42,61,49,0
2015-01-18,08:00:00,198,148,120,161,148,3.4,2.152,102,87,2,53,3,42,62,51,0
2015-01-18,09:00:00,210,160,126,199,150,3.9,2.296,111,89,2,53,3,42,64,54,0
2015-01-18,10:00:00,200,150,132,184,152,3.5,2.422,113,92,2,53,2,42,67,56,0
2015-01-18,11:00:00,175,132,137,150,158,2.5,2.496,102,94,8,53,3,42,59,58,0
2015-01-18,12:00:00,130,99,138,111,159,1.7,2.513,77,95,24,53,6,42,45,58,0
2015-01-18,13:00:00,90,46,136,129,158,0.7,2.487,25,93,66,66,14,42,24,57,0
2015-01-18,14:00:00,81,34,134,112,159,0.5,2.452,21,92,78,78,23,42,16,56,0
2015-01-18,15:00:00,88,14,130,126,160,0.3,2.413,17,90,95,95,35,42,6,54,0
2015-01-18,20:00:00,140,13,107,229,166,0.3,2.121,17,76,76,95,81,81,2,43,0
2015-01-18,21:00:00,62,12,101,74,161,0.3,2.05,19,72,75,95,82,82,2,41,0
2015-01-18,22:00:00,57,12,97,64,159,0.3,2.004,19,69,72,95,81,82,2,39,0
2015-01-18,23:00:00,52,13,93,53,156,0.3,1.95,27,66,63,95,77,82,2,38,0
2015-01-19,01:00:00,39,9,77,39,140,0.3,1.625,18,58,68,95,71,82,3,32,0
2015-01-19,02:00:00,35,9,70,35,132,0.3,1.479,21,54,62,95,70,82,2,29,0
2015-01-19,03:00:00,40,11,63,40,127,0.6,1.383,46,51,36,95,64,82,9,27,0
2015-01-19,04:00:00,53,20,58,56,123,0.8,1.288,57,50,25,95,58,82,10,24,0
2015-01-19,05:00:00,34,20,53,34,117,0.7,1.175,49,48,34,95,53,82,7,22,0
2015-01-19,06:00:00,48,18,47,48,112,0.8,1.079,64,46,17,95,46,82,10,20,0
2015-01-19,07:00:00,52,29,42,54,108,1.3,1,80,45,5,95,39,82,15,18,0
2015-01-19,08:00:00,59,42,38,65,104,1.7,0.929,86,45,4,95,31,82,26,16,0
2015-01-19,09:00:00,75,55,34,96,99,2.7,0.879,96,44,5,95,24,82,42,15,0
2015-01-19,10:00:00,89,66,30,119,97,2.9,0.854,100,43,7,95,17,82,53,15,0
2015-01-19,11:00:00,80,59,27,92,94,1.9,0.829,92,43,16,95,14,82,60,15,0
2015-01-19,12:00:00,74,54,25,86,93,1.8,0.833,93,44,20,95,14,82,42,15,0
2015-01-19,13:00:00,93,69,26,117,93,1.9,0.883,90,46,27,95,13,82,43,16,0
2015-01-19,14:00:00,90,67,28,110,93,1.5,0.925,62,48,58,95,18,82,32,16,0
2015-01-19,15:00:00,68,49,29,83,91,1,0.954,45,49,73,92,26,82,24,17,0
2015-01-19,16:00:00,64,44,30,78,88,1,0.983,46,50,70,83,34,82,27,18,0
2015-01-19,17:00:00,85,63,32,104,87,1.5,1.033,65,52,52,79,40,82,47,20,0
2015-01-19,18:00:00,102,76,35,118,86,1.7,1.092,92,55,18,79,42,82,57,22,0
2015-01-19,19:00:00,117,88,38,130,82,2,1.162,104,59,3,76,40,82,66,24,0
2015-01-19,20:00:00,118,89,41,129,78,1.9,1.229,101,62,2,75,38,82,54,27,0
2015-01-19,21:00:00,112,84,44,128,80,2,1.3,92,65,2,73,35,81,54,29,0
2015-01-19,22:00:00,93,69,47,107,82,2.2,1.379,87,68,2,73,28,77,52,31,0
2015-01-19,23:00:00,82,60,48,95,84,1.9,1.446,86,71,2,73,19,73,52,33,0
2015-01-20,00:00:00,110,83,51,134,87,1.8,1.508,86,73,3,73,10,71,43,35,0
2015-01-20,01:00:00,129,98,55,140,92,2.2,1.588,81,76,2,73,4,70,45,36,0
2015-01-20,02:00:00,110,83,58,121,95,1.8,1.65,78,78,2,73,2,64,30,38,0
2015-01-20,03:00:00,108,81,61,111,98,2.1,1.712,80,80,2,73,2,58,32,38,0
2015-01-20,04:00:00,118,89,64,113,100,2.3,1.775,81,81,2,73,2,53,40,40,0
2015-01-20,05:00:00,108,81,66,108,104,2.4,1.846,79,82,2,73,2,46,49,41,0
2015-01-20,06:00:00,99,74,69,98,106,2.5,1.917,81,83,2,73,2,42,52,43,0
2015-01-20,07:00:00,97,72,71,95,107,2.3,1.958,83,83,2,73,2,42,51,45,0
2015-01-20,08:00:00,97,72,72,101,109,2.2,1.979,86,83,2,73,2,42,51,46,0
2015-01-20,09:00:00,104,78,73,115,110,2.3,1.962,87,82,2,73,2,42,49,46,0
2015-01-20,10:00:00,117,88,74,127,110,2.4,1.942,88,82,5,73,2,42,59,46,0
2015-01-20,11:00:00,133,101,76,143,112,2.5,1.967,90,82,8,73,3,42,76,47,0
2015-01-20,12:00:00,122,92,77,118,113,2,1.975,76,81,17,73,5,42,62,48,0
2015-01-20,13:00:00,102,76,77,92,112,1.6,1.963,56,80,36,73,9,42,60,49,0
2015-01-20,14:00:00,109,82,78,97,112,1.6,1.967,58,80,43,73,14,42,60,50,0
2015-01-20,15:00:00,115,87,80,109,113,1.5,1.988,62,80,45,70,20,42,62,51,0
2015-01-20,16:00:00,119,90,82,114,114,1.5,2.008,71,81,43,52,25,42,63,53,0
2015-01-20,17:00:00,120,91,83,115,115,1.4,2.004,74,82,36,45,29,42,63,53,0
2015-01-20,18:00:00,122,92,83,116,115,1.4,1.992,86,81,19,45,31,40,60,54,0
2015-01-20,19:00:00,134,102,84,122,114,1.5,1.971,97,81,4,45,30,38,62,53,0
2015-01-20,20:00:00,149,114,85,136,115,2,1.975,106,81,2,45,28,35,66,54,0
2015-01-20,21:00:00,160,122,87,146,116,2.4,1.992,108,82,2,45,24,31,65,54,0
2015-01-20,22:00:00,156,119,89,132,117,2.2,1.992,108,83,2,45,19,31,62,55,0
2015-01-20,23:00:00,115,87,90,96,117,1.8,1.987,100,83,2,45,14,31,52,55,0
2015-01-21,00:00:00,67,48,88,58,113,1.1,1.958,76,83,3,45,9,31,29,54,0
2015-01-21,01:00:00,26,18,85,24,109,0.5,1.888,38,81,43,45,10,31,10,53,0
2015-01-21,02:00:00,20,12,82,20,104,0.4,1.829,31,79,50,50,14,31,10,52,0
2015-01-21,03:00:00,17,9,79,17,101,0.4,1.758,34,77,46,50,19,31,13,51,0
2015-01-21,04:00:00,20,14,76,20,97,0.5,1.683,35,75,45,50,24,31,20,50,0
2015-01-21,05:00:00,18,12,73,18,93,0.4,1.6,27,73,55,55,31,31,15,49,0
2015-01-21,06:00:00,19,13,70,19,90,0.4,1.512,28,71,54,55,37,37,14,47,0
2015-01-21,07:00:00,17,11,68,17,86,0.4,1.433,29,69,54,55,44,44,12,46,0
2015-01-21,08:00:00,19,13,65,16,83,0.4,1.358,33,67,50,55,50,50,15,44,0
2015-01-21,09:00:00,20,13,63,20,79,0.5,1.283,36,64,46,55,50,50,17,43,0
2015-01-21,10:00:00,26,18,60,24,75,0.6,1.208,31,62,54,55,50,50,15,41,0
2015-01-21,11:00:00,25,15,56,25,70,0.6,1.129,29,60,59,59,52,52,15,38,0
2015-01-21,12:00:00,22,14,53,22,66,0.5,1.067,24,57,68,68,55,55,13,36,0
2015-01-21,13:00:00,25,10,50,0,0,0.4,1.017,19,56,80,80,58,58,12,34,0
2015-01-21,14:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-01-21,15:00:00,27,10,46,0,0,0.4,0.943,20,54,84,84,63,63,9,31,0
2015-01-21,16:00:00,27,8,42,20,56,0.4,0.896,21,52,84,84,68,68,10,29,0
2015-01-21,17:00:00,25,15,39,0,0,0.4,0.852,26,50,77,84,72,72,11,26,0
2015-01-21,18:00:00,19,12,35,18,49,0.4,0.809,38,48,60,84,73,73,10,24,0
2015-01-21,19:00:00,30,14,31,23,44,0.5,0.765,60,46,32,84,69,73,10,22,0
2015-01-21,21:00:00,44,25,23,0,0,0.7,0.635,87,44,2,84,49,73,20,18,0
2015-01-21,22:00:00,45,27,19,32,27,1.1,0.587,90,43,2,84,43,73,24,16,0
2015-01-21,23:00:00,39,27,16,32,23,0.9,0.548,75,42,7,84,34,73,23,15,0
2015-01-22,00:00:00,46,32,16,36,22,0.9,0.539,78,42,4,84,24,73,24,15,0
2015-01-22,01:00:00,46,32,16,38,23,1,0.561,82,44,2,84,14,73,25,15,0
2015-01-22,02:00:00,80,59,18,79,26,1.9,0.626,88,47,2,84,7,73,44,17,0
2015-01-22,03:00:00,78,57,20,70,29,1.9,0.691,90,49,2,84,3,73,44,18,0
2015-01-22,04:00:00,58,41,22,46,30,1.4,0.73,83,51,2,84,3,73,27,18,0
2015-01-22,05:00:00,52,36,23,0,0,1,0.757,71,53,2,84,3,73,21,19,0
2015-01-22,06:00:00,60,43,24,43,32,1.3,0.796,71,55,2,84,3,73,25,19,0
2015-01-22,07:00:00,55,39,25,40,34,1.4,0.839,68,57,2,84,2,73,30,20,0
2015-01-22,08:00:00,87,64,27,66,36,2,0.909,74,58,2,84,2,73,46,21,0
2015-01-22,09:00:00,122,92,31,111,41,2.6,1,85,61,5,84,2,73,49,23,0
2015-01-22,10:00:00,201,151,37,201,51,3.7,1.135,97,63,7,84,3,73,65,25,0
2015-01-22,11:00:00,254,204,45,250,64,4.1,1.287,111,67,10,84,4,73,84,28,0
2015-01-22,12:00:00,238,188,52,224,75,3.6,1.422,122,71,14,84,6,73,84,31,0
2015-01-22,13:00:00,217,167,59,178,80,2.7,1.522,111,75,22,84,8,73,62,33,0
2015-01-22,14:00:00,196,147,63,165,85,2.5,1.563,111,77,25,84,11,73,54,34,0
2015-01-22,15:00:00,195,146,68,162,88,2.2,1.638,118,81,30,84,14,73,54,36,0
2015-01-22,16:00:00,143,109,73,121,93,1.3,1.675,70,83,63,77,22,73,51,38,0
2015-01-22,17:00:00,212,162,79,193,98,1.8,1.733,84,85,59,63,29,73,74,40,0
2015-01-22,18:00:00,291,241,88,276,109,2.5,1.821,129,89,12,63,29,69,97,44,0
2015-01-22,19:00:00,246,196,96,242,119,2.3,1.896,121,92,7,63,29,60,88,47,0
2015-01-22,20:00:00,241,191,103,218,128,2.1,1.954,117,93,2,63,28,49,77,50,0
2015-01-22,21:00:00,235,185,110,201,131,2.1,2.012,115,94,2,63,25,43,75,52,0
2015-01-22,22:00:00,224,174,116,191,138,2.1,2.054,112,95,2,63,22,34,78,54,0
2015-01-22,23:00:00,226,176,122,193,145,2.2,2.108,109,97,2,63,19,29,88,57,0
2015-01-23,00:00:00,225,175,128,187,152,2.3,2.167,105,98,2,63,11,29,79,59,0
2015-01-23,03:00:00,344,294,146,305,172,5.2,2.382,143,101,2,63,2,29,78,63,0
2015-01-23,04:00:00,304,254,156,259,182,4,2.5,128,103,2,63,2,29,83,66,0
2015-01-23,05:00:00,257,207,164,0,0,3.2,2.6,119,105,2,63,2,29,78,68,0
2015-01-23,06:00:00,262,212,172,219,191,3.8,2.714,121,108,2,63,2,29,67,70,0
2015-01-23,07:00:00,263,213,179,222,199,4.2,2.841,117,110,2,63,2,29,65,72,0
2015-01-23,08:00:00,241,191,185,198,206,3.6,2.914,113,112,2,63,2,29,67,73,0
2015-01-23,09:00:00,254,204,190,215,210,3.7,2.964,112,113,2,63,2,29,75,74,0
2015-01-23,10:00:00,269,219,193,245,213,4.4,2.995,123,114,3,63,2,29,78,74,0
2015-01-23,11:00:00,251,201,193,221,211,3,2.945,110,114,8,63,3,29,80,74,0
2015-01-23,14:00:00,260,210,198,217,215,2.8,2.943,118,114,21,63,8,29,80,76,0
2015-01-23,16:00:00,280,230,207,251,225,3.3,3.076,148,118,12,59,11,29,77,78,0
2015-01-23,17:00:00,293,243,211,371,234,3.4,3.152,161,122,3,21,11,29,76,79,0
2015-01-23,18:00:00,298,248,212,280,234,3.7,3.21,163,123,2,21,11,29,78,78,0
2015-01-23,19:00:00,303,253,214,280,236,3.9,3.286,158,125,2,21,10,28,95,78,0
2015-01-23,20:00:00,321,271,218,289,240,4.4,3.395,161,127,2,21,8,25,101,79,0
2015-01-23,21:00:00,303,253,221,267,243,4.3,3.5,154,129,2,21,8,22,92,80,0
2015-01-23,22:00:00,380,330,229,359,251,6.6,3.714,167,132,3,21,5,19,112,82,0
2015-01-23,23:00:00,360,310,235,346,259,6.2,3.905,167,135,2,21,4,11,100,82,0
2015-01-24,00:00:00,345,295,241,305,265,5.3,4.048,168,138,2,21,2,11,102,83,0
2015-01-24,01:00:00,227,177,238,0,0,2.7,3.986,116,137,2,21,2,11,67,82,0
2015-01-24,02:00:00,110,83,231,0,0,1.5,3.878,91,135,2,21,2,11,39,81,0
2015-01-24,03:00:00,64,46,220,0,0,0.9,3.691,70,131,9,21,3,11,30,79,0
2015-01-24,04:00:00,42,29,211,0,0,0.7,3.548,48,128,34,34,7,11,23,76,0
2015-01-24,05:00:00,50,35,203,0,0,0.9,3.448,70,126,18,34,9,11,33,74,0
2015-01-24,06:00:00,42,29,195,0,0,1.1,3.33,78,124,10,34,10,11,28,72,0
2015-01-24,07:00:00,40,28,187,0,0,1.1,3.196,79,122,6,34,10,11,16,70,0
2015-01-24,08:00:00,87,64,182,88,261,1.5,3.104,82,121,3,34,10,11,29,68,0
2015-01-24,09:00:00,129,98,177,148,257,1.5,3.009,65,119,17,34,12,12,39,67,0
2015-01-24,10:00:00,139,106,172,113,249,1.8,2.896,68,117,17,34,14,14,42,65,0
2015-01-24,11:00:00,160,122,169,140,244,2.1,2.857,72,115,18,34,15,15,48,64,0
2015-01-24,12:00:00,147,112,165,127,239,2,2.813,67,113,25,34,14,15,47,62,0
2015-01-24,13:00:00,134,102,162,119,232,2,2.779,64,111,36,36,16,16,45,62,0
2015-01-24,14:00:00,142,108,158,112,225,2,2.746,64,109,42,42,20,20,40,60,0
2015-01-24,15:00:00,128,97,153,103,218,1.8,2.696,57,106,49,49,26,26,32,58,0
2015-01-24,17:00:00,118,89,141,108,193,2,2.579,76,99,26,49,31,31,36,54,0
2015-01-24,18:00:00,123,93,134,125,184,2.1,2.512,86,96,12,49,30,31,36,53,0
2015-01-24,19:00:00,105,79,127,105,174,1.8,2.425,77,92,19,49,30,31,30,50,0
2015-01-24,20:00:00,107,80,119,93,162,1.6,2.308,72,89,15,49,29,31,22,47,0
2015-01-24,21:00:00,102,76,112,78,151,1.5,2.192,73,85,9,49,26,31,15,44,0
2015-01-24,22:00:00,108,81,101,0,0,1.5,1.979,67,81,8,49,22,31,14,39,0
2015-01-24,23:00:00,122,92,92,0,0,1.5,1.783,62,77,11,49,17,31,14,36,0
2015-01-25,00:00:00,117,88,83,0,0,1.4,1.621,56,72,14,49,14,31,14,32,0
2015-01-25,01:00:00,117,88,80,0,0,1.3,1.562,56,70,13,49,13,31,15,30,0
2015-01-25,02:00:00,118,89,80,0,0,1.2,1.55,55,68,12,49,13,31,13,29,0
2015-01-25,03:00:00,110,83,82,0,0,1.1,1.558,50,67,17,49,12,31,14,28,0
2015-01-25,04:00:00,93,69,83,0,0,1,1.571,45,67,21,49,13,31,15,28,0
2015-01-25,05:00:00,94,70,85,0,0,0.9,1.571,36,66,31,49,16,31,16,27,0
2015-01-25,06:00:00,88,65,86,0,0,1,1.567,43,64,24,49,18,31,16,27,0
2015-01-25,07:00:00,100,75,88,0,0,1.3,1.575,61,63,4,49,17,31,14,27,0
2015-01-25,08:00:00,112,84,89,0,0,1.2,1.562,60,62,4,49,16,31,17,26,0
2015-01-25,09:00:00,119,90,89,0,0,1.4,1.558,60,62,4,49,15,31,18,25,0
2015-01-25,10:00:00,138,105,89,0,0,1.4,1.542,58,62,7,49,14,31,22,24,0
2015-01-25,11:00:00,145,111,88,0,0,1.3,1.508,51,61,19,49,14,31,28,24,0
2015-01-25,12:00:00,147,112,88,0,0,1.3,1.479,49,60,28,49,15,31,32,23,0
2015-01-25,13:00:00,173,131,89,0,0,1.5,1.458,59,60,27,49,15,31,29,22,0
2015-01-25,14:00:00,176,133,90,0,0,1.4,1.433,53,60,41,49,17,31,31,22,0
2015-01-25,15:00:00,165,125,91,0,0,1.3,1.412,55,60,47,47,22,31,30,22,0
2015-01-25,16:00:00,179,135,93,0,0,1.4,1.392,64,59,46,47,27,31,29,22,0
2015-01-25,17:00:00,195,146,96,0,0,1.5,1.371,81,60,24,47,30,30,27,21,0
2015-01-25,18:00:00,230,180,99,0,0,1.8,1.358,87,60,9,47,30,30,22,21,0
2015-01-25,19:00:00,240,190,104,0,0,2,1.367,87,60,2,47,28,30,22,20,0
2015-01-25,20:00:00,240,190,109,0,0,1.9,1.379,77,60,2,47,25,30,19,20,0
2015-01-25,21:00:00,240,190,113,0,0,1.9,1.396,74,60,3,47,22,30,24,21,0
2015-01-25,22:00:00,237,187,118,0,0,1.9,1.412,76,61,2,47,17,30,28,21,0
2015-01-25,23:00:00,263,213,123,0,0,2.1,1.438,73,61,2,47,11,30,30,22,0
2015-01-26,00:00:00,275,225,129,0,0,2.3,1.475,73,62,2,47,6,30,33,23,0
2015-01-26,01:00:00,276,226,134,0,0,2.4,1.521,74,63,2,47,3,30,27,23,0
2015-01-26,02:00:00,269,219,140,0,0,2.4,1.571,76,63,2,47,2,30,23,24,0
2015-01-26,03:00:00,279,229,146,0,0,3.4,1.667,83,65,2,47,2,30,22,24,0
2015-01-26,04:00:00,303,253,154,0,0,3.8,1.783,84,66,4,47,2,30,22,24,0
2015-01-26,05:00:00,317,267,162,0,0,4.6,1.937,92,69,3,47,2,30,22,24,0
2015-01-26,06:00:00,324,274,170,0,0,4.8,2.096,89,71,3,47,2,30,19,25,0
2015-01-26,07:00:00,333,283,179,0,0,4.6,2.233,88,72,2,47,2,30,16,25,0
2015-01-26,08:00:00,291,241,186,0,0,3.5,2.329,83,73,2,47,2,30,17,25,0
2015-01-26,09:00:00,253,203,190,0,0,3,2.396,80,74,2,47,2,30,29,25,0
2015-01-26,10:00:00,57,40,188,0,0,0.8,2.371,47,73,23,47,5,30,35,26,0
2015-01-26,11:00:00,15,0,0,0,0,0.5,2.338,30,72,41,47,10,30,25,26,0
2015-01-26,12:00:00,53,6,186,55,55,0.5,2.304,18,71,67,67,18,30,7,25,0
2015-01-26,13:00:00,51,8,181,51,53,0.4,2.258,17,69,75,75,27,30,2,23,0
2015-01-26,15:00:00,27,7,170,27,40,0.3,2.171,18,66,79,79,46,46,2,21,0
2015-01-26,16:00:00,26,10,165,19,36,0.3,2.125,20,64,81,81,56,56,2,20,0
2015-01-26,17:00:00,27,8,159,27,34,0.4,2.079,28,62,68,81,64,64,5,19,0
2015-01-26,18:00:00,31,10,151,31,34,0.3,2.017,29,60,67,81,70,70,4,18,0
2015-01-26,19:00:00,32,9,144,32,34,0.3,1.946,30,57,62,81,72,72,4,17,0
2015-01-26,20:00:00,32,9,136,32,33,0.3,1.879,30,55,62,81,72,72,4,17,0
2015-01-26,21:00:00,21,7,128,21,32,0.3,1.812,22,53,67,81,70,72,3,16,0
2015-01-26,23:00:00,28,11,111,28,31,0.3,1.671,30,49,53,81,65,72,7,14,0
2015-01-27,00:00:00,35,13,102,35,31,0.3,1.587,25,47,57,81,62,72,6,13,0
2015-01-27,01:00:00,28,8,92,28,31,0.3,1.5,22,45,60,81,61,72,7,12,0
2015-01-27,02:00:00,33,10,83,33,31,0.4,1.417,18,43,62,81,61,72,12,12,0
2015-01-27,03:00:00,29,15,74,29,31,0.4,1.292,21,40,57,81,60,72,16,11,0
2015-01-27,04:00:00,21,11,64,21,30,0.4,1.15,23,38,54,81,59,72,18,11,0
2015-01-27,05:00:00,21,10,52,21,30,0.4,0.975,23,35,53,81,57,72,20,11,0
2015-01-27,06:00:00,19,10,41,19,29,0.5,0.796,23,32,52,81,56,72,20,11,0
2015-01-27,07:00:00,25,13,29,25,29,0.6,0.629,32,30,43,81,55,72,25,12,0
2015-01-27,08:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-01-27,09:00:00,24,13,11,24,29,0.6,0.4,32,25,45,81,52,72,17,11,0
2015-01-27,10:00:00,23,16,10,23,29,0.6,0.391,24,24,52,81,51,72,19,10,0
2015-01-27,11:00:00,26,14,10,26,28,0.6,0.396,21,24,58,81,51,72,18,10,0
2015-01-27,12:00:00,21,8,10,18,27,0.5,0.396,16,24,66,81,53,72,14,10,0
2015-01-27,13:00:00,23,14,10,0,0,0.5,0.4,15,24,72,81,55,72,10,10,0
2015-01-27,14:00:00,24,12,11,16,25,0.5,0.409,17,24,74,81,59,72,10,11,0
2015-01-27,15:00:00,26,11,11,26,25,0.4,0.413,17,24,77,81,63,72,12,11,0
2015-01-27,16:00:00,27,12,11,27,26,0.4,0.417,21,24,74,77,65,72,12,12,0
2015-01-27,17:00:00,38,20,11,38,26,0.5,0.422,32,24,62,77,67,72,13,12,0
2015-01-27,18:00:00,43,25,12,43,27,0.6,0.435,44,24,45,77,66,72,14,12,0
2015-01-27,19:00:00,52,30,13,54,28,0.8,0.457,69,26,15,77,61,72,15,13,0
2015-01-27,20:00:00,52,36,14,53,29,1,0.487,79,28,5,77,53,70,15,13,0
2015-01-27,21:00:00,54,38,16,56,30,1.4,0.535,82,31,4,77,44,69,15,14,0
2015-01-27,22:00:00,57,38,17,64,32,1.4,0.583,83,33,5,77,36,67,20,15,0
2015-01-27,23:00:00,62,44,18,67,34,1.6,0.639,85,36,5,77,27,67,25,15,0
2015-01-28,00:00:00,53,37,19,54,35,1.2,0.678,82,38,4,77,18,67,23,16,0
2015-01-28,01:00:00,53,36,21,56,36,1.4,0.726,83,41,5,77,11,67,23,17,0
2015-01-28,02:00:00,74,54,22,61,37,1.9,0.791,74,43,9,77,6,67,24,17,0
2015-01-28,03:00:00,32,22,23,0,0,0.6,0.8,57,45,24,77,8,67,17,17,0
2015-01-28,04:00:00,22,15,23,20,38,0.5,0.804,40,46,44,77,12,67,12,17,0
2015-01-28,05:00:00,16,10,23,16,37,0.4,0.804,30,46,47,77,18,67,14,17,0
2015-01-28,06:00:00,16,11,23,16,37,0.4,0.8,31,46,45,77,23,67,15,17,0
2015-01-28,07:00:00,17,9,23,17,37,0.3,0.787,30,46,50,77,28,67,12,16,0
2015-01-28,08:00:00,23,11,22,19,36,0.4,0.771,45,46,33,77,32,67,13,16,0
2015-01-28,09:00:00,27,12,22,25,36,0.5,0.767,54,47,27,77,35,67,16,16,0
2015-01-28,10:00:00,28,10,22,28,36,0.5,0.762,42,48,44,77,39,67,16,16,0
2015-01-28,11:00:00,26,14,22,26,36,0.5,0.758,35,48,54,77,43,67,14,16,0
2015-01-28,12:00:00,25,17,22,19,36,0.4,0.754,27,49,68,77,46,67,9,15,0
2015-01-28,13:00:00,38,26,23,0,0,0.5,0.754,24,49,78,78,50,67,8,15,0
2015-01-28,14:00:00,31,20,23,31,37,0.6,0.758,35,50,71,78,53,67,13,15,0
2015-01-28,16:00:00,57,40,25,62,40,0.9,0.792,51,52,54,78,57,67,26,17,0
2015-01-28,17:00:00,69,50,27,74,42,1.2,0.821,62,54,37,78,58,66,31,17,0
2015-01-28,18:00:00,83,61,28,96,44,1.9,0.875,76,55,18,78,55,61,47,19,0
2015-01-28,19:00:00,110,83,30,117,47,2.4,0.942,87,56,5,78,49,58,61,21,0
2015-01-28,20:00:00,132,100,33,137,51,2.7,1.012,94,56,2,78,41,58,69,23,0
2015-01-28,21:00:00,132,100,36,127,54,2.7,1.067,95,57,2,78,31,58,67,25,0
2015-01-28,22:00:00,150,115,39,153,58,3.1,1.138,99,58,2,78,22,58,83,28,0
2015-01-28,23:00:00,169,128,42,163,62,3.1,1.2,100,58,2,78,15,58,82,30,0
2015-01-29,00:00:00,152,116,46,138,66,2.4,1.25,96,59,2,78,9,58,64,32,0
2015-01-29,01:00:00,168,127,49,127,69,1.9,1.271,89,59,2,78,4,58,58,33,0
2015-01-29,02:00:00,170,129,52,0,0,1.7,1.262,78,59,2,78,2,58,56,34,0
2015-01-29,05:00:00,134,102,64,0,0,1.1,1.354,42,60,26,78,10,58,17,36,0
2015-01-29,06:00:00,129,98,68,0,0,1.1,1.383,45,61,22,78,13,58,22,37,0
2015-01-29,07:00:00,115,87,71,0,0,1.1,1.417,51,61,16,78,15,58,23,37,0
2015-01-29,08:00:00,115,87,75,88,91,1.2,1.45,58,62,8,78,16,58,26,38,0
2015-01-29,09:00:00,119,90,78,0,0,1.2,1.479,55,62,10,78,16,58,30,38,0
2015-01-29,10:00:00,132,100,82,100,99,1.4,1.517,56,63,12,78,18,58,36,39,0
2015-01-29,11:00:00,155,118,86,119,104,1.5,1.558,56,63,21,78,18,58,45,40,0
2015-01-29,12:00:00,150,115,90,121,109,1.6,1.608,64,65,26,78,18,58,49,42,0
2015-01-29,13:00:00,104,78,92,80,108,1.2,1.638,50,66,48,71,20,58,35,43,0
2015-01-29,14:00:00,48,21,92,48,109,0.4,1.629,18,65,84,84,28,58,12,43,0
2015-01-29,15:00:00,40,12,91,40,108,0.3,1.612,18,64,87,87,37,58,10,43,0
2015-01-29,16:00:00,39,11,90,39,107,0.3,1.587,20,63,88,88,47,58,10,42,0
2015-01-29,17:00:00,41,10,88,41,105,0.3,1.55,20,61,86,88,56,56,9,41,0
2015-01-29,18:00:00,32,13,86,32,102,0.3,1.483,30,59,69,88,64,64,8,39,0
2015-01-29,19:00:00,40,14,84,40,98,0.4,1.4,38,57,55,88,68,68,16,38,0
2015-01-29,20:00:00,39,13,80,39,93,0.4,1.304,46,55,44,88,70,70,12,35,0
2015-01-29,21:00:00,33,15,76,33,88,0.4,1.208,39,53,52,88,71,71,10,33,0
2015-01-29,22:00:00,23,12,72,23,81,0.4,1.096,37,50,53,88,67,71,9,30,0
2015-01-29,23:00:00,24,8,67,24,74,0.4,0.983,30,47,60,88,63,71,10,27,0
2015-01-30,00:00:00,20,8,63,18,67,0.3,0.896,26,45,64,88,60,71,10,24,0
2015-01-30,01:00:00,22,8,58,11,61,0.3,0.829,21,42,69,88,58,71,7,22,0
2015-01-30,02:00:00,20,8,53,14,59,0.3,0.771,22,39,64,88,58,71,7,20,0
2015-01-30,03:00:00,19,10,47,19,52,0.4,0.729,25,38,59,88,58,71,14,19,0
2015-01-30,04:00:00,19,10,44,18,47,0.4,0.696,23,37,60,88,60,71,20,19,0
2015-01-30,05:00:00,25,10,40,25,46,0.4,0.667,26,36,54,88,60,71,27,19,0
2015-01-30,06:00:00,30,11,36,30,46,0.4,0.638,23,36,59,88,61,71,30,19,0
2015-01-30,07:00:00,28,10,33,28,45,0.4,0.608,28,35,55,88,60,71,24,19,0
2015-01-30,08:00:00,25,9,30,25,42,0.4,0.575,39,34,44,88,58,71,16,19,0
2015-01-30,09:00:00,27,10,26,27,41,0.5,0.546,38,33,45,88,55,71,21,19,0
2015-01-30,10:00:00,30,10,23,30,39,0.6,0.513,30,32,56,88,54,71,25,18,0
2015-01-30,11:00:00,27,13,18,27,35,0.5,0.471,21,31,68,88,55,71,20,17,0
2015-01-30,12:00:00,25,12,14,24,31,0.4,0.421,17,29,77,88,57,71,16,16,0
2015-01-30,13:00:00,26,0,0,21,28,0.4,0.388,16,27,83,88,61,71,16,15,0
2015-01-30,15:00:00,29,10,11,24,27,0.3,0.388,19,27,91,91,69,71,10,15,0
2015-01-30,16:00:00,29,9,11,29,26,0.3,0.388,20,27,89,91,75,75,10,15,0
2015-01-30,17:00:00,28,9,11,28,26,0.3,0.388,25,27,80,91,79,79,9,15,0
2015-01-30,18:00:00,29,8,10,29,26,0.4,0.392,38,28,58,91,79,79,10,15,0
2015-01-30,19:00:00,32,15,11,32,25,0.5,0.396,48,28,42,91,76,79,13,15,0
2015-01-30,20:00:00,38,20,11,38,25,0.5,0.4,57,29,28,91,70,79,18,15,0
2015-01-30,21:00:00,27,14,11,27,25,0.4,0.4,42,29,45,91,65,79,9,15,0
2015-01-30,22:00:00,19,10,11,19,25,0.4,0.4,35,29,52,91,61,79,7,15,0
2015-01-30,23:00:00,28,14,11,28,25,0.4,0.4,42,29,42,91,54,79,9,15,0
2015-01-31,00:00:00,21,11,11,21,25,0.4,0.404,37,30,49,91,50,79,4,15,0
2015-01-31,01:00:00,23,11,11,23,26,0.4,0.408,42,30,42,91,45,79,7,15,0
2015-01-31,02:00:00,29,13,11,27,26,0.6,0.421,57,32,22,91,40,79,10,15,0
2015-01-31,03:00:00,38,23,12,38,27,0.9,0.442,66,34,9,91,36,79,19,15,0
2015-01-31,04:00:00,40,28,13,35,28,0.9,0.463,64,35,11,91,34,79,21,15,0
2015-01-31,05:00:00,26,18,13,19,27,0.5,0.467,39,36,40,91,33,79,15,15,0
2015-01-31,06:00:00,22,13,13,16,27,0.6,0.475,43,37,34,91,31,79,21,14,0
2015-01-31,07:00:00,33,14,13,21,26,0.7,0.488,65,38,13,91,28,79,26,14,0
2015-01-31,08:00:00,38,16,14,29,27,0.8,0.504,76,40,5,91,22,79,35,15,0
2015-01-31,09:00:00,28,14,14,28,27,0.7,0.513,52,40,30,91,20,79,22,15,0
2015-01-31,10:00:00,27,15,14,27,27,0.7,0.517,38,41,46,91,24,79,20,15,0
2015-01-31,11:00:00,35,24,15,29,27,0.7,0.525,32,41,56,91,29,79,20,15,0
2015-01-31,12:00:00,28,19,15,27,27,0.6,0.533,30,42,62,91,36,79,20,15,0
2015-01-31,13:00:00,33,23,15,28,27,0.7,0.546,33,42,65,91,39,79,24,15,0
2015-01-31,14:00:00,30,21,16,26,27,0.6,0.554,32,43,71,91,44,79,20,16,0
2015-01-31,15:00:00,25,15,16,19,27,0.5,0.562,28,43,80,89,52,79,15,16,0
2015-01-31,16:00:00,25,10,16,19,26,0.4,0.567,29,44,79,80,61,79,12,16,0
2015-01-31,17:00:00,25,16,16,25,26,0.5,0.575,44,45,58,80,65,79,11,16,0
2015-01-31,18:00:00,54,29,17,57,27,0.8,0.592,72,46,23,80,62,76,16,16,0
2015-01-31,19:00:00,80,59,19,82,30,1,0.612,72,47,30,80,58,70,23,17,0
2015-01-31,20:00:00,104,78,21,103,32,1.2,0.642,81,48,20,80,53,65,27,17,0
2015-01-31,21:00:00,124,94,25,115,36,1.3,0.679,87,50,15,80,47,65,32,18,0
2015-01-31,22:00:00,148,113,29,124,40,1.5,0.725,94,52,14,80,40,65,38,19,0
2015-01-31,23:00:00,159,121,33,127,44,1.6,0.775,100,55,6,80,31,65,44,21,0
2015-02-01,00:00:00,176,133,38,139,49,1.8,0.833,105,58,2,80,21,65,50,23,0
2015-02-01,01:00:00,178,134,43,143,54,2,0.9,107,60,2,80,14,65,47,25,0
2015-02-01,02:00:00,149,114,48,132,59,2.5,0.979,104,62,2,80,11,65,54,26,0
2015-02-01,03:00:00,203,153,53,178,64,3.8,1.1,104,64,2,80,8,65,67,28,0
2015-02-01,04:00:00,202,152,58,160,70,3.7,1.217,95,65,5,80,6,65,59,30,0
2015-02-01,05:00:00,169,128,63,0,0,3,1.321,84,67,2,80,4,65,50,31,0
2015-02-01,06:00:00,113,85,66,0,0,2.1,1.383,76,68,2,80,3,65,38,32,0
2015-02-01,07:00:00,68,49,67,0,0,1.3,1.408,67,68,2,80,2,65,30,32,0
2015-02-01,08:00:00,46,32,68,36,77,1,1.417,65,68,2,80,2,65,26,32,0
2015-02-01,09:00:00,55,39,69,46,78,1.1,1.433,66,69,6,80,3,65,27,32,0
2015-02-01,10:00:00,57,40,70,57,80,1.2,1.454,61,70,14,80,4,65,26,32,0
2015-02-01,11:00:00,54,38,71,51,81,0.9,1.463,53,70,28,80,8,65,21,32,0
2015-02-01,12:00:00,52,36,71,40,81,0.8,1.471,41,71,46,80,13,65,21,32,0
2015-02-01,13:00:00,55,39,72,0,0,0.7,1.471,38,71,56,80,20,65,19,32,0
2015-02-01,14:00:00,46,32,72,34,84,0.7,1.475,40,71,58,80,26,65,20,32,0
2015-02-01,15:00:00,54,38,73,48,86,0.9,1.492,53,72,47,79,32,65,22,33,0
2015-02-01,16:00:00,99,74,76,89,89,1.2,1.525,74,74,36,58,36,65,36,34,0
2015-02-01,17:00:00,119,90,79,109,94,1.3,1.558,84,76,28,58,39,62,44,35,0
2015-02-01,18:00:00,163,124,83,145,98,1.8,1.6,107,77,7,58,38,58,54,36,0
2015-02-01,19:00:00,189,142,87,162,102,2.1,1.646,112,79,2,58,35,53,76,39,0
2015-02-01,20:00:00,169,128,89,144,104,1.9,1.675,108,80,2,58,30,47,76,41,0
2015-02-01,21:00:00,170,129,90,149,106,1.9,1.7,108,81,2,58,23,40,74,42,0
2015-02-01,22:00:00,173,131,91,142,107,1.9,1.717,107,82,2,58,16,39,74,44,0
2015-02-01,23:00:00,192,144,92,151,108,2.4,1.75,108,82,2,58,10,39,67,45,0
2015-02-02,00:00:00,190,143,92,144,108,2.2,1.767,106,82,2,58,6,39,63,45,0
2015-02-02,01:00:00,192,144,93,0,0,1.9,1.762,103,82,2,58,3,39,73,47,0
2015-02-02,02:00:00,201,151,94,0,0,2,1.742,104,82,2,58,2,39,82,48,0
2015-02-02,03:00:00,230,180,95,204,106,4.2,1.758,117,82,2,58,2,39,79,48,0
2015-02-02,04:00:00,388,338,103,340,116,7.4,1.912,133,84,4,58,2,39,108,50,0
2015-02-02,05:00:00,336,286,110,0,0,5.3,2.008,124,86,2,58,2,39,94,52,0
2015-02-02,06:00:00,271,221,115,0,0,4.1,2.092,110,87,2,58,2,39,74,54,0
2015-02-02,07:00:00,152,116,118,0,0,2.3,2.133,80,88,2,58,2,39,48,54,0
2015-02-02,08:00:00,119,90,121,0,0,1.9,2.171,76,88,2,58,2,39,45,55,0
2015-02-02,09:00:00,120,91,123,92,124,2.1,2.212,78,89,2,58,2,39,46,56,0
2015-02-02,10:00:00,123,93,125,105,126,2.2,2.254,79,89,4,58,2,39,47,57,0
2015-02-02,11:00:00,149,114,128,131,131,2.2,2.308,84,91,6,58,3,39,48,58,0
2015-02-02,12:00:00,169,128,132,137,137,2.1,2.363,87,93,11,58,4,39,59,60,0
2015-02-02,13:00:00,193,145,136,150,138,2.2,2.425,95,95,14,58,5,39,77,62,0
2015-02-02,14:00:00,204,154,141,0,0,2.1,2.483,96,97,24,47,8,39,74,64,0
2015-02-02,15:00:00,214,164,147,165,151,2.3,2.542,112,100,14,36,10,39,74,66,0
2015-02-02,16:00:00,221,171,151,173,155,2.4,2.592,123,102,6,28,10,39,76,68,0
2015-02-02,17:00:00,238,188,155,199,161,2.6,2.646,134,104,2,24,10,38,79,69,0
2015-02-02,18:00:00,252,202,158,220,165,2.8,2.688,138,105,2,24,10,35,78,70,0
2015-02-02,19:00:00,256,206,161,237,170,2.8,2.717,135,106,2,24,9,30,84,71,0
2015-02-02,20:00:00,220,170,162,0,0,1.9,2.717,109,106,2,24,8,23,80,71,0
2015-02-02,21:00:00,204,154,164,155,172,1.5,2.7,73,105,37,37,11,16,70,71,0
2015-02-02,22:00:00,189,142,164,0,0,1.3,2.675,64,103,42,42,13,13,42,69,0
2015-02-02,23:00:00,192,144,164,0,0,1.4,2.633,68,101,30,42,15,15,27,68,0
2015-02-03,00:00:00,163,124,163,0,0,1.1,2.588,52,99,48,48,21,21,32,67,0
2015-02-03,01:00:00,135,103,161,0,0,1,2.55,50,97,48,48,26,26,30,65,0
2015-02-03,02:00:00,137,104,160,0,0,1,2.508,67,95,28,48,30,30,29,63,0
2015-02-03,03:00:00,152,116,157,0,0,1.4,2.392,92,94,3,48,30,30,30,60,0
2015-02-03,04:00:00,202,152,149,0,0,1.9,2.162,102,93,2,48,30,30,40,58,0
2015-02-03,05:00:00,203,153,144,0,0,2.2,2.033,95,92,2,48,25,30,23,55,0
2015-02-03,06:00:00,239,189,142,0,0,3.3,2,97,91,2,48,20,30,26,53,0
2015-02-03,07:00:00,252,202,146,0,0,3.6,2.054,99,92,2,48,17,30,27,52,0
2015-02-03,08:00:00,246,196,150,0,0,3.3,2.112,100,93,2,48,11,30,24,51,0
2015-02-03,09:00:00,240,190,154,0,0,3.2,2.158,103,94,4,48,6,30,34,50,0
2015-02-03,10:00:00,276,226,160,0,174,4.2,2.242,120,96,5,48,3,30,55,51,0
2015-02-03,11:00:00,270,220,164,0,180,3.5,2.296,118,97,8,48,3,30,83,52,0
2015-02-03,12:00:00,213,163,166,0,186,2.1,2.296,87,97,30,48,7,30,86,53,0
2015-02-03,13:00:00,158,120,165,0,191,1.5,2.267,64,96,60,60,14,30,56,52,0
2015-02-03,14:00:00,100,75,161,0,191,0.8,2.212,26,93,100,100,26,30,36,51,0
2015-02-03,15:00:00,89,66,157,73,176,0.8,2.15,26,89,98,100,38,38,29,49,0
2015-02-03,16:00:00,88,65,153,72,159,0.7,2.079,28,85,94,100,50,50,26,47,0
2015-02-03,17:00:00,68,49,147,56,135,0.6,1.996,30,81,88,100,60,60,20,44,0
2015-02-03,18:00:00,46,32,140,42,106,0.5,1.9,33,77,77,100,69,69,16,42,0
2015-02-03,19:00:00,29,18,132,29,71,0.4,1.8,42,73,61,100,76,76,15,39,0
2015-02-03,20:00:00,28,16,126,28,65,0.4,1.738,42,70,61,100,80,80,8,36,0
2015-02-03,22:00:00,44,17,115,44,47,0.4,1.654,27,67,69,100,76,80,10,32,0
2015-02-03,23:00:00,57,16,109,64,49,0.3,1.608,29,65,63,100,72,80,10,31,0
2015-02-04,00:00:00,64,12,105,78,52,0.3,1.575,22,64,68,100,68,80,8,30,0
2015-02-04,01:00:00,51,13,101,51,52,0.3,1.546,22,63,64,100,65,80,7,29,0
2015-02-04,02:00:00,39,13,97,39,51,0.3,1.517,23,61,59,100,63,80,9,29,0
2015-02-04,04:00:00,30,13,87,30,48,0.4,1.412,26,55,52,100,61,80,15,27,0
2015-02-04,05:00:00,29,8,81,29,47,0.3,1.333,20,52,60,100,61,80,12,26,0
2015-02-04,06:00:00,24,7,74,24,45,0.3,1.208,16,49,66,100,60,80,15,26,0
2015-02-04,07:00:00,20,7,65,19,44,0.3,1.071,22,46,61,100,60,80,14,25,0
2015-02-04,08:00:00,17,8,58,16,42,0.4,0.95,33,43,50,100,58,80,15,25,0
2015-02-04,09:00:00,19,13,50,16,41,0.4,0.833,34,40,51,100,56,80,21,25,0
2015-02-04,10:00:00,21,8,41,21,40,0.5,0.679,27,36,59,100,56,80,23,23,0
2015-02-04,11:00:00,21,11,32,20,39,0.4,0.55,25,32,66,100,58,80,21,21,0
2015-02-04,12:00:00,22,14,26,20,38,0.4,0.479,25,30,69,100,60,80,19,18,0
2015-02-04,13:00:00,23,10,22,18,37,0.4,0.433,23,28,73,100,62,80,10,16,0
2015-02-04,14:00:00,23,10,19,21,36,0.4,0.417,25,28,73,98,63,80,11,15,0
2015-02-04,15:00:00,52,11,17,54,36,0.4,0.4,23,28,81,94,65,80,11,14,0
2015-02-04,16:00:00,60,8,14,70,36,0.3,0.383,23,28,81,88,69,80,10,13,0
2015-02-04,17:00:00,60,7,13,70,36,0.3,0.371,26,27,77,81,72,80,7,13,0
2015-02-04,18:00:00,98,7,11,145,40,0.3,0.363,22,27,88,88,76,80,2,12,0
2015-02-04,19:00:00,72,13,11,93,43,0.3,0.358,26,26,77,88,77,80,3,12,0
2015-02-04,20:00:00,63,10,11,75,45,0.3,0.354,19,25,83,88,79,80,2,12,0
2015-02-04,21:00:00,50,13,11,50,46,0.3,0.35,19,24,81,88,80,80,3,11,0
2015-02-04,22:00:00,43,6,10,43,46,0.3,0.346,18,24,79,88,81,81,3,11,0
2015-02-04,23:00:00,24,8,10,24,44,0.3,0.346,18,23,76,88,80,81,3,11,0
2015-02-05,00:00:00,24,6,10,15,42,0.3,0.346,20,23,74,88,79,81,4,11,0
2015-02-05,01:00:00,23,5,10,15,40,0.3,0.346,20,23,71,88,79,81,5,11,0
2015-02-05,02:00:00,21,8,9,10,39,0.3,0.346,25,23,67,88,76,81,4,10,0
2015-02-05,03:00:00,22,8,9,9,38,0.2,0.337,25,23,68,88,75,81,4,10,0
2015-02-05,04:00:00,25,8,9,0,38,0.2,0.329,20,23,77,88,74,81,4,9,0
2015-02-05,05:00:00,22,7,9,12,37,0.3,0.329,26,23,70,88,73,81,10,9,0
2015-02-05,06:00:00,21,14,9,17,37,0.3,0.329,26,24,66,88,71,81,22,10,0
2015-02-05,07:00:00,21,10,9,21,37,0.4,0.333,35,24,56,88,69,81,30,10,0
2015-02-05,08:00:00,31,14,10,26,38,0.5,0.337,62,26,26,88,63,81,28,11,0
2015-02-05,09:00:00,32,18,10,32,38,0.7,0.35,64,27,28,88,57,81,24,11,0
2015-02-05,10:00:00,32,18,10,32,39,0.6,0.354,46,28,51,88,55,81,18,11,0
2015-02-05,11:00:00,21,11,10,21,39,0.5,0.358,40,28,63,88,55,81,12,10,0
2015-02-05,12:00:00,28,19,10,0,40,0.5,0.362,36,29,76,88,54,81,9,10,0
2015-02-05,13:00:00,29,10,10,11,39,0.4,0.362,27,29,90,90,57,81,7,10,0
2015-02-05,14:00:00,29,20,11,29,40,0.6,0.371,47,30,79,90,59,81,12,10,0
2015-02-05,15:00:00,38,26,11,27,39,0.6,0.379,43,31,84,90,62,81,12,10,0
2015-02-05,16:00:00,46,32,12,40,37,0.6,0.392,43,31,86,90,70,81,14,10,0
2015-02-05,18:00:00,62,44,14,64,32,0.8,0.417,69,34,59,90,77,81,20,11,0
2015-02-05,19:00:00,70,51,17,77,32,0.7,0.442,59,36,63,90,77,81,20,12,0
2015-02-05,20:00:00,83,61,19,89,32,0.8,0.462,66,38,51,90,74,81,21,13,0
2015-02-05,21:00:00,88,65,21,91,34,0.9,0.488,71,40,44,90,68,81,22,14,0
2015-02-05,22:00:00,90,67,24,87,36,1,0.517,85,43,27,90,62,80,28,15,0
2015-02-05,23:00:00,93,69,26,82,39,1,0.546,71,45,39,90,56,79,29,16,0
2015-02-06,00:00:00,83,61,28,77,42,1,0.575,72,47,34,90,50,79,25,17,0
2015-02-06,01:00:00,89,66,31,76,44,1,0.604,81,49,22,90,42,77,26,17,0
2015-02-06,02:00:00,84,62,33,77,47,1.1,0.638,90,52,7,90,36,77,24,18,0
2015-02-06,03:00:00,92,68,36,77,50,1.2,0.679,95,55,2,90,28,77,24,19,0
2015-02-06,04:00:00,103,77,39,97,52,2.1,0.758,108,59,2,90,22,77,37,20,0
2015-02-06,05:00:00,142,108,43,116,57,2.9,0.867,129,63,2,90,17,77,54,22,0
2015-02-06,06:00:00,170,129,48,0,59,3.3,0.992,128,67,2,90,14,77,52,24,0
2015-02-06,07:00:00,130,99,51,0,61,2.2,1.067,98,70,2,90,9,77,38,24,0
2015-02-06,08:00:00,110,83,54,0,62,2.6,1.154,96,71,2,90,5,77,39,24,0
2015-02-06,09:00:00,115,87,57,93,65,3.1,1.254,101,73,2,90,3,77,45,25,0
2015-02-06,10:00:00,114,86,60,97,69,3.2,1.362,106,75,3,90,2,77,49,26,0
2015-02-06,11:00:00,74,54,62,0,71,1.5,1.404,78,77,21,90,4,77,44,28,0
2015-02-06,12:00:00,57,40,63,40,70,1,1.425,63,78,45,90,10,77,35,29,0
2015-02-06,13:00:00,43,30,63,36,71,0.8,1.442,50,79,70,86,18,77,27,30,0
2015-02-06,14:00:00,45,31,64,0,73,0.7,1.446,45,79,83,86,28,77,21,30,0
2015-02-06,15:00:00,55,39,64,0,76,0.8,1.454,60,80,70,86,37,77,20,30,0
2015-02-06,16:00:00,70,51,65,66,77,1.5,1.492,105,82,29,83,40,77,25,31,0
2015-02-06,17:00:00,134,102,68,120,81,1.7,1.537,118,85,20,83,43,77,32,32,0
2015-02-06,18:00:00,124,94,70,119,84,1.3,1.558,90,86,40,83,47,77,32,32,0
2015-02-06,19:00:00,169,128,73,143,88,1.4,1.588,92,87,41,83,50,74,44,33,0
2015-02-06,21:00:00,145,111,77,124,92,1.5,1.642,113,91,7,83,37,62,46,35,0
2015-02-06,22:00:00,147,112,79,128,94,1.6,1.667,117,93,2,83,27,56,42,36,0
2015-02-06,23:00:00,155,118,81,130,97,1.9,1.704,118,94,2,83,18,50,38,36,0
2015-02-07,00:00:00,92,68,82,77,97,1.3,1.717,95,95,2,83,15,50,31,36,0
2015-02-07,01:00:00,48,33,80,42,95,0.7,1.704,64,95,21,83,15,50,19,36,0
2015-02-07,02:00:00,35,17,78,35,93,0.4,1.675,32,92,61,83,18,50,15,36,0
2015-02-07,03:00:00,34,8,76,34,90,0.3,1.637,17,89,97,97,25,50,5,35,0
2015-02-07,04:00:00,31,6,73,12,85,0.2,1.558,14,85,97,97,36,50,3,34,0
2015-02-07,05:00:00,32,3,68,20,80,0.2,1.446,11,80,101,101,48,50,2,31,0
2015-02-07,06:00:00,32,13,64,21,77,0.2,1.317,10,75,100,101,60,60,2,29,0
2015-02-07,07:00:00,27,6,60,13,74,0.3,1.238,21,72,84,101,70,70,4,28,0
2015-02-07,08:00:00,20,9,57,20,71,0.4,1.146,35,70,63,101,78,78,14,27,0
2015-02-07,09:00:00,23,13,54,19,68,0.4,1.033,29,67,71,101,84,84,13,26,0
2015-02-07,10:00:00,23,8,50,21,64,0.4,0.917,28,63,73,101,86,86,14,24,0
2015-02-07,11:00:00,34,14,49,34,63,0.5,0.875,30,61,69,101,82,86,27,23,0
2015-02-07,12:00:00,27,12,47,21,62,0.4,0.85,19,59,84,101,81,86,14,22,0
2015-02-07,13:00:00,25,16,47,0,63,0.4,0.833,23,58,80,101,78,86,10,22,0
2015-02-07,14:00:00,26,3,46,25,61,0.3,0.817,18,57,83,101,76,86,7,21,0
2015-02-07,15:00:00,38,16,45,38,60,0.4,0.8,16,55,86,101,76,86,6,21,0
2015-02-07,16:00:00,28,6,43,27,59,0.3,0.75,18,52,88,101,79,86,6,20,0
2015-02-07,17:00:00,33,3,39,31,55,0.3,0.692,12,47,104,104,83,86,2,19,0
2015-02-07,18:00:00,50,12,35,50,52,0.3,0.65,14,44,100,104,87,87,2,17,0
2015-02-07,19:00:00,54,9,30,57,48,0.3,0.604,15,41,95,104,90,90,2,16,0
2015-02-07,21:00:00,54,6,22,58,42,0.3,0.504,14,33,86,104,92,92,4,12,0
2015-02-07,22:00:00,57,8,17,64,39,0.3,0.45,11,28,86,104,92,92,2,10,0
2015-02-07,23:00:00,58,8,13,65,37,0.3,0.383,11,24,84,104,92,92,3,9,0
2015-02-08,00:00:00,24,6,10,20,34,0.3,0.342,17,21,74,104,90,92,4,8,0
2015-02-08,01:00:00,24,4,9,11,33,0.3,0.325,16,19,75,104,86,92,4,7,0
2015-02-08,02:00:00,24,3,8,10,32,0.3,0.321,12,18,75,104,83,92,2,6,0
2015-02-08,03:00:00,23,5,8,6,30,0.3,0.321,12,18,73,104,81,92,2,6,0
2015-02-08,04:00:00,19,12,9,0,31,0.4,0.329,23,18,60,104,77,92,6,6,0
2015-02-08,05:00:00,16,10,9,10,31,0.6,0.346,31,19,51,104,72,92,10,7,0
2015-02-08,06:00:00,19,13,9,13,30,0.6,0.362,37,20,46,104,67,92,8,7,0
2015-02-08,07:00:00,19,9,9,14,30,0.6,0.375,38,21,45,104,62,92,18,8,0
2015-02-08,08:00:00,19,13,9,15,30,0.5,0.379,34,21,46,104,59,92,36,9,0
2015-02-08,09:00:00,17,10,9,17,30,0.6,0.387,30,21,51,104,56,92,33,9,0
2015-02-08,10:00:00,23,16,9,22,30,0.6,0.396,29,21,56,104,54,92,30,10,0
2015-02-08,11:00:00,23,5,9,15,29,0.5,0.396,16,20,71,104,53,92,23,10,0
2015-02-08,12:00:00,25,12,9,0,30,0.5,0.4,14,20,77,104,55,92,14,10,0
2015-02-08,13:00:00,26,8,9,0,30,0.4,0.4,14,19,83,104,59,92,12,10,0
2015-02-08,14:00:00,26,8,9,8,29,0.5,0.408,21,20,83,104,64,92,13,10,0
2015-02-08,15:00:00,25,16,9,0,28,0.5,0.412,30,20,78,104,68,92,13,10,0
2015-02-08,16:00:00,33,23,10,0,29,0.6,0.425,38,21,73,104,72,92,11,11,0
2015-02-08,17:00:00,40,28,11,40,29,0.7,0.442,44,22,66,100,73,92,14,11,0
2015-02-08,18:00:00,63,45,12,56,29,0.8,0.462,51,24,56,95,73,92,23,12,0
2015-02-08,19:00:00,75,55,14,79,30,0.9,0.488,55,26,51,92,71,92,21,13,0
2015-02-08,20:00:00,88,65,16,87,32,1,0.517,70,28,31,86,65,92,31,14,0
2015-02-08,21:00:00,99,74,19,99,34,1.1,0.55,70,30,31,86,59,92,31,15,0
2015-02-08,22:00:00,103,77,22,106,36,1.1,0.583,77,33,24,84,51,92,32,16,0
2015-02-08,23:00:00,118,89,25,113,39,1.2,0.621,77,36,18,83,44,90,41,18,0
2015-02-09,00:00:00,138,105,29,132,45,1.4,0.667,72,38,17,83,37,86,66,21,0
2015-02-09,01:00:00,158,120,34,142,52,1.5,0.717,72,40,14,83,30,83,83,24,0
2015-02-09,02:00:00,169,128,39,147,59,1.7,0.775,77,43,7,83,24,81,75,27,0
2015-02-09,03:00:00,182,137,45,151,67,1.8,0.838,80,46,5,83,18,77,74,30,0
2015-02-09,04:00:00,178,134,50,136,70,2.4,0.921,85,48,6,83,15,73,69,33,0
2015-02-09,05:00:00,179,135,55,138,76,3.5,1.042,89,51,5,83,12,73,63,35,0
2015-02-09,06:00:00,158,120,60,0,80,2.5,1.121,87,53,4,83,10,73,57,37,0
2015-02-09,07:00:00,159,121,64,0,83,2.5,1.2,84,55,4,83,8,73,46,38,0
2015-02-09,08:00:00,137,104,68,0,88,2.2,1.271,78,57,5,83,6,73,52,39,0
2015-02-09,09:00:00,108,81,71,84,91,1.8,1.321,74,58,9,83,6,73,59,40,0
2015-02-09,10:00:00,95,71,73,71,94,1.4,1.354,66,60,0,0,0,73,35,40,0
2015-02-09,11:00:00,109,82,77,96,99,1.5,1.396,63,62,38,83,10,73,47,41,0
2015-02-09,12:00:00,114,86,80,90,99,1.5,1.438,68,64,38,83,15,73,50,42,0
2015-02-09,13:00:00,114,86,83,0,99,1.5,1.483,73,67,40,83,20,73,53,44,0
2015-02-09,14:00:00,120,91,86,93,103,1.6,1.529,88,70,39,78,25,73,51,46,0
2015-02-09,15:00:00,117,88,89,0,103,1.5,1.571,94,72,40,73,30,73,46,47,0
2015-02-09,16:00:00,149,114,93,129,105,2,1.629,123,76,25,66,33,73,55,49,0
2015-02-09,17:00:00,214,164,99,178,112,2.1,1.688,128,79,26,56,35,73,59,51,0
2015-02-09,18:00:00,188,141,103,156,117,1.8,1.729,110,82,32,51,35,71,43,52,0
2015-02-09,19:00:00,213,163,107,184,123,2,1.775,127,85,8,40,31,65,59,53,0
2015-02-09,20:00:00,248,198,113,241,131,2.1,1.821,115,87,26,40,30,59,71,55,0
2015-02-09,21:00:00,251,201,118,230,138,2.1,1.862,97,88,36,40,29,51,61,56,0
2015-02-09,22:00:00,250,200,123,212,143,2.2,1.908,119,89,6,40,25,44,59,57,0
2015-02-09,23:00:00,242,192,128,203,148,2.1,1.946,118,91,2,40,20,37,58,58,0
2015-02-10,00:00:00,235,185,131,196,151,2.3,1.983,120,93,2,40,17,35,58,58,0
2015-02-10,01:00:00,239,189,134,200,154,2.9,2.042,125,95,2,40,14,35,62,57,0
2015-02-10,02:00:00,287,237,138,245,160,4.4,2.154,140,98,2,40,10,35,82,57,0
2015-02-10,03:00:00,275,225,142,0,160,4,2.246,128,100,2,40,10,35,78,57,0
2015-02-10,04:00:00,245,195,145,0,162,3.5,2.292,114,101,2,40,7,35,74,57,0
2015-02-10,05:00:00,220,170,146,0,163,3,2.271,105,102,2,40,2,35,61,57,0
2015-02-10,06:00:00,169,128,146,0,163,2.6,2.275,98,102,2,40,2,35,56,57,0
2015-02-10,07:00:00,182,137,147,0,163,3,2.296,105,103,2,40,2,35,72,58,0
2015-02-10,08:00:00,179,135,148,135,161,3.2,2.338,105,104,2,40,2,35,65,59,0
2015-02-10,09:00:00,173,131,150,144,165,3.4,2.404,112,106,2,40,2,35,54,59,0
2015-02-10,10:00:00,175,132,153,144,169,3.6,2.496,118,108,2,40,2,35,49,59,0
2015-02-10,11:00:00,163,124,155,129,171,3.2,2.567,124,111,4,40,2,35,46,59,0
2015-02-10,12:00:00,127,96,155,0,176,2.2,2.596,111,112,13,40,4,35,44,59,0
2015-02-10,13:00:00,134,102,156,115,173,2.6,2.642,142,115,14,40,5,35,43,59,0
2015-02-10,14:00:00,147,112,157,0,178,2.1,2.663,126,117,33,40,9,35,40,58,0
2015-02-10,15:00:00,113,85,157,0,178,1.2,2.65,93,117,78,78,18,35,38,58,0
2015-02-10,16:00:00,145,111,156,0,181,1.4,2.625,97,116,77,78,28,35,42,57,0
2015-02-10,17:00:00,135,103,154,104,176,1.4,2.596,96,114,65,78,36,36,40,56,0
2015-02-10,18:00:00,156,119,153,132,174,1.6,2.588,104,114,52,78,42,42,44,56,0
2015-02-10,19:00:00,223,173,153,194,175,2,2.588,118,114,41,78,47,47,54,56,0
2015-02-10,20:00:00,241,191,153,208,173,2.1,2.588,130,114,18,78,47,47,59,56,0
2015-02-10,21:00:00,230,180,152,193,170,2.2,2.592,139,116,2,78,46,47,61,56,0
2015-02-10,22:00:00,230,180,151,196,169,2.6,2.608,139,117,2,78,42,47,62,56,0
2015-02-10,23:00:00,248,198,152,216,170,3.6,2.671,151,118,2,78,32,47,76,57,0
2015-02-11,00:00:00,166,126,149,0,168,2.1,2.663,109,118,2,78,23,47,49,56,0
2015-02-11,01:00:00,85,63,144,63,158,1.3,2.596,79,116,11,78,16,47,41,55,0
2015-02-11,02:00:00,144,110,139,126,150,2.4,2.512,100,114,2,78,10,47,57,54,0
2015-02-11,03:00:00,277,227,139,296,160,5.5,2.575,118,114,2,78,5,47,98,55,0
2015-02-11,04:00:00,284,234,140,277,167,5.7,2.667,119,114,4,78,3,47,115,57,0
2015-02-11,05:00:00,246,196,141,222,170,5.3,2.763,106,114,3,78,4,47,113,59,0
2015-02-11,06:00:00,189,142,142,150,169,3.8,2.812,103,114,4,78,4,47,93,61,0
2015-02-11,07:00:00,79,58,139,0,169,1.3,2.742,72,113,27,78,7,47,34,59,0
2015-02-11,08:00:00,38,26,134,0,171,0.6,2.633,47,111,54,78,13,47,27,57,0
2015-02-11,09:00:00,34,22,130,34,165,0.6,2.517,61,108,44,78,18,47,25,56,0
2015-02-11,10:00:00,30,20,125,30,158,0.6,2.392,47,105,63,78,25,47,19,55,0
2015-02-11,11:00:00,38,26,121,27,152,0.5,2.279,33,102,82,82,35,47,15,54,0
2015-02-11,12:00:00,36,25,118,29,145,0.5,2.208,27,98,90,90,46,47,19,53,0
2015-02-11,13:00:00,32,22,115,26,140,0.5,2.121,23,93,97,97,58,58,24,52,0
2015-02-11,14:00:00,42,29,111,29,134,0.5,2.054,26,89,97,97,69,69,23,51,0
2015-02-11,15:00:00,38,26,109,33,129,0.5,2.025,30,86,95,97,78,78,22,50,0
2015-02-11,16:00:00,39,27,105,37,125,0.5,1.987,31,84,94,97,83,83,20,50,0
2015-02-11,17:00:00,32,20,102,32,121,0.4,1.946,26,81,101,101,90,90,13,48,0
2015-02-11,18:00:00,40,18,97,40,117,0.4,1.896,34,78,86,101,93,93,12,47,0
2015-02-11,19:00:00,39,19,91,39,110,0.5,1.833,62,76,49,101,89,93,14,45,0
2015-02-11,20:00:00,24,10,83,24,101,0.4,1.762,42,72,73,101,86,93,7,43,0
2015-02-11,21:00:00,32,11,76,32,93,0.4,1.687,28,67,87,101,85,93,5,41,0
2015-02-11,23:00:00,27,12,61,19,76,0.4,1.462,24,57,86,101,82,93,5,36,0
2015-02-12,00:00:00,27,8,57,16,73,0.4,1.392,23,54,86,101,82,93,5,34,0
2015-02-12,01:00:00,25,14,54,16,71,0.4,1.354,27,52,79,101,79,93,7,32,0
2015-02-12,02:00:00,30,21,51,0,68,0.6,1.279,38,49,63,101,76,93,13,31,0
2015-02-12,03:00:00,30,21,42,21,55,0.7,1.079,50,46,54,101,76,93,14,27,0
2015-02-12,04:00:00,44,22,33,24,43,0.8,0.875,88,45,23,101,70,93,18,23,0
2015-02-12,05:00:00,30,21,26,24,34,0.8,0.688,56,43,48,101,65,93,19,19,0
2015-02-12,06:00:00,40,28,21,29,28,0.7,0.558,46,40,52,101,61,93,26,16,0
2015-02-12,07:00:00,38,26,20,28,28,0.8,0.538,71,40,28,101,54,93,30,16,0
2015-02-12,08:00:00,41,23,20,32,28,1,0.554,82,42,20,101,46,93,35,16,0
2015-02-12,09:00:00,37,24,20,35,28,0.9,0.567,74,42,30,101,40,93,35,17,0
2015-02-12,10:00:00,40,28,20,37,28,0.8,0.575,59,43,51,101,38,93,28,17,0
2015-02-12,11:00:00,43,30,20,34,29,0.7,0.583,55,44,64,101,40,93,17,17,0
2015-02-12,12:00:00,43,30,21,0,29,0.6,0.588,33,44,88,101,48,93,12,17,0
2015-02-12,13:00:00,38,26,21,28,29,0.7,0.596,41,45,82,101,52,93,18,17,0
2015-02-12,14:00:00,40,0,20,40,29,0.7,0.604,47,46,79,101,55,93,21,17,0
2015-02-12,15:00:00,80,59,22,0,29,0.7,0.612,49,46,80,101,62,93,18,17,0
2015-02-12,16:00:00,48,33,22,40,29,0.7,0.621,46,47,85,101,70,93,18,16,0
2015-02-12,17:00:00,45,31,23,38,30,0.6,0.629,43,48,85,88,77,93,17,17,0
2015-02-12,18:00:00,45,31,23,39,29,0.6,0.637,43,48,80,88,80,89,15,17,0
2015-02-12,19:00:00,55,39,24,56,30,0.7,0.646,49,48,74,88,82,86,15,17,0
2015-02-12,20:00:00,65,47,26,71,33,0.8,0.662,59,48,64,88,79,85,20,17,0
2015-02-12,21:00:00,102,76,29,98,36,1.1,0.692,75,50,50,88,75,84,29,18,0
2015-02-12,22:00:00,110,83,32,101,39,1.2,0.725,64,52,66,88,73,82,26,19,0
2015-02-12,23:00:00,119,90,35,112,44,1.4,0.767,72,54,42,88,68,82,34,20,0
2015-02-13,00:00:00,102,76,38,101,48,1.2,0.8,56,55,37,88,62,82,29,21,0
2015-02-13,01:00:00,95,71,41,90,51,1.2,0.833,59,56,28,88,55,82,30,22,0
2015-02-13,02:00:00,94,70,43,84,53,1.2,0.858,60,57,21,88,48,82,25,23,0
2015-02-13,03:00:00,102,76,45,87,56,1.3,0.883,68,58,14,88,40,82,24,23,0
2015-02-13,04:00:00,122,92,48,108,60,2.1,0.938,82,58,3,88,33,82,26,24,0
2015-02-13,05:00:00,125,95,51,108,63,2.6,1.012,75,59,3,88,27,82,28,24,0
2015-02-13,06:00:00,127,96,54,103,67,2.6,1.092,73,60,3,88,19,82,26,24,0
2015-02-13,07:00:00,122,92,57,101,70,2.5,1.162,74,60,3,88,14,82,28,24,0
2015-02-13,08:00:00,124,94,60,111,74,2.6,1.229,76,60,4,88,10,82,37,24,0
2015-02-13,09:00:00,144,110,64,126,78,2.8,1.308,85,60,7,88,7,82,50,25,0
2015-02-13,10:00:00,150,115,68,131,82,2.6,1.383,92,62,13,88,6,82,60,26,0
2015-02-13,11:00:00,93,0,0,136,87,2.3,1.45,90,63,89,89,16,82,58,28,0
2015-02-13,12:00:00,40,0,0,0,0,2,1.508,79,65,46,89,21,82,46,29,0
2015-02-13,13:00:00,107,80,74,99,90,2,1.562,91,67,41,89,26,82,48,30,0
2015-02-13,14:00:00,166,126,76,0,92,1.9,1.612,93,69,52,89,32,82,43,31,0
2015-02-13,15:00:00,169,128,80,0,92,1.8,1.658,97,71,56,89,38,82,39,32,0
2015-02-13,16:00:00,170,129,84,0,95,1.6,1.696,87,73,65,89,46,82,37,33,0
2015-02-13,17:00:00,159,121,88,0,98,1.4,1.729,76,74,69,89,54,82,33,34,0
2015-02-13,18:00:00,204,154,94,0,101,1.6,1.771,78,75,80,89,62,82,35,34,0
2015-02-13,19:00:00,245,195,101,0,104,2,1.825,104,78,62,89,59,79,40,35,0
2015-02-13,20:00:00,280,230,109,0,106,2.5,1.896,136,81,34,89,57,75,46,37,0
2015-02-13,21:00:00,293,243,117,0,107,3,1.975,156,84,14,89,54,73,49,37,0
2015-02-13,22:00:00,328,278,125,0,107,4.9,2.129,164,88,17,89,50,68,59,39,0
2015-02-14,00:00:00,376,326,147,0,107,5.3,2.446,157,97,23,89,40,62,72,42,0
2015-02-14,01:00:00,376,326,159,0,109,5.1,2.608,150,100,23,89,34,62,77,44,0
2015-02-14,02:00:00,377,327,170,0,111,4.8,2.758,141,104,22,89,27,62,70,46,0
2015-02-14,03:00:00,336,286,180,0,114,4,2.871,136,107,19,89,22,62,66,48,0
2015-02-14,04:00:00,294,244,187,0,114,3.6,2.933,136,109,17,89,20,62,66,50,0
2015-02-14,05:00:00,272,222,193,0,115,3.5,2.971,127,111,15,89,20,62,57,51,0
2015-02-14,06:00:00,272,222,198,0,117,3.8,3.021,122,113,16,89,20,62,56,52,0
2015-02-14,07:00:00,269,219,204,0,121,3.1,3.046,111,115,14,89,19,62,55,53,0
2015-02-14,08:00:00,264,214,210,0,123,3.3,3.075,108,116,14,89,18,62,54,54,0
2015-02-14,09:00:00,270,220,215,0,122,3.5,3.104,112,117,16,89,17,62,76,55,0
2015-02-14,10:00:00,291,241,220,0,118,3.8,3.154,133,119,19,89,16,62,83,56,0
2015-02-14,11:00:00,301,251,222,0,99,3.4,3.2,126,120,23,80,17,62,82,57,0
2015-02-14,12:00:00,302,252,223,0,99,3,3.242,115,122,32,80,19,62,80,58,0
2015-02-14,13:00:00,301,251,230,0,0,2.8,3.275,105,122,47,80,23,62,75,59,0
2015-02-14,14:00:00,308,258,235,0,0,2.4,3.296,83,122,77,80,30,62,69,61,0
2015-02-14,15:00:00,321,271,241,0,0,2.6,3.329,96,122,85,85,39,62,72,62,0
2015-02-14,16:00:00,340,290,248,0,0,2.8,3.379,108,123,84,85,48,62,74,63,0
2015-02-14,17:00:00,347,297,255,0,0,2.8,3.437,113,124,83,85,56,62,79,65,0
2015-02-14,18:00:00,353,303,262,0,0,2.9,3.492,125,126,66,85,62,62,80,67,0
2015-02-14,19:00:00,351,301,266,0,0,3,3.533,152,128,29,85,63,63,70,69,0
2015-02-14,20:00:00,385,335,270,0,0,3.6,3.579,177,130,16,85,61,63,72,70,0
2015-02-14,21:00:00,406,359,275,0,0,3.8,3.612,172,131,18,85,57,63,78,71,0
2015-02-14,22:00:00,432,397,280,0,0,4.4,3.592,164,131,23,85,50,63,100,73,0
2015-02-14,23:00:00,446,418,285,0,0,4.7,3.583,167,131,22,85,43,63,103,74,0
2015-02-15,00:00:00,445,417,288,0,0,4.4,3.546,145,130,25,85,35,63,102,75,0
2015-02-15,01:00:00,448,422,292,0,0,4.5,3.521,143,130,23,85,28,63,96,76,0
2015-02-15,02:00:00,448,421,296,0,0,4.6,3.512,154,130,20,85,22,63,80,76,0
2015-02-15,03:00:00,433,399,301,0,0,4.5,3.533,154,131,19,85,21,63,74,76,0
2015-02-15,04:00:00,415,372,306,0,0,4.5,3.571,144,131,16,85,21,63,70,77,0
2015-02-15,05:00:00,403,354,312,0,0,4.5,3.612,139,132,16,85,20,63,76,77,0
2015-02-15,06:00:00,396,346,317,0,0,4.9,3.658,138,133,16,85,20,63,70,78,0
2015-02-15,07:00:00,409,363,323,0,0,5.9,3.775,140,134,16,85,19,63,82,79,0
2015-02-15,08:00:00,366,316,327,0,0,5.3,3.858,119,134,14,85,18,63,102,81,0
2015-02-15,09:00:00,364,314,331,0,0,5.9,3.958,124,135,16,85,17,63,100,82,0
2015-02-15,10:00:00,394,344,335,0,0,7.2,4.1,144,135,19,85,16,63,107,83,0
2015-02-15,11:00:00,373,323,338,0,0,5.9,4.204,145,136,17,85,16,63,107,84,0
2015-02-15,12:00:00,366,316,341,0,0,5.1,4.292,141,137,18,85,16,63,113,85,0
2015-02-15,13:00:00,319,269,342,0,0,3.9,4.338,124,138,25,85,18,63,98,86,0
2015-02-15,14:00:00,365,315,344,0,0,5.2,4.454,159,141,19,85,18,63,110,88,0
2015-02-15,15:00:00,377,327,347,0,0,5.9,4.592,167,144,16,84,18,63,121,90,0
2015-02-15,16:00:00,359,309,347,0,0,5.7,4.713,155,146,16,83,18,63,131,93,0
2015-02-15,17:00:00,361,311,348,0,0,5.7,4.833,156,148,15,66,18,63,129,95,0
2015-02-15,18:00:00,371,321,349,0,0,5.4,4.938,153,149,14,29,18,63,119,96,0
2015-02-15,19:00:00,332,282,348,0,0,4.5,5,136,148,14,25,17,61,101,98,0
2015-02-15,20:00:00,261,211,343,0,0,3.8,5.008,117,146,14,25,17,57,91,98,0
2015-02-15,21:00:00,229,179,335,0,0,3,4.975,96,143,25,25,17,50,87,99,0
2015-02-15,22:00:00,213,163,326,0,0,2.8,4.908,88,139,25,25,17,43,84,98,0
2015-02-15,23:00:00,219,169,315,0,0,3.1,4.842,96,137,16,25,17,35,88,97,0
2015-02-16,00:00:00,223,173,305,0,0,3.5,4.804,97,135,12,25,17,28,88,97,0
2015-02-16,01:00:00,237,187,295,0,0,3.7,4.771,96,133,12,25,16,22,86,96,0
2015-02-16,02:00:00,263,213,287,0,0,3.8,4.738,96,130,14,25,16,21,98,97,0
2015-02-16,03:00:00,287,237,280,0,0,3.7,4.704,92,128,15,25,17,21,100,98,0
2015-02-16,04:00:00,300,250,275,0,0,3.5,4.663,85,125,16,25,17,20,90,99,0
2015-02-16,05:00:00,303,253,270,0,0,3.5,4.621,84,123,16,25,16,20,84,99,0
2015-02-16,06:00:00,312,262,267,0,0,3.8,4.575,87,121,16,25,15,19,78,100,0
2015-02-16,07:00:00,298,248,262,0,0,5,4.538,92,119,16,25,15,18,58,99,0
2015-02-16,08:00:00,296,246,259,0,0,5.7,4.554,98,118,17,25,15,18,57,97,0
2015-02-16,09:00:00,323,273,258,0,0,6.5,4.579,113,117,20,25,16,18,75,96,0
2015-02-16,10:00:00,320,270,254,0,0,5.6,4.512,119,116,20,25,17,18,74,94,0
2015-02-16,11:00:00,79,57,243,108,108,0.9,4.304,40,112,48,48,21,21,27,91,0
2015-02-16,12:00:00,119,38,232,187,148,0.5,4.112,21,107,67,67,28,28,12,87,0
2015-02-16,13:00:00,93,23,222,136,144,0.4,3.967,17,103,72,72,34,34,16,84,0
2015-02-16,14:00:00,72,14,209,94,131,0.3,3.763,16,97,76,76,42,42,10,79,0
2015-02-16,15:00:00,58,17,196,66,118,0.3,3.529,17,90,75,76,49,49,5,74,0
2015-02-16,16:00:00,29,13,184,29,103,0.3,3.304,15,84,75,76,57,57,4,69,0
2015-02-16,17:00:00,23,14,171,20,91,0.3,3.079,16,79,73,76,63,63,3,64,0
2015-02-16,18:00:00,35,20,159,35,84,0.3,2.867,22,73,65,76,69,69,2,59,0
2015-02-16,19:00:00,40,17,148,40,79,0.4,2.696,32,69,53,76,70,70,3,55,0
2015-02-16,20:00:00,44,22,140,44,76,0.5,2.558,34,65,51,76,68,70,9,52,0
2015-02-16,21:00:00,42,18,133,42,73,0.4,2.45,28,63,56,76,66,70,5,48,0
2015-02-16,22:00:00,37,18,127,37,70,0.5,2.354,31,60,52,76,62,70,5,45,0
2015-02-16,23:00:00,36,20,121,36,67,0.5,2.246,30,57,51,76,60,70,8,42,0
2015-02-17,00:00:00,47,26,115,47,66,0.8,2.133,44,55,37,76,55,70,17,39,0
2015-02-17,01:00:00,30,21,108,29,63,0.6,2.004,34,53,46,76,51,70,12,36,0
2015-02-17,02:00:00,25,17,100,0,63,0.4,1.862,19,49,57,76,50,70,13,32,0
2015-02-17,03:00:00,28,19,91,0,63,0.5,1.729,21,46,55,76,51,70,18,29,0
2015-02-17,04:00:00,23,16,81,17,60,0.4,1.6,24,44,48,76,50,70,14,25,0
2015-02-17,05:00:00,21,13,71,21,58,0.4,1.471,23,41,51,76,50,70,15,23,0
2015-02-17,06:00:00,26,15,61,26,56,0.4,1.329,22,39,54,76,50,70,15,20,0
2015-02-17,07:00:00,33,15,51,33,55,0.4,1.137,29,36,48,76,50,70,12,18,0
2015-02-17,08:00:00,34,17,41,34,54,0.5,0.921,34,33,43,76,50,70,13,16,0
2015-02-17,09:00:00,37,17,31,37,53,0.5,0.671,30,30,47,76,50,70,14,14,0
2015-02-17,10:00:00,46,20,20,46,53,0.5,0.458,25,26,54,76,50,70,10,11,0
2015-02-17,11:00:00,52,20,19,53,50,0.4,0.438,16,25,66,76,51,70,5,10,0
2015-02-17,12:00:00,48,22,18,48,44,0.4,0.433,14,25,73,76,54,70,5,10,0
2015-02-17,13:00:00,32,15,18,32,39,0.3,0.429,12,25,80,80,58,70,3,9,0
2015-02-17,14:00:00,27,18,18,26,36,0.3,0.429,13,24,84,84,62,70,4,9,0
2015-02-17,15:00:00,30,21,18,22,34,0.3,0.429,14,24,85,85,66,70,4,9,0
2015-02-17,16:00:00,27,15,18,24,34,0.3,0.429,16,24,85,85,72,72,6,9,0
2015-02-17,17:00:00,27,16,18,25,34,0.3,0.429,15,24,86,86,77,77,8,9,0
2015-02-17,18:00:00,27,16,18,19,34,0.3,0.429,15,24,84,86,80,80,4,9,0
2015-02-17,19:00:00,35,24,18,28,33,0.5,0.433,37,24,60,86,80,80,6,9,0
2015-02-17,20:00:00,52,36,19,37,33,0.7,0.442,53,25,43,86,76,80,11,9,0
2015-02-17,21:00:00,55,39,20,0,32,0.8,0.458,40,25,53,86,72,80,12,10,0
2015-02-17,22:00:00,70,51,21,0,32,1,0.479,57,27,36,86,66,80,20,10,0
2015-02-17,23:00:00,75,55,23,79,34,1.3,0.513,96,29,6,86,57,80,23,11,0
2015-02-18,00:00:00,137,104,26,129,38,1.6,0.546,93,31,10,86,47,80,34,12,0
2015-02-18,01:00:00,143,109,30,126,43,1.6,0.588,75,33,20,86,39,80,30,12,0
2015-02-18,02:00:00,142,108,33,115,47,1.8,0.646,87,36,9,86,30,80,30,13,0
2015-02-18,03:00:00,85,63,35,0,47,1,0.667,57,37,29,86,26,80,23,13,0
2015-02-18,04:00:00,32,22,35,0,48,0.6,0.675,24,37,56,86,27,80,10,13,0
2015-02-18,05:00:00,23,16,36,0,49,0.5,0.679,16,37,63,86,29,80,9,13,0
2015-02-18,06:00:00,26,18,36,0,51,0.5,0.683,16,37,62,86,32,80,16,13,0
2015-02-18,07:00:00,18,12,36,13,50,0.5,0.688,28,37,53,86,38,80,19,13,0
2015-02-18,08:00:00,17,11,35,13,48,0.5,0.688,34,37,50,86,43,80,18,14,0
2015-02-18,09:00:00,19,11,35,15,47,0.5,0.688,30,37,58,86,48,80,14,14,0
2015-02-18,10:00:00,23,16,35,0,47,0.4,0.683,20,37,69,86,55,80,10,14,0
2015-02-18,11:00:00,24,7,34,9,45,0.4,0.683,15,37,76,86,61,80,6,14,0
2015-02-18,12:00:00,26,10,34,0,44,0.3,0.679,14,37,82,86,64,80,4,14,0
2015-02-18,13:00:00,28,10,34,0,45,0.3,0.679,13,37,87,87,67,80,4,14,0
2015-02-18,14:00:00,29,9,33,0,47,0.3,0.679,14,37,91,91,71,80,4,14,0
2015-02-18,15:00:00,32,22,33,0,49,0.3,0.679,18,37,90,91,75,80,5,14,0
2015-02-18,16:00:00,30,21,34,0,51,0.4,0.683,22,37,86,91,80,80,7,14,0
2015-02-18,17:00:00,33,23,34,0,53,0.4,0.688,28,38,79,91,82,82,10,14,0
2015-02-18,18:00:00,25,14,34,0,56,0.4,0.692,28,38,78,91,84,84,9,14,0
2015-02-18,19:00:00,35,24,34,34,57,0.5,0.692,36,38,72,91,83,84,15,14,0
2015-02-18,20:00:00,123,93,36,120,65,1,0.704,43,38,75,91,82,84,50,16,0
2015-02-18,21:00:00,205,155,41,190,77,1.4,0.729,58,38,64,91,79,84,76,19,0
2015-02-18,22:00:00,209,159,46,172,85,1,0.729,41,38,58,91,75,84,56,20,0
2015-02-18,23:00:00,168,127,49,136,89,0.9,0.712,37,35,52,91,70,84,48,21,0
2015-02-19,00:00:00,169,128,50,137,90,0.9,0.683,38,33,49,91,66,84,54,22,0
2015-02-19,01:00:00,342,292,57,340,108,1,0.658,46,32,40,91,61,84,122,26,0
2015-02-19,02:00:00,336,286,65,313,124,1,0.625,44,30,41,91,56,84,89,28,0
2015-02-19,03:00:00,237,187,70,192,130,1,0.625,46,30,40,91,52,84,59,30,0
2015-02-19,04:00:00,212,162,76,167,132,1,0.642,41,30,39,91,48,84,51,31,0
2015-02-19,05:00:00,336,286,87,304,144,1.9,0.7,70,33,11,91,41,84,72,34,0
2015-02-19,06:00:00,392,342,100,350,157,2.2,0.771,60,34,14,91,36,84,86,37,0
2015-02-19,07:00:00,385,335,114,336,177,2.2,0.842,57,36,14,91,31,84,81,40,0
2015-02-19,08:00:00,350,300,126,302,195,2.1,0.908,56,36,14,91,27,84,91,43,0
2015-02-19,09:00:00,331,281,137,285,212,2.1,0.975,53,37,18,91,24,84,95,46,0
2015-02-19,10:00:00,329,279,148,280,216,1.9,1.038,48,39,27,91,22,84,108,50,0
2015-02-19,11:00:00,315,265,159,0,229,1.8,1.096,46,40,38,91,22,84,106,54,0
2015-02-19,12:00:00,299,249,169,0,229,1.7,1.154,47,41,48,91,23,84,92,58,0
2015-02-19,13:00:00,226,176,176,0,229,1.3,1.196,41,42,64,91,30,84,72,61,0
2015-02-19,14:00:00,158,120,180,0,229,0.9,1.221,29,43,77,90,38,84,59,63,0
2015-02-19,15:00:00,130,99,183,0,229,0.8,1.242,27,43,82,86,46,84,50,65,0
2015-02-19,16:00:00,130,99,187,125,223,0.9,1.262,28,44,82,82,54,84,48,67,0
2015-02-19,17:00:00,156,119,191,125,217,0.9,1.283,29,44,73,82,61,84,27,67,0
2015-02-19,18:00:00,153,117,195,0,217,1.1,1.312,29,44,66,82,66,83,15,68,0
2015-02-19,19:00:00,158,120,199,0,228,0.9,1.329,30,44,63,82,69,82,15,68,0
2015-02-19,20:00:00,169,128,200,0,235,1,1.329,31,43,63,82,71,79,16,66,0
2015-02-19,21:00:00,170,129,199,0,238,0.9,1.308,34,42,60,82,71,75,18,64,0
2015-02-19,22:00:00,159,121,198,0,242,0.9,1.304,37,42,58,82,68,71,20,62,0
2015-02-19,23:00:00,147,112,197,0,250,0.9,1.304,34,42,64,82,66,71,21,61,0
2015-02-20,00:00:00,160,122,197,0,260,0.9,1.304,27,41,70,82,65,71,23,60,0
2015-02-20,01:00:00,163,124,190,0,253,0.9,1.3,22,40,74,82,65,71,26,56,0
2015-02-20,02:00:00,155,118,183,0,247,0.9,1.296,29,40,70,82,65,71,25,53,0
2015-02-20,03:00:00,144,110,180,0,253,1,1.296,29,39,63,82,65,71,24,52,0
2015-02-20,04:00:00,156,119,178,0,263,1.1,1.3,27,38,55,82,64,71,14,50,0
2015-02-20,05:00:00,122,92,170,0,258,0.8,1.254,20,36,58,82,64,71,8,47,0
2015-02-20,06:00:00,119,90,159,0,242,0.9,1.2,28,35,45,82,62,71,5,44,0
2015-02-20,07:00:00,137,104,150,0,223,1.2,1.158,28,34,34,82,59,71,5,41,0
2015-02-20,08:00:00,138,105,142,0,204,1.3,1.125,42,33,26,82,53,71,6,37,0
2015-02-20,09:00:00,139,106,134,0,177,1.1,1.083,33,32,40,82,49,71,9,34,0
2015-02-20,10:00:00,130,99,127,0,125,1.3,1.058,36,32,34,82,44,71,14,30,0
2015-02-20,11:00:00,135,103,120,0,125,1.3,1.038,36,31,28,82,40,71,13,26,0
2015-02-20,12:00:00,145,111,114,0,125,1.5,1.029,39,31,25,82,36,71,16,23,0
2015-02-20,13:00:00,155,118,112,0,125,1.6,1.042,45,31,18,82,31,71,14,20,0
2015-02-20,14:00:00,160,122,112,0,125,1.7,1.075,46,32,15,82,28,71,13,19,0
2015-02-20,15:00:00,176,133,113,0,125,1.7,1.113,45,33,14,82,25,71,15,17,0
2015-02-20,16:00:00,195,146,115,0,125,1.8,1.15,46,33,10,74,23,71,12,16,0
2015-02-20,17:00:00,202,152,117,0,0,1.8,1.188,49,34,7,74,19,71,9,15,0
2015-02-20,18:00:00,216,166,119,0,0,1.9,1.221,52,35,5,74,15,71,8,15,0
2015-02-20,19:00:00,222,172,121,0,0,2,1.267,53,36,5,74,12,71,9,14,0
2015-02-20,20:00:00,231,181,123,0,0,2.1,1.313,54,37,5,74,10,71,12,14,0
2015-02-20,21:00:00,251,201,126,0,0,1.9,1.354,56,38,5,74,8,68,16,14,0
2015-02-20,22:00:00,263,213,130,0,0,1.9,1.396,60,39,4,74,7,66,15,14,0
2015-02-20,23:00:00,266,216,134,0,0,2.1,1.446,56,40,4,74,6,65,10,13,0
2015-02-21,00:00:00,272,222,138,0,0,2.1,1.496,58,41,5,74,5,65,12,13,0
2015-02-21,01:00:00,229,179,141,0,0,1.5,1.521,47,42,21,70,7,65,18,13,0
2015-02-21,03:00:00,222,172,144,0,0,1.3,1.561,31,43,33,58,11,64,26,12,0
2015-02-21,04:00:00,238,188,147,0,0,1.4,1.574,28,43,34,58,15,64,30,13,0
2015-02-21,05:00:00,232,182,151,0,0,1.4,1.6,27,43,36,45,20,62,30,14,0
2015-02-21,06:00:00,226,176,155,0,0,1.6,1.63,29,43,31,40,23,59,25,15,0
2015-02-21,07:00:00,220,170,158,0,0,1.6,1.648,32,43,27,40,27,53,24,15,0
2015-02-21,08:00:00,239,189,162,0,0,1.8,1.67,37,43,22,40,29,49,23,16,0
2015-02-21,09:00:00,228,178,165,0,0,1.8,1.7,32,43,25,36,30,44,21,17,0
2015-02-21,10:00:00,256,206,169,0,0,2,1.73,41,43,20,36,28,40,20,17,0
2015-02-21,11:00:00,278,228,175,0,0,2.2,1.77,42,44,21,36,27,36,22,17,0
2015-02-21,12:00:00,307,257,181,0,0,2.2,1.8,42,44,23,36,26,31,24,18,0
2015-02-21,13:00:00,330,280,188,0,0,2.3,1.83,42,44,24,36,24,30,25,18,0
2015-02-21,14:00:00,363,313,197,0,0,2.3,1.857,41,43,27,36,24,30,26,19,0
2015-02-21,15:00:00,398,348,206,0,0,2.3,1.883,42,43,26,36,24,30,27,19,0
2015-02-21,16:00:00,250,200,208,0,0,1.1,1.852,26,42,53,53,27,30,25,20,0
2015-02-21,17:00:00,169,50,204,288,288,0.2,1.783,12,41,69,69,33,33,4,20,0
2015-02-21,18:00:00,339,41,198,451,370,0.2,1.709,11,39,71,71,39,39,2,19,0
2015-02-21,19:00:00,195,27,192,340,360,0.2,1.63,13,37,72,72,46,46,2,19,0
2015-02-21,20:00:00,185,22,185,319,350,0.2,1.548,11,35,75,75,52,52,2,19,0
2015-02-21,21:00:00,278,29,178,404,360,0.2,1.474,10,33,74,75,58,58,2,18,0
2015-02-21,22:00:00,292,32,170,414,369,0.2,1.4,8,31,73,75,64,64,2,17,0
2015-02-21,23:00:00,411,27,162,511,390,0.2,1.317,7,29,70,75,70,70,2,17,0
2015-02-22,00:00:00,500,45,154,635,420,0.2,1.235,5,27,70,75,72,72,2,17,0
2015-02-22,01:00:00,473,50,148,573,437,0.2,1.178,4,25,70,75,72,72,2,16,0
2015-02-22,03:00:00,500,102,143,717,485,0.2,1.092,4,23,68,75,71,72,2,14,0
2015-02-22,04:00:00,500,105,139,649,499,0.2,1.042,4,22,67,75,70,72,2,13,0
2015-02-22,05:00:00,421,102,136,521,501,0.2,0.992,5,21,67,75,69,72,2,12,0
2015-02-22,06:00:00,315,83,132,432,496,0.2,0.933,7,20,65,75,68,72,2,11,0
2015-02-22,07:00:00,197,69,128,343,486,0.2,0.875,11,19,61,75,67,72,2,10,0
2015-02-22,08:00:00,161,50,122,272,472,0.3,0.812,14,18,58,75,66,72,2,9,0
2015-02-22,09:00:00,131,35,116,212,457,0.3,0.75,16,18,57,75,64,72,3,9,0
2015-02-22,10:00:00,113,33,109,175,441,0.3,0.679,12,16,60,75,63,72,4,8,0
2015-02-22,11:00:00,95,19,100,140,425,0.3,0.6,12,15,62,75,62,72,6,7,0
2015-02-22,12:00:00,79,25,90,107,410,0.3,0.521,12,14,65,75,62,72,6,7,0
2015-02-22,13:00:00,72,18,80,94,395,0.3,0.438,10,13,68,75,62,72,6,6,0
2015-02-22,14:00:00,70,18,67,90,381,0.3,0.354,13,11,67,75,62,72,5,5,0
2015-02-22,15:00:00,65,10,53,79,368,0.3,0.271,13,10,68,75,63,72,4,4,0
2015-02-22,16:00:00,63,17,46,75,355,0.3,0.237,14,10,67,75,64,72,4,3,0
2015-02-22,17:00:00,62,18,44,74,346,0.3,0.242,16,10,66,75,65,72,4,3,0
2015-02-22,18:00:00,59,28,44,68,330,0.3,0.246,19,10,61,75,66,72,4,3,0
2015-02-22,19:00:00,61,23,44,72,319,0.3,0.25,31,11,48,75,64,72,5,3,0
2015-02-22,20:00:00,63,28,44,75,309,0.4,0.258,35,12,43,74,61,72,5,3,0
2015-02-22,21:00:00,64,29,44,78,296,0.5,0.271,58,14,19,73,55,72,7,4,0
2015-02-22,22:00:00,70,30,44,90,282,0.7,0.292,64,16,13,70,48,72,9,4,0
2015-02-22,23:00:00,70,36,44,90,265,0.6,0.308,60,18,15,70,42,72,14,4,0
2015-02-23,00:00:00,63,28,43,75,241,0.6,0.325,36,20,35,70,38,72,17,5,0
2015-02-23,01:00:00,59,26,42,67,220,0.4,0.333,29,21,39,70,34,72,12,5,0
2015-02-23,02:00:00,59,19,40,68,194,0.4,0.342,19,21,45,68,32,71,4,5,0
2015-02-23,03:00:00,56,20,36,62,167,0.4,0.35,20,22,45,68,32,70,4,6,0
2015-02-23,04:00:00,59,15,32,67,143,0.4,0.358,26,23,36,68,31,69,6,6,0
2015-02-23,06:00:00,53,18,26,55,108,0.5,0.383,24,24,38,68,37,67,17,7,0
2015-02-23,07:00:00,51,17,24,51,96,0.6,0.4,36,25,25,68,38,66,12,7,0
2015-02-23,08:00:00,53,27,23,55,87,0.7,0.417,41,26,22,68,36,66,17,8,0
2015-02-23,09:00:00,54,28,23,57,80,0.7,0.433,46,28,24,68,35,66,22,9,0
2015-02-23,10:00:00,55,30,23,60,76,0.7,0.45,41,29,30,68,33,66,25,10,0
2015-02-23,11:00:00,57,33,23,63,72,0.7,0.467,31,30,40,68,32,66,27,10,0
2015-02-23,12:00:00,61,40,24,72,71,0.7,0.483,32,31,47,68,34,66,27,11,0
2015-02-23,13:00:00,67,48,25,82,70,0.7,0.5,34,32,53,68,35,66,20,12,0
2015-02-23,14:00:00,78,36,26,105,71,0.6,0.512,35,32,62,68,38,66,16,12,0
2015-02-23,15:00:00,74,38,27,97,72,0.5,0.521,25,33,75,75,44,66,12,13,0
2015-02-23,16:00:00,83,48,29,115,73,0.7,0.537,27,34,77,77,51,66,15,13,0
2015-02-23,17:00:00,84,55,30,118,75,0.8,0.558,34,34,71,77,57,66,14,14,0
2015-02-23,19:00:00,88,65,33,121,79,1,0.604,44,36,56,77,63,63,18,15,0
2015-02-23,20:00:00,115,87,35,133,82,0.9,0.625,55,36,47,77,63,63,29,16,0
2015-02-23,21:00:00,200,150,40,205,87,1,0.646,65,37,34,77,61,63,54,17,0
2015-02-23,22:00:00,244,194,47,257,94,1,0.658,78,37,23,77,56,63,69,20,0
2015-02-23,23:00:00,223,173,53,224,99,1,0.675,73,38,26,77,50,63,64,22,0
2015-02-24,00:00:00,227,177,59,233,106,1.3,0.704,73,39,21,77,43,63,60,24,0
2015-02-24,01:00:00,255,205,67,240,113,2.2,0.779,88,42,7,77,35,63,44,25,0
2015-02-24,02:00:00,266,216,75,253,121,2.7,0.875,87,45,9,77,28,63,41,27,0
2015-02-24,03:00:00,258,208,83,236,128,3.2,0.992,76,47,11,77,22,63,38,28,0
2015-02-24,04:00:00,244,194,90,216,134,3.3,1.112,72,49,10,77,18,63,32,29,0
2015-02-24,05:00:00,224,174,97,192,140,3.1,1.221,67,51,9,77,14,63,38,30,0
2015-02-24,07:00:00,205,155,108,175,150,2.6,1.396,65,54,8,77,10,63,40,32,0
2015-02-24,08:00:00,180,136,113,167,155,2.5,1.471,66,55,8,77,9,63,38,33,0
2015-02-24,09:00:00,168,127,117,156,159,2.4,1.542,66,56,9,77,9,63,39,34,0
2015-02-24,10:00:00,150,115,121,145,162,2,1.596,62,56,16,77,10,63,50,35,0
2015-02-24,11:00:00,140,107,124,141,166,2.1,1.654,53,57,27,77,12,63,59,36,0
2015-02-24,12:00:00,149,114,127,155,169,2.2,1.717,60,58,31,77,14,63,59,38,0
2015-02-24,13:00:00,172,130,130,167,173,2.1,1.775,55,59,44,77,19,63,63,39,0
2015-02-24,14:00:00,204,154,135,194,176,2.2,1.842,54,60,56,77,25,63,65,41,0
2015-02-24,15:00:00,232,182,141,236,182,2.7,1.933,65,62,56,77,31,63,64,44,0
2015-02-24,17:00:00,250,200,153,259,194,2.3,2.067,60,64,65,66,44,63,50,47,0
2015-02-24,18:00:00,252,202,159,268,200,2,2.121,52,65,68,68,51,63,37,48,0
2015-02-24,19:00:00,257,207,165,264,206,1.8,2.154,49,65,62,68,55,63,27,48,0
2015-02-24,20:00:00,240,190,169,233,210,1.6,2.183,51,65,46,68,57,61,22,48,0
2015-02-24,21:00:00,235,185,171,222,211,1.9,2.221,65,65,27,68,55,57,21,47,0
2015-02-24,22:00:00,255,205,171,253,211,2.1,2.267,80,65,9,68,49,57,20,45,0
2015-02-24,23:00:00,264,214,173,256,212,2.1,2.313,72,65,11,68,44,57,20,43,0
2015-02-25,00:00:00,255,205,174,241,212,1.9,2.338,57,65,22,68,39,57,24,41,0
2015-02-25,01:00:00,254,204,174,244,213,2.1,2.333,67,64,12,68,32,57,25,41,0
2015-02-25,02:00:00,272,222,174,256,213,2.4,2.321,71,63,8,68,25,57,26,40,0
2015-02-25,03:00:00,278,228,175,263,214,2.5,2.292,77,63,6,68,18,57,29,40,0
2015-02-25,04:00:00,276,226,177,253,215,2.4,2.254,76,63,9,68,13,57,26,39,0
2015-02-25,05:00:00,263,213,178,241,217,2.1,2.212,64,63,12,68,11,57,24,39,0
2015-02-25,06:00:00,268,218,180,0,219,2.3,2.196,68,63,10,68,11,57,26,38,0
2015-02-25,07:00:00,36,25,175,0,221,0.4,2.104,20,61,53,68,16,57,10,37,0
2015-02-25,08:00:00,16,10,170,15,214,0.4,2.017,23,60,49,68,20,57,12,36,0
2015-02-25,09:00:00,20,11,165,20,208,0.4,1.933,25,58,48,68,24,57,14,35,0
2015-02-25,10:00:00,19,4,160,19,202,0.3,1.862,17,56,59,68,31,57,11,33,0
2015-02-25,11:00:00,34,21,157,34,197,0.4,1.792,18,55,63,68,38,57,18,31,0
2015-02-25,12:00:00,25,10,152,25,191,0.4,1.717,16,53,74,74,46,57,15,30,0
2015-02-25,13:00:00,28,17,148,28,185,0.4,1.646,16,51,78,78,54,57,13,27,0
2015-02-25,15:00:00,27,16,135,26,168,0.3,1.467,15,47,86,86,68,68,8,23,0
2015-02-25,16:00:00,27,10,128,22,158,0.3,1.379,15,45,85,86,72,72,6,21,0
2015-02-25,17:00:00,25,17,120,24,147,0.3,1.296,16,44,80,86,76,76,5,19,0
2015-02-25,18:00:00,28,15,112,28,136,0.3,1.225,21,42,72,86,78,78,5,17,0
2015-02-25,19:00:00,24,9,104,24,125,0.4,1.167,34,42,58,86,77,78,7,17,0
2015-02-25,20:00:00,25,6,96,25,116,0.4,1.117,43,41,46,86,74,78,7,16,0
2015-02-25,21:00:00,25,17,89,22,107,0.5,1.058,39,40,48,86,70,78,12,16,0
2015-02-25,22:00:00,40,28,82,28,96,0.7,1,43,39,42,86,65,78,14,15,0
2015-02-25,23:00:00,28,18,74,28,86,0.5,0.933,38,37,46,86,60,78,8,15,0
2015-02-26,00:00:00,23,14,66,23,76,0.4,0.871,24,36,56,86,56,78,6,14,0
2015-02-26,01:00:00,25,17,58,19,66,0.4,0.8,20,34,58,86,53,78,12,14,0
2015-02-26,02:00:00,25,17,49,22,55,0.5,0.721,18,32,57,86,51,78,15,13,0
2015-02-26,03:00:00,35,24,41,0,45,0.6,0.642,26,30,49,86,50,78,20,13,0
2015-02-26,04:00:00,19,13,32,0,35,0.6,0.567,30,28,45,86,50,78,12,12,0
2015-02-26,05:00:00,20,14,24,16,24,0.5,0.5,26,26,50,86,50,78,15,12,0
2015-02-26,06:00:00,16,11,15,0,24,0.4,0.421,25,24,50,86,51,78,9,11,0
2015-02-26,07:00:00,18,12,15,0,24,0.4,0.421,31,25,45,86,51,78,9,11,0
2015-02-26,08:00:00,23,15,15,0,24,0.5,0.425,45,26,35,86,49,78,13,11,0
2015-02-26,09:00:00,16,10,15,14,24,0.5,0.429,32,26,50,86,48,78,12,11,0
2015-02-26,10:00:00,20,4,15,15,24,0.4,0.433,22,26,62,86,48,78,10,11,0
2015-02-26,11:00:00,24,15,14,0,23,0.4,0.433,12,26,75,86,52,78,9,11,0
2015-02-26,12:00:00,24,14,15,0,23,0.4,0.433,13,26,76,86,55,78,9,10,0
2015-02-26,13:00:00,25,14,15,0,23,0.4,0.433,14,26,79,86,59,78,7,10,0
2015-02-26,14:00:00,25,17,14,19,22,0.4,0.438,15,26,80,86,63,78,10,10,0
2015-02-26,15:00:00,27,12,14,26,22,0.3,0.438,14,26,84,85,68,78,6,10,0
2015-02-26,16:00:00,27,16,15,18,22,0.3,0.438,14,26,85,85,74,78,7,10,0
2015-02-26,17:00:00,27,14,14,19,22,0.4,0.442,16,26,84,85,78,78,6,10,0
2015-02-26,18:00:00,32,22,15,23,21,0.4,0.446,22,26,76,85,80,80,6,10,0
2015-02-26,19:00:00,28,15,15,28,22,0.4,0.446,32,26,62,85,78,80,8,10,0
2015-02-26,20:00:00,33,22,16,33,22,0.5,0.45,51,26,41,85,74,80,9,10,0
2015-02-26,21:00:00,39,19,16,39,23,0.5,0.45,40,26,48,85,70,80,12,10,0
2015-02-26,22:00:00,48,23,16,48,24,0.8,0.454,50,26,35,85,64,80,14,10,0
2015-02-26,23:00:00,38,26,16,38,25,0.8,0.467,43,26,39,85,59,80,12,10,0
2015-02-27,00:00:00,25,14,16,25,25,0.5,0.471,27,27,53,85,55,80,12,11,0
2015-02-27,01:00:00,24,10,16,24,25,0.4,0.471,26,27,54,85,51,80,9,10,0
2015-02-27,02:00:00,17,6,15,17,25,0.4,0.467,26,27,54,85,48,80,8,10,0
2015-02-27,03:00:00,18,8,14,12,24,0.3,0.454,22,27,56,85,48,80,6,10,0
2015-02-27,04:00:00,17,3,14,11,24,0.3,0.442,20,27,54,85,49,80,7,9,0
2015-02-27,05:00:00,18,3,14,11,23,0.3,0.433,17,26,56,85,50,80,6,9,0
2015-02-27,06:00:00,18,7,13,9,23,0.3,0.429,18,26,56,85,53,80,7,9,0
2015-02-27,07:00:00,15,10,13,12,22,0.4,0.429,29,26,46,85,54,80,8,9,0
2015-02-27,08:00:00,21,9,13,17,22,0.6,0.433,42,26,34,85,51,80,10,9,0
2015-02-27,09:00:00,23,16,13,20,22,0.7,0.442,39,26,39,85,49,80,14,9,0
2015-02-27,10:00:00,28,19,14,19,22,0.7,0.454,36,27,42,85,48,80,10,9,0
2015-02-27,11:00:00,35,24,14,29,23,0.7,0.467,38,28,42,85,46,80,14,9,0
2015-02-27,12:00:00,41,22,15,41,23,1,0.492,38,29,44,85,45,80,36,10,0
2015-02-27,13:00:00,40,28,15,39,24,0.9,0.512,36,30,46,85,44,80,28,11,0
2015-02-27,14:00:00,46,32,16,43,25,1,0.538,37,31,44,85,42,80,29,12,0
2015-02-27,15:00:00,55,35,17,59,26,1,0.567,33,31,50,85,43,80,26,13,0
2015-02-27,16:00:00,62,44,18,49,28,0.9,0.592,35,32,48,84,44,80,25,13,0
2015-02-27,17:00:00,60,43,19,63,30,0.9,0.612,39,33,44,76,45,80,24,14,0
2015-02-27,18:00:00,62,44,20,56,31,0.9,0.633,39,34,42,62,45,78,22,15,0
2015-02-27,19:00:00,72,52,22,56,32,0.9,0.654,42,34,39,56,45,74,22,15,0
2015-02-27,20:00:00,63,45,23,61,33,0.9,0.671,54,34,24,56,42,70,24,16,0
2015-02-27,21:00:00,52,36,23,44,33,0.9,0.688,51,35,24,56,39,64,25,17,0
2015-02-27,22:00:00,52,36,24,51,34,0.9,0.692,54,35,21,56,36,59,23,17,0
2015-02-27,23:00:00,67,48,25,69,35,1,0.7,45,35,28,56,34,55,19,17,0
2015-02-28,00:00:00,62,44,26,70,37,0.9,0.717,31,35,36,56,32,54,11,17,0
2015-02-28,01:00:00,65,47,28,0,37,0.8,0.733,31,36,33,56,31,54,7,17,0
2015-02-28,02:00:00,54,38,29,0,38,0.7,0.746,21,35,42,56,31,54,7,17,0
2015-02-28,03:00:00,65,47,31,0,39,0.6,0.758,20,35,41,56,31,54,6,17,0
2015-02-28,04:00:00,59,42,32,0,41,0.7,0.775,21,35,38,56,33,54,6,17,0
2015-02-28,05:00:00,63,45,34,0,42,0.7,0.792,23,36,35,56,34,54,6,17,0
2015-02-28,06:00:00,75,55,36,0,44,0.8,0.813,24,36,30,50,35,54,6,17,0
2015-02-28,07:00:00,97,72,38,0,46,0.8,0.829,31,36,18,50,34,51,5,17,0
2015-02-28,08:00:00,114,86,42,0,48,0.9,0.842,43,36,8,50,31,49,5,17,0
2015-02-28,09:00:00,132,100,45,0,50,1.1,0.858,45,36,7,50,27,48,7,16,0
2015-02-28,10:00:00,139,106,49,0,52,1.3,0.883,42,36,8,50,23,46,8,16,0
2015-02-28,11:00:00,188,141,54,0,54,1.5,0.917,42,37,13,50,20,45,15,16,0
2015-02-28,12:00:00,92,0,0,134,61,1.6,0.942,41,37,19,50,17,45,20,16,0
2015-02-28,13:00:00,169,128,59,158,70,1.7,0.975,44,37,26,50,16,45,23,15,0
2015-02-28,14:00:00,280,230,68,0,73,1.7,1.004,47,37,27,50,16,45,22,15,0
2015-02-28,15:00:00,285,235,77,0,74,1.7,1.033,48,38,27,48,17,45,24,15,0
2015-02-28,16:00:00,265,215,84,0,76,1.6,1.063,48,39,34,44,20,45,22,15,0
2015-02-28,17:00:00,265,215,92,0,78,1.6,1.092,58,39,28,42,23,45,17,15,0
2015-02-28,18:00:00,266,216,99,0,80,1.6,1.121,66,41,23,42,25,45,14,14,0
2015-02-28,19:00:00,277,227,107,0,84,1.8,1.158,78,42,8,42,24,42,13,14,0
2015-02-28,20:00:00,279,229,115,0,88,1.9,1.2,84,43,6,42,22,39,14,14,0
2015-02-28,21:00:00,280,230,123,0,96,2,1.246,77,44,7,42,20,36,16,13,0
2015-02-28,22:00:00,256,206,131,219,130,2,1.292,76,45,6,42,17,35,18,13,0
2015-02-28,23:00:00,195,146,135,229,162,1.4,1.308,72,46,12,42,16,35,17,13,0
2015-03-01,00:00:00,147,67,136,243,197,0.7,1.3,35,47,41,42,16,35,6,13,0
2015-03-01,01:00:00,165,115,139,279,210,1.7,1.338,74,48,9,42,14,35,13,13,0
2015-03-01,02:00:00,93,69,140,127,198,1,1.35,55,50,21,41,14,35,5,13,0
2015-03-01,03:00:00,69,24,139,87,184,0.5,1.346,39,51,33,41,17,35,6,13,0
2015-03-01,04:00:00,30,16,138,30,167,0.4,1.333,29,51,47,47,22,35,6,13,0
2015-03-01,05:00:00,37,17,137,37,154,0.5,1.325,39,52,34,47,25,35,5,13,0
2015-03-01,06:00:00,33,11,135,33,143,0.6,1.317,54,53,22,47,27,34,5,13,0
2015-03-01,07:00:00,60,25,133,69,137,1.1,1.329,75,55,5,47,26,31,11,13,0
2015-03-01,08:00:00,80,59,132,96,134,1.3,1.346,74,56,6,47,22,27,16,13,0
2015-03-01,09:00:00,99,74,130,131,134,1.3,1.354,65,57,18,47,23,27,23,14,0
2015-03-01,10:00:00,100,75,129,127,133,1.3,1.354,61,58,28,47,24,27,21,15,0
2015-03-01,11:00:00,88,65,126,99,131,1.1,1.338,49,58,46,47,26,27,19,15,0
2015-03-01,12:00:00,73,53,123,73,127,1,1.313,40,58,60,60,27,27,18,15,0
2015-03-01,13:00:00,38,26,119,0,125,0.5,1.263,24,57,74,74,32,32,7,14,0
2015-03-01,14:00:00,49,34,110,0,125,0.4,1.208,22,56,82,82,40,40,9,14,0
2015-03-01,15:00:00,48,33,102,0,125,0.4,1.154,23,55,85,85,50,50,8,13,0
2015-03-01,16:00:00,28,19,94,24,119,0.4,1.104,23,54,84,85,60,60,7,12,0
2015-03-01,17:00:00,32,22,86,24,113,0.4,1.054,24,52,81,85,68,68,7,12,0
2015-03-01,18:00:00,39,13,77,39,109,0.4,1.004,29,51,75,85,73,73,8,12,0
2015-03-01,19:00:00,57,27,69,64,107,0.5,0.95,44,49,62,85,75,75,12,12,0
2015-03-01,20:00:00,60,43,61,70,105,0.7,0.9,74,49,32,85,72,75,16,12,0
2015-03-01,21:00:00,70,51,54,71,103,0.8,0.85,61,48,41,85,68,75,20,12,0
2015-03-01,22:00:00,77,56,48,72,96,0.9,0.804,84,49,20,85,60,75,26,12,0
2015-03-01,23:00:00,77,56,44,70,89,1,0.788,78,49,23,85,52,75,37,13,0
2015-03-02,00:00:00,97,72,44,88,81,1.3,0.812,89,51,11,85,43,75,42,14,0
2015-03-02,01:00:00,104,78,42,80,72,1.4,0.8,92,52,7,85,34,75,42,16,0
2015-03-02,03:00:00,104,78,45,82,70,1.6,0.871,85,55,6,85,18,75,25,18,0
2015-03-02,04:00:00,107,80,48,82,72,2.2,0.946,86,58,6,85,15,75,24,18,0
2015-03-02,05:00:00,124,94,51,103,75,3.4,1.067,95,60,9,85,11,75,36,20,0
2015-03-02,06:00:00,158,120,56,124,80,3.9,1.204,93,62,11,85,10,75,42,21,0
2015-03-02,07:00:00,183,138,60,138,83,4.2,1.333,85,62,12,85,8,75,43,23,0
2015-03-02,08:00:00,188,141,64,150,86,3.8,1.438,85,62,11,85,8,75,42,24,0
2015-03-02,09:00:00,193,145,67,156,87,3.4,1.525,96,64,12,85,9,75,54,25,0
2015-03-02,10:00:00,200,150,70,160,88,3.1,1.6,101,65,16,85,10,75,63,27,0
2015-03-02,11:00:00,208,158,74,0,88,2.8,1.671,111,68,19,85,12,75,63,28,0
2015-03-02,12:00:00,183,138,77,0,89,2.2,1.721,103,71,29,85,15,75,57,30,0
2015-03-02,13:00:00,117,88,80,0,89,1.1,1.746,54,72,56,85,21,75,33,31,0
2015-03-02,14:00:00,67,48,80,82,88,0.5,1.75,25,72,75,85,29,75,19,32,0
2015-03-02,15:00:00,59,30,80,68,87,0.3,1.746,22,72,78,84,37,75,11,32,0
2015-03-02,16:00:00,54,32,81,58,89,0.3,1.742,20,72,79,81,46,75,6,32,0
2015-03-02,17:00:00,61,30,81,71,91,0.3,1.737,23,72,74,79,53,75,8,32,0
2015-03-02,18:00:00,62,34,82,73,93,0.3,1.733,26,72,64,79,59,75,5,32,0
2015-03-02,19:00:00,62,25,82,74,93,0.3,1.725,29,71,56,79,64,72,3,31,0
2015-03-02,20:00:00,42,16,81,42,92,0.3,1.708,28,69,56,79,67,68,4,31,0
2015-03-02,21:00:00,35,9,79,35,90,0.3,1.687,22,68,62,79,68,68,4,30,0
2015-03-02,22:00:00,20,6,77,18,88,0.3,1.662,20,65,64,79,67,68,4,29,0
2015-03-02,23:00:00,22,8,75,0,89,0.3,1.633,17,62,69,79,66,68,4,28,0
2015-03-03,00:00:00,22,10,72,0,89,0.3,1.592,14,59,70,79,64,68,3,26,0
2015-03-03,01:00:00,22,7,69,7,85,0.3,1.546,12,56,70,79,64,68,3,25,0
2015-03-03,02:00:00,45,6,66,45,83,0.2,1.487,11,53,70,79,65,68,3,23,0
2015-03-03,03:00:00,22,7,63,19,79,0.3,1.433,11,50,69,79,66,68,2,22,0
2015-03-03,04:00:00,23,8,60,20,76,0.2,1.35,8,46,73,79,68,68,2,21,0
2015-03-03,05:00:00,24,6,57,0,74,0.2,1.217,6,43,75,79,70,70,2,20,0
2015-03-03,06:00:00,24,6,52,24,69,0.2,1.063,9,39,72,79,71,71,5,18,0
2015-03-03,07:00:00,41,3,46,41,63,0.2,0.896,13,36,67,79,71,71,4,17,0
2015-03-03,08:00:00,75,5,41,100,61,0.2,0.746,11,33,67,79,70,71,2,15,0
2015-03-03,09:00:00,75,8,35,99,58,0.3,0.617,11,29,65,79,70,71,2,13,0
2015-03-03,10:00:00,42,0,0,42,51,0.3,0.5,9,26,65,79,69,71,2,10,0
2015-03-03,11:00:00,25,5,23,25,50,0.3,0.396,7,21,68,79,69,71,2,8,0
2015-03-03,12:00:00,33,6,18,33,49,0.3,0.317,7,17,70,79,69,71,2,6,0
2015-03-03,13:00:00,23,9,14,20,47,0.3,0.283,8,15,71,79,68,71,2,4,0
2015-03-03,14:00:00,23,7,12,16,44,0.3,0.275,10,15,71,79,68,71,2,4,0
2015-03-03,15:00:00,23,11,11,20,42,0.3,0.275,9,14,72,79,69,71,2,3,0
2015-03-03,16:00:00,25,6,10,25,40,0.3,0.275,9,14,72,75,69,71,2,3,0
2015-03-03,17:00:00,55,4,9,60,40,0.3,0.275,10,13,69,75,70,71,2,3,0
2015-03-03,18:00:00,75,12,8,99,41,0.3,0.275,14,13,63,75,70,71,2,3,0
2015-03-03,19:00:00,73,11,8,96,42,0.4,0.279,16,12,59,75,68,71,2,3,0
2015-03-03,20:00:00,72,10,7,93,45,0.4,0.283,20,12,55,75,66,71,4,3,0
2015-03-03,21:00:00,60,16,8,69,46,0.4,0.288,18,12,56,75,65,71,5,3,0
2015-03-03,22:00:00,50,12,8,50,48,0.3,0.288,15,11,59,75,63,71,4,3,0
2015-03-03,23:00:00,38,4,8,38,47,0.3,0.288,15,11,58,75,61,71,4,3,0
2015-03-04,00:00:00,29,10,8,29,47,0.3,0.287,11,11,61,75,60,71,2,3,0
2015-03-04,01:00:00,35,17,8,35,48,0.3,0.287,13,11,58,75,59,71,5,3,0
2015-03-04,03:00:00,19,12,9,19,47,0.4,0.3,24,12,46,75,56,71,4,3,0
2015-03-04,04:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-03-04,05:00:00,20,12,9,20,47,0.6,0.322,36,13,34,72,53,71,12,3,0
2015-03-04,06:00:00,23,13,9,23,47,0.6,0.339,37,15,32,72,49,71,19,4,0
2015-03-04,07:00:00,26,18,10,21,46,0.5,0.352,48,16,22,72,44,70,18,5,0
2015-03-04,08:00:00,25,14,10,25,43,0.6,0.37,49,18,23,72,39,70,27,6,0
2015-03-04,09:00:00,29,20,11,25,39,0.7,0.387,40,19,32,72,35,70,37,7,0
2015-03-04,10:00:00,26,16,11,26,39,0.7,0.404,34,20,40,72,33,70,32,9,0
2015-03-04,11:00:00,19,13,12,15,38,0.7,0.422,31,21,46,72,33,70,19,9,0
2015-03-04,12:00:00,19,3,11,5,37,0.5,0.43,24,22,60,72,36,70,6,9,0
2015-03-04,13:00:00,22,11,11,0,38,0.4,0.435,16,22,69,72,40,70,4,10,0
2015-03-04,14:00:00,22,10,12,16,38,0.5,0.443,23,23,68,72,45,70,4,10,0
2015-03-04,15:00:00,30,21,12,27,38,0.5,0.452,22,23,76,76,52,70,7,10,0
2015-03-04,16:00:00,30,21,13,27,38,0.5,0.461,19,24,83,83,59,70,7,10,0
2015-03-04,17:00:00,38,26,14,33,37,0.5,0.47,20,24,86,86,66,70,7,10,0
2015-03-04,18:00:00,43,30,14,38,34,0.5,0.478,26,25,76,86,70,70,7,10,0
2015-03-04,19:00:00,50,25,15,50,32,0.6,0.487,35,26,64,86,73,73,9,11,0
2015-03-04,20:00:00,58,37,16,66,31,0.7,0.5,47,27,54,86,72,73,13,11,0
2015-03-04,21:00:00,60,43,17,64,31,0.8,0.517,60,29,43,86,69,73,15,12,0
2015-03-04,22:00:00,67,48,19,71,32,0.9,0.543,66,31,34,86,64,73,18,12,0
2015-03-04,23:00:00,75,55,21,72,33,0.9,0.57,69,33,30,86,59,73,25,13,0
2015-03-05,00:00:00,94,70,24,83,36,1.1,0.604,66,36,31,86,52,73,31,14,0
2015-03-05,01:00:00,119,90,27,101,39,1,0.635,51,37,40,86,46,73,30,15,0
2015-03-05,02:00:00,137,104,31,104,42,1,0.661,50,39,36,86,42,73,26,16,0
2015-03-05,03:00:00,152,116,35,119,47,1.2,0.696,57,40,28,86,37,73,34,18,0
2015-03-05,04:00:00,172,130,39,0,47,1.4,0.725,72,42,10,86,32,73,38,19,0
2015-03-05,05:00:00,169,128,44,0,48,1.8,0.775,79,43,10,86,27,73,45,20,0
2015-03-05,06:00:00,152,116,49,0,49,2.2,0.842,83,45,8,86,24,73,41,21,0
2015-03-05,07:00:00,173,131,53,134,55,2.5,0.925,82,47,9,86,22,73,36,22,0
2015-03-05,08:00:00,170,129,58,0,57,3.2,1.033,85,48,11,86,19,73,40,22,0
2015-03-05,09:00:00,189,142,63,144,63,3.5,1.15,92,50,12,86,16,73,38,22,0
2015-03-05,10:00:00,193,145,68,147,69,3.3,1.258,98,53,14,86,13,73,44,23,0
2015-03-05,11:00:00,219,169,75,0,72,3.1,1.358,101,56,20,86,12,73,0,0,0
2015-03-05,12:00:00,130,99,79,0,76,0,0,57,57,47,86,16,73,0,0,0
2015-03-05,13:00:00,123,93,82,98,77,0,0,40,58,66,86,23,73,46,26,0
2015-03-05,14:00:00,97,72,85,81,81,0.9,1.459,35,59,0,0,0,73,40,27,0
2015-03-05,15:00:00,87,64,87,84,84,0.8,1.473,36,59,0,0,0,73,44,29,0
2015-03-05,16:00:00,90,67,89,85,87,0.8,1.486,0,0,76,86,39,73,54,31,0
2015-03-05,17:00:00,94,70,91,89,91,0.7,1.495,0,0,68,76,48,73,46,33,0
2015-03-05,18:00:00,100,75,92,97,94,0.8,1.509,58,64,57,76,56,73,52,35,0
2015-03-05,19:00:00,93,69,94,97,96,0.9,1.523,71,66,41,76,59,72,59,37,0
2015-03-05,20:00:00,125,95,97,122,100,1,1.536,78,68,35,76,57,69,68,40,0
2015-03-05,21:00:00,193,145,101,174,106,1,1.545,88,69,23,76,50,64,86,43,0
2015-03-05,22:00:00,230,180,106,213,114,1,1.55,85,70,21,76,46,59,97,46,0
2015-03-05,23:00:00,219,169,111,197,120,1.1,1.559,74,70,27,76,44,59,83,49,0
2015-03-06,00:00:00,166,126,114,143,124,1.1,1.559,55,69,40,76,39,59,59,50,0
2015-03-06,01:00:00,152,116,115,128,125,1.1,1.564,52,69,40,76,36,59,58,52,0
2015-03-06,02:00:00,176,133,116,143,127,1.2,1.573,52,70,35,76,33,59,62,53,0
2015-03-06,03:00:00,234,184,119,210,133,2.5,1.632,87,71,12,76,29,59,58,54,0
2015-03-06,04:00:00,240,190,121,0,133,2.5,1.682,90,72,9,76,26,59,51,55,0
2015-03-06,05:00:00,231,181,123,0,133,2.4,1.709,90,72,9,76,24,59,54,55,0
2015-03-06,06:00:00,227,177,126,0,133,2.8,1.736,87,72,9,76,23,59,49,56,0
2015-03-06,07:00:00,224,174,128,0,132,2.8,1.75,84,73,9,76,20,59,49,56,0
2015-03-06,08:00:00,215,165,129,0,132,2.8,1.732,84,72,9,76,16,59,56,57,0
2015-03-06,09:00:00,222,172,130,180,135,3.5,1.732,94,73,11,76,13,59,62,58,0
2015-03-06,10:00:00,226,176,132,0,134,2.9,1.714,92,72,14,76,10,59,75,59,0
2015-03-06,11:00:00,226,176,132,180,137,2.4,1.682,84,72,25,76,12,59,77,60,0
2015-03-06,12:00:00,243,193,136,202,140,2.2,1.704,92,73,29,76,14,59,73,61,0
2015-03-06,13:00:00,270,220,141,221,147,2.3,1.729,97,76,34,76,18,59,77,62,0
2015-03-06,14:00:00,268,218,147,219,155,2,1.775,94,78,52,76,23,59,70,63,0
2015-03-06,15:00:00,260,210,153,216,162,1.7,1.812,72,80,79,79,32,59,67,64,0
2015-03-06,16:00:00,246,196,159,203,169,1.6,1.846,61,79,89,89,42,59,65,65,0
2015-03-06,17:00:00,252,202,164,217,176,1.7,1.888,66,79,93,93,52,59,75,66,0
2015-03-06,18:00:00,285,235,171,238,183,1.8,1.929,71,79,86,93,61,61,85,67,0
2015-03-06,19:00:00,288,238,178,241,191,2.1,1.979,98,80,54,93,64,64,84,68,0
2015-03-06,20:00:00,304,254,185,262,199,2.6,2.046,145,83,14,93,63,64,84,69,0
2015-03-06,21:00:00,325,275,190,275,205,3,2.129,149,86,10,93,60,64,77,69,0
2015-03-06,22:00:00,341,291,195,0,204,3.1,2.217,149,88,11,93,54,64,79,68,0
2015-03-06,23:00:00,351,301,200,306,211,3.2,2.304,132,91,14,93,46,64,78,68,0
2015-03-07,00:00:00,372,322,208,0,215,3.3,2.396,123,94,15,93,37,64,73,68,0
2015-03-07,01:00:00,357,307,216,0,221,3.4,2.492,120,96,14,93,27,64,61,68,0
2015-03-07,02:00:00,357,307,224,0,226,3.3,2.579,122,99,13,93,18,64,55,68,0
2015-03-07,03:00:00,344,294,228,0,228,3,2.6,120,101,12,93,13,64,57,68,0
2015-03-07,04:00:00,341,291,232,0,228,3.2,2.629,116,102,14,93,13,64,52,68,0
2015-03-07,05:00:00,343,293,237,0,228,3.5,2.675,113,103,14,93,13,64,48,68,0
2015-03-07,06:00:00,336,286,242,0,228,3.7,2.713,112,104,14,93,14,64,51,68,0
2015-03-07,07:00:00,312,262,245,0,228,3,2.721,101,104,12,93,14,64,46,68,0
2015-03-07,08:00:00,291,241,248,0,228,2.8,2.721,96,105,12,93,13,64,43,67,0
2015-03-07,09:00:00,293,243,251,0,232,3.2,2.708,103,105,16,93,13,64,47,67,0
2015-03-07,10:00:00,298,248,254,250,233,3.1,2.717,115,106,22,93,14,64,62,66,0
2015-03-07,11:00:00,293,243,257,0,238,2.5,2.721,98,107,40,93,18,64,58,65,0
2015-03-07,12:00:00,275,225,258,0,241,2.1,2.717,85,107,60,93,24,64,46,64,0
2015-03-07,13:00:00,266,216,258,0,243,2,2.704,84,106,77,93,32,64,47,63,0
2015-03-07,14:00:00,282,232,259,0,245,2,2.704,76,105,88,93,41,64,45,62,0
2015-03-07,15:00:00,257,207,259,0,249,1.8,2.708,64,105,105,105,52,64,38,61,0
2015-03-07,16:00:00,260,210,259,0,256,1.8,2.717,64,105,110,110,65,65,38,60,0
2015-03-07,17:00:00,253,203,259,0,262,1.5,2.708,50,104,127,127,79,79,36,58,0
2015-03-07,19:00:00,254,204,257,0,273,1.5,2.671,69,103,83,127,95,95,41,54,0
2015-03-07,20:00:00,264,214,255,0,277,1.6,2.629,81,100,60,127,95,95,45,53,0
2015-03-07,21:00:00,282,232,253,0,278,1.7,2.575,104,98,31,127,89,95,51,51,0
2015-03-07,22:00:00,291,241,251,0,278,1.9,2.525,109,96,22,127,81,95,52,50,0
2015-03-07,23:00:00,285,235,249,0,250,2,2.475,112,96,12,127,69,95,51,49,0
2015-03-08,00:00:00,283,233,245,0,250,1.9,2.417,99,95,21,127,58,95,48,48,0
2015-03-08,01:00:00,256,206,241,0,250,1.8,2.35,88,93,28,127,46,95,58,48,0
2015-03-08,02:00:00,266,216,237,0,250,2.1,2.3,107,93,11,127,34,95,54,48,0
2015-03-08,03:00:00,282,232,234,0,250,2.5,2.279,107,92,10,127,24,95,51,48,0
2015-03-08,04:00:00,277,227,232,0,250,2.9,2.267,106,92,11,127,18,95,53,48,0
2015-03-08,05:00:00,273,223,229,0,250,3.1,2.25,108,92,10,127,16,95,67,49,0
2015-03-08,06:00:00,268,218,226,0,250,3.1,2.225,108,91,9,127,14,95,62,49,0
2015-03-08,07:00:00,253,203,223,0,250,3,2.225,108,92,8,127,14,95,62,50,0
2015-03-08,08:00:00,262,212,222,0,250,3.1,2.238,107,92,10,127,12,95,60,50,0
2015-03-08,09:00:00,295,245,222,0,250,3.6,2.254,110,92,13,127,10,95,64,51,0
2015-03-08,10:00:00,351,301,225,0,0,3.7,2.279,109,92,18,127,11,95,74,52,0
2015-03-08,11:00:00,294,244,225,0,0,2,2.258,77,91,40,127,15,95,60,52,0
2015-03-08,12:00:00,228,178,223,0,0,1.3,2.225,46,90,65,127,22,95,34,51,0
2015-03-08,13:00:00,52,36,215,0,0,0.4,2.158,19,87,78,127,30,95,5,49,0
2015-03-08,14:00:00,26,9,206,0,0,0.3,2.088,16,84,83,127,39,95,2,48,0
2015-03-08,15:00:00,27,10,198,0,0,0.3,2.025,17,82,85,127,49,95,2,46,0
2015-03-08,16:00:00,28,9,189,17,17,0.3,1.962,14,80,88,127,59,95,3,45,0
2015-03-08,17:00:00,27,12,181,0,17,0.2,1.908,14,79,85,108,68,95,2,43,0
2015-03-08,18:00:00,25,9,173,0,17,0.2,1.854,17,77,78,88,75,95,2,42,0
2015-03-08,19:00:00,22,7,165,0,17,0.3,1.804,22,75,69,88,79,95,2,40,0
2015-03-08,20:00:00,22,15,156,20,19,0.3,1.75,24,73,65,88,79,89,2,38,0
2015-03-08,22:00:00,32,14,138,32,24,0.3,1.625,20,66,66,88,75,79,3,34,0
2015-03-08,23:00:00,89,17,128,127,45,0.3,1.554,15,62,69,88,73,79,2,32,0
2015-03-09,00:00:00,56,15,119,62,48,0.2,1.483,14,58,73,88,71,79,2,30,0
2015-03-09,01:00:00,55,14,111,59,49,0.2,1.417,13,55,71,88,70,79,2,28,0
2015-03-09,02:00:00,51,14,103,51,49,0.2,1.338,11,51,70,88,69,79,2,26,0
2015-03-09,03:00:00,27,12,94,27,47,0.2,1.242,10,47,71,88,69,79,2,24,0
2015-03-09,04:00:00,37,11,85,37,46,0.2,1.129,10,43,64,88,69,79,2,22,0
2015-03-09,05:00:00,34,5,76,34,45,0.2,1.008,5,39,70,88,69,79,2,19,0
2015-03-09,06:00:00,23,3,67,17,42,0.2,0.887,6,34,71,88,70,79,2,16,0
2015-03-09,07:00:00,21,7,59,7,40,0.2,0.771,12,30,65,88,69,79,2,14,0
2015-03-09,08:00:00,19,9,50,17,38,0.2,0.65,17,27,59,88,68,79,2,12,0
2015-03-09,09:00:00,21,6,40,19,37,0.2,0.508,11,23,66,88,67,79,2,9,0
2015-03-09,10:00:00,23,4,28,16,36,0.2,0.362,9,18,71,88,67,79,2,6,0
2015-03-09,11:00:00,23,4,18,12,34,0.2,0.288,8,16,73,88,67,79,2,4,0
2015-03-09,12:00:00,23,6,11,13,33,0.3,0.246,10,14,72,88,68,79,0,0,0
2015-03-09,13:00:00,23,7,9,0,33,0,0,12,14,71,88,68,79,0,0,0
2015-03-09,14:00:00,15,4,9,15,32,0,0,13,14,0,0,0,79,5,2,0
2015-03-09,15:00:00,21,14,9,21,32,0.3,0.236,0,0,0,0,0,79,6,2,0
2015-03-09,16:00:00,23,9,9,16,31,0.2,0.232,0,0,72,85,71,79,5,3,0
2015-03-09,17:00:00,24,9,9,14,31,0.3,0.236,15,13,74,78,72,79,4,3,0
2015-03-09,18:00:00,23,6,9,11,30,0.3,0.241,16,13,71,74,72,79,3,3,0
2015-03-09,19:00:00,19,6,9,10,29,0.3,0.241,25,14,60,74,70,79,2,3,0
2015-03-09,20:00:00,17,3,9,13,29,0.4,0.245,31,14,52,74,67,77,5,3,0
2015-03-09,21:00:00,17,9,9,0,29,0.3,0.245,29,14,53,74,64,75,4,3,0
2015-03-09,22:00:00,18,3,8,10,28,0.3,0.245,24,14,55,74,62,73,4,3,0
2015-03-09,23:00:00,18,7,8,0,23,0.4,0.25,23,15,55,74,62,72,6,3,0
2015-03-10,00:00:00,19,13,8,0,21,0.4,0.259,26,15,51,74,59,72,6,3,0
2015-03-10,01:00:00,16,8,7,0,19,0.4,0.268,25,16,51,74,56,72,4,3,0
2015-03-10,02:00:00,17,10,7,0,17,0.3,0.273,23,16,52,74,54,72,3,3,0
2015-03-10,03:00:00,17,8,7,0,17,0.3,0.277,23,17,52,74,53,72,4,4,0
2015-03-10,04:00:00,16,8,7,0,15,0.4,0.286,24,18,50,74,52,72,6,4,0
2015-03-10,05:00:00,15,10,7,0,14,0.4,0.295,30,19,43,74,51,72,8,4,0
2015-03-10,06:00:00,16,10,8,0,14,0.4,0.305,32,20,40,74,49,72,9,4,0
2015-03-10,07:00:00,28,3,7,23,15,0.5,0.318,56,22,18,74,45,72,8,5,0
2015-03-10,08:00:00,39,25,8,26,16,1.2,0.364,77,25,8,74,39,72,21,5,0
2015-03-10,09:00:00,46,32,9,41,17,1.4,0.418,75,28,14,74,35,72,25,6,0
2015-03-10,10:00:00,53,37,10,0,17,1.1,0.459,66,30,26,74,31,72,17,7,0
2015-03-10,11:00:00,25,17,11,0,18,0.6,0.477,36,31,52,74,31,72,10,8,0
2015-03-10,12:00:00,20,14,11,0,18,0.5,0.486,25,32,64,74,33,72,9,8,0
2015-03-10,13:00:00,22,3,11,8,17,0.4,0.483,24,33,69,74,36,72,8,8,0
2015-03-10,14:00:00,22,10,11,15,17,0.5,0.483,31,33,70,74,40,72,8,8,0
2015-03-10,15:00:00,54,38,12,0,17,0.6,0.496,33,33,80,80,48,72,12,8,0
2015-03-10,16:00:00,60,43,14,0,17,0.6,0.512,33,33,91,91,58,72,15,8,0
2015-03-10,17:00:00,50,35,15,0,17,0.5,0.521,33,34,85,91,67,72,10,9,0
2015-03-10,18:00:00,54,38,16,47,21,0.5,0.529,38,35,74,91,73,73,10,9,0
2015-03-10,19:00:00,55,37,18,60,27,0.6,0.542,46,36,64,91,75,75,8,9,0
2015-03-10,21:00:00,102,76,23,104,43,0.9,0.583,61,39,50,91,70,75,25,11,0
2015-03-10,22:00:00,93,69,25,99,52,0.9,0.608,57,40,49,91,67,75,23,11,0
2015-03-10,23:00:00,100,75,28,87,55,1.1,0.638,77,43,30,91,61,75,25,12,0
2015-03-11,00:00:00,104,78,31,91,58,1.1,0.667,85,45,22,91,52,75,29,13,0
2015-03-11,01:00:00,95,71,34,79,59,1.2,0.7,85,48,19,91,44,75,28,14,0
2015-03-11,02:00:00,99,74,36,80,61,1.3,0.742,102,51,4,91,35,75,20,15,0
2015-03-11,03:00:00,147,112,41,124,65,3.2,0.862,109,54,9,91,28,75,43,16,0
2015-03-11,04:00:00,170,129,46,0,65,2.6,0.954,106,58,11,91,24,75,40,18,0
2015-03-11,05:00:00,155,118,50,119,68,2.2,1.029,99,61,10,91,19,75,33,19,0
2015-03-11,06:00:00,143,109,54,0,68,2.1,1.1,98,63,9,91,14,75,31,20,0
2015-03-11,07:00:00,148,113,59,0,72,3.4,1.221,95,65,10,91,12,75,44,21,0
2015-03-11,08:00:00,72,52,60,0,75,1.3,1.225,74,65,13,91,11,75,29,22,0
2015-03-11,09:00:00,49,34,60,0,77,0.9,1.204,56,64,30,91,12,75,18,21,0
2015-03-11,10:00:00,36,25,60,0,77,0.5,1.179,34,63,54,91,18,75,10,21,0
2015-03-11,11:00:00,20,7,59,0,77,0.4,1.171,27,62,64,91,25,75,8,21,0
2015-03-11,12:00:00,22,14,59,0,77,0.4,1.167,26,62,70,91,32,75,7,21,0
2015-03-11,13:00:00,24,9,59,11,78,0.4,1.167,24,63,74,91,40,75,9,21,0
2015-03-11,14:00:00,26,18,60,0,83,0.3,1.158,22,62,79,91,49,75,7,21,0
2015-03-11,15:00:00,32,22,59,0,83,0.3,1.146,23,62,80,91,58,75,8,21,0
2015-03-11,16:00:00,38,26,58,0,83,0.4,1.138,28,62,77,85,66,75,9,20,0
2015-03-11,17:00:00,28,19,58,0,83,0.4,1.133,36,62,69,80,71,75,8,20,0
2015-03-11,18:00:00,29,20,57,24,81,0.5,1.133,51,62,56,80,71,75,7,20,0
2015-03-11,19:00:00,43,29,57,43,80,0.5,1.129,49,62,59,80,70,72,7,20,0
2015-03-11,20:00:00,50,32,55,50,76,0.6,1.121,70,62,37,80,66,71,8,20,0
2015-03-11,21:00:00,62,44,54,63,73,0.8,1.117,87,63,25,80,60,71,14,19,0
2015-03-12,10:00:00,127,96,55,0,78,2,1.183,80,66,24,80,10,71,46,21,0
2015-03-12,11:00:00,129,98,58,0,78,1.7,1.238,74,68,32,80,13,71,36,22,0
2015-03-12,12:00:00,113,85,61,0,78,1.6,1.288,83,70,37,80,17,71,31,23,0
2015-03-12,13:00:00,107,80,64,0,82,1.3,1.325,66,72,57,80,23,71,26,24,0
2015-03-12,14:00:00,68,49,66,0,82,0.8,1.346,41,73,75,80,32,71,15,24,0
2015-03-12,15:00:00,57,40,66,0,82,0.7,1.362,42,74,74,77,40,71,14,24,0
2015-03-12,16:00:00,69,50,67,0,82,0.7,1.375,48,74,67,75,47,71,15,24,0
2015-03-12,17:00:00,69,50,69,50,80,0.9,1.396,57,75,62,75,54,71,20,25,0
2015-03-12,18:00:00,84,62,70,64,83,1.1,1.421,68,76,54,75,57,70,22,26,0
2015-03-12,19:00:00,88,65,72,85,85,1.2,1.45,75,77,47,75,59,66,24,26,0
2015-03-12,20:00:00,107,80,74,108,89,1.6,1.492,92,78,30,75,58,60,27,27,0
2015-03-12,21:00:00,123,93,76,101,91,1.9,1.537,115,79,12,75,53,59,30,28,0
2015-03-12,22:00:00,105,79,77,0,92,1.7,1.567,114,80,10,75,44,59,26,28,0
2015-03-12,23:00:00,124,94,78,108,93,2,1.6,116,80,9,75,36,59,45,29,0
2015-03-13,00:00:00,155,118,80,154,96,2,1.629,105,81,10,75,29,59,57,30,0
2015-03-13,01:00:00,190,143,82,174,100,2.5,1.679,117,83,8,75,22,59,55,32,0
2015-03-13,02:00:00,180,136,85,0,100,2.3,1.717,116,84,6,75,16,59,58,33,0
2015-03-13,03:00:00,160,122,87,0,101,2,1.742,96,85,6,75,11,59,46,34,0
2015-03-13,04:00:00,147,112,88,0,102,1.8,1.746,85,85,12,75,9,59,35,34,0
2015-03-13,05:00:00,139,106,89,0,104,1.8,1.737,75,84,15,75,10,59,32,35,0
2015-03-13,06:00:00,135,103,90,0,105,1.9,1.721,79,84,12,75,10,59,30,34,0
2015-03-13,07:00:00,137,104,90,0,105,2.1,1.7,90,84,7,75,10,59,35,34,0
2015-03-13,08:00:00,148,113,91,0,105,2.6,1.696,97,85,10,75,10,59,40,34,0
2015-03-13,09:00:00,170,129,92,0,106,2.5,1.696,93,84,19,75,11,59,54,34,0
2015-03-13,10:00:00,89,66,91,0,106,1,1.654,48,83,48,75,16,59,22,33,0
2015-03-13,11:00:00,42,29,88,0,106,0.5,1.604,30,81,62,75,23,59,12,32,0
2015-03-13,12:00:00,38,26,85,0,106,0.5,1.558,27,79,72,75,31,59,10,31,0
2015-03-13,13:00:00,42,29,83,0,106,0.4,1.521,25,77,83,83,39,59,8,31,0
2015-03-13,14:00:00,42,29,82,0,106,0.4,1.504,24,76,91,91,49,59,7,30,0
2015-03-13,15:00:00,38,26,82,0,106,0.3,1.487,19,75,97,97,60,60,4,30,0
2015-03-13,16:00:00,30,20,81,0,106,0.3,1.471,20,74,96,97,71,71,4,29,0
2015-03-13,17:00:00,35,24,80,0,113,0.3,1.446,26,73,92,97,80,80,5,29,0
2015-03-13,18:00:00,35,24,78,0,122,0.4,1.417,37,72,80,97,84,84,7,28,0
2015-03-13,19:00:00,30,16,76,30,112,0.5,1.388,50,71,67,97,85,85,8,27,0
2015-03-13,20:00:00,50,29,74,50,103,0.7,1.35,74,70,41,97,81,85,12,27,0
2015-03-13,21:00:00,53,36,71,45,94,0.8,1.304,106,70,14,97,72,85,12,26,0
2015-03-13,22:00:00,59,42,70,0,94,0.9,1.271,109,69,12,97,62,85,14,26,0
2015-03-13,23:00:00,113,68,69,175,105,1.6,1.254,106,69,12,97,52,85,27,25,0
2015-03-14,00:00:00,122,92,68,149,104,1.8,1.246,101,69,7,97,41,85,35,24,0
2015-03-14,01:00:00,98,73,65,93,90,1.2,1.192,91,68,5,97,30,85,28,23,0
2015-03-14,02:00:00,98,73,62,0,90,1.1,1.142,83,66,6,97,20,85,26,21,0
2015-03-14,03:00:00,85,63,60,0,90,1,1.1,74,65,10,97,13,85,27,21,0
2015-03-14,04:00:00,70,51,57,0,90,0.9,1.063,63,64,16,97,10,85,25,20,0
2015-03-14,05:00:00,72,52,55,0,90,1,1.029,71,64,11,97,10,85,25,20,0
2015-03-14,06:00:00,73,53,53,0,90,1.5,1.012,72,64,8,97,9,85,28,20,0
2015-03-14,07:00:00,80,59,51,0,90,1.6,0.992,74,63,6,97,9,85,30,20,0
2015-03-14,08:00:00,93,69,49,72,88,2.2,0.975,77,62,7,97,9,85,40,20,0
2015-03-14,09:00:00,103,77,47,92,88,2.5,0.975,79,62,8,97,9,85,48,19,0
2015-03-14,10:00:00,112,84,48,98,89,2.7,1.046,77,63,11,97,10,85,55,21,0
2015-03-14,11:00:00,127,96,50,97,90,2.6,1.133,78,65,15,97,10,85,63,23,0
2015-03-14,12:00:00,139,106,54,107,92,2.6,1.221,76,67,23,97,11,85,66,25,0
2015-03-14,13:00:00,149,114,57,117,94,2.5,1.308,82,70,29,97,13,85,68,28,0
2015-03-14,14:00:00,175,132,62,0,94,2.3,1.388,92,72,35,97,17,85,69,30,0
2015-03-14,15:00:00,163,124,66,0,94,1.7,1.446,83,75,51,96,22,85,54,32,0
2015-03-14,16:00:00,149,114,70,0,94,1.4,1.492,75,77,60,92,29,85,60,35,0
2015-03-14,17:00:00,148,113,73,0,94,1.3,1.533,79,80,60,80,36,85,59,37,0
2015-03-14,18:00:00,150,115,77,0,94,1.5,1.579,89,82,51,67,40,85,52,39,0
2015-03-14,19:00:00,163,124,82,133,102,1.9,1.638,109,84,24,60,42,81,48,40,0
2015-03-14,20:00:00,160,122,86,122,108,1.8,1.683,107,86,22,60,42,72,52,42,0
2015-03-14,21:00:00,169,128,89,131,115,1.9,1.729,117,86,16,60,40,62,60,44,0
2015-03-14,22:00:00,168,127,93,0,115,1.7,1.762,110,86,20,60,38,52,61,46,0
2015-03-14,23:00:00,189,142,96,147,113,2.4,1.796,128,87,9,60,33,42,59,47,0
2015-03-15,00:00:00,216,166,99,173,115,2.9,1.842,136,88,10,60,26,42,68,49,0
2015-03-15,01:00:00,205,155,102,0,117,2.7,1.904,131,90,9,60,20,42,57,50,0
2015-03-15,02:00:00,190,143,105,0,117,2.6,1.967,127,92,8,60,15,42,49,51,0
2015-03-15,03:00:00,192,144,109,0,117,2.4,2.025,123,94,7,60,13,42,46,52,0
2015-03-15,04:00:00,183,138,112,0,117,2.5,2.092,119,96,7,60,11,42,38,52,0
2015-03-15,05:00:00,168,127,115,146,120,2.6,2.158,109,98,8,60,10,42,35,53,0
2015-03-15,06:00:00,207,157,120,189,125,3.7,2.25,120,100,10,60,8,42,37,53,0
2015-03-15,07:00:00,222,172,125,182,129,3.8,2.342,116,102,10,60,9,42,35,53,0
2015-03-15,08:00:00,229,179,129,212,139,4.2,2.425,124,104,12,60,9,42,42,53,0
2015-03-15,09:00:00,204,154,132,191,146,3.3,2.458,117,105,13,60,9,42,42,53,0
2015-03-15,10:00:00,105,78,132,160,151,2,2.429,99,106,18,60,11,42,25,52,0
2015-03-15,11:00:00,136,93,132,221,159,2.2,2.412,111,107,23,60,13,42,27,50,0
2015-03-15,12:00:00,135,103,132,163,163,1.6,2.371,94,108,46,60,18,42,28,49,0
2015-03-15,13:00:00,110,83,131,144,165,0.8,2.3,51,107,80,80,26,42,19,47,0
2015-03-15,14:00:00,108,74,128,165,165,0.6,2.229,43,105,94,94,37,42,15,45,0
2015-03-15,15:00:00,106,55,125,162,165,0.6,2.183,39,103,100,100,48,48,14,43,0
2015-03-15,16:00:00,127,88,124,203,167,0.8,2.158,48,102,110,110,60,60,21,41,0
2015-03-15,17:00:00,114,86,123,172,168,0.7,2.133,42,100,115,115,73,73,22,40,0
2015-03-15,18:00:00,125,86,122,200,169,0.7,2.1,44,99,109,115,85,85,20,38,0
2015-03-15,19:00:00,131,90,120,212,173,0.8,2.054,63,97,91,115,93,93,21,37,0
2015-03-15,20:00:00,140,96,119,229,179,0.9,2.017,81,96,66,115,96,96,23,36,0
2015-03-15,21:00:00,150,102,118,250,185,0.9,1.975,88,94,54,115,92,96,28,35,0
2015-03-15,22:00:00,158,120,118,260,189,1.1,1.95,92,94,50,115,87,96,35,34,0
2015-03-15,23:00:00,180,136,118,260,195,1.1,1.896,87,92,49,115,80,96,35,33,0
2015-03-16,00:00:00,182,137,116,255,199,1.2,1.825,80,90,49,115,73,96,34,31,0
2015-03-16,01:00:00,198,148,116,248,201,1.4,1.771,98,88,25,115,62,96,36,30,0
2015-03-16,02:00:00,209,159,117,250,203,1.8,1.738,106,87,9,115,49,96,51,30,0
2015-03-16,03:00:00,192,144,117,218,204,1.9,1.717,107,87,7,115,39,96,56,31,0
2015-03-16,04:00:00,156,119,116,184,203,2.2,1.704,99,86,7,115,31,96,42,31,0
2015-03-16,05:00:00,158,120,116,192,205,2.1,1.683,96,85,6,115,25,96,40,31,0
2015-03-16,06:00:00,173,131,115,194,205,1.8,1.604,95,84,5,115,20,96,43,31,0
2015-03-16,07:00:00,178,134,113,178,205,2.2,1.537,97,83,6,115,14,96,45,32,0
2015-03-16,08:00:00,172,130,111,195,204,2.4,1.463,96,82,8,115,9,96,45,32,0
2015-03-16,09:00:00,198,148,111,220,206,2.3,1.421,98,81,8,115,7,96,49,32,0
2015-03-16,10:00:00,208,158,114,255,210,2.4,1.437,97,81,9,115,7,96,57,34,0
2015-03-16,11:00:00,227,177,118,263,211,2.2,1.438,91,80,13,115,8,96,57,35,0
2015-03-16,12:00:00,243,193,121,264,216,2.2,1.463,94,80,19,115,9,96,62,36,0
2015-03-16,14:00:00,313,263,135,323,229,1.9,1.571,88,84,38,115,16,96,48,39,0
2015-03-16,15:00:00,330,280,144,319,235,1.9,1.625,86,86,45,115,21,96,41,40,0
2015-03-16,16:00:00,347,297,153,311,240,1.8,1.667,84,88,49,115,26,96,33,41,0
2015-03-16,17:00:00,368,318,163,327,246,1.8,1.712,79,89,48,109,32,96,29,41,0
2015-03-16,18:00:00,386,336,173,0,248,1.9,1.762,84,91,40,91,35,96,25,41,0
2015-03-16,19:00:00,370,320,183,0,250,2,1.812,101,92,15,66,36,96,21,41,0
2015-03-16,20:00:00,374,324,192,0,251,2.4,1.875,109,94,7,54,34,92,21,41,0
2015-03-16,21:00:00,362,312,201,313,254,2.5,1.942,105,94,6,50,31,87,22,41,0
2015-03-16,22:00:00,357,307,209,317,257,2.8,2.012,100,95,6,49,27,80,21,40,0
2015-03-16,23:00:00,361,311,216,0,257,2.9,2.087,99,95,6,49,22,73,23,40,0
2015-03-17,00:00:00,369,319,224,0,257,2.9,2.158,97,96,7,49,17,62,21,39,0
2015-03-17,01:00:00,374,324,231,0,257,2.9,2.221,103,96,7,49,12,49,20,39,0
2015-03-17,02:00:00,375,325,238,0,258,2.5,2.25,94,96,6,49,8,39,18,37,0
2015-03-17,03:00:00,375,325,245,0,260,2.2,2.262,87,95,7,49,6,36,15,36,0
2015-03-17,04:00:00,366,316,254,0,265,2,2.254,83,94,5,49,6,36,13,34,0
2015-03-17,05:00:00,367,317,262,0,270,2.2,2.258,84,94,6,49,6,36,11,33,0
2015-03-17,06:00:00,358,308,269,0,276,2.3,2.279,84,93,6,49,6,36,9,32,0
2015-03-17,07:00:00,354,304,276,0,284,2.2,2.279,82,92,6,49,6,36,8,30,0
2015-03-17,08:00:00,356,306,284,0,293,2.2,2.271,79,92,7,49,6,36,9,29,0
2015-03-17,09:00:00,375,325,291,0,300,2.4,2.275,90,91,11,49,7,36,17,27,0
2015-03-17,10:00:00,402,352,299,0,305,2.2,2.267,88,91,28,49,10,36,24,26,0
2015-03-17,11:00:00,367,317,305,0,310,2.6,2.283,99,91,45,49,14,36,37,25,0
2015-03-17,12:00:00,224,174,304,0,317,2,2.275,59,90,77,77,23,36,32,24,0
2015-03-17,13:00:00,211,161,302,0,318,2.1,2.275,58,88,92,92,34,36,32,23,0
2015-03-17,14:00:00,195,146,297,0,317,1.7,2.267,49,87,109,109,47,47,26,22,0
2015-03-17,15:00:00,147,112,290,0,317,1.3,2.242,46,85,112,112,60,60,23,21,0
2015-03-17,16:00:00,185,139,283,0,319,1.7,2.238,61,84,114,114,74,74,30,21,0
2015-03-17,17:00:00,207,157,277,0,315,1.8,2.238,59,83,125,125,88,88,28,21,0
2015-03-17,18:00:00,205,155,269,0,315,1.5,2.221,61,82,120,125,99,99,22,21,0
2015-03-17,19:00:00,198,148,262,214,281,1.6,2.204,66,81,108,125,107,107,29,21,0
2015-03-17,20:00:00,185,139,254,244,272,1.5,2.167,66,79,93,125,109,109,31,22,0
2015-03-17,21:00:00,126,94,245,202,244,1.3,2.117,64,77,72,125,107,109,28,22,0
2015-03-17,22:00:00,69,50,234,69,182,0.8,2.033,51,75,59,125,100,109,17,22,0
2015-03-17,23:00:00,54,38,223,0,182,0.6,1.937,49,73,56,125,93,109,13,21,0
2015-03-18,00:00:00,53,37,211,40,154,0.7,1.846,48,71,52,125,86,109,14,21,0
2015-03-18,01:00:00,43,30,199,0,154,0.8,1.758,40,69,59,125,77,109,16,21,0
2015-03-18,02:00:00,42,29,187,0,154,0.6,1.679,32,66,68,125,71,109,15,21,0
2015-03-18,03:00:00,42,29,174,0,154,0.5,1.608,33,64,67,125,66,109,13,21,0
2015-03-18,04:00:00,48,33,162,0,154,0.5,1.546,34,62,65,125,62,109,11,21,0
2015-03-18,05:00:00,39,27,150,0,154,0.5,1.475,36,60,64,125,61,109,12,21,0
2015-03-18,06:00:00,42,29,139,0,154,0.6,1.404,38,58,63,125,62,109,12,21,0
2015-03-18,07:00:00,32,22,127,26,132,0.7,1.342,53,57,51,125,61,109,16,21,0
2015-03-18,08:00:00,70,51,116,74,124,1.3,1.304,94,57,8,125,56,109,16,21,0
2015-03-18,09:00:00,44,30,104,30,112,1.1,1.25,88,57,23,125,51,109,23,22,0
2015-03-18,10:00:00,70,51,92,0,112,1,1.2,79,57,37,125,47,109,22,22,0
2015-03-18,11:00:00,26,0,0,0,0,0.7,1.121,51,55,70,125,48,109,20,21,0
2015-03-18,12:00:00,26,0,0,0,0,0.7,1.067,46,54,81,125,50,109,17,20,0
2015-03-18,13:00:00,32,18,71,32,103,0.6,1.004,41,54,89,125,53,109,11,19,0
2015-03-18,14:00:00,51,35,66,52,98,0.5,0.954,39,53,96,125,57,109,10,19,0
2015-03-18,16:00:00,60,43,59,62,92,0.5,0.871,37,52,102,125,75,109,10,17,0
2015-03-18,17:00:00,72,52,54,87,92,0.6,0.821,44,51,102,120,85,109,11,17,0
2015-03-18,18:00:00,76,53,49,101,92,0.6,0.783,57,51,89,108,91,109,12,16,0
2015-03-18,19:00:00,87,64,45,124,86,0.7,0.746,59,51,88,102,94,109,13,16,0
2015-03-18,20:00:00,102,76,42,131,78,0.8,0.717,66,51,77,102,93,107,13,15,0
2015-03-18,21:00:00,107,80,42,125,73,0.9,0.7,84,52,54,102,89,100,14,14,0
2015-03-18,22:00:00,114,86,43,131,77,1.1,0.712,110,54,25,102,80,94,16,14,0
2015-03-18,23:00:00,129,98,46,146,82,1.3,0.742,127,57,7,102,68,94,16,14,0
2015-03-19,00:00:00,130,99,49,138,88,1.4,0.771,123,60,7,102,56,94,16,14,0
2015-03-19,01:00:00,144,110,53,159,92,1.6,0.804,121,64,7,102,44,94,14,14,0
2015-03-19,02:00:00,155,118,57,174,97,2,0.862,127,68,9,102,34,94,16,14,0
2015-03-19,03:00:00,159,121,61,158,101,1.6,0.908,118,71,8,102,24,94,20,15,0
2015-03-19,04:00:00,134,102,64,119,102,1.4,0.946,114,75,6,102,15,94,17,15,0
2015-03-19,05:00:00,115,87,67,105,102,1.2,0.975,99,77,5,102,9,94,14,15,0
2015-03-19,06:00:00,112,84,69,95,101,1,0.992,84,79,16,102,8,94,12,15,0
2015-03-19,07:00:00,102,76,72,110,105,1,1.004,90,81,10,102,8,94,11,15,0
2015-03-19,08:00:00,124,94,74,158,109,1.7,1.021,97,81,8,102,9,94,13,15,0
2015-03-19,09:00:00,166,126,78,224,119,2.2,1.067,106,82,10,102,9,94,16,14,0
2015-03-19,10:00:00,156,119,81,213,123,2.4,1.125,125,83,10,102,9,94,16,14,0
2015-03-19,11:00:00,134,102,82,200,126,1.7,1.167,117,86,12,102,10,94,13,14,0
2015-03-19,12:00:00,121,88,82,191,129,1.1,1.183,93,88,26,102,12,94,9,13,0
2015-03-19,13:00:00,111,58,84,172,135,0.7,1.187,62,89,50,102,18,94,7,13,0
2015-03-19,14:00:00,115,56,85,180,140,0.8,1.2,75,91,50,102,22,94,7,13,0
2015-03-19,15:00:00,114,62,86,177,145,0.6,1.204,62,92,64,102,29,94,7,13,0
2015-03-19,16:00:00,124,58,86,197,151,0.5,1.204,56,92,76,102,37,94,7,13,0
2015-03-19,17:00:00,133,66,87,216,156,0.5,1.2,51,93,90,90,47,94,6,13,0
2015-03-19,18:00:00,160,77,88,269,163,0.6,1.2,59,93,83,90,56,94,6,12,0
2015-03-19,19:00:00,161,89,89,272,169,0.7,1.2,71,93,69,90,64,93,7,12,0
2015-03-19,20:00:00,184,111,90,318,177,1,1.208,103,95,43,90,66,89,10,12,0
2015-03-19,21:00:00,186,127,92,321,185,1.1,1.217,93,95,63,90,67,80,16,12,0
2015-03-19,22:00:00,200,150,95,306,192,1.2,1.221,91,94,68,90,70,70,24,13,0
2015-03-20,00:00:00,168,127,98,280,204,1.3,1.217,131,94,9,90,58,70,15,13,0
2015-03-20,01:00:00,169,119,99,288,209,1.4,1.208,129,94,6,90,48,70,14,13,0
2015-03-20,02:00:00,154,106,98,258,213,1.2,1.175,120,94,5,90,38,70,10,13,0
2015-03-20,03:00:00,150,91,97,250,217,1,1.15,108,94,6,90,30,70,7,12,0
2015-03-20,04:00:00,122,36,94,194,220,0.4,1.108,63,91,27,90,28,70,3,11,0
2015-03-20,05:00:00,134,36,92,218,224,0.4,1.075,40,89,45,90,26,70,7,11,0
2015-03-20,06:00:00,115,33,90,180,228,0.4,1.05,39,87,45,90,23,70,11,11,0
2015-03-20,07:00:00,101,31,88,152,230,0.5,1.029,61,86,26,90,21,70,13,11,0
2015-03-20,08:00:00,100,28,85,149,229,0.6,0.983,72,85,19,90,22,70,13,11,0
2015-03-20,09:00:00,106,29,81,162,227,0.5,0.912,54,83,42,90,27,70,5,11,0
2015-03-20,10:00:00,100,29,77,150,224,0.3,0.825,30,79,70,90,35,70,2,10,0
2015-03-20,11:00:00,110,32,74,169,223,0.3,0.767,23,75,80,90,44,70,2,10,0
2015-03-20,12:00:00,120,32,72,189,223,0.3,0.733,18,72,89,90,52,70,2,9,0
2015-03-20,13:00:00,113,38,71,175,223,0.3,0.717,15,70,98,98,59,70,2,9,0
2015-03-20,14:00:00,123,40,71,196,224,0.3,0.696,20,67,100,100,66,70,4,9,0
2015-03-20,15:00:00,117,40,70,183,224,0.3,0.683,22,66,108,108,76,76,3,9,0
2015-03-20,16:00:00,112,41,69,173,223,0.3,0.675,22,64,109,109,87,87,3,9,0
2015-03-20,17:00:00,114,41,68,178,221,0.4,0.671,29,63,101,109,94,94,3,9,0
2015-03-20,18:00:00,109,41,66,168,217,0.4,0.663,33,62,95,109,98,98,3,8,0
2015-03-20,19:00:00,117,38,64,183,213,0.5,0.654,52,62,72,109,96,98,4,8,0
2015-03-20,20:00:00,111,53,62,171,207,0.7,0.642,85,61,36,109,90,98,4,8,0
2015-03-20,21:00:00,121,54,59,191,202,0.7,0.625,90,61,30,109,81,98,4,8,0
2015-03-20,22:00:00,123,58,55,196,197,0.7,0.604,103,61,18,109,71,98,7,7,0
2015-03-20,23:00:00,119,58,51,188,193,0.8,0.583,97,61,19,109,60,98,10,6,0
2015-03-21,00:00:00,111,62,49,171,189,1,0.571,110,60,6,109,47,98,8,6,0
2015-03-21,01:00:00,132,57,46,213,186,1,0.554,96,58,12,109,36,98,7,6,0
2015-03-21,02:00:00,191,48,44,331,189,0.5,0.525,40,55,49,109,30,98,3,5,0
2015-03-21,03:00:00,139,38,41,227,188,0.3,0.496,22,52,64,109,29,98,4,5,0
2015-03-21,04:00:00,101,32,41,152,186,0.2,0.488,19,50,66,109,33,98,5,5,0
2015-03-21,05:00:00,87,21,41,124,182,0.2,0.479,16,49,70,109,38,98,6,5,0
2015-03-21,06:00:00,131,24,40,212,183,0.2,0.471,13,48,71,109,45,98,9,5,0
2015-03-21,07:00:00,83,25,40,116,182,0.3,0.462,23,46,61,109,50,98,9,5,0
2015-03-21,08:00:00,70,18,40,90,180,0.2,0.446,27,44,60,109,57,98,6,5,0
2015-03-21,09:00:00,67,12,39,84,176,0.3,0.438,20,43,68,109,64,98,9,5,0
2015-03-21,10:00:00,58,14,38,65,173,0.3,0.438,19,42,71,109,66,98,11,5,0
2015-03-21,11:00:00,53,15,38,56,168,0.2,0.433,16,42,79,109,68,98,7,6,0
2015-03-21,12:00:00,50,10,37,50,162,0.2,0.429,14,42,86,109,71,98,4,6,0
2015-03-21,13:00:00,85,18,36,120,160,0.2,0.425,14,42,87,109,73,98,3,6,0
2015-03-21,14:00:00,66,10,35,81,155,0.2,0.421,15,42,88,109,75,98,4,6,0
2015-03-21,15:00:00,57,12,33,64,150,0.2,0.417,16,41,88,109,78,98,3,6,0
2015-03-21,16:00:00,65,7,32,79,146,0.2,0.412,16,41,87,101,82,98,2,6,0
2015-03-21,17:00:00,59,12,31,67,142,0.2,0.404,18,41,84,95,84,98,3,6,0
2015-03-21,18:00:00,51,7,29,51,137,0.2,0.396,21,40,80,88,85,96,3,6,0
2015-03-21,19:00:00,46,12,28,46,131,0.3,0.387,30,39,71,88,84,90,4,6,0
2015-03-21,20:00:00,39,10,26,39,126,0.4,0.375,49,38,51,88,80,85,4,6,0
2015-03-21,21:00:00,45,15,25,45,119,0.6,0.371,86,38,16,88,71,85,4,6,0
2015-03-21,22:00:00,50,13,23,41,113,0.6,0.367,99,37,4,88,60,85,4,6,0
2015-03-21,23:00:00,46,16,21,46,107,0.7,0.363,92,37,7,88,50,85,3,5,0
2015-03-22,00:00:00,73,18,19,96,104,0.5,0.342,52,35,36,88,44,85,3,5,0
2015-03-22,01:00:00,146,45,19,242,105,0.2,0.308,20,32,64,88,41,85,2,5,0
2015-03-22,02:00:00,124,39,18,198,100,0.2,0.296,15,31,68,88,40,85,2,5,0
2015-03-22,03:00:00,120,28,18,189,98,0.2,0.292,10,30,73,88,40,85,2,5,0
2015-03-22,04:00:00,91,17,17,132,97,0.2,0.292,9,30,73,88,43,85,2,5,0
2015-03-22,05:00:00,118,14,17,186,100,0.2,0.292,9,29,70,88,49,85,2,4,0
2015-03-22,06:00:00,95,12,17,139,97,0.2,0.292,11,29,70,88,58,85,2,4,0
2015-03-22,07:00:00,63,9,16,75,95,0.2,0.288,15,29,68,88,65,85,2,4,0
2015-03-22,08:00:00,51,8,16,51,93,0.2,0.288,19,29,66,88,69,85,2,4,0
2015-03-22,09:00:00,53,14,16,55,92,0.2,0.283,17,28,71,88,70,85,2,3,0
2015-03-22,10:00:00,48,13,16,48,92,0.2,0.279,13,28,77,88,71,85,3,3,0
2015-03-22,11:00:00,30,12,15,30,90,0.2,0.279,9,28,86,88,73,85,2,3,0
2015-03-22,12:00:00,28,15,16,19,89,0.2,0.279,11,28,88,88,74,85,2,3,0
2015-03-22,13:00:00,29,8,15,16,85,0.2,0.279,15,28,91,91,77,85,2,3,0
2015-03-22,14:00:00,29,16,16,21,82,0.3,0.283,19,28,90,91,80,85,3,3,0
2015-03-22,15:00:00,29,12,16,26,81,0.3,0.288,23,28,91,91,82,85,4,3,0
2015-03-22,16:00:00,40,27,16,40,79,0.3,0.292,26,29,89,91,85,85,5,3,0
2015-03-22,17:00:00,45,18,17,45,78,0.3,0.296,27,29,92,92,88,88,5,3,0
2015-03-22,18:00:00,54,19,17,57,78,0.3,0.3,27,29,87,92,89,89,4,3,0
2015-03-22,19:00:00,72,30,18,94,80,0.4,0.304,34,29,74,92,88,89,5,3,0
2015-03-22,20:00:00,177,49,19,303,91,0.9,0.325,49,29,47,92,83,89,15,3,0
2015-03-22,21:00:00,139,45,21,227,99,0.7,0.329,44,28,46,92,77,89,11,4,0
2015-03-22,22:00:00,107,37,22,164,104,0.6,0.329,42,25,43,92,71,89,10,4,0
2015-03-22,23:00:00,94,39,23,138,108,0.6,0.325,41,23,39,92,65,89,11,4,0
2015-03-23,00:00:00,86,41,24,122,109,0.6,0.329,47,23,30,92,57,89,12,5,0
2015-03-23,01:00:00,88,45,24,125,104,0.7,0.35,49,24,26,92,49,89,14,5,0
2015-03-23,02:00:00,83,49,24,115,101,0.7,0.371,49,26,23,92,41,89,15,6,0
2015-03-23,03:00:00,81,51,25,112,98,0.7,0.392,55,28,19,92,34,89,15,6,0
2015-03-23,04:00:00,89,51,26,127,97,1,0.425,68,30,6,92,29,89,9,7,0
2015-03-23,05:00:00,89,66,29,126,95,1.2,0.467,70,32,6,92,24,89,7,7,0
2015-03-23,06:00:00,89,62,31,128,94,1.2,0.508,71,35,6,92,19,89,6,7,0
2015-03-23,07:00:00,90,62,33,130,97,1.2,0.55,71,37,6,92,15,89,6,7,0
2015-03-23,08:00:00,96,65,35,142,100,1.4,0.6,76,40,8,92,12,89,11,7,0
2015-03-23,09:00:00,99,72,38,147,104,1.4,0.65,84,42,13,92,11,89,16,8,0
2015-03-23,10:00:00,69,50,39,76,105,0.9,0.679,68,45,29,92,12,89,17,9,0
2015-03-23,11:00:00,49,34,40,45,106,0.8,0.704,64,47,43,92,15,89,12,9,0
2015-03-23,12:00:00,23,13,40,23,106,0.5,0.717,41,48,66,92,22,89,5,9,0
2015-03-23,13:00:00,23,10,40,16,106,0.4,0.725,38,49,72,92,30,89,2,9,0
2015-03-23,14:00:00,28,13,40,14,106,0.3,0.725,28,50,88,92,41,89,2,9,0
2015-03-23,15:00:00,32,18,40,29,106,0.3,0.725,27,50,100,100,52,89,2,9,0
2015-03-23,16:00:00,35,16,40,34,106,0.3,0.725,26,50,109,109,65,89,2,9,0
2015-03-23,17:00:00,32,16,40,32,105,0.3,0.725,27,50,96,109,75,89,2,9,0
2015-03-23,18:00:00,42,14,40,42,105,0.3,0.725,33,50,85,109,82,88,2,9,0
2015-03-23,19:00:00,58,20,39,66,103,0.4,0.725,44,50,74,109,86,86,2,9,0
2015-03-23,20:00:00,61,27,38,72,94,0.4,0.704,57,51,58,109,85,86,3,8,0
2015-03-23,21:00:00,67,38,38,84,88,0.5,0.696,56,51,57,109,83,86,5,8,0
2015-03-23,22:00:00,67,46,38,83,84,0.6,0.696,68,52,42,109,78,86,8,8,0
2015-03-23,23:00:00,72,49,39,94,83,0.6,0.696,68,54,38,109,70,86,9,8,0
2015-03-24,00:00:00,75,51,39,100,82,0.7,0.7,80,55,27,109,60,86,10,8,0
2015-03-24,01:00:00,85,60,40,120,82,0.8,0.704,86,56,16,109,50,86,11,7,0
2015-03-24,02:00:00,111,72,41,171,84,1.1,0.721,93,58,6,109,40,86,15,7,0
2015-03-24,03:00:00,132,100,43,180,87,3.2,0.825,95,60,5,109,31,86,26,8,0
2015-03-24,04:00:00,122,92,44,116,86,3.3,0.921,76,60,13,109,26,86,34,9,0
2015-03-24,05:00:00,94,70,45,80,84,2.6,0.979,66,60,21,109,21,86,48,11,0
2015-03-24,06:00:00,89,66,45,84,83,2.4,1.029,75,60,16,109,18,86,49,12,0
2015-03-24,07:00:00,93,69,45,80,80,2.6,1.088,78,61,17,109,15,86,50,14,0
2015-03-24,08:00:00,82,60,45,84,78,2.3,1.125,66,60,33,109,16,86,49,16,0
2015-03-24,09:00:00,90,67,45,100,76,2.1,1.154,62,59,42,109,19,86,46,17,0
2015-03-24,10:00:00,92,68,45,112,78,2,1.2,56,59,52,109,25,86,42,18,0
2015-03-24,11:00:00,94,70,47,118,81,2,1.25,61,59,55,109,31,86,40,19,0
2015-03-24,12:00:00,95,71,49,114,84,1.8,1.304,61,59,65,109,38,86,38,21,0
2015-03-24,13:00:00,97,72,52,90,87,1.4,1.346,53,60,80,109,45,86,31,22,0
2015-03-24,14:00:00,87,64,54,83,90,1.4,1.392,51,61,90,109,54,86,29,23,0
2015-03-24,15:00:00,100,75,56,88,93,1.4,1.438,53,62,95,109,64,86,30,24,0
2015-03-24,16:00:00,104,78,59,100,96,1.2,1.475,50,63,109,109,74,86,28,25,0
2015-03-24,18:00:00,115,87,65,115,102,1.5,1.567,60,65,104,116,89,89,31,28,0
2015-03-24,19:00:00,130,99,68,134,105,1.8,1.625,73,66,85,116,93,93,37,29,0
2015-03-24,20:00:00,140,107,71,134,107,1.6,1.675,76,67,78,116,95,95,34,30,0
2015-03-24,21:00:00,156,119,75,135,109,1.7,1.725,96,69,61,116,92,95,32,31,0
2015-03-24,22:00:00,183,138,79,157,112,1.8,1.775,107,71,51,116,87,95,36,33,0
2015-03-24,23:00:00,195,146,83,168,115,1.7,1.821,126,73,22,116,78,95,45,34,0
2015-03-25,00:00:00,179,135,86,155,118,1.7,1.862,114,74,17,116,67,95,48,36,0
2015-03-25,01:00:00,158,120,89,135,118,1.7,1.9,117,76,5,116,53,95,38,37,0
2015-03-25,02:00:00,165,125,91,0,116,1.5,1.917,100,76,9,116,41,95,34,38,0
2015-03-25,03:00:00,162,123,92,0,113,1.6,1.85,98,76,5,116,31,95,32,38,0
2015-03-25,04:00:00,148,113,93,0,113,2,1.796,90,77,5,116,22,95,29,38,0
2015-03-25,05:00:00,160,122,95,0,115,2.3,1.783,95,78,5,116,15,95,39,37,0
2015-03-25,06:00:00,159,121,97,0,116,2.4,1.783,96,79,5,116,9,95,37,37,0
2015-03-25,07:00:00,165,125,99,0,118,2.5,1.779,95,80,6,116,7,95,40,36,0
2015-03-25,08:00:00,170,129,102,132,121,2.6,1.792,94,81,13,116,7,95,60,37,0
2015-03-25,09:00:00,175,132,105,133,123,3.2,1.838,104,82,25,116,9,95,101,39,0
2015-03-25,10:00:00,180,136,108,164,126,3.2,1.888,105,84,36,116,12,95,103,42,0
2015-03-25,11:00:00,211,161,112,178,129,3.1,1.933,108,86,44,116,17,95,102,44,0
2015-03-25,12:00:00,213,163,116,171,132,3.3,1.996,116,89,54,116,24,95,115,47,0
2015-03-25,13:00:00,221,171,120,192,138,3.1,2.067,108,91,79,116,33,95,102,50,0
2015-03-25,14:00:00,218,168,124,189,144,2.8,2.125,94,93,95,116,44,95,79,53,0
2015-03-25,15:00:00,149,114,126,131,146,1.6,2.133,56,93,116,116,58,95,39,53,0
2015-03-25,16:00:00,119,90,126,121,147,1.1,2.129,46,93,124,124,72,95,28,53,0
2015-03-25,17:00:00,113,85,126,122,148,1,2.117,44,92,126,126,84,95,25,53,0
2015-03-25,18:00:00,129,98,127,133,149,0.9,2.092,58,92,114,126,94,95,25,52,0
2015-03-25,19:00:00,138,105,127,145,150,0.9,2.054,65,92,102,126,101,101,26,52,0
2015-03-25,20:00:00,170,129,128,165,151,1.1,2.033,105,93,62,126,102,102,32,52,0
2015-03-25,21:00:00,176,133,128,166,153,1.1,2.008,97,93,59,126,100,102,31,52,0
2015-03-25,22:00:00,139,106,127,153,153,0.9,1.971,74,92,64,126,96,102,24,51,0
2015-03-25,23:00:00,123,93,125,132,151,0.8,1.933,58,89,72,126,90,102,24,51,0
2015-03-26,00:00:00,128,97,123,134,150,0.8,1.896,52,86,68,126,83,102,27,50,0
2015-03-26,01:00:00,129,98,122,130,150,0.8,1.858,53,84,64,126,76,102,28,49,0
2015-03-26,02:00:00,134,102,121,128,148,0.9,1.833,57,82,56,126,68,102,28,49,0
2015-03-26,03:00:00,137,104,121,118,147,0.9,1.804,51,80,59,126,63,102,28,49,0
2015-03-26,04:00:00,138,105,120,122,146,0.8,1.754,49,78,59,126,63,102,30,49,0
2015-03-26,05:00:00,145,111,120,124,145,0.9,1.696,53,77,50,126,62,102,30,49,0
2015-03-26,06:00:00,152,116,120,131,144,0.9,1.633,64,75,37,126,58,102,29,48,0
2015-03-26,07:00:00,156,119,119,139,144,1.1,1.575,96,75,8,126,50,102,23,47,0
2015-03-26,08:00:00,175,132,120,162,145,1.7,1.537,110,76,8,126,43,102,23,46,0
2015-03-26,09:00:00,203,153,120,206,148,2.1,1.492,126,77,9,126,36,102,27,43,0
2015-03-26,10:00:00,208,158,121,204,150,1.8,1.433,126,78,19,126,31,102,31,40,0
2015-03-26,11:00:00,210,160,121,164,149,1.4,1.362,82,77,70,126,32,102,36,37,0
2015-03-26,12:00:00,169,128,120,0,148,1.1,1.271,61,74,104,126,38,102,40,34,0
2015-03-26,13:00:00,137,104,117,118,145,1.1,1.188,45,72,132,132,48,102,41,31,0
2015-03-26,14:00:00,123,93,114,116,142,1,1.113,41,70,144,144,62,102,36,30,0
2015-03-26,15:00:00,114,86,113,116,141,0.7,1.075,37,69,148,148,79,102,26,29,0
2015-03-26,16:00:00,235,185,117,0,142,0.6,1.054,35,68,146,148,96,102,17,29,0
2015-03-26,17:00:00,93,69,116,109,142,0.6,1.038,38,68,139,148,113,113,18,28,0
2015-03-26,18:00:00,112,84,115,138,142,0.7,1.029,49,68,132,148,127,127,23,28,0
2015-03-26,19:00:00,112,84,115,141,142,0.8,1.025,66,68,110,148,132,132,20,28,0
2015-03-26,20:00:00,285,235,119,0,141,0.8,1.013,59,66,112,148,133,133,20,28,0
2015-03-26,21:00:00,92,0,118,134,139,0.7,0.996,52,64,110,148,130,133,22,27,0
2015-03-26,22:00:00,85,0,0,120,137,0.7,0.988,43,63,111,148,126,133,24,27,0
2015-03-26,23:00:00,80,0,0,109,136,0.7,0.983,40,62,104,148,120,133,20,27,0
2015-03-27,00:00:00,75,55,118,93,134,0.6,0.975,36,61,101,148,115,133,18,27,0
2015-03-27,01:00:00,80,59,116,76,132,0.5,0.963,33,60,96,148,110,133,16,26,0
2015-03-27,02:00:00,77,56,114,65,129,0.5,0.946,31,59,92,148,104,133,16,26,0
2015-03-27,03:00:00,85,63,112,75,127,0.6,0.933,34,59,83,148,101,133,18,25,0
2015-03-27,04:00:00,152,116,113,0,127,0.6,0.925,34,58,77,148,97,133,22,25,0
2015-03-27,05:00:00,255,205,117,0,127,0.6,0.913,34,57,75,148,92,133,23,25,0
2015-03-27,06:00:00,195,146,119,0,127,0.7,0.904,40,56,66,148,87,133,25,24,0
2015-03-27,07:00:00,162,123,119,0,126,0.9,0.896,89,56,21,148,76,133,24,24,0
2015-03-27,08:00:00,235,185,121,0,124,1.1,0.871,94,55,18,148,66,133,36,25,0
2015-03-27,09:00:00,268,218,124,0,119,1.2,0.833,91,54,24,148,57,133,43,26,0
2015-03-27,10:00:00,94,0,0,138,114,1.2,0.808,99,53,27,148,49,133,40,26,0
2015-03-27,11:00:00,326,276,128,0,111,1.3,0.804,103,54,36,148,43,133,41,26,0
2015-03-27,12:00:00,41,0,0,0,0,1.2,0.808,81,54,65,148,42,133,45,26,0
2015-03-27,13:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-03-27,14:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-03-27,15:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-03-27,16:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-03-27,17:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-03-27,18:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-03-27,19:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-03-27,20:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-03-27,21:00:00,202,152,138,193,109,1.3,0.856,72,60,103,111,103,126,43,28,0
2015-03-27,22:00:00,158,120,136,152,113,1,0.875,53,60,106,106,104,120,30,29,0
2015-03-27,23:00:00,134,102,134,154,118,0.9,0.888,55,61,87,106,99,115,24,29,0
2015-03-28,00:00:00,118,89,136,158,126,0.8,0.9,48,62,86,106,96,110,23,29,0
2015-03-28,01:00:00,129,98,139,153,136,0.8,0.919,40,62,89,106,94,104,24,30,0
2015-03-28,02:00:00,133,101,142,149,147,0.8,0.938,38,63,83,106,92,104,25,30,0
2015-03-28,03:00:00,127,96,145,148,156,0.8,0.95,39,63,72,106,89,104,26,31,0
2015-03-28,05:00:00,150,115,138,150,154,0.9,0.988,54,65,45,106,79,104,24,31,0
2015-03-28,06:00:00,160,122,136,150,154,1,1.006,72,67,23,106,68,104,20,31,0
2015-03-28,07:00:00,130,95,134,210,159,0.7,0.994,56,65,39,106,62,104,13,30,0
2015-03-28,08:00:00,122,34,124,193,161,0.3,0.944,22,60,71,106,60,104,4,28,0
2015-03-28,09:00:00,121,28,110,192,163,0.3,0.888,18,56,78,106,59,104,3,26,0
2015-03-28,10:00:00,162,34,105,273,173,0.4,0.838,17,51,78,106,58,104,4,23,0
2015-03-28,11:00:00,500,61,91,640,204,0.3,0.775,15,45,78,106,59,104,2,21,0
2015-03-28,13:00:00,500,120,94,1000,298,0.4,0.7,16,39,76,106,65,104,2,17,0
2015-03-28,14:00:00,500,99,94,899,331,0.4,0.683,17,38,82,106,72,104,2,16,0
2015-03-28,15:00:00,461,66,93,561,343,0.4,0.668,16,37,91,106,79,104,2,16,0
2015-03-28,17:00:00,90,23,86,130,327,0.4,0.643,18,35,97,106,84,104,2,14,0
2015-03-28,18:00:00,71,25,83,91,316,0.4,0.632,23,35,94,106,86,104,2,14,0
2015-03-28,19:00:00,64,30,81,77,306,0.4,0.622,29,34,86,106,87,104,2,13,0
2015-03-28,20:00:00,59,28,79,68,296,0.5,0.617,32,34,77,106,87,104,2,13,0
2015-03-28,21:00:00,57,30,74,64,291,0.6,0.588,69,34,39,106,83,104,2,11,0
2015-03-28,22:00:00,58,31,70,65,287,0.7,0.575,70,35,32,97,76,99,2,10,0
2015-03-28,23:00:00,55,28,67,60,283,0.8,0.571,92,36,12,97,67,96,3,9,0
2015-03-29,00:00:00,56,28,64,62,279,1.3,0.592,105,39,2,97,55,94,4,8,0
2015-03-29,01:00:00,54,30,62,58,275,1.2,0.608,101,41,2,97,43,92,4,8,0
2015-03-29,02:00:00,52,36,59,54,271,1,0.617,97,44,2,97,32,89,5,7,0
2015-03-29,03:00:00,61,36,56,72,268,1.7,0.654,94,46,3,97,21,87,7,6,0
2015-03-29,04:00:00,77,56,54,93,266,1.6,0.683,99,48,5,97,12,87,10,5,0
2015-03-29,05:00:00,93,69,52,90,263,1.4,0.704,100,50,5,97,8,87,10,5,0
2015-03-29,06:00:00,83,61,50,77,260,1.3,0.717,98,51,4,97,4,87,10,4,0
2015-03-29,07:00:00,79,58,48,77,255,1.2,0.737,100,53,4,97,3,87,12,4,0
2015-03-29,08:00:00,94,70,50,135,252,1.5,0.788,100,56,6,97,4,87,15,5,0
2015-03-29,09:00:00,193,121,53,335,258,2,0.858,111,60,9,97,5,87,26,6,0
2015-03-29,10:00:00,412,150,58,512,268,2.1,0.929,109,64,22,97,7,87,41,7,0
2015-03-29,11:00:00,384,145,62,487,262,1.7,0.987,97,68,46,97,13,87,46,9,0
2015-03-29,12:00:00,373,159,64,478,240,1.7,1.046,86,71,75,97,21,87,40,11,0
2015-03-29,13:00:00,343,160,65,454,217,1.6,1.096,74,73,96,97,33,87,37,12,0
2015-03-29,14:00:00,310,145,67,428,198,1.3,1.133,60,75,110,110,46,87,31,13,0
2015-03-29,15:00:00,185,81,68,319,188,0.5,1.138,31,75,130,130,62,87,14,14,0
2015-03-29,16:00:00,172,68,69,294,191,0.5,1.142,33,76,132,132,78,87,28,15,0
2015-03-29,18:00:00,258,68,73,390,213,0.5,1.15,42,78,117,132,103,103,16,17,0
2015-03-29,19:00:00,215,71,75,360,225,0.6,1.158,55,79,96,132,109,109,13,17,0
2015-03-29,20:00:00,209,74,77,356,237,0.7,1.167,58,80,83,132,110,110,14,18,0
2015-03-29,21:00:00,313,111,80,430,252,1.2,1.192,105,81,37,132,102,110,25,19,0
2015-03-29,22:00:00,295,173,86,416,267,1.6,1.229,108,83,31,132,93,110,27,20,0
2015-03-29,23:00:00,250,150,91,385,281,1.6,1.263,116,84,16,132,78,110,25,21,0
2015-03-30,00:00:00,213,152,96,359,293,1.6,1.275,120,85,4,132,62,110,21,21,0
2015-03-30,01:00:00,198,148,101,333,304,1.6,1.292,115,85,4,132,48,110,21,22,0
2015-03-30,02:00:00,176,129,105,302,315,1.5,1.313,107,86,3,132,34,110,21,23,0
2015-03-30,03:00:00,172,125,109,294,324,1.5,1.304,102,86,3,132,23,110,18,23,0
2015-03-30,04:00:00,172,125,112,294,332,1.4,1.296,102,86,5,132,13,110,25,24,0
2015-03-30,05:00:00,176,126,114,302,341,1.5,1.3,99,86,6,132,9,110,29,25,0
2015-03-30,06:00:00,176,129,117,302,351,1.7,1.317,100,86,3,132,6,110,28,25,0
2015-03-30,07:00:00,177,130,120,303,360,1.8,1.342,98,86,6,132,4,110,28,26,0
2015-03-30,08:00:00,178,130,123,305,367,1.8,1.354,93,86,10,132,5,110,35,27,0
2015-03-30,09:00:00,195,146,124,320,366,1.8,1.346,93,85,16,132,6,110,40,27,0
2015-03-30,10:00:00,343,171,124,454,364,1.8,1.333,91,84,33,132,10,110,44,28,0
2015-03-30,11:00:00,282,171,126,407,361,1.5,1.325,71,83,67,132,18,110,45,27,0
2015-03-30,12:00:00,219,168,126,363,356,1.4,1.312,53,82,100,132,30,110,43,28,0
2015-03-30,13:00:00,231,181,127,327,351,1.4,1.304,45,81,120,132,44,110,45,28,0
2015-03-30,14:00:00,243,193,129,299,345,1.4,1.308,39,80,139,139,61,110,44,28,0
2015-03-30,15:00:00,231,181,133,272,343,1.2,1.337,34,80,158,158,80,110,38,29,0
2015-03-30,16:00:00,208,158,137,262,342,1.1,1.362,36,80,160,160,99,110,30,30,0
2015-03-30,17:00:00,213,163,141,278,338,1.1,1.388,39,80,162,162,117,117,26,29,0
2015-03-30,18:00:00,210,160,144,275,333,1.1,1.412,46,80,158,162,133,133,25,30,0
2015-03-30,19:00:00,219,169,148,278,330,1.2,1.438,58,80,132,162,141,141,23,30,0
2015-03-30,20:00:00,219,169,152,310,328,1.5,1.471,95,82,74,162,138,141,25,30,0
2015-03-30,21:00:00,238,188,156,342,324,1.7,1.492,99,82,83,162,133,141,42,31,0
2015-03-30,22:00:00,231,181,156,311,320,1.7,1.496,64,80,113,162,130,141,43,32,0
2015-03-30,23:00:00,215,165,157,264,315,1.4,1.488,54,77,115,162,125,141,33,32,0
2015-03-31,00:00:00,214,164,157,243,310,1.3,1.475,54,74,103,162,118,141,28,32,0
2015-03-31,01:00:00,214,164,158,240,306,1.6,1.475,51,72,90,162,108,141,27,33,0
2015-03-31,02:00:00,232,182,160,257,304,2.3,1.508,59,70,63,162,97,141,31,33,0
2015-03-31,03:00:00,242,192,163,235,302,2.2,1.537,56,68,62,162,88,141,33,34,0
2015-03-31,04:00:00,216,166,164,172,297,2,1.563,40,65,74,162,88,141,30,34,0
2015-03-31,05:00:00,200,150,165,0,296,2,1.583,39,63,70,162,86,141,24,34,0
2015-03-31,06:00:00,210,160,167,0,296,2.3,1.608,45,61,52,162,79,141,18,33,0
2015-03-31,07:00:00,207,157,168,0,296,2.5,1.638,55,59,39,162,69,141,19,33,0
2015-03-31,08:00:00,211,161,169,0,295,2.7,1.675,69,58,27,162,60,141,27,33,0
2015-03-31,09:00:00,215,165,170,0,294,3.2,1.733,72,57,17,162,50,141,18,32,0
2015-03-31,10:00:00,227,177,170,0,285,3.7,1.813,82,56,8,162,44,141,16,31,0
2015-03-31,11:00:00,219,169,170,0,278,3.8,1.908,78,57,17,162,38,141,19,29,0
2015-03-31,12:00:00,208,158,170,0,273,3.5,1.996,80,58,13,162,30,141,18,28,0
2015-03-31,13:00:00,185,139,168,0,269,2.4,2.038,64,59,29,162,25,141,14,27,0
2015-03-31,14:00:00,142,108,164,0,267,1.2,2.029,46,59,48,162,25,141,13,26,0
2015-03-31,15:00:00,135,103,161,0,267,1.2,2.029,49,60,49,162,26,141,11,25,0
2015-03-31,21:00:00,99,74,154,0,246,0.8,2.2,72,59,27,115,41,130,7,23,0
2015-04-01,00:00:00,92,68,147,0,226,0.9,2.253,66,60,23,90,25,108,4,19,0
2015-04-01,01:00:00,95,71,141,0,221,0.9,2.212,75,62,11,74,20,97,4,18,0
2015-04-01,02:00:00,97,72,135,0,204,1,2.135,79,63,6,74,17,88,3,16,0
2015-04-01,03:00:00,105,79,128,84,128,1.4,2.088,91,65,5,74,14,88,3,15,0
2015-04-01,04:00:00,113,85,123,93,88,1.4,2.053,90,68,5,70,13,86,3,13,0
2015-04-01,05:00:00,112,84,119,0,88,1.1,2,85,70,4,52,9,79,4,12,0
2015-04-01,06:00:00,95,71,114,72,83,0.8,1.912,74,72,10,49,9,69,6,11,0
2015-04-01,07:00:00,99,74,109,94,86,0.9,1.818,76,73,7,49,9,60,5,10,0
2015-04-01,08:00:00,105,79,104,96,88,1,1.718,77,74,9,49,7,50,7,9,0
2015-04-01,09:00:00,132,100,101,112,92,1.1,1.594,78,74,14,49,8,44,13,9,0
2015-04-01,10:00:00,104,78,95,0,92,0.8,1.424,63,73,40,49,12,41,11,9,0
2015-04-01,13:00:00,33,23,78,26,82,0.4,0.993,26,70,87,87,28,41,4,7,0
2015-04-01,14:00:00,48,33,73,0,82,0.5,0.947,26,68,87,87,41,41,4,6,0
2015-04-01,16:00:00,52,36,66,38,73,0.6,0.881,35,65,80,87,66,66,4,5,0
2015-04-01,17:00:00,54,38,64,41,69,0.6,0.865,40,64,75,87,76,76,5,5,0
2015-04-01,18:00:00,62,44,63,51,68,0.7,0.856,42,62,72,87,81,81,4,5,0
2015-04-01,19:00:00,49,34,62,41,66,0.7,0.847,48,62,61,87,78,81,4,5,0
2015-04-01,20:00:00,52,36,60,46,64,0.7,0.84,56,61,49,87,74,81,4,5,0
2015-04-01,21:00:00,67,48,59,63,64,0.8,0.84,64,61,38,87,68,81,4,5,0
2015-04-01,22:00:00,65,45,58,80,65,0.8,0.838,69,61,30,87,61,81,3,5,0
2015-04-01,23:00:00,62,44,58,0,65,0.9,0.841,70,62,28,87,54,81,4,5,0
2015-04-02,00:00:00,64,46,57,50,64,0.7,0.832,48,61,45,87,50,81,2,5,0
2015-04-02,01:00:00,62,44,56,0,64,0.7,0.823,39,59,48,87,46,81,2,5,0
2015-04-02,02:00:00,70,51,55,0,64,0.8,0.814,42,58,40,87,42,81,2,5,0
2015-04-02,03:00:00,68,49,53,0,63,0.8,0.786,34,55,44,87,40,81,2,5,0
2015-04-02,04:00:00,63,45,51,0,61,0.8,0.759,25,52,56,87,41,81,2,5,0
2015-04-02,05:00:00,59,42,50,0,61,0.7,0.741,24,49,58,87,44,81,2,5,0
2015-04-02,06:00:00,68,49,49,0,60,0.8,0.741,26,47,57,87,47,81,2,4,0
2015-04-02,07:00:00,67,48,47,0,57,0.8,0.736,35,45,42,87,49,81,2,4,0
2015-04-02,08:00:00,85,63,47,0,53,0.9,0.732,48,44,27,87,46,81,2,4,0
2015-04-02,09:00:00,82,60,45,0,47,0.9,0.723,44,42,34,87,45,81,2,3,0
2015-04-02,10:00:00,80,59,44,0,47,1,0.732,47,42,36,87,44,81,2,3,0
2015-04-02,11:00:00,72,52,44,0,47,1,0.743,35,41,58,87,46,81,4,3,0
2015-04-02,12:00:00,67,48,44,0,47,0.9,0.75,29,41,71,87,48,81,5,3,0
2015-04-02,13:00:00,58,41,45,0,50,0.7,0.763,20,41,86,87,51,81,6,3,0
2015-04-02,14:00:00,48,33,45,0,50,0.6,0.767,17,40,99,99,57,81,5,3,0
2015-04-02,15:00:00,42,29,45,0,51,0.6,0.771,20,40,100,100,64,81,4,3,0
2015-04-02,16:00:00,57,40,45,0,53,0.7,0.775,22,39,104,104,74,81,4,3,0
2015-04-02,17:00:00,59,42,46,0,55,0.7,0.779,24,39,99,104,82,82,5,3,0
2015-04-02,18:00:00,55,39,45,0,56,0.7,0.779,31,38,76,104,87,87,5,3,0
2015-04-02,19:00:00,30,21,45,0,60,0.6,0.775,31,38,69,104,88,88,4,3,0
2015-04-02,20:00:00,29,20,44,0,64,0.6,0.771,34,37,67,104,88,88,4,3,0
2015-04-02,21:00:00,25,17,43,0,65,0.5,0.758,30,35,75,104,86,88,3,3,0
2015-04-02,22:00:00,26,13,41,0,50,0.5,0.746,28,33,82,104,84,88,3,3,0
2015-04-02,23:00:00,26,17,40,0,50,0.5,0.729,26,32,83,104,82,88,3,3,0
2015-04-03,00:00:00,28,12,39,0,0,0.5,0.721,22,31,87,104,80,88,3,3,0
2015-04-03,01:00:00,24,14,38,22,22,0.5,0.712,31,30,74,104,77,88,4,3,0
2015-04-03,02:00:00,29,20,36,28,25,0.6,0.704,44,30,53,104,74,88,2,3,0
2015-04-03,03:00:00,33,23,35,23,24,0.6,0.696,42,31,49,104,71,88,3,3,0
2015-04-03,04:00:00,29,20,34,0,24,0.6,0.687,53,32,36,104,67,88,3,3,0
2015-04-03,05:00:00,30,21,33,0,24,0.5,0.679,33,32,58,104,65,88,3,3,0
2015-04-03,06:00:00,33,23,32,0,24,0.5,0.667,25,32,69,104,64,88,3,4,0
2015-04-03,07:00:00,26,18,31,0,24,0.5,0.654,48,33,50,104,60,88,4,4,0
2015-04-03,08:00:00,32,22,29,0,24,0.6,0.642,55,33,52,104,55,88,5,4,0
2015-04-03,09:00:00,26,18,28,24,24,0.5,0.625,42,33,69,104,54,88,4,4,0
2015-04-03,10:00:00,30,21,26,0,24,0.4,0.6,30,32,85,104,58,88,3,4,0
2015-04-03,11:00:00,31,14,24,0,24,0.4,0.575,23,32,98,104,65,88,3,4,0
2015-04-03,12:00:00,36,6,23,10,21,0.4,0.554,18,31,114,114,74,88,3,4,0
2015-04-03,13:00:00,38,14,22,38,24,0.5,0.546,26,31,113,114,81,88,4,4,0
2015-04-03,14:00:00,58,41,22,0,24,0.6,0.546,29,32,115,115,87,88,4,4,0
2015-04-03,15:00:00,57,40,22,0,24,0.6,0.546,25,32,124,124,96,96,4,4,0
2015-04-03,16:00:00,48,33,22,0,24,0.7,0.546,29,32,121,124,105,105,4,4,0
2015-04-03,17:00:00,64,46,22,0,24,0.8,0.55,30,33,129,129,112,112,4,4,0
2015-04-03,18:00:00,75,55,23,0,24,0.9,0.558,38,33,130,130,118,118,4,4,0
2015-04-03,19:00:00,93,69,25,79,32,1.5,0.596,54,34,108,130,119,119,11,4,0
2015-04-03,20:00:00,94,70,27,0,32,1,0.612,45,34,107,130,118,119,8,4,0
2015-04-03,21:00:00,75,55,29,0,32,0.7,0.621,45,35,90,130,116,119,4,4,0
2015-04-03,22:00:00,58,41,30,0,32,0.6,0.625,46,36,74,130,110,119,6,4,0
2015-04-03,23:00:00,45,31,30,0,32,0.6,0.629,42,36,70,130,104,119,6,4,0
2015-04-04,00:00:00,50,35,31,0,32,0.9,0.646,48,38,58,130,96,119,5,4,0
2015-04-04,01:00:00,54,38,32,0,34,0.7,0.654,39,38,63,130,88,119,5,4,0
2015-04-04,02:00:00,59,42,33,0,35,0.7,0.658,40,38,61,130,79,119,5,5,0
2015-04-04,03:00:00,57,40,34,0,38,0.6,0.658,39,38,62,130,73,119,6,5,0
2015-04-04,04:00:00,50,35,35,0,38,0.6,0.658,35,37,72,130,69,119,5,5,0
2015-04-04,05:00:00,54,38,35,0,38,0.6,0.662,36,37,70,130,66,119,5,5,0
2015-04-04,06:00:00,55,39,36,0,38,0.6,0.667,39,38,65,130,65,119,5,5,0
2015-04-04,07:00:00,49,34,37,38,38,0.5,0.667,48,38,65,130,64,119,6,5,0
2015-04-04,08:00:00,63,45,38,47,39,0.6,0.667,61,38,56,130,64,119,6,5,0
2015-04-04,09:00:00,70,51,39,52,44,0.6,0.671,49,38,75,130,66,119,8,5,0
2015-04-04,10:00:00,97,72,41,84,50,0.8,0.687,46,39,86,130,69,119,10,5,0
2015-04-04,11:00:00,108,81,44,0,50,0.8,0.704,38,39,103,130,74,119,10,6,0
2015-04-04,12:00:00,113,85,47,0,56,0.7,0.717,30,40,124,130,80,119,9,6,0
2015-04-04,13:00:00,115,87,50,0,60,0.7,0.725,30,40,135,135,89,119,8,6,0
2015-04-04,14:00:00,100,75,52,0,60,0.6,0.725,26,40,148,148,99,119,6,6,0
2015-04-04,15:00:00,113,85,53,0,60,0.6,0.725,28,40,153,153,110,119,6,6,0
2015-04-04,16:00:00,104,78,55,0,60,0.6,0.721,27,40,154,154,122,122,5,6,0
2015-04-04,17:00:00,94,70,56,0,60,0.6,0.712,34,40,152,154,132,132,5,6,0
2015-04-04,18:00:00,104,78,57,0,60,0.7,0.704,47,41,138,154,138,138,5,6,0
2015-04-04,19:00:00,117,88,58,96,63,0.8,0.675,63,41,119,154,140,140,6,6,0
2015-04-04,20:00:00,130,99,59,113,72,0.8,0.667,73,42,102,154,138,140,6,6,0
2015-04-04,21:00:00,137,104,61,108,77,0.8,0.671,66,43,103,154,134,140,6,6,0
2015-04-04,22:00:00,135,103,64,104,80,0.8,0.679,64,44,97,154,127,140,6,6,0
2015-04-04,23:00:00,140,107,67,110,84,0.7,0.683,51,44,107,154,122,140,7,6,0
2015-04-05,00:00:00,155,118,70,0,84,0.8,0.679,50,44,100,154,115,140,10,7,0
2015-04-05,01:00:00,168,127,74,0,84,0.8,0.683,61,45,81,154,106,140,12,7,0
2015-04-05,02:00:00,172,130,78,0,84,0.9,0.692,65,46,64,154,97,140,10,7,0
2015-04-05,03:00:00,178,134,82,0,84,0.9,0.704,74,48,44,154,87,140,8,7,0
2015-04-05,04:00:00,189,142,86,0,84,1,0.721,106,51,15,154,76,140,8,7,0
2015-04-05,05:00:00,179,135,90,0,84,1,0.738,102,53,13,154,65,140,7,7,0
2015-04-05,06:00:00,188,141,95,156,91,1.1,0.758,120,57,3,154,53,140,6,7,0
2015-04-05,07:00:00,193,145,99,0,97,1.1,0.783,102,59,10,154,41,140,8,7,0
2015-04-05,08:00:00,95,71,100,0,103,0.5,0.779,48,58,51,154,35,140,5,7,0
2015-04-05,09:00:00,98,16,99,145,114,0.3,0.767,16,57,83,154,35,140,3,7,0
2015-04-05,10:00:00,110,22,97,170,125,0.3,0.746,14,56,85,154,38,140,2,7,0
2015-04-05,11:00:00,94,26,94,137,127,0.2,0.721,13,55,86,154,43,140,2,7,0
2015-04-05,12:00:00,80,31,92,109,125,0.3,0.704,13,54,88,154,52,140,2,6,0
2015-04-05,13:00:00,62,26,90,74,120,0.3,0.688,13,53,92,154,62,140,2,6,0
2015-04-05,14:00:00,58,19,87,66,116,0.3,0.675,14,53,98,154,74,140,3,6,0
2015-04-05,15:00:00,56,23,85,62,112,0.3,0.663,15,52,97,154,85,140,2,6,0
2015-04-05,16:00:00,58,29,83,66,108,0.3,0.65,14,52,93,152,90,140,2,6,0
2015-04-05,17:00:00,53,23,81,55,105,0.3,0.638,16,51,87,138,91,140,2,5,0
2015-04-05,18:00:00,48,19,78,48,101,0.3,0.621,15,49,79,119,90,140,2,5,0
2015-04-05,19:00:00,43,15,75,43,98,0.3,0.6,16,48,70,107,88,138,2,5,0
2015-04-05,20:00:00,35,20,72,35,93,0.3,0.579,16,45,69,107,86,134,2,5,0
2015-04-05,21:00:00,31,15,68,31,88,0.3,0.558,14,43,74,107,83,127,2,5,0
2015-04-05,22:00:00,39,27,65,38,84,0.3,0.538,16,41,74,107,80,122,2,5,0
2015-04-05,23:00:00,42,29,62,32,79,0.3,0.521,15,40,73,100,77,115,2,4,0
2015-04-06,00:00:00,29,20,58,23,76,0.3,0.5,15,38,73,98,75,106,2,4,0
2015-04-06,01:00:00,28,19,53,22,73,0.3,0.479,13,36,73,98,73,97,2,4,0
2015-04-06,02:00:00,29,20,49,0,73,0.3,0.454,12,34,74,98,72,91,2,3,0
2015-04-06,03:00:00,26,14,44,26,70,0.2,0.425,18,32,64,98,72,91,2,3,0
2015-04-06,04:00:00,25,17,38,17,68,0.2,0.392,11,28,72,98,72,91,2,3,0
2015-04-06,05:00:00,26,14,33,26,66,0.2,0.358,12,24,69,98,72,91,2,3,0
2015-04-06,06:00:00,26,18,28,23,59,0.2,0.321,14,19,65,98,70,91,2,2,0
2015-04-06,07:00:00,25,17,23,24,58,0.2,0.283,13,16,67,98,70,91,2,2,0
2015-04-06,08:00:00,32,22,21,24,56,0.2,0.271,16,14,66,98,69,91,2,2,0
2015-04-06,09:00:00,22,14,21,19,51,0.2,0.267,14,14,70,98,68,91,2,2,0
2015-04-06,10:00:00,29,20,21,20,44,0.2,0.262,12,14,73,98,68,91,2,2,0
2015-04-06,11:00:00,25,15,20,22,39,0.2,0.262,10,14,77,98,70,91,2,2,0
2015-04-06,12:00:00,26,12,19,18,35,0.2,0.258,10,14,81,98,71,91,2,2,0
2015-04-06,13:00:00,27,3,19,6,32,0.2,0.254,11,14,86,98,73,91,2,2,0
2015-04-06,14:00:00,29,18,18,0,31,0.2,0.25,11,14,90,97,76,91,2,2,0
2015-04-06,15:00:00,31,20,18,0,29,0.2,0.246,10,14,97,97,80,91,2,2,0
2015-04-06,16:00:00,30,15,18,20,27,0.3,0.246,11,13,96,97,84,91,2,2,0
2015-04-06,17:00:00,40,28,18,0,26,0.3,0.246,17,13,93,97,87,90,3,2,0
2015-04-06,18:00:00,53,37,19,39,25,0.3,0.246,32,14,81,97,88,88,2,2,0
2015-04-06,19:00:00,44,24,19,44,25,0.4,0.25,36,15,76,97,88,88,2,2,0
2015-04-06,20:00:00,53,33,20,55,26,0.4,0.254,39,16,70,97,86,88,2,2,0
2015-04-06,21:00:00,55,34,20,60,28,0.4,0.258,33,17,73,97,84,88,2,2,0
2015-04-06,22:00:00,56,35,21,62,29,0.4,0.263,39,18,64,97,81,88,3,2,0
2015-04-06,23:00:00,59,42,21,64,31,0.4,0.267,39,19,60,97,77,88,4,2,0
2015-04-07,00:00:00,63,45,22,65,33,0.4,0.271,40,20,59,97,72,88,6,2,0
2015-04-07,01:00:00,70,51,24,76,35,0.5,0.279,68,22,30,97,64,88,6,3,0
2015-04-07,02:00:00,72,52,25,68,37,0.5,0.288,74,25,17,97,56,88,7,3,0
2015-04-07,03:00:00,23,16,25,0,38,0.2,0.288,20,25,64,97,55,88,2,3,0
2015-04-07,04:00:00,21,8,25,10,37,0.2,0.288,17,25,66,97,54,88,2,3,0
2015-04-07,05:00:00,20,13,25,0,38,0.2,0.288,20,25,61,97,53,88,2,3,0
2015-04-07,06:00:00,19,10,24,11,37,0.2,0.288,21,26,58,97,52,88,2,3,0
2015-04-07,07:00:00,22,7,24,22,37,0.3,0.292,39,27,43,97,50,88,2,3,0
2015-04-07,08:00:00,25,14,24,25,37,0.4,0.3,34,27,50,97,49,88,2,3,0
2015-04-07,09:00:00,26,18,24,0,38,0.4,0.308,32,28,55,97,52,88,2,3,0
2015-04-07,10:00:00,28,19,24,0,39,0.3,0.313,23,29,68,97,58,88,2,3,0
2015-04-07,11:00:00,27,16,24,0,40,0.2,0.313,12,29,85,97,61,88,3,3,0
2015-04-07,12:00:00,27,11,24,0,42,0.3,0.317,13,29,86,97,63,88,5,3,0
2015-04-07,13:00:00,28,13,24,0,44,0.3,0.321,14,29,89,97,67,88,5,3,0
2015-04-07,14:00:00,43,30,25,0,44,0.3,0.325,16,29,91,97,71,88,2,3,0
2015-04-07,15:00:00,42,29,25,0,44,0.3,0.329,24,30,87,96,76,88,2,3,0
2015-04-07,16:00:00,43,30,26,34,45,0.3,0.329,27,30,86,93,81,88,2,3,0
2015-04-07,17:00:00,48,33,26,34,45,0.3,0.329,27,31,93,93,86,88,2,3,0
2015-04-07,18:00:00,34,18,25,34,44,0.3,0.329,28,31,92,93,89,89,2,3,0
2015-04-07,19:00:00,50,31,25,50,45,0.4,0.329,31,30,86,93,89,89,2,3,0
2015-04-07,20:00:00,58,36,25,66,45,0.4,0.329,33,30,86,93,89,89,3,3,0
2015-04-07,21:00:00,64,46,26,74,46,0.6,0.337,39,30,87,93,88,89,8,3,0
2015-04-07,22:00:00,85,63,27,67,47,0.7,0.35,42,31,86,93,88,89,13,4,0
2015-04-07,23:00:00,90,67,28,74,47,0.7,0.362,47,31,75,93,86,89,10,4,0
2015-04-08,00:00:00,100,75,29,88,49,0.7,0.375,51,31,64,93,84,89,13,4,0
2015-04-08,01:00:00,102,76,30,89,50,0.7,0.383,60,31,54,93,79,89,13,5,0
2015-04-08,02:00:00,99,74,31,91,51,0.7,0.392,54,30,54,93,74,89,15,5,0
2015-04-08,03:00:00,118,89,34,101,54,0.7,0.412,54,32,51,93,70,89,16,5,0
2015-04-08,04:00:00,127,96,38,101,60,0.7,0.433,57,33,40,93,64,89,14,6,0
2015-04-08,05:00:00,132,100,42,100,62,0.7,0.454,57,35,39,93,58,89,12,6,0
2015-04-08,06:00:00,132,100,45,102,68,0.8,0.479,80,37,17,93,49,89,9,7,0
2015-04-08,07:00:00,120,91,49,133,74,1,0.508,97,40,4,93,40,89,7,7,0
2015-04-08,08:00:00,125,95,52,152,82,1.2,0.542,98,42,6,93,33,89,9,7,0
2015-04-08,09:00:00,138,105,56,148,85,1.2,0.575,93,45,18,93,29,89,15,8,0
2015-04-08,10:00:00,152,116,60,125,88,1,0.604,66,47,47,93,28,89,36,9,0
2015-04-08,11:00:00,128,97,63,0,88,0.9,0.633,46,48,73,93,30,89,42,11,0
2015-04-08,13:00:00,100,75,68,85,87,0.6,0.662,27,49,108,108,46,89,21,12,0
2015-04-08,15:00:00,125,95,74,116,90,0.7,0.696,28,50,112,112,71,89,16,14,0
2015-04-08,16:00:00,139,106,77,0,92,0.7,0.712,28,50,106,112,84,89,14,14,0
2015-04-08,17:00:00,144,110,80,0,95,0.8,0.733,33,50,98,112,94,94,15,15,0
2015-04-08,18:00:00,166,126,85,0,99,0.9,0.758,40,51,94,112,100,100,16,15,0
2015-04-08,19:00:00,169,128,89,0,101,0.9,0.779,47,52,86,112,101,101,17,16,0
2015-04-08,20:00:00,180,136,93,0,103,0.9,0.8,60,53,58,112,97,101,15,17,0
2015-04-08,21:00:00,198,148,97,0,105,1,0.817,65,54,43,112,89,101,15,17,0
2015-04-08,22:00:00,190,143,100,0,108,1,0.829,75,55,27,112,78,101,16,17,0
2015-04-08,23:00:00,190,143,104,0,110,1,0.842,71,56,26,112,67,101,18,17,0
2015-04-09,00:00:00,193,145,106,0,112,1,0.854,71,57,23,112,57,101,18,17,0
2015-04-09,01:00:00,160,122,108,0,114,0.9,0.862,73,58,16,112,47,101,23,18,0
2015-04-09,02:00:00,168,127,111,129,117,1.1,0.879,87,59,4,112,35,101,18,18,0
2015-04-09,03:00:00,179,135,113,0,118,1.3,0.904,83,60,3,112,25,101,15,18,0
2015-04-09,04:00:00,182,137,114,0,120,1.5,0.938,87,61,3,112,18,101,17,18,0
2015-04-09,05:00:00,159,121,115,0,122,1.4,0.967,83,62,3,112,13,101,14,18,0
2015-04-09,06:00:00,190,143,117,153,128,1.6,1,84,63,4,112,10,101,14,18,0
2015-04-09,07:00:00,188,141,119,155,131,1.6,1.025,82,62,4,112,8,101,17,19,0
2015-04-09,08:00:00,188,141,121,152,131,1.4,1.033,80,61,6,112,5,101,27,20,0
2015-04-09,09:00:00,192,144,123,156,131,1.5,1.046,88,61,12,112,5,101,39,21,0
2015-04-09,10:00:00,199,149,124,157,135,1.5,1.067,85,62,24,112,7,101,44,21,0
2015-04-09,11:00:00,215,165,127,170,138,1.5,1.092,89,64,36,112,12,101,40,21,0
2015-04-09,12:00:00,245,195,132,0,138,1.4,1.121,89,66,55,112,18,101,34,21,0
2015-04-09,14:00:00,250,200,141,0,148,1.2,1.171,59,70,123,123,43,101,28,22,0
2015-04-09,15:00:00,246,196,146,0,153,1.2,1.192,40,70,149,149,61,101,29,22,0
2015-04-09,16:00:00,230,180,149,0,153,1.1,1.208,42,71,140,149,78,101,25,23,0
2015-04-09,17:00:00,196,147,150,0,153,0.9,1.212,42,71,131,149,92,101,20,23,0
2015-04-09,18:00:00,218,168,152,0,153,1.1,1.221,54,72,127,149,105,105,22,23,0
2015-04-09,19:00:00,254,204,155,0,153,1.2,1.233,66,72,116,149,115,115,22,23,0
2015-04-09,20:00:00,271,221,159,0,153,1.3,1.25,66,73,107,149,122,122,24,24,0
2015-04-09,21:00:00,287,237,162,0,153,1.4,1.267,61,72,108,149,125,125,26,24,0
2015-04-09,22:00:00,292,242,167,0,153,1.4,1.283,65,72,92,149,121,125,24,24,0
2015-04-09,23:00:00,296,246,171,0,153,1.4,1.3,66,72,77,149,112,125,23,25,0
2015-04-10,00:00:00,293,243,175,0,153,1.4,1.317,72,72,62,149,102,125,21,25,0
2015-04-10,01:00:00,298,248,180,0,153,1.4,1.337,74,72,51,149,92,125,18,25,0
2015-04-10,02:00:00,301,251,185,0,157,1.6,1.358,113,73,11,149,78,125,11,24,0
2015-04-10,03:00:00,280,230,189,0,157,1.5,1.367,126,75,3,149,64,125,10,24,0
2015-04-10,04:00:00,295,245,194,0,157,1.5,1.367,125,76,3,149,51,125,8,24,0
2015-04-10,05:00:00,278,228,198,0,157,1.5,1.371,105,77,3,149,38,125,8,23,0
2015-04-10,06:00:00,263,213,201,0,158,1.6,1.371,97,78,3,149,27,125,8,23,0
2015-04-10,07:00:00,257,207,204,0,159,1.6,1.371,91,78,4,149,18,125,8,23,0
2015-04-10,08:00:00,255,205,207,0,161,1.6,1.379,94,79,7,149,11,125,20,23,0
2015-04-10,09:00:00,266,216,210,0,164,1.6,1.383,92,79,15,149,6,125,31,22,0
2015-04-10,11:00:00,282,232,216,0,0,1.4,1.375,80,79,61,149,16,125,30,21,0
2015-04-10,12:00:00,294,244,218,0,0,1.4,1.375,76,78,87,149,26,125,28,21,0
2015-04-10,15:00:00,173,131,211,0,0,0.7,1.321,34,75,155,155,76,125,11,19,0
2015-04-10,16:00:00,160,122,209,0,0,0.7,1.304,34,75,171,171,97,125,11,19,0
2015-04-10,17:00:00,150,115,207,0,0,0.7,1.296,34,75,170,171,116,125,12,18,0
2015-04-10,18:00:00,147,112,205,0,0,0.7,1.279,43,74,148,171,131,131,9,18,0
2015-04-10,19:00:00,95,71,199,0,0,0.7,1.258,77,75,76,171,133,133,6,17,0
2015-04-10,20:00:00,89,66,193,0,0,0.7,1.233,104,76,41,171,127,133,6,16,0
2015-04-10,21:00:00,125,95,187,0,0,1.3,1.229,152,80,5,171,113,133,6,16,0
2015-04-10,22:00:00,145,111,182,133,133,1.3,1.225,120,82,24,171,99,133,8,15,0
2015-04-10,23:00:00,89,66,174,0,133,0.6,1.192,43,81,84,171,90,133,10,14,0
2015-04-11,00:00:00,102,76,167,0,133,0.7,1.162,78,82,48,171,74,133,11,14,0
2015-04-11,01:00:00,156,119,162,166,150,1,1.146,112,83,17,171,55,133,13,14,0
2015-04-11,02:00:00,266,216,160,221,173,1.9,1.158,85,82,27,171,40,133,17,14,0
2015-04-11,03:00:00,324,274,162,0,173,3,1.221,88,80,24,171,34,133,32,15,0
2015-04-11,04:00:00,308,258,163,0,173,3.7,1.312,85,79,21,171,31,133,39,16,0
2015-04-11,05:00:00,300,250,164,0,173,3.7,1.404,87,78,11,171,32,133,27,17,0
2015-04-11,06:00:00,294,244,165,0,173,3.5,1.483,79,77,14,171,31,133,26,18,0
2015-04-11,07:00:00,294,244,166,0,173,3.4,1.558,73,77,20,171,23,133,30,19,0
2015-04-11,08:00:00,284,234,168,0,173,3.3,1.629,64,75,42,171,22,133,46,20,0
2015-04-11,09:00:00,256,206,167,0,173,2.7,1.675,48,74,74,171,29,133,47,20,0
2015-04-11,10:00:00,226,176,165,0,173,2.1,1.704,38,72,98,171,38,133,36,21,0
2015-04-11,11:00:00,218,168,163,0,173,1.9,1.725,36,70,112,171,49,133,30,21,0
2015-04-11,12:00:00,179,135,158,0,173,1.9,1.746,31,68,134,171,63,133,27,21,0
2015-04-11,13:00:00,196,147,156,0,173,2.1,1.792,37,67,138,171,79,133,26,21,0
2015-04-11,14:00:00,166,126,157,0,173,1.4,1.821,28,67,147,171,96,133,18,21,0
2015-04-11,15:00:00,125,95,155,0,173,1.1,1.838,26,67,151,171,112,133,14,21,0
2015-04-11,17:00:00,134,102,154,0,173,1,1.867,33,66,130,151,132,133,12,21,0
2015-04-11,18:00:00,142,108,154,0,173,1.3,1.892,43,66,110,151,133,133,15,22,0
2015-04-11,19:00:00,183,138,156,0,173,1.8,1.937,50,65,100,151,132,133,19,22,0
2015-04-11,20:00:00,193,145,160,0,173,2,1.992,52,63,85,151,126,133,25,23,0
2015-04-11,21:00:00,173,131,161,0,173,1.6,2.004,44,59,72,151,117,133,19,23,0
2015-04-11,23:00:00,39,27,159,0,194,0.7,2.008,29,55,63,151,96,133,3,23,0
2015-04-12,00:00:00,22,15,156,0,194,0.5,2,26,53,60,151,86,133,2,23,0
2015-04-12,02:00:00,18,12,143,0,0,0.4,1.917,29,47,51,151,68,133,2,22,0
2015-04-12,03:00:00,38,26,133,0,0,0.3,1.804,20,44,52,151,62,133,2,20,0
2015-04-12,04:00:00,38,16,123,38,38,0.3,1.662,12,41,58,151,59,133,3,19,0
2015-04-12,05:00:00,20,10,113,0,38,0.3,1.521,12,38,63,151,58,133,3,18,0
2015-04-12,06:00:00,22,11,103,13,26,0.3,1.387,13,35,68,151,58,133,2,17,0
2015-04-12,07:00:00,22,11,93,12,21,0.3,1.258,16,33,68,151,59,133,2,16,0
2015-04-12,08:00:00,21,5,84,18,20,0.3,1.133,18,31,66,151,60,133,2,14,0
2015-04-12,09:00:00,22,14,76,22,21,0.3,1.033,19,30,65,151,61,133,2,12,0
2015-04-12,10:00:00,28,9,69,28,22,0.3,0.958,17,29,70,151,64,133,2,11,0
2015-04-12,12:00:00,42,14,58,42,27,0.3,0.825,9,27,82,151,70,133,2,8,0
2015-04-12,13:00:00,52,18,52,54,30,0.3,0.75,13,26,81,151,72,133,2,7,0
2015-04-12,14:00:00,30,19,48,30,30,0.3,0.704,13,25,85,151,74,133,2,7,0
2015-04-12,15:00:00,30,19,45,30,30,0.3,0.671,13,25,85,143,76,133,2,6,0
2015-04-12,16:00:00,28,18,41,21,29,0.3,0.638,13,24,89,130,79,133,2,6,0
2015-04-12,17:00:00,28,19,38,0,29,0.3,0.608,14,23,88,110,82,133,2,5,0
2015-04-12,18:00:00,28,19,34,0,29,0.3,0.567,14,22,89,100,84,132,2,5,0
2015-04-12,19:00:00,27,12,29,15,28,0.3,0.504,16,21,85,89,86,126,2,4,0
2015-04-12,20:00:00,27,12,23,0,28,0.4,0.438,16,19,84,89,86,117,2,3,0
2015-04-12,21:00:00,27,13,18,0,28,0.3,0.383,15,18,85,89,86,107,2,2,0
2015-04-12,22:00:00,28,12,15,21,28,0.3,0.342,12,17,87,89,86,96,2,2,0
2015-04-12,23:00:00,28,16,15,0,28,0.3,0.325,12,16,88,89,87,87,2,2,0
2015-04-13,00:00:00,26,10,15,0,28,0.3,0.317,16,16,82,89,86,87,2,2,0
2015-04-13,01:00:00,25,13,15,0,28,0.3,0.308,20,15,77,89,85,87,2,2,0
2015-04-13,02:00:00,27,15,15,15,27,0.3,0.304,14,15,84,89,84,87,2,2,0
2015-04-13,03:00:00,29,17,14,17,26,0.3,0.304,9,14,92,92,85,87,2,2,0
2015-04-13,04:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-04-13,05:00:00,30,13,14,0,25,0.3,0.304,10,14,94,94,86,87,2,2,0
2015-04-13,06:00:00,28,17,15,0,26,0.3,0.304,16,14,88,94,86,87,2,2,0
2015-04-13,08:00:00,25,17,16,17,27,0.4,0.313,30,15,78,94,85,87,2,2,0
2015-04-13,09:00:00,28,19,16,26,27,0.4,0.317,25,15,88,94,86,87,2,2,0
2015-04-13,10:00:00,31,18,16,30,28,0.4,0.322,20,16,99,99,89,89,2,2,0
2015-04-13,11:00:00,34,16,16,24,26,0.4,0.326,18,16,108,108,91,91,2,2,0
2015-04-13,12:00:00,36,10,16,29,25,0.4,0.33,19,16,113,113,94,94,2,2,0
2015-04-13,14:00:00,75,55,17,0,22,0.5,0.343,23,17,121,121,101,101,5,2,0
2015-04-13,15:00:00,52,36,18,0,22,0.4,0.348,23,17,132,132,107,107,4,2,0
2015-04-13,17:00:00,50,35,20,0,22,0.5,0.361,34,19,126,134,119,119,4,2,0
2015-04-13,18:00:00,53,37,21,48,24,0.5,0.37,42,20,129,134,122,122,4,2,0
2015-04-13,19:00:00,59,42,22,50,27,0.5,0.378,47,21,121,134,124,124,3,3,0
2015-04-13,20:00:00,64,46,23,58,30,0.6,0.387,55,23,99,134,122,124,3,3,0
2015-04-13,21:00:00,67,48,25,55,32,0.6,0.4,51,25,97,134,120,124,3,3,0
2015-04-13,22:00:00,77,56,27,0,33,0.6,0.413,61,27,82,134,115,124,3,3,0
2015-04-13,23:00:00,80,59,29,62,35,0.7,0.43,64,29,70,134,107,124,4,3,0
2015-04-14,00:00:00,87,64,31,65,37,0.7,0.448,64,31,62,134,98,124,4,3,0
2015-04-14,02:00:00,94,70,36,74,43,0.9,0.496,106,38,10,134,73,124,2,3,0
2015-04-14,03:00:00,90,67,38,70,47,0.8,0.517,106,42,3,134,58,124,2,3,0
2015-04-14,04:00:00,95,71,39,72,48,1,0.538,104,44,3,134,46,124,2,3,0
2015-04-14,05:00:00,97,72,42,76,50,1,0.567,88,48,3,134,34,124,2,3,0
2015-04-14,07:00:00,110,83,47,137,58,1.4,0.65,104,55,4,134,16,124,2,3,0
2015-04-14,08:00:00,94,70,49,0,60,0.9,0.671,88,57,16,134,10,124,4,3,0
2015-04-14,09:00:00,89,66,51,77,63,0.8,0.688,81,59,31,134,9,124,6,3,0
2015-04-14,10:00:00,64,46,52,73,65,0.9,0.708,81,62,39,134,13,124,8,3,0
2015-04-14,11:00:00,87,64,54,0,68,0.8,0.725,70,64,56,134,19,124,10,4,0
2015-04-14,12:00:00,117,88,58,0,70,0.7,0.738,59,66,77,134,29,124,9,4,0
2015-04-14,13:00:00,88,65,60,65,73,0.7,0.75,67,68,87,134,39,124,6,4,0
2015-04-14,14:00:00,98,73,60,95,74,0.7,0.758,76,70,98,134,51,124,6,4,0
2015-04-14,15:00:00,57,40,60,57,73,0.5,0.763,54,71,130,134,67,124,5,4,0
2015-04-14,16:00:00,77,56,61,61,72,0.5,0.767,42,72,145,145,83,124,5,4,0
2015-04-14,17:00:00,88,65,62,78,73,0.5,0.767,44,72,145,145,97,124,6,4,0
2015-04-14,18:00:00,89,66,63,75,74,0.6,0.771,56,73,114,145,106,124,6,4,0
2015-04-14,19:00:00,90,67,64,73,75,0.6,0.775,59,73,108,145,113,122,6,5,0
2015-04-14,22:00:00,74,54,65,74,77,0.6,0.779,75,75,70,145,110,114,10,5,0
2015-04-15,00:00:00,84,62,65,110,80,0.7,0.775,83,76,44,145,88,114,15,6,0
2015-04-15,01:00:00,94,70,65,103,82,0.7,0.771,96,77,27,145,74,114,16,7,0
2015-04-15,02:00:00,90,67,65,116,84,0.8,0.767,112,78,8,145,60,114,13,7,0
2015-04-15,03:00:00,102,76,65,120,86,1.1,0.779,114,78,3,145,47,114,8,7,0
2015-04-15,04:00:00,95,71,65,140,90,1.2,0.787,113,78,4,145,38,114,6,8,0
2015-04-15,05:00:00,112,84,66,167,94,1.4,0.804,114,79,4,145,28,114,6,8,0
2015-04-15,06:00:00,125,95,66,164,96,1.4,0.808,113,80,4,145,19,114,7,8,0
2015-04-15,07:00:00,132,100,67,165,98,1.5,0.812,109,80,4,145,12,114,9,8,0
2015-04-15,08:00:00,153,117,69,183,102,1.5,0.837,110,81,5,145,7,114,17,9,0
2015-04-15,09:00:00,165,125,71,187,107,1.5,0.867,129,83,9,145,5,114,23,9,0
2015-04-15,10:00:00,198,148,76,223,113,1.5,0.892,148,86,12,145,6,114,25,10,0
2015-04-15,11:00:00,295,245,83,0,113,1.5,0.921,156,89,16,145,7,114,29,11,0
2015-04-15,12:00:00,262,212,88,0,113,1.5,0.954,151,93,25,145,10,114,30,12,0
2015-04-15,13:00:00,195,146,92,195,119,1.4,0.983,136,96,51,145,16,114,30,13,0
2015-04-15,14:00:00,205,155,95,187,124,1.2,1.004,91,97,99,145,28,114,34,14,0
2015-04-15,15:00:00,40,0,0,0,0,1.2,1.033,78,98,128,145,43,114,27,15,0
2015-04-15,16:00:00,112,84,99,155,131,1.2,1.062,72,99,124,145,58,114,34,16,0
2015-04-15,17:00:00,189,142,102,171,136,1.2,1.092,78,100,122,128,72,114,32,17,0
2015-04-15,18:00:00,183,138,105,315,147,1.2,1.117,88,102,101,128,83,114,26,18,0
2015-04-15,19:00:00,500,276,114,1000,191,0.4,1.108,20,100,83,128,92,114,2,18,0
2015-04-15,20:00:00,500,111,117,1000,235,0.3,1.096,19,98,86,128,99,113,2,18,0
2015-04-15,21:00:00,387,78,118,489,255,0.3,1.079,18,96,88,128,104,110,2,17,0
2015-04-15,22:00:00,318,74,119,434,272,0.3,1.067,20,93,79,128,101,104,2,17,0
2015-04-15,23:00:00,500,78,120,634,298,0.3,1.054,16,91,82,128,96,104,2,17,0
2015-04-16,00:00:00,344,78,120,455,314,0.3,1.037,12,88,87,128,91,104,2,16,0
2015-04-16,01:00:00,377,78,121,481,332,0.2,1.017,10,84,91,128,87,104,2,15,0
2015-04-16,02:00:00,200,58,120,350,344,0.2,0.992,9,80,91,128,86,104,2,15,0
2015-04-16,03:00:00,143,36,119,235,349,0.2,0.954,8,76,90,128,87,104,2,15,0
2015-04-16,04:00:00,101,30,117,151,350,0.2,0.912,8,71,81,128,86,104,2,15,0
2015-04-16,05:00:00,67,20,114,83,346,0.2,0.862,5,67,82,128,85,104,2,14,0
2015-04-16,06:00:00,58,15,111,66,341,0.2,0.812,8,62,81,128,86,104,2,14,0
2015-04-16,07:00:00,50,10,107,50,335,0.3,0.762,18,59,70,128,84,104,2,14,0
2015-04-16,08:00:00,50,8,102,50,329,0.3,0.712,16,55,71,128,82,104,2,13,0
2015-04-16,09:00:00,36,7,97,36,322,0.3,0.662,12,50,77,128,80,104,2,12,0
2015-04-16,10:00:00,51,7,91,51,314,0.3,0.612,14,44,78,128,79,104,2,11,0
2015-04-16,11:00:00,51,12,81,51,302,0.3,0.563,16,38,82,128,78,104,5,10,0
2015-04-16,12:00:00,42,6,72,42,290,0.3,0.513,15,33,88,128,79,104,2,9,0
2015-04-16,13:00:00,32,14,66,32,283,0.3,0.467,15,28,92,128,80,104,2,8,0
2015-04-16,14:00:00,36,3,59,36,277,0.2,0.425,16,25,96,128,82,104,2,7,0
2015-04-16,15:00:00,31,0,59,27,266,0.3,0.388,17,22,99,124,85,104,5,6,0
2015-04-16,16:00:00,31,0,0,28,261,0.3,0.35,17,20,99,122,89,104,2,5,0
2015-04-16,17:00:00,42,0,0,42,256,0.3,0.312,25,18,96,101,91,104,2,3,0
2015-04-16,18:00:00,69,0,0,88,246,0.3,0.275,29,15,94,99,93,104,2,2,0
2015-04-16,20:00:00,86,0,0,121,172,0.4,0.279,46,17,76,99,92,104,5,2,0
2015-04-16,21:00:00,90,0,0,130,157,0.4,0.283,42,18,75,99,90,101,7,3,0
2015-04-16,22:00:00,96,0,0,141,145,0.5,0.292,50,19,61,99,86,96,12,3,0
2015-04-16,23:00:00,101,0,0,152,125,0.5,0.3,51,21,54,99,80,94,15,4,0
2015-04-17,00:00:00,102,0,0,154,112,0.5,0.308,44,22,54,99,75,94,15,4,0
2015-04-17,01:00:00,100,0,0,150,98,0.5,0.321,48,24,50,99,69,94,16,5,0
2015-04-17,02:00:00,101,0,0,152,90,0.5,0.333,46,25,50,99,64,94,15,5,0
2015-04-17,03:00:00,101,0,0,152,87,0.5,0.346,41,26,50,99,59,94,15,6,0
2015-04-17,04:00:00,99,0,0,148,87,0.5,0.358,45,28,46,99,55,94,15,6,0
2015-04-17,05:00:00,97,0,0,143,89,0.5,0.371,45,30,40,99,51,94,16,7,0
2015-04-17,06:00:00,98,0,0,145,92,0.5,0.383,55,32,27,99,46,94,14,7,0
2015-04-17,07:00:00,100,0,0,150,97,0.7,0.4,70,34,12,99,41,94,13,8,0
2015-04-17,08:00:00,106,0,0,161,101,0.8,0.421,72,36,16,99,36,94,18,9,0
2015-04-17,09:00:00,117,56,16,183,107,1,0.45,84,39,14,99,32,94,15,9,0
2015-04-17,10:00:00,126,72,27,201,114,1,0.479,95,42,16,99,28,94,14,10,0
2015-04-17,11:00:00,126,81,39,201,120,1.1,0.512,106,46,20,99,24,94,14,10,0
2015-04-17,12:00:00,128,78,51,206,127,1.1,0.546,103,50,35,99,22,94,22,11,0
2015-04-17,13:00:00,114,72,60,178,133,0.8,0.567,75,52,67,99,26,94,22,12,0
2015-04-17,14:00:00,111,74,72,172,138,0.7,0.588,52,54,96,99,34,94,24,13,0
2015-04-17,15:00:00,108,69,72,166,144,0.7,0.604,44,55,106,106,46,94,26,13,0
2015-04-17,17:00:00,103,60,70,156,154,0.7,0.637,51,57,111,118,71,94,27,15,0
2015-04-17,18:00:00,128,64,70,206,159,0.7,0.654,50,58,110,118,83,94,21,16,0
2015-04-17,19:00:00,148,72,70,245,165,0.7,0.667,56,59,110,118,94,94,25,17,0
2015-04-17,20:00:00,149,106,73,247,170,1.2,0.7,76,60,87,118,101,101,51,19,0
2015-04-17,21:00:00,158,120,77,243,175,1.5,0.746,96,62,58,118,100,101,53,21,0
2015-04-17,22:00:00,147,112,79,227,178,1.3,0.779,94,64,60,118,95,101,42,22,0
2015-04-17,23:00:00,195,146,84,222,181,1.2,0.808,90,66,56,118,89,101,35,23,0
2015-04-18,00:00:00,303,253,94,0,182,1.5,0.85,146,70,6,118,75,101,32,24,0
2015-04-18,01:00:00,158,120,96,241,186,1.3,0.883,142,74,4,118,61,101,28,24,0
2015-04-18,02:00:00,160,122,97,250,191,1.2,0.912,136,78,4,118,48,101,30,25,0
2015-04-18,03:00:00,158,120,98,246,195,1,0.933,129,81,3,118,35,101,26,25,0
2015-04-18,04:00:00,152,116,99,241,199,1,0.954,126,85,3,118,24,101,24,26,0
2015-04-18,05:00:00,150,115,100,232,203,1,0.975,119,88,3,118,17,101,20,26,0
2015-04-18,06:00:00,158,116,101,265,208,1.3,1.008,121,91,3,118,10,101,20,26,0
2015-04-18,07:00:00,185,139,102,298,214,1.4,1.037,121,93,3,118,4,101,23,27,0
2015-04-18,08:00:00,198,148,104,319,221,1.6,1.071,117,95,5,118,4,101,29,27,0
2015-04-18,09:00:00,203,153,108,332,228,1.8,1.104,120,96,7,118,4,101,36,28,0
2015-04-18,10:00:00,210,160,112,324,233,1.7,1.133,111,97,27,118,7,101,48,29,0
2015-04-18,11:00:00,221,171,116,345,239,1.7,1.158,116,97,38,118,11,101,46,31,0
2015-04-18,12:00:00,231,181,120,333,245,1.6,1.179,112,98,59,118,18,101,43,32,0
2015-04-18,13:00:00,215,165,124,345,252,1.6,1.213,93,98,91,118,29,101,43,32,0
2015-04-18,14:00:00,218,168,128,315,258,1.7,1.254,82,100,113,118,43,101,42,33,0
2015-04-18,15:00:00,222,172,132,324,265,1.9,1.304,88,101,112,118,56,101,41,34,0
2015-04-18,16:00:00,225,175,136,323,273,2.5,1.379,92,103,101,113,68,101,44,35,0
2015-04-18,17:00:00,225,175,141,313,280,3.1,1.479,88,105,108,113,81,101,55,36,0
2015-04-18,18:00:00,208,158,145,284,283,2.8,1.567,73,106,122,122,93,101,50,37,0
2015-04-18,19:00:00,212,162,149,280,285,2.9,1.658,79,107,103,122,101,101,47,38,0
2015-04-19,09:00:00,117,88,121,122,239,0.3,1.391,21,73,71,122,39,106,2,25,0
2015-04-19,10:00:00,95,70,117,139,228,0.3,1.33,13,69,84,122,43,106,2,23,0
2015-04-19,13:00:00,69,10,98,87,181,0.2,1.148,14,56,105,122,70,106,2,17,0
2015-04-19,14:00:00,67,39,92,83,167,0.3,1.087,15,53,107,122,81,106,2,16,0
2015-04-19,15:00:00,62,25,86,73,151,0.3,1.017,15,50,109,122,91,106,2,14,0
2015-04-19,16:00:00,68,18,79,86,136,0.3,0.922,15,47,111,122,98,106,2,12,0
2015-04-19,17:00:00,59,22,72,67,121,0.3,0.8,15,44,109,122,103,106,2,10,0
2015-04-19,18:00:00,147,35,67,244,118,1,0.722,50,43,87,111,104,106,12,8,0
2015-04-19,19:00:00,130,94,64,209,114,1.4,0.657,69,42,62,111,99,106,18,7,0
2015-04-19,20:00:00,139,106,66,174,117,1.1,0.675,54,43,60,111,94,106,14,7,0
2015-04-19,21:00:00,127,96,68,147,123,1,0.692,55,43,51,111,87,104,14,7,0
2015-04-19,22:00:00,115,87,69,127,123,0.9,0.688,53,42,45,111,79,104,15,7,0
2015-04-19,23:00:00,108,81,67,127,122,1,0.679,59,41,32,111,70,104,14,8,0
2015-04-20,00:00:00,100,75,66,121,122,1,0.675,61,41,24,111,59,104,11,8,0
2015-04-20,01:00:00,105,79,65,111,122,1,0.675,63,42,18,111,47,104,9,8,0
2015-04-20,02:00:00,115,87,65,115,121,1.1,0.679,76,43,4,111,37,104,8,8,0
2015-04-20,03:00:00,105,79,64,113,121,1,0.679,75,44,2,111,30,104,6,7,0
2015-04-20,04:00:00,115,87,64,118,121,1.1,0.688,73,44,2,111,22,104,6,7,0
2015-04-20,05:00:00,108,81,65,125,121,1.2,0.708,74,44,2,111,16,104,6,7,0
2015-04-20,06:00:00,117,88,66,145,124,1.3,0.733,78,44,4,111,11,104,7,7,0
2015-04-20,07:00:00,115,87,66,167,126,1.3,0.762,78,45,2,111,7,104,8,7,0
2015-04-20,08:00:00,134,102,66,152,127,1.3,0.8,82,47,5,111,5,104,12,7,0
2015-04-20,09:00:00,135,103,67,122,127,0.9,0.825,74,49,24,111,6,104,11,8,0
2015-04-20,10:00:00,94,70,67,80,124,0.8,0.846,69,52,37,111,10,104,8,8,0
2015-04-20,12:00:00,54,38,68,43,123,0.4,0.862,38,54,83,111,27,104,2,8,0
2015-04-20,13:00:00,56,36,69,62,122,0.4,0.871,42,56,90,111,38,104,4,8,0
2015-04-20,14:00:00,55,28,68,60,121,0.3,0.871,31,56,115,115,52,104,3,8,0
2015-04-20,16:00:00,59,38,70,67,120,0.4,0.875,27,57,127,127,83,104,3,8,0
2015-04-20,17:00:00,80,59,72,110,122,0.5,0.883,32,58,134,134,97,104,5,8,0
2015-04-20,19:00:00,98,73,72,143,112,0.7,0.833,40,56,136,136,118,118,19,8,0
2015-04-20,20:00:00,148,113,73,219,114,1.2,0.838,48,56,142,142,126,126,36,9,0
2015-04-20,21:00:00,179,135,74,202,117,1.6,0.863,56,56,115,142,129,129,31,10,0
2015-04-20,22:00:00,139,106,75,142,117,1.2,0.875,54,56,95,142,126,129,23,10,0
2015-04-20,23:00:00,114,86,75,135,118,0.9,0.871,48,56,86,142,121,129,22,11,0
2015-04-21,00:00:00,105,79,75,121,118,0.8,0.863,52,55,74,142,115,129,21,11,0
2015-04-21,01:00:00,88,65,75,113,118,0.6,0.846,44,55,76,142,107,129,19,11,0
2015-04-21,02:00:00,73,52,73,96,117,0.5,0.821,39,53,81,142,101,129,19,12,0
2015-04-21,03:00:00,78,57,73,105,117,0.6,0.804,43,52,72,142,93,129,19,12,0
2015-04-21,04:00:00,77,55,71,103,116,0.6,0.783,53,51,55,142,82,129,17,13,0
2015-04-21,05:00:00,76,55,70,101,115,0.7,0.763,57,50,45,142,73,129,14,13,0
2015-04-21,06:00:00,82,60,69,109,113,0.8,0.742,86,50,13,142,63,129,11,13,0
2015-04-21,07:00:00,92,68,68,118,111,0.9,0.725,85,51,14,142,54,129,14,14,0
2015-04-21,08:00:00,125,95,68,137,111,1,0.712,82,51,25,142,48,129,16,14,0
2015-04-21,09:00:00,148,113,68,159,112,1.1,0.721,84,51,45,142,44,129,17,14,0
2015-04-21,10:00:00,163,124,70,181,117,1.3,0.742,104,53,42,142,39,129,16,14,0
2015-04-21,11:00:00,160,122,74,203,120,1.3,0.775,117,55,48,142,36,129,18,15,0
2015-04-21,12:00:00,156,119,77,151,125,1,0.8,84,57,91,142,40,129,17,16,0
2015-04-21,13:00:00,104,78,79,85,126,0.6,0.808,38,57,122,142,50,129,10,16,0
2015-04-21,14:00:00,68,49,80,49,125,0.4,0.812,26,57,119,142,63,129,5,16,0
2015-04-21,15:00:00,99,42,80,148,129,0.4,0.817,33,57,90,142,73,129,2,16,0
2015-04-21,17:00:00,176,74,80,302,141,0.2,0.804,25,57,94,142,86,129,2,16,0
2015-04-21,18:00:00,112,29,78,173,144,0.2,0.792,19,56,98,142,94,129,2,16,0
2015-04-21,20:00:00,61,22,73,71,136,0.3,0.733,28,55,83,122,99,129,2,13,0
2015-04-21,21:00:00,51,13,68,51,130,0.3,0.679,32,54,75,122,93,126,2,12,0
2015-04-21,22:00:00,44,23,64,44,126,0.3,0.642,40,53,66,122,86,121,2,11,0
2015-04-21,23:00:00,48,18,61,48,122,0.4,0.621,51,53,52,122,81,115,2,10,0
2015-04-22,00:00:00,67,22,59,84,121,0.4,0.604,75,54,25,122,74,107,2,10,0
2015-04-22,01:00:00,58,24,57,65,119,0.6,0.604,100,56,5,122,63,101,3,9,0
2015-04-22,02:00:00,97,61,58,143,121,1.3,0.638,87,58,33,122,54,100,15,9,0
2015-04-22,03:00:00,82,60,58,98,120,1.2,0.662,87,60,40,122,47,100,11,9,0
2015-04-22,04:00:00,87,64,58,94,120,1.2,0.688,114,63,17,122,39,100,10,8,0
2015-04-22,05:00:00,89,66,59,87,119,1.1,0.704,84,64,26,122,33,100,8,8,0
2015-04-22,06:00:00,87,64,59,99,119,1.2,0.721,100,64,7,122,26,100,7,8,0
2015-04-22,07:00:00,90,67,59,112,119,1.1,0.729,104,65,8,122,20,100,14,8,0
2015-04-22,08:00:00,108,81,58,146,119,1.5,0.75,112,67,8,122,18,100,13,8,0
2015-04-22,09:00:00,137,104,58,189,120,1.7,0.775,130,68,2,122,18,100,13,8,0
2015-04-22,10:00:00,95,71,56,85,116,0.7,0.75,61,67,60,122,21,100,7,7,0
2015-04-22,11:00:00,74,54,53,78,111,0.5,0.717,34,63,92,122,28,100,6,7,0
2015-04-22,12:00:00,55,37,49,60,107,0.4,0.692,23,61,112,122,39,100,5,6,0
2015-04-22,14:00:00,70,41,47,89,108,0.4,0.679,22,60,136,136,68,100,6,6,0
2015-04-22,16:00:00,68,44,47,85,103,0.4,0.679,26,59,147,147,102,102,6,6,0
2015-04-22,18:00:00,99,39,46,147,93,0.4,0.696,33,60,142,147,129,129,10,7,0
2015-04-22,19:00:00,94,44,47,138,94,0.5,0.708,40,61,136,147,135,135,13,7,0
2015-04-22,20:00:00,78,42,48,106,96,0.4,0.712,44,61,115,147,135,135,17,8,0
2015-04-22,21:00:00,74,41,49,98,98,0.4,0.717,45,62,103,147,133,135,16,8,0
2015-04-22,22:00:00,73,43,50,95,100,0.4,0.721,43,62,100,147,128,135,14,9,0
2015-04-22,23:00:00,156,48,51,261,109,0.4,0.721,44,62,91,147,122,135,15,9,0
2015-04-23,00:00:00,84,51,53,118,110,0.5,0.725,45,60,84,147,114,135,18,10,0
2015-04-23,01:00:00,77,53,54,103,112,0.5,0.721,46,58,76,147,106,135,21,11,0
2015-04-23,02:00:00,75,55,53,100,110,0.5,0.688,47,57,68,147,97,135,25,11,0
2015-04-23,03:00:00,82,60,53,106,110,0.6,0.663,47,55,59,147,87,135,26,12,0
2015-04-23,04:00:00,97,72,54,104,111,0.6,0.638,61,53,39,147,78,135,28,13,0
2015-04-23,05:00:00,100,75,54,106,112,0.6,0.617,66,52,26,147,68,135,22,13,0
2015-04-23,06:00:00,89,66,54,115,112,0.8,0.6,93,52,3,147,56,135,18,14,0
2015-04-23,07:00:00,107,80,55,132,113,0.9,0.592,90,51,2,147,45,135,18,14,0
2015-04-23,08:00:00,134,102,56,149,113,1.2,0.579,92,50,2,147,34,135,23,14,0
2015-04-23,09:00:00,142,108,56,162,112,1.2,0.558,86,48,22,147,28,135,32,15,0
2015-04-23,10:00:00,130,99,57,133,114,1,0.571,76,49,42,147,24,135,30,16,0
2015-04-23,11:00:00,34,0,0,0,0,0.9,0.588,68,50,48,147,23,135,23,17,0
2015-04-23,12:00:00,36,0,0,0,0,1.2,0.621,71,52,67,147,26,135,41,18,0
2015-04-23,13:00:00,102,62,59,154,122,0.8,0.642,76,55,69,147,32,135,16,19,0
2015-04-23,14:00:00,104,74,61,157,125,0.8,0.658,80,57,81,147,42,135,14,19,0
2015-04-23,15:00:00,126,65,62,202,130,0.7,0.671,68,59,105,147,54,135,12,19,0
2015-04-23,16:00:00,72,50,62,94,131,0.5,0.675,46,60,132,142,71,135,9,19,0
2015-04-23,17:00:00,62,23,61,74,130,0.2,0.667,17,59,101,142,81,135,2,19,0
2015-04-23,18:00:00,74,11,60,98,127,0.1,0.654,15,59,96,136,87,135,2,19,0
2015-04-23,19:00:00,53,13,59,55,124,0.2,0.642,22,58,87,132,92,135,2,18,0
2015-04-23,20:00:00,54,14,57,58,122,0.2,0.633,28,57,79,132,94,133,2,18,0
2015-04-23,21:00:00,53,8,56,56,120,0.2,0.625,29,56,78,132,95,128,2,17,0
2015-04-23,22:00:00,75,15,55,100,120,0.3,0.621,61,57,41,132,90,122,2,17,0
2015-04-23,23:00:00,63,18,53,75,111,0.3,0.617,55,58,44,132,82,114,2,16,0
2015-04-24,00:00:00,146,26,52,242,117,0.5,0.617,65,59,39,132,71,106,6,16,0
2015-04-24,02:00:00,118,66,53,185,127,1,0.654,76,60,26,132,55,95,12,15,0
2015-04-24,03:00:00,107,52,53,164,130,0.7,0.658,60,61,39,132,49,95,10,14,0
2015-04-24,04:00:00,106,49,52,162,133,0.8,0.667,84,62,8,132,40,95,8,13,0
2015-04-24,05:00:00,109,53,51,167,135,1,0.683,102,63,4,132,31,95,7,13,0
2015-04-24,06:00:00,101,53,50,152,137,0.9,0.687,103,64,4,132,26,95,8,12,0
2015-04-24,07:00:00,107,52,49,164,139,1,0.692,100,64,8,132,22,95,12,12,0
2015-04-24,08:00:00,116,53,47,182,140,0.8,0.675,84,64,30,132,20,95,15,12,0
2015-04-24,09:00:00,120,44,44,189,141,0.7,0.654,52,62,66,132,23,95,11,11,0
2015-04-24,10:00:00,119,41,41,187,144,0.6,0.638,36,61,87,132,31,95,9,10,0
2015-04-24,11:00:00,106,33,41,161,145,0.5,0.621,28,59,103,132,39,95,8,9,0
2015-04-24,12:00:00,87,43,41,123,144,0.5,0.592,25,57,112,132,52,95,6,8,0
2015-04-24,13:00:00,82,35,40,113,142,0.4,0.575,23,55,126,132,67,95,6,8,0
2015-04-24,14:00:00,92,31,38,134,141,0.5,0.562,24,53,137,137,84,95,7,7,0
2015-04-24,15:00:00,96,39,37,141,138,0.5,0.554,26,51,144,144,101,101,7,7,0
2015-04-24,17:00:00,145,42,37,239,148,0.5,0.567,33,51,139,144,124,124,6,7,0
2015-04-24,19:00:00,118,54,40,185,156,0.6,0.604,45,53,140,144,136,136,10,8,0
2015-04-24,20:00:00,106,45,42,161,160,0.6,0.621,53,54,113,144,136,136,9,8,0
2015-04-24,21:00:00,106,49,43,162,165,0.7,0.642,54,55,108,144,133,136,10,8,0
2015-04-24,22:00:00,113,48,45,175,168,0.7,0.658,68,55,89,144,127,136,11,9,0
2015-04-24,23:00:00,104,54,46,158,172,0.7,0.675,65,56,78,144,119,136,11,9,0
2015-04-25,00:00:00,101,54,47,152,168,0.8,0.687,87,56,49,144,107,136,11,9,0
2015-04-25,01:00:00,104,65,47,157,164,1,0.692,116,59,16,144,92,136,10,9,0
2015-04-25,02:00:00,104,67,47,158,163,1.1,0.696,122,61,6,144,75,136,9,9,0
2015-04-25,03:00:00,111,72,48,172,163,1.2,0.717,135,64,3,144,58,136,9,9,0
2015-04-25,04:00:00,119,83,50,188,164,1.2,0.733,129,66,3,144,44,136,8,9,0
2015-04-25,05:00:00,116,85,51,182,165,1.1,0.737,123,67,3,144,31,136,9,9,0
2015-04-25,06:00:00,110,83,52,153,165,1,0.742,120,67,4,144,20,136,10,9,0
2015-04-25,07:00:00,111,74,53,171,165,1,0.742,110,68,6,144,11,136,11,9,0
2015-04-25,08:00:00,123,78,54,195,166,1.1,0.754,115,69,11,144,6,136,12,9,0
2015-04-25,09:00:00,186,140,58,184,166,1.1,0.771,120,72,20,144,7,136,10,9,0
2015-04-25,10:00:00,107,0,0,163,165,0.8,0.779,93,74,56,144,13,136,9,9,0
2015-04-25,11:00:00,106,0,0,162,165,1,0.8,105,77,73,144,22,136,9,9,0
2015-04-25,13:00:00,119,0,0,187,170,0.9,0.842,104,84,128,144,51,136,11,9,0
2015-04-25,14:00:00,96,0,0,142,170,0.7,0.85,54,85,188,188,74,136,11,10,0
2015-04-25,16:00:00,87,40,68,92,168,0.5,0.85,29,85,189,189,118,136,7,10,0
2015-04-25,17:00:00,75,31,67,99,162,0.5,0.85,29,85,170,189,137,137,9,10,0
2015-04-25,18:00:00,95,50,68,140,161,0.6,0.85,32,85,177,189,152,152,19,10,0
2015-04-25,19:00:00,109,57,68,168,160,0.7,0.854,40,85,181,189,166,166,34,11,0
2015-04-25,20:00:00,129,76,69,207,162,0.8,0.862,49,85,180,189,175,175,43,13,0
2015-04-25,21:00:00,139,106,72,222,164,1.1,0.879,56,85,171,189,180,180,39,14,0
2015-04-25,22:00:00,125,95,75,193,165,1.4,0.908,49,84,163,189,177,180,37,15,0
2015-04-25,23:00:00,115,87,77,180,166,1.2,0.929,38,83,150,189,173,180,32,16,0
2015-04-26,00:00:00,120,91,78,182,167,1,0.938,39,81,127,189,165,180,30,16,0
2015-04-26,01:00:00,122,92,80,167,168,0.9,0.933,41,78,109,189,157,180,28,17,0
2015-04-26,02:00:00,128,97,81,164,168,0.9,0.925,41,74,95,189,147,180,25,18,0
2015-04-26,03:00:00,132,100,83,160,168,0.9,0.912,46,71,81,189,134,180,23,19,0
2015-04-26,04:00:00,138,105,84,156,166,0.9,0.9,54,67,54,189,119,180,20,19,0
2015-04-26,05:00:00,148,113,86,151,165,1,0.896,55,65,45,189,103,180,13,19,0
2015-04-26,06:00:00,153,117,87,149,165,1.1,0.9,72,63,18,189,85,180,7,19,0
2015-04-26,07:00:00,153,117,90,173,165,1.3,0.912,104,62,4,189,67,180,10,19,0
2015-04-26,08:00:00,165,125,92,198,165,1.5,0.929,129,63,7,189,52,180,16,19,0
2015-04-26,09:00:00,192,144,92,249,168,1.4,0.942,134,64,22,189,41,180,23,20,0
2015-04-26,10:00:00,208,158,96,265,172,1.4,0.967,128,65,48,189,35,180,26,20,0
2015-04-26,11:00:00,216,166,99,240,175,1.2,0.975,76,64,120,189,40,180,30,21,0
2015-04-26,12:00:00,212,162,102,216,177,1.1,0.979,62,62,170,189,54,180,34,22,0
2015-04-26,14:00:00,163,124,105,180,180,1,0.996,29,59,228,228,101,180,28,24,0
2015-04-26,15:00:00,138,105,104,0,182,0.9,1.012,25,58,243,243,131,180,25,25,0
2015-04-26,16:00:00,114,84,106,150,184,0.9,1.029,27,58,228,243,159,180,25,25,0
2015-04-26,17:00:00,113,85,108,149,187,0.9,1.046,30,58,220,243,184,184,32,26,0
2015-04-26,19:00:00,119,73,110,188,188,0.8,1.067,32,58,206,243,216,216,22,27,0
2015-04-26,20:00:00,119,72,110,188,187,0.7,1.062,36,57,177,243,217,217,16,25,0
2015-04-26,21:00:00,111,58,108,171,185,0.6,1.042,35,56,142,243,209,217,10,24,0
2015-04-26,22:00:00,102,46,106,154,183,0.6,1.008,38,56,120,243,195,217,11,23,0
2015-04-26,23:00:00,92,47,105,133,181,0.6,0.983,40,56,109,243,178,217,10,22,0
2015-04-27,00:00:00,84,49,103,118,178,0.6,0.967,43,56,98,243,162,217,9,21,0
2015-04-27,01:00:00,92,55,101,133,177,0.6,0.954,42,56,89,243,146,217,8,20,0
2015-04-27,02:00:00,86,59,100,122,175,0.7,0.946,41,56,85,243,128,217,9,20,0
2015-04-27,03:00:00,90,67,98,116,173,0.7,0.938,37,56,90,243,114,217,10,19,0
2015-04-27,04:00:00,94,70,97,107,171,0.7,0.929,36,55,88,243,103,217,10,19,0
2015-04-27,05:00:00,100,75,95,99,168,0.8,0.921,34,54,83,243,95,217,10,19,0
2015-04-27,06:00:00,107,80,94,102,166,1,0.917,38,53,78,243,90,217,12,19,0
2015-04-27,07:00:00,114,86,92,124,164,1.2,0.912,97,53,19,243,79,217,13,19,0
2015-04-27,08:00:00,133,101,91,157,163,1.3,0.904,100,51,23,243,69,217,16,19,0
2015-04-27,09:00:00,140,107,90,154,158,1.2,0.896,73,49,60,243,66,217,21,19,0
2015-04-27,10:00:00,155,118,88,171,154,1.2,0.887,64,46,83,243,66,217,21,19,0
2015-04-27,11:00:00,162,123,86,176,152,1.2,0.887,51,45,113,243,68,217,24,19,0
2015-04-27,12:00:00,155,118,85,175,150,1,0.883,36,44,152,243,76,217,26,18,0
2015-04-27,13:00:00,156,119,84,161,147,1.1,0.887,30,43,191,243,90,217,25,18,0
2015-04-27,14:00:00,148,113,83,156,146,1.1,0.892,26,43,209,243,106,217,25,18,0
2015-04-27,15:00:00,113,0,0,168,147,1.2,0.904,31,44,226,228,132,217,25,18,0
2015-04-27,16:00:00,189,142,85,159,147,1.1,0.913,40,44,218,226,156,217,26,18,0
2015-04-27,17:00:00,129,98,85,155,147,1.1,0.921,38,45,210,226,175,217,25,17,0
2015-04-27,18:00:00,154,104,86,257,152,1,0.921,55,46,138,226,182,217,9,16,0
2015-04-27,19:00:00,78,57,85,0,150,0.8,0.921,59,47,79,226,178,217,3,16,0
2015-04-27,20:00:00,64,46,84,0,149,1,0.933,94,49,37,226,164,209,2,15,0
2015-04-27,21:00:00,104,78,85,106,146,1.1,0.954,117,53,19,226,142,195,3,15,0
2015-04-27,22:00:00,69,50,85,0,145,0.6,0.954,52,53,69,226,124,182,2,14,0
2015-04-27,23:00:00,64,46,85,49,141,0.7,0.958,56,54,55,226,103,182,2,14,0
2015-04-28,00:00:00,72,52,85,53,138,0.6,0.958,67,55,38,226,81,182,2,14,0
2015-04-28,01:00:00,67,48,85,0,138,0.6,0.958,65,56,39,226,59,182,2,13,0
2015-04-28,02:00:00,39,27,84,0,139,0.6,0.954,33,55,73,226,51,182,4,13,0
2015-04-28,03:00:00,46,32,82,34,135,0.8,0.958,37,55,72,226,50,182,5,13,0
2015-04-28,04:00:00,43,30,80,36,131,0.8,0.963,36,55,65,226,54,182,7,13,0
2015-04-28,05:00:00,49,27,78,49,129,0.7,0.958,44,56,54,226,58,182,6,13,0
2015-04-28,06:00:00,52,36,76,53,126,0.6,0.942,41,56,54,226,56,182,6,12,0
2015-04-28,07:00:00,56,38,74,62,123,0.7,0.921,50,54,44,226,55,182,6,12,0
2015-04-28,08:00:00,57,40,72,62,118,0.8,0.9,57,52,41,226,55,182,8,12,0
2015-04-28,09:00:00,63,45,69,60,113,0.9,0.887,44,51,72,226,59,182,12,12,0
2015-04-28,10:00:00,73,51,66,96,109,0.8,0.871,43,50,80,226,60,182,13,11,0
2015-04-28,13:00:00,58,41,57,58,93,0.6,0.812,37,49,92,226,74,182,8,9,0
2015-04-28,14:00:00,62,44,54,51,87,0.6,0.792,28,49,124,226,83,182,8,9,0
2015-04-28,15:00:00,59,42,53,55,81,0.6,0.767,25,49,142,218,95,182,8,8,0
2015-04-28,16:00:00,62,44,49,56,76,0.6,0.746,28,49,147,210,108,182,7,7,0
2015-04-28,17:00:00,67,48,47,65,71,0.6,0.725,29,48,154,154,118,182,7,6,0
2015-04-28,18:00:00,63,45,44,57,60,0.6,0.708,32,47,152,154,128,178,6,6,0
2015-04-28,19:00:00,54,36,43,58,60,0.6,0.7,33,46,156,156,134,164,6,6,0
2015-04-28,21:00:00,68,48,41,85,60,0.9,0.683,71,43,100,156,138,138,6,7,0
2015-04-28,22:00:00,82,60,42,114,62,1.3,0.712,97,45,64,156,130,138,8,7,0
2015-04-28,23:00:00,119,90,44,151,67,1.7,0.754,88,46,44,156,118,138,14,7,0
2015-04-29,00:00:00,137,104,46,119,70,1.7,0.8,72,46,41,156,104,138,17,8,0
2015-04-29,01:00:00,137,104,49,0,70,1.7,0.846,68,46,35,156,90,138,16,9,0
2015-04-29,03:00:00,147,112,56,0,72,1.7,0.929,77,49,12,156,56,138,12,9,0
2015-04-29,04:00:00,149,114,60,0,74,1.8,0.971,73,51,7,156,41,138,9,9,0
2015-04-29,05:00:00,149,114,64,0,75,1.9,1.021,81,52,2,156,29,138,7,9,0
2015-04-29,06:00:00,147,112,67,0,76,1.8,1.071,78,54,2,156,21,138,6,9,0
2015-04-29,07:00:00,155,118,71,0,77,1.8,1.117,74,55,4,156,16,138,8,10,0
2015-04-29,08:00:00,172,130,75,0,78,2.1,1.171,81,56,15,156,13,138,17,10,0
2015-04-29,09:00:00,185,139,79,147,83,2.1,1.221,89,58,31,156,12,138,20,10,0
2015-04-29,10:00:00,204,154,84,180,88,2.2,1.279,107,61,41,156,14,138,19,10,0
2015-04-29,11:00:00,211,161,87,177,94,2.2,1.342,104,64,78,156,22,138,19,11,0
2015-04-29,12:00:00,198,148,90,0,96,1.6,1.383,65,65,136,156,39,138,19,11,0
2015-04-29,13:00:00,163,124,93,135,101,1.3,1.412,37,65,185,185,62,138,16,11,0
2015-04-29,14:00:00,145,111,96,111,105,1.2,1.438,28,65,204,204,87,138,14,12,0
2015-04-29,15:00:00,153,117,99,126,110,1.4,1.471,30,65,215,215,113,138,14,12,0
2015-04-29,17:00:00,145,111,105,138,120,1.2,1.529,32,65,210,216,161,161,15,13,0
2015-04-29,18:00:00,144,110,107,121,124,1.1,1.55,39,66,184,216,178,178,15,13,0
2015-04-29,19:00:00,153,117,111,149,130,1.1,1.571,41,66,184,216,192,192,14,13,0
2015-04-29,21:00:00,156,119,117,132,138,1.1,1.588,52,65,144,216,190,196,12,14,0
2015-04-29,22:00:00,143,109,119,112,138,1.1,1.579,52,63,131,216,181,196,10,14,0
2015-04-29,23:00:00,137,104,120,109,135,1,1.55,50,61,118,216,169,196,8,14,0
2015-04-30,00:00:00,137,104,120,0,136,1.1,1.525,50,61,106,216,156,196,7,13,0
2015-04-30,01:00:00,135,103,120,0,136,1.1,1.5,48,60,98,216,142,196,7,13,0
2015-04-30,02:00:00,135,103,120,0,136,1.1,1.475,47,59,85,216,129,196,7,13,0
2015-04-30,03:00:00,139,106,119,0,136,1,1.446,50,58,65,216,114,196,6,12,0
2015-04-30,04:00:00,138,105,119,0,136,1,1.413,47,57,54,216,100,196,6,12,0
2015-04-30,05:00:00,139,106,119,0,136,1.1,1.379,67,56,33,216,86,196,5,12,0
2015-04-30,06:00:00,140,107,118,0,136,1.3,1.358,81,56,16,216,72,196,4,12,0
2015-04-30,07:00:00,145,111,118,115,135,1.7,1.354,86,57,6,216,58,196,6,12,0
2015-04-30,08:00:00,180,136,118,149,135,1.9,1.346,102,58,4,216,45,196,14,12,0
2015-04-30,10:00:00,203,153,119,180,136,1.5,1.296,73,56,68,216,34,196,20,12,0
2015-04-30,11:00:00,221,171,119,195,138,1.4,1.262,70,55,105,216,40,196,28,12,0
2015-04-30,12:00:00,202,152,119,154,139,1.3,1.25,43,54,168,216,54,196,28,13,0
2015-04-30,13:00:00,143,109,119,0,139,0.9,1.233,23,53,209,216,76,196,20,13,0
2015-04-30,15:00:00,118,89,117,96,136,0.8,1.192,22,53,225,225,129,196,12,13,0
2015-04-30,16:00:00,113,73,115,96,135,0.7,1.162,24,52,226,226,156,196,9,13,0
2015-04-30,17:00:00,113,71,113,107,133,0.7,1.142,25,52,226,226,181,196,9,12,0
2015-04-30,18:00:00,104,63,112,90,131,0.6,1.121,32,52,208,226,198,198,8,12,0
2015-04-30,19:00:00,88,65,109,104,128,0.7,1.104,40,52,186,226,208,208,7,12,0
2015-04-30,20:00:00,92,68,107,128,127,0.8,1.096,55,52,158,226,207,208,7,11,0
2015-04-30,21:00:00,119,90,106,168,129,1.1,1.096,64,53,146,226,199,208,13,12,0
2015-04-30,22:00:00,235,185,109,250,138,1.8,1.125,69,53,151,226,191,208,40,13,0
2015-04-30,23:00:00,269,219,114,260,147,1.8,1.158,73,54,129,226,179,208,43,14,0
2015-05-01,00:00:00,286,236,119,259,154,2.1,1.2,74,55,104,226,164,208,39,16,0
2015-05-01,01:00:00,303,253,126,260,160,2.2,1.246,84,57,71,226,144,208,32,17,0
2015-05-01,02:00:00,307,257,132,0,160,2,1.283,89,59,44,226,124,208,24,17,0
2015-05-01,03:00:00,298,248,138,0,160,1.8,1.317,81,60,41,226,106,208,26,18,0
2015-05-01,04:00:00,256,206,142,0,160,1.6,1.342,71,61,33,226,90,208,23,19,0
2015-05-01,05:00:00,221,171,145,0,160,1.4,1.354,82,61,14,226,73,208,17,19,0
2015-05-01,06:00:00,205,155,147,0,160,1.4,1.358,86,62,5,226,55,208,16,20,0
2015-05-01,07:00:00,206,156,149,0,162,1.6,1.354,78,61,8,226,40,208,19,20,0
2015-05-01,08:00:00,216,166,150,0,163,1.7,1.346,84,61,14,226,29,208,25,21,0
2015-05-01,09:00:00,234,184,152,194,165,1.8,1.354,87,60,31,226,24,208,28,21,0
2015-05-01,10:00:00,238,188,153,223,168,1.6,1.358,85,61,59,226,26,208,27,22,0
2015-05-01,11:00:00,235,185,154,207,169,1.5,1.362,68,61,112,226,34,208,26,22,0
2015-05-01,12:00:00,212,162,154,176,170,1.2,1.358,45,61,154,226,50,208,20,21,0
2015-05-01,13:00:00,233,183,157,0,170,1.4,1.379,67,63,92,226,59,208,17,21,0
2015-05-01,14:00:00,107,80,156,83,169,0.6,1.371,20,63,78,226,68,208,4,20,0
2015-05-01,15:00:00,69,50,155,0,174,0.6,1.362,21,63,68,226,76,208,2,20,0
2015-05-01,16:00:00,59,42,153,0,179,0.5,1.354,21,63,70,226,83,208,2,20,0
2015-05-01,17:00:00,50,30,152,50,175,0.5,1.346,21,62,66,208,87,208,2,19,0
2015-05-01,18:00:00,45,31,150,0,182,0.5,1.342,24,62,63,186,88,208,2,19,0
2015-05-01,19:00:00,39,27,149,0,188,0.5,1.333,24,61,61,158,82,207,2,19,0
2015-05-01,20:00:00,42,29,147,0,194,0.5,1.321,32,60,48,154,68,199,2,19,0
2015-05-01,21:00:00,49,34,145,0,196,0.6,1.3,40,59,37,154,61,191,2,18,0
2015-05-01,23:00:00,49,34,131,0,182,0.5,1.192,24,56,57,154,56,164,2,15,0
2015-05-02,00:00:00,48,33,122,0,170,0.5,1.125,29,54,51,154,54,144,2,14,0
2015-05-02,01:00:00,49,34,113,0,156,0.5,1.054,47,52,29,154,49,124,2,12,0
2015-05-02,02:00:00,48,33,104,0,156,0.5,0.992,44,51,26,154,44,106,2,11,0
2015-05-02,03:00:00,48,33,95,0,156,0.5,0.938,54,49,18,154,39,90,2,10,0
2015-05-02,04:00:00,55,39,88,0,156,0.5,0.892,49,49,25,154,36,88,2,9,0
2015-05-02,05:00:00,50,35,82,0,156,0.5,0.854,46,47,18,154,34,88,2,9,0
2015-05-02,06:00:00,54,38,77,0,156,0.5,0.817,43,45,18,154,30,88,2,8,0
2015-05-02,07:00:00,55,39,73,42,139,0.5,0.771,41,44,18,154,25,88,2,8,0
2015-05-02,08:00:00,62,44,68,46,128,0.5,0.721,43,42,25,154,22,88,2,7,0
2015-05-02,09:00:00,67,48,62,58,111,0.6,0.671,42,40,32,154,22,88,3,6,0
2015-05-02,10:00:00,70,51,56,64,91,0.6,0.629,29,38,58,154,26,88,6,5,0
2015-05-02,11:00:00,69,49,51,87,76,0.6,0.592,23,36,77,154,34,88,7,4,0
2015-05-02,12:00:00,77,56,46,91,65,0.6,0.567,23,35,96,96,43,88,5,3,0
2015-05-02,13:00:00,68,40,40,85,67,0.5,0.529,18,33,131,131,57,88,3,3,0
2015-05-02,14:00:00,53,37,38,43,63,0.4,0.521,15,33,149,149,73,88,2,3,0
2015-05-02,15:00:00,54,37,38,58,62,0.5,0.517,19,33,160,160,91,91,2,3,0
2015-05-02,16:00:00,62,44,38,64,63,0.5,0.517,17,33,166,166,109,109,2,3,0
2015-05-02,18:00:00,68,49,39,73,66,0.7,0.529,26,33,159,168,138,138,2,3,0
2015-05-02,19:00:00,79,58,41,79,67,0.6,0.533,30,33,142,168,146,146,2,3,0
2015-05-02,20:00:00,64,46,41,73,67,0.5,0.533,31,33,127,168,150,150,2,3,0
2015-05-02,21:00:00,72,52,42,87,68,0.6,0.533,32,32,119,168,149,150,2,3,0
2015-05-02,22:00:00,72,52,43,0,68,0.6,0.537,40,33,105,168,143,150,2,3,0
2015-05-02,23:00:00,73,52,44,96,70,0.6,0.542,37,33,102,168,136,150,2,3,0
2015-05-03,00:00:00,75,55,45,81,71,0.6,0.546,46,34,80,168,125,150,2,3,0
2015-05-03,01:00:00,98,73,46,101,72,1,0.567,90,36,26,168,108,150,2,3,0
2015-05-03,02:00:00,152,116,50,133,76,1.4,0.604,82,37,17,168,90,150,2,3,0
2015-05-03,03:00:00,173,131,54,132,78,1.5,0.646,83,39,5,168,73,150,2,3,0
2015-05-03,04:00:00,175,132,58,0,78,1.5,0.688,72,39,17,168,59,150,2,3,0
2015-05-03,05:00:00,127,96,60,0,78,0.7,0.696,29,39,61,168,52,150,3,3,0
2015-05-03,06:00:00,197,79,62,344,91,0.2,0.683,14,38,78,168,48,150,2,3,0
2015-05-03,07:00:00,190,72,63,329,105,0.3,0.675,19,37,73,168,45,150,2,3,0
2015-05-03,08:00:00,133,45,63,215,113,0.3,0.667,18,36,76,168,44,150,3,3,0
2015-05-03,09:00:00,94,32,63,138,117,0.3,0.654,17,35,80,168,51,150,2,3,0
2015-05-03,10:00:00,77,22,61,103,118,0.3,0.642,19,34,83,168,59,150,2,2,0
2015-05-03,11:00:00,73,22,60,96,119,0.3,0.629,17,34,86,168,69,150,3,2,0
2015-05-03,13:00:00,57,22,58,64,116,0.3,0.608,13,33,106,168,85,150,2,2,0
2015-05-03,15:00:00,49,17,56,49,115,0.3,0.596,15,33,108,168,93,150,2,2,0
2015-05-03,16:00:00,54,10,55,57,114,0.3,0.588,17,33,108,168,97,150,2,2,0
2015-05-03,17:00:00,56,15,53,61,114,0.3,0.575,18,33,108,159,100,150,2,2,0
2015-05-03,18:00:00,32,8,52,27,111,0.3,0.558,20,33,102,142,103,150,2,2,0
2015-05-03,19:00:00,31,9,50,19,109,0.3,0.546,22,32,97,127,104,150,2,2,0
2015-05-03,20:00:00,29,9,48,13,106,0.3,0.538,27,32,92,119,104,149,2,2,0
2015-05-03,21:00:00,39,6,46,39,103,0.3,0.525,29,32,83,110,101,143,2,2,0
2015-05-03,22:00:00,52,14,44,54,101,0.4,0.517,40,32,63,110,95,136,2,2,0
2015-05-03,23:00:00,54,11,43,57,99,0.3,0.504,30,32,70,110,90,125,2,2,0
2015-05-04,00:00:00,38,12,41,38,97,0.3,0.492,43,32,56,110,84,108,2,2,0
2015-05-04,01:00:00,25,10,38,17,94,0.3,0.463,50,30,46,110,76,104,2,2,0
2015-05-04,02:00:00,22,9,34,16,88,0.2,0.413,26,28,68,110,72,104,2,2,0
2015-05-04,03:00:00,58,9,29,66,85,0.2,0.358,21,25,66,110,68,104,2,2,0
2015-05-04,04:00:00,30,5,24,30,83,0.2,0.304,15,23,75,110,66,104,2,2,0
2015-05-04,05:00:00,29,6,20,29,81,0.2,0.283,10,22,77,110,65,104,2,2,0
2015-05-04,06:00:00,36,7,17,36,68,0.2,0.283,12,22,75,110,67,104,2,2,0
2015-05-04,07:00:00,38,9,14,38,56,0.2,0.279,23,22,62,110,66,104,2,2,0
2015-05-04,08:00:00,46,11,13,46,49,0.3,0.279,26,22,61,110,66,104,2,2,0
2015-05-04,09:00:00,31,7,12,31,44,0.3,0.279,18,22,70,110,69,104,4,2,0
2015-05-04,10:00:00,46,8,11,46,42,0.3,0.279,20,22,70,110,70,104,4,2,0
2015-05-04,11:00:00,39,9,11,39,39,0.3,0.279,22,23,74,110,70,104,3,2,0
2015-05-04,12:00:00,40,14,10,40,39,0.3,0.279,19,23,86,110,72,104,2,2,0
2015-05-04,13:00:00,47,14,10,47,38,0.3,0.279,16,23,96,110,74,104,2,2,0
2015-05-04,14:00:00,43,10,10,43,39,0.3,0.279,14,23,108,108,78,104,2,2,0
2015-05-04,15:00:00,57,16,10,63,40,0.3,0.279,15,23,113,113,85,104,2,2,0
2015-05-04,16:00:00,64,20,10,77,41,0.3,0.279,18,23,111,113,91,104,4,2,0
2015-05-04,17:00:00,71,24,11,91,42,0.3,0.279,22,23,119,119,97,104,10,3,0
2015-05-04,18:00:00,88,65,13,65,43,0.4,0.283,26,24,121,121,104,104,6,3,0
2015-05-04,19:00:00,75,34,14,100,47,0.4,0.288,28,24,131,131,111,111,9,3,0
2015-05-04,20:00:00,109,55,16,167,53,0.6,0.3,34,24,136,136,117,117,18,4,0
2015-05-04,21:00:00,102,66,19,153,58,0.6,0.312,37,24,118,136,120,120,15,4,0
2015-05-04,22:00:00,78,52,20,105,60,0.6,0.321,34,24,111,136,120,120,13,5,0
2015-05-04,23:00:00,70,49,22,89,61,0.6,0.333,33,24,104,136,119,120,12,5,0
2015-05-05,00:00:00,65,45,23,79,63,0.6,0.346,33,24,97,136,117,120,15,6,0
2015-05-05,01:00:00,63,45,25,74,65,0.5,0.354,28,23,94,136,114,120,17,6,0
2015-05-05,02:00:00,66,43,26,81,68,0.5,0.367,28,23,87,136,110,120,18,7,0
2015-05-05,03:00:00,67,44,27,83,69,0.5,0.379,32,23,76,136,103,120,19,8,0
2015-05-05,04:00:00,72,50,29,93,71,0.5,0.392,32,24,68,136,94,120,19,8,0
2015-05-05,05:00:00,73,53,31,93,74,0.6,0.408,38,25,57,136,87,120,17,9,0
2015-05-05,06:00:00,89,50,33,128,78,0.7,0.429,71,28,23,136,76,120,12,9,0
2015-05-05,07:00:00,92,68,36,115,81,0.8,0.454,82,30,13,136,64,120,13,10,0
2015-05-05,08:00:00,92,68,38,116,84,0.9,0.479,73,32,25,136,55,120,19,11,0
2015-05-05,09:00:00,88,65,40,113,88,0.8,0.5,62,34,47,136,50,120,20,11,0
2015-05-05,10:00:00,80,59,42,109,90,0.7,0.517,45,35,76,136,48,120,16,12,0
2015-05-05,11:00:00,84,56,44,117,93,0.6,0.529,48,36,82,136,49,120,13,12,0
2015-05-05,12:00:00,85,50,46,119,97,0.6,0.542,41,37,93,136,52,120,11,13,0
2015-05-05,13:00:00,88,46,47,126,100,0.5,0.55,35,38,105,136,58,120,10,13,0
2015-05-05,15:00:00,94,45,50,137,108,0.6,0.571,40,40,112,136,82,120,8,13,0
2015-05-05,16:00:00,45,31,50,32,106,0.3,0.571,20,40,110,136,92,120,4,13,0
2015-05-05,17:00:00,63,20,50,76,105,0.2,0.567,16,40,105,136,99,120,2,13,0
2015-05-05,18:00:00,47,15,48,47,104,0.3,0.562,19,39,100,136,102,120,2,13,0
2015-05-05,19:00:00,52,12,47,53,102,0.3,0.558,35,40,83,136,102,120,2,13,0
2015-05-05,20:00:00,50,13,45,50,97,0.4,0.55,47,40,68,118,99,120,2,12,0
2015-05-05,21:00:00,57,12,43,63,94,0.4,0.542,55,41,56,112,93,120,2,11,0
2015-05-05,22:00:00,44,13,42,44,91,0.4,0.533,51,42,57,112,86,119,2,11,0
2015-05-05,23:00:00,39,10,40,39,89,0.3,0.521,41,42,65,112,80,117,2,11,0
2015-05-06,00:00:00,54,16,39,58,88,0.3,0.508,42,42,59,112,74,114,2,10,0
2015-05-06,01:00:00,23,11,37,18,86,0.3,0.5,27,42,72,112,70,110,2,9,0
2015-05-06,02:00:00,46,8,36,46,84,0.2,0.488,27,42,69,112,66,103,2,9,0
2015-05-06,03:00:00,38,6,34,38,83,0.2,0.475,23,42,72,112,65,102,2,8,0
2015-05-06,04:00:00,52,12,33,53,81,0.2,0.463,20,41,70,112,65,102,2,7,0
2015-05-06,05:00:00,44,14,31,44,79,0.2,0.446,20,41,71,112,67,102,2,7,0
2015-05-06,06:00:00,49,12,30,49,76,0.2,0.425,20,38,72,112,69,102,2,6,0
2015-05-06,07:00:00,51,10,27,52,73,0.2,0.4,30,36,60,112,68,102,2,6,0
2015-05-06,08:00:00,33,8,25,33,69,0.3,0.375,25,34,67,112,69,102,2,5,0
2015-05-06,09:00:00,27,7,22,27,66,0.2,0.35,20,33,76,112,70,102,2,4,0
2015-05-06,10:00:00,30,10,20,30,63,0.2,0.329,16,31,86,112,72,102,2,4,0
2015-05-06,12:00:00,48,0,0,48,57,0.3,0.304,17,29,101,112,78,102,2,3,0
2015-05-06,13:00:00,74,54,17,0,54,0.3,0.296,15,28,107,112,82,102,2,3,0
2015-05-06,14:00:00,52,17,16,54,49,0.3,0.288,16,28,118,118,88,102,2,2,0
2015-05-06,15:00:00,54,12,14,57,46,0.3,0.275,17,27,115,118,95,102,2,2,0
2015-05-06,16:00:00,56,18,14,62,47,0.5,0.283,22,27,106,118,100,102,5,2,0
2015-05-06,17:00:00,114,27,14,177,52,0.6,0.3,34,27,79,118,100,102,8,2,0
2015-05-06,18:00:00,83,49,16,116,55,0.5,0.308,32,28,75,118,99,102,6,3,0
2015-05-06,19:00:00,88,54,17,125,58,0.5,0.317,41,28,65,118,96,100,6,3,0
2015-05-06,20:00:00,85,45,19,120,61,0.4,0.317,49,28,54,118,90,100,7,3,0
2015-05-06,21:00:00,88,45,20,125,63,0.5,0.321,64,29,37,118,81,100,9,3,0
2015-05-06,22:00:00,92,41,21,133,67,0.5,0.325,76,30,23,118,69,100,10,4,0
2015-05-06,23:00:00,94,43,23,138,72,0.6,0.337,88,32,11,118,56,100,9,4,0
2015-05-07,00:00:00,88,50,24,126,75,0.7,0.354,78,33,19,118,45,100,9,4,0
2015-05-07,01:00:00,89,45,26,128,79,0.6,0.367,56,34,37,118,40,100,8,4,0
2015-05-07,02:00:00,104,44,27,158,84,0.5,0.379,46,35,49,118,37,100,6,5,0
2015-05-07,03:00:00,89,31,28,127,88,0.4,0.388,26,35,76,118,38,100,3,5,0
2015-05-07,04:00:00,80,24,29,109,91,0.4,0.396,27,36,72,118,40,100,4,5,0
2015-05-07,05:00:00,64,24,29,77,92,0.4,0.404,30,36,64,118,44,100,3,5,0
2015-05-07,06:00:00,83,23,30,116,95,0.5,0.417,47,37,40,118,46,100,2,5,0
2015-05-07,07:00:00,72,52,32,78,96,0.6,0.433,58,38,38,118,49,100,4,5,0
2015-05-07,08:00:00,73,36,33,96,99,0.8,0.454,62,40,39,118,52,100,6,5,0
2015-05-07,10:00:00,94,45,36,137,107,0.9,0.508,58,43,52,118,53,100,6,5,0
2015-05-07,11:00:00,89,48,38,128,111,0.9,0.533,59,45,61,118,51,100,7,6,0
2015-05-07,12:00:00,80,52,38,110,114,0.8,0.554,55,46,75,118,52,100,7,6,0
2015-05-07,14:00:00,95,46,39,140,117,0.6,0.583,38,48,108,115,64,100,5,6,0
2015-05-07,15:00:00,105,50,41,160,121,0.6,0.596,28,49,138,138,76,100,5,6,0
2015-05-07,16:00:00,98,49,42,146,124,0.6,0.6,24,49,146,146,90,100,5,6,0
2015-05-07,17:00:00,80,0,0,109,122,0.5,0.596,22,48,144,146,102,102,5,6,0
2015-05-07,18:00:00,76,46,43,102,121,0.5,0.596,25,48,125,146,111,111,6,6,0
2015-05-07,19:00:00,93,65,43,135,121,0.6,0.6,30,48,121,146,119,119,7,6,0
2015-05-08,07:00:00,76,29,40,101,99,0.6,0.579,79,45,8,146,34,128,5,6,0
2015-05-08,08:00:00,100,56,40,150,101,0.9,0.583,86,46,11,146,27,128,13,6,0
2015-05-08,09:00:00,90,58,41,129,102,1,0.592,81,47,17,146,23,128,15,6,0
2015-05-08,11:00:00,101,75,44,152,103,1.1,0.604,66,48,56,146,27,128,21,7,0
2015-05-08,15:00:00,52,34,45,54,97,0.6,0.646,15,46,130,146,74,128,8,9,0
2015-05-08,16:00:00,41,28,44,29,92,0.4,0.638,16,45,130,144,88,128,5,9,0
2015-05-08,17:00:00,68,27,44,86,91,0.5,0.638,22,45,128,130,102,128,5,9,0
2015-05-08,18:00:00,136,72,45,222,96,1.3,0.671,33,46,143,143,116,128,17,9,0
2015-05-08,19:00:00,119,90,46,149,97,1.8,0.721,39,46,124,143,124,128,21,10,0
2015-05-08,20:00:00,107,80,47,134,97,1.8,0.767,44,47,103,143,125,128,20,10,0
2015-05-08,21:00:00,102,76,48,122,98,1.8,0.812,46,47,93,143,122,128,22,11,0
2015-05-08,22:00:00,142,108,50,148,98,1.7,0.854,39,47,81,143,116,125,15,11,0
2015-05-08,23:00:00,139,106,52,0,98,1.6,0.904,31,47,78,143,110,125,13,11,0
2015-05-09,00:00:00,107,80,54,0,100,1.2,0.938,29,47,65,143,102,125,10,11,0
2015-05-09,01:00:00,93,69,57,74,102,1.3,0.975,36,47,46,143,92,125,12,12,0
2015-05-09,02:00:00,73,53,58,0,104,1.4,1.017,34,46,42,143,79,125,13,12,0
2015-05-09,03:00:00,69,50,59,0,107,1.4,1.062,35,45,38,143,68,125,14,13,0
2015-05-09,04:00:00,57,40,60,0,110,1.2,1.1,31,44,44,143,61,125,13,13,0
2015-05-09,05:00:00,52,36,61,0,114,1.1,1.133,30,42,46,143,55,125,11,14,0
2015-05-09,06:00:00,52,36,62,40,114,1.2,1.167,33,41,40,143,50,125,11,14,0
2015-05-09,07:00:00,24,0,0,0,0,2.4,1.242,41,39,32,143,44,125,11,14,0
2015-05-09,08:00:00,39,0,0,39,108,3,1.329,37,37,41,143,41,125,12,14,0
2015-05-09,09:00:00,45,25,62,45,103,3.1,1.417,42,36,35,143,40,125,12,14,0
2015-05-09,10:00:00,52,36,60,53,97,3,1.5,40,34,41,143,40,125,14,14,0
2015-05-09,11:00:00,61,33,58,71,92,3.1,1.583,43,33,40,143,40,125,15,14,0
2015-05-09,12:00:00,59,42,56,51,88,2.9,1.654,38,33,46,143,40,125,13,13,0
2015-05-09,13:00:00,45,14,54,45,85,2.3,1.704,14,33,78,143,44,125,2,13,0
2015-05-09,14:00:00,28,19,52,0,85,2.4,1.771,20,33,72,143,48,125,3,12,0
2015-05-09,15:00:00,24,16,52,22,83,2.4,1.846,22,33,70,143,53,125,2,12,0
2015-05-09,18:00:00,32,22,49,23,72,2.5,2.067,25,34,72,124,64,125,3,11,0
2015-05-09,19:00:00,48,22,46,48,65,2.6,2.1,30,33,66,103,67,125,3,10,0
2015-05-09,20:00:00,48,30,44,48,60,2.6,2.133,37,33,52,93,68,122,3,10,0
2015-05-09,21:00:00,53,37,42,48,55,2.7,2.171,50,33,37,81,62,116,3,9,0
2015-05-09,22:00:00,52,36,39,39,47,2.8,2.217,59,34,30,78,57,110,4,8,0
2015-05-09,23:00:00,59,42,36,47,47,2.8,2.267,57,35,30,78,52,102,5,8,0
2015-05-10,00:00:00,49,34,34,39,47,2.8,2.333,48,36,36,78,49,92,7,8,0
2015-05-10,01:00:00,49,34,32,34,44,2.7,2.392,44,36,38,78,45,79,7,8,0
2015-05-10,02:00:00,40,28,31,40,44,2.7,2.446,39,36,43,78,42,68,10,8,0
2015-05-10,04:00:00,53,32,30,55,45,2.9,2.575,44,37,25,78,35,68,11,7,0
2015-05-10,05:00:00,53,31,30,55,45,3,2.654,71,39,10,78,31,68,11,7,0
2015-05-10,06:00:00,34,0,0,0,0,2.9,2.725,67,40,12,78,29,68,12,7,0
2015-05-10,07:00:00,27,0,0,27,44,2.6,2.733,52,41,28,78,29,68,12,8,0
2015-05-10,08:00:00,58,32,29,65,46,2.6,2.717,54,42,25,78,27,68,12,8,0
2015-05-10,09:00:00,60,43,30,66,47,2.7,2.7,50,42,36,78,27,68,15,8,0
2015-05-10,10:00:00,72,32,30,94,49,2.7,2.688,37,42,55,78,29,68,7,7,0
2015-05-10,11:00:00,52,36,30,49,48,2.8,2.675,37,42,45,78,30,68,2,7,0
2015-05-10,12:00:00,63,45,30,54,48,3.5,2.7,52,42,30,78,30,68,2,6,0
2015-05-10,13:00:00,62,44,32,50,48,3.3,2.742,48,44,34,72,33,68,2,6,0
2015-05-10,14:00:00,62,44,33,0,48,3.5,2.788,54,45,33,72,36,68,3,6,0
2015-05-10,15:00:00,57,40,34,0,49,3.7,2.842,56,46,30,72,36,68,3,6,0
2015-05-10,16:00:00,59,42,35,0,48,3.4,2.879,48,47,37,72,38,68,3,6,0
2015-05-10,17:00:00,49,34,35,0,48,3.3,2.912,46,48,39,72,38,68,3,6,0
2015-05-10,18:00:00,42,29,35,0,50,3.3,2.946,47,49,38,66,36,68,2,6,0
2015-05-10,19:00:00,36,25,36,0,50,3.3,2.975,41,49,41,55,35,68,2,6,0
2015-05-10,20:00:00,40,28,36,0,50,3.4,3.008,42,49,36,55,36,62,2,6,0
2015-05-10,21:00:00,50,35,35,0,50,3.3,3.033,42,49,36,55,36,57,2,6,0
2015-05-10,22:00:00,48,33,35,0,51,3.4,3.058,49,49,26,55,35,52,2,6,0
2015-05-10,23:00:00,46,32,35,0,51,3.3,3.079,53,49,24,55,35,49,2,6,0
2015-05-11,00:00:00,57,40,35,0,52,3.4,3.104,60,49,11,55,31,45,2,6,0
2015-05-11,01:00:00,53,37,35,0,54,3.4,3.133,59,50,10,55,28,42,2,6,0
2015-05-11,02:00:00,55,39,36,0,55,3.3,3.158,59,51,8,55,24,38,2,5,0
2015-05-11,03:00:00,46,32,36,0,57,3.3,3.179,51,51,11,55,20,38,2,5,0
2015-05-11,04:00:00,57,40,36,0,58,3.2,3.192,42,51,18,55,18,38,2,5,0
2015-05-11,05:00:00,46,32,36,0,58,3,3.192,35,49,20,55,16,38,2,4,0
2015-05-11,06:00:00,40,28,36,0,58,2.9,3.192,41,48,15,55,15,38,2,4,0
2015-05-11,07:00:00,42,29,35,0,63,2.9,3.204,46,48,13,55,13,38,2,3,0
2015-05-11,08:00:00,53,37,36,0,63,3,3.221,50,48,12,55,13,38,2,3,0
2015-05-11,09:00:00,60,43,36,0,62,3,3.233,48,48,19,55,14,38,4,2,0
2015-05-11,10:00:00,58,41,36,0,51,0,0,53,48,22,45,16,38,4,2,0
2015-05-11,11:00:00,59,42,36,0,52,1.1,3.183,47,49,41,41,20,38,5,2,0
2015-05-11,12:00:00,49,34,36,0,50,0.9,3.07,38,48,64,64,26,38,4,3,0
2015-05-11,13:00:00,59,42,36,0,0,0.8,2.961,29,47,84,84,34,38,3,3,0
2015-05-11,14:00:00,50,35,35,0,0,0.6,2.835,22,46,88,88,43,43,2,3,0
2015-05-11,15:00:00,40,28,35,0,0,0.5,2.696,16,44,97,97,53,53,2,3,0
2015-05-11,16:00:00,42,29,34,39,39,0.6,2.574,23,43,97,97,64,64,2,2,0
2015-05-11,17:00:00,30,20,34,0,39,0.5,2.452,18,42,93,97,73,73,2,2,0
2015-05-11,18:00:00,29,18,33,0,39,0.6,2.335,17,41,91,97,82,82,2,2,0
2015-05-11,19:00:00,28,19,33,0,39,0.6,2.217,24,40,81,97,87,87,2,2,0
2015-05-11,20:00:00,22,13,32,19,29,0.6,2.096,29,40,70,97,88,88,2,2,0
2015-05-11,22:00:00,22,14,31,0,25,0.7,1.865,43,39,57,97,82,88,2,2,0
2015-05-11,23:00:00,34,15,30,34,27,0.8,1.757,59,39,40,97,74,88,2,2,0
2015-05-12,00:00:00,25,15,29,20,26,0.7,1.639,50,39,52,97,69,88,3,2,0
2015-05-12,01:00:00,29,12,28,0,26,0.5,1.513,20,37,92,97,69,88,2,2,0
2015-05-12,02:00:00,30,11,27,13,24,0.5,1.391,18,35,94,97,69,88,2,2,0
2015-05-12,03:00:00,28,7,26,11,22,0.3,1.261,22,34,89,97,70,88,2,2,0
2015-05-12,04:00:00,24,14,25,19,21,0.3,1.135,26,34,75,97,71,88,2,2,0
2015-05-12,05:00:00,22,8,24,13,20,0.3,1.017,32,33,68,97,71,88,2,2,0
2015-05-12,06:00:00,31,9,23,31,22,0.4,0.909,48,34,40,97,69,88,2,2,0
2015-05-12,07:00:00,29,12,22,23,22,0.4,0.8,57,34,33,97,68,88,2,2,0
2015-05-12,08:00:00,31,15,21,0,22,0.5,0.691,62,35,37,97,66,88,3,3,0
2015-05-12,09:00:00,39,17,20,39,23,0.3,0.574,23,34,98,98,67,88,2,2,0
2015-05-12,10:00:00,34,12,19,30,24,0.2,0.558,15,32,106,106,68,88,2,2,0
2015-05-12,11:00:00,40,20,18,40,25,0.2,0.521,14,31,109,109,71,88,2,2,0
2015-05-12,12:00:00,37,22,18,25,25,0.3,0.496,16,30,116,116,76,88,2,2,0
2015-05-12,13:00:00,38,26,17,30,25,0.3,0.475,20,29,115,116,82,88,2,2,0
2015-05-12,14:00:00,36,25,17,0,25,0.4,0.467,31,30,109,116,90,90,2,2,0
2015-05-12,15:00:00,61,28,17,71,28,0.4,0.463,40,31,112,116,100,100,2,2,0
2015-05-12,16:00:00,40,28,17,31,27,0.4,0.454,46,32,109,116,109,109,2,2,0
2015-05-12,17:00:00,57,36,17,64,29,0.4,0.45,48,33,108,116,110,110,2,2,0
2015-05-12,19:00:00,63,32,18,76,35,0.7,0.45,88,37,61,116,103,110,2,2,0
2015-05-12,20:00:00,90,45,19,130,40,1,0.467,154,43,11,116,90,110,2,2,0
2015-05-12,21:00:00,102,53,21,153,47,1.3,0.492,154,48,8,116,76,110,2,2,0
2015-05-12,22:00:00,100,68,23,150,52,1.9,0.542,158,52,8,116,64,110,3,2,0
2015-05-12,23:00:00,105,73,26,160,58,1.9,0.588,144,56,7,116,51,110,3,2,0
2015-05-13,00:00:00,106,60,27,161,65,1.6,0.625,122,59,6,116,38,110,3,2,0
2015-05-13,01:00:00,126,82,30,202,71,2.5,0.708,132,64,8,116,25,110,4,2,0
2015-05-13,02:00:00,135,91,34,220,80,2.6,0.796,126,68,6,116,14,110,3,2,0
2015-05-13,03:00:00,108,80,37,165,87,1.8,0.858,120,72,2,116,7,110,2,2,0
2015-05-13,04:00:00,102,76,39,142,93,1.7,0.917,119,76,2,116,6,110,2,2,0
2015-05-13,05:00:00,90,67,42,100,97,1.3,0.958,104,79,2,116,5,110,2,2,0
2015-05-13,06:00:00,72,52,44,86,100,0.9,0.979,87,81,2,116,4,110,2,2,0
2015-05-13,07:00:00,68,49,45,67,102,0.7,0.992,76,82,2,116,4,110,2,2,0
2015-05-13,08:00:00,60,42,46,70,100,0.7,1,75,82,8,116,4,110,4,2,0
2015-05-13,09:00:00,79,57,48,107,103,0.7,1.017,77,84,21,116,6,110,3,2,0
2015-05-13,10:00:00,85,63,50,100,106,0.6,1.033,70,87,44,116,10,110,2,2,0
2015-05-13,11:00:00,92,61,52,133,110,0.6,1.05,71,89,67,116,18,110,3,2,0
2015-05-13,12:00:00,100,69,54,149,116,0.7,1.067,75,91,92,115,30,110,4,3,0
2015-05-13,13:00:00,114,86,56,148,121,0.8,1.088,95,95,105,112,43,110,6,3,0
2015-05-13,14:00:00,149,114,60,209,124,0.8,1.104,101,97,165,165,63,110,9,3,0
2015-05-13,15:00:00,180,136,64,209,130,0.9,1.125,105,100,201,201,88,110,12,3,0
2015-05-13,17:00:00,113,85,70,173,139,0.8,1.154,56,101,212,216,138,138,10,4,0
2015-05-13,18:00:00,122,85,72,193,143,1,1.175,84,102,175,216,154,154,9,4,0
2015-05-13,19:00:00,165,125,76,249,151,1.1,1.192,115,103,181,216,168,168,8,5,0
2015-05-13,21:00:00,144,110,83,0,155,0.8,1.183,76,100,94,216,172,173,4,5,0
2015-05-13,22:00:00,97,55,82,143,155,0.3,1.117,23,94,86,216,162,173,2,5,0
2015-05-13,23:00:00,347,80,82,457,168,0.3,1.05,17,89,76,216,146,173,2,5,0
2015-05-14,01:00:00,168,72,84,285,181,0.2,0.896,15,79,75,216,111,173,2,5,0
2015-05-14,02:00:00,105,58,82,160,179,0.2,0.796,12,75,85,216,99,173,2,5,0
2015-05-14,03:00:00,52,30,80,53,174,0.2,0.729,10,70,96,216,89,173,2,5,0
2015-05-14,04:00:00,51,21,78,52,170,0.2,0.667,15,66,80,216,83,173,2,5,0
2015-05-14,05:00:00,36,20,76,36,167,0.2,0.621,15,62,81,216,81,173,3,5,0
2015-05-14,06:00:00,48,20,75,48,165,0.3,0.596,18,59,81,216,80,173,6,5,0
2015-05-14,07:00:00,51,18,73,52,165,0.3,0.579,24,57,70,216,80,173,8,5,0
2015-05-14,08:00:00,27,16,72,27,163,0.3,0.562,28,55,70,216,80,173,7,5,0
2015-05-14,09:00:00,51,18,70,52,161,0.3,0.546,21,53,81,216,80,173,7,5,0
2015-05-14,10:00:00,42,19,69,42,158,0.3,0.533,14,50,91,216,81,173,2,5,0
2015-05-14,11:00:00,31,15,67,18,153,0.3,0.521,10,48,99,216,82,173,2,5,0
2015-05-14,14:00:00,38,16,58,22,134,0.3,0.463,10,38,121,216,94,173,2,5,0
2015-05-14,15:00:00,38,26,54,33,127,0.4,0.442,21,34,118,216,100,173,2,4,0
2015-05-14,16:00:00,40,24,50,40,122,0.4,0.429,26,33,121,212,107,173,2,4,0
2015-05-14,17:00:00,52,24,47,54,117,0.4,0.413,31,32,117,181,111,173,2,4,0
2015-05-14,18:00:00,48,26,45,48,111,0.5,0.392,46,30,106,181,113,173,2,3,0
2015-05-14,19:00:00,39,27,41,38,102,0.6,0.371,63,28,91,128,112,173,2,3,0
2015-05-14,20:00:00,64,30,36,77,95,0.7,0.346,92,26,61,121,106,172,3,3,0
2015-05-14,21:00:00,72,36,33,94,95,0.7,0.342,77,26,73,121,101,162,3,3,0
2015-05-14,22:00:00,75,36,32,100,93,0.8,0.362,112,30,29,121,90,146,3,3,0
2015-05-14,23:00:00,55,39,31,0,77,0.7,0.379,99,33,27,121,78,128,3,3,0
2015-05-15,00:00:00,53,31,28,56,63,0.4,0.388,39,34,65,121,71,113,2,3,0
2015-05-15,01:00:00,30,21,26,0,53,0.3,0.392,28,34,72,121,66,113,2,3,0
2015-05-15,02:00:00,31,15,24,31,47,0.3,0.396,40,36,57,121,59,113,2,3,0
2015-05-15,03:00:00,43,18,23,43,46,0.3,0.4,32,37,66,121,56,113,2,3,0
2015-05-15,04:00:00,26,16,23,23,45,0.3,0.404,18,37,82,121,59,113,2,3,0
2015-05-15,05:00:00,43,18,23,43,45,0.3,0.408,26,37,70,121,58,113,2,3,0
2015-05-15,06:00:00,28,16,23,28,44,0.3,0.408,21,37,70,121,64,113,2,3,0
2015-05-15,07:00:00,35,17,23,35,44,0.3,0.408,28,37,61,121,68,113,2,3,0
2015-05-15,08:00:00,51,27,23,51,45,0.4,0.413,38,38,57,121,67,113,2,2,0
2015-05-15,09:00:00,55,28,24,60,45,0.5,0.421,46,39,50,121,64,113,2,2,0
2015-05-15,10:00:00,58,38,25,66,46,0.5,0.429,42,40,62,121,65,113,2,2,0
2015-05-15,12:00:00,46,32,26,0,49,0.4,0.438,21,41,104,121,70,113,2,2,0
2015-05-15,13:00:00,50,35,27,48,50,0.4,0.442,21,42,113,121,76,113,2,2,0
2015-05-15,14:00:00,53,37,27,51,51,0.4,0.446,21,42,126,126,83,113,2,2,0
2015-05-15,15:00:00,58,41,28,0,52,0.4,0.446,22,42,134,134,92,113,2,2,0
2015-05-15,17:00:00,58,34,29,66,54,0.4,0.446,20,42,140,140,114,114,2,2,0
2015-05-15,18:00:00,51,30,29,52,54,0.4,0.442,24,41,120,140,121,121,2,2,0
2015-05-15,19:00:00,63,24,29,75,56,0.4,0.433,27,39,112,140,124,124,2,2,0
2015-05-15,20:00:00,51,24,29,52,55,0.4,0.421,36,37,104,140,124,124,2,2,0
2015-05-15,21:00:00,77,38,29,104,55,0.6,0.417,43,36,104,140,122,124,4,2,0
2015-05-15,22:00:00,82,56,30,113,56,0.9,0.421,46,33,122,140,122,124,12,3,0
2015-05-15,23:00:00,89,60,31,128,59,1,0.433,43,30,119,140,120,124,14,3,0
2015-05-16,00:00:00,93,69,32,133,63,1,0.458,60,31,86,140,113,124,12,3,0
2015-05-16,02:00:00,90,67,36,113,70,1.1,0.521,76,34,52,140,98,124,7,4,0
2015-05-16,03:00:00,90,67,38,114,73,1.1,0.554,97,36,26,140,88,124,4,4,0
2015-05-16,04:00:00,69,50,40,0,76,0.8,0.575,104,40,4,140,75,124,3,4,0
2015-05-16,05:00:00,98,46,41,146,81,0.8,0.596,94,43,2,140,62,124,2,4,0
2015-05-16,06:00:00,69,50,42,78,83,0.7,0.612,94,46,4,140,48,124,3,4,0
2015-05-16,07:00:00,64,46,43,59,84,0.6,0.625,76,48,16,140,35,124,5,4,0
2015-05-16,08:00:00,63,42,44,76,86,0.6,0.633,70,49,29,140,28,124,5,4,0
2015-05-16,09:00:00,67,48,45,0,87,0.6,0.638,62,50,43,140,22,124,5,5,0
2015-05-16,10:00:00,63,45,45,48,86,0.4,0.633,41,50,70,140,24,124,6,5,0
2015-05-16,11:00:00,54,38,45,52,84,0.4,0.633,44,51,81,140,31,124,6,5,0
2015-05-16,13:00:00,67,48,46,74,86,0.4,0.642,32,52,145,145,62,124,3,5,0
2015-05-16,14:00:00,54,38,46,0,87,0.3,0.638,16,52,151,151,80,124,2,5,0
2015-05-16,15:00:00,104,34,46,158,91,0.4,0.638,16,52,174,174,100,124,4,5,0
2015-05-16,16:00:00,105,54,47,158,95,0.6,0.646,19,52,210,210,123,124,9,5,0
2015-05-16,17:00:00,95,49,47,106,97,0.6,0.654,21,52,196,210,142,142,9,6,0
2015-05-16,18:00:00,68,48,48,0,99,0.6,0.662,23,52,174,210,155,155,11,6,0
2015-05-16,19:00:00,112,53,49,174,104,0.7,0.675,37,52,166,210,166,166,14,7,0
2015-05-16,20:00:00,165,71,51,280,116,1.1,0.704,39,52,200,210,177,177,24,7,0
2015-05-16,21:00:00,113,76,53,176,119,1.1,0.725,36,52,190,210,183,183,26,8,0
2015-05-16,22:00:00,88,65,53,123,120,1,0.729,37,52,172,210,185,185,19,9,0
2015-05-16,23:00:00,88,64,53,125,120,0.9,0.725,37,51,156,210,183,185,19,9,0
2015-05-17,00:00:00,97,72,54,142,120,0.9,0.721,35,50,150,210,176,185,22,9,0
2015-05-17,01:00:00,100,75,54,141,121,0.9,0.717,34,50,145,210,169,185,23,10,0
2015-05-17,02:00:00,110,83,55,157,124,0.9,0.708,32,48,149,210,166,185,32,11,0
2015-05-17,03:00:00,119,90,56,164,126,1,0.704,38,45,130,210,162,185,30,12,0
2015-05-17,04:00:00,132,100,58,172,128,1,0.712,42,43,109,210,150,185,22,13,0
2015-05-17,05:00:00,148,113,60,193,131,1,0.721,39,41,90,210,138,185,14,13,0
2015-05-17,06:00:00,162,123,63,196,136,1,0.733,34,38,80,210,126,185,9,13,0
2015-05-17,07:00:00,163,124,67,173,142,1,0.75,40,37,66,210,115,185,10,14,0
2015-05-17,08:00:00,155,118,70,171,146,1,0.767,48,36,60,210,104,185,12,14,0
2015-05-17,09:00:00,139,106,72,156,147,0.9,0.779,34,34,80,210,96,185,16,14,0
2015-05-17,10:00:00,149,114,75,186,153,0.9,0.8,30,34,103,210,90,185,24,15,0
2015-05-17,11:00:00,172,130,79,205,160,1,0.825,31,33,133,210,90,185,28,16,0
2015-05-17,12:00:00,198,148,83,211,166,1.2,0.85,26,32,176,210,98,185,34,17,0
2015-05-17,13:00:00,183,138,87,193,171,1.2,0.883,24,32,206,210,113,185,36,19,0
2015-05-17,14:00:00,170,129,91,198,172,1.2,0.921,24,32,207,210,129,185,32,20,0
2015-05-17,16:00:00,204,154,99,232,180,1.5,0.996,57,35,148,207,152,185,25,21,0
2015-05-17,18:00:00,200,150,108,239,186,1.4,1.062,67,38,118,207,160,185,12,22,0
2015-05-17,19:00:00,198,148,112,245,189,1.5,1.096,67,40,81,207,153,185,4,21,0
2015-05-17,20:00:00,207,157,115,159,184,1.5,1.112,64,41,82,207,142,185,3,20,0
2015-05-17,21:00:00,210,160,119,207,185,1.7,1.138,112,44,37,207,120,185,3,19,0
2015-05-17,22:00:00,221,171,123,237,190,2,1.179,130,48,9,207,96,183,2,19,0
2015-05-18,00:00:00,242,192,133,203,196,1.9,1.271,127,56,7,207,58,169,2,17,0
2015-05-18,01:00:00,249,199,138,204,198,1.8,1.308,116,59,12,207,44,166,2,16,0
2015-05-18,02:00:00,242,192,143,211,200,1.8,1.346,102,62,11,207,30,162,3,15,0
2015-05-18,03:00:00,237,187,147,204,202,1.7,1.375,109,65,2,207,20,160,2,14,0
2015-05-18,04:00:00,226,176,150,183,203,1.3,1.388,75,66,28,207,14,160,2,13,0
2015-05-18,05:00:00,203,153,152,0,203,1.1,1.392,61,67,35,207,14,160,2,13,0
2015-05-18,06:00:00,163,124,152,0,203,1,1.392,79,69,22,207,15,160,3,12,0
2015-05-18,07:00:00,93,69,150,0,205,0.7,1.379,51,69,47,207,20,160,6,12,0
2015-05-18,08:00:00,65,30,146,79,200,0.3,1.35,23,68,83,207,30,160,2,12,0
2015-05-18,09:00:00,76,24,143,101,198,0.2,1.321,18,68,94,207,40,160,2,11,0
2015-05-18,10:00:00,81,23,139,111,194,0.2,1.292,16,67,96,207,51,160,2,10,0
2015-05-18,11:00:00,69,26,134,88,189,0.3,1.262,16,67,104,207,64,160,3,9,0
2015-05-18,13:00:00,37,15,124,26,174,0.2,1.179,13,66,117,207,84,160,2,6,0
2015-05-18,14:00:00,48,14,119,48,167,0.2,1.138,15,65,117,167,96,160,2,5,0
2015-05-18,15:00:00,42,17,114,42,156,0.2,1.092,16,64,117,148,105,160,2,4,0
2015-05-18,17:00:00,56,18,102,61,141,0.2,0.987,20,61,111,118,111,160,2,3,0
2015-05-18,18:00:00,46,10,96,46,132,0.2,0.938,22,59,106,117,112,153,3,3,0
2015-05-18,19:00:00,48,16,91,48,123,0.3,0.887,32,58,91,117,110,142,2,2,0
2015-05-18,20:00:00,25,13,85,21,116,0.3,0.837,37,56,79,117,106,120,2,2,0
2015-05-18,21:00:00,60,14,79,70,109,0.3,0.779,56,54,55,117,99,112,2,2,0
2015-05-18,22:00:00,62,18,73,73,102,0.4,0.712,45,51,58,117,91,112,2,2,0
2015-05-18,23:00:00,99,26,66,148,99,0.3,0.637,46,47,56,117,84,112,2,2,0
2015-05-19,00:00:00,115,30,59,179,98,0.2,0.567,54,44,50,117,76,112,2,2,0
2015-05-19,01:00:00,85,30,52,120,94,0.2,0.5,53,41,54,117,69,112,2,2,0
2015-05-19,02:00:00,47,23,45,47,86,0.2,0.433,40,39,67,117,64,112,2,2,0
2015-05-19,03:00:00,29,12,38,29,78,0.2,0.371,21,35,87,117,63,112,2,2,0
2015-05-19,04:00:00,27,9,31,20,70,0.2,0.325,20,33,86,117,64,112,4,2,0
2015-05-19,05:00:00,27,10,25,21,68,0.2,0.288,20,31,85,117,68,112,3,2,0
2015-05-19,06:00:00,30,4,20,30,66,0.2,0.254,21,29,83,117,71,112,5,3,0
2015-05-19,07:00:00,52,6,17,54,66,0.2,0.233,27,28,75,117,73,112,2,2,0
2015-05-19,08:00:00,47,12,17,47,64,0.2,0.229,24,28,81,117,77,112,2,2,0
2015-05-19,09:00:00,46,12,16,46,62,0.2,0.229,21,28,88,117,82,112,3,2,0
2015-05-19,10:00:00,73,14,16,95,62,0.2,0.229,19,28,89,117,84,112,3,2,0
2015-05-19,11:00:00,59,10,15,68,61,0.2,0.225,18,28,91,117,85,112,2,2,0
2015-05-19,12:00:00,56,11,15,62,60,0.2,0.225,17,28,95,117,86,112,2,2,0
2015-05-19,13:00:00,64,10,15,77,63,0.2,0.225,16,28,98,117,88,112,2,2,0
2015-05-19,14:00:00,65,16,15,79,64,0.2,0.225,15,28,100,117,90,112,2,2,0
2015-05-19,15:00:00,83,14,15,116,67,0.2,0.225,14,28,102,114,93,112,2,2,0
2015-05-19,17:00:00,32,8,14,32,67,0.2,0.225,15,28,99,106,97,112,2,2,0
2015-05-19,18:00:00,30,0,14,26,66,0.2,0.225,19,28,96,102,98,110,2,2,0
2015-05-19,19:00:00,29,0,0,24,65,0.2,0.221,23,27,91,102,98,106,2,2,0
2015-05-19,20:00:00,28,0,0,28,65,0.3,0.221,24,27,87,102,97,99,2,2,0
2015-05-19,21:00:00,34,0,0,34,64,0.3,0.221,29,26,80,102,94,98,2,2,0
2015-05-19,22:00:00,26,0,0,26,62,0.3,0.217,35,25,72,102,91,98,2,2,0
2015-05-19,23:00:00,21,0,0,20,56,0.3,0.217,40,25,66,102,86,98,2,2,0
2015-05-20,00:00:00,26,0,0,26,50,0.3,0.221,40,24,65,102,82,98,2,2,0
2015-05-20,01:00:00,28,0,0,28,46,0.2,0.221,35,24,67,102,78,98,2,2,0
2015-05-20,02:00:00,31,0,0,31,46,0.2,0.221,32,23,68,102,74,98,2,2,0
2015-05-20,03:00:00,26,0,0,26,45,0.3,0.225,31,24,68,102,72,98,2,2,0
2015-05-20,04:00:00,21,0,0,19,45,0.3,0.229,27,24,65,102,69,98,2,2,0
2015-05-20,05:00:00,22,0,0,13,45,0.3,0.233,21,24,68,102,67,98,2,2,0
2015-05-20,06:00:00,28,0,0,28,45,0.3,0.237,20,24,72,102,67,98,2,2,0
2015-05-20,07:00:00,33,0,0,33,44,0.3,0.242,33,24,58,102,66,98,2,2,0
2015-05-20,08:00:00,43,0,0,43,44,0.4,0.25,34,25,59,102,66,98,4,2,0
2015-05-20,11:00:00,31,15,12,21,39,0.3,0.259,10,25,99,102,70,98,4,2,0
2015-05-20,12:00:00,35,24,14,0,38,0.3,0.264,8,24,110,110,78,98,4,2,0
2015-05-20,13:00:00,37,18,15,0,36,0.3,0.268,7,24,118,118,86,98,2,2,0
2015-05-20,15:00:00,39,20,16,0,30,0.3,0.277,9,23,124,124,106,106,2,2,0
2015-05-20,16:00:00,39,20,17,0,28,0.3,0.282,9,23,124,124,116,116,2,2,0
2015-05-20,18:00:00,40,11,18,0,27,0.3,0.291,22,23,128,128,119,119,2,2,0
2015-05-20,19:00:00,42,20,18,37,28,0.4,0.3,32,24,132,132,123,123,2,2,0
2015-05-20,20:00:00,47,21,18,47,29,0.4,0.305,36,24,117,132,124,124,2,2,0
2015-05-20,21:00:00,51,18,18,51,30,0.4,0.309,35,24,114,132,123,124,2,2,0
2015-05-20,22:00:00,51,26,19,52,32,0.4,0.314,45,25,99,132,120,124,2,2,0
2015-05-20,23:00:00,53,26,20,55,34,0.4,0.318,38,25,97,132,117,124,2,2,0
2015-05-21,00:00:00,53,23,20,55,36,0.4,0.323,34,25,95,132,113,124,2,2,0
2015-05-21,01:00:00,54,21,20,58,38,0.4,0.332,39,25,86,132,108,124,2,2,0
2015-05-21,02:00:00,50,26,20,50,39,0.4,0.341,36,25,88,132,104,124,2,2,0
2015-05-21,03:00:00,50,24,21,50,41,0.5,0.35,46,26,70,132,96,124,2,2,0
2015-05-21,04:00:00,67,23,21,84,45,0.5,0.359,73,28,34,132,85,124,2,2,0
2015-05-21,05:00:00,62,30,21,73,48,0.7,0.377,93,31,5,132,72,124,2,2,0
2015-05-21,06:00:00,75,39,22,100,53,0.8,0.4,94,34,2,132,60,124,2,2,0
2015-05-21,07:00:00,72,42,23,93,57,0.7,0.418,85,37,9,132,49,124,4,2,0
2015-05-21,08:00:00,59,29,23,68,58,0.5,0.423,58,38,36,132,41,124,3,2,0
2015-05-21,09:00:00,58,22,23,66,59,0.6,0.43,52,38,51,132,37,124,2,2,0
2015-05-21,10:00:00,61,28,24,71,59,0.6,0.438,61,39,57,132,33,124,3,2,0
2015-05-21,11:00:00,65,35,24,80,63,0.7,0.454,73,42,69,132,33,124,3,2,0
2015-05-21,12:00:00,70,47,25,90,64,0.6,0.467,49,44,122,132,44,124,6,2,0
2015-05-21,13:00:00,60,36,26,70,64,0.6,0.479,26,44,148,148,62,124,11,3,0
2015-05-21,14:00:00,70,48,28,89,67,0.6,0.492,30,45,153,153,81,124,16,3,0
2015-05-21,15:00:00,74,43,29,98,68,0.7,0.508,30,46,158,158,99,124,18,4,0
2015-05-21,16:00:00,85,47,30,119,71,0.9,0.533,25,47,168,168,116,124,15,5,0
2015-05-21,17:00:00,101,29,30,152,74,0.5,0.542,19,47,163,168,130,130,8,5,0
2015-05-21,18:00:00,82,24,30,113,76,0.5,0.55,22,47,155,168,142,142,6,5,0
2015-05-21,19:00:00,75,21,30,99,78,0.4,0.55,26,47,137,168,150,150,4,5,0
2015-05-21,20:00:00,67,19,30,83,80,0.5,0.554,28,47,127,168,151,151,7,5,0
2015-05-21,21:00:00,73,28,31,95,82,0.7,0.567,30,46,128,168,149,151,13,6,0
2015-05-21,22:00:00,69,28,31,87,83,0.7,0.579,32,46,121,168,145,151,13,6,0
2015-05-21,23:00:00,68,33,31,85,84,0.8,0.596,33,46,112,168,139,151,14,7,0
2015-05-22,00:00:00,62,35,32,74,85,0.8,0.612,32,46,105,168,131,151,17,7,0
2015-05-22,01:00:00,59,31,32,67,86,0.8,0.629,31,45,96,168,123,151,14,8,0
2015-05-22,02:00:00,55,34,32,60,86,0.7,0.642,32,45,87,168,114,151,14,8,0
2015-05-22,03:00:00,57,40,33,60,86,0.7,0.65,34,45,82,168,107,151,14,9,0
2015-05-22,12:00:00,112,84,38,146,97,1.1,0.712,92,36,100,168,82,151,21,13,0
2015-05-22,13:00:00,98,73,41,119,99,0.9,0.729,61,38,157,168,107,151,20,14,0
2015-05-22,15:00:00,119,57,42,75,99,0.7,0.735,25,39,238,238,154,154,14,14,0
2015-05-22,16:00:00,122,53,43,76,96,0.7,0.724,25,39,243,243,169,169,15,14,0
2015-05-22,17:00:00,119,45,44,80,92,0.7,0.735,26,39,237,243,179,179,14,14,0
2015-05-22,18:00:00,108,41,45,69,90,0.7,0.747,30,40,216,243,184,184,12,14,0
2015-05-22,19:00:00,109,44,46,85,89,0.7,0.765,36,40,218,243,203,203,13,15,0
2015-05-22,20:00:00,95,46,48,84,89,0.8,0.782,41,41,196,243,215,215,12,15,0
2015-05-22,21:00:00,67,46,49,84,88,0.8,0.788,57,43,152,243,214,215,10,15,0
2015-05-22,22:00:00,73,53,50,95,89,0.9,0.8,70,45,128,243,204,215,12,15,0
2015-05-22,23:00:00,82,60,52,108,90,1,0.812,96,49,90,243,185,215,15,15,0
2015-05-23,00:00:00,94,70,54,119,93,1.1,0.829,114,54,62,243,162,215,17,15,0
2015-05-23,01:00:00,102,76,56,143,97,1,0.841,83,57,84,243,143,215,28,16,0
2015-05-23,02:00:00,92,68,58,111,100,0.8,0.847,46,58,102,243,129,215,21,16,0
2015-05-23,03:00:00,95,71,60,107,103,0.8,0.853,68,60,68,243,110,215,14,16,0
2015-05-23,04:00:00,102,76,61,127,104,0.9,0.856,112,63,12,243,87,215,7,16,0
2015-05-23,05:00:00,148,113,64,181,108,1.1,0.868,110,66,2,243,68,215,6,15,0
2015-05-23,06:00:00,168,127,67,173,112,1.2,0.885,99,68,5,243,53,215,7,15,0
2015-05-23,07:00:00,175,132,70,176,115,1.3,0.905,98,69,7,243,43,215,12,15,0
2015-05-23,08:00:00,193,145,73,201,119,1.3,0.923,96,71,26,243,38,215,24,15,0
2015-05-23,09:00:00,192,144,77,192,122,1.2,0.935,86,71,59,243,35,215,27,16,0
2015-05-23,10:00:00,176,133,79,182,124,1.1,0.942,73,71,104,243,35,215,25,16,0
2015-05-23,11:00:00,178,134,81,190,126,1.2,0.946,78,71,138,243,44,215,25,16,0
2015-05-23,12:00:00,169,128,83,183,128,1.2,0.95,76,70,188,243,66,215,26,16,0
2015-05-23,13:00:00,150,115,85,165,130,1,0.954,55,70,243,243,96,215,23,17,0
2015-05-23,14:00:00,136,82,86,114,130,0.8,0.958,22,68,271,271,130,215,20,17,0
2015-05-23,15:00:00,128,65,86,105,131,0.8,0.963,19,67,255,271,160,215,21,17,0
2015-05-23,17:00:00,123,63,87,116,134,0.8,0.967,26,67,246,271,212,215,18,17,0
2015-05-23,18:00:00,120,63,88,118,136,0.8,0.971,26,67,240,271,229,229,18,18,0
2015-05-23,19:00:00,105,66,89,103,137,0.8,0.975,30,67,210,271,238,238,23,18,0
2015-05-23,20:00:00,87,64,90,118,138,0.9,0.979,58,68,171,271,236,238,21,18,0
2015-05-23,21:00:00,109,82,91,147,141,1,0.987,57,68,168,271,226,238,22,19,0
2015-05-23,22:00:00,110,83,93,135,142,1.1,0.996,75,68,123,271,208,238,18,19,0
2015-05-23,23:00:00,125,95,94,167,145,1.2,1.004,93,68,93,271,188,238,17,19,0
2015-05-24,00:00:00,134,102,96,178,147,1.3,1.012,108,67,69,271,165,238,14,19,0
2015-05-24,01:00:00,155,118,97,199,150,1.7,1.042,133,69,26,271,138,238,12,18,0
2015-05-24,02:00:00,163,124,100,187,153,1.7,1.079,114,72,35,271,112,238,13,18,0
2015-05-24,03:00:00,159,121,102,176,156,1.6,1.112,108,74,31,271,90,238,14,18,0
2015-05-24,04:00:00,158,120,104,165,157,1.5,1.138,94,73,21,271,71,238,14,18,0
2015-05-24,05:00:00,175,132,104,181,157,1.9,1.171,116,73,2,271,50,238,8,18,0
2015-05-24,06:00:00,208,158,106,186,158,1.8,1.196,90,73,18,271,37,238,10,19,0
2015-05-24,07:00:00,216,166,107,179,158,1.6,1.208,78,72,25,271,28,238,15,19,0
2015-05-24,08:00:00,223,173,108,200,158,1.7,1.225,79,72,40,271,25,238,21,19,0
2015-05-24,09:00:00,231,181,110,229,159,1.7,1.246,88,72,57,271,29,238,25,18,0
2015-05-24,10:00:00,234,184,112,239,162,1.7,1.271,92,72,94,271,36,238,23,18,0
2015-05-24,11:00:00,236,186,114,237,164,1.7,1.292,87,73,144,271,50,238,24,18,0
2015-05-24,12:00:00,182,137,114,163,163,1.2,1.292,42,71,234,271,77,238,30,19,0
2015-05-24,13:00:00,132,91,113,116,161,1,1.292,21,70,264,271,110,238,26,19,0
2015-05-24,14:00:00,129,78,113,134,162,0.9,1.296,20,70,257,264,139,238,26,19,0
2015-05-24,15:00:00,123,61,113,112,162,0.9,1.3,20,70,246,264,167,238,30,19,0
2015-05-24,17:00:00,113,58,113,97,162,0.7,1.3,27,70,226,264,213,238,19,20,0
2015-05-24,18:00:00,110,54,112,105,161,0.7,1.296,32,70,219,264,229,238,15,19,0
2015-05-24,19:00:00,114,68,112,127,162,0.9,1.3,39,71,228,264,239,239,17,19,0
2015-05-24,20:00:00,102,73,113,136,163,1,1.304,51,70,203,264,235,239,19,19,0
2015-05-24,21:00:00,109,82,113,151,163,1.3,1.317,59,70,169,264,223,239,23,19,0
2015-05-24,22:00:00,112,84,113,164,164,1.3,1.325,67,70,140,264,209,239,23,19,0
2015-05-24,23:00:00,103,77,112,144,163,1.1,1.321,46,68,161,264,198,239,20,19,0
2015-05-25,00:00:00,102,76,111,123,161,0.9,1.304,35,65,170,264,190,239,20,20,0
2015-05-25,01:00:00,92,68,109,116,158,0.8,1.267,29,61,172,264,183,239,19,20,0
2015-05-25,02:00:00,98,73,107,137,156,0.8,1.229,37,58,138,264,173,239,20,20,0
2015-05-25,03:00:00,103,77,105,136,154,0.9,1.2,47,55,110,264,158,239,18,20,0
2015-05-25,04:00:00,108,81,103,132,153,0.9,1.175,49,53,97,264,145,239,20,21,0
2015-05-25,05:00:00,113,85,101,159,152,0.9,1.133,66,51,66,264,132,239,20,21,0
2015-05-25,06:00:00,124,94,99,163,151,1,1.1,70,50,58,264,122,239,21,22,0
2015-05-25,07:00:00,147,112,97,174,150,1.1,1.079,75,50,54,264,108,239,31,22,0
2015-05-25,08:00:00,153,117,94,191,150,1.2,1.058,81,50,61,264,94,239,39,23,0
2015-05-25,09:00:00,156,119,92,225,150,1.3,1.042,117,51,40,264,78,239,26,23,0
2015-05-25,10:00:00,178,134,90,234,150,1.4,1.029,122,53,63,264,69,239,26,23,0
2015-05-25,11:00:00,168,127,87,227,149,1.3,1.013,101,53,113,264,69,239,0,0,0
2015-05-25,12:00:00,160,122,86,184,150,0,0,52,54,220,264,84,239,0,0,0
2015-05-25,13:00:00,135,101,87,177,153,0,0,29,54,269,269,110,239,41,24,0
2015-05-25,14:00:00,125,95,88,168,154,1.4,1.027,25,54,0,0,0,239,41,24,0
2015-05-25,15:00:00,133,101,89,185,157,1.3,1.045,26,54,0,0,0,239,37,25,0
2015-05-25,16:00:00,141,96,91,165,159,1.2,1.064,0,0,281,281,164,239,34,25,0
2015-05-25,17:00:00,133,99,92,175,162,1.3,1.091,0,0,266,281,202,239,36,26,0
2015-05-25,18:00:00,145,98,94,184,166,1.3,1.118,35,57,289,289,240,240,36,27,0
2015-05-25,19:00:00,124,86,95,138,166,1,1.123,38,57,248,289,262,262,28,27,0
2015-05-25,20:00:00,108,71,95,135,166,0.8,1.114,41,57,215,289,261,262,20,27,0
2015-05-25,21:00:00,108,71,94,135,165,0.8,1.091,41,56,215,289,252,262,20,27,0
2015-05-25,22:00:00,97,63,93,143,165,0.8,1.068,40,55,171,289,241,262,15,27,0
2015-05-26,01:00:00,97,72,93,133,165,0.8,1.05,37,54,144,289,202,262,15,26,0
2015-05-26,02:00:00,97,72,93,133,165,0.8,1.05,37,54,144,289,184,262,15,26,0
2015-05-26,03:00:00,103,77,93,128,165,0.8,1.045,29,54,144,289,171,262,20,26,0
2015-05-26,04:00:00,105,79,93,134,165,0.8,1.041,32,53,126,289,160,262,18,26,0
2015-05-26,05:00:00,118,89,93,137,164,0.8,1.036,36,51,106,289,146,262,17,26,0
2015-05-26,06:00:00,119,90,93,142,163,1,1.036,58,51,73,289,134,262,20,26,0
2015-05-26,07:00:00,130,99,92,159,162,1.1,1.036,68,51,67,289,121,262,31,26,0
2015-05-26,08:00:00,130,99,91,159,161,1.1,1.032,68,50,67,289,109,262,31,25,0
2015-05-26,09:00:00,153,117,91,181,159,1.2,1.027,74,48,99,289,103,262,44,26,0
2015-05-26,10:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-05-26,11:00:00,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2015-05-26,12:00:00,164,110,87,278,157,1.4,1.014,34,41,262,289,112,262,45,27,0
2015-05-26,14:00:00,141,93,88,146,160,1,1.014,24,41,282,289,173,262,32,27,0
2015-05-26,15:00:00,139,78,87,150,159,0.9,0.995,25,41,277,289,208,262,24,26,0
2015-05-26,16:00:00,129,74,86,150,158,0.8,0.977,24,40,257,289,240,262,16,25,0
2015-05-26,17:00:00,120,62,84,130,156,0.7,0.95,28,40,240,289,263,263,11,24,0
2015-05-26,19:00:00,102,56,81,120,152,0.6,0.9,31,39,204,282,250,263,11,22,0
2015-05-26,20:00:00,102,56,80,120,151,0.6,0.891,31,38,204,282,243,263,11,22,0
2015-05-26,22:00:00,81,58,79,111,149,0.7,0.877,34,38,174,282,222,263,11,21,0
2015-05-26,23:00:00,87,61,79,123,149,0.7,0.873,36,38,158,282,208,263,13,21,0
2015-05-27,00:00:00,97,72,79,129,148,0.7,0.868,30,38,158,282,195,263,12,21,0
2015-05-27,01:00:00,100,75,79,127,148,0.7,0.864,24,37,163,282,186,263,10,21,0
2015-05-27,02:00:00,102,76,79,127,148,0.7,0.859,27,37,148,282,177,263,13,21,0
2015-05-27,03:00:00,110,83,79,130,148,0.8,0.859,33,37,128,282,167,263,18,21,0
2015-05-27,04:00:00,118,89,80,139,148,0.8,0.859,29,37,126,282,157,263,21,21,0
2015-05-27,05:00:00,120,91,80,134,148,0.9,0.864,33,37,119,282,147,263,21,21,0
2015-05-27,06:00:00,125,95,80,135,148,0.9,0.859,40,36,102,282,138,263,17,21,0
2015-05-27,07:00:00,133,101,80,143,147,0.9,0.85,51,35,89,282,129,263,19,20,0
2015-05-27,08:00:00,148,113,81,168,147,1.1,0.85,74,35,72,282,118,263,26,20,0
2015-05-27,09:00:00,158,120,81,176,147,1.1,0.845,72,35,90,282,109,263,29,19,0
2015-05-27,11:00:00,185,139,85,183,150,1.1,0.867,40,36,185,282,116,263,21,20,0
2015-05-27,12:00:00,165,125,86,134,144,1,0.85,23,36,221,282,127,263,14,18,0
2015-05-27,13:00:00,133,101,85,116,137,0.9,0.829,15,35,221,282,140,263,8,17,0
2015-05-27,14:00:00,118,89,85,106,136,0.9,0.825,16,34,233,277,156,263,8,16,0
2015-05-27,15:00:00,117,80,85,92,133,0.8,0.821,15,34,233,257,174,263,6,15,0
2015-05-27,18:00:00,111,68,86,96,130,0.8,0.838,28,34,222,236,223,250,6,14,0
2015-05-27,19:00:00,112,69,87,102,129,0.8,0.846,29,33,223,236,228,243,6,14,0
2015-05-27,20:00:00,114,86,88,147,130,1,0.862,45,34,222,236,228,236,9,14,0
2015-05-27,21:00:00,114,86,89,152,131,1,0.879,47,35,188,236,224,228,8,14,0
2015-05-27,23:00:00,165,125,94,180,136,1.6,0.942,32,35,207,236,213,228,32,15,0
2015-05-28,00:00:00,160,122,96,155,137,1.6,0.979,33,35,182,236,206,228,34,16,0
2015-05-28,01:00:00,156,119,98,148,138,1.6,1.017,38,36,147,236,196,228,32,17,0
2015-05-28,02:00:00,147,112,99,146,139,1.5,1.05,37,36,136,236,185,228,33,18,0
2015-05-28,03:00:00,158,120,101,149,140,1.3,1.071,39,37,126,236,173,228,29,18,0
2015-05-28,04:00:00,160,122,102,166,141,1.2,1.088,35,37,120,236,160,228,26,18,0
2015-05-28,05:00:00,170,129,104,154,142,1.2,1.1,38,37,116,236,151,228,27,19,0
2015-05-28,06:00:00,185,139,105,169,143,1.3,1.117,45,37,106,236,142,228,28,19,0
2015-05-28,07:00:00,199,149,107,182,145,1.6,1.146,88,39,39,236,122,228,29,19,0
2015-05-28,08:00:00,206,156,109,197,146,1.7,1.171,98,40,34,236,103,228,30,20,0
2015-05-28,09:00:00,207,157,111,207,147,1.6,1.192,81,40,75,236,94,228,35,20,0
2015-05-28,10:00:00,202,152,112,202,148,1.4,1.204,73,41,104,236,90,228,35,20,0
2015-05-28,11:00:00,196,147,112,201,149,1.3,1.213,51,42,155,236,94,228,33,21,0
2015-05-28,12:00:00,169,128,113,154,150,1.1,1.217,32,42,198,236,103,228,30,21,0
2015-05-28,13:00:00,124,94,112,95,149,0.9,1.217,21,42,207,236,115,228,22,22,0
2015-05-28,14:00:00,110,83,112,95,149,0.9,1.217,19,42,213,236,128,228,20,22,0
2015-05-28,15:00:00,117,88,112,122,150,0.9,1.221,20,43,219,236,151,228,27,23,0
2015-05-28,16:00:00,119,90,113,114,150,1,1.225,23,43,221,235,174,228,26,24,0
2015-05-28,17:00:00,112,84,113,106,150,0.9,1.229,28,43,213,223,191,228,26,25,0
2015-05-28,18:00:00,110,83,114,132,152,0.9,1.233,32,43,210,223,204,228,26,26,0
2015-05-28,21:00:00,97,72,114,112,149,0.9,1.229,39,43,169,221,202,216,25,28,0
2015-05-28,22:00:00,97,72,113,110,147,0.9,1.212,41,42,159,221,195,213,25,29,0
2015-05-29,00:00:00,103,77,109,94,142,0.9,1.154,36,43,141,221,174,210,20,28,0
2015-05-29,01:00:00,82,60,107,79,140,1.6,1.154,40,43,121,221,162,210,26,27,0
2015-05-29,02:00:00,72,52,104,83,137,1.8,1.167,49,44,94,221,148,210,28,27,0
2015-05-29,03:00:00,102,76,102,122,136,1.6,1.179,100,46,17,221,125,210,18,27,0
2015-05-29,04:00:00,97,72,100,132,134,1.5,1.192,96,49,9,221,105,210,13,26,0
2015-05-29,05:00:00,94,70,98,131,133,1.5,1.204,94,51,2,221,84,210,5,25,0
2015-05-29,06:00:00,97,72,95,96,130,1.5,1.213,88,53,2,221,64,210,3,24,0
2015-05-29,07:00:00,105,79,92,98,127,1.5,1.208,82,53,2,221,48,210,3,23,0
2015-05-29,08:00:00,125,95,90,0,124,1.3,1.192,86,52,3,221,31,210,4,22,0
2015-05-29,10:00:00,140,107,85,128,117,1.4,1.183,91,54,27,221,8,210,9,20,0
2015-05-29,11:00:00,125,95,83,108,113,1.2,1.179,72,54,67,221,15,210,11,19,0
2015-05-29,12:00:00,115,87,82,116,111,1.2,1.183,79,56,84,221,24,210,9,18,0
2015-05-29,13:00:00,130,99,82,118,112,1.2,1.196,78,59,124,221,39,210,8,17,0
2015-05-29,14:00:00,139,106,83,0,113,1.1,1.204,66,61,173,221,61,210,7,17,0
2015-05-29,15:00:00,103,77,82,0,112,0.9,1.204,47,62,203,221,86,210,6,16,0
2015-05-29,16:00:00,89,53,81,0,112,0.7,1.192,33,62,191,213,109,210,6,15,0
2015-05-29,17:00:00,65,31,78,33,109,0.5,1.175,21,62,172,210,130,210,4,14,0
2015-05-29,18:00:00,58,34,76,53,105,0.5,1.158,26,62,166,203,148,210,4,13,0
2015-05-29,19:00:00,52,34,74,53,102,0.6,1.146,34,62,145,203,157,206,4,12,0
2015-05-29,20:00:00,52,34,72,54,99,0.6,1.133,37,62,125,203,162,202,4,11,0
2015-05-29,21:00:00,62,37,71,73,97,0.6,1.121,37,61,120,203,162,195,4,10,0
2015-05-29,22:00:00,64,44,70,78,95,0.7,1.112,38,61,110,203,154,184,5,10,0
2015-05-29,23:00:00,79,58,69,100,93,1,1.117,61,62,74,203,138,174,5,9,0
2015-05-30,00:00:00,124,94,70,129,95,1.4,1.138,88,64,28,203,118,162,5,8,0
2015-05-30,01:00:00,132,100,71,124,97,1.5,1.133,111,67,2,203,96,162,5,7,0
2015-05-30,02:00:00,132,100,73,105,98,1.4,1.117,99,69,2,203,76,162,4,6,0
2015-05-30,03:00:00,123,93,74,0,97,1.2,1.1,89,69,2,203,58,162,4,6,0
2015-05-30,04:00:00,117,88,75,0,95,1.1,1.083,85,68,2,203,42,162,4,5,0
2015-05-30,05:00:00,109,82,75,88,93,1,1.062,84,68,2,203,28,162,3,5,0
2015-05-30,06:00:00,107,80,75,0,93,0.9,1.037,82,68,3,203,14,162,5,5,0
2015-05-30,07:00:00,95,71,75,74,91,0.7,1.004,68,67,31,203,9,162,9,6,0
2015-05-30,08:00:00,79,58,74,61,90,0.6,0.975,46,65,62,203,13,162,6,6,0
2015-05-30,09:00:00,59,42,71,0,88,0.5,0.937,43,63,75,203,22,162,5,6,0
2015-05-30,10:00:00,71,44,68,92,86,0.6,0.904,42,61,92,203,34,162,6,6,0
2015-05-30,11:00:00,73,53,67,94,85,0.7,0.883,34,60,114,203,48,162,10,6,0
2015-05-30,13:00:00,98,73,64,80,81,1,0.862,21,55,190,203,90,162,12,6,0
2015-05-30,14:00:00,107,64,63,92,81,1,0.858,20,53,213,213,117,162,12,6,0
2015-05-30,16:00:00,122,72,63,127,84,0.9,0.867,23,52,244,244,164,164,11,6,0
2015-05-30,17:00:00,125,77,65,112,88,1.1,0.892,26,52,249,249,186,186,12,7,0
2015-05-30,18:00:00,100,71,66,114,91,0.6,0.896,27,52,200,249,199,199,7,7,0
2015-05-30,19:00:00,90,67,68,88,93,0.6,0.896,30,52,184,249,208,208,11,7,0
2015-05-30,20:00:00,92,68,69,125,97,0.8,0.904,37,52,161,249,209,209,10,7,0
2015-05-30,21:00:00,59,42,69,50,96,1.1,0.925,39,52,124,249,200,209,10,8,0
2015-05-30,22:00:00,62,37,69,73,95,1.1,0.942,41,52,110,249,188,209,13,8,0
2015-05-30,23:00:00,60,40,68,70,94,1.2,0.95,53,52,77,249,169,209,14,8,0
2015-05-31,01:00:00,66,47,64,82,89,1.1,0.917,76,50,24,249,114,209,9,9,0
2015-06-01,00:00:00,104,69,58,158,106,0.9,0.904,34,52,158,241,194,221,18,16,0
2015-06-01,01:00:00,102,76,59,153,109,0.9,0.896,35,50,145,241,183,221,18,17,0
2015-06-01,02:00:00,110,83,60,154,112,0.9,0.883,30,48,142,241,171,221,18,17,0
2015-06-01,03:00:00,117,88,62,159,116,0.9,0.871,29,46,141,241,159,221,18,17,0
2015-06-01,04:00:00,122,92,64,162,119,1,0.871,32,44,117,241,147,221,18,18,0
2015-06-01,05:00:00,125,95,66,157,122,1,0.875,27,42,118,241,141,221,16,18,0
2015-06-01,06:00:00,125,95,68,155,125,1,0.879,36,40,93,241,134,221,14,19,0
2015-06-01,07:00:00,120,91,69,151,127,1.2,0.888,75,40,35,241,119,221,12,19,0
2015-06-01,08:00:00,123,93,70,189,130,1.4,0.9,120,41,13,241,100,221,13,19,0
2015-06-01,09:00:00,139,106,71,227,134,1.4,0.912,119,42,32,241,86,221,15,19,0
2015-06-01,10:00:00,155,118,73,229,140,1.2,0.921,80,43,83,241,79,221,18,19,0
2015-06-01,11:00:00,127,3,70,203,144,1.2,0.937,63,45,111,241,75,221,21,19,0
2015-06-01,13:00:00,153,117,70,222,155,0,0,36,46,195,241,89,221,0,0,0
2015-06-01,14:00:00,201,151,74,228,160,0,0,33,46,0,0,0,221,26,19,0
2015-06-01,16:00:00,170,129,81,191,167,1,1.009,0,0,253,253,138,221,22,19,0
2015-06-01,17:00:00,152,116,84,149,168,1,1.023,40,49,248,253,174,221,21,20,0
2015-06-01,18:00:00,153,117,86,235,173,1.1,1.036,53,50,218,253,196,221,18,19,0
2015-06-01,19:00:00,192,144,90,226,177,1.4,1.059,63,52,202,253,212,221,16,19,0
2015-06-01,20:00:00,108,81,91,0,180,0.9,1.055,54,52,180,253,216,218,12,18,0
2015-06-01,22:00:00,211,161,97,262,190,1.5,1.095,41,53,182,253,203,216,14,17,0
2015-06-01,23:00:00,213,163,101,203,192,1.5,1.123,41,53,152,253,196,216,13,17,0
2015-06-02,00:00:00,143,109,103,0,193,1.1,1.132,45,53,100,253,177,216,11,17,0
2015-06-02,01:00:00,84,61,102,118,192,1.1,1.141,47,54,73,253,155,216,11,16,0
2015-06-02,02:00:00,89,64,101,127,190,1.2,1.155,40,54,77,253,138,216,10,16,0
2015-06-02,03:00:00,109,82,101,110,188,1.7,1.191,35,54,77,253,122,216,15,16,0
2015-06-02,04:00:00,114,86,101,116,186,2.2,1.245,41,55,68,253,108,216,20,16,0
2015-06-02,05:00:00,107,80,100,91,183,2.1,1.295,38,55,69,253,100,216,18,16,0
2015-06-02,06:00:00,109,82,99,0,185,1.9,1.336,40,56,64,253,85,216,17,16,0
2015-06-02,07:00:00,36,25,97,0,186,0.4,1.3,24,53,70,253,75,216,4,16,0
2015-06-02,08:00:00,42,6,93,42,179,0.2,1.245,18,49,79,253,72,216,2,15,0
2015-06-02,09:00:00,51,13,89,51,170,0.2,1.191,14,44,85,253,74,216,2,15,0
2015-06-02,10:00:00,47,12,85,47,161,0.2,1.145,12,41,90,253,75,216,2,14,0
2015-06-02,11:00:00,34,16,85,34,152,0.2,1.1,12,38,95,253,78,216,2,13,0
2015-06-02,13:00:00,32,13,84,22,139,0.2,1.064,12,37,102,253,84,216,2,13,0
2015-06-02,14:00:00,34,17,79,20,129,0.2,1.026,12,36,108,253,90,216,2,12,0
2015-06-02,15:00:00,35,11,73,16,121,0.2,0.991,12,35,112,253,96,216,2,11,0
2015-06-02,16:00:00,35,20,68,22,112,0.2,0.957,13,34,110,248,100,216,2,10,0
2015-06-02,17:00:00,33,23,64,31,106,0.2,0.922,16,33,104,218,103,216,2,9,0
2015-06-02,18:00:00,31,14,60,30,95,0.2,0.883,19,32,99,202,104,216,2,8,0
2015-06-02,19:00:00,35,15,54,35,85,0.2,0.83,31,30,83,182,103,216,2,8,0
2015-06-02,20:00:00,54,15,51,58,83,0.3,0.804,36,30,85,182,100,206,2,7,0
2015-06-02,21:00:00,39,22,48,39,74,0.4,0.765,58,29,53,182,94,203,2,7,0
2015-06-02,22:00:00,60,29,43,69,64,0.7,0.73,88,31,13,152,82,196,3,6,0
2015-06-02,23:00:00,96,26,37,141,61,0.6,0.691,87,33,15,112,70,177,5,6,0
2015-06-03,00:00:00,160,54,34,269,71,1,0.687,41,32,90,112,68,155,14,6,0
2015-06-03,01:00:00,92,38,33,134,72,0.5,0.661,30,32,85,112,65,138,10,6,0
2015-06-03,02:00:00,78,36,32,105,71,0.5,0.63,33,31,74,112,62,122,9,6,0
2015-06-03,03:00:00,72,34,30,94,70,0.5,0.578,39,32,61,112,60,108,10,6,0
2015-06-03,04:00:00,67,32,28,84,68,0.5,0.504,52,32,41,112,54,104,9,5,0
2015-06-03,05:00:00,74,38,26,98,69,0.6,0.439,46,32,47,112,53,104,6,5,0
2015-06-03,06:00:00,79,41,24,108,70,0.7,0.387,38,32,52,112,58,104,9,5,0
2015-06-03,07:00:00,67,37,24,84,71,0.7,0.4,56,34,42,112,62,104,13,5,0
2015-06-03,08:00:00,83,40,26,116,74,0.7,0.422,54,35,56,112,57,104,14,5,0
2015-06-03,09:00:00,75,51,28,100,76,0.8,0.448,52,37,70,112,55,104,14,6,0
2015-06-03,10:00:00,69,41,29,88,78,0.7,0.47,43,38,89,112,57,104,9,6,0
2015-06-03,11:00:00,60,42,30,70,80,0.7,0.491,51,40,93,112,61,104,7,7,0
2015-06-03,12:00:00,63,40,30,75,80,0.6,0.496,38,40,110,112,70,104,5,6,0
2015-06-03,14:00:00,42,29,32,0,85,0.3,0.508,18,40,133,133,89,104,2,6,0
2015-06-03,15:00:00,65,29,32,71,87,0.4,0.517,23,41,172,172,105,105,4,7,0
2015-06-03,16:00:00,48,25,33,46,88,0.4,0.525,22,41,153,172,117,117,4,7,0
2015-06-03,17:00:00,40,23,33,0,91,0.4,0.533,26,42,125,172,124,124,3,7,0
2015-06-03,18:00:00,51,23,33,51,92,0.4,0.542,36,42,111,172,127,127,3,7,0
2015-06-03,19:00:00,49,27,33,49,93,0.4,0.55,38,43,113,172,130,130,6,7,0
2015-06-03,20:00:00,57,28,34,63,93,0.5,0.558,38,43,112,172,130,130,10,7,0
2015-06-03,21:00:00,59,33,34,67,94,0.5,0.563,47,42,97,172,127,130,8,7,0
2015-06-03,22:00:00,58,33,35,66,94,0.5,0.554,56,41,80,172,120,130,8,8,0
2015-06-03,23:00:00,78,36,35,105,93,0.6,0.554,53,40,86,172,110,130,11,8,0
2015-06-04,00:00:00,76,42,34,102,85,0.7,0.542,59,40,71,172,99,130,12,8,0
2015-06-04,01:00:00,80,46,35,110,83,0.7,0.55,60,42,60,172,91,130,14,8,0
2015-06-04,02:00:00,78,55,36,106,83,0.8,0.562,61,43,53,172,84,130,14,8,0
2015-06-04,03:00:00,78,57,37,102,84,0.8,0.575,65,44,42,172,75,130,13,8,0
2015-06-04,04:00:00,72,52,37,89,84,0.8,0.588,66,44,35,172,66,130,11,8,0
2015-06-04,05:00:00,59,42,38,61,82,0.6,0.588,68,45,41,172,58,130,9,9,0
2015-06-04,06:00:00,53,28,37,56,80,0.5,0.579,42,46,77,172,58,130,7,8,0
2015-06-04,07:00:00,54,30,37,58,79,0.6,0.575,44,45,73,172,56,130,7,8,0
2015-06-04,08:00:00,73,33,36,95,78,0.8,0.579,88,46,29,172,51,130,7,8,0
2015-06-04,09:00:00,61,33,36,72,76,0.7,0.575,74,47,49,172,50,130,8,8,0
2015-06-04,10:00:00,79,37,36,108,77,0.7,0.575,69,48,49,172,49,130,5,8,0
2015-06-04,11:00:00,55,37,35,60,77,0.9,0.583,59,49,58,172,51,130,3,7,0
2015-06-04,15:00:00,80,47,37,48,76,8,0.967,35,53,83,153,54,130,3,8,0
2015-06-04,17:00:00,90,64,39,0,0,9,1.425,38,55,84,113,68,130,11,8,0
2015-06-04,18:00:00,100,65,41,0,0,10,1.905,44,55,86,113,78,130,14,9,0
2015-06-04,19:00:00,100,68,43,74,80,10,2.385,56,56,79,112,83,130,11,9,0
2015-06-04,21:00:00,100,71,48,0,0,10,3.385,48,57,77,86,80,120,9,9,0
2015-06-04,22:00:00,100,71,50,0,0,10,3.86,48,57,70,86,79,110,8,9,0
2015-06-04,23:00:00,80,53,50,0,0,8,4.23,43,56,70,86,77,99,7,9,0
2015-06-05,00:00:00,80,43,50,44,78,8,4.595,53,56,52,86,74,91,5,9,0
2015-06-05,01:00:00,80,40,50,0,0,8,4.96,59,56,37,86,68,84,4,8,0
2015-06-05,02:00:00,60,40,49,0,0,6,5.22,48,55,42,86,63,83,2,8,0
2015-06-05,03:00:00,60,42,49,47,69,6,5.48,60,55,28,86,56,83,2,7,0
2015-06-05,04:00:00,60,39,48,0,0,6,5.74,53,54,34,86,51,83,2,7,0
2015-06-05,05:00:00,60,39,48,0,0,6,6.01,50,53,25,86,45,83,2,6,0
2015-06-05,06:00:00,70,40,49,54,68,7,6.335,57,54,18,86,38,83,2,6,0
2015-06-05,07:00:00,102,73,51,100,72,11,6.855,74,56,6,86,30,83,2,6,0
2015-06-05,08:00:00,143,109,54,117,74,12,7.415,80,55,11,86,25,83,3,6,0
2015-06-05,10:00:00,124,94,59,0,0,8,8.153,51,53,69,86,27,83,6,6,0
2015-06-05,11:00:00,80,59,60,0,0,7,8.474,42,52,90,90,36,83,5,6,0
2015-06-05,12:00:00,97,72,60,80,73,7,8.4,48,52,134,134,50,83,4,6,0
2015-06-06,10:00:00,30,17,49,18,49,2,5.333,13,34,96,134,96,96,2,4,0
2015-06-06,15:00:00,92,40,23,85,47,6,3.667,21,15,193,193,145,145,9,4,0
2015-06-06,16:00:00,87,50,27,123,58,7,4.143,22,16,183,193,150,150,8,5,0
2015-06-06,17:00:00,60,30,27,50,57,6,4.375,35,18,155,193,151,151,5,5,0
2015-06-06,18:00:00,50,30,28,41,55,5,4.444,29,20,115,193,153,153,4,5,0
2015-06-06,19:00:00,95,31,28,139,64,7,4.7,40,22,76,193,149,153,2,4,0
2015-06-06,20:00:00,70,26,28,26,60,7,4.909,47,24,43,193,139,153,2,4,0
2015-06-06,21:00:00,100,32,28,46,59,10,5.333,75,28,13,193,121,153,2,4,0
2015-06-06,22:00:00,60,27,28,0,0,6,5.385,41,29,52,193,104,153,2,4,0
2015-06-06,23:00:00,60,20,28,31,57,6,5.429,49,31,36,193,84,153,2,4,0
2015-06-07,00:00:00,60,27,27,0,0,6,5.467,53,32,28,193,65,153,2,4,0
2015-06-07,01:00:00,70,20,27,29,55,7,5.562,54,33,23,193,48,153,2,3,0
2015-06-07,02:00:00,70,18,26,32,53,7,5.647,58,35,13,193,36,153,2,3,0
2015-06-07,03:00:00,50,18,26,20,51,5,5.611,53,36,9,193,27,153,2,3,0
2015-06-07,04:00:00,70,17,26,0,0,7,5.684,55,37,6,193,22,153,2,3,0
2015-06-07,05:00:00,70,17,25,33,50,7,5.75,57,38,2,193,21,153,2,3,0
2015-06-07,06:00:00,60,17,25,26,49,6,5.762,53,39,6,193,15,153,2,3,0
2015-06-07,07:00:00,40,23,25,0,0,4,5.682,39,39,27,193,14,153,3,3,0
2015-06-07,08:00:00,40,12,24,18,47,4,5.609,37,39,37,193,15,153,3,3,0
2015-06-07,09:00:00,40,18,24,38,47,4,5.542,38,39,43,193,18,153,6,3,0
2015-06-07,10:00:00,40,19,24,22,47,4,5.625,35,39,54,193,23,153,8,3,0
2015-06-07,11:00:00,40,18,24,26,47,4,5.667,33,40,67,193,30,153,7,4,0
2015-06-07,12:00:00,30,11,24,0,0,3,5.667,20,41,90,193,41,153,4,4,0
2015-06-07,14:00:00,32,7,23,13,44,0.2,5.467,14,41,102,193,64,153,2,4,0
2015-06-07,15:00:00,29,18,22,22,41,0.2,5.225,18,40,91,183,72,153,2,3,0
2015-06-07,16:00:00,36,10,21,36,36,0.3,4.946,21,40,98,155,80,153,2,3,0
2015-06-07,17:00:00,30,8,20,25,35,0.3,4.708,26,40,95,115,86,153,2,3,0
2015-06-07,18:00:00,60,14,19,70,36,0.3,4.512,26,40,88,102,91,149,2,3,0
2015-06-07,19:00:00,57,15,18,63,32,0.4,4.238,31,40,92,102,94,139,2,3,0
2015-06-07,20:00:00,28,16,18,21,32,0.5,3.967,37,39,87,102,93,121,2,3,0
2015-06-07,21:00:00,33,23,17,32,31,0.5,3.571,44,38,74,102,91,104,2,3,0
2015-06-07,22:00:00,36,22,17,36,31,0.6,3.346,62,39,47,102,84,94,2,3,0
2015-06-07,23:00:00,23,15,17,0,31,0.5,3.117,46,39,51,102,79,94,2,3,0
2015-06-08,00:00:00,20,11,16,0,31,0.3,2.879,35,38,61,102,74,94,2,3,0
2015-06-08,01:00:00,19,9,16,12,30,0.3,2.6,34,37,58,102,70,94,2,3,0
2015-06-08,02:00:00,23,9,16,13,29,0.4,2.325,46,36,40,102,64,94,2,3,0
2015-06-08,03:00:00,30,9,15,20,29,0.4,2.133,60,37,20,102,55,94,2,3,0
2015-06-08,04:00:00,32,14,15,21,29,0.5,1.862,63,37,14,102,46,94,2,3,0
2015-06-08,05:00:00,27,14,15,21,28,0.5,1.592,54,37,20,102,39,94,2,3,0
2015-06-08,06:00:00,48,19,15,48,29,0.6,1.367,64,37,8,102,34,94,2,3,0
2015-06-08,07:00:00,41,25,15,41,30,0.6,1.225,53,38,29,102,31,94,3,3,0
2015-06-08,08:00:00,30,21,15,0,31,0.6,1.083,50,39,44,102,29,94,6,3,0
2015-06-08,09:00:00,29,19,16,29,30,0.5,0.938,42,39,55,102,29,94,12,3,0
2015-06-08,10:00:00,28,19,16,19,30,0.4,0.788,28,38,76,102,33,94,8,3,0
2015-06-08,11:00:00,30,9,15,0,30,0.3,0.633,14,38,95,102,43,94,6,3,0
2015-06-08,12:00:00,32,14,15,0,30,0.3,0.521,10,37,100,102,53,94,5,3,0
2015-06-08,13:00:00,34,12,15,0,30,0.3,0.408,11,37,106,106,64,94,4,3,0
2015-06-08,18:00:00,57,19,16,63,33,0.4,0.43,31,38,133,160,124,124,3,4,0
2015-06-08,19:00:00,41,22,16,37,31,0.4,0.43,36,38,130,160,129,129,3,4,0
2015-06-08,20:00:00,51,25,16,51,33,0.5,0.43,44,38,122,160,132,132,3,4,0
2015-06-08,21:00:00,56,29,17,62,35,0.7,0.439,77,40,79,160,129,132,3,4,0
2015-06-08,22:00:00,56,32,17,62,36,0.8,0.448,98,41,45,160,118,132,3,4,0
2015-06-08,23:00:00,64,37,18,78,38,1,0.47,118,45,12,160,104,132,2,4,0
2015-06-09,01:00:00,72,52,21,87,45,1.7,0.578,131,53,3,160,66,132,3,4,0
2015-06-09,02:00:00,75,55,23,92,49,1.4,0.622,119,56,2,160,50,132,2,4,0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment