{
«cells»: [
{

«cell_type»: «markdown», «metadata»: {}, «source»: [

«# Prepared fundamental data»

]

}, {

«cell_type»: «markdown», «metadata»: {}, «source»: [

«#### Import basic libraries»

]

}, {

«cell_type»: «code», «execution_count»: 1, «metadata»: {}, «outputs»: [

{
«data»: {
«text/html»: [

» <script type="text/javascript">n», » window.PlotlyConfig = {MathJaxConfig: „local“};n», » if (window.MathJax) {MathJax.Hub.Config({SVG: {font: "STIX-Web"}});}n», » if (typeof require !== „undefined“) {n», » require.undef("plotly");n», » requirejs.config({n», » paths: {n», » „plotly“: [“https://cdn.plot.ly/plotly-latest.min“]n», » }n», » });n», » require([„plotly“], function(Plotly) {n», » window._Plotly = Plotly;n», » });n», » }n», » </script>n», » «

]

}, «metadata»: {}, «output_type»: «display_data»

}

], «source»: [

«# Please refer to xarray.pydata.org for xarray documentation.n», «n», «# xarray works optimally with N-dimensional datasets in Pythonn», «# and is well suited for financial datasets with labels "time",n», «# "field" and "asset". xarray data structures can also be easilyn», «# converted to pandas dataframes.n», «n», «import xarray as xrn», «import numpy as npn», «import pandas as pdn», «n», «# Import quantnet libraries.n», «import qnt.data as qndatan», «import qnt.stepper as qnsteppern», «import qnt.stats as qnstatsn», «import qnt.graph as qngraphn», «import qnt.forward_looking as qnfln», «import datetime as dtn», «import itertoolsn», «import qnt.data.secgov_indicatorsn», «from qnt.neutralization import neutralizen», «from qnt.data.secgov_indicators import InstantIndicatorBuilder, PeriodIndicatorBuilder»

]

}, {

«cell_type»: «markdown», «metadata»: {}, «source»: [

«#### Load assets and market data»

]

}, {

«cell_type»: «code», «execution_count»: 2, «metadata»: {}, «outputs»: [

{

«name»: «stdout», «output_type»: «stream», «text»: [

«fetched chunk 1/6 1sn», «fetched chunk 2/6 2sn», «fetched chunk 3/6 4sn», «fetched chunk 4/6 5sn», «fetched chunk 5/6 6sn», «fetched chunk 6/6 7sn», «Data loaded 7sn»

]

}

], «source»: [

«# Load all available asset names since the given date.n», «assets = qndata.load_assets(tail=dt.timedelta(days=5*365))n», «assets_names = [i["id"] for i in assets]n», «n», «# A submission will be accepted only if no max_date is set,n», «# as submissions will be evaluated on live data on a daily basis.n», «data = qndata.load_data(tail=dt.timedelta(days=5*365),n», » dims=("time", "field", "asset"),n», » assets=assets_names,n», » forward_order=True)n», «n», «# We trade only liquid stocksn», «is_liquid = data.loc[:,"is_liquid",:]n», «n», «# replace zeros in liquid with NaNn», «index = np.array(abs(is_liquid - 1),dtype = bool)n», «is_liquid.to_pandas()[index] = np.nan»

]

}, {

«cell_type»: «markdown», «metadata»: {}, «source»: [

«#### Load fundamental data»

]

}, {

«cell_type»: «markdown», «metadata»: {}, «source»: [

«We have collected and processed a large amount of fundamental data for users. One can find the list of prepared data [here](https://quantnet.ai/learn/:availableData_Table). Below are two ways to download prepared data.n», «n», «Also, users can extract and prepare fundamental data by [themselves](https://quantnet.ai/referee/template/14261914/html).»

]

}, {

«cell_type»: «code», «execution_count»: 3, «metadata»: {}, «outputs»: [

{

«name»: «stdout», «output_type»: «stream», «text»: [

«load secgov facts…n», «fetched chunk 1 / 19 1 sn», «fetched chunk 2 / 19 2 sn», «fetched chunk 3 / 19 3 sn», «fetched chunk 4 / 19 4 sn», «fetched chunk 5 / 19 4 sn», «fetched chunk 6 / 19 5 sn», «fetched chunk 7 / 19 6 sn», «fetched chunk 8 / 19 7 sn», «fetched chunk 9 / 19 7 sn», «fetched chunk 10 / 19 8 sn», «fetched chunk 11 / 19 9 sn», «fetched chunk 12 / 19 10 sn», «fetched chunk 13 / 19 10 sn», «fetched chunk 14 / 19 11 sn», «fetched chunk 15 / 19 12 sn», «fetched chunk 16 / 19 13 sn», «fetched chunk 17 / 19 14 sn», «fetched chunk 18 / 19 14 sn», «fetched chunk 19 / 19 15 sn», «facts loaded.n»

]

}

], «source»: [

«# The first way is just to list the desired data labels.n», «n», «# Let’s say we have a list of desired fundamental datan», «data_lbls = [„assets“, „liabilities“, „operating_expense“, „ivestment_short_term“]n», «n», «# One can load corresponding datan», «fun_data1 = qnt.data.secgov_load_indicators(assets,time_coord = data.time, standard_indicators = data_lbls)»

]

}, {

«cell_type»: «code», «execution_count»: 4, «metadata»: {}, «outputs»: [], «source»: [

«# The second way to load fundamental data.n», «n», «# One can make their own builder that takes a name and a list of desired us:gaap tickets. n», «n», «# Some indicators are instant and updated regularly within each reportn», «instant_data_list = [InstantIndicatorBuilder(„assets“ , [„us-gaap:Assets“], True), n», » InstantIndicatorBuilder(„liabilities“, [„us-gaap:Liabilities“], True),n», » InstantIndicatorBuilder(„shares“, [„us-gaap:CommonStockSharesOutstanding“, n», » „us-gaap:CommonStockSharesIssued“], True)]n», «n», «n», «# Others are periodical and correspond to a certain period. For example, operating expenses and sales.n», «n», «# For periodical indicators, you can receive information with the quarter, annual frequency, or „last twelve month“ value.n», «# For these purposes put „qf“,“af“ or „ltm“ correspondingly:n», «n», «period_data_list = [PeriodIndicatorBuilder(„operating_expense“, [„us-gaap:OperatingExpenses“], True, „qf“),n», » PeriodIndicatorBuilder(„sales_revenue“, [„us-gaap:SalesRevenueGoodsNet“,n», » „us-gaap:SalesRevenueNet“,n», » „us-gaap:RevenueFromContractWithCustomerIncludingAssessedTax“n», » ], True, „af“),n», » PeriodIndicatorBuilder(„sga_expense“, [„us-gaap:SellingGeneralAndAdministrativeExpense“], True, „ltm“)]n», «n», «# For the first way to load data, „ltm“ set as default!n», «n», «# Load datan», «# fun_data2 = qnt.data.secgov_load_indicators(assets,time_coord = data.time, period_data_list)»

]

}, {

«cell_type»: «markdown», «metadata»: {}, «source»: [

«### Weights allocation»

]

}, {

«cell_type»: «code», «execution_count»: 5, «metadata»: {}, «outputs»: [], «source»: [

«# In order to estimate Sharpe for a number of algorithmsn», «def estimate_sharpe(weights_final):n», » stat = qnstats.calc_stat(data, weights_final, slippage_factor=0.05)n», » days = len(stat.coords["time"])n», » returns = stat.loc[:, "relative_return"]n», » n», » sharpe_ratio = qnstats.calc_sharpe_ratio_annualized(n», » returns,n», » max_periods=days,n», » min_periods=days).to_pandas().values[-1]n», » n», » print(f’Sharpe ratio = {sharpe_ratio}“)»

]

}, {

«cell_type»: «code», «execution_count»: 6, «metadata»: {}, «outputs»: [

{

«name»: «stdout», «output_type»: «stream», «text»: [

«Sharpe ratio = 0.6123488383924066n»

]

}

], «source»: [

«# Let’s check an idea - invest more for operating expensesn», «# Operating expenses include marketing, noncapitalized R&D, travel and entertainment, office supply, rent, salary, cogs…n», «weights = fun_data1.sel(field = „operating_expense“)n», «n», «# We trade only liquid stocksn», «weights = weights*is_liquidn», «n», «# estimate sharpe ration», «estimate_sharpe(weights)»

]

}, {

«cell_type»: «markdown», «metadata»: {}, «source»: [

«We can reduce risks by [neutralizing](https://quantnet.ai/learn/:neutralization) weights. n», «n», «This means that the total amount of funds invested in the market is zero. The algorithm becomes independent of the general up / down trend of the market. This is important to avoid losses associated with the crisis.»

]

}, {

«cell_type»: «code», «execution_count»: 7, «metadata»: {}, «outputs»: [

{

«name»: «stdout», «output_type»: «stream», «text»: [

«Sharpe ratio = 0.2931990779356883n»

]

}

], «source»: [

«# the strategy now is market neutral:n», «weights = fun_data1.sel(field = „operating_expense“)*is_liquidn», «weights = weights/abs(weights).sum(„asset“)n», «weights1 = -neutralize(weights,assets,group = „market“)n», «n», «estimate_sharpe(weights1)»

]

}, {

«cell_type»: «markdown», «metadata»: {}, «source»: [

«If the Sharpe ratio is low, sometimes it is reasonable to combine several signals in one algorithm.»

]

}, {

«cell_type»: «code», «execution_count»: 8, «metadata»: {}, «outputs»: [

{

«name»: «stdout», «output_type»: «stream», «text»: [

«Sharpe ratio = 0.7358461878992618n»

]

}

], «source»: [

«# the second signaln», «weights = fun_data1.sel(field = „ivestment_short_term“)*is_liquidn», «weights = weights/abs(weights).sum(„asset“)n», «weights2 = neutralize(weights,assets,group = „market“)n», «n», «estimate_sharpe(weights2)»

]

}, {

«cell_type»: «code», «execution_count»: 9, «metadata»: {}, «outputs»: [

{

«name»: «stdout», «output_type»: «stream», «text»: [

«Sharpe ratio = 1.5622341635233081n»

]

}

], «source»: [

«# combined signals in one algorithm.n», «output = weights1+ weights2n», «output = output/abs(output).sum(„asset“)n», «estimate_sharpe(output)»

]

}, {

«cell_type»: «markdown», «metadata»: {}, «source»: [

«### Statistics»

]

}, {

«cell_type»: «code», «execution_count»: 10, «metadata»: {}, «outputs»: [], «source»: [

«def print_stat(stat):n», » """Prints selected statistical key indicators:n», » - the global Sharpe ratio of the strategy;n», » - the global mean profit;n», » - the global volatility;n», » - the maximum drawdown.n», «n», » Note that Sharpe ratio, mean profit and volatilityn», » apply to max simulation period, and not to then», » rolling basis of 3 years.n», » """n», «n», » days = len(stat.coords["time"])n», » n», » returns = stat.loc[:, "relative_return"]n», «n», » equity = stat.loc[:, "equity"]n», » n», » sharpe_ratio = qnstats.calc_sharpe_ratio_annualized(n», » returns,n», » max_periods=days,n», » min_periods=days).to_pandas().values[-1]n», «n», » profit = (qnstats.calc_mean_return_annualized(n», » returns,n», » max_periods=days,n», » min_periods=days).to_pandas().values[-1])*100.0n», «n», » volatility = (qnstats.calc_volatility_annualized(n», » returns,n», » max_periods=days,n», » min_periods=days).to_pandas().values[-1])*100.0n», «n», » max_ddown = (qnstats.calc_max_drawdown(n», » qnstats.calc_underwater(equity)).to_pandas().values[-1])*100.0n», «n», » print("Sharpe Ratio : ", "{0:.3f}".format(sharpe_ratio))n», » print("Mean Return [%] : ", "{0:.3f}".format(profit))n», » print("Volatility [%] : ", "{0:.3f}".format(volatility))n», » print("Maximum Drawdown [%] : ", "{0:.3f}".format(-max_ddown))»

]

}, {

«cell_type»: «code», «execution_count»: 11, «metadata»: {}, «outputs»: [

{

«name»: «stdout», «output_type»: «stream», «text»: [

«Sharpe Ratio : 1.562n», «Mean Return [%] : 19.275n», «Volatility [%] : 12.338n», «Maximum Drawdown [%] : 10.143n»

]

}

], «source»: [

«stat = qnstats.calc_stat(data, output, slippage_factor=0.05)n», «print_stat(stat)»

]

}, {

«cell_type»: «code», «execution_count»: 12, «metadata»: {}, «outputs»: [

{
«data»: {
«application/vnd.plotly.v1+json»: {
«config»: {

«linkText»: «Export to plot.ly», «plotlyServerURL»: «https://plot.ly», «showLink»: false

}, «data»: [

{

«fill»: «tonexty», «line»: {

«color»: «#17BECF», «width»: 3

}, «name»: «PnL (Equity)», «type»: «scatter», «x»: [

«2015-09-14T00:00:00», «2015-09-15T00:00:00», «2015-09-16T00:00:00», «2015-09-17T00:00:00», «2015-09-18T00:00:00», «2015-09-21T00:00:00», «2015-09-22T00:00:00», «2015-09-23T00:00:00», «2015-09-24T00:00:00», «2015-09-25T00:00:00», «2015-09-28T00:00:00», «2015-09-29T00:00:00», «2015-09-30T00:00:00», «2015-10-01T00:00:00», «2015-10-02T00:00:00», «2015-10-05T00:00:00», «2015-10-06T00:00:00», «2015-10-07T00:00:00», «2015-10-08T00:00:00», «2015-10-09T00:00:00», «2015-10-12T00:00:00», «2015-10-13T00:00:00», «2015-10-14T00:00:00», «2015-10-15T00:00:00», «2015-10-16T00:00:00», «2015-10-19T00:00:00», «2015-10-20T00:00:00», «2015-10-21T00:00:00», «2015-10-22T00:00:00», «2015-10-23T00:00:00», «2015-10-26T00:00:00», «2015-10-27T00:00:00», «2015-10-28T00:00:00», «2015-10-29T00:00:00», «2015-10-30T00:00:00», «2015-11-02T00:00:00», «2015-11-03T00:00:00», «2015-11-04T00:00:00», «2015-11-05T00:00:00», «2015-11-06T00:00:00», «2015-11-09T00:00:00», «2015-11-10T00:00:00», «2015-11-11T00:00:00», «2015-11-12T00:00:00», «2015-11-13T00:00:00», «2015-11-16T00:00:00», «2015-11-17T00:00:00», «2015-11-18T00:00:00», «2015-11-19T00:00:00», «2015-11-20T00:00:00», «2015-11-23T00:00:00», «2015-11-24T00:00:00», «2015-11-25T00:00:00», «2015-11-27T00:00:00», «2015-11-30T00:00:00», «2015-12-01T00:00:00», «2015-12-02T00:00:00», «2015-12-03T00:00:00», «2015-12-04T00:00:00», «2015-12-07T00:00:00», «2015-12-08T00:00:00», «2015-12-09T00:00:00», «2015-12-10T00:00:00», «2015-12-11T00:00:00», «2015-12-14T00:00:00», «2015-12-15T00:00:00», «2015-12-16T00:00:00», «2015-12-17T00:00:00», «2015-12-18T00:00:00», «2015-12-21T00:00:00», «2015-12-22T00:00:00», «2015-12-23T00:00:00», «2015-12-24T00:00:00», «2015-12-28T00:00:00», «2015-12-29T00:00:00», «2015-12-30T00:00:00», «2015-12-31T00:00:00», «2016-01-04T00:00:00», «2016-01-05T00:00:00», «2016-01-06T00:00:00», «2016-01-07T00:00:00», «2016-01-08T00:00:00», «2016-01-11T00:00:00», «2016-01-12T00:00:00», «2016-01-13T00:00:00», «2016-01-14T00:00:00», «2016-01-15T00:00:00», «2016-01-19T00:00:00», «2016-01-20T00:00:00», «2016-01-21T00:00:00», «2016-01-22T00:00:00», «2016-01-25T00:00:00», «2016-01-26T00:00:00», «2016-01-27T00:00:00», «2016-01-28T00:00:00», «2016-01-29T00:00:00», «2016-02-01T00:00:00», «2016-02-02T00:00:00», «2016-02-03T00:00:00», «2016-02-04T00:00:00», «2016-02-05T00:00:00», «2016-02-08T00:00:00», «2016-02-09T00:00:00», «2016-02-10T00:00:00», «2016-02-11T00:00:00», «2016-02-12T00:00:00», «2016-02-16T00:00:00», «2016-02-17T00:00:00», «2016-02-18T00:00:00», «2016-02-19T00:00:00», «2016-02-22T00:00:00», «2016-02-23T00:00:00», «2016-02-24T00:00:00», «2016-02-25T00:00:00», «2016-02-26T00:00:00», «2016-02-29T00:00:00», «2016-03-01T00:00:00», «2016-03-02T00:00:00», «2016-03-03T00:00:00», «2016-03-04T00:00:00», «2016-03-07T00:00:00», «2016-03-08T00:00:00», «2016-03-09T00:00:00», «2016-03-10T00:00:00», «2016-03-11T00:00:00», «2016-03-14T00:00:00», «2016-03-15T00:00:00», «2016-03-16T00:00:00», «2016-03-17T00:00:00», «2016-03-18T00:00:00», «2016-03-21T00:00:00», «2016-03-22T00:00:00», «2016-03-23T00:00:00», «2016-03-24T00:00:00», «2016-03-28T00:00:00», «2016-03-29T00:00:00», «2016-03-30T00:00:00», «2016-03-31T00:00:00», «2016-04-01T00:00:00», «2016-04-04T00:00:00», «2016-04-05T00:00:00», «2016-04-06T00:00:00», «2016-04-07T00:00:00», «2016-04-08T00:00:00», «2016-04-11T00:00:00», «2016-04-12T00:00:00», «2016-04-13T00:00:00», «2016-04-14T00:00:00», «2016-04-15T00:00:00», «2016-04-18T00:00:00», «2016-04-19T00:00:00», «2016-04-20T00:00:00», «2016-04-21T00:00:00», «2016-04-22T00:00:00», «2016-04-25T00:00:00», «2016-04-26T00:00:00», «2016-04-27T00:00:00», «2016-04-28T00:00:00», «2016-04-29T00:00:00», «2016-05-02T00:00:00», «2016-05-03T00:00:00», «2016-05-04T00:00:00», «2016-05-05T00:00:00», «2016-05-06T00:00:00», «2016-05-09T00:00:00», «2016-05-10T00:00:00», «2016-05-11T00:00:00», «2016-05-12T00:00:00», «2016-05-13T00:00:00», «2016-05-16T00:00:00», «2016-05-17T00:00:00», «2016-05-18T00:00:00», «2016-05-19T00:00:00», «2016-05-20T00:00:00», «2016-05-23T00:00:00», «2016-05-24T00:00:00», «2016-05-25T00:00:00», «2016-05-26T00:00:00», «2016-05-27T00:00:00», «2016-05-31T00:00:00», «2016-06-01T00:00:00», «2016-06-02T00:00:00», «2016-06-03T00:00:00», «2016-06-06T00:00:00», «2016-06-07T00:00:00», «2016-06-08T00:00:00», «2016-06-09T00:00:00», «2016-06-10T00:00:00», «2016-06-13T00:00:00», «2016-06-14T00:00:00», «2016-06-15T00:00:00», «2016-06-16T00:00:00», «2016-06-17T00:00:00», «2016-06-20T00:00:00», «2016-06-21T00:00:00», «2016-06-22T00:00:00», «2016-06-23T00:00:00», «2016-06-24T00:00:00», «2016-06-27T00:00:00», «2016-06-28T00:00:00», «2016-06-29T00:00:00», «2016-06-30T00:00:00», «2016-07-01T00:00:00», «2016-07-05T00:00:00», «2016-07-06T00:00:00», «2016-07-07T00:00:00», «2016-07-08T00:00:00», «2016-07-11T00:00:00», «2016-07-12T00:00:00», «2016-07-13T00:00:00», «2016-07-14T00:00:00», «2016-07-15T00:00:00», «2016-07-18T00:00:00», «2016-07-19T00:00:00», «2016-07-20T00:00:00», «2016-07-21T00:00:00», «2016-07-22T00:00:00», «2016-07-25T00:00:00», «2016-07-26T00:00:00», «2016-07-27T00:00:00», «2016-07-28T00:00:00», «2016-07-29T00:00:00», «2016-08-01T00:00:00», «2016-08-02T00:00:00», «2016-08-03T00:00:00», «2016-08-04T00:00:00», «2016-08-05T00:00:00», «2016-08-08T00:00:00», «2016-08-09T00:00:00», «2016-08-10T00:00:00», «2016-08-11T00:00:00», «2016-08-12T00:00:00», «2016-08-15T00:00:00», «2016-08-16T00:00:00», «2016-08-17T00:00:00», «2016-08-18T00:00:00», «2016-08-19T00:00:00», «2016-08-22T00:00:00», «2016-08-23T00:00:00», «2016-08-24T00:00:00», «2016-08-25T00:00:00», «2016-08-26T00:00:00», «2016-08-29T00:00:00», «2016-08-30T00:00:00», «2016-08-31T00:00:00», «2016-09-01T00:00:00», «2016-09-02T00:00:00», «2016-09-06T00:00:00», «2016-09-07T00:00:00», «2016-09-08T00:00:00», «2016-09-09T00:00:00», «2016-09-12T00:00:00», «2016-09-13T00:00:00», «2016-09-14T00:00:00», «2016-09-15T00:00:00», «2016-09-16T00:00:00», «2016-09-19T00:00:00», «2016-09-20T00:00:00», «2016-09-21T00:00:00», «2016-09-22T00:00:00», «2016-09-23T00:00:00», «2016-09-26T00:00:00», «2016-09-27T00:00:00», «2016-09-28T00:00:00», «2016-09-29T00:00:00», «2016-09-30T00:00:00», «2016-10-03T00:00:00», «2016-10-04T00:00:00», «2016-10-05T00:00:00», «2016-10-06T00:00:00», «2016-10-07T00:00:00», «2016-10-10T00:00:00», «2016-10-11T00:00:00», «2016-10-12T00:00:00», «2016-10-13T00:00:00», «2016-10-14T00:00:00», «2016-10-17T00:00:00», «2016-10-18T00:00:00», «2016-10-19T00:00:00», «2016-10-20T00:00:00», «2016-10-21T00:00:00», «2016-10-24T00:00:00», «2016-10-25T00:00:00», «2016-10-26T00:00:00», «2016-10-27T00:00:00», «2016-10-28T00:00:00», «2016-10-31T00:00:00», «2016-11-01T00:00:00», «2016-11-02T00:00:00», «2016-11-03T00:00:00», «2016-11-04T00:00:00», «2016-11-07T00:00:00», «2016-11-08T00:00:00», «2016-11-09T00:00:00», «2016-11-10T00:00:00», «2016-11-11T00:00:00», «2016-11-14T00:00:00», «2016-11-15T00:00:00», «2016-11-16T00:00:00», «2016-11-17T00:00:00», «2016-11-18T00:00:00», «2016-11-21T00:00:00», «2016-11-22T00:00:00», «2016-11-23T00:00:00», «2016-11-25T00:00:00», «2016-11-28T00:00:00», «2016-11-29T00:00:00», «2016-11-30T00:00:00», «2016-12-01T00:00:00», «2016-12-02T00:00:00», «2016-12-05T00:00:00», «2016-12-06T00:00:00», «2016-12-07T00:00:00», «2016-12-08T00:00:00», «2016-12-09T00:00:00», «2016-12-12T00:00:00», «2016-12-13T00:00:00», «2016-12-14T00:00:00», «2016-12-15T00:00:00», «2016-12-16T00:00:00», «2016-12-19T00:00:00», «2016-12-20T00:00:00», «2016-12-21T00:00:00», «2016-12-22T00:00:00», «2016-12-23T00:00:00», «2016-12-27T00:00:00», «2016-12-28T00:00:00», «2016-12-29T00:00:00», «2016-12-30T00:00:00», «2017-01-03T00:00:00», «2017-01-04T00:00:00», «2017-01-05T00:00:00», «2017-01-06T00:00:00», «2017-01-09T00:00:00», «2017-01-10T00:00:00», «2017-01-11T00:00:00», «2017-01-12T00:00:00», «2017-01-13T00:00:00», «2017-01-17T00:00:00», «2017-01-18T00:00:00», «2017-01-19T00:00:00», «2017-01-20T00:00:00», «2017-01-23T00:00:00», «2017-01-24T00:00:00», «2017-01-25T00:00:00», «2017-01-26T00:00:00», «2017-01-27T00:00:00», «2017-01-30T00:00:00», «2017-01-31T00:00:00», «2017-02-01T00:00:00», «2017-02-02T00:00:00», «2017-02-03T00:00:00», «2017-02-06T00:00:00», «2017-02-07T00:00:00», «2017-02-08T00:00:00», «2017-02-09T00:00:00», «2017-02-10T00:00:00», «2017-02-13T00:00:00», «2017-02-14T00:00:00», «2017-02-15T00:00:00», «2017-02-16T00:00:00», «2017-02-17T00:00:00», «2017-02-21T00:00:00», «2017-02-22T00:00:00», «2017-02-23T00:00:00», «2017-02-24T00:00:00», «2017-02-27T00:00:00», «2017-02-28T00:00:00», «2017-03-01T00:00:00», «2017-03-02T00:00:00», «2017-03-03T00:00:00», «2017-03-06T00:00:00», «2017-03-07T00:00:00», «2017-03-08T00:00:00», «2017-03-09T00:00:00», «2017-03-10T00:00:00», «2017-03-13T00:00:00», «2017-03-14T00:00:00», «2017-03-15T00:00:00», «2017-03-16T00:00:00», «2017-03-17T00:00:00», «2017-03-20T00:00:00», «2017-03-21T00:00:00», «2017-03-22T00:00:00», «2017-03-23T00:00:00», «2017-03-24T00:00:00», «2017-03-27T00:00:00», «2017-03-28T00:00:00», «2017-03-29T00:00:00», «2017-03-30T00:00:00», «2017-03-31T00:00:00», «2017-04-03T00:00:00», «2017-04-04T00:00:00», «2017-04-05T00:00:00», «2017-04-06T00:00:00», «2017-04-07T00:00:00», «2017-04-10T00:00:00», «2017-04-11T00:00:00», «2017-04-12T00:00:00», «2017-04-13T00:00:00», «2017-04-17T00:00:00», «2017-04-18T00:00:00», «2017-04-19T00:00:00», «2017-04-20T00:00:00», «2017-04-21T00:00:00», «2017-04-24T00:00:00», «2017-04-25T00:00:00», «2017-04-26T00:00:00», «2017-04-27T00:00:00», «2017-04-28T00:00:00», «2017-05-01T00:00:00», «2017-05-02T00:00:00», «2017-05-03T00:00:00», «2017-05-04T00:00:00», «2017-05-05T00:00:00», «2017-05-08T00:00:00», «2017-05-09T00:00:00», «2017-05-10T00:00:00», «2017-05-11T00:00:00», «2017-05-12T00:00:00», «2017-05-15T00:00:00», «2017-05-16T00:00:00», «2017-05-17T00:00:00», «2017-05-18T00:00:00», «2017-05-19T00:00:00», «2017-05-22T00:00:00», «2017-05-23T00:00:00», «2017-05-24T00:00:00», «2017-05-25T00:00:00», «2017-05-26T00:00:00», «2017-05-30T00:00:00», «2017-05-31T00:00:00», «2017-06-01T00:00:00», «2017-06-02T00:00:00», «2017-06-05T00:00:00», «2017-06-06T00:00:00», «2017-06-07T00:00:00», «2017-06-08T00:00:00», «2017-06-09T00:00:00», «2017-06-12T00:00:00», «2017-06-13T00:00:00», «2017-06-14T00:00:00», «2017-06-15T00:00:00», «2017-06-16T00:00:00», «2017-06-19T00:00:00», «2017-06-20T00:00:00», «2017-06-21T00:00:00», «2017-06-22T00:00:00», «2017-06-23T00:00:00», «2017-06-26T00:00:00», «2017-06-27T00:00:00», «2017-06-28T00:00:00», «2017-06-29T00:00:00», «2017-06-30T00:00:00», «2017-07-03T00:00:00», «2017-07-05T00:00:00», «2017-07-06T00:00:00», «2017-07-07T00:00:00», «2017-07-10T00:00:00», «2017-07-11T00:00:00», «2017-07-12T00:00:00», «2017-07-13T00:00:00», «2017-07-14T00:00:00», «2017-07-17T00:00:00», «2017-07-18T00:00:00», «2017-07-19T00:00:00», «2017-07-20T00:00:00», «2017-07-21T00:00:00», «2017-07-24T00:00:00», «2017-07-25T00:00:00», «2017-07-26T00:00:00», «2017-07-27T00:00:00», «2017-07-28T00:00:00», «2017-07-31T00:00:00», «2017-08-01T00:00:00», «2017-08-02T00:00:00», «2017-08-03T00:00:00», «2017-08-04T00:00:00», «2017-08-07T00:00:00», «2017-08-08T00:00:00», «2017-08-09T00:00:00», «2017-08-10T00:00:00», «2017-08-11T00:00:00», «2017-08-14T00:00:00», «2017-08-15T00:00:00», «2017-08-16T00:00:00», «2017-08-17T00:00:00», «2017-08-18T00:00:00», «2017-08-21T00:00:00», «2017-08-22T00:00:00», «2017-08-23T00:00:00», «2017-08-24T00:00:00», «2017-08-25T00:00:00», «2017-08-28T00:00:00», «2017-08-29T00:00:00», «2017-08-30T00:00:00», «2017-08-31T00:00:00», «2017-09-01T00:00:00», «2017-09-05T00:00:00», «2017-09-06T00:00:00», «2017-09-07T00:00:00», «2017-09-08T00:00:00», «2017-09-11T00:00:00», «2017-09-12T00:00:00», «2017-09-13T00:00:00», «2017-09-14T00:00:00», «2017-09-15T00:00:00», «2017-09-18T00:00:00», «2017-09-19T00:00:00», «2017-09-20T00:00:00», «2017-09-21T00:00:00», «2017-09-22T00:00:00», «2017-09-25T00:00:00», «2017-09-26T00:00:00», «2017-09-27T00:00:00», «2017-09-28T00:00:00», «2017-09-29T00:00:00», «2017-10-02T00:00:00», «2017-10-03T00:00:00», «2017-10-04T00:00:00», «2017-10-05T00:00:00», «2017-10-06T00:00:00», «2017-10-09T00:00:00», «2017-10-10T00:00:00», «2017-10-11T00:00:00», «2017-10-12T00:00:00», «2017-10-13T00:00:00», «2017-10-16T00:00:00», «2017-10-17T00:00:00», «2017-10-18T00:00:00», «2017-10-19T00:00:00», «2017-10-20T00:00:00», «2017-10-23T00:00:00», «2017-10-24T00:00:00», «2017-10-25T00:00:00», «2017-10-26T00:00:00», «2017-10-27T00:00:00», «2017-10-30T00:00:00», «2017-10-31T00:00:00», «2017-11-01T00:00:00», «2017-11-02T00:00:00», «2017-11-03T00:00:00», «2017-11-06T00:00:00», «2017-11-07T00:00:00», «2017-11-08T00:00:00», «2017-11-09T00:00:00», «2017-11-10T00:00:00», «2017-11-13T00:00:00», «2017-11-14T00:00:00», «2017-11-15T00:00:00», «2017-11-16T00:00:00», «2017-11-17T00:00:00», «2017-11-20T00:00:00», «2017-11-21T00:00:00», «2017-11-22T00:00:00», «2017-11-24T00:00:00», «2017-11-27T00:00:00», «2017-11-28T00:00:00», «2017-11-29T00:00:00», «2017-11-30T00:00:00», «2017-12-01T00:00:00», «2017-12-04T00:00:00», «2017-12-05T00:00:00», «2017-12-06T00:00:00», «2017-12-07T00:00:00», «2017-12-08T00:00:00», «2017-12-11T00:00:00», «2017-12-12T00:00:00», «2017-12-13T00:00:00», «2017-12-14T00:00:00», «2017-12-15T00:00:00», «2017-12-18T00:00:00», «2017-12-19T00:00:00», «2017-12-20T00:00:00», «2017-12-21T00:00:00», «2017-12-22T00:00:00», «2017-12-26T00:00:00», «2017-12-27T00:00:00», «2017-12-28T00:00:00», «2017-12-29T00:00:00», «2018-01-02T00:00:00», «2018-01-03T00:00:00», «2018-01-04T00:00:00», «2018-01-05T00:00:00», «2018-01-08T00:00:00», «2018-01-09T00:00:00», «2018-01-10T00:00:00», «2018-01-11T00:00:00», «2018-01-12T00:00:00», «2018-01-16T00:00:00», «2018-01-17T00:00:00», «2018-01-18T00:00:00», «2018-01-19T00:00:00», «2018-01-22T00:00:00», «2018-01-23T00:00:00», «2018-01-24T00:00:00», «2018-01-25T00:00:00», «2018-01-26T00:00:00», «2018-01-29T00:00:00», «2018-01-30T00:00:00», «2018-01-31T00:00:00», «2018-02-01T00:00:00», «2018-02-02T00:00:00», «2018-02-05T00:00:00», «2018-02-06T00:00:00», «2018-02-07T00:00:00», «2018-02-08T00:00:00», «2018-02-09T00:00:00», «2018-02-12T00:00:00», «2018-02-13T00:00:00», «2018-02-14T00:00:00», «2018-02-15T00:00:00», «2018-02-16T00:00:00», «2018-02-20T00:00:00», «2018-02-21T00:00:00», «2018-02-22T00:00:00», «2018-02-23T00:00:00», «2018-02-26T00:00:00», «2018-02-27T00:00:00», «2018-02-28T00:00:00», «2018-03-01T00:00:00», «2018-03-02T00:00:00», «2018-03-05T00:00:00», «2018-03-06T00:00:00», «2018-03-07T00:00:00», «2018-03-08T00:00:00», «2018-03-09T00:00:00», «2018-03-12T00:00:00», «2018-03-13T00:00:00», «2018-03-14T00:00:00», «2018-03-15T00:00:00», «2018-03-16T00:00:00», «2018-03-19T00:00:00», «2018-03-20T00:00:00», «2018-03-21T00:00:00», «2018-03-22T00:00:00», «2018-03-23T00:00:00», «2018-03-26T00:00:00», «2018-03-27T00:00:00», «2018-03-28T00:00:00», «2018-03-29T00:00:00», «2018-04-02T00:00:00», «2018-04-03T00:00:00», «2018-04-04T00:00:00», «2018-04-05T00:00:00», «2018-04-06T00:00:00», «2018-04-09T00:00:00», «2018-04-10T00:00:00», «2018-04-11T00:00:00», «2018-04-12T00:00:00», «2018-04-13T00:00:00», «2018-04-16T00:00:00», «2018-04-17T00:00:00», «2018-04-18T00:00:00», «2018-04-19T00:00:00», «2018-04-20T00:00:00», «2018-04-23T00:00:00», «2018-04-24T00:00:00», «2018-04-25T00:00:00», «2018-04-26T00:00:00», «2018-04-27T00:00:00», «2018-04-30T00:00:00», «2018-05-01T00:00:00», «2018-05-02T00:00:00», «2018-05-03T00:00:00», «2018-05-04T00:00:00», «2018-05-07T00:00:00», «2018-05-08T00:00:00», «2018-05-09T00:00:00», «2018-05-10T00:00:00», «2018-05-11T00:00:00», «2018-05-14T00:00:00», «2018-05-15T00:00:00», «2018-05-16T00:00:00», «2018-05-17T00:00:00», «2018-05-18T00:00:00», «2018-05-21T00:00:00», «2018-05-22T00:00:00», «2018-05-23T00:00:00», «2018-05-24T00:00:00», «2018-05-25T00:00:00», «2018-05-29T00:00:00», «2018-05-30T00:00:00», «2018-05-31T00:00:00», «2018-06-01T00:00:00», «2018-06-04T00:00:00», «2018-06-05T00:00:00», «2018-06-06T00:00:00», «2018-06-07T00:00:00», «2018-06-08T00:00:00», «2018-06-11T00:00:00», «2018-06-12T00:00:00», «2018-06-13T00:00:00», «2018-06-14T00:00:00», «2018-06-15T00:00:00», «2018-06-18T00:00:00», «2018-06-19T00:00:00», «2018-06-20T00:00:00», «2018-06-21T00:00:00», «2018-06-22T00:00:00», «2018-06-25T00:00:00», «2018-06-26T00:00:00», «2018-06-27T00:00:00», «2018-06-28T00:00:00», «2018-06-29T00:00:00», «2018-07-02T00:00:00», «2018-07-03T00:00:00», «2018-07-05T00:00:00», «2018-07-06T00:00:00», «2018-07-09T00:00:00», «2018-07-10T00:00:00», «2018-07-11T00:00:00», «2018-07-12T00:00:00», «2018-07-13T00:00:00», «2018-07-16T00:00:00», «2018-07-17T00:00:00», «2018-07-18T00:00:00», «2018-07-19T00:00:00», «2018-07-20T00:00:00», «2018-07-23T00:00:00», «2018-07-24T00:00:00», «2018-07-25T00:00:00», «2018-07-26T00:00:00», «2018-07-27T00:00:00», «2018-07-30T00:00:00», «2018-07-31T00:00:00», «2018-08-01T00:00:00», «2018-08-02T00:00:00», «2018-08-03T00:00:00», «2018-08-06T00:00:00», «2018-08-07T00:00:00», «2018-08-08T00:00:00», «2018-08-09T00:00:00», «2018-08-10T00:00:00», «2018-08-13T00:00:00», «2018-08-14T00:00:00», «2018-08-15T00:00:00», «2018-08-16T00:00:00», «2018-08-17T00:00:00», «2018-08-20T00:00:00», «2018-08-21T00:00:00», «2018-08-22T00:00:00», «2018-08-23T00:00:00», «2018-08-24T00:00:00», «2018-08-27T00:00:00», «2018-08-28T00:00:00», «2018-08-29T00:00:00», «2018-08-30T00:00:00», «2018-08-31T00:00:00», «2018-09-04T00:00:00», «2018-09-05T00:00:00», «2018-09-06T00:00:00», «2018-09-07T00:00:00», «2018-09-10T00:00:00», «2018-09-11T00:00:00», «2018-09-12T00:00:00», «2018-09-13T00:00:00», «2018-09-14T00:00:00», «2018-09-17T00:00:00», «2018-09-18T00:00:00», «2018-09-19T00:00:00», «2018-09-20T00:00:00», «2018-09-21T00:00:00», «2018-09-24T00:00:00», «2018-09-25T00:00:00», «2018-09-26T00:00:00», «2018-09-27T00:00:00», «2018-09-28T00:00:00», «2018-10-01T00:00:00», «2018-10-02T00:00:00», «2018-10-03T00:00:00», «2018-10-04T00:00:00», «2018-10-05T00:00:00», «2018-10-08T00:00:00», «2018-10-09T00:00:00», «2018-10-10T00:00:00», «2018-10-11T00:00:00», «2018-10-12T00:00:00», «2018-10-15T00:00:00», «2018-10-16T00:00:00», «2018-10-17T00:00:00», «2018-10-18T00:00:00», «2018-10-19T00:00:00», «2018-10-22T00:00:00», «2018-10-23T00:00:00», «2018-10-24T00:00:00», «2018-10-25T00:00:00», «2018-10-26T00:00:00», «2018-10-29T00:00:00», «2018-10-30T00:00:00», «2018-10-31T00:00:00», «2018-11-01T00:00:00», «2018-11-02T00:00:00», «2018-11-05T00:00:00», «2018-11-06T00:00:00», «2018-11-07T00:00:00», «2018-11-08T00:00:00», «2018-11-09T00:00:00», «2018-11-12T00:00:00», «2018-11-13T00:00:00», «2018-11-14T00:00:00», «2018-11-15T00:00:00», «2018-11-16T00:00:00», «2018-11-19T00:00:00», «2018-11-20T00:00:00», «2018-11-21T00:00:00», «2018-11-23T00:00:00», «2018-11-26T00:00:00», «2018-11-27T00:00:00», «2018-11-28T00:00:00», «2018-11-29T00:00:00», «2018-11-30T00:00:00», «2018-12-03T00:00:00», «2018-12-04T00:00:00», «2018-12-06T00:00:00», «2018-12-07T00:00:00», «2018-12-10T00:00:00», «2018-12-11T00:00:00», «2018-12-12T00:00:00», «2018-12-13T00:00:00», «2018-12-14T00:00:00», «2018-12-17T00:00:00», «2018-12-18T00:00:00», «2018-12-19T00:00:00», «2018-12-20T00:00:00», «2018-12-21T00:00:00», «2018-12-24T00:00:00», «2018-12-26T00:00:00», «2018-12-27T00:00:00», «2018-12-28T00:00:00», «2018-12-31T00:00:00», «2019-01-02T00:00:00», «2019-01-03T00:00:00», «2019-01-04T00:00:00», «2019-01-07T00:00:00», «2019-01-08T00:00:00», «2019-01-09T00:00:00», «2019-01-10T00:00:00», «2019-01-11T00:00:00», «2019-01-14T00:00:00», «2019-01-15T00:00:00», «2019-01-16T00:00:00», «2019-01-17T00:00:00», «2019-01-18T00:00:00», «2019-01-22T00:00:00», «2019-01-23T00:00:00», «2019-01-24T00:00:00», «2019-01-25T00:00:00», «2019-01-28T00:00:00», «2019-01-29T00:00:00», «2019-01-30T00:00:00», «2019-01-31T00:00:00», «2019-02-01T00:00:00», «2019-02-04T00:00:00», «2019-02-05T00:00:00», «2019-02-06T00:00:00», «2019-02-07T00:00:00», «2019-02-08T00:00:00», «2019-02-11T00:00:00», «2019-02-12T00:00:00», «2019-02-13T00:00:00», «2019-02-14T00:00:00», «2019-02-15T00:00:00», «2019-02-19T00:00:00», «2019-02-20T00:00:00», «2019-02-21T00:00:00», «2019-02-22T00:00:00», «2019-02-25T00:00:00», «2019-02-26T00:00:00», «2019-02-27T00:00:00», «2019-02-28T00:00:00», «2019-03-01T00:00:00», «2019-03-04T00:00:00», «2019-03-05T00:00:00», «2019-03-06T00:00:00», «2019-03-07T00:00:00», «2019-03-08T00:00:00», «2019-03-11T00:00:00», «2019-03-12T00:00:00», «2019-03-13T00:00:00», «2019-03-14T00:00:00», «2019-03-15T00:00:00», «2019-03-18T00:00:00», «2019-03-19T00:00:00», «2019-03-20T00:00:00», «2019-03-21T00:00:00», «2019-03-22T00:00:00», «2019-03-25T00:00:00», «2019-03-26T00:00:00», «2019-03-27T00:00:00», «2019-03-28T00:00:00», «2019-03-29T00:00:00», «2019-04-01T00:00:00», «2019-04-02T00:00:00», «2019-04-03T00:00:00», «2019-04-04T00:00:00», «2019-04-05T00:00:00», «2019-04-08T00:00:00», «2019-04-09T00:00:00», «2019-04-10T00:00:00», «2019-04-11T00:00:00», «2019-04-12T00:00:00», «2019-04-15T00:00:00», «2019-04-16T00:00:00», «2019-04-17T00:00:00», «2019-04-18T00:00:00», «2019-04-22T00:00:00», «2019-04-23T00:00:00», «2019-04-24T00:00:00», «2019-04-25T00:00:00», «2019-04-26T00:00:00», «2019-04-29T00:00:00», «2019-04-30T00:00:00», «2019-05-01T00:00:00», «2019-05-02T00:00:00», «2019-05-03T00:00:00», «2019-05-06T00:00:00», «2019-05-07T00:00:00», «2019-05-08T00:00:00», «2019-05-09T00:00:00», «2019-05-10T00:00:00», «2019-05-13T00:00:00», «2019-05-14T00:00:00», «2019-05-15T00:00:00», «2019-05-16T00:00:00», «2019-05-17T00:00:00», «2019-05-20T00:00:00», «2019-05-21T00:00:00», «2019-05-22T00:00:00», «2019-05-23T00:00:00», «2019-05-24T00:00:00», «2019-05-28T00:00:00», «2019-05-29T00:00:00», «2019-05-30T00:00:00», «2019-05-31T00:00:00», «2019-06-03T00:00:00», «2019-06-04T00:00:00», «2019-06-05T00:00:00», «2019-06-06T00:00:00», «2019-06-07T00:00:00», «2019-06-10T00:00:00», «2019-06-11T00:00:00», «2019-06-12T00:00:00», «2019-06-13T00:00:00», «2019-06-14T00:00:00», «2019-06-17T00:00:00», «2019-06-18T00:00:00», «2019-06-19T00:00:00», «2019-06-20T00:00:00», «2019-06-21T00:00:00», «2019-06-24T00:00:00», «2019-06-25T00:00:00», «2019-06-26T00:00:00», «2019-06-27T00:00:00», «2019-06-28T00:00:00», «2019-07-01T00:00:00», «2019-07-02T00:00:00», «2019-07-03T00:00:00», «2019-07-05T00:00:00», «2019-07-08T00:00:00», «2019-07-09T00:00:00», «2019-07-10T00:00:00», «2019-07-11T00:00:00», «2019-07-12T00:00:00», «2019-07-15T00:00:00», «2019-07-16T00:00:00», «2019-07-17T00:00:00», «2019-07-18T00:00:00», «2019-07-19T00:00:00», «2019-07-22T00:00:00», «2019-07-23T00:00:00», «2019-07-24T00:00:00», «2019-07-25T00:00:00», «2019-07-26T00:00:00», «2019-07-29T00:00:00», «2019-07-30T00:00:00», «2019-07-31T00:00:00», «2019-08-01T00:00:00», «2019-08-02T00:00:00», «2019-08-05T00:00:00», «2019-08-06T00:00:00», «2019-08-07T00:00:00», «2019-08-08T00:00:00», «2019-08-09T00:00:00», «2019-08-12T00:00:00», «2019-08-13T00:00:00», «2019-08-14T00:00:00», «2019-08-15T00:00:00», «2019-08-16T00:00:00», «2019-08-19T00:00:00», «2019-08-20T00:00:00», «2019-08-21T00:00:00», «2019-08-22T00:00:00», «2019-08-23T00:00:00», «2019-08-26T00:00:00», «2019-08-27T00:00:00», «2019-08-28T00:00:00», «2019-08-29T00:00:00», «2019-08-30T00:00:00», «2019-09-03T00:00:00», «2019-09-04T00:00:00», «2019-09-05T00:00:00», «2019-09-06T00:00:00», «2019-09-09T00:00:00», «2019-09-10T00:00:00», «2019-09-11T00:00:00», «2019-09-12T00:00:00», «2019-09-13T00:00:00», «2019-09-16T00:00:00», «2019-09-17T00:00:00», «2019-09-18T00:00:00», «2019-09-19T00:00:00», «2019-09-20T00:00:00», «2019-09-23T00:00:00», «2019-09-24T00:00:00», «2019-09-25T00:00:00», «2019-09-26T00:00:00», «2019-09-27T00:00:00», «2019-09-30T00:00:00», «2019-10-01T00:00:00», «2019-10-02T00:00:00», «2019-10-03T00:00:00», «2019-10-04T00:00:00», «2019-10-07T00:00:00», «2019-10-08T00:00:00», «2019-10-09T00:00:00», «2019-10-10T00:00:00», «2019-10-11T00:00:00», «2019-10-14T00:00:00», «2019-10-15T00:00:00», «2019-10-16T00:00:00», «2019-10-17T00:00:00», «2019-10-18T00:00:00», «2019-10-21T00:00:00», «2019-10-22T00:00:00», «2019-10-23T00:00:00», «2019-10-24T00:00:00», «2019-10-25T00:00:00», «2019-10-28T00:00:00», «2019-10-29T00:00:00», «2019-10-30T00:00:00», «2019-10-31T00:00:00», «2019-11-01T00:00:00», «2019-11-04T00:00:00», «2019-11-05T00:00:00», «2019-11-06T00:00:00», «2019-11-07T00:00:00», «2019-11-08T00:00:00», «2019-11-11T00:00:00», «2019-11-12T00:00:00», «2019-11-13T00:00:00», «2019-11-14T00:00:00», «2019-11-15T00:00:00», «2019-11-18T00:00:00», «2019-11-19T00:00:00», «2019-11-20T00:00:00», «2019-11-21T00:00:00», «2019-11-22T00:00:00», «2019-11-25T00:00:00», «2019-11-26T00:00:00», «2019-11-27T00:00:00», «2019-11-29T00:00:00», «2019-12-02T00:00:00», «2019-12-03T00:00:00», «2019-12-04T00:00:00», «2019-12-05T00:00:00», «2019-12-06T00:00:00», «2019-12-09T00:00:00», «2019-12-10T00:00:00», «2019-12-11T00:00:00», «2019-12-12T00:00:00», «2019-12-13T00:00:00», «2019-12-16T00:00:00», «2019-12-17T00:00:00», «2019-12-18T00:00:00», «2019-12-19T00:00:00», «2019-12-20T00:00:00», «2019-12-23T00:00:00», «2019-12-24T00:00:00», «2019-12-26T00:00:00», «2019-12-27T00:00:00», «2019-12-30T00:00:00», «2019-12-31T00:00:00», «2020-01-02T00:00:00», «2020-01-03T00:00:00», «2020-01-06T00:00:00», «2020-01-07T00:00:00», «2020-01-08T00:00:00», «2020-01-09T00:00:00», «2020-01-10T00:00:00», «2020-01-13T00:00:00», «2020-01-14T00:00:00», «2020-01-15T00:00:00», «2020-01-16T00:00:00», «2020-01-17T00:00:00», «2020-01-21T00:00:00», «2020-01-22T00:00:00», «2020-01-23T00:00:00», «2020-01-24T00:00:00», «2020-01-27T00:00:00», «2020-01-28T00:00:00», «2020-01-29T00:00:00», «2020-01-30T00:00:00», «2020-01-31T00:00:00», «2020-02-03T00:00:00», «2020-02-04T00:00:00», «2020-02-05T00:00:00», «2020-02-06T00:00:00», «2020-02-07T00:00:00», «2020-02-10T00:00:00», «2020-02-11T00:00:00», «2020-02-12T00:00:00», «2020-02-13T00:00:00», «2020-02-14T00:00:00», «2020-02-18T00:00:00», «2020-02-19T00:00:00», «2020-02-20T00:00:00», «2020-02-21T00:00:00», «2020-02-24T00:00:00», «2020-02-25T00:00:00», «2020-02-26T00:00:00», «2020-02-27T00:00:00», «2020-02-28T00:00:00», «2020-03-02T00:00:00», «2020-03-03T00:00:00», «2020-03-04T00:00:00», «2020-03-05T00:00:00», «2020-03-06T00:00:00», «2020-03-09T00:00:00», «2020-03-10T00:00:00», «2020-03-11T00:00:00», «2020-03-12T00:00:00», «2020-03-13T00:00:00», «2020-03-16T00:00:00», «2020-03-17T00:00:00», «2020-03-18T00:00:00», «2020-03-19T00:00:00», «2020-03-20T00:00:00», «2020-03-23T00:00:00», «2020-03-24T00:00:00», «2020-03-25T00:00:00», «2020-03-26T00:00:00», «2020-03-27T00:00:00», «2020-03-30T00:00:00», «2020-03-31T00:00:00», «2020-04-01T00:00:00», «2020-04-02T00:00:00», «2020-04-03T00:00:00», «2020-04-06T00:00:00», «2020-04-07T00:00:00», «2020-04-08T00:00:00», «2020-04-09T00:00:00», «2020-04-13T00:00:00», «2020-04-14T00:00:00», «2020-04-15T00:00:00», «2020-04-16T00:00:00», «2020-04-17T00:00:00», «2020-04-20T00:00:00», «2020-04-21T00:00:00», «2020-04-22T00:00:00», «2020-04-23T00:00:00», «2020-04-24T00:00:00», «2020-04-27T00:00:00», «2020-04-28T00:00:00», «2020-04-29T00:00:00», «2020-04-30T00:00:00», «2020-05-01T00:00:00», «2020-05-04T00:00:00», «2020-05-05T00:00:00», «2020-05-06T00:00:00», «2020-05-07T00:00:00», «2020-05-08T00:00:00», «2020-05-11T00:00:00», «2020-05-12T00:00:00», «2020-05-13T00:00:00», «2020-05-14T00:00:00», «2020-05-15T00:00:00», «2020-05-18T00:00:00», «2020-05-19T00:00:00», «2020-05-20T00:00:00», «2020-05-21T00:00:00», «2020-05-22T00:00:00», «2020-05-26T00:00:00», «2020-05-27T00:00:00», «2020-05-28T00:00:00», «2020-05-29T00:00:00», «2020-06-01T00:00:00», «2020-06-02T00:00:00», «2020-06-03T00:00:00», «2020-06-04T00:00:00», «2020-06-05T00:00:00», «2020-06-08T00:00:00», «2020-06-09T00:00:00», «2020-06-10T00:00:00», «2020-06-11T00:00:00», «2020-06-12T00:00:00», «2020-06-15T00:00:00», «2020-06-16T00:00:00», «2020-06-17T00:00:00», «2020-06-18T00:00:00», «2020-06-19T00:00:00», «2020-06-22T00:00:00», «2020-06-23T00:00:00», «2020-06-24T00:00:00», «2020-06-25T00:00:00», «2020-06-26T00:00:00», «2020-06-29T00:00:00», «2020-06-30T00:00:00», «2020-07-01T00:00:00», «2020-07-02T00:00:00», «2020-07-06T00:00:00», «2020-07-07T00:00:00», «2020-07-08T00:00:00», «2020-07-09T00:00:00», «2020-07-10T00:00:00», «2020-07-13T00:00:00», «2020-07-14T00:00:00», «2020-07-15T00:00:00», «2020-07-16T00:00:00», «2020-07-17T00:00:00», «2020-07-20T00:00:00», «2020-07-21T00:00:00», «2020-07-22T00:00:00», «2020-07-23T00:00:00», «2020-07-24T00:00:00», «2020-07-27T00:00:00», «2020-07-28T00:00:00», «2020-07-29T00:00:00», «2020-07-30T00:00:00», «2020-07-31T00:00:00», «2020-08-03T00:00:00», «2020-08-04T00:00:00», «2020-08-05T00:00:00», «2020-08-06T00:00:00», «2020-08-07T00:00:00», «2020-08-10T00:00:00», «2020-08-11T00:00:00», «2020-08-12T00:00:00», «2020-08-13T00:00:00», «2020-08-14T00:00:00», «2020-08-17T00:00:00», «2020-08-18T00:00:00», «2020-08-19T00:00:00»

], «y»: [

0.9895256389861273, 1.0017793894211755, 1.0048832833228079, 1.0006034797616892, 0.990388822976446, 0.997344110107666, 0.9911458314729505, 0.9932570321455275, 0.9957849516009342, 1.0036608949066759, 0.9957855278173313, 0.9957577479264946, 1.0078933609902094, 1.0064394774272056, 1.0143531688250267, 1.0345075845668381, 1.0421212596591138, 1.0445334483042656, 1.0528271220143304, 1.050209300374892, 1.0488689935083475, 1.048426764568558, 1.047134377222862, 1.0519097845153655, 1.0565736914544321, 1.057702600274097, 1.0646210334849142, 1.0593390615570144, 1.0733205016996739, 1.1276266313059713, 1.1352802487331142, 1.1307483595482966, 1.137872598324513, 1.1302652118787733, 1.12218255093805, 1.1256890508701234, 1.132436519996679, 1.1313905115122886, 1.1273599648472303, 1.133493910995514, 1.125357331179335, 1.1151177381530297, 1.116097509322945, 1.1157240490840241, 1.0956303629714894, 1.109112080880198, 1.1046951401283585, 1.117908815053221, 1.1207367984813281, 1.1235166477391765, 1.1212157282204207, 1.1209980126914463, 1.113769729756972, 1.1167823260691612, 1.120867854693125, 1.1304323616062684, 1.128716829898094, 1.1161631949152817, 1.1387023123222306, 1.1387332160529582, 1.1349536978695216, 1.1224218180460064, 1.1255723284427777, 1.1094761868090925, 1.1232680890159636, 1.124091393624027, 1.1354477690210338, 1.1262462730479388, 1.107023419055598, 1.1185339997938524, 1.1246392093230337, 1.1333573005926483, 1.1314887000123475, 1.1334584279603963, 1.1436960558847178, 1.138615970886576, 1.1267888754109785, 1.1179319801951062, 1.1180454778165014, 1.1059403513730182, 1.0849889364533074, 1.0831587800191487, 1.0912666482385907, 1.0955252693320496, 1.0803415840877373, 1.0927482363818921, 1.0614429338046085, 1.0603480080478538, 1.0525207002164843, 1.0490593707113527, 1.0710244464602172, 1.0663388609295443, 1.0741846220306326, 1.0601561045039574, 1.065223614918445, 1.099904692272134, 1.0918492799708257, 1.0719330528674476, 1.0660870141980021, 1.0724897025187163, 1.0552483268067079, 1.0550564568955954, 1.0496646327247692, 1.0497608465459618, 1.0753657371959326, 1.0839371692078628, 1.099805802126643, 1.1154390473630098, 1.1144800856812032, 1.1108925521986124, 1.1164658762268276, 1.099166276574417, 1.1019367322066114, 1.1073534270010037, 1.0986013968657093, 1.0937922242215998, 1.1144655409989366, 1.1184014939936648, 1.1112998558620266, 1.1061996527968037, 1.0984325820443268, 1.105397102214622, 1.1208420962423622, 1.111934139456105, 1.123095435476128, 1.1228153642250642, 1.130333950274721, 1.139768157635528, 1.1457203062082515, 1.1349760509012017, 1.1362480038598974, 1.1383498659345965, 1.135261277121615, 1.1388285268871534, 1.1323078322954159, 1.144637884268869, 1.1528436995244455, 1.1534383419138587, 1.1575001805844278, 1.1540157640552398, 1.1423966869074262, 1.1485909867486896, 1.1408919181247583, 1.141582276233004, 1.1413842663007172, 1.1441507363661758, 1.154346669941584, 1.1549248762910809, 1.1526991578494006, 1.159177024895236, 1.1596771790800198, 1.1537963531825353, 1.1526449421158826, 1.1155441321157076, 1.1213610929528555, 1.1167042949650485, 1.1098558786419643, 1.092370581433904, 1.0894240263491526, 1.0928348658206155, 1.0854660830025602, 1.0838129843004438, 1.0833647710843952, 1.0902665187815404, 1.0864213079497536, 1.0977541201164958, 1.0965209998700447, 1.0979553684259955, 1.0964924859926986, 1.1087573479169441, 1.0997472167009013, 1.1031452125235135, 1.1068865127987515, 1.1126933589050552, 1.1086651030478454, 1.124838367945608, 1.1347946417972905, 1.132715814775981, 1.136248525124339, 1.1428667622775577, 1.1374135512093118, 1.1333808318028322, 1.128948106308392, 1.1314494566528344, 1.131652760050269, 1.1302942521910044, 1.1275711321974173, 1.1270920088650684, 1.1130186382254879, 1.1112722385284353, 1.1076457775309527, 1.1165087710360135, 1.1126746680824404, 1.1090550678456719, 1.1191306522676348, 1.1189280432942923, 1.1295325801571796, 1.101870444597188, 1.087568144714609, 1.0998234970584937, 1.110148370940651, 1.1174545336014194, 1.1177099715062313, 1.1163109001170384, 1.1211604090626683, 1.1215121988436774, 1.13231417900761, 1.135793397716249, 1.1416378716588111, 1.1453580180018237, 1.1495926822698326, 1.1497180864661118, 1.1541451392477737, 1.1472094688994712, 1.1774817310547325, 1.1761379416469813, 1.182255619346388, 1.1825831819310602, 1.1814695484052085, 1.1844813311624822, 1.1860986830817082, 1.192251132641896, 1.1962094878555734, 1.1973971542249389, 1.2022189867930355, 1.2074378368792509, 1.2135315050775595, 1.2165523011260426, 1.2179134093087338, 1.2158430725939366, 1.2153565699189104, 1.2125769797254071, 1.2172482107799687, 1.2170522389932947, 1.2155802758721033, 1.2118759102688064, 1.2131505552938402, 1.2133078660634455, 1.2166078612092435, 1.220081370474299, 1.2225345571808173, 1.221253294756388, 1.2223470421939688, 1.2195013920453042, 1.2171768823242717, 1.2213579996374804, 1.2247399866819333, 1.2223485807326042, 1.2208175126853622, 1.2122930217505232, 1.2001223009929174, 1.2117461947464074, 1.211943016294392, 1.2154827058873083, 1.228749964270988, 1.2246161176427188, 1.2213671211896977, 1.2204345899248525, 1.2270547743616256, 1.2293247407315413, 1.222921707035941, 1.2184411528732828, 1.2291669562968432, 1.2313301695935823, 1.2251931677103793, 1.2292607878019128, 1.2274163613282083, 1.2257383937662465, 1.231056482423061, 1.2321308314154837, 1.2338320319806007, 1.2342229851615918, 1.229519293735414, 1.224126960189123, 1.220859642810548, 1.2258720993202126, 1.2255845656977968, 1.2286930740020165, 1.2255811480689112, 1.2217624053983482, 1.2413370845269722, 1.2560175482229625, 1.25759867525065, 1.2544173023193852, 1.2465558889848203, 1.2437415798550224, 1.2451942026891716, 1.2416428458390398, 1.2387721395058116, 1.237338535231214, 1.2288232592411303, 1.2473076425980905, 1.2481272029134212, 1.246459919995642, 1.2260064749530821, 1.2362710000062012, 1.2240186210533124, 1.235306988291088, 1.2463537950906303, 1.239652842943706, 1.239420048167004, 1.244043697821375, 1.2453810825152725, 1.2386801500979816, 1.2418235946076128, 1.2426106853524819, 1.2451117228989192, 1.2391899640184787, 1.2276204647077786, 1.226261593872109, 1.234721546607072, 1.2322683980005642, 1.2486893800242942, 1.2462706647814619, 1.257267710307463, 1.26074321625997, 1.272334807249414, 1.2716850924293075, 1.272540409150745, 1.268801326291248, 1.2833108606099641, 1.2813425393291147, 1.2809327164144837, 1.2806159226154699, 1.278252832559788, 1.2811388242055346, 1.2766724287517925, 1.2761005071335925, 1.267061730953879, 1.2702924947046668, 1.262218572987695, 1.2639865735604512, 1.2692858915893612, 1.2684889317729986, 1.2695274443679891, 1.272073335490453, 1.2645972015000608, 1.2640918733822333, 1.264192017575307, 1.2630324848021843, 1.2625603024110021, 1.26628326556957, 1.2704668532745897, 1.2758079928044945, 1.2780652145205338, 1.2845210792728534, 1.2980458552523104, 1.2912378365677917, 1.2839667487623458, 1.283631024854505, 1.2867656482432128, 1.2919441740591409, 1.2940156453034013, 1.295237759929406, 1.2922227033543134, 1.297713018641513, 1.2962969743741874, 1.3054775553723847, 1.3111435298658858, 1.313815722544468, 1.3219094479048612, 1.322983063109657, 1.3261652928812404, 1.3254074739936499, 1.3251424996401435, 1.3260139935809394, 1.3228091736356278, 1.322330696206731, 1.3315834690057127, 1.324568203623744, 1.3264133233725437, 1.3271127725415537, 1.330714139873754, 1.332694694130921, 1.3313608626408553, 1.3329910220402126, 1.329820538829049, 1.3280152984034785, 1.3291620679218048, 1.329155687294404, 1.331937748304422, 1.3367762672856536, 1.3314113177036002, 1.3393161051066167, 1.3358897925792237, 1.33695977130016, 1.3375950919642263, 1.339185642310408, 1.3393568925573625, 1.3410669610812642, 1.3435800090115, 1.339992884840219, 1.3433748633092077, 1.3376433602286306, 1.3386087584668185, 1.3364455730686264, 1.3336298185329951, 1.3310278628933225, 1.3282011628445485, 1.3246843527126544, 1.3311043765324406, 1.3324421671604025, 1.3287267141207135, 1.333718057233878, 1.341459671124184, 1.351611746578957, 1.3563157161471462, 1.3538221512017237, 1.359158837551785, 1.3626969955494106, 1.3731158324571953, 1.3727994673541808, 1.373888532538704, 1.3690418535235571, 1.3718182388599744, 1.3793175338344497, 1.3760464952804616, 1.3773860505034912, 1.3731654884491573, 1.3742808465401912, 1.3785936948316264, 1.3911736361588587, 1.3732468395771233, 1.3590783392783097, 1.3563781700832513, 1.3629465178631226, 1.3653260698509575, 1.3629616082062594, 1.366093708140691, 1.3695340881160314, 1.3744099450703957, 1.3653981321765183, 1.3654925565113418, 1.3823144333610213, 1.383760411192527, 1.3852986085719743, 1.3847896998140867, 1.3808712030604386, 1.3626746699013366, 1.3537602318140136, 1.3637680953170506, 1.3577801123266253, 1.3545294716070388, 1.3520207752768605, 1.3639664540265044, 1.3559330216070993, 1.3572116882832506, 1.3539880268864313, 1.3625355081818193, 1.3584083673793543, 1.3455472702367692, 1.3517965174396034, 1.337323658278384, 1.3402687164959626, 1.3350261486984127, 1.3421180154247843, 1.3380556321289852, 1.343907146114309, 1.35002914160961, 1.3517652513939324, 1.356308998007095, 1.3650357675225777, 1.3741742224783589, 1.3809822505346583, 1.381600041351542, 1.3873957728938429, 1.386454455950293, 1.3833105648337538, 1.3840727646275242, 1.3922151678971513, 1.3845846833393876, 1.3712713237739, 1.367292450240752, 1.3650650803591544, 1.3689190079457492, 1.3783172001418804, 1.3790062152117548, 1.3874689094459725, 1.3884514484746215, 1.393053973955303, 1.3925453542261694, 1.3801273105644787, 1.3924539494920207, 1.40215235660028, 1.404899855598906, 1.4069553570087658, 1.3947146902669807, 1.3909165884659862, 1.3903660360375762, 1.4013430309422632, 1.4017679629911717, 1.4004213862393362, 1.401406713424613, 1.4036596936448567, 1.4072329493830507, 1.4158215305246695, 1.4202578129475882, 1.413021434812126, 1.4032522764221855, 1.4014512974561382, 1.4055983674100172, 1.396272633043229, 1.4078396629002083, 1.408140501555578, 1.4097659993547789, 1.4045388853007756, 1.4149952560205652, 1.4131356850839296, 1.4160932031848124, 1.4084721317740025, 1.400526271852367, 1.402870912380377, 1.3954727006930612, 1.400844884281237, 1.4019612769410865, 1.4037675401506835, 1.4092775136593625, 1.4078786218065658, 1.4053623392181747, 1.3995801945806603, 1.4096393104008726, 1.4108994038055427, 1.4151350746675442, 1.4126428174552736, 1.4160693372463102, 1.4173454017223748, 1.4204685000182695, 1.4269669501110918, 1.4260808409764019, 1.42567294558747, 1.4244172486338909, 1.4303732970861278, 1.4324945542737213, 1.4373603643856565, 1.4371859426853522, 1.4390347157892913, 1.4770023906714624, 1.48254320021007, 1.4831802937526084, 1.4829085217818845, 1.4892889122487776, 1.4944911064144535, 1.4975872750453618, 1.499500306816601, 1.5010175407795912, 1.4929084219975255, 1.4913739596970501, 1.489462490973685, 1.4875121788500365, 1.4839915545586382, 1.4934005867546831, 1.4857404148616549, 1.4917412487506785, 1.5016247651387087, 1.4993671527517607, 1.4996544835926953, 1.5076580883817265, 1.51356674314759, 1.5005642227241047, 1.5050830337991947, 1.5068267896269925, 1.4853099844064388, 1.486988688489496, 1.494725918580288, 1.4860231440668636, 1.4953273804795053, 1.5068084001153839, 1.5080622502752679, 1.5082020061691959, 1.5040777080565628, 1.5182771972419602, 1.517729286812605, 1.512885540965871, 1.5151559155505367, 1.514453431865944, 1.5146529545722296, 1.5086124011661999, 1.5101157788570372, 1.5100244662115423, 1.5067671709726136, 1.5124097264267928, 1.5168607291198184, 1.5212733085520793, 1.5319415088906516, 1.5330930854835112, 1.5317597678760735, 1.5293489000721392, 1.5284159832037536, 1.5431561009009473, 1.535020184732503, 1.5488447822847078, 1.5489430795646624, 1.5468083084186102, 1.5535830356415383, 1.558009977123152, 1.556723885439641, 1.5551135917792285, 1.5642043794438591, 1.5645930306050784, 1.5562766001420907, 1.5667309188094192, 1.5667157820214974, 1.545569257407126, 1.5191468614091197, 1.55414833723613, 1.5401974163295702, 1.5128399628432858, 1.5339457281261295, 1.5471252878492283, 1.5554692915955948, 1.5619744477800044, 1.585450388930987, 1.5802542557376327, 1.5855985204593326, 1.5740397787828793, 1.575942549447201, 1.5927700377342149, 1.6086975663193859, 1.6040972673851124, 1.6041878408203833, 1.5932710893892024, 1.5944262103527012, 1.5966524836911258, 1.590988350694781, 1.5899747391696382, 1.5943570240814993, 1.6130592946174913, 1.6154469579079613, 1.5959102491354966, 1.5937406345491076, 1.595984818128431, 1.5944021178404213, 1.581928360792163, 1.583732835651515, 1.5751879779377231, 1.5561632307550801, 1.5394397364656018, 1.594875176281649, 1.5599273157120999, 1.553207513391832, 1.569212386947513, 1.5454199765166876, 1.551448639401339, 1.5657954836473993, 1.567523478684484, 1.552252554000967, 1.5580049797430804, 1.5746332878409952, 1.5697294871596972, 1.5850615467952591, 1.5796767665160465, 1.5862611491565084, 1.602972271612439, 1.6026736697319985, 1.5976040322851268, 1.5828911155195717, 1.5853122006154874, 1.5712851023584598, 1.567499225920601, 1.5750870367829142, 1.5872796259097304, 1.577594788414243, 1.593607759697412, 1.5878963664597077, 1.596776808658759, 1.6130706467305491, 1.6231936348742069, 1.621558719351162, 1.6293071691496899, 1.6359366123584942, 1.6293199521534651, 1.6319086187101177, 1.6241790594951786, 1.6222965738356274, 1.603487149698169, 1.602842816723678, 1.6155384578476732, 1.6143018633585082, 1.6225663579811418, 1.6186770318591504, 1.6182241343931416, 1.616025783557945, 1.6182456399018175, 1.617738967568235, 1.636543947385445, 1.641647890887525, 1.6443771741189943, 1.6466841619400012, 1.6334649846569702, 1.6340372290117637, 1.6307697417131894, 1.6326497690287722, 1.6280870470109738, 1.6353434675418643, 1.6212848617564084, 1.6240342712121716, 1.619488746298137, 1.62645755083631, 1.618954376527321, 1.6155163120477176, 1.5968458508089414, 1.6046547335432582, 1.5966022784531777, 1.6073817251554297, 1.6073811544847467, 1.6166981306433437, 1.6083753953510498, 1.6145678272658337, 1.6248753691910518, 1.6303550953713637, 1.6322792695025656, 1.6298591407886491, 1.6496045465883487, 1.6474703174429493, 1.649807093070205, 1.653299893798748, 1.6447467762500587, 1.6435383841333375, 1.6565325503790256, 1.6684648940452964, 1.6713763009613398, 1.6931771529303914, 1.684546451689973, 1.6707185359343184, 1.657381124288097, 1.6610705188501715, 1.6732226236145011, 1.6845408701651445, 1.6880426293474697, 1.6897956132246161, 1.691024466019452, 1.6973453003448509, 1.701303845798452, 1.6964848226029654, 1.6934112252504074, 1.7017097534636272, 1.695016312113943, 1.7021386195121864, 1.7072014692688569, 1.7008996865308206, 1.6900359243631276, 1.7005271001297209, 1.7057388874772585, 1.7104467411177748, 1.7211315810791519, 1.7275508850275403, 1.7442102582999721, 1.746440779479718, 1.7541660466960414, 1.7547450661885564, 1.7290557304776644, 1.7286385963669155, 1.7234299111925369, 1.7283595665378455, 1.7480156230564738, 1.7453691723193727, 1.7592681276626738, 1.7637696377557484, 1.7510349101728355, 1.7580466035382196, 1.7463786910197279, 1.7590135210695919, 1.7640586448886335, 1.7700662507400746, 1.7693350727409365, 1.7622539138017288, 1.7682188708516224, 1.774509197504844, 1.784644052274202, 1.7872759832685352, 1.7899436940022682, 1.7743035413872916, 1.7662314602379225, 1.7591984955127684, 1.7720447799658279, 1.7261668756414201, 1.7211397053541466, 1.753804205361308, 1.7310670032628879, 1.7545212745772982, 1.7512819644159496, 1.7364309475795472, 1.743993052676327, 1.7524322575142173, 1.739435846040843, 1.6978483729117553, 1.7454660838359575, 1.7367998439997323, 1.708879534649164, 1.7114274667278075, 1.7388020327967748, 1.7259964673380521, 1.7165334263127714, 1.7219966543304663, 1.723682711237253, 1.7546040292081266, 1.7528488187726747, 1.7347650538021704, 1.7084315177027327, 1.7059414872470589, 1.6895919974492168, 1.7136934980981857, 1.714200896927941, 1.6872122688003943, 1.6588189563261646, 1.6640929774924713, 1.66019357126402, 1.6845482294501406, 1.6899172764113752, 1.7177459922169473, 1.713505738467436, 1.7176957897290117, 1.7303750217189546, 1.70377278110482, 1.7111229329518212, 1.677488915903538, 1.700783989585455, 1.7074855218424188, 1.709466421890639, 1.717020375010894, 1.6899926729242318, 1.671662565240548, 1.6826605967333053, 1.6753187331888608, 1.6601283927175547, 1.639554825137463, 1.6083866029820988, 1.6532020074000158, 1.653528665571118, 1.6484534105660051, 1.6567059802824031, 1.6537067189574348, 1.6142177754994982, 1.645601171435987, 1.639362415612059, 1.6443260362093968, 1.6512729394221621, 1.6447372219589422, 1.6387718731021617, 1.6345434199205904, 1.6575159997998237, 1.6606067447882142, 1.6647334140846175, 1.6768335332919275, 1.6652151852096313, 1.6762316974109697, 1.6717207039364153, 1.6790116571325162, 1.6587478555872492, 1.6421599507708062, 1.6692452491092813, 1.6570622211409511, 1.6414363567620613, 1.6662352420630302, 1.674954593647734, 1.6704991497329347, 1.6619046670846898, 1.6632298725518568, 1.6583989050871408, 1.6675237941298477, 1.6639926715576514, 1.668675542380012, 1.6780807738479138, 1.6784640965397764, 1.676371720655765, 1.6931213013003126, 1.7062605124434205, 1.713306996663522, 1.7212221453387104, 1.7232910931496366, 1.7208936503930954, 1.7181554652966937, 1.7203556984530046, 1.7202280039269238, 1.7256165902567389, 1.715182963929146, 1.7184530477730202, 1.7399408147278062, 1.7476881740051353, 1.7555022450931181, 1.7577567614090222, 1.7705453595048044, 1.7839328966609251, 1.782295824884645, 1.7824943392157409, 1.8049766473321267, 1.7859088465238693, 1.7868912323467212, 1.7854688433117063, 1.782248980341286, 1.7824143208661354, 1.7886737250267675, 1.7969668295468761, 1.8030807380534495, 1.8112176006198974, 1.8111725743870033, 1.8125768885454205, 1.81787618335335, 1.8153618966764415, 1.8207089794518196, 1.8196968771120001, 1.8231805731725539, 1.824797161167931, 1.8251871144854075, 1.8385641587104289, 1.850093479328379, 1.8523757713831603, 1.8628861879604097, 1.8612323746919588, 1.8848524727568572, 1.8820984291595142, 1.8822902380528437, 1.882837758373347, 1.8808352162042987, 1.8644013715567314, 1.8803438356204556, 1.8728026435821512, 1.858539424178268, 1.8588695760626968, 1.8539796992812916, 1.8624371232306451, 1.8333254903506124, 1.8424038799156077, 1.8563490285075932, 1.885376380195206, 1.8875686124682152, 1.8714069016600154, 1.8764298306873326, 1.8767299748226647, 1.86516142512283, 1.8651517840086684, 1.8658236906920018, 1.857422702670862, 1.8653749733258755, 1.8491834586327514, 1.824818441134749, 1.84710725910148, 1.8698640941005429, 1.885232463286996, 1.9137302033592107, 1.9253188701075097, 1.9303092647355364, 1.9212008623812573, 1.9269326393996917, 1.923605480440708, 1.9269548065645838, 1.9449692022040959, 1.9422303637836706, 1.9502716040298487, 1.947604550733695, 1.9569041317253717, 1.9282378420387665, 1.9404740338936461, 1.9340032816547517, 1.9206467266113858, 1.9289565272167217, 1.941893081664801, 1.9482188372601095, 1.9466220119668922, 1.9433920190698764, 1.9390684882647242, 1.9483881396397105, 1.9512804206858838, 1.956665121276267, 1.9579516501481775, 1.948579638747987, 1.9428241991806992, 1.9447762179523922, 1.9443496533799844, 1.9601394687747704, 1.9665220151392144, 1.9673917386956428, 1.9697089031212809, 1.9749374470622159, 1.9770900085465155, 1.9687669847125253, 1.948310177889436, 1.9620152155714086, 1.9453148194389622, 1.912308826767925, 1.9323612260504033, 1.9356263652086743, 1.9500822564636595, 1.9426053976785487, 1.9337240055743259, 1.954818620734847, 1.9345320288240426, 1.9124988357771333, 1.929090391425891, 1.9455904689339387, 1.937949814236229, 1.9477955894642627, 1.9357662058997993, 1.9065769810635027, 1.9201637994629637, 1.9205007173854511, 1.9189447382948441, 1.9321124295694327, 1.928703285913134, 1.9185953271971055, 1.9282216247565667, 1.9400059097149949, 1.937137863060603, 1.9308669175938036, 1.926680951397133, 1.929100035305769, 1.9372698070200598, 1.9339817818821956, 1.9283186794573528, 1.9324502337559777, 1.9435581376757056, 1.9559019724359836, 1.9462170383332482, 1.9456567658729556, 1.9416810179544681, 1.9561959931296447, 1.9530153977814981, 1.948795345549087, 1.960622318613078, 1.9471393656177503, 1.9324869509285836, 1.9394097671776325, 1.952447652626145, 1.9482160374072899, 1.9406417727504839, 1.95532077461205, 1.956408014845251, 1.9589209685550184, 1.9544970764695573, 1.9615870919293663, 1.961861888789666, 1.958972406075536, 1.9519570592344333, 1.9624578127757513, 1.952169800658407, 1.9574202559687994, 1.9601650860150661, 1.9635650486891472, 1.9847459930056974, 1.9723159399223265, 1.9864839626225999, 1.998135184679959, 1.990022181779027, 1.9930922815692511, 1.9992620097984604, 1.997456355954158, 2.0014808647095155, 2.008000581927904, 2.0061965803141963, 2.0108792939406377, 2.0315541788845826, 2.0228155896307682, 2.031113376839538, 2.0390726048113788, 2.0413187541358937, 2.0486169583663836, 2.053929148381429, 2.0453179734081086, 2.0486331109357097, 2.049910035293867, 2.0479835249950287, 2.0463351609071685, 2.0393732948891965, 2.0371889260692484, 2.0345223518127957, 2.039912574515919, 2.0477046711674896, 2.0463702780655626, 2.0495809894092876, 2.05286855005276, 2.0500355208687027, 2.0614335884609227, 2.062309802533766, 2.0579602281477065, 2.041589234592108, 2.0497602852770838, 2.0524112449252825, 2.06268261596459, 2.0630248203420085, 2.0735583695214848, 2.073919307281013, 2.0742957828335187, 2.0735893964428134, 2.0822903307332576, 2.081341911559963, 2.086575754550539, 2.08334219313433, 2.1009642431351696, 2.107475827998937, 2.1091901514514073, 2.1187795568834344, 2.105860875887184, 2.111335043919939, 2.122409857092578, 2.128323510424779, 2.1309526611800473, 2.1289204833306243, 2.1332057275967258, 2.1375152326694975, 2.132041994222921, 2.1451101988400914, 2.1621658820304424, 2.1846318407411816, 2.1617914881874944, 2.1681540046908214, 2.188786110177609, 2.1853794366187618, 2.212120008362226, 2.2194503564741317, 2.233774614425411, 2.2045367835098966, 2.2077269960452814, 2.192118612532311, 2.1995889058985476, 2.20289663748475, 2.1972957345581916, 2.1808317754653133, 2.1620541122887658, 2.1426068311897657, 2.149257815548015, 2.164106805217412, 2.1152898662012016, 2.137738648170551, 2.1935432495742457, 2.1660774167345207, 2.184024222123333, 2.170889538065544, 2.1786844982733533, 2.18820448752258, 2.2178512882532835, 2.1991400857721173, 2.1617222840145085, 2.2635900452553988, 2.201555762685758, 2.28030055242348, 2.355715302133347, 2.3242924692245284, 2.2634273834686445, 2.2580620539533287, 2.25134900993861, 2.212130589213677, 2.2468607063525012, 2.233049237848524, 2.2908316968255913, 2.28638461361241, 2.2899889467287986, 2.3390771591590673, 2.333786994029834, 2.35321846073475, 2.2957153896122726, 2.261251879423723, 2.2287500203737367, 2.262112905573237, 2.3053051419727995, 2.323601929056136, 2.364661302370227, 2.3183063077305857, 2.3060725099191806, 2.2989972627553446, 2.32540753286031, 2.3103484329751067, 2.3212939864982345, 2.297887508436041, 2.273800046885348, 2.2729316246419753, 2.313667708708078, 2.3180887760349713, 2.3397713733525665, 2.339660215159442, 2.341312259988851, 2.3308832383044957, 2.323695892523966, 2.3536865834567573, 2.345209841511774, 2.349452749964968, 2.346738587045102, 2.3532380042971135, 2.322920568448275, 2.3172057960767662, 2.3194257823843394, 2.30345636289127, 2.301410318491704, 2.2653410742402422, 2.2659285533642013, 2.271040489554654, 2.29371428146546, 2.2700731867844466, 2.2759934038068392, 2.2504633223060138, 2.2376089058017525, 2.233117949635432, 2.2295237929033878, 2.26224322872307, 2.3103215296137014, 2.293646281395845, 2.2809129008033264, 2.2829202102406305, 2.299025720937484, 2.310139126611629, 2.314601829066214, 2.314313439619013, 2.341415126619197, 2.3574799995122993, 2.3630986155200855, 2.3720010138515697, 2.3727735786842485, 2.3679366868639433, 2.383534914612189, 2.383683611179068, 2.383665166778269, 2.3987170285697395, 2.3998307595923873, 2.423234277429401, 2.461336923164264, 2.439692777885829, 2.414915091140169, 2.4073566375346345, 2.376843929596789, 2.360735376537439, 2.3607965136956373, 2.4059740322330696, 2.390753621564694, 2.3989204306706142, 2.348174492457019, 2.351917358554765, 2.3740117115312187, 2.3513609521301744, 2.3669030507133697, 2.382459215601732, 2.429940922930531, 2.4722382931924445, 2.453654480183073, 2.438193522277004, 2.46534356530072, 2.443953990299905, 2.4206223507608438, 2.389089530755435, 2.424653048985283, 2.4053849066596316, 2.4043443325123897, 2.373172553090242, 2.3799779260976113, 2.3855158629913915

]

}

], «layout»: {

«showlegend»: true, «template»: {

«data»: {
«bar»: [
{
«error_x»: {

«color»: «#2a3f5f»

}, «error_y»: {

«color»: «#2a3f5f»

}, «marker»: {

«line»: {

«color»: «#E5ECF6», «width»: 0.5

}

}, «type»: «bar»

}

], «barpolar»: [

{
«marker»: {
«line»: {

«color»: «#E5ECF6», «width»: 0.5

}

}, «type»: «barpolar»

}

], «carpet»: [

{
«aaxis»: {

«endlinecolor»: «#2a3f5f», «gridcolor»: «white», «linecolor»: «white», «minorgridcolor»: «white», «startlinecolor»: «#2a3f5f»

}, «baxis»: {

«endlinecolor»: «#2a3f5f», «gridcolor»: «white», «linecolor»: «white», «minorgridcolor»: «white», «startlinecolor»: «#2a3f5f»

}, «type»: «carpet»

}

], «choropleth»: [

{
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}, «type»: «choropleth»

}

], «contour»: [

{
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}, «colorscale»: [

[

0, «#0d0887»

], [

0.1111111111111111, «#46039f»

], [

0.2222222222222222, «#7201a8»

], [

0.3333333333333333, «#9c179e»

], [

0.4444444444444444, «#bd3786»

], [

0.5555555555555556, «#d8576b»

], [

0.6666666666666666, «#ed7953»

], [

0.7777777777777778, «#fb9f3a»

], [

0.8888888888888888, «#fdca26»

], [

1, «#f0f921»

]

], «type»: «contour»

}

], «contourcarpet»: [

{
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}, «type»: «contourcarpet»

}

], «heatmap»: [

{
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}, «colorscale»: [

[

0, «#0d0887»

], [

0.1111111111111111, «#46039f»

], [

0.2222222222222222, «#7201a8»

], [

0.3333333333333333, «#9c179e»

], [

0.4444444444444444, «#bd3786»

], [

0.5555555555555556, «#d8576b»

], [

0.6666666666666666, «#ed7953»

], [

0.7777777777777778, «#fb9f3a»

], [

0.8888888888888888, «#fdca26»

], [

1, «#f0f921»

]

], «type»: «heatmap»

}

], «heatmapgl»: [

{
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}, «colorscale»: [

[

0, «#0d0887»

], [

0.1111111111111111, «#46039f»

], [

0.2222222222222222, «#7201a8»

], [

0.3333333333333333, «#9c179e»

], [

0.4444444444444444, «#bd3786»

], [

0.5555555555555556, «#d8576b»

], [

0.6666666666666666, «#ed7953»

], [

0.7777777777777778, «#fb9f3a»

], [

0.8888888888888888, «#fdca26»

], [

1, «#f0f921»

]

], «type»: «heatmapgl»

}

], «histogram»: [

{
«marker»: {
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}

}, «type»: «histogram»

}

], «histogram2d»: [

{
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}, «colorscale»: [

[

0, «#0d0887»

], [

0.1111111111111111, «#46039f»

], [

0.2222222222222222, «#7201a8»

], [

0.3333333333333333, «#9c179e»

], [

0.4444444444444444, «#bd3786»

], [

0.5555555555555556, «#d8576b»

], [

0.6666666666666666, «#ed7953»

], [

0.7777777777777778, «#fb9f3a»

], [

0.8888888888888888, «#fdca26»

], [

1, «#f0f921»

]

], «type»: «histogram2d»

}

], «histogram2dcontour»: [

{
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}, «colorscale»: [

[

0, «#0d0887»

], [

0.1111111111111111, «#46039f»

], [

0.2222222222222222, «#7201a8»

], [

0.3333333333333333, «#9c179e»

], [

0.4444444444444444, «#bd3786»

], [

0.5555555555555556, «#d8576b»

], [

0.6666666666666666, «#ed7953»

], [

0.7777777777777778, «#fb9f3a»

], [

0.8888888888888888, «#fdca26»

], [

1, «#f0f921»

]

], «type»: «histogram2dcontour»

}

], «mesh3d»: [

{
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}, «type»: «mesh3d»

}

], «parcoords»: [

{
«line»: {
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}

}, «type»: «parcoords»

}

], «pie»: [

{

«automargin»: true, «type»: «pie»

}

], «scatter»: [

{
«marker»: {
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}

}, «type»: «scatter»

}

], «scatter3d»: [

{
«line»: {
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}

}, «marker»: {

«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}

}, «type»: «scatter3d»

}

], «scattercarpet»: [

{
«marker»: {
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}

}, «type»: «scattercarpet»

}

], «scattergeo»: [

{
«marker»: {
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}

}, «type»: «scattergeo»

}

], «scattergl»: [

{
«marker»: {
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}

}, «type»: «scattergl»

}

], «scattermapbox»: [

{
«marker»: {
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}

}, «type»: «scattermapbox»

}

], «scatterpolar»: [

{
«marker»: {
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}

}, «type»: «scatterpolar»

}

], «scatterpolargl»: [

{
«marker»: {
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}

}, «type»: «scatterpolargl»

}

], «scatterternary»: [

{
«marker»: {
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}

}, «type»: «scatterternary»

}

], «surface»: [

{
«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}, «colorscale»: [

[

0, «#0d0887»

], [

0.1111111111111111, «#46039f»

], [

0.2222222222222222, «#7201a8»

], [

0.3333333333333333, «#9c179e»

], [

0.4444444444444444, «#bd3786»

], [

0.5555555555555556, «#d8576b»

], [

0.6666666666666666, «#ed7953»

], [

0.7777777777777778, «#fb9f3a»

], [

0.8888888888888888, «#fdca26»

], [

1, «#f0f921»

]

], «type»: «surface»

}

], «table»: [

{
«cells»: {
«fill»: {

«color»: «#EBF0F8»

}, «line»: {

«color»: «white»

}

}, «header»: {

«fill»: {

«color»: «#C8D4E3»

}, «line»: {

«color»: «white»

}

}, «type»: «table»

}

]

}, «layout»: {

«annotationdefaults»: {

«arrowcolor»: «#2a3f5f», «arrowhead»: 0, «arrowwidth»: 1

}, «coloraxis»: {

«colorbar»: {

«outlinewidth»: 0, «ticks»: «»

}

}, «colorscale»: {

«diverging»: [
[

0, «#8e0152»

], [

0.1, «#c51b7d»

], [

0.2, «#de77ae»

], [

0.3, «#f1b6da»

], [

0.4, «#fde0ef»

], [

0.5, «#f7f7f7»

], [

0.6, «#e6f5d0»

], [

0.7, «#b8e186»

], [

0.8, «#7fbc41»

], [

0.9, «#4d9221»

], [

1, «#276419»

]

], «sequential»: [

[

0, «#0d0887»

], [

0.1111111111111111, «#46039f»

], [

0.2222222222222222, «#7201a8»

], [

0.3333333333333333, «#9c179e»

], [

0.4444444444444444, «#bd3786»

], [

0.5555555555555556, «#d8576b»

], [

0.6666666666666666, «#ed7953»

], [

0.7777777777777778, «#fb9f3a»

], [

0.8888888888888888, «#fdca26»

], [

1, «#f0f921»

]

], «sequentialminus»: [

[

0, «#0d0887»

], [

0.1111111111111111, «#46039f»

], [

0.2222222222222222, «#7201a8»

], [

0.3333333333333333, «#9c179e»

], [

0.4444444444444444, «#bd3786»

], [

0.5555555555555556, «#d8576b»

], [

0.6666666666666666, «#ed7953»

], [

0.7777777777777778, «#fb9f3a»

], [

0.8888888888888888, «#fdca26»

], [

1, «#f0f921»

]

]

}, «colorway»: [

«#636efa», «#EF553B», «#00cc96», «#ab63fa», «#FFA15A», «#19d3f3», «#FF6692», «#B6E880», «#FF97FF», «#FECB52»

], «font»: {

«color»: «#2a3f5f»

}, «geo»: {

«bgcolor»: «white», «lakecolor»: «white», «landcolor»: «#E5ECF6», «showlakes»: true, «showland»: true, «subunitcolor»: «white»

}, «hoverlabel»: {

«align»: «left»

}, «hovermode»: «closest», «mapbox»: {

«style»: «light»

}, «paper_bgcolor»: «white», «plot_bgcolor»: «#E5ECF6», «polar»: {

«angularaxis»: {

«gridcolor»: «white», «linecolor»: «white», «ticks»: «»

}, «bgcolor»: «#E5ECF6», «radialaxis»: {

«gridcolor»: «white», «linecolor»: «white», «ticks»: «»

}

}, «scene»: {

«xaxis»: {

«backgroundcolor»: «#E5ECF6», «gridcolor»: «white», «gridwidth»: 2, «linecolor»: «white», «showbackground»: true, «ticks»: «», «zerolinecolor»: «white»

}, «yaxis»: {

«backgroundcolor»: «#E5ECF6», «gridcolor»: «white», «gridwidth»: 2, «linecolor»: «white», «showbackground»: true, «ticks»: «», «zerolinecolor»: «white»

}, «zaxis»: {

«backgroundcolor»: «#E5ECF6», «gridcolor»: «white», «gridwidth»: 2, «linecolor»: «white», «showbackground»: true, «ticks»: «», «zerolinecolor»: «white»

}

}, «shapedefaults»: {

«line»: {

«color»: «#2a3f5f»

}

}, «ternary»: {

«aaxis»: {

«gridcolor»: «white», «linecolor»: «white», «ticks»: «»

}, «baxis»: {

«gridcolor»: «white», «linecolor»: «white», «ticks»: «»

}, «bgcolor»: «#E5ECF6», «caxis»: {

«gridcolor»: «white», «linecolor»: «white», «ticks»: «»

}

}, «title»: {

«x»: 0.05

}, «xaxis»: {

«automargin»: true, «gridcolor»: «white», «linecolor»: «white», «ticks»: «», «title»: {

«standoff»: 15

}, «zerolinecolor»: «white», «zerolinewidth»: 2

}, «yaxis»: {

«automargin»: true, «gridcolor»: «white», «linecolor»: «white», «ticks»: «», «title»: {

«standoff»: 15

}, «zerolinecolor»: «white», «zerolinewidth»: 2

}

}

}, «yaxis»: {

«range»: [

-0.03839383327092238, 0.4059221785918471

], «type»: «log»

}

}

}, «text/html»: [

«<div>n», » n», » n», » <div id="3782b35e-9d23-40c8-ad9d-a827c4b6e77a" class="plotly-graph-div" style="height:525px; width:100%;"></div>n», » <script type="text/javascript">n», » require(["plotly"], function(Plotly) {n», » window.PLOTLYENV=window.PLOTLYENV || {};n», » n», » if (document.getElementById("3782b35e-9d23-40c8-ad9d-a827c4b6e77a")) {n», » Plotly.newPlot(n», » „3782b35e-9d23-40c8-ad9d-a827c4b6e77a“,n», » [{"fill": "tonexty", "line": {"color": "#17BECF", "width": 3}, "name": "PnL (Equity)", "type": "scatter", "x": ["2015-09-14T00:00:00", "2015-09-15T00:00:00", "2015-09-16T00:00:00", "2015-09-17T00:00:00", "2015-09-18T00:00:00", "2015-09-21T00:00:00", "2015-09-22T00:00:00", "2015-09-23T00:00:00", "2015-09-24T00:00:00", "2015-09-25T00:00:00", "2015-09-28T00:00:00", "2015-09-29T00:00:00", "2015-09-30T00:00:00", "2015-10-01T00:00:00", "2015-10-02T00:00:00", "2015-10-05T00:00:00", "2015-10-06T00:00:00", "2015-10-07T00:00:00", "2015-10-08T00:00:00", "2015-10-09T00:00:00", "2015-10-12T00:00:00", "2015-10-13T00:00:00", "2015-10-14T00:00:00", "2015-10-15T00:00:00", "2015-10-16T00:00:00", "2015-10-19T00:00:00", "2015-10-20T00:00:00", "2015-10-21T00:00:00", "2015-10-22T00:00:00", "2015-10-23T00:00:00", "2015-10-26T00:00:00", "2015-10-27T00:00:00", "2015-10-28T00:00:00", "2015-10-29T00:00:00", "2015-10-30T00:00:00", "2015-11-02T00:00:00", "2015-11-03T00:00:00", "2015-11-04T00:00:00", "2015-11-05T00:00:00", "2015-11-06T00:00:00", "2015-11-09T00:00:00", "2015-11-10T00:00:00", "2015-11-11T00:00:00", "2015-11-12T00:00:00", "2015-11-13T00:00:00", "2015-11-16T00:00:00", "2015-11-17T00:00:00", "2015-11-18T00:00:00", "2015-11-19T00:00:00", "2015-11-20T00:00:00", "2015-11-23T00:00:00", "2015-11-24T00:00:00", "2015-11-25T00:00:00", "2015-11-27T00:00:00", "2015-11-30T00:00:00", "2015-12-01T00:00:00", "2015-12-02T00:00:00", "2015-12-03T00:00:00", "2015-12-04T00:00:00", "2015-12-07T00:00:00", "2015-12-08T00:00:00", "2015-12-09T00:00:00", "2015-12-10T00:00:00", "2015-12-11T00:00:00", "2015-12-14T00:00:00", "2015-12-15T00:00:00", "2015-12-16T00:00:00", "2015-12-17T00:00:00", "2015-12-18T00:00:00", "2015-12-21T00:00:00", "2015-12-22T00:00:00", "2015-12-23T00:00:00", "2015-12-24T00:00:00", "2015-12-28T00:00:00", "2015-12-29T00:00:00", "2015-12-30T00:00:00", "2015-12-31T00:00:00", "2016-01-04T00:00:00", "2016-01-05T00:00:00", "2016-01-06T00:00:00", "2016-01-07T00:00:00", "2016-01-08T00:00:00", "2016-01-11T00:00:00", "2016-01-12T00:00:00", "2016-01-13T00:00:00", "2016-01-14T00:00:00", "2016-01-15T00:00:00", "2016-01-19T00:00:00", "2016-01-20T00:00:00", "2016-01-21T00:00:00", "2016-01-22T00:00:00", "2016-01-25T00:00:00", "2016-01-26T00:00:00", "2016-01-27T00:00:00", "2016-01-28T00:00:00", "2016-01-29T00:00:00", "2016-02-01T00:00:00", "2016-02-02T00:00:00", "2016-02-03T00:00:00", "2016-02-04T00:00:00", "2016-02-05T00:00:00", "2016-02-08T00:00:00", "2016-02-09T00:00:00", "2016-02-10T00:00:00", "2016-02-11T00:00:00", "2016-02-12T00:00:00", "2016-02-16T00:00:00", "2016-02-17T00:00:00", "2016-02-18T00:00:00", "2016-02-19T00:00:00", "2016-02-22T00:00:00", "2016-02-23T00:00:00", "2016-02-24T00:00:00", "2016-02-25T00:00:00", "2016-02-26T00:00:00", "2016-02-29T00:00:00", "2016-03-01T00:00:00", "2016-03-02T00:00:00", "2016-03-03T00:00:00", "2016-03-04T00:00:00", "2016-03-07T00:00:00", "2016-03-08T00:00:00", "2016-03-09T00:00:00", "2016-03-10T00:00:00", "2016-03-11T00:00:00", "2016-03-14T00:00:00", "2016-03-15T00:00:00", "2016-03-16T00:00:00", "2016-03-17T00:00:00", "2016-03-18T00:00:00", "2016-03-21T00:00:00", "2016-03-22T00:00:00", "2016-03-23T00:00:00", "2016-03-24T00:00:00", "2016-03-28T00:00:00", "2016-03-29T00:00:00", "2016-03-30T00:00:00", "2016-03-31T00:00:00", "2016-04-01T00:00:00", "2016-04-04T00:00:00", "2016-04-05T00:00:00", "2016-04-06T00:00:00", "2016-04-07T00:00:00", "2016-04-08T00:00:00", "2016-04-11T00:00:00", "2016-04-12T00:00:00", "2016-04-13T00:00:00", "2016-04-14T00:00:00", "2016-04-15T00:00:00", "2016-04-18T00:00:00", "2016-04-19T00:00:00", "2016-04-20T00:00:00", "2016-04-21T00:00:00", "2016-04-22T00:00:00", "2016-04-25T00:00:00", "2016-04-26T00:00:00", "2016-04-27T00:00:00", "2016-04-28T00:00:00", "2016-04-29T00:00:00", "2016-05-02T00:00:00", "2016-05-03T00:00:00", "2016-05-04T00:00:00", "2016-05-05T00:00:00", "2016-05-06T00:00:00", "2016-05-09T00:00:00", "2016-05-10T00:00:00", "2016-05-11T00:00:00", "2016-05-12T00:00:00", "2016-05-13T00:00:00", "2016-05-16T00:00:00", "2016-05-17T00:00:00", "2016-05-18T00:00:00", "2016-05-19T00:00:00", "2016-05-20T00:00:00", "2016-05-23T00:00:00", "2016-05-24T00:00:00", "2016-05-25T00:00:00", "2016-05-26T00:00:00", "2016-05-27T00:00:00", "2016-05-31T00:00:00", "2016-06-01T00:00:00", "2016-06-02T00:00:00", "2016-06-03T00:00:00", "2016-06-06T00:00:00", "2016-06-07T00:00:00", "2016-06-08T00:00:00", "2016-06-09T00:00:00", "2016-06-10T00:00:00", "2016-06-13T00:00:00", "2016-06-14T00:00:00", "2016-06-15T00:00:00", "2016-06-16T00:00:00", "2016-06-17T00:00:00", "2016-06-20T00:00:00", "2016-06-21T00:00:00", "2016-06-22T00:00:00", "2016-06-23T00:00:00", "2016-06-24T00:00:00", "2016-06-27T00:00:00", "2016-06-28T00:00:00", "2016-06-29T00:00:00", "2016-06-30T00:00:00", "2016-07-01T00:00:00", "2016-07-05T00:00:00", "2016-07-06T00:00:00", "2016-07-07T00:00:00", "2016-07-08T00:00:00", "2016-07-11T00:00:00", "2016-07-12T00:00:00", "2016-07-13T00:00:00", "2016-07-14T00:00:00", "2016-07-15T00:00:00", "2016-07-18T00:00:00", "2016-07-19T00:00:00", "2016-07-20T00:00:00", "2016-07-21T00:00:00", "2016-07-22T00:00:00", "2016-07-25T00:00:00", "2016-07-26T00:00:00", "2016-07-27T00:00:00", "2016-07-28T00:00:00", "2016-07-29T00:00:00", "2016-08-01T00:00:00", "2016-08-02T00:00:00", "2016-08-03T00:00:00", "2016-08-04T00:00:00", "2016-08-05T00:00:00", "2016-08-08T00:00:00", "2016-08-09T00:00:00", "2016-08-10T00:00:00", "2016-08-11T00:00:00", "2016-08-12T00:00:00", "2016-08-15T00:00:00", "2016-08-16T00:00:00", "2016-08-17T00:00:00", "2016-08-18T00:00:00", "2016-08-19T00:00:00", "2016-08-22T00:00:00", "2016-08-23T00:00:00", "2016-08-24T00:00:00", "2016-08-25T00:00:00", "2016-08-26T00:00:00", "2016-08-29T00:00:00", "2016-08-30T00:00:00", "2016-08-31T00:00:00", "2016-09-01T00:00:00", "2016-09-02T00:00:00", "2016-09-06T00:00:00", "2016-09-07T00:00:00", "2016-09-08T00:00:00", "2016-09-09T00:00:00", "2016-09-12T00:00:00", "2016-09-13T00:00:00", "2016-09-14T00:00:00", "2016-09-15T00:00:00", "2016-09-16T00:00:00", "2016-09-19T00:00:00", "2016-09-20T00:00:00", "2016-09-21T00:00:00", "2016-09-22T00:00:00", "2016-09-23T00:00:00", "2016-09-26T00:00:00", "2016-09-27T00:00:00", "2016-09-28T00:00:00", "2016-09-29T00:00:00", "2016-09-30T00:00:00", "2016-10-03T00:00:00", "2016-10-04T00:00:00", "2016-10-05T00:00:00", "2016-10-06T00:00:00", "2016-10-07T00:00:00", "2016-10-10T00:00:00", "2016-10-11T00:00:00", "2016-10-12T00:00:00", "2016-10-13T00:00:00", "2016-10-14T00:00:00", "2016-10-17T00:00:00", "2016-10-18T00:00:00", "2016-10-19T00:00:00", "2016-10-20T00:00:00", "2016-10-21T00:00:00", "2016-10-24T00:00:00", "2016-10-25T00:00:00", "2016-10-26T00:00:00", "2016-10-27T00:00:00", "2016-10-28T00:00:00", "2016-10-31T00:00:00", "2016-11-01T00:00:00", "2016-11-02T00:00:00", "2016-11-03T00:00:00", "2016-11-04T00:00:00", "2016-11-07T00:00:00", "2016-11-08T00:00:00", "2016-11-09T00:00:00", "2016-11-10T00:00:00", "2016-11-11T00:00:00", "2016-11-14T00:00:00", "2016-11-15T00:00:00", "2016-11-16T00:00:00", "2016-11-17T00:00:00", "2016-11-18T00:00:00", "2016-11-21T00:00:00", "2016-11-22T00:00:00", "2016-11-23T00:00:00", "2016-11-25T00:00:00", "2016-11-28T00:00:00", "2016-11-29T00:00:00", "2016-11-30T00:00:00", "2016-12-01T00:00:00", "2016-12-02T00:00:00", "2016-12-05T00:00:00", "2016-12-06T00:00:00", "2016-12-07T00:00:00", "2016-12-08T00:00:00", "2016-12-09T00:00:00", "2016-12-12T00:00:00", "2016-12-13T00:00:00", "2016-12-14T00:00:00", "2016-12-15T00:00:00", "2016-12-16T00:00:00", "2016-12-19T00:00:00", "2016-12-20T00:00:00", "2016-12-21T00:00:00", "2016-12-22T00:00:00", "2016-12-23T00:00:00", "2016-12-27T00:00:00", "2016-12-28T00:00:00", "2016-12-29T00:00:00", "2016-12-30T00:00:00", "2017-01-03T00:00:00", "2017-01-04T00:00:00", "2017-01-05T00:00:00", "2017-01-06T00:00:00", "2017-01-09T00:00:00", "2017-01-10T00:00:00", "2017-01-11T00:00:00", "2017-01-12T00:00:00", "2017-01-13T00:00:00", "2017-01-17T00:00:00", "2017-01-18T00:00:00", "2017-01-19T00:00:00", "2017-01-20T00:00:00", "2017-01-23T00:00:00", "2017-01-24T00:00:00", "2017-01-25T00:00:00", "2017-01-26T00:00:00", "2017-01-27T00:00:00", "2017-01-30T00:00:00", "2017-01-31T00:00:00", "2017-02-01T00:00:00", "2017-02-02T00:00:00", "2017-02-03T00:00:00", "2017-02-06T00:00:00", "2017-02-07T00:00:00", "2017-02-08T00:00:00", "2017-02-09T00:00:00", "2017-02-10T00:00:00", "2017-02-13T00:00:00", "2017-02-14T00:00:00", "2017-02-15T00:00:00", "2017-02-16T00:00:00", "2017-02-17T00:00:00", "2017-02-21T00:00:00", "2017-02-22T00:00:00", "2017-02-23T00:00:00", "2017-02-24T00:00:00", "2017-02-27T00:00:00", "2017-02-28T00:00:00", "2017-03-01T00:00:00", "2017-03-02T00:00:00", "2017-03-03T00:00:00", "2017-03-06T00:00:00", "2017-03-07T00:00:00", "2017-03-08T00:00:00", "2017-03-09T00:00:00", "2017-03-10T00:00:00", "2017-03-13T00:00:00", "2017-03-14T00:00:00", "2017-03-15T00:00:00", "2017-03-16T00:00:00", "2017-03-17T00:00:00", "2017-03-20T00:00:00", "2017-03-21T00:00:00", "2017-03-22T00:00:00", "2017-03-23T00:00:00", "2017-03-24T00:00:00", "2017-03-27T00:00:00", "2017-03-28T00:00:00", "2017-03-29T00:00:00", "2017-03-30T00:00:00", "2017-03-31T00:00:00", "2017-04-03T00:00:00", "2017-04-04T00:00:00", "2017-04-05T00:00:00", "2017-04-06T00:00:00", "2017-04-07T00:00:00", "2017-04-10T00:00:00", "2017-04-11T00:00:00", "2017-04-12T00:00:00", "2017-04-13T00:00:00", "2017-04-17T00:00:00", "2017-04-18T00:00:00", "2017-04-19T00:00:00", "2017-04-20T00:00:00", "2017-04-21T00:00:00", "2017-04-24T00:00:00", "2017-04-25T00:00:00", "2017-04-26T00:00:00", "2017-04-27T00:00:00", "2017-04-28T00:00:00", "2017-05-01T00:00:00", "2017-05-02T00:00:00", "2017-05-03T00:00:00", "2017-05-04T00:00:00", "2017-05-05T00:00:00", "2017-05-08T00:00:00", "2017-05-09T00:00:00", "2017-05-10T00:00:00", "2017-05-11T00:00:00", "2017-05-12T00:00:00", "2017-05-15T00:00:00", "2017-05-16T00:00:00", "2017-05-17T00:00:00", "2017-05-18T00:00:00", "2017-05-19T00:00:00", "2017-05-22T00:00:00", "2017-05-23T00:00:00", "2017-05-24T00:00:00", "2017-05-25T00:00:00", "2017-05-26T00:00:00", "2017-05-30T00:00:00", "2017-05-31T00:00:00", "2017-06-01T00:00:00", "2017-06-02T00:00:00", "2017-06-05T00:00:00", "2017-06-06T00:00:00", "2017-06-07T00:00:00", "2017-06-08T00:00:00", "2017-06-09T00:00:00", "2017-06-12T00:00:00", "2017-06-13T00:00:00", "2017-06-14T00:00:00", "2017-06-15T00:00:00", "2017-06-16T00:00:00", "2017-06-19T00:00:00", "2017-06-20T00:00:00", "2017-06-21T00:00:00", "2017-06-22T00:00:00", "2017-06-23T00:00:00", "2017-06-26T00:00:00", "2017-06-27T00:00:00", "2017-06-28T00:00:00", "2017-06-29T00:00:00", "2017-06-30T00:00:00", "2017-07-03T00:00:00", "2017-07-05T00:00:00", "2017-07-06T00:00:00", "2017-07-07T00:00:00", "2017-07-10T00:00:00", "2017-07-11T00:00:00", "2017-07-12T00:00:00", "2017-07-13T00:00:00", "2017-07-14T00:00:00", "2017-07-17T00:00:00", "2017-07-18T00:00:00", "2017-07-19T00:00:00", "2017-07-20T00:00:00", "2017-07-21T00:00:00", "2017-07-24T00:00:00", "2017-07-25T00:00:00", "2017-07-26T00:00:00", "2017-07-27T00:00:00", "2017-07-28T00:00:00", "2017-07-31T00:00:00", "2017-08-01T00:00:00", "2017-08-02T00:00:00", "2017-08-03T00:00:00", "2017-08-04T00:00:00", "2017-08-07T00:00:00", "2017-08-08T00:00:00", "2017-08-09T00:00:00", "2017-08-10T00:00:00", "2017-08-11T00:00:00", "2017-08-14T00:00:00", "2017-08-15T00:00:00", "2017-08-16T00:00:00", "2017-08-17T00:00:00", "2017-08-18T00:00:00", "2017-08-21T00:00:00", "2017-08-22T00:00:00", "2017-08-23T00:00:00", "2017-08-24T00:00:00", "2017-08-25T00:00:00", "2017-08-28T00:00:00", "2017-08-29T00:00:00", "2017-08-30T00:00:00", "2017-08-31T00:00:00", "2017-09-01T00:00:00", "2017-09-05T00:00:00", "2017-09-06T00:00:00", "2017-09-07T00:00:00", "2017-09-08T00:00:00", "2017-09-11T00:00:00", "2017-09-12T00:00:00", "2017-09-13T00:00:00", "2017-09-14T00:00:00", "2017-09-15T00:00:00", "2017-09-18T00:00:00", "2017-09-19T00:00:00", "2017-09-20T00:00:00", "2017-09-21T00:00:00", "2017-09-22T00:00:00", "2017-09-25T00:00:00", "2017-09-26T00:00:00", "2017-09-27T00:00:00", "2017-09-28T00:00:00", "2017-09-29T00:00:00", "2017-10-02T00:00:00", "2017-10-03T00:00:00", "2017-10-04T00:00:00", "2017-10-05T00:00:00", "2017-10-06T00:00:00", "2017-10-09T00:00:00", "2017-10-10T00:00:00", "2017-10-11T00:00:00", "2017-10-12T00:00:00", "2017-10-13T00:00:00", "2017-10-16T00:00:00", "2017-10-17T00:00:00", "2017-10-18T00:00:00", "2017-10-19T00:00:00", "2017-10-20T00:00:00", "2017-10-23T00:00:00", "2017-10-24T00:00:00", "2017-10-25T00:00:00", "2017-10-26T00:00:00", "2017-10-27T00:00:00", "2017-10-30T00:00:00", "2017-10-31T00:00:00", "2017-11-01T00:00:00", "2017-11-02T00:00:00", "2017-11-03T00:00:00", "2017-11-06T00:00:00", "2017-11-07T00:00:00", "2017-11-08T00:00:00", "2017-11-09T00:00:00", "2017-11-10T00:00:00", "2017-11-13T00:00:00", "2017-11-14T00:00:00", "2017-11-15T00:00:00", "2017-11-16T00:00:00", "2017-11-17T00:00:00", "2017-11-20T00:00:00", "2017-11-21T00:00:00", "2017-11-22T00:00:00", "2017-11-24T00:00:00", "2017-11-27T00:00:00", "2017-11-28T00:00:00", "2017-11-29T00:00:00", "2017-11-30T00:00:00", "2017-12-01T00:00:00", "2017-12-04T00:00:00", "2017-12-05T00:00:00", "2017-12-06T00:00:00", "2017-12-07T00:00:00", "2017-12-08T00:00:00", "2017-12-11T00:00:00", "2017-12-12T00:00:00", "2017-12-13T00:00:00", "2017-12-14T00:00:00", "2017-12-15T00:00:00", "2017-12-18T00:00:00", "2017-12-19T00:00:00", "2017-12-20T00:00:00", "2017-12-21T00:00:00", "2017-12-22T00:00:00", "2017-12-26T00:00:00", "2017-12-27T00:00:00", "2017-12-28T00:00:00", "2017-12-29T00:00:00", "2018-01-02T00:00:00", "2018-01-03T00:00:00", "2018-01-04T00:00:00", "2018-01-05T00:00:00", "2018-01-08T00:00:00", "2018-01-09T00:00:00", "2018-01-10T00:00:00", "2018-01-11T00:00:00", "2018-01-12T00:00:00", "2018-01-16T00:00:00", "2018-01-17T00:00:00", "2018-01-18T00:00:00", "2018-01-19T00:00:00", "2018-01-22T00:00:00", "2018-01-23T00:00:00", "2018-01-24T00:00:00", "2018-01-25T00:00:00", "2018-01-26T00:00:00", "2018-01-29T00:00:00", "2018-01-30T00:00:00", "2018-01-31T00:00:00", "2018-02-01T00:00:00", "2018-02-02T00:00:00", "2018-02-05T00:00:00", "2018-02-06T00:00:00", "2018-02-07T00:00:00", "2018-02-08T00:00:00", "2018-02-09T00:00:00", "2018-02-12T00:00:00", "2018-02-13T00:00:00", "2018-02-14T00:00:00", "2018-02-15T00:00:00", "2018-02-16T00:00:00", "2018-02-20T00:00:00", "2018-02-21T00:00:00", "2018-02-22T00:00:00", "2018-02-23T00:00:00", "2018-02-26T00:00:00", "2018-02-27T00:00:00", "2018-02-28T00:00:00", "2018-03-01T00:00:00", "2018-03-02T00:00:00", "2018-03-05T00:00:00", "2018-03-06T00:00:00", "2018-03-07T00:00:00", "2018-03-08T00:00:00", "2018-03-09T00:00:00", "2018-03-12T00:00:00", "2018-03-13T00:00:00", "2018-03-14T00:00:00", "2018-03-15T00:00:00", "2018-03-16T00:00:00", "2018-03-19T00:00:00", "2018-03-20T00:00:00", "2018-03-21T00:00:00", "2018-03-22T00:00:00", "2018-03-23T00:00:00", "2018-03-26T00:00:00", "2018-03-27T00:00:00", "2018-03-28T00:00:00", "2018-03-29T00:00:00", "2018-04-02T00:00:00", "2018-04-03T00:00:00", "2018-04-04T00:00:00", "2018-04-05T00:00:00", "2018-04-06T00:00:00", "2018-04-09T00:00:00", "2018-04-10T00:00:00", "2018-04-11T00:00:00", "2018-04-12T00:00:00", "2018-04-13T00:00:00", "2018-04-16T00:00:00", "2018-04-17T00:00:00", "2018-04-18T00:00:00", "2018-04-19T00:00:00", "2018-04-20T00:00:00", "2018-04-23T00:00:00", "2018-04-24T00:00:00", "2018-04-25T00:00:00", "2018-04-26T00:00:00", "2018-04-27T00:00:00", "2018-04-30T00:00:00", "2018-05-01T00:00:00", "2018-05-02T00:00:00", "2018-05-03T00:00:00", "2018-05-04T00:00:00", "2018-05-07T00:00:00", "2018-05-08T00:00:00", "2018-05-09T00:00:00", "2018-05-10T00:00:00", "2018-05-11T00:00:00", "2018-05-14T00:00:00", "2018-05-15T00:00:00", "2018-05-16T00:00:00", "2018-05-17T00:00:00", "2018-05-18T00:00:00", "2018-05-21T00:00:00", "2018-05-22T00:00:00", "2018-05-23T00:00:00", "2018-05-24T00:00:00", "2018-05-25T00:00:00", "2018-05-29T00:00:00", "2018-05-30T00:00:00", "2018-05-31T00:00:00", "2018-06-01T00:00:00", "2018-06-04T00:00:00", "2018-06-05T00:00:00", "2018-06-06T00:00:00", "2018-06-07T00:00:00", "2018-06-08T00:00:00", "2018-06-11T00:00:00", "2018-06-12T00:00:00", "2018-06-13T00:00:00", "2018-06-14T00:00:00", "2018-06-15T00:00:00", "2018-06-18T00:00:00", "2018-06-19T00:00:00", "2018-06-20T00:00:00", "2018-06-21T00:00:00", "2018-06-22T00:00:00", "2018-06-25T00:00:00", "2018-06-26T00:00:00", "2018-06-27T00:00:00", "2018-06-28T00:00:00", "2018-06-29T00:00:00", "2018-07-02T00:00:00", "2018-07-03T00:00:00", "2018-07-05T00:00:00", "2018-07-06T00:00:00", "2018-07-09T00:00:00", "2018-07-10T00:00:00", "2018-07-11T00:00:00", "2018-07-12T00:00:00", "2018-07-13T00:00:00", "2018-07-16T00:00:00", "2018-07-17T00:00:00", "2018-07-18T00:00:00", "2018-07-19T00:00:00", "2018-07-20T00:00:00", "2018-07-23T00:00:00", "2018-07-24T00:00:00", "2018-07-25T00:00:00", "2018-07-26T00:00:00", "2018-07-27T00:00:00", "2018-07-30T00:00:00", "2018-07-31T00:00:00", "2018-08-01T00:00:00", "2018-08-02T00:00:00", "2018-08-03T00:00:00", "2018-08-06T00:00:00", "2018-08-07T00:00:00", "2018-08-08T00:00:00", "2018-08-09T00:00:00", "2018-08-10T00:00:00", "2018-08-13T00:00:00", "2018-08-14T00:00:00", "2018-08-15T00:00:00", "2018-08-16T00:00:00", "2018-08-17T00:00:00", "2018-08-20T00:00:00", "2018-08-21T00:00:00", "2018-08-22T00:00:00", "2018-08-23T00:00:00", "2018-08-24T00:00:00", "2018-08-27T00:00:00", "2018-08-28T00:00:00", "2018-08-29T00:00:00", "2018-08-30T00:00:00", "2018-08-31T00:00:00", "2018-09-04T00:00:00", "2018-09-05T00:00:00", "2018-09-06T00:00:00", "2018-09-07T00:00:00", "2018-09-10T00:00:00", "2018-09-11T00:00:00", "2018-09-12T00:00:00", "2018-09-13T00:00:00", "2018-09-14T00:00:00", "2018-09-17T00:00:00", "2018-09-18T00:00:00", "2018-09-19T00:00:00", "2018-09-20T00:00:00", "2018-09-21T00:00:00", "2018-09-24T00:00:00", "2018-09-25T00:00:00", "2018-09-26T00:00:00", "2018-09-27T00:00:00", "2018-09-28T00:00:00", "2018-10-01T00:00:00", "2018-10-02T00:00:00", "2018-10-03T00:00:00", "2018-10-04T00:00:00", "2018-10-05T00:00:00", "2018-10-08T00:00:00", "2018-10-09T00:00:00", "2018-10-10T00:00:00", "2018-10-11T00:00:00", "2018-10-12T00:00:00", "2018-10-15T00:00:00", "2018-10-16T00:00:00", "2018-10-17T00:00:00", "2018-10-18T00:00:00", "2018-10-19T00:00:00", "2018-10-22T00:00:00", "2018-10-23T00:00:00", "2018-10-24T00:00:00", "2018-10-25T00:00:00", "2018-10-26T00:00:00", "2018-10-29T00:00:00", "2018-10-30T00:00:00", "2018-10-31T00:00:00", "2018-11-01T00:00:00", "2018-11-02T00:00:00", "2018-11-05T00:00:00", "2018-11-06T00:00:00", "2018-11-07T00:00:00", "2018-11-08T00:00:00", "2018-11-09T00:00:00", "2018-11-12T00:00:00", "2018-11-13T00:00:00", "2018-11-14T00:00:00", "2018-11-15T00:00:00", "2018-11-16T00:00:00", "2018-11-19T00:00:00", "2018-11-20T00:00:00", "2018-11-21T00:00:00", "2018-11-23T00:00:00", "2018-11-26T00:00:00", "2018-11-27T00:00:00", "2018-11-28T00:00:00", "2018-11-29T00:00:00", "2018-11-30T00:00:00", "2018-12-03T00:00:00", "2018-12-04T00:00:00", "2018-12-06T00:00:00", "2018-12-07T00:00:00", "2018-12-10T00:00:00", "2018-12-11T00:00:00", "2018-12-12T00:00:00", "2018-12-13T00:00:00", "2018-12-14T00:00:00", "2018-12-17T00:00:00", "2018-12-18T00:00:00", "2018-12-19T00:00:00", "2018-12-20T00:00:00", "2018-12-21T00:00:00", "2018-12-24T00:00:00", "2018-12-26T00:00:00", "2018-12-27T00:00:00", "2018-12-28T00:00:00", "2018-12-31T00:00:00", "2019-01-02T00:00:00", "2019-01-03T00:00:00", "2019-01-04T00:00:00", "2019-01-07T00:00:00", "2019-01-08T00:00:00", "2019-01-09T00:00:00", "2019-01-10T00:00:00", "2019-01-11T00:00:00", "2019-01-14T00:00:00", "2019-01-15T00:00:00", "2019-01-16T00:00:00", "2019-01-17T00:00:00", "2019-01-18T00:00:00", "2019-01-22T00:00:00", "2019-01-23T00:00:00", "2019-01-24T00:00:00", "2019-01-25T00:00:00", "2019-01-28T00:00:00", "2019-01-29T00:00:00", "2019-01-30T00:00:00", "2019-01-31T00:00:00", "2019-02-01T00:00:00", "2019-02-04T00:00:00", "2019-02-05T00:00:00", "2019-02-06T00:00:00", "2019-02-07T00:00:00", "2019-02-08T00:00:00", "2019-02-11T00:00:00", "2019-02-12T00:00:00", "2019-02-13T00:00:00", "2019-02-14T00:00:00", "2019-02-15T00:00:00", "2019-02-19T00:00:00", "2019-02-20T00:00:00", "2019-02-21T00:00:00", "2019-02-22T00:00:00", "2019-02-25T00:00:00", "2019-02-26T00:00:00", "2019-02-27T00:00:00", "2019-02-28T00:00:00", "2019-03-01T00:00:00", "2019-03-04T00:00:00", "2019-03-05T00:00:00", "2019-03-06T00:00:00", "2019-03-07T00:00:00", "2019-03-08T00:00:00", "2019-03-11T00:00:00", "2019-03-12T00:00:00", "2019-03-13T00:00:00", "2019-03-14T00:00:00", "2019-03-15T00:00:00", "2019-03-18T00:00:00", "2019-03-19T00:00:00", "2019-03-20T00:00:00", "2019-03-21T00:00:00", "2019-03-22T00:00:00", "2019-03-25T00:00:00", "2019-03-26T00:00:00", "2019-03-27T00:00:00", "2019-03-28T00:00:00", "2019-03-29T00:00:00", "2019-04-01T00:00:00", "2019-04-02T00:00:00", "2019-04-03T00:00:00", "2019-04-04T00:00:00", "2019-04-05T00:00:00", "2019-04-08T00:00:00", "2019-04-09T00:00:00", "2019-04-10T00:00:00", "2019-04-11T00:00:00", "2019-04-12T00:00:00", "2019-04-15T00:00:00", "2019-04-16T00:00:00", "2019-04-17T00:00:00", "2019-04-18T00:00:00", "2019-04-22T00:00:00", "2019-04-23T00:00:00", "2019-04-24T00:00:00", "2019-04-25T00:00:00", "2019-04-26T00:00:00", "2019-04-29T00:00:00", "2019-04-30T00:00:00", "2019-05-01T00:00:00", "2019-05-02T00:00:00", "2019-05-03T00:00:00", "2019-05-06T00:00:00", "2019-05-07T00:00:00", "2019-05-08T00:00:00", "2019-05-09T00:00:00", "2019-05-10T00:00:00", "2019-05-13T00:00:00", "2019-05-14T00:00:00", "2019-05-15T00:00:00", "2019-05-16T00:00:00", "2019-05-17T00:00:00", "2019-05-20T00:00:00", "2019-05-21T00:00:00", "2019-05-22T00:00:00", "2019-05-23T00:00:00", "2019-05-24T00:00:00", "2019-05-28T00:00:00", "2019-05-29T00:00:00", "2019-05-30T00:00:00", "2019-05-31T00:00:00", "2019-06-03T00:00:00", "2019-06-04T00:00:00", "2019-06-05T00:00:00", "2019-06-06T00:00:00", "2019-06-07T00:00:00", "2019-06-10T00:00:00", "2019-06-11T00:00:00", "2019-06-12T00:00:00", "2019-06-13T00:00:00", "2019-06-14T00:00:00", "2019-06-17T00:00:00", "2019-06-18T00:00:00", "2019-06-19T00:00:00", "2019-06-20T00:00:00", "2019-06-21T00:00:00", "2019-06-24T00:00:00", "2019-06-25T00:00:00", "2019-06-26T00:00:00", "2019-06-27T00:00:00", "2019-06-28T00:00:00", "2019-07-01T00:00:00", "2019-07-02T00:00:00", "2019-07-03T00:00:00", "2019-07-05T00:00:00", "2019-07-08T00:00:00", "2019-07-09T00:00:00", "2019-07-10T00:00:00", "2019-07-11T00:00:00", "2019-07-12T00:00:00", "2019-07-15T00:00:00", "2019-07-16T00:00:00", "2019-07-17T00:00:00", "2019-07-18T00:00:00", "2019-07-19T00:00:00", "2019-07-22T00:00:00", "2019-07-23T00:00:00", "2019-07-24T00:00:00", "2019-07-25T00:00:00", "2019-07-26T00:00:00", "2019-07-29T00:00:00", "2019-07-30T00:00:00", "2019-07-31T00:00:00", "2019-08-01T00:00:00", "2019-08-02T00:00:00", "2019-08-05T00:00:00", "2019-08-06T00:00:00", "2019-08-07T00:00:00", "2019-08-08T00:00:00", "2019-08-09T00:00:00", "2019-08-12T00:00:00", "2019-08-13T00:00:00", "2019-08-14T00:00:00", "2019-08-15T00:00:00", "2019-08-16T00:00:00", "2019-08-19T00:00:00", "2019-08-20T00:00:00", "2019-08-21T00:00:00", "2019-08-22T00:00:00", "2019-08-23T00:00:00", "2019-08-26T00:00:00", "2019-08-27T00:00:00", "2019-08-28T00:00:00", "2019-08-29T00:00:00", "2019-08-30T00:00:00", "2019-09-03T00:00:00", "2019-09-04T00:00:00", "2019-09-05T00:00:00", "2019-09-06T00:00:00", "2019-09-09T00:00:00", "2019-09-10T00:00:00", "2019-09-11T00:00:00", "2019-09-12T00:00:00", "2019-09-13T00:00:00", "2019-09-16T00:00:00", "2019-09-17T00:00:00", "2019-09-18T00:00:00", "2019-09-19T00:00:00", "2019-09-20T00:00:00", "2019-09-23T00:00:00", "2019-09-24T00:00:00", "2019-09-25T00:00:00", "2019-09-26T00:00:00", "2019-09-27T00:00:00", "2019-09-30T00:00:00", "2019-10-01T00:00:00", "2019-10-02T00:00:00", "2019-10-03T00:00:00", "2019-10-04T00:00:00", "2019-10-07T00:00:00", "2019-10-08T00:00:00", "2019-10-09T00:00:00", "2019-10-10T00:00:00", "2019-10-11T00:00:00", "2019-10-14T00:00:00", "2019-10-15T00:00:00", "2019-10-16T00:00:00", "2019-10-17T00:00:00", "2019-10-18T00:00:00", "2019-10-21T00:00:00", "2019-10-22T00:00:00", "2019-10-23T00:00:00", "2019-10-24T00:00:00", "2019-10-25T00:00:00", "2019-10-28T00:00:00", "2019-10-29T00:00:00", "2019-10-30T00:00:00", "2019-10-31T00:00:00", "2019-11-01T00:00:00", "2019-11-04T00:00:00", "2019-11-05T00:00:00", "2019-11-06T00:00:00", "2019-11-07T00:00:00", "2019-11-08T00:00:00", "2019-11-11T00:00:00", "2019-11-12T00:00:00", "2019-11-13T00:00:00", "2019-11-14T00:00:00", "2019-11-15T00:00:00", "2019-11-18T00:00:00", "2019-11-19T00:00:00", "2019-11-20T00:00:00", "2019-11-21T00:00:00", "2019-11-22T00:00:00", "2019-11-25T00:00:00", "2019-11-26T00:00:00", "2019-11-27T00:00:00", "2019-11-29T00:00:00", "2019-12-02T00:00:00", "2019-12-03T00:00:00", "2019-12-04T00:00:00", "2019-12-05T00:00:00", "2019-12-06T00:00:00", "2019-12-09T00:00:00", "2019-12-10T00:00:00", "2019-12-11T00:00:00", "2019-12-12T00:00:00", "2019-12-13T00:00:00", "2019-12-16T00:00:00", "2019-12-17T00:00:00", "2019-12-18T00:00:00", "2019-12-19T00:00:00", "2019-12-20T00:00:00", "2019-12-23T00:00:00", "2019-12-24T00:00:00", "2019-12-26T00:00:00", "2019-12-27T00:00:00", "2019-12-30T00:00:00", "2019-12-31T00:00:00", "2020-01-02T00:00:00", "2020-01-03T00:00:00", "2020-01-06T00:00:00", "2020-01-07T00:00:00", "2020-01-08T00:00:00", "2020-01-09T00:00:00", "2020-01-10T00:00:00", "2020-01-13T00:00:00", "2020-01-14T00:00:00", "2020-01-15T00:00:00", "2020-01-16T00:00:00", "2020-01-17T00:00:00", "2020-01-21T00:00:00", "2020-01-22T00:00:00", "2020-01-23T00:00:00", "2020-01-24T00:00:00", "2020-01-27T00:00:00", "2020-01-28T00:00:00", "2020-01-29T00:00:00", "2020-01-30T00:00:00", "2020-01-31T00:00:00", "2020-02-03T00:00:00", "2020-02-04T00:00:00", "2020-02-05T00:00:00", "2020-02-06T00:00:00", "2020-02-07T00:00:00", "2020-02-10T00:00:00", "2020-02-11T00:00:00", "2020-02-12T00:00:00", "2020-02-13T00:00:00", "2020-02-14T00:00:00", "2020-02-18T00:00:00", "2020-02-19T00:00:00", "2020-02-20T00:00:00", "2020-02-21T00:00:00", "2020-02-24T00:00:00", "2020-02-25T00:00:00", "2020-02-26T00:00:00", "2020-02-27T00:00:00", "2020-02-28T00:00:00", "2020-03-02T00:00:00", "2020-03-03T00:00:00", "2020-03-04T00:00:00", "2020-03-05T00:00:00", "2020-03-06T00:00:00", "2020-03-09T00:00:00", "2020-03-10T00:00:00", "2020-03-11T00:00:00", "2020-03-12T00:00:00", "2020-03-13T00:00:00", "2020-03-16T00:00:00", "2020-03-17T00:00:00", "2020-03-18T00:00:00", "2020-03-19T00:00:00", "2020-03-20T00:00:00", "2020-03-23T00:00:00", "2020-03-24T00:00:00", "2020-03-25T00:00:00", "2020-03-26T00:00:00", "2020-03-27T00:00:00", "2020-03-30T00:00:00", "2020-03-31T00:00:00", "2020-04-01T00:00:00", "2020-04-02T00:00:00", "2020-04-03T00:00:00", "2020-04-06T00:00:00", "2020-04-07T00:00:00", "2020-04-08T00:00:00", "2020-04-09T00:00:00", "2020-04-13T00:00:00", "2020-04-14T00:00:00", "2020-04-15T00:00:00", "2020-04-16T00:00:00", "2020-04-17T00:00:00", "2020-04-20T00:00:00", "2020-04-21T00:00:00", "2020-04-22T00:00:00", "2020-04-23T00:00:00", "2020-04-24T00:00:00", "2020-04-27T00:00:00", "2020-04-28T00:00:00", "2020-04-29T00:00:00", "2020-04-30T00:00:00", "2020-05-01T00:00:00", "2020-05-04T00:00:00", "2020-05-05T00:00:00", "2020-05-06T00:00:00", "2020-05-07T00:00:00", "2020-05-08T00:00:00", "2020-05-11T00:00:00", "2020-05-12T00:00:00", "2020-05-13T00:00:00", "2020-05-14T00:00:00", "2020-05-15T00:00:00", "2020-05-18T00:00:00", "2020-05-19T00:00:00", "2020-05-20T00:00:00", "2020-05-21T00:00:00", "2020-05-22T00:00:00", "2020-05-26T00:00:00", "2020-05-27T00:00:00", "2020-05-28T00:00:00", "2020-05-29T00:00:00", "2020-06-01T00:00:00", "2020-06-02T00:00:00", "2020-06-03T00:00:00", "2020-06-04T00:00:00", "2020-06-05T00:00:00", "2020-06-08T00:00:00", "2020-06-09T00:00:00", "2020-06-10T00:00:00", "2020-06-11T00:00:00", "2020-06-12T00:00:00", "2020-06-15T00:00:00", "2020-06-16T00:00:00", "2020-06-17T00:00:00", "2020-06-18T00:00:00", "2020-06-19T00:00:00", "2020-06-22T00:00:00", "2020-06-23T00:00:00", "2020-06-24T00:00:00", "2020-06-25T00:00:00", "2020-06-26T00:00:00", "2020-06-29T00:00:00", "2020-06-30T00:00:00", "2020-07-01T00:00:00", "2020-07-02T00:00:00", "2020-07-06T00:00:00", "2020-07-07T00:00:00", "2020-07-08T00:00:00", "2020-07-09T00:00:00", "2020-07-10T00:00:00", "2020-07-13T00:00:00", "2020-07-14T00:00:00", "2020-07-15T00:00:00", "2020-07-16T00:00:00", "2020-07-17T00:00:00", "2020-07-20T00:00:00", "2020-07-21T00:00:00", "2020-07-22T00:00:00", "2020-07-23T00:00:00", "2020-07-24T00:00:00", "2020-07-27T00:00:00", "2020-07-28T00:00:00", "2020-07-29T00:00:00", "2020-07-30T00:00:00", "2020-07-31T00:00:00", "2020-08-03T00:00:00", "2020-08-04T00:00:00", "2020-08-05T00:00:00", "2020-08-06T00:00:00", "2020-08-07T00:00:00", "2020-08-10T00:00:00", "2020-08-11T00:00:00", "2020-08-12T00:00:00", "2020-08-13T00:00:00", "2020-08-14T00:00:00", "2020-08-17T00:00:00", "2020-08-18T00:00:00", "2020-08-19T00:00:00"], "y": [0.9895256389861273, 1.0017793894211755, 1.0048832833228079, 1.0006034797616892, 0.990388822976446, 0.997344110107666, 0.9911458314729505, 0.9932570321455275, 0.9957849516009342, 1.0036608949066759, 0.9957855278173313, 0.9957577479264946, 1.0078933609902094, 1.0064394774272056, 1.0143531688250267, 1.0345075845668381, 1.0421212596591138, 1.0445334483042656, 1.0528271220143304, 1.050209300374892, 1.0488689935083475, 1.048426764568558, 1.047134377222862, 1.0519097845153655, 1.0565736914544321, 1.057702600274097, 1.0646210334849142, 1.0593390615570144, 1.0733205016996739, 1.1276266313059713, 1.1352802487331142, 1.1307483595482966, 1.137872598324513, 1.1302652118787733, 1.12218255093805, 1.1256890508701234, 1.132436519996679, 1.1313905115122886, 1.1273599648472303, 1.133493910995514, 1.125357331179335, 1.1151177381530297, 1.116097509322945, 1.1157240490840241, 1.0956303629714894, 1.109112080880198, 1.1046951401283585, 1.117908815053221, 1.1207367984813281, 1.1235166477391765, 1.1212157282204207, 1.1209980126914463, 1.113769729756972, 1.1167823260691612, 1.120867854693125, 1.1304323616062684, 1.128716829898094, 1.1161631949152817, 1.1387023123222306, 1.1387332160529582, 1.1349536978695216, 1.1224218180460064, 1.1255723284427777, 1.1094761868090925, 1.1232680890159636, 1.124091393624027, 1.1354477690210338, 1.1262462730479388, 1.107023419055598, 1.1185339997938524, 1.1246392093230337, 1.1333573005926483, 1.1314887000123475, 1.1334584279603963, 1.1436960558847178, 1.138615970886576, 1.1267888754109785, 1.1179319801951062, 1.1180454778165014, 1.1059403513730182, 1.0849889364533074, 1.0831587800191487, 1.0912666482385907, 1.0955252693320496, 1.0803415840877373, 1.0927482363818921, 1.0614429338046085, 1.0603480080478538, 1.0525207002164843, 1.0490593707113527, 1.0710244464602172, 1.0663388609295443, 1.0741846220306326, 1.0601561045039574, 1.065223614918445, 1.099904692272134, 1.0918492799708257, 1.0719330528674476, 1.0660870141980021, 1.0724897025187163, 1.0552483268067079, 1.0550564568955954, 1.0496646327247692, 1.0497608465459618, 1.0753657371959326, 1.0839371692078628, 1.099805802126643, 1.1154390473630098, 1.1144800856812032, 1.1108925521986124, 1.1164658762268276, 1.099166276574417, 1.1019367322066114, 1.1073534270010037, 1.0986013968657093, 1.0937922242215998, 1.1144655409989366, 1.1184014939936648, 1.1112998558620266, 1.1061996527968037, 1.0984325820443268, 1.105397102214622, 1.1208420962423622, 1.111934139456105, 1.123095435476128, 1.1228153642250642, 1.130333950274721, 1.139768157635528, 1.1457203062082515, 1.1349760509012017, 1.1362480038598974, 1.1383498659345965, 1.135261277121615, 1.1388285268871534, 1.1323078322954159, 1.144637884268869, 1.1528436995244455, 1.1534383419138587, 1.1575001805844278, 1.1540157640552398, 1.1423966869074262, 1.1485909867486896, 1.1408919181247583, 1.141582276233004, 1.1413842663007172, 1.1441507363661758, 1.154346669941584, 1.1549248762910809, 1.1526991578494006, 1.159177024895236, 1.1596771790800198, 1.1537963531825353, 1.1526449421158826, 1.1155441321157076, 1.1213610929528555, 1.1167042949650485, 1.1098558786419643, 1.092370581433904, 1.0894240263491526, 1.0928348658206155, 1.0854660830025602, 1.0838129843004438, 1.0833647710843952, 1.0902665187815404, 1.0864213079497536, 1.0977541201164958, 1.0965209998700447, 1.0979553684259955, 1.0964924859926986, 1.1087573479169441, 1.0997472167009013, 1.1031452125235135, 1.1068865127987515, 1.1126933589050552, 1.1086651030478454, 1.124838367945608, 1.1347946417972905, 1.132715814775981, 1.136248525124339, 1.1428667622775577, 1.1374135512093118, 1.1333808318028322, 1.128948106308392, 1.1314494566528344, 1.131652760050269, 1.1302942521910044, 1.1275711321974173, 1.1270920088650684, 1.1130186382254879, 1.1112722385284353, 1.1076457775309527, 1.1165087710360135, 1.1126746680824404, 1.1090550678456719, 1.1191306522676348, 1.1189280432942923, 1.1295325801571796, 1.101870444597188, 1.087568144714609, 1.0998234970584937, 1.110148370940651, 1.1174545336014194, 1.1177099715062313, 1.1163109001170384, 1.1211604090626683, 1.1215121988436774, 1.13231417900761, 1.135793397716249, 1.1416378716588111, 1.1453580180018237, 1.1495926822698326, 1.1497180864661118, 1.1541451392477737, 1.1472094688994712, 1.1774817310547325, 1.1761379416469813, 1.182255619346388, 1.1825831819310602, 1.1814695484052085, 1.1844813311624822, 1.1860986830817082, 1.192251132641896, 1.1962094878555734, 1.1973971542249389, 1.2022189867930355, 1.2074378368792509, 1.2135315050775595, 1.2165523011260426, 1.2179134093087338, 1.2158430725939366, 1.2153565699189104, 1.2125769797254071, 1.2172482107799687, 1.2170522389932947, 1.2155802758721033, 1.2118759102688064, 1.2131505552938402, 1.2133078660634455, 1.2166078612092435, 1.220081370474299, 1.2225345571808173, 1.221253294756388, 1.2223470421939688, 1.2195013920453042, 1.2171768823242717, 1.2213579996374804, 1.2247399866819333, 1.2223485807326042, 1.2208175126853622, 1.2122930217505232, 1.2001223009929174, 1.2117461947464074, 1.211943016294392, 1.2154827058873083, 1.228749964270988, 1.2246161176427188, 1.2213671211896977, 1.2204345899248525, 1.2270547743616256, 1.2293247407315413, 1.222921707035941, 1.2184411528732828, 1.2291669562968432, 1.2313301695935823, 1.2251931677103793, 1.2292607878019128, 1.2274163613282083, 1.2257383937662465, 1.231056482423061, 1.2321308314154837, 1.2338320319806007, 1.2342229851615918, 1.229519293735414, 1.224126960189123, 1.220859642810548, 1.2258720993202126, 1.2255845656977968, 1.2286930740020165, 1.2255811480689112, 1.2217624053983482, 1.2413370845269722, 1.2560175482229625, 1.25759867525065, 1.2544173023193852, 1.2465558889848203, 1.2437415798550224, 1.2451942026891716, 1.2416428458390398, 1.2387721395058116, 1.237338535231214, 1.2288232592411303, 1.2473076425980905, 1.2481272029134212, 1.246459919995642, 1.2260064749530821, 1.2362710000062012, 1.2240186210533124, 1.235306988291088, 1.2463537950906303, 1.239652842943706, 1.239420048167004, 1.244043697821375, 1.2453810825152725, 1.2386801500979816, 1.2418235946076128, 1.2426106853524819, 1.2451117228989192, 1.2391899640184787, 1.2276204647077786, 1.226261593872109, 1.234721546607072, 1.2322683980005642, 1.2486893800242942, 1.2462706647814619, 1.257267710307463, 1.26074321625997, 1.272334807249414, 1.2716850924293075, 1.272540409150745, 1.268801326291248, 1.2833108606099641, 1.2813425393291147, 1.2809327164144837, 1.2806159226154699, 1.278252832559788, 1.2811388242055346, 1.2766724287517925, 1.2761005071335925, 1.267061730953879, 1.2702924947046668, 1.262218572987695, 1.2639865735604512, 1.2692858915893612, 1.2684889317729986, 1.2695274443679891, 1.272073335490453, 1.2645972015000608, 1.2640918733822333, 1.264192017575307, 1.2630324848021843, 1.2625603024110021, 1.26628326556957, 1.2704668532745897, 1.2758079928044945, 1.2780652145205338, 1.2845210792728534, 1.2980458552523104, 1.2912378365677917, 1.2839667487623458, 1.283631024854505, 1.2867656482432128, 1.2919441740591409, 1.2940156453034013, 1.295237759929406, 1.2922227033543134, 1.297713018641513, 1.2962969743741874, 1.3054775553723847, 1.3111435298658858, 1.313815722544468, 1.3219094479048612, 1.322983063109657, 1.3261652928812404, 1.3254074739936499, 1.3251424996401435, 1.3260139935809394, 1.3228091736356278, 1.322330696206731, 1.3315834690057127, 1.324568203623744, 1.3264133233725437, 1.3271127725415537, 1.330714139873754, 1.332694694130921, 1.3313608626408553, 1.3329910220402126, 1.329820538829049, 1.3280152984034785, 1.3291620679218048, 1.329155687294404, 1.331937748304422, 1.3367762672856536, 1.3314113177036002, 1.3393161051066167, 1.3358897925792237, 1.33695977130016, 1.3375950919642263, 1.339185642310408, 1.3393568925573625, 1.3410669610812642, 1.3435800090115, 1.339992884840219, 1.3433748633092077, 1.3376433602286306, 1.3386087584668185, 1.3364455730686264, 1.3336298185329951, 1.3310278628933225, 1.3282011628445485, 1.3246843527126544, 1.3311043765324406, 1.3324421671604025, 1.3287267141207135, 1.333718057233878, 1.341459671124184, 1.351611746578957, 1.3563157161471462, 1.3538221512017237, 1.359158837551785, 1.3626969955494106, 1.3731158324571953, 1.3727994673541808, 1.373888532538704, 1.3690418535235571, 1.3718182388599744, 1.3793175338344497, 1.3760464952804616, 1.3773860505034912, 1.3731654884491573, 1.3742808465401912, 1.3785936948316264, 1.3911736361588587, 1.3732468395771233, 1.3590783392783097, 1.3563781700832513, 1.3629465178631226, 1.3653260698509575, 1.3629616082062594, 1.366093708140691, 1.3695340881160314, 1.3744099450703957, 1.3653981321765183, 1.3654925565113418, 1.3823144333610213, 1.383760411192527, 1.3852986085719743, 1.3847896998140867, 1.3808712030604386, 1.3626746699013366, 1.3537602318140136, 1.3637680953170506, 1.3577801123266253, 1.3545294716070388, 1.3520207752768605, 1.3639664540265044, 1.3559330216070993, 1.3572116882832506, 1.3539880268864313, 1.3625355081818193, 1.3584083673793543, 1.3455472702367692, 1.3517965174396034, 1.337323658278384, 1.3402687164959626, 1.3350261486984127, 1.3421180154247843, 1.3380556321289852, 1.343907146114309, 1.35002914160961, 1.3517652513939324, 1.356308998007095, 1.3650357675225777, 1.3741742224783589, 1.3809822505346583, 1.381600041351542, 1.3873957728938429, 1.386454455950293, 1.3833105648337538, 1.3840727646275242, 1.3922151678971513, 1.3845846833393876, 1.3712713237739, 1.367292450240752, 1.3650650803591544, 1.3689190079457492, 1.3783172001418804, 1.3790062152117548, 1.3874689094459725, 1.3884514484746215, 1.393053973955303, 1.3925453542261694, 1.3801273105644787, 1.3924539494920207, 1.40215235660028, 1.404899855598906, 1.4069553570087658, 1.3947146902669807, 1.3909165884659862, 1.3903660360375762, 1.4013430309422632, 1.4017679629911717, 1.4004213862393362, 1.401406713424613, 1.4036596936448567, 1.4072329493830507, 1.4158215305246695, 1.4202578129475882, 1.413021434812126, 1.4032522764221855, 1.4014512974561382, 1.4055983674100172, 1.396272633043229, 1.4078396629002083, 1.408140501555578, 1.4097659993547789, 1.4045388853007756, 1.4149952560205652, 1.4131356850839296, 1.4160932031848124, 1.4084721317740025, 1.400526271852367, 1.402870912380377, 1.3954727006930612, 1.400844884281237, 1.4019612769410865, 1.4037675401506835, 1.4092775136593625, 1.4078786218065658, 1.4053623392181747, 1.3995801945806603, 1.4096393104008726, 1.4108994038055427, 1.4151350746675442, 1.4126428174552736, 1.4160693372463102, 1.4173454017223748, 1.4204685000182695, 1.4269669501110918, 1.4260808409764019, 1.42567294558747, 1.4244172486338909, 1.4303732970861278, 1.4324945542737213, 1.4373603643856565, 1.4371859426853522, 1.4390347157892913, 1.4770023906714624, 1.48254320021007, 1.4831802937526084, 1.4829085217818845, 1.4892889122487776, 1.4944911064144535, 1.4975872750453618, 1.499500306816601, 1.5010175407795912, 1.4929084219975255, 1.4913739596970501, 1.489462490973685, 1.4875121788500365, 1.4839915545586382, 1.4934005867546831, 1.4857404148616549, 1.4917412487506785, 1.5016247651387087, 1.4993671527517607, 1.4996544835926953, 1.5076580883817265, 1.51356674314759, 1.5005642227241047, 1.5050830337991947, 1.5068267896269925, 1.4853099844064388, 1.486988688489496, 1.494725918580288, 1.4860231440668636, 1.4953273804795053, 1.5068084001153839, 1.5080622502752679, 1.5082020061691959, 1.5040777080565628, 1.5182771972419602, 1.517729286812605, 1.512885540965871, 1.5151559155505367, 1.514453431865944, 1.5146529545722296, 1.5086124011661999, 1.5101157788570372, 1.5100244662115423, 1.5067671709726136, 1.5124097264267928, 1.5168607291198184, 1.5212733085520793, 1.5319415088906516, 1.5330930854835112, 1.5317597678760735, 1.5293489000721392, 1.5284159832037536, 1.5431561009009473, 1.535020184732503, 1.5488447822847078, 1.5489430795646624, 1.5468083084186102, 1.5535830356415383, 1.558009977123152, 1.556723885439641, 1.5551135917792285, 1.5642043794438591, 1.5645930306050784, 1.5562766001420907, 1.5667309188094192, 1.5667157820214974, 1.545569257407126, 1.5191468614091197, 1.55414833723613, 1.5401974163295702, 1.5128399628432858, 1.5339457281261295, 1.5471252878492283, 1.5554692915955948, 1.5619744477800044, 1.585450388930987, 1.5802542557376327, 1.5855985204593326, 1.5740397787828793, 1.575942549447201, 1.5927700377342149, 1.6086975663193859, 1.6040972673851124, 1.6041878408203833, 1.5932710893892024, 1.5944262103527012, 1.5966524836911258, 1.590988350694781, 1.5899747391696382, 1.5943570240814993, 1.6130592946174913, 1.6154469579079613, 1.5959102491354966, 1.5937406345491076, 1.595984818128431, 1.5944021178404213, 1.581928360792163, 1.583732835651515, 1.5751879779377231, 1.5561632307550801, 1.5394397364656018, 1.594875176281649, 1.5599273157120999, 1.553207513391832, 1.569212386947513, 1.5454199765166876, 1.551448639401339, 1.5657954836473993, 1.567523478684484, 1.552252554000967, 1.5580049797430804, 1.5746332878409952, 1.5697294871596972, 1.5850615467952591, 1.5796767665160465, 1.5862611491565084, 1.602972271612439, 1.6026736697319985, 1.5976040322851268, 1.5828911155195717, 1.5853122006154874, 1.5712851023584598, 1.567499225920601, 1.5750870367829142, 1.5872796259097304, 1.577594788414243, 1.593607759697412, 1.5878963664597077, 1.596776808658759, 1.6130706467305491, 1.6231936348742069, 1.621558719351162, 1.6293071691496899, 1.6359366123584942, 1.6293199521534651, 1.6319086187101177, 1.6241790594951786, 1.6222965738356274, 1.603487149698169, 1.602842816723678, 1.6155384578476732, 1.6143018633585082, 1.6225663579811418, 1.6186770318591504, 1.6182241343931416, 1.616025783557945, 1.6182456399018175, 1.617738967568235, 1.636543947385445, 1.641647890887525, 1.6443771741189943, 1.6466841619400012, 1.6334649846569702, 1.6340372290117637, 1.6307697417131894, 1.6326497690287722, 1.6280870470109738, 1.6353434675418643, 1.6212848617564084, 1.6240342712121716, 1.619488746298137, 1.62645755083631, 1.618954376527321, 1.6155163120477176, 1.5968458508089414, 1.6046547335432582, 1.5966022784531777, 1.6073817251554297, 1.6073811544847467, 1.6166981306433437, 1.6083753953510498, 1.6145678272658337, 1.6248753691910518, 1.6303550953713637, 1.6322792695025656, 1.6298591407886491, 1.6496045465883487, 1.6474703174429493, 1.649807093070205, 1.653299893798748, 1.6447467762500587, 1.6435383841333375, 1.6565325503790256, 1.6684648940452964, 1.6713763009613398, 1.6931771529303914, 1.684546451689973, 1.6707185359343184, 1.657381124288097, 1.6610705188501715, 1.6732226236145011, 1.6845408701651445, 1.6880426293474697, 1.6897956132246161, 1.691024466019452, 1.6973453003448509, 1.701303845798452, 1.6964848226029654, 1.6934112252504074, 1.7017097534636272, 1.695016312113943, 1.7021386195121864, 1.7072014692688569, 1.7008996865308206, 1.6900359243631276, 1.7005271001297209, 1.7057388874772585, 1.7104467411177748, 1.7211315810791519, 1.7275508850275403, 1.7442102582999721, 1.746440779479718, 1.7541660466960414, 1.7547450661885564, 1.7290557304776644, 1.7286385963669155, 1.7234299111925369, 1.7283595665378455, 1.7480156230564738, 1.7453691723193727, 1.7592681276626738, 1.7637696377557484, 1.7510349101728355, 1.7580466035382196, 1.7463786910197279, 1.7590135210695919, 1.7640586448886335, 1.7700662507400746, 1.7693350727409365, 1.7622539138017288, 1.7682188708516224, 1.774509197504844, 1.784644052274202, 1.7872759832685352, 1.7899436940022682, 1.7743035413872916, 1.7662314602379225, 1.7591984955127684, 1.7720447799658279, 1.7261668756414201, 1.7211397053541466, 1.753804205361308, 1.7310670032628879, 1.7545212745772982, 1.7512819644159496, 1.7364309475795472, 1.743993052676327, 1.7524322575142173, 1.739435846040843, 1.6978483729117553, 1.7454660838359575, 1.7367998439997323, 1.708879534649164, 1.7114274667278075, 1.7388020327967748, 1.7259964673380521, 1.7165334263127714, 1.7219966543304663, 1.723682711237253, 1.7546040292081266, 1.7528488187726747, 1.7347650538021704, 1.7084315177027327, 1.7059414872470589, 1.6895919974492168, 1.7136934980981857, 1.714200896927941, 1.6872122688003943, 1.6588189563261646, 1.6640929774924713, 1.66019357126402, 1.6845482294501406, 1.6899172764113752, 1.7177459922169473, 1.713505738467436, 1.7176957897290117, 1.7303750217189546, 1.70377278110482, 1.7111229329518212, 1.677488915903538, 1.700783989585455, 1.7074855218424188, 1.709466421890639, 1.717020375010894, 1.6899926729242318, 1.671662565240548, 1.6826605967333053, 1.6753187331888608, 1.6601283927175547, 1.639554825137463, 1.6083866029820988, 1.6532020074000158, 1.653528665571118, 1.6484534105660051, 1.6567059802824031, 1.6537067189574348, 1.6142177754994982, 1.645601171435987, 1.639362415612059, 1.6443260362093968, 1.6512729394221621, 1.6447372219589422, 1.6387718731021617, 1.6345434199205904, 1.6575159997998237, 1.6606067447882142, 1.6647334140846175, 1.6768335332919275, 1.6652151852096313, 1.6762316974109697, 1.6717207039364153, 1.6790116571325162, 1.6587478555872492, 1.6421599507708062, 1.6692452491092813, 1.6570622211409511, 1.6414363567620613, 1.6662352420630302, 1.674954593647734, 1.6704991497329347, 1.6619046670846898, 1.6632298725518568, 1.6583989050871408, 1.6675237941298477, 1.6639926715576514, 1.668675542380012, 1.6780807738479138, 1.6784640965397764, 1.676371720655765, 1.6931213013003126, 1.7062605124434205, 1.713306996663522, 1.7212221453387104, 1.7232910931496366, 1.7208936503930954, 1.7181554652966937, 1.7203556984530046, 1.7202280039269238, 1.7256165902567389, 1.715182963929146, 1.7184530477730202, 1.7399408147278062, 1.7476881740051353, 1.7555022450931181, 1.7577567614090222, 1.7705453595048044, 1.7839328966609251, 1.782295824884645, 1.7824943392157409, 1.8049766473321267, 1.7859088465238693, 1.7868912323467212, 1.7854688433117063, 1.782248980341286, 1.7824143208661354, 1.7886737250267675, 1.7969668295468761, 1.8030807380534495, 1.8112176006198974, 1.8111725743870033, 1.8125768885454205, 1.81787618335335, 1.8153618966764415, 1.8207089794518196, 1.8196968771120001, 1.8231805731725539, 1.824797161167931, 1.8251871144854075, 1.8385641587104289, 1.850093479328379, 1.8523757713831603, 1.8628861879604097, 1.8612323746919588, 1.8848524727568572, 1.8820984291595142, 1.8822902380528437, 1.882837758373347, 1.8808352162042987, 1.8644013715567314, 1.8803438356204556, 1.8728026435821512, 1.858539424178268, 1.8588695760626968, 1.8539796992812916, 1.8624371232306451, 1.8333254903506124, 1.8424038799156077, 1.8563490285075932, 1.885376380195206, 1.8875686124682152, 1.8714069016600154, 1.8764298306873326, 1.8767299748226647, 1.86516142512283, 1.8651517840086684, 1.8658236906920018, 1.857422702670862, 1.8653749733258755, 1.8491834586327514, 1.824818441134749, 1.84710725910148, 1.8698640941005429, 1.885232463286996, 1.9137302033592107, 1.9253188701075097, 1.9303092647355364, 1.9212008623812573, 1.9269326393996917, 1.923605480440708, 1.9269548065645838, 1.9449692022040959, 1.9422303637836706, 1.9502716040298487, 1.947604550733695, 1.9569041317253717, 1.9282378420387665, 1.9404740338936461, 1.9340032816547517, 1.9206467266113858, 1.9289565272167217, 1.941893081664801, 1.9482188372601095, 1.9466220119668922, 1.9433920190698764, 1.9390684882647242, 1.9483881396397105, 1.9512804206858838, 1.956665121276267, 1.9579516501481775, 1.948579638747987, 1.9428241991806992, 1.9447762179523922, 1.9443496533799844, 1.9601394687747704, 1.9665220151392144, 1.9673917386956428, 1.9697089031212809, 1.9749374470622159, 1.9770900085465155, 1.9687669847125253, 1.948310177889436, 1.9620152155714086, 1.9453148194389622, 1.912308826767925, 1.9323612260504033, 1.9356263652086743, 1.9500822564636595, 1.9426053976785487, 1.9337240055743259, 1.954818620734847, 1.9345320288240426, 1.9124988357771333, 1.929090391425891, 1.9455904689339387, 1.937949814236229, 1.9477955894642627, 1.9357662058997993, 1.9065769810635027, 1.9201637994629637, 1.9205007173854511, 1.9189447382948441, 1.9321124295694327, 1.928703285913134, 1.9185953271971055, 1.9282216247565667, 1.9400059097149949, 1.937137863060603, 1.9308669175938036, 1.926680951397133, 1.929100035305769, 1.9372698070200598, 1.9339817818821956, 1.9283186794573528, 1.9324502337559777, 1.9435581376757056, 1.9559019724359836, 1.9462170383332482, 1.9456567658729556, 1.9416810179544681, 1.9561959931296447, 1.9530153977814981, 1.948795345549087, 1.960622318613078, 1.9471393656177503, 1.9324869509285836, 1.9394097671776325, 1.952447652626145, 1.9482160374072899, 1.9406417727504839, 1.95532077461205, 1.956408014845251, 1.9589209685550184, 1.9544970764695573, 1.9615870919293663, 1.961861888789666, 1.958972406075536, 1.9519570592344333, 1.9624578127757513, 1.952169800658407, 1.9574202559687994, 1.9601650860150661, 1.9635650486891472, 1.9847459930056974, 1.9723159399223265, 1.9864839626225999, 1.998135184679959, 1.990022181779027, 1.9930922815692511, 1.9992620097984604, 1.997456355954158, 2.0014808647095155, 2.008000581927904, 2.0061965803141963, 2.0108792939406377, 2.0315541788845826, 2.0228155896307682, 2.031113376839538, 2.0390726048113788, 2.0413187541358937, 2.0486169583663836, 2.053929148381429, 2.0453179734081086, 2.0486331109357097, 2.049910035293867, 2.0479835249950287, 2.0463351609071685, 2.0393732948891965, 2.0371889260692484, 2.0345223518127957, 2.039912574515919, 2.0477046711674896, 2.0463702780655626, 2.0495809894092876, 2.05286855005276, 2.0500355208687027, 2.0614335884609227, 2.062309802533766, 2.0579602281477065, 2.041589234592108, 2.0497602852770838, 2.0524112449252825, 2.06268261596459, 2.0630248203420085, 2.0735583695214848, 2.073919307281013, 2.0742957828335187, 2.0735893964428134, 2.0822903307332576, 2.081341911559963, 2.086575754550539, 2.08334219313433, 2.1009642431351696, 2.107475827998937, 2.1091901514514073, 2.1187795568834344, 2.105860875887184, 2.111335043919939, 2.122409857092578, 2.128323510424779, 2.1309526611800473, 2.1289204833306243, 2.1332057275967258, 2.1375152326694975, 2.132041994222921, 2.1451101988400914, 2.1621658820304424, 2.1846318407411816, 2.1617914881874944, 2.1681540046908214, 2.188786110177609, 2.1853794366187618, 2.212120008362226, 2.2194503564741317, 2.233774614425411, 2.2045367835098966, 2.2077269960452814, 2.192118612532311, 2.1995889058985476, 2.20289663748475, 2.1972957345581916, 2.1808317754653133, 2.1620541122887658, 2.1426068311897657, 2.149257815548015, 2.164106805217412, 2.1152898662012016, 2.137738648170551, 2.1935432495742457, 2.1660774167345207, 2.184024222123333, 2.170889538065544, 2.1786844982733533, 2.18820448752258, 2.2178512882532835, 2.1991400857721173, 2.1617222840145085, 2.2635900452553988, 2.201555762685758, 2.28030055242348, 2.355715302133347, 2.3242924692245284, 2.2634273834686445, 2.2580620539533287, 2.25134900993861, 2.212130589213677, 2.2468607063525012, 2.233049237848524, 2.2908316968255913, 2.28638461361241, 2.2899889467287986, 2.3390771591590673, 2.333786994029834, 2.35321846073475, 2.2957153896122726, 2.261251879423723, 2.2287500203737367, 2.262112905573237, 2.3053051419727995, 2.323601929056136, 2.364661302370227, 2.3183063077305857, 2.3060725099191806, 2.2989972627553446, 2.32540753286031, 2.3103484329751067, 2.3212939864982345, 2.297887508436041, 2.273800046885348, 2.2729316246419753, 2.313667708708078, 2.3180887760349713, 2.3397713733525665, 2.339660215159442, 2.341312259988851, 2.3308832383044957, 2.323695892523966, 2.3536865834567573, 2.345209841511774, 2.349452749964968, 2.346738587045102, 2.3532380042971135, 2.322920568448275, 2.3172057960767662, 2.3194257823843394, 2.30345636289127, 2.301410318491704, 2.2653410742402422, 2.2659285533642013, 2.271040489554654, 2.29371428146546, 2.2700731867844466, 2.2759934038068392, 2.2504633223060138, 2.2376089058017525, 2.233117949635432, 2.2295237929033878, 2.26224322872307, 2.3103215296137014, 2.293646281395845, 2.2809129008033264, 2.2829202102406305, 2.299025720937484, 2.310139126611629, 2.314601829066214, 2.314313439619013, 2.341415126619197, 2.3574799995122993, 2.3630986155200855, 2.3720010138515697, 2.3727735786842485, 2.3679366868639433, 2.383534914612189, 2.383683611179068, 2.383665166778269, 2.3987170285697395, 2.3998307595923873, 2.423234277429401, 2.461336923164264, 2.439692777885829, 2.414915091140169, 2.4073566375346345, 2.376843929596789, 2.360735376537439, 2.3607965136956373, 2.4059740322330696, 2.390753621564694, 2.3989204306706142, 2.348174492457019, 2.351917358554765, 2.3740117115312187, 2.3513609521301744, 2.3669030507133697, 2.382459215601732, 2.429940922930531, 2.4722382931924445, 2.453654480183073, 2.438193522277004, 2.46534356530072, 2.443953990299905, 2.4206223507608438, 2.389089530755435, 2.424653048985283, 2.4053849066596316, 2.4043443325123897, 2.373172553090242, 2.3799779260976113, 2.3855158629913915]}],n», » {"showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}, "yaxis": {"range": [-0.03839383327092238, 0.4059221785918471], "type": "log"}},n», » {"responsive": true}n», » ).then(function(){n», » n», «var gd = document.getElementById(„3782b35e-9d23-40c8-ad9d-a827c4b6e77a“);n», «var x = new MutationObserver(function (mutations, observer) {{n», » var display = window.getComputedStyle(gd).display;n», » if (!display || display === „none“) {{n», » console.log([gd, „removed!“]);n», » Plotly.purge(gd);n», » observer.disconnect();n», » }}n», «}});n», «n», «// Listen for the removal of the full notebook cellsn», «var notebookContainer = gd.closest(„#notebook-container“);n», «if (notebookContainer) {{n», » x.observe(notebookContainer, {childList: true});n», «}}n», «n», «// Listen for the clearing of the current output celln», «var outputEl = gd.closest(„.output“);n», «if (outputEl) {{n», » x.observe(outputEl, {childList: true});n», «}}n», «n», » })n», » };n», » });n», » </script>n», » </div>»

]

}, «metadata»: {}, «output_type»: «display_data»

}

], «source»: [

«# show plot with profit and losses:n», «performance = stat.to_pandas()["equity"].iloc[:]n», «qngraph.make_plot_filled(performance.index, performance, name="PnL (Equity)", type="log")»

]

}, {

«cell_type»: «code», «execution_count»: 13, «metadata»: {}, «outputs»: [

{

«name»: «stdout», «output_type»: «stream», «text»: [

«n», «Ok. This strategy does not correlate with other strategies.n»

]

}

], «source»: [

«# Check correlationn», «qnstats.print_correlation(output, data)»

]

}, {

«cell_type»: «code», «execution_count»: 14, «metadata»: {}, «outputs»: [

{

«name»: «stdout», «output_type»: «stream», «text»: [

«write output: /root/fractions.nc.gzn»

]

}

], «source»: [

«qndata.write_output(output)»

]

}

], «metadata»: {

«kernelspec»: {

«display_name»: «Python 3», «language»: «python», «name»: «python3»

}, «language_info»: {

«codemirror_mode»: {

«name»: «ipython», «version»: 3

}, «file_extension»: «.py», «mimetype»: «text/x-python», «name»: «python», «nbconvert_exporter»: «python», «pygments_lexer»: «ipython3», «version»: «3.7.7»

}

}, «nbformat»: 4, «nbformat_minor»: 2

}