Skip to content

Instantly share code, notes, and snippets.

@csteed
Last active March 16, 2017 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save csteed/e77e59eb771aa49bf22eb1413ff78154 to your computer and use it in GitHub Desktop.
Save csteed/e77e59eb771aa49bf22eb1413ff78154 to your computer and use it in GitHub Desktop.
Summary Timeline Vis Design Variation 1

A summary timeline visualization design showing the typical value (mean), variation range (standard deviation), and spread (min/max range) for time series data. In this design, the mean is shown as the thicker single line, the variation range (2 * standard deviation centered on the mean) is the two lines that surround the mean line (middle line weight), and the spread is shown as the lightest weight lines surrounding the standard deviation range. The objective is to show the summary values along with variation and extent information in a compact and clean form. The data is randomly generated.

<!DOCTYPE html>
<style>
.axis--y .tick line {
/*stroke: #fff;*/
stroke-opacity: 0.15;
}
.axis .domain {
display: none;
}
</style>
<svg width="960" height="300"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
var svg = d3.select("svg"),
margin = {top: 20, right: 20, bottom: 30, left: 50},
width = +svg.attr("width") - margin.left - margin.right,
height = +svg.attr("height") - margin.top - margin.bottom,
g = svg.append("g").attr("transform", "translate(" + margin.left + "," + margin.top + ")");
// 2017-03-14T00:00:00Z
var parseTime = d3.timeParse("%Y-%m-%dT%H:%M:%SZ");
var x = d3.scaleTime()
.rangeRound([0, width]);
var y = d3.scaleLinear()
.rangeRound([height, 0]);
var meanLine = d3.line()
.x(function(d) { return x(d.date); })
.y(function(d) { return y(d.mean); });
var stdevMinLine = d3.line()
.x(function(d) { return x(d.date); })
.y(function(d) { return y(d.stdevMin); });
var stdevMaxLine = d3.line()
.x(function(d) { return x(d.date); })
.y(function(d) { return y(d.stdevMax); });
var maxLine = d3.line()
.x(function(d) { return x(d.date); })
.y(function(d) { return y(d.max); });
var minLine = d3.line()
.x(function(d) { return x(d.date); })
.y(function(d) { return y(d.min); });
d3.csv("test-data.csv", function(d) {
d.date = parseTime(d.date);
d.mean = +d.mean;
d.stdevMin = +d.stdevMin;
d.stdevMax = +d.stdevMax;
d.min = +d.min;
d.max = +d.max;
return d;
}, function(error, data) {
if (error) throw error;
x.domain(d3.extent(data, function(d) { return d.date; }));
// meanExtent = d3.extent(data, function(d) { return d.mean; });
// stdevMinExtent = d3.extent(data, function(d) { return d.stdevMin; })
// stdevMaxExtent = d3.extent(data, function(d) { return d.stdevMax; })
// minExtent = d3.extent(data, function(d) { return d.min; })
// maxExtent = d3.extent(data, function(d) { return d.max; })
// var yMin = d3.min([meanExtent, stdevMaxExtent, stdevMinExtent, minExtent, maxExtent], function(array) { return d3.min(array);});
// var yMax = d3.max([meanExtent, stdevMaxExtent, stdevMinExtent], function(array) { return d3.max(array);});
var yMin = d3.min(data, function(d) { return d.min; });
var yMax = d3.max(data, function(d) { return d.max; });
// y.domain(d3.extent(data, function(d) { return d.mean; }));
y.domain([yMin, yMax]);
g.append("g")
.attr("class", "axis axis--y")
.call(d3.axisLeft(y)
.tickSize(-width)
.tickPadding(10));
// .append("text")
// .attr("fill", "#000")
// .attr("transform", "rotate(-90)")
// .attr("y", 6)
// .attr("dy", "0.71em")
// .attr("text-anchor", "end")
// .text("Value");
g.append("g")
.attr("transform", "translate(0," + height + ")")
.call(d3.axisBottom(x))
.select(".domain")
.remove();
g.append("path")
.datum(data)
.attr("fill", "none")
.attr("stroke", "steelblue")
.attr("stroke-linejoin", "round")
.attr("stroke-linecap", "round")
.attr("stroke-width", 2.0)
.attr("d", meanLine);
g.append("path")
.datum(data)
.attr("fill", "none")
.attr("stroke", "steelblue")
.attr("stroke-linejoin", "round")
.attr("stroke-linecap", "round")
.attr("stroke-width", 1.5)
.attr("d", stdevMinLine);
g.append("path")
.datum(data)
.attr("fill", "none")
.attr("stroke", "steelblue")
.attr("stroke-linejoin", "round")
.attr("stroke-linecap", "round")
.attr("stroke-width", 1.5)
.attr("d", stdevMaxLine);
g.append("path")
.datum(data)
.attr("fill", "none")
.attr("stroke", "steelblue")
.attr("stroke-linejoin", "round")
.attr("stroke-linecap", "round")
.attr("stroke-width", 1.0)
.attr("d", maxLine);
g.append("path")
.datum(data)
.attr("fill", "none")
.attr("stroke", "steelblue")
.attr("stroke-linejoin", "round")
.attr("stroke-linecap", "round")
.attr("stroke-width", 1.0)
.attr("d", minLine);
});
</script>
MIT License
Copyright (c) 2017 Chad Steed
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
date mean stdevMin stdevMax min max
2017-03-15T00:00:00Z 0.4838268258884837 -0.5997606958217658 1.5674143475987332 -1.5997606958217658 2.914435740768514
2017-03-16T00:00:00Z 0.6498042770734018 -0.3501957229265982 1.6498042770734018 -1.3501957229265982 2.6767602566667934
2017-03-17T00:00:00Z 0.39657698918555845 -0.6034230108144416 1.3965769891855584 -1.6034230108144416 2.3965769891855584
2017-03-18T00:00:00Z 0.4849612531449654 -0.5150387468550346 1.4849612531449654 -1.5150387468550346 2.4849612531449656
2017-03-19T00:00:00Z 0.11182658882916507 -0.9079548829321445 1.1316080605904748 -1.9079548829321444 2.385872950793172
2017-03-20T00:00:00Z 0.32641800647039926 -1.098725046911943 1.7515610598527414 -2.1469731177308056 3.2567776094723846
2017-03-21T00:00:00Z 0.9240126606893876 -0.5227299337827002 2.3707552551614754 -1.894982525889982 4.34948747181687
2017-03-22T00:00:00Z 1.0200327765952553 -0.8077773968970023 2.8478429500875126 -2.307609211410443 4.702596253005742
2017-03-23T00:00:00Z 0.8348119271684077 -0.9528672314865813 2.6224910858233965 -2.2850449496385474 4.298814756535617
2017-03-24T00:00:00Z 0.7671452293915184 -1.006478442838773 2.54076890162181 -2.0211099840609426 4.115407358848046
2017-03-25T00:00:00Z 0.40400182328846734 -1.1591314216665092 1.967135068243444 -2.159131421666509 3.453974950309104
2017-03-26T00:00:00Z 0.17386726166395494 -1.3104847455327724 1.6582192688606823 -2.657724501405034 3.1854325525703007
2017-03-27T00:00:00Z 0.0917122150354922 -1.3229848267439923 1.5064092568149765 -2.6079551636112246 2.905703720458493
2017-03-28T00:00:00Z 0.49871246559473936 -0.9320936189134058 1.9295185501028844 -1.9916376752426674 3.769873807860148
2017-03-29T00:00:00Z 0.4318088362775557 -0.8473781192320202 1.7109957917871315 -2.270275031001572 3.844022191344159
2017-03-30T00:00:00Z 0.3230761199791241 -1.1492528059846034 1.7954050459428517 -2.149252805984603 3.95293052554774
2017-03-31T00:00:00Z 0.0 -1.4189988863363066 1.4189988863363066 -2.4330845207428187 3.540489159233389
2017-04-01T00:00:00Z 0.0 -1.676727053012014 1.676727053012014 -2.676727053012014 3.5762470662345414
2017-04-02T00:00:00Z 0.12708177212750002 -1.64286952283292 1.8970330670879199 -3.132657479854431 4.139095222677426
2017-04-03T00:00:00Z 0.4086472003630267 -1.6494043714145885 2.466698772140642 -3.16997771413609 4.649063149365183
2017-04-04T00:00:00Z 0.7256273960595032 -1.6618464316178985 3.113101223736905 -3.265794569712374 5.417851322464122
2017-04-05T00:00:00Z 0.42800384942499453 -1.5330198333452636 2.3890275321952528 -2.600159083793974 4.166204678963068
2017-04-06T00:00:00Z 0.016565567345759147 -1.838682641109555 1.8718137758010733 -2.838682641109555 3.717760864527443
2017-04-07T00:00:00Z 0.0 -2.0590350716408548 2.0590350716408548 -3.0590350716408548 3.8449994990774172
2017-04-08T00:00:00Z 0.0 -2.4151598765166282 2.4151598765166282 -3.735945959876594 4.133276455675999
2017-04-09T00:00:00Z 0.0 -2.2148063471667485 2.2148063471667485 -3.337507524051288 3.8542659453355927
2017-04-10T00:00:00Z 0.09294806171906941 -2.4157885593090254 2.601684682747164 -3.6223920977837096 3.9493023987830025
2017-04-11T00:00:00Z 0.0 -2.2719973584053235 2.2719973584053235 -3.3441606023211756 3.564330742207103
2017-04-12T00:00:00Z 0.0 -2.252529204482935 2.252529204482935 -3.252529204482935 3.2676858291305675
2017-04-13T00:00:00Z 0.1693023586981386 -2.260962223393995 2.5995669407902717 -3.4776447052469237 3.5995669407902717
2017-04-14T00:00:00Z 0.0 -2.1636271610484337 2.1636271610484337 -3.188995552370799 3.195414781039979
2017-04-15T00:00:00Z 0.576865491342553 -1.7158974402235279 2.869628422908634 -2.715897440223528 4.094480333764773
2017-04-16T00:00:00Z 0.5823912772375869 -1.9715080773211273 3.1362906317963013 -3.475017700047623 4.649179429229858
2017-04-17T00:00:00Z 0.5978859510729762 -2.0206368996678568 3.216408801813809 -3.614960865502887 4.998284597524529
2017-04-18T00:00:00Z 0.5854181158359744 -1.7797524256215667 2.9505886572935154 -3.2005722432008037 4.3754340613165255
2017-04-19T00:00:00Z 0.20211501611227345 -2.2333611885064015 2.637591220730948 -3.841926453309611 3.637591220730948
2017-04-20T00:00:00Z 0.17821389156572995 -2.428079424086327 2.784507207217787 -4.036146169942972 4.195483877874438
2017-04-21T00:00:00Z 0.3635670201250158 -2.6562418475384284 3.3833758877884597 -4.391278224904189 4.92055104128942
2017-04-22T00:00:00Z 0.29442392957250973 -2.7805186805718805 3.3693665397169 -4.505511059825671 4.806224107250799
2017-04-23T00:00:00Z 0.0 -3.340454828795782 3.340454828795782 -4.873541468463752 4.960288043251868
2017-04-24T00:00:00Z 0.02664840202436078 -3.426056435946949 3.4793532399956706 -4.653082626799996 5.219790713549678
2017-04-25T00:00:00Z 0.0 -3.449147689876857 3.449147689876857 -4.635200983858156 4.917358483816472
2017-04-26T00:00:00Z 0.0 -3.08730528452427 3.08730528452427 -4.244356443372335 4.19417498429706
2017-04-27T00:00:00Z 0.32583637564318624 -2.6918993413449885 3.343572092631361 -3.7314818086396544 4.572841673549303
2017-04-28T00:00:00Z 0.8198594455520269 -2.399046860746439 4.038765751850493 -3.5745502037170147 5.408776851726928
2017-04-29T00:00:00Z 1.1988986155826384 -1.968738802642251 4.366536033807527 -3.080248362447207 5.540460077940441
2017-04-30T00:00:00Z 1.403578080076341 -1.6361242678940928 4.443280428046775 -2.636124267894093 5.443280428046775
2017-05-01T00:00:00Z 1.1999202430966731 -1.6676827961250664 4.067523282318413 -2.7491165554252377 5.067523282318413
2017-05-02T00:00:00Z 0.9573677170455719 -1.832294117758713 3.747029551849857 -3.1650134862267514 4.883605522250896
2017-05-03T00:00:00Z 0.7332494364700413 -2.4080121165613853 3.8745109895014678 -4.134851007399232 5.009781932287155
2017-05-04T00:00:00Z 0.6201769796574137 -2.7346077253813554 3.974961684696183 -4.871669943736713 5.487674020786746
2017-05-05T00:00:00Z 0.6007353517430823 -2.9174532040055485 4.118923907491713 -5.402110727821339 5.760672368780546
2017-05-06T00:00:00Z 0.5027732511168488 -3.290078213911592 4.295624716145289 -5.840829774138467 6.014378112078224
2017-05-07T00:00:00Z 0.5206213460607539 -3.2507358720848556 4.291978564206364 -5.744057252674006 5.899219430808036
2017-05-08T00:00:00Z 0.16109295808789137 -3.1025745498984527 3.4247604660742352 -5.41011057975103 4.744197319541361
2017-05-09T00:00:00Z 0.2554670440735337 -3.347519206187306 3.8584532943343732 -5.969991996270014 5.2120876183829274
2017-05-10T00:00:00Z 0.6390668929970486 -2.9107240799122094 4.188857865906306 -6.039581692465777 5.790753182657252
2017-05-11T00:00:00Z 0.6745186377982512 -2.8054658095633074 4.15450308515981 -5.822376240246636 6.270467204605404
2017-05-12T00:00:00Z 0.5478665355545195 -2.5876043563397975 3.683337427448836 -5.22278447857795 5.717013894440271
2017-05-13T00:00:00Z 0.25520345230319424 -2.594246689083851 3.1046535936902395 -4.811442958299736 5.185112777565305
2017-05-14T00:00:00Z 0.4491664004554109 -2.01300602143817 2.911338822348992 -4.2036732592212305 4.609873103457115
2017-05-15T00:00:00Z 0.7338915899070692 -1.8862573356673322 3.3540405154814708 -3.874416955088101 5.278554950797574
2017-05-16T00:00:00Z 0.7836780530051541 -1.819047533018046 3.3864036390283543 -3.837606992825693 5.6204626513033675
2017-05-17T00:00:00Z 0.8250995890634436 -2.029826523707717 3.6800257018346043 -4.575394183216619 6.390604824317112
2017-05-18T00:00:00Z 0.8909667154852831 -2.2599233175580378 4.041856748528604 -4.839277895129625 6.841826772224229
2017-05-19T00:00:00Z 0.8683884155226357 -2.1406990356969704 3.877475866742242 -4.702006883242526 6.503501258806157
2017-05-20T00:00:00Z 0.9712508104401386 -2.1065664395954484 4.049068060475726 -4.565152366162334 6.859651661447019
2017-05-21T00:00:00Z 1.2127308439401339 -1.6375736173273836 4.063035305207651 -4.065525204785263 6.774620277673959
2017-05-22T00:00:00Z 0.9564312013392551 -2.317007070700142 4.229869473378652 -4.794545826094979 7.411385033105219
2017-05-23T00:00:00Z 1.4793497159812254 -2.2974773051917254 5.256176737154176 -4.842271306916274 9.008344580677411
2017-05-24T00:00:00Z 1.174178974076042 -2.8832080093004273 5.231565957452512 -5.290035439905408 8.688825589192593
2017-05-25T00:00:00Z 1.3683934834560196 -2.856757392133705 5.593544359045744 -4.918587606527899 8.921786211562493
2017-05-26T00:00:00Z 1.2035856674090784 -2.5051584586714464 4.912329793489603 -4.432589510207924 8.313288151947544
2017-05-27T00:00:00Z 1.3808092526859939 -2.0334723943939865 4.795090899765975 -4.2075942308346965 8.22703686232359
2017-05-28T00:00:00Z 1.0856195793051784 -2.393007452935811 4.564246611546167 -4.591532331494842 8.056668861242018
2017-05-29T00:00:00Z 1.4480572895949646 -2.2969631857664687 5.1930777649563975 -4.927254959230196 9.166471293349854
2017-05-30T00:00:00Z 1.5206116653059132 -2.348017990865464 5.38924132147729 -4.958442922958437 9.138674845038057
2017-05-31T00:00:00Z 1.7550032402231903 -2.3603854915466895 5.87039197199307 -4.921962385561619 9.365706477979222
2017-06-01T00:00:00Z 1.7873530290969402 -2.523123250943243 6.097829309137124 -4.87644453813942 9.78755814491721
2017-06-02T00:00:00Z 2.014043863570921 -2.0219851295143996 6.050072856656241 -4.482573584391549 9.336977616451438
2017-06-03T00:00:00Z 2.2416024053452874 -1.5138661695004458 5.997070980191021 -3.819558699548903 9.671342823956012
2017-06-04T00:00:00Z 2.6161447191145655 -1.0308971743408817 6.263186612570013 -3.6874495635419136 9.818560141540281
2017-06-05T00:00:00Z 3.1043186077531164 -1.0805034290533966 7.289140644559629 -4.029313218007031 10.914083788877084
2017-06-06T00:00:00Z 3.1550965195333713 -1.3032502255368952 7.613443264603638 -3.9576799669836347 10.897751290316801
2017-06-07T00:00:00Z 2.870856584338107 -1.0520554202873011 6.793768588963515 -3.6367183238809773 10.02446721651252
2017-06-08T00:00:00Z 2.695839736963829 -0.6643572012010104 6.056036675128668 -3.3942180345064634 9.238554313355701
2017-06-09T00:00:00Z 3.012740802481462 -0.4130830892098136 6.438564694172738 -3.2380993043323403 9.235187375717341
2017-06-10T00:00:00Z 3.532224663150717 -0.3427737259255008 7.407223052226934 -3.0391677064982727 10.008760077737374
2017-06-11T00:00:00Z 3.5670424804801844 -0.223973228452234 7.358058189412603 -3.4166873921831535 10.471773178645225
2017-06-12T00:00:00Z 3.310346377344512 -0.8920054352817548 7.512698189970779 -4.134237370291524 10.843438527609294
2017-06-13T00:00:00Z 3.117109569481656 -1.2755131793750816 7.5097323183383935 -4.210592475887152 10.84570478312425
2017-06-14T00:00:00Z 2.9739009368435547 -0.8656456064789908 6.813447480166101 -3.629681900626331 10.27277283985521
2017-06-15T00:00:00Z 2.5964724771625867 -1.0285364994856088 6.221481453810782 -4.0558562621129415 9.300883503110056
2017-06-16T00:00:00Z 2.549768304588961 -1.021724003994442 6.121260613172364 -4.35881291347639 9.277446036671797
2017-06-17T00:00:00Z 2.6308850981251966 -1.239420485828064 6.501190682078457 -5.016419543355498 9.841926472441687
2017-06-18T00:00:00Z 2.9630675134831423 -1.2820485002705015 7.208183527236786 -5.464198136124756 10.897910671926118
2017-06-19T00:00:00Z 3.0196751305232183 -1.3222171759095032 7.36156743695594 -5.799053410770357 10.781402877885329
2017-06-20T00:00:00Z 2.5931960858935463 -1.32232068959269 6.508712861379783 -5.783937014163744 9.740671602861918
2017-06-21T00:00:00Z 2.1421665769609213 -1.7481987957981269 6.032531949719969 -5.835891832831166 9.146893430909842
2017-06-22T00:00:00Z 1.8534112423791211 -1.7188065858573411 5.425629070615583 -6.077444747614495 8.287847707331046
2017-06-23T00:00:00Z 1.7372870512592815 -2.233599093672638 5.708173196191201 -7.179553360870287 8.525805055994294
2017-06-24T00:00:00Z 1.7674398993108358 -2.227343760923654 5.762223559545325 -7.227343760923654 8.739067488336113
2017-06-25T00:00:00Z 1.8508498006267173 -2.3163316074357496 6.018031208689184 -7.31633160743575 8.815003962820148
2017-06-26T00:00:00Z 1.526058176383215 -2.2204661409188975 5.272582493685327 -7.047735040648822 7.893114629179088
2017-06-27T00:00:00Z 1.1636420350195076 -2.7724662644372304 5.099750334476246 -7.722772180858927 7.748255953468442
2017-06-28T00:00:00Z 1.1851723094872368 -2.3584278127210707 4.728772431695544 -7.063541976821067 7.062512876569392
2017-06-29T00:00:00Z 1.6239568025580653 -1.973245691235259 5.22115929635139 -6.797870936914794 7.355979440335798
2017-06-30T00:00:00Z 1.8345959088298063 -2.219906922387218 5.889098740046831 -7.180427560535276 8.467228576770184
2017-07-01T00:00:00Z 2.047532610618538 -1.7334220786083847 5.82848729984546 -6.733422078608385 8.6797971326468
2017-07-02T00:00:00Z 2.001643120407667 -1.868171025202289 5.871457266017623 -6.8681710252022885 8.208443681554096
2017-07-03T00:00:00Z 1.9204758937614803 -1.6516962494579077 5.492648036980868 -6.1976807363959425 7.932205774538309
2017-07-04T00:00:00Z 1.5666091250024028 -2.1784851076975595 5.311703357702365 -6.49681940285557 8.012206911192036
2017-07-05T00:00:00Z 1.4326453166286193 -2.194040044523986 5.059330677781224 -6.501341157494414 8.217394745395817
2017-07-06T00:00:00Z 1.7013166054689641 -2.4025436010803416 5.80517681201827 -6.90108265513638 9.385093083908078
2017-07-07T00:00:00Z 2.1213756932403944 -2.0206831207221834 6.263434507202972 -6.650618945217242 9.736440157958818
2017-07-08T00:00:00Z 2.2182162194553383 -1.8957073754560163 6.332139814366693 -6.287285754649766 9.40292789187009
2017-07-09T00:00:00Z 2.348468947456843 -1.907545677865028 6.604483572778714 -5.863837448381687 9.47925094282865
2017-07-10T00:00:00Z 2.3941790968531054 -1.3828274351253582 6.171185628831569 -4.832336748884597 9.133586833682756
2017-07-11T00:00:00Z 2.2219153404211047 -1.662898239867729 6.106728920709939 -5.163587115121936 9.121250220351415
2017-07-12T00:00:00Z 2.193340703795364 -1.9884361091329548 6.375117516723682 -5.340566410213367 9.625539150292163
2017-07-13T00:00:00Z 2.0610673525351997 -2.4900296202625194 6.612164325332919 -5.87958157201402 9.654552643966708
2017-07-14T00:00:00Z 1.7029833784998953 -3.107087119093344 6.513053876093134 -6.695198269951362 9.21269290161944
2017-07-15T00:00:00Z 1.400878249600964 -2.8967044916736877 5.698460990875615 -6.195607782189125 8.124067723968704
2017-07-16T00:00:00Z 1.166319143073064 -3.039626065018852 5.37226435116498 -5.8851860259254245 7.345719912965001
2017-07-17T00:00:00Z 1.4403063835271634 -3.1021919111050433 5.98280467815937 -6.342546508064615 7.717426386959826
2017-07-18T00:00:00Z 1.535547739574283 -3.5711720272124428 6.642267506361009 -7.327667569402077 8.928578571212118
2017-07-19T00:00:00Z 2.0758554155459845 -2.9426456082541574 7.094356439346127 -6.675307556735371 9.315234287789133
2017-07-20T00:00:00Z 1.7654335201200144 -3.3165921304233796 6.8474591706634085 -7.103155093523556 8.979559931022777
2017-07-21T00:00:00Z 1.9432687054353888 -2.7256178253091514 6.612155236179929 -6.35357380491531 8.604301040837944
2017-07-22T00:00:00Z 1.7819990007000337 -2.709249835384229 6.2732478367842965 -5.83493336067207 7.729243491027303
2017-07-23T00:00:00Z 1.7965451580524374 -2.53448752289295 6.127577838997825 -5.252395793449821 7.524940672877578
2017-07-24T00:00:00Z 2.1425334662067317 -2.3588084775915648 6.643875410005029 -5.025739853914078 7.862552097694653
2017-07-25T00:00:00Z 2.410676926245048 -2.3335845930892822 7.154938445579377 -5.585912680271626 8.745138524273
2017-07-26T00:00:00Z 2.77141087202212 -1.75387126697388 7.296693011018121 -4.833096166042372 8.666982381508177
2017-07-27T00:00:00Z 2.8260802333994173 -1.6747908659031303 7.326951332701965 -4.9590453078125005 8.326951332701965
2017-07-28T00:00:00Z 2.431745354060217 -1.7352388823689822 6.598729590489416 -5.1401936737577305 7.598729590489416
2017-07-29T00:00:00Z 2.4446980778953002 -1.4563996648288722 6.345795820619473 -4.454015817089895 7.345795820619473
2017-07-30T00:00:00Z 2.604350087423088 -1.0155660130351567 6.224266187881333 -3.9906743512819767 7.570557739957774
2017-07-31T00:00:00Z 2.4445186371833714 -1.0350147172502928 5.924051991617036 -3.9153119460843917 7.078648147116196
2017-08-01T00:00:00Z 2.6463900679798957 -0.6711981793038353 5.963978315263627 -4.056572361181454 7.518172904847573
2017-08-02T00:00:00Z 2.640253559259615 -0.44126998014052665 5.721777098659757 -3.457715554225224 6.9850322485078005
2017-08-03T00:00:00Z 2.7833756039540627 0.21803017750014853 5.348721030407977 -2.4899381507661213 6.540360729529201
2017-08-04T00:00:00Z 2.8834073838086587 0.4998484600563686 5.266966307560949 -2.1875019305550256 6.576318867252884
2017-08-05T00:00:00Z 3.0634369950539377 0.5552547936566299 5.571619196451246 -2.0839605533460555 6.971861960063329
2017-08-06T00:00:00Z 3.364890634039131 0.2932973342016849 6.436483933876577 -2.1968364872183725 8.193474256256643
2017-08-07T00:00:00Z 3.2976833557079277 -0.036483115489224005 6.631849826905079 -2.3642646431747907 8.417281947877411
2017-08-08T00:00:00Z 3.3425058755941417 0.042106424173216084 6.642905327015067 -2.0505741950145353 8.086001841160051
2017-08-09T00:00:00Z 3.2459220818312398 -0.2526068293427679 6.744450993005247 -2.466537288446041 8.040883678319181
2017-08-10T00:00:00Z 3.2495951281515114 -0.09143689581144177 6.590627152114465 -2.0186244158668147 7.590627152114465
2017-08-11T00:00:00Z 3.260017411117845 0.3035394926902981 6.216495329545392 -2.0096335194361297 7.408604170852732
2017-08-12T00:00:00Z 3.5925528354215155 0.5676697656181586 6.617435905224872 -1.9584607485829113 8.125580987407389
2017-08-13T00:00:00Z 3.9265662613418306 0.7543667792699549 7.098765743413706 -1.902716846497118 8.675071062792961
2017-08-14T00:00:00Z 4.018098572325048 1.2020929597008667 6.834104184949229 -1.7255447710408767 8.453885682298962
2017-08-15T00:00:00Z 4.176471054862574 1.32906806992363 7.023874039801519 -1.3508885052007158 8.104080989791736
2017-08-16T00:00:00Z 3.9682615898483395 1.1378230530866529 6.798700126610026 -1.426490909821661 7.816923045880824
2017-08-17T00:00:00Z 4.004484654194235 1.3662154214085036 6.642753886979968 -0.9992555189399015 7.642753886979968
2017-08-18T00:00:00Z 3.811889920848435 1.3697629489873093 6.254016892709561 -0.9006604192372731 7.48401123683415
2017-08-19T00:00:00Z 4.082566687407461 1.3621452723944012 6.80298810242052 -0.8961520016919953 8.475204276152363
2017-08-20T00:00:00Z 3.930192414331526 0.9764648998277936 6.883919928835258 -1.0045671869806938 8.431858395309748
2017-08-21T00:00:00Z 3.5758860616125383 1.0393512428135403 6.112420880411536 -1.1812234136505264 7.278474143612882
2017-08-22T00:00:00Z 3.401246137943074 1.3732338971237943 5.429258378762354 -0.4409036072135799 6.782591116439445
2017-08-23T00:00:00Z 3.516547501377276 1.7591029113447465 5.273992091409805 -0.05032672071267674 6.415032672875054
2017-08-24T00:00:00Z 3.3435837935322095 1.302816633185759 5.38435095387866 -0.2891754143303482 6.9929643357381766
2017-08-25T00:00:00Z 3.5934209004934776 1.152509528006921 6.034332272980034 -0.65249998784076 7.724070731794917
2017-08-26T00:00:00Z 4.086141014038152 1.8128945486871637 6.359387479389142 -0.30210090234446163 8.45868439393261
2017-08-27T00:00:00Z 3.7006326816866357 1.7942471859578337 5.607018177415438 -0.2584359474840461 7.936462644896142
2017-08-28T00:00:00Z 3.419060731518242 1.619599881721101 5.2185215813153825 -0.11914652241582946 6.969531162488808
2017-08-29T00:00:00Z 3.552147887648796 1.693168413943384 5.4111273613542075 -0.004763049768693239 6.66284130008324
2017-08-30T00:00:00Z 3.677484632187954 2.0062734275881824 5.348695836787726 0.3537962305238014 6.57382959422765
2017-08-31T00:00:00Z 3.9854571372455294 1.9240127894893266 6.046901485001732 0.365976900610848 7.332422908735763
2017-09-01T00:00:00Z 3.832330005200701 1.556682714833463 6.107977295567939 -0.27228077136333173 7.557859342563927
2017-09-02T00:00:00Z 3.6991709429791912 1.4744373837788802 5.923904502179502 -0.37202318180400185 7.575582746639137
2017-09-03T00:00:00Z 3.7011484251520677 1.3719194304550246 6.030377419849111 -0.13318006454675535 7.613085664784039
2017-09-04T00:00:00Z 3.320406710698268 0.9315857262250629 5.709227695171473 -0.23532202179683837 6.9464315996994666
2017-09-05T00:00:00Z 3.0648302416697173 0.9701946969839019 5.159465786355533 -0.10480140403119709 6.159465786355533
2017-09-06T00:00:00Z 3.4904245402569862 0.9824142829654532 5.998434797548519 -0.01758571703454681 6.998434797548519
2017-09-07T00:00:00Z 3.8704271142158286 1.4187511938004191 6.322103034631239 -0.16662099582814616 7.696741004383215
2017-09-08T00:00:00Z 4.062633834577685 1.2519947722097697 6.8732728969456005 -0.46538653523015583 8.36955260829209
2017-09-09T00:00:00Z 4.051163916669004 1.397110586805825 6.705217246532182 0.017130660356561744 8.300781846431633
2017-09-10T00:00:00Z 3.4740952789556965 1.35401142242669 5.594179135484703 0.04749651665416277 7.155073712520634
2017-09-11T00:00:00Z 3.350210854905258 1.0408752275218567 5.659546482288659 0.04087522752185668 6.736595148658138
2017-09-12T00:00:00Z 3.2160400039925725 0.7776718583985036 5.654408149586642 -0.4302531170601871 7.171694151588889
2017-09-13T00:00:00Z 3.1691674062149064 0.7653028405469611 5.573031971882852 -0.28480220726749184 7.410737062666718
2017-09-14T00:00:00Z 3.36076478207794 0.9852501653167094 5.73627939883917 -0.014749834683290608 7.379717809229994
2017-09-15T00:00:00Z 3.295119144493374 1.0178727715215135 5.572365517465235 0.017872771521513453 6.919773020988977
2017-09-16T00:00:00Z 3.1383718134168714 1.4444811303616665 4.832262496472076 0.4242976465537902 5.832262496472076
2017-09-17T00:00:00Z 3.1049210254864166 1.2590628527871246 4.9507791981857086 0.2590628527871246 6.145804481662589
2017-09-18T00:00:00Z 3.138778209886582 0.8700243117771733 5.407532107995991 -0.12997568822282668 6.839217157248568
2017-09-19T00:00:00Z 3.3270553144643027 0.8205553679952731 5.833555260933332 -0.3851556255069035 7.849208593566214
2017-09-20T00:00:00Z 3.6153424900674516 0.8982166532511489 6.332468326883754 -0.22104864128284296 8.199096247231696
2017-09-21T00:00:00Z 3.41148531045308 0.640090962743999 6.182879658162161 -0.359909037256001 8.408958151381075
2017-09-22T00:00:00Z 3.6237640665210678 0.9693323934510598 6.278195739591076 -0.030667606548940185 7.9710058619321735
2017-09-23T00:00:00Z 3.6045834566960275 1.2221893088333173 5.986977604558738 0.22218930883331733 7.148004453247438
2017-09-24T00:00:00Z 3.258680437862075 0.7415691241258431 5.775791751598307 -0.4877624207343636 7.29809986270971
2017-09-25T00:00:00Z 3.6226230202150544 1.323955218716359 5.92129082171375 -0.30811099512728846 7.923294455116331
2017-09-26T00:00:00Z 4.14457956997611 1.910978584200306 6.378180555751914 0.44277690335922326 8.92476792883627
2017-09-27T00:00:00Z 4.023593433535856 1.4151887957095988 6.631998071362114 0.22580503744600033 9.127092497241142
2017-09-28T00:00:00Z 3.5506232506450273 0.8615610954278226 6.239685405862232 -0.13843890457217745 8.539304154159609
2017-09-29T00:00:00Z 3.0751720575361197 0.3120188097676224 5.8383253053046165 -0.6879811902323776 7.991065307633087
2017-09-30T00:00:00Z 3.137206278263364 0.7197422672604432 5.5546702892662845 -0.2802577327395568 7.3241244680669695
2017-10-01T00:00:00Z 3.2701401437572746 0.9332775669910376 5.607002720523512 -0.06672243300896241 7.480588122420505
2017-10-02T00:00:00Z 3.593239004858335 1.337450904814427 5.849027104902243 0.2986536444321002 8.199088977356254
2017-10-03T00:00:00Z 3.6659285723423136 1.4788363002503346 5.853020844434292 0.28918886310318914 8.292921945798609
2017-10-04T00:00:00Z 3.1935184925518105 1.2780165494048958 5.109020435698725 0.27801654940489584 7.504619274792488
2017-10-05T00:00:00Z 3.1128023039860757 1.4791197469553232 4.746484861016828 0.4791197469553232 7.2863826601898385
2017-10-06T00:00:00Z 3.320397557048188 1.4291057092072401 5.211689404889135 0.4291057092072401 7.465831819242181
2017-10-07T00:00:00Z 3.4799239653208356 1.3150186835628292 5.644829247078842 0.31501868356282925 7.951816990587619
2017-10-08T00:00:00Z 3.744471424818599 1.0169154047241884 6.472027444913009 -0.5536824361213417 8.580440428957663
2017-10-09T00:00:00Z 3.9171679463785507 1.3574190992435757 6.476916793513526 0.04650833039870239 8.873593126480749
2017-10-10T00:00:00Z 3.7352893475616575 1.1458428049842269 6.324735890139088 0.14584280498422686 9.052043606714303
2017-10-11T00:00:00Z 3.26389995314871 0.8255670211898622 5.702232885107557 -0.28887545329127406 8.09734457462941
2017-10-12T00:00:00Z 2.8308684832902657 0.9378496313043521 4.72388733527618 -0.4240900767603013 7.01372281870586
2017-10-13T00:00:00Z 3.2036508322428743 1.6134872135390737 4.793814450946675 0.2675162965682185 7.134847848467232
2017-10-14T00:00:00Z 2.9906335771304713 1.2957401447759636 4.685527009484979 -0.19078241978992994 7.524415381118872
2017-10-15T00:00:00Z 2.9740701702898336 1.0836751125719242 4.864465228007743 -0.5442312054358243 7.517783469864827
2017-10-16T00:00:00Z 2.601722441763033 0.4645715418283807 4.738873341697685 -0.9999703147650316 7.506476182307426
2017-10-17T00:00:00Z 2.6336008724887527 0.5772803199982555 4.68992142497925 -0.7906036252982895 7.53829838357396
2017-10-18T00:00:00Z 2.793378456420788 1.115415280475931 4.471341632365645 -0.4454001612398075 7.497185594210538
2017-10-19T00:00:00Z 2.5263192138851425 0.7400005565434087 4.312637871226876 -0.7768044533916973 7.684296660573872
2017-10-20T00:00:00Z 2.8216055324742926 1.0256883806501373 4.617522684298448 -0.5389441327587003 8.15932347617682
2017-10-21T00:00:00Z 3.32158029317047 1.5129048908764162 5.130255695464524 0.15257736532324007 9.130255695464523
2017-10-22T00:00:00Z 3.5290706805558094 1.3802731422468129 5.6778682188648055 0.11869457984414078 9.677868218864806
2017-10-23T00:00:00Z 3.47147914039992 1.7874048048564566 5.155553475943384 0.7874048048564566 9.155553475943384
2017-10-24T00:00:00Z 3.3399850665817445 1.4676444122064427 5.212325720957047 0.3511817571285367 8.996386589892433
2017-10-25T00:00:00Z 3.34776096883534 1.2735920576603057 5.421929880010374 0.19522680154094263 9.421929880010374
2017-10-26T00:00:00Z 3.3703783468662682 0.8952226222303503 5.845534071502186 -0.4202335541771014 9.845534071502186
2017-10-27T00:00:00Z 3.835774037788693 1.081161914237577 6.590386161339809 -0.524059800238996 10.590386161339808
2017-10-28T00:00:00Z 4.297887136800509 1.198171983260893 7.397602290340124 -0.367985061997522 11.397602290340124
2017-10-29T00:00:00Z 4.1649467473222055 1.462140669364043 6.867752825280368 -0.17047660376296347 10.867752825280368
2017-10-30T00:00:00Z 4.022017575995317 1.4658619197473843 6.57817323224325 0.13622825117251836 10.462148966530672
2017-10-31T00:00:00Z 4.277843591224333 1.9146360372101903 6.641051145238476 0.8544116545774292 10.59082732054443
2017-11-01T00:00:00Z 4.33693808479315 2.160211122375398 6.513665047210902 1.1602111223753981 10.446318137951565
2017-11-02T00:00:00Z 4.737522881114138 1.9968292229563436 7.4782165392719335 0.4944142981207058 11.478216539271934
2017-11-03T00:00:00Z 4.947902141383779 2.050132497486374 7.845671785281185 0.5532291211482268 11.845671785281185
2017-11-04T00:00:00Z 5.151916282687417 2.3504276084697353 7.9534049569051 1.1330913118017274 11.9534049569051
2017-11-05T00:00:00Z 4.637352542175653 2.336298002944869 6.938407081406437 1.1457969812307796 10.938407081406437
2017-11-06T00:00:00Z 4.7507483411189515 2.5827964319708356 6.918700250267067 1.3196647790534803 10.918700250267067
2017-11-07T00:00:00Z 5.0927212661809 2.790442022699516 7.3950005096622835 1.4764501656436284 11.024130617252485
2017-11-08T00:00:00Z 5.096018539827696 2.6069884816211717 7.585048598034221 0.8266091695985862 11.19421383565149
2017-11-09T00:00:00Z 5.169929017008655 2.283422095451456 8.056435938565853 0.09108963415195959 12.056435938565853
2017-11-10T00:00:00Z 5.345568514798316 2.3888905808209437 8.302246448775689 0.1389920132861966 12.302246448775689
2017-11-11T00:00:00Z 4.862716520246207 2.026255761435014 7.6991772790574 -0.41869485672108997 11.6991772790574
2017-11-12T00:00:00Z 4.64495201740927 1.8007054604655868 7.4891985743529546 -0.263115527526125 11.489198574352955
2017-11-13T00:00:00Z 4.449166268442504 1.3983520968552088 7.499980440029798 -0.745458807538689 11.499980440029798
2017-11-14T00:00:00Z 4.2625520920937205 1.029987705052497 7.4951164791349445 -1.3798797089835952 11.495116479134944
2017-11-15T00:00:00Z 4.252042392622678 0.5871569905595297 7.916927794685826 -2.197396765442283 11.916927794685826
2017-11-16T00:00:00Z 4.345319938117999 0.7434529207201348 7.947186955515864 -2.2988459852294896 11.932806908141012
2017-11-17T00:00:00Z 4.561986199928459 1.4134306177496292 7.710541782107288 -1.7774087682604542 11.710541782107288
2017-11-18T00:00:00Z 4.576781465710111 1.5547783397439576 7.598784591676264 -1.312502910461553 11.33750966890101
2017-11-19T00:00:00Z 4.455130510093322 1.2663760028876894 7.643885017298954 -1.3381772728445593 11.217259104713044
2017-11-20T00:00:00Z 4.29619629453133 1.0956140259626221 7.4967785631000385 -1.8020278394117426 10.811187178618233
2017-11-21T00:00:00Z 4.438531170382666 1.0228375602269129 7.85422478053842 -1.9435279868892326 11.181617502705684
2017-11-22T00:00:00Z 4.589339906888078 0.939023257757146 8.23965655601901 -1.8945599562468955 11.653151460907592
2017-11-23T00:00:00Z 4.922702782242428 0.9747879483075947 8.870617616177261 -1.43223694831004 12.478718115167432
2017-11-24T00:00:00Z 4.916651706962785 0.7745707568478251 9.058732657077744 -1.5566186746264417 12.344580685699917
2017-11-25T00:00:00Z 4.4691875071826 0.73932244126271 8.19905257310249 -1.7290873122977306 11.1034787103597
2017-11-26T00:00:00Z 4.524292166247808 0.7842777969972023 8.264306535498415 -1.4660851504017622 11.51106806939676
2017-11-27T00:00:00Z 4.841386537729999 1.0753793484796814 8.607393726980316 -1.7282804864123453 11.72984702021439
2017-11-28T00:00:00Z 5.285224345699016 1.5186625792519584 9.051786112146072 -1.4067377571520776 12.245963316080616
2017-11-29T00:00:00Z 5.254267277324254 1.8814051773326907 8.627129377315818 -1.1416901263723682 11.886795306081575
2017-11-30T00:00:00Z 5.2583413125299145 2.122084971887024 8.394597653172806 -0.7702375739759266 11.39355215619612
2017-12-01T00:00:00Z 5.234060751196454 2.1981834564722544 8.269938045920654 -0.7199477406027412 11.393032758633437
2017-12-02T00:00:00Z 5.061889696929917 2.1066140061551204 8.017165387704715 -1.1586893984373634 11.364418932153669
2017-12-03T00:00:00Z 5.325341483229128 1.991045823489336 8.659637142968919 -1.080627899384401 12.121206980954435
2017-12-04T00:00:00Z 5.2366899884717695 1.8236373020009382 8.649742674942601 -1.3601537199138067 12.443087354897086
2017-12-05T00:00:00Z 5.3625344372754205 1.835684227385511 8.889384647165329 -1.4574521532493865 12.751321528593877
2017-12-06T00:00:00Z 5.352902368595752 1.9324307358670292 8.773374001324475 -0.947733627941659 12.632780139997084
2017-12-07T00:00:00Z 5.36169287853868 1.781782949504227 8.941602807573133 -0.8232305916133118 12.93949498411915
2017-12-08T00:00:00Z 5.395540530928892 1.7149074576953867 9.076173604162399 -0.734313805709184 13.076173604162399
2017-12-09T00:00:00Z 5.268734216699497 1.8186891547738648 8.718779278625128 -0.41960336647744345 12.518892486774114
2017-12-10T00:00:00Z 5.365412158254634 2.0357647406151402 8.695059575894128 -0.31650583122987275 12.547723296536054
2017-12-11T00:00:00Z 5.296777571516521 1.9173408482810306 8.676214294752011 -0.8231005860451721 12.676214294752011
2017-12-12T00:00:00Z 5.0000485228572105 1.497247619918617 8.502849425795803 -1.1092364565932078 12.044892174032988
2017-12-13T00:00:00Z 4.518690380904841 1.5726708223648695 7.464709939444813 -0.8105031196786938 11.196306244654185
2017-12-14T00:00:00Z 4.218084643474529 1.0877479284958227 7.348421358453235 -0.9713161562281627 11.16925664784358
2017-12-15T00:00:00Z 3.9837202759574604 0.7207054856421355 7.246735066272786 -1.6892554710007626 11.246735066272786
2017-12-16T00:00:00Z 3.8083871627783035 0.17345758251159804 7.443316743045009 -2.040159341573095 11.44331674304501
2017-12-17T00:00:00Z 3.746252080473408 0.2545772351497355 7.237926925797081 -2.0778454583805797 11.23792692579708
2017-12-18T00:00:00Z 3.671112529437431 -0.1677052710341611 7.509930329909023 -2.1797144752933413 11.509930329909023
2017-12-19T00:00:00Z 3.8831263697452845 -0.08633081596169578 7.852583555452265 -2.209462493088974 11.315003911669642
2017-12-20T00:00:00Z 3.982317351506099 0.2793217087588329 7.685312994253366 -1.9101003938791585 11.238284477734819
2017-12-21T00:00:00Z 3.860609374754466 0.47011089855297605 7.251107850955956 -1.7168986759117466 10.54177167882278
2017-12-22T00:00:00Z 3.7524576352716044 0.28287332024220335 7.222041950301005 -1.9861610528327187 10.957363411861103
2017-12-23T00:00:00Z 3.8448428180229097 -0.11315597919012532 7.802841615235945 -2.2893969579862103 11.460733948287467
2017-12-24T00:00:00Z 3.5189153555549932 -0.3793855871265448 7.417216298236531 -2.8619517553818787 11.147385925795664
2017-12-25T00:00:00Z 3.1249266913206997 -0.9285235048205047 7.178376887461904 -3.5674737689774254 10.783530913227596
2017-12-26T00:00:00Z 2.9226642873323847 -1.2252545446029526 7.070583119267722 -3.4881438476274527 10.771776624753091
2017-12-27T00:00:00Z 3.1823509918267083 -1.1998559949255103 7.564557978578927 -3.2063075562494783 11.204168069912328
2017-12-28T00:00:00Z 3.448895361226983 -0.784425399959642 7.682216122413608 -2.619043538439503 11.611992914668015
2017-12-29T00:00:00Z 3.823538546385936 -0.6644024310789898 8.311479523850862 -2.3213301807857336 12.311479523850862
2017-12-30T00:00:00Z 3.5111410825844303 -0.8273245719403537 7.849606737109214 -2.5056387633216435 11.849606737109214
2017-12-31T00:00:00Z 3.0433096436059657 -1.386264033813875 7.472883321025806 -2.78070685770269 11.472883321025806
2018-01-01T00:00:00Z 2.5752340849138515 -1.4571512642982865 6.60761943412599 -2.5678847078028397 10.60761943412599
2018-01-02T00:00:00Z 2.2364390098437466 -1.9771982797868373 6.450076299474331 -3.158750261739912 10.45007629947433
2018-01-03T00:00:00Z 1.932190328017801 -2.6658925926644423 6.530273248700044 -3.752193017276936 10.425150152883003
2018-01-04T00:00:00Z 2.231735116552437 -2.8505406391084454 7.31401087221332 -3.8505406391084454 11.28279877681327
2018-01-05T00:00:00Z 2.5050675933622704 -2.805097189184337 7.815232375908877 -4.085017764507757 11.815232375908877
2018-01-06T00:00:00Z 2.0759967394383794 -3.184025194328251 7.336018673205009 -4.29818084807431 11.13529563309166
2018-01-07T00:00:00Z 2.107860471262223 -3.272188221777521 7.487909164301968 -4.363672839330311 10.94253958552806
2018-01-08T00:00:00Z 1.8327502396209185 -3.5172854493406795 7.182785928582517 -4.5172854493406795 10.180441708427804
2018-01-09T00:00:00Z 1.6484466528334325 -3.563097209673977 6.859990515340842 -4.563097209673977 10.048444839801693
2018-01-10T00:00:00Z 1.7296272106612793 -3.5598164852308036 7.019070906553362 -4.784197494353862 10.127300854816909
2018-01-11T00:00:00Z 1.9627588756811547 -3.291999972923072 7.217517724285381 -5.031336918035333 10.866714211809384
2018-01-12T00:00:00Z 1.576160603776333 -3.635179933748522 6.787501141301187 -5.243830360599969 10.096780132438562
2018-01-13T00:00:00Z 1.6529873280142842 -3.4289358427192878 6.7349104987478565 -4.50778607776657 9.886597682719529
2018-01-14T00:00:00Z 1.217073809284079 -3.43723278982966 5.871380408397818 -4.43723278982966 8.661834874738005
2018-01-15T00:00:00Z 1.2800359555288772 -3.456091370402608 6.016163281460362 -4.456091370402608 8.738986002163463
2018-01-16T00:00:00Z 1.3352050766631143 -3.424161434014751 6.09457158734098 -4.424161434014751 9.344931215332402
2018-01-17T00:00:00Z 1.8870830012360138 -2.793530050898114 6.567696053370141 -4.264927171683675 10.187831413221225
2018-01-18T00:00:00Z 1.8343282670027672 -2.626102024764783 6.294758558770317 -4.0982613957871 9.890195031669652
2018-01-19T00:00:00Z 1.7174948798482477 -2.495148662173066 5.930138421869562 -3.7940592045061496 9.400172014046253
2018-01-20T00:00:00Z 1.8513307171466056 -2.292128615133422 5.9947900494266335 -3.47132195928423 9.217223692663381
2018-01-21T00:00:00Z 2.1344053405263588 -2.065642435340504 6.334453116393222 -3.4911415651519935 9.350291153613009
2018-01-22T00:00:00Z 2.0906277550712615 -2.052390208929275 6.233645719071799 -3.682190406302115 9.643792842386297
2018-01-23T00:00:00Z 2.0401778372590074 -2.699259378335898 6.779615052853913 -4.727075514705497 10.236257608262624
2018-01-24T00:00:00Z 2.3037109917973893 -2.921177927543422 7.528599911138201 -5.137220485115787 10.904743071333215
2018-01-25T00:00:00Z 2.224810257944864 -3.0911255580139723 7.5407460739036996 -4.993021473258679 10.929618787746467
2018-01-26T00:00:00Z 1.8127242257779512 -3.1167036649984476 6.74215211655435 -4.6860571637549615 9.87232227454853
2018-01-27T00:00:00Z 1.946183463799047 -3.221922445903214 7.1142893735013075 -4.856855255486908 10.450544934246635
2018-01-28T00:00:00Z 1.7939981763762725 -3.523371421765702 7.111367774518246 -5.229596785676822 10.884370677535019
2018-01-29T00:00:00Z 1.7872452346519556 -3.966697520027409 7.54118798933132 -5.692214112574625 11.237292548013656
2018-01-30T00:00:00Z 1.7686887179748578 -4.0723224997018175 7.609699935651534 -6.204142699612813 11.330376405382603
2018-01-31T00:00:00Z 1.625894395046395 -4.428589450059075 7.680378240151866 -6.912772175977795 11.300875376774178
2018-02-01T00:00:00Z 1.0453040737559722 -4.766035934915715 6.856644082427659 -7.083416433104789 10.188351778666657
2018-02-02T00:00:00Z 0.8229704814560083 -4.948249006060045 6.594189968972061 -7.114025623997703 9.714752578770016
2018-02-03T00:00:00Z 0.7238155689508022 -4.72276529876307 6.170396436664674 -7.104994391881808 9.150207792176124
2018-02-04T00:00:00Z 0.7898115440816427 -4.989737120892073 6.569360209055359 -7.180925515684768 10.007515922269016
2018-02-05T00:00:00Z 0.8774332650378572 -5.066593263150983 6.821459793226698 -7.23412622564884 10.742464653138143
2018-02-06T00:00:00Z 0.9969465037094094 -4.753681206319604 6.747574213738424 -7.319799345382211 10.747574213738424
2018-02-07T00:00:00Z 0.7786700600144456 -5.138885008195755 6.696225128224647 -7.8284333568889775 10.421468180906746
2018-02-08T00:00:00Z 0.9464406274563646 -4.618471053049785 6.511352307962513 -7.233955083785947 10.046751484571628
2018-02-09T00:00:00Z 0.5646297935539082 -5.156921840104311 6.286181427212127 -7.395298465696376 9.862279460009255
2018-02-10T00:00:00Z 0.8538488153952342 -4.96027542218244 6.667973052972909 -7.485797155507941 10.41483942413592
2018-02-11T00:00:00Z 1.3409133958812376 -4.895496247823895 7.57732303958637 -7.83821461272939 11.577323039586371
2018-02-12T00:00:00Z 1.322921015026086 -5.3526608326586835 7.998502862710856 -8.625474056935758 11.752747072916641
2018-02-13T00:00:00Z 1.509785799540437 -5.21724957112537 8.236821170206243 -8.17461213459434 11.553845628229118
2018-02-14T00:00:00Z 1.3216275537828088 -4.996593564264023 7.63984867182964 -7.4915001089278395 10.491768247421135
2018-02-15T00:00:00Z 1.0236679826120043 -5.327533659166482 7.37486962439049 -8.023102222147259 9.813453302305199
2018-02-16T00:00:00Z 1.3194048355492933 -5.081606173648503 7.72041584474709 -7.84012665858379 10.24892681538314
2018-02-17T00:00:00Z 1.1817826122969834 -5.079577771176563 7.443142995770531 -8.274841238620567 9.807042670370695
2018-02-18T00:00:00Z 1.047205895009323 -5.428910015286556 7.523321805305203 -8.861922959425716 9.612922219556696
2018-02-19T00:00:00Z 0.6251200518183385 -6.105741664685255 7.355981768321933 -9.201056826154492 9.120822876437616
2018-02-20T00:00:00Z 0.14850457778151172 -6.617234500085079 6.914243655648102 -9.750589406571581 8.179612431237686
2018-02-21T00:00:00Z 0.0 -6.510085522146603 6.510085522146603 -9.282784446205076 7.669387511548445
2018-02-22T00:00:00Z 0.3501944166438268 -6.5516237681955785 7.252012601483233 -9.268717744680014 8.763990766681157
2018-02-23T00:00:00Z 0.7884604010133394 -6.341344226982493 7.918265029009172 -8.944534150228188 9.334464390987169
2018-02-24T00:00:00Z 1.339619206321606 -6.119278527335609 8.798516939978821 -8.680223795990203 10.686301020655208
2018-02-25T00:00:00Z 1.712132771025897 -5.813820669476198 9.238086211527992 -8.078888094099385 11.01138085728179
2018-02-26T00:00:00Z 1.361764932120035 -5.724957238233859 8.44848710247393 -8.043822709733288 9.791439479683804
2018-02-27T00:00:00Z 1.015193182304616 -5.663001638466389 7.69338800307562 -8.086537859411063 9.010651253083939
2018-02-28T00:00:00Z 1.3289948190393208 -5.117740848742075 7.775730486820716 -7.3788497332826815 8.775730486820716
2018-03-01T00:00:00Z 1.577115742525032 -5.303410879434594 8.457642364484657 -7.662830078186137 9.800228770975574
2018-03-02T00:00:00Z 1.7822804774793397 -5.201675074943936 8.766236029902615 -7.822719845026972 10.607182809534251
2018-03-03T00:00:00Z 1.4565171730232616 -5.8077871190926125 8.720821465139135 -8.815597040208228 10.33968357804034
2018-03-04T00:00:00Z 1.532093757533321 -5.8743783888578776 8.93856590392452 -8.991679691916927 10.163455746721876
2018-03-05T00:00:00Z 1.197223491371941 -6.342817264756727 8.73726424750061 -9.26117614590061 9.73726424750061
2018-03-06T00:00:00Z 1.3475109266850394 -5.9538457083066625 8.648867561676742 -9.029176010499384 9.648867561676742
2018-03-07T00:00:00Z 1.8470919076129049 -5.8372060636778045 9.531389878903614 -9.146026493785454 10.95940891934691
2018-03-08T00:00:00Z 1.755745771365039 -6.244254228634961 9.755745771365039 -10.150957456791197 11.504903727733819
2018-03-09T00:00:00Z 1.6044360855556035 -6.395563914444397 9.604436085555603 -10.0933661073759 11.479172475523162
2018-03-10T00:00:00Z 1.5050425809223926 -6.494957419077608 9.505042580922392 -10.24012041876098 11.000552400662237
2018-03-11T00:00:00Z 1.2213614229369074 -6.773570134158399 9.216292980032215 -9.940687401696177 10.22123059440232
2018-03-12T00:00:00Z 1.4913301239557888 -6.082495313573638 9.065155561485215 -8.91842182759548 10.123150073834319
2018-03-13T00:00:00Z 1.3272741116619786 -6.360426715035891 9.014974938359849 -9.048523677924418 10.014974938359849
2018-03-14T00:00:00Z 1.9197633849943345 -5.819220899682291 9.65874766967096 -8.814679368734176 11.074868527044487
2018-03-15T00:00:00Z 2.380956739374422 -5.578557400216345 10.34047087896519 -8.419907735348295 11.858605626065716
2018-03-16T00:00:00Z 2.6655747471934723 -5.168608956991248 10.499758451378193 -7.970840868912811 11.653700719872672
2018-03-17T00:00:00Z 2.6622828444575104 -4.924263300480414 10.248828989395435 -7.4364001431212055 11.248828989395435
2018-03-18T00:00:00Z 2.8711208635824637 -4.671195263943769 10.413436991108696 -6.672650657791018 11.413436991108696
2018-03-19T00:00:00Z 3.161443312143325 -4.68709629716836 11.00998292145501 -6.427415111400711 12.171516906218944
2018-03-20T00:00:00Z 3.2335552791807984 -4.766444720819202 11.233555279180798 -6.540735394961929 12.716323240163153
2018-03-21T00:00:00Z 3.4064355471855996 -4.5935644528144 11.4064355471856 -6.230302525356831 13.313003083516527
2018-03-22T00:00:00Z 3.166891212054604 -4.833108787945395 11.166891212054605 -6.834527817036236 12.7846486179799
2018-03-23T00:00:00Z 3.191324595862161 -4.783944170821656 11.166593362545978 -6.933564278495993 12.51054226228777
2018-03-24T00:00:00Z 3.1308972545176124 -4.267311599374669 10.529106108409895 -6.376804429334726 11.529106108409895
2018-03-25T00:00:00Z 3.4603336343809117 -3.9697704086575625 10.890437677419385 -5.676927067643675 11.890437677419385
2018-03-26T00:00:00Z 3.340210948665784 -4.179828152558314 10.860250049889881 -6.139778987994023 12.39208652705867
2018-03-27T00:00:00Z 3.932288040561132 -4.067711959438868 11.932288040561133 -6.509596673038272 13.83530373399563
2018-03-28T00:00:00Z 4.241823486362115 -3.482672532604294 11.966319505328524 -5.84711709737115 13.852671070099927
2018-03-29T00:00:00Z 3.9679065295974714 -3.846920521244432 11.782733580439375 -6.417369780213413 13.223944950215232
2018-03-30T00:00:00Z 3.479271474617288 -4.259135164800028 11.217678114034605 -6.550440144309199 12.8206006297337
2018-03-31T00:00:00Z 3.6632156181278894 -3.8964104982812326 11.222841734537012 -6.429530151502035 12.450087614119058
2018-04-01T00:00:00Z 3.454893229069251 -4.077011673500075 10.986798131638576 -7.047512820128755 12.45240660459746
2018-04-02T00:00:00Z 3.732695788323735 -4.267304211676265 11.732695788323735 -7.095066111299289 13.231750212440108
2018-04-03T00:00:00Z 4.030194001646515 -3.9698059983534852 12.030194001646514 -7.253034763584134 13.490160103798102
2018-04-04T00:00:00Z 3.9648374646805014 -4.035162535319499 11.964837464680501 -7.277201071184466 13.18399392773004
2018-04-05T00:00:00Z 4.080306286066582 -3.665147698724776 11.825760270857941 -7.0133561191033005 13.099719733999779
2018-04-06T00:00:00Z 4.142520649314928 -3.5189747578472703 11.804016056477128 -6.566318607269385 12.943901876188361
2018-04-07T00:00:00Z 3.8872568726295267 -3.80028880798257 11.574802553241623 -7.03578807841862 12.86748421434602
2018-04-08T00:00:00Z 3.979509270199914 -3.8491690806037884 11.808187621003617 -7.1760282935998845 13.226834400375994
2018-04-09T00:00:00Z 4.146249005106157 -3.544889158774488 11.837387168986803 -7.223019135569404 13.7812961292556
2018-04-10T00:00:00Z 4.248471557062319 -3.1675627809079447 11.664505895032583 -7.151796201621773 13.555925608334414
2018-04-11T00:00:00Z 3.721822627077756 -3.6361614745622206 11.079806728717733 -7.400665097208735 13.19396947997527
2018-04-12T00:00:00Z 3.7662645259551306 -3.3733984946412896 10.90592754655155 -7.193118648750073 13.008994564427647
2018-04-13T00:00:00Z 4.009729848285367 -2.987231482201117 11.006691178771852 -6.650739248413433 12.980620420162083
2018-04-14T00:00:00Z 4.508861808656569 -2.3042434252584174 11.321967042571554 -6.521488768001575 13.221598059200035
2018-04-15T00:00:00Z 5.091526799594248 -2.241920183367294 12.424973782555789 -6.557344547482311 14.606824249475428
2018-04-16T00:00:00Z 5.115932491953137 -1.964849972566645 12.196714956472919 -6.288355948643906 14.472158967280006
2018-04-17T00:00:00Z 5.36026082238724 -1.934128207616971 12.65464985239145 -6.197240362138835 15.083727690362306
2018-04-18T00:00:00Z 4.814271027794472 -2.0297591804379627 11.658301236026908 -5.949153159069863 13.69536426169614
2018-04-19T00:00:00Z 4.564556300567624 -1.9026034454478218 11.03171604658307 -5.719462153061009 13.285620397678453
2018-04-20T00:00:00Z 4.969266629355254 -1.8954279056624603 11.833961164372969 -6.2094554784100024 14.559991343492168
2018-04-21T00:00:00Z 5.099782785880235 -1.861873258824886 12.061438830585356 -6.039552921734922 15.299610266355744
2018-04-22T00:00:00Z 4.8728768706341485 -2.2076613052916443 11.953415046559941 -6.148609677587766 15.295150914178276
2018-04-23T00:00:00Z 4.822439257959455 -1.8801224630704834 11.525000978989393 -5.621414878985249 14.969397810771138
2018-04-24T00:00:00Z 4.925436503853789 -1.2401316594197977 11.091004667127375 -4.875040817282183 14.545533001073565
2018-04-25T00:00:00Z 4.683743811311961 -1.1647983969521727 10.532286019576095 -4.339646025136368 13.604711294769594
2018-04-26T00:00:00Z 4.822220757062392 -1.1497649792302918 10.794206493355077 -4.321030146945118 14.247007817084834
2018-04-27T00:00:00Z 4.681850402510293 -1.2067242584769335 10.57042506349752 -4.8186578244596845 14.38826109321553
2018-04-28T00:00:00Z 4.916522911412731 -1.1847764127846654 11.017822235610126 -4.545598956221951 14.746454383358792
2018-04-29T00:00:00Z 4.825802154979575 -1.3835019710715457 11.035106281030696 -4.638559019046927 14.343135852239808
2018-04-30T00:00:00Z 4.434519727098402 -1.7711359177528783 10.640175371949681 -5.017647225801952 14.05023165765196
2018-05-01T00:00:00Z 4.077302872988667 -1.9729859796846387 10.127591725661972 -4.8707618605862315 13.692478899125867
2018-05-02T00:00:00Z 4.247592420832008 -1.4532453879061515 9.948430229570167 -3.981889662258472 13.326888877117462
2018-05-03T00:00:00Z 4.819575593894207 -1.1776089151549662 10.81676010294338 -3.5894545467609484 14.342845081040501
2018-05-04T00:00:00Z 5.269928891316485 -1.1146082570260765 11.654466039659045 -3.972289405923086 15.426185595546578
2018-05-05T00:00:00Z 4.959998423010126 -1.2103406888040338 11.130337534824285 -3.7625054070417665 15.044902796788515
2018-05-06T00:00:00Z 4.538183595604537 -1.5542733109437865 10.630640502152861 -3.926641763287301 14.630640502152861
2018-05-07T00:00:00Z 4.126407836029323 -2.143062082257492 10.395877754316137 -4.278563759933103 14.332040423565847
2018-05-08T00:00:00Z 4.287316145242228 -1.7448334884739483 10.319465778958403 -4.213303023413851 13.816793923001507
2018-05-09T00:00:00Z 4.039217851792682 -1.8681341158017224 9.946569819387086 -4.289380888567043 13.793145194488597
2018-05-10T00:00:00Z 4.194762314676577 -1.5477611352265797 9.937285764579734 -3.9390935524012516 13.937285764579734
2018-05-11T00:00:00Z 3.9538849229913637 -1.7739446372794099 9.681714483262137 -4.458756297530013 13.632784438415012
2018-05-12T00:00:00Z 4.011259596516711 -1.9118609515073413 9.934380144540762 -4.3535723580003 13.731692420892736
2018-05-13T00:00:00Z 3.6993504934911083 -2.1852129096811455 9.583913896663361 -4.14061552249286 13.223661570185246
2018-05-14T00:00:00Z 3.64216679633336 -2.4306219388468615 9.714955531513581 -4.610397504703254 13.324945491656369
2018-05-15T00:00:00Z 3.675966214859259 -2.4688340045153225 9.82076643423384 -4.54660019987543 13.684166854677986
2018-05-16T00:00:00Z 3.7910603776204006 -2.184249343480845 9.766370098721646 -4.7944298196130175 13.7511253972222
2018-05-17T00:00:00Z 3.8333031698220585 -1.956043917694159 9.622650257338275 -4.4204463830597 13.622650257338275
2018-05-18T00:00:00Z 3.6754528520424232 -2.2421581948743805 9.593063898959226 -4.321300745384725 13.480316721527318
2018-05-19T00:00:00Z 3.1893993964157175 -2.2816866621850314 8.660485455016467 -4.477580356586412 12.635381160992099
2018-05-20T00:00:00Z 3.4176286491480115 -2.2517094450627697 9.086966743358794 -4.309314307407698 12.938521435048324
2018-05-21T00:00:00Z 3.122470757072416 -2.5913648457410465 8.836306359885878 -4.737832245290681 12.836306359885878
2018-05-22T00:00:00Z 3.3737399550148073 -2.388970075934318 9.136449985963932 -4.5837008703530095 13.136449985963932
2018-05-23T00:00:00Z 3.2562341161273713 -2.717254530494398 9.229722762749141 -5.069291023629541 13.11384099499104
2018-05-24T00:00:00Z 3.303954137212258 -2.3972782949663434 9.00518656939086 -4.4128892934166295 13.00518656939086
2018-05-25T00:00:00Z 2.754920257542211 -2.6733661762793055 8.183206691363727 -4.6562538064063475 12.027873973934243
2018-05-26T00:00:00Z 2.1961178989006496 -2.689395301278774 7.081631099080074 -4.186137675645192 10.809234698101998
2018-05-27T00:00:00Z 2.1355399165256936 -2.4710324361558738 6.7421122692072615 -3.795707394616602 10.088435002080056
2018-05-28T00:00:00Z 2.6968721894702097 -1.7390245473113803 7.132768926251799 -3.3833314663132117 10.253688385018627
2018-05-29T00:00:00Z 2.9931931014032993 -1.905404315429028 7.891790518235627 -3.915007362429951 11.380993411044766
2018-05-30T00:00:00Z 2.726675943735692 -2.0374800450442607 7.490831932515645 -3.8102823291565358 10.831633533246343
2018-05-31T00:00:00Z 2.423355879556717 -2.013736911158814 6.860448670272248 -3.291564061179841 9.98285870384522
2018-06-01T00:00:00Z 2.494059368906314 -2.1412848879367563 7.129403625749385 -3.1412848879367563 10.381613803293673
2018-06-02T00:00:00Z 2.156402136400025 -2.356245905199867 6.669050177999917 -3.6162291878714474 9.580688846453976
2018-06-03T00:00:00Z 2.577992732892281 -2.3864810561969145 7.542466521981477 -3.8573234880526006 10.199195240601728
2018-06-04T00:00:00Z 2.6019860164210025 -2.3203161544261945 7.5242881872681995 -3.71751539698699 10.727879777078376
2018-06-05T00:00:00Z 2.382083948626242 -2.695432017793294 7.459599915045779 -4.123938690257386 11.141983530490187
2018-06-06T00:00:00Z 2.601910342828456 -2.298843534787817 7.5026642204447285 -3.9855700580920574 10.740926074029375
2018-06-07T00:00:00Z 2.3435599349961027 -2.5518992241136376 7.239019094105843 -3.7973554318891636 10.185552885780446
2018-06-08T00:00:00Z 1.8811758058785117 -2.643491354543191 6.405842966300215 -3.643491354543191 9.387430819127069
2018-06-09T00:00:00Z 1.9559721670305672 -2.4701737101886367 6.382118044249771 -3.5103550686592206 9.065700931953632
2018-06-10T00:00:00Z 2.2272054386970406 -2.7436425961319695 7.19805347352605 -3.7436425961319695 9.989342051930937
2018-06-11T00:00:00Z 2.4428495346516694 -2.73404420385914 7.619743273162479 -4.001986962106944 10.72729341507922
2018-06-12T00:00:00Z 2.019028714338884 -3.0318291306686906 7.069886559346459 -4.288893931269128 10.290362481254892
2018-06-13T00:00:00Z 2.0196626042375643 -2.831382961255592 6.870708169730721 -4.113558322501119 9.550384367185204
2018-06-14T00:00:00Z 1.9994349206392497 -2.766419398470156 6.765289239748656 -4.165948886169701 9.000155380188819
2018-06-15T00:00:00Z 2.297222431454764 -2.2601303827907717 6.8545752457003 -4.068611206744697 9.321574829627055
2018-06-16T00:00:00Z 2.7361036496145443 -2.092345361340744 7.5645526605698326 -4.400485483505314 10.53696333796741
2018-06-17T00:00:00Z 3.1238072350509416 -2.2314598132991366 8.479074283401019 -4.897902747539237 11.30108397426351
2018-06-18T00:00:00Z 3.4020142482262807 -2.130650573185946 8.934679069638507 -4.460445908877036 11.793140127132158
2018-06-19T00:00:00Z 3.0154086408167036 -2.645904005206919 8.676721286840326 -5.154811829139301 11.242301820986462
2018-06-20T00:00:00Z 2.9000007894540025 -2.8976400867614847 8.69764166566949 -5.056408443644541 10.681788178696177
2018-06-21T00:00:00Z 2.546264037129555 -3.568223940561144 8.660752014820254 -5.4174062131933844 10.638916143335825
2018-06-22T00:00:00Z 2.6837354312467605 -3.304413716792925 8.671884579286445 -4.909042273635871 10.554944495777326
2018-06-23T00:00:00Z 3.061957610156834 -3.276801784354584 9.400717004668252 -4.9571703338058155 11.795055788856907
2018-06-24T00:00:00Z 2.8773764825095154 -3.137563897323631 8.892316862342662 -4.582756289633005 11.483617731224733
2018-06-25T00:00:00Z 3.048178809366809 -3.0133389108439745 9.109696529577594 -4.7043570871803695 11.576309942093163
2018-06-26T00:00:00Z 2.82433123874897 -3.3718192675858942 9.020481745083835 -5.012866867146575 10.924620104281372
2018-06-27T00:00:00Z 2.8979255590885638 -3.4086404370421572 9.204491555219285 -5.249626480833712 10.878579261931456
2018-06-28T00:00:00Z 2.6815187301938073 -4.015415374754841 9.378452835142456 -5.639544952463746 11.306943565870252
2018-06-29T00:00:00Z 2.539515692005841 -4.4102674032668965 9.489298787278578 -6.141209127410259 11.76044303648488
2018-06-30T00:00:00Z 2.7617585060353584 -3.9389736234095873 9.462490635480304 -6.148043390255304 11.679152283698015
2018-07-01T00:00:00Z 2.762031693884538 -4.18783775627535 9.711901144044427 -6.111094643480624 11.857511046133729
2018-07-02T00:00:00Z 2.42912104765809 -4.3886698317490325 9.246911927065211 -6.316915287661753 11.215891895492456
2018-07-03T00:00:00Z 2.3496916350393837 -4.141757759154667 8.841141029233434 -5.738613512187066 10.471833285903752
2018-07-04T00:00:00Z 2.624613504284039 -3.9344735318373405 9.183700540405418 -5.348471902041174 10.549230440542207
2018-07-05T00:00:00Z 3.002262532028976 -3.5911646452413195 9.595689709299272 -4.925402819644891 10.876309126676109
2018-07-06T00:00:00Z 3.492547826029018 -3.4542393694561864 10.439335021514223 -5.248702275782945 12.019465862750266
2018-07-07T00:00:00Z 3.272005509838035 -3.366861921192597 9.910872940868668 -5.409120531286398 11.284158251154674
2018-07-08T00:00:00Z 3.0009691815065382 -3.404431748289345 9.406370111302422 -5.04690735272601 10.559127622698657
2018-07-09T00:00:00Z 2.8739586590297757 -3.5850287399798884 9.33294605803944 -5.269589579024272 10.33294605803944
2018-07-10T00:00:00Z 2.9147694664357737 -3.278264093388237 9.107803026259784 -4.910548680055954 10.14012161824273
2018-07-11T00:00:00Z 3.4067147948142718 -2.927484351066165 9.740913940694709 -4.861403421682594 10.740913940694709
2018-07-12T00:00:00Z 3.7285326209873686 -2.402033874173674 9.85909911614841 -4.659233076043021 11.026437813851107
2018-07-13T00:00:00Z 3.9776006144521787 -2.404288996383234 10.35949022528759 -4.663774838259973 11.81971187453135
2018-07-14T00:00:00Z 4.047212149971589 -2.4704346740055323 10.56485897394871 -4.462808782290011 11.574099190013243
2018-07-15T00:00:00Z 3.7311993656821194 -2.6244624933194176 10.086861224683656 -4.043445028854892 11.086861224683656
2018-07-16T00:00:00Z 3.696541191242428 -2.2716265732354906 9.664708955720346 -3.9023484720803676 10.664708955720346
2018-07-17T00:00:00Z 4.210882897542345 -1.650601725811721 10.07236752089641 -3.4571939014690862 11.406777666131205
2018-07-18T00:00:00Z 4.132223282435189 -1.9028460925414397 10.167292657411817 -4.059942383547959 11.360495956361186
2018-07-19T00:00:00Z 3.9539130188693368 -2.5631783160455712 10.471004353784245 -4.691386521520299 11.471004353784245
2018-07-20T00:00:00Z 4.068267549273145 -2.227336911304592 10.363872009850882 -3.854539963532466 11.363872009850882
2018-07-21T00:00:00Z 3.726279055950845 -2.7102977172277254 10.162855829129416 -3.9415974018499886 11.162855829129416
2018-07-22T00:00:00Z 3.406014800000206 -2.573382639120364 9.385412239120775 -4.002261857739434 10.507397806052557
2018-07-23T00:00:00Z 3.7046422216280113 -2.6687010550697026 10.077985498325726 -4.036558660657625 11.429612350271873
2018-07-24T00:00:00Z 3.626718255399854 -3.3262229461011645 10.579659456900872 -5.260920835988939 11.859340698988477
2018-07-25T00:00:00Z 3.710145346485008 -2.9917907155584254 10.412081408528442 -4.908064961115117 11.556126018030136
2018-07-26T00:00:00Z 3.5980802118106374 -2.913634146777833 10.109794570399108 -4.606027842069423 11.398080898066532
2018-07-27T00:00:00Z 3.0914084415902896 -2.87046134788802 9.0532782310686 -4.701031540455432 10.0532782310686
2018-07-28T00:00:00Z 3.2124345322972627 -2.335955669917761 8.760824734512287 -3.852848274346908 9.88929401484773
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment