diff --git a/.qt_for_python/uic/indicatorParameters.py b/.qt_for_python/uic/indicatorParameters.py new file mode 100644 index 0000000..f812316 --- /dev/null +++ b/.qt_for_python/uic/indicatorParameters.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'c:\perso\trading\anaconda3\backtrader-ichimoku\ui\indicatorParameters.ui' +# +# Created by: PyQt6 UI code generator 5.15.5 +# +# WARNING: Any manual changes made to this file will be lost when pyuic5 is +# run again. Do not edit this file unless you know what you are doing. + + +from PyQt6 import QtCore, QtGui, QtWidgets + + +class Ui_Dialog(object): + def setupUi(self, Dialog): + Dialog.setObjectName("Dialog") + Dialog.resize(400, 300) + self.gridLayout = QtWidgets.QGridLayout(Dialog) + self.gridLayout.setObjectName("gridLayout") + self.title = QtWidgets.QLabel(Dialog) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.title.sizePolicy().hasHeightForWidth()) + self.title.setSizePolicy(sizePolicy) + self.title.setMinimumSize(QtCore.QSize(0, 40)) + self.title.setAlignment(QtCore.Qt.AlignCenter) + self.title.setObjectName("title") + self.gridLayout.addWidget(self.title, 0, 0, 1, 1) + self.parameterLayout = QtWidgets.QFormLayout() + self.parameterLayout.setObjectName("parameterLayout") + self.gridLayout.addLayout(self.parameterLayout, 1, 0, 1, 1) + self.buttonBox = QtWidgets.QDialogButtonBox(Dialog) + self.buttonBox.setOrientation(QtCore.Qt.Horizontal) + self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok) + self.buttonBox.setObjectName("buttonBox") + self.gridLayout.addWidget(self.buttonBox, 2, 0, 1, 1) + + self.retranslateUi(Dialog) + self.buttonBox.accepted.connect(Dialog.accept) + self.buttonBox.rejected.connect(Dialog.reject) + QtCore.QMetaObject.connectSlotsByName(Dialog) + + def retranslateUi(self, Dialog): + _translate = QtCore.QCoreApplication.translate + Dialog.setWindowTitle(_translate("Dialog", "Custom indicator configuration")) + self.title.setText(_translate("Dialog", "Customize indicator")) diff --git a/.qt_for_python/uic/loadDataFiles.py b/.qt_for_python/uic/loadDataFiles.py new file mode 100644 index 0000000..5a80d49 --- /dev/null +++ b/.qt_for_python/uic/loadDataFiles.py @@ -0,0 +1,106 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'c:\perso\trading\anaconda3\backtrader-ichimoku\ui\loadDataFiles.ui' +# +# Created by: PyQt5 UI code generator 5.15.5 +# +# WARNING: Any manual changes made to this file will be lost when pyuic5 is +# run again. Do not edit this file unless you know what you are doing. + + +from PyQt6 import QtCore, QtGui, QtWidgets + + +class Ui_Form(object): + def setupUi(self, Form): + Form.setObjectName("Form") + Form.resize(488, 458) + self.gridLayout_2 = QtWidgets.QGridLayout(Form) + self.gridLayout_2.setObjectName("gridLayout_2") + self.dataFilesListWidget = QtWidgets.QListWidget(Form) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.dataFilesListWidget.sizePolicy().hasHeightForWidth()) + self.dataFilesListWidget.setSizePolicy(sizePolicy) + self.dataFilesListWidget.setObjectName("dataFilesListWidget") + self.gridLayout_2.addWidget(self.dataFilesListWidget, 3, 0, 1, 1) + self.label_4 = QtWidgets.QLabel(Form) + self.label_4.setObjectName("label_4") + self.gridLayout_2.addWidget(self.label_4, 2, 0, 1, 1) + self.importPB = QtWidgets.QPushButton(Form) + self.importPB.setMinimumSize(QtCore.QSize(0, 40)) + self.importPB.setObjectName("importPB") + self.gridLayout_2.addWidget(self.importPB, 5, 0, 1, 2) + self.verticalLayout = QtWidgets.QVBoxLayout() + self.verticalLayout.setObjectName("verticalLayout") + self.gridLayout_2.addLayout(self.verticalLayout, 3, 1, 1, 1) + self.groupBox = QtWidgets.QGroupBox(Form) + self.groupBox.setObjectName("groupBox") + self.gridLayout = QtWidgets.QGridLayout(self.groupBox) + self.gridLayout.setObjectName("gridLayout") + self.semicolonRB = QtWidgets.QRadioButton(self.groupBox) + self.semicolonRB.setObjectName("semicolonRB") + self.gridLayout.addWidget(self.semicolonRB, 3, 3, 1, 1) + self.label = QtWidgets.QLabel(self.groupBox) + self.label.setObjectName("label") + self.gridLayout.addWidget(self.label, 0, 0, 1, 1) + self.label_3 = QtWidgets.QLabel(self.groupBox) + self.label_3.setObjectName("label_3") + self.gridLayout.addWidget(self.label_3, 1, 0, 1, 1) + self.label_2 = QtWidgets.QLabel(self.groupBox) + self.label_2.setObjectName("label_2") + self.gridLayout.addWidget(self.label_2, 3, 0, 1, 1) + self.tabRB = QtWidgets.QRadioButton(self.groupBox) + self.tabRB.setChecked(True) + self.tabRB.setObjectName("tabRB") + self.gridLayout.addWidget(self.tabRB, 3, 1, 1, 1) + self.commaRB = QtWidgets.QRadioButton(self.groupBox) + self.commaRB.setObjectName("commaRB") + self.gridLayout.addWidget(self.commaRB, 3, 2, 1, 1) + self.filePathLE = QtWidgets.QLineEdit(self.groupBox) + self.filePathLE.setObjectName("filePathLE") + self.gridLayout.addWidget(self.filePathLE, 0, 1, 1, 3) + self.openFilePB = QtWidgets.QToolButton(self.groupBox) + self.openFilePB.setObjectName("openFilePB") + self.gridLayout.addWidget(self.openFilePB, 0, 4, 1, 1) + self.datetimeFormatLE = QtWidgets.QLineEdit(self.groupBox) + self.datetimeFormatLE.setObjectName("datetimeFormatLE") + self.gridLayout.addWidget(self.datetimeFormatLE, 1, 1, 1, 4) + self.loadFilePB = QtWidgets.QPushButton(self.groupBox) + self.loadFilePB.setMinimumSize(QtCore.QSize(0, 40)) + self.loadFilePB.setObjectName("loadFilePB") + self.gridLayout.addWidget(self.loadFilePB, 4, 1, 1, 4) + self.errorLabel = QtWidgets.QLabel(self.groupBox) + self.errorLabel.setStyleSheet("color: red") + self.errorLabel.setText("") + self.errorLabel.setAlignment(QtCore.Qt.AlignCenter) + self.errorLabel.setObjectName("errorLabel") + self.gridLayout.addWidget(self.errorLabel, 5, 0, 1, 5) + self.gridLayout_2.addWidget(self.groupBox, 0, 0, 1, 2) + self.label_5 = QtWidgets.QLabel(Form) + self.label_5.setStyleSheet("font-style: italic") + self.label_5.setScaledContents(False) + self.label_5.setAlignment(QtCore.Qt.AlignCenter) + self.label_5.setWordWrap(True) + self.label_5.setObjectName("label_5") + self.gridLayout_2.addWidget(self.label_5, 4, 0, 1, 1) + + self.retranslateUi(Form) + QtCore.QMetaObject.connectSlotsByName(Form) + + def retranslateUi(self, Form): + _translate = QtCore.QCoreApplication.translate + Form.setWindowTitle(_translate("Form", "Import one or multiple data files")) + self.label_4.setText(_translate("Form", "List of all files to import in cerebro")) + self.importPB.setText(_translate("Form", "Import all data files")) + self.groupBox.setTitle(_translate("Form", "Loading a new data file")) + self.semicolonRB.setText(_translate("Form", "semicolon")) + self.label.setText(_translate("Form", "Import a new data file")) + self.label_3.setText(_translate("Form", "Date time format")) + self.label_2.setText(_translate("Form", "Separator")) + self.tabRB.setText(_translate("Form", "tab")) + self.commaRB.setText(_translate("Form", "comma")) + self.openFilePB.setText(_translate("Form", "...")) + self.loadFilePB.setText(_translate("Form", "Load .CSV file")) + self.label_5.setText(_translate("Form", "Files should be ordered from lower (on top) to higher timeframe (at bottom).")) diff --git a/DataFile.py b/DataFile.py new file mode 100644 index 0000000..22cff34 --- /dev/null +++ b/DataFile.py @@ -0,0 +1,24 @@ + +class DataFile(): + + def __init__(self): + + # File location + self.filePath = "" + self.fileName = "" + + # File import parameters + self.timeFrame = "" + self.separator = "" + self.timeFormat = "" + + # Panda data frame + self.dataFrame = None + + pass + + + + + + diff --git a/README.md b/README.md index 7514c91..cdaac73 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,12 @@ +[![Discord](https://img.shields.io/badge/DISCORD-Join%20the%20server-blue?style=for-the-badge&logo=discord)](https://discord.gg/56ERy324) + # Skinok backtrader UI (PyQt and finplot) ![Backtrader PyQt Ui](./images/overview.png "Backtrader PyQt Ui") ![Backtrader PyQt Ui 2](./images/overview2.png "Backtrader PyQt Ui") +![Backtrader PyQt Ui 3](./images/overview3.png "Backtrader PyQt Ui") # How to install ? @@ -19,9 +22,9 @@ pip install git+https://github.com/backtrader2/backtrader matplotlib requests \ # How to use it ? -* Put your CSV Data in the *data* folder -* Create your strategy and put it in the *strategies* folder - Your strategy *file* name should be exactly the same as the strategy *class* name +* Put your CSV Data in the *data* folder +* Create your strategy and put it in the *strategies* folder + Your strategy *file* name should be exactly the same as the strategy *class* name You can take a look at the provided exemples diff --git a/Singleton.py b/Singleton.py new file mode 100644 index 0000000..7b4595c --- /dev/null +++ b/Singleton.py @@ -0,0 +1,7 @@ +class Singleton: + __instance = None + + def __new__(cls,*args, **kwargs): + if cls.__instance is None : + cls.__instance = super(Singleton, cls).__new__(cls, *args, **kwargs) + return cls.__instance \ No newline at end of file diff --git a/Controller.py b/SkinokBacktraderUI.py similarity index 57% rename from Controller.py rename to SkinokBacktraderUI.py index 068108a..59bd802 100644 --- a/Controller.py +++ b/SkinokBacktraderUI.py @@ -17,15 +17,16 @@ # ############################################################################### -import pandas - #import sys #sys.path.append('D:/perso/trading/anaconda3/backtrader2') import backtrader as bt from CerebroEnhanced import * +from PyQt6 import QtWidgets import sys, os -from backtrader.order import BuyOrder, SellOrder +from DataFile import DataFile + +from dataManager import DataManager sys.path.append(os.path.dirname(os.path.realpath(__file__)) + '/observers') sys.path.append(os.path.dirname(os.path.realpath(__file__)) + '/strategies') sys.path.append(os.path.dirname(os.path.realpath(__file__)) + '/../finplot') @@ -37,8 +38,11 @@ from observers.SkinokObserver import SkinokObserver from wallet import Wallet +from userConfig import UserConfig + +from PyQt6 import QtCore -class Controller: +class SkinokBacktraderUI: def __init__(self): @@ -48,7 +52,7 @@ def __init__(self): # Init attributes self.strategyParameters = {} - self.dataframes = {} + self.dataFiles = {} # Global is here to update the Ui in observers easily, if you find a better way, don't hesistate to tell me (Skinok) global interface @@ -64,8 +68,72 @@ def __init__(self): # Once everything is created, initialize data self.interface.initialize() + # Timeframes + self.timeFrameIndex = {"M1" : 0, "M5" : 10, "M15": 20, "M30": 30, "H1":40, "H4":50, "D":60, "W":70} + + self.dataManager = DataManager() + + self.datafileName_to_dataFile={} + + # Restore previous session for faster tests + self.loadConfig() + + pass + + def loadConfig(self): + + userConfig = UserConfig() + userConfig.loadConfigFile() + + isEmpty = True + + # Load previous data files + #for timeframe in self.timeFrameIndex.keys(): + + for timeFrame in userConfig.data.keys(): + + dataFile = DataFile() + + dataFile.filePath = userConfig.data[timeFrame]['filePath'] + dataFile.fileName = userConfig.data[timeFrame]['fileName'] + dataFile.timeFormat = userConfig.data[timeFrame]['timeFormat'] + dataFile.separator = userConfig.data[timeFrame]['separator'] + dataFile.timeFrame = timeFrame + + if not dataFile.timeFormat in self.dataFiles: + dataFile.dataFrame, errorMessage = self.dataManager.loadDataFrame(dataFile) + + if dataFile.dataFrame is not None: + + isEmpty = False + + self.datafileName_to_dataFile[dataFile.fileName] = dataFile + + # REALLY UGLY : it should be a function of user interface + items = self.interface.strategyTesterUI.loadDataFileUI.dataFilesListWidget.findItems(dataFile.fileName, QtCore.Qt.MatchFixedString) + + if len(items) == 0: + self.interface.strategyTesterUI.loadDataFileUI.dataFilesListWidget.addItem(dataFile.fileName) + + self.dataFiles[dataFile.timeFrame] = dataFile + + if not isEmpty: + self.importData() + pass + def removeTimeframe(self, timeFrame): + + # Delete from controler + del self.dataFiles[timeFrame] + + # Delete from chart + self.interface.deleteChartDock(timeFrame) + + # Delete from Cerebro ? + self.resetCerebro() + + pass def resetCerebro(self): @@ -99,47 +167,52 @@ def resetCerebro(self): pass - def loadData(self, dataPath, datetimeFormat, separator): + def importData(self): - # Try importing data file - # We should code a widget that ask for options as : separators, date format, and so on... try: - fileName = os.path.basename(dataPath) - self.dataframes[fileName] = pd.read_csv(dataPath, sep=separator, parse_dates=[0], date_parser=lambda x: pd.to_datetime(x, format=datetimeFormat), skiprows=0, header=0, index_col=0) - except ValueError as err: - return False, "ValueError error:" + str(err) - except AttributeError as err: - return False, "AttributeError error:" + str(err) - except : - return False, "Unexpected error:" + str(sys.exc_info()[0]) - - return True, "" - - def importData(self, fileNamesOrdered): - - # Files should be loaded in the good order - for fileName in fileNamesOrdered: - - df = self.dataframes[fileName] - - # Datetime first column : 2012-12-28 17:45:00 - #self.dataframe['TimeInt'] = pd.to_datetime(self.dataframe.index).astype('int64') # use finplot's internal representation, which is ns - # Pass it to the backtrader datafeed and add it to the cerebro - self.data = bt.feeds.PandasData(dataname=df, timeframe=bt.TimeFrame.Minutes) - - # Add data to cerebro : only add data when all files have been selected for multi-timeframes - self.cerebro.adddata(self.data) # Add the data feed - - # Draw charts based on input data - self.interface.drawChart(df) - - # Enable run button - self.interface.strategyTesterUI.runBacktestPB.setEnabled(True) - + timeFrames = list(self.dataFiles.keys()) + + # Sort data by timeframe + # For cerebro, we need to add lower timeframes first + timeFrames.sort( key=lambda x: self.timeFrameIndex[x] ) + + # Files should be loaded in the good order + for timeFrame in timeFrames: + + df = self.dataFiles[timeFrame].dataFrame + + # Datetime first column : 2012-12-28 17:45:00 + #self.dataframe['TimeInt'] = pd.to_datetime(self.dataframe.index).astype('int64') # use finplot's internal representation, which is ns + + # Pass it to the backtrader datafeed and add it to the cerebro + self.data = bt.feeds.PandasData(dataname=df, timeframe=bt.TimeFrame.Minutes) + + # Add data to cerebro : only add data when all files have been selected for multi-timeframes + self.cerebro.adddata(self.data) # Add the data feed + + # Create the chart window for the good timeframe (if it does not already exists?) + self.interface.createChartDock(timeFrame) + + # Draw charts based on input data + self.interface.drawChart(df, timeFrame) + + # Enable run button + self.interface.strategyTesterUI.runBacktestBtn.setEnabled(True) + + return True + + except AttributeError as e: + print("AttributeError error:" + str(e) + " " + str(sys.exc_info()[0])) + except KeyError as e: + print("KeyError error:" + str(e) + " " + str(sys.exc_info()[0])) + except: + print("Unexpected error:" + str(sys.exc_info()[0])) + return False pass + def addStrategy(self, strategyName): #For now, only one strategy is allowed at a time @@ -156,19 +229,21 @@ def addStrategy(self, strategyName): pass - def strategyParametersChanged(self, lineEdit, parameterName, parameterOldValue): + def strategyParametersChanged(self, widget, parameterName, parameterOldValue): # todo something - if len(lineEdit.text()) > 0: + if len(widget.text()) > 0: param = self.strategyClass.params._get(self.strategyClass.params,parameterName) - if isinstance(param, int): - self.strategyParameters[parameterName] = int(lineEdit.text()) + if isinstance(param, bool): + self.strategyParameters[parameterName] = widget.checkState() == QtCore.Qt.CheckState.Checked + elif isinstance(param, int): + self.strategyParameters[parameterName] = int(widget.text()) elif isinstance(param, float): - self.strategyParameters[parameterName] = int(lineEdit.text()) + self.strategyParameters[parameterName] = float(widget.text()) else: - self.strategyParameters[parameterName] = lineEdit.text() + self.strategyParameters[parameterName] = widget.text() pass @@ -187,8 +262,8 @@ def run(self): self.interface.resetChart() # Add strategy here to get modified parameters - test = self.strategyParameters - self.strategyIndex = self.cerebro.addstrategy(self.strategyClass, test) + params = self.strategyParameters + self.strategyIndex = self.cerebro.addstrategy(self.strategyClass, params) # Wallet Management : reset between each run self.cerebro.broker.setcash(self.startingcash) @@ -206,7 +281,6 @@ def run(self): pass - def displayStrategyResults(self): # Stats on trades #portfolio_stats = self.strat_results.analyzers.getbyname('PyFolio') @@ -217,12 +291,11 @@ def displayStrategyResults(self): #self.interface.createTransactionsUI(self.portfolio_transactions) self.interface.fillSummaryUI(self.strat_results.stats.broker.cash[0], self.strat_results.stats.broker.value[0], self.strat_results.analyzers.ta.get_analysis()) self.interface.fillTradesUI(self.strat_results._trades.items()) - + self.interface.dock_strategyResultsUI.show() #self.interface.drawTrades(self.strat_results._trades.items()) #Orders filters self.myOrders = [] for order in self.strat_results._orders: - if order.status in [order.Completed]: self.myOrders.append(order) @@ -236,10 +309,10 @@ def displayStrategyResults(self): pnl_data['cash'] = self.wallet.cash_list # really uggly - pnl_data['time'] = list(self.dataframes.values())[0].index + pnl_data['time'] = list(self.dataFiles.values())[0].dataFrame.index # draw charts - df = pd.DataFrame(pnl_data) + df = pd.DataFrame(pnl_data) self.interface.displayPnL( df ) pass @@ -254,4 +327,5 @@ def cashChanged(self, cashString): self.startingcash = float(cashString) self.cerebro.broker.setcash(self.startingcash) - pass \ No newline at end of file + pass + diff --git a/backtest_ichimoku.py b/backtest_ichimoku.py deleted file mode 100644 index 6f6c1c3..0000000 --- a/backtest_ichimoku.py +++ /dev/null @@ -1,38 +0,0 @@ -from datetime import datetime -from ichimoku_strat1 import IchimokuStart1 - -import pandas - -from PyQt5.QtWidgets import QApplication, QGridLayout, QMainWindow, QGraphicsView, QComboBox, QLabel -from pyqtgraph.dockarea import DockArea, Dock - -import backtesting.backtesting as bt -import backtesting.lib as btlib - -import sys -sys.path.append('D:/perso/trading/anaconda3/finplot') -import finplot as fplt - -windows = [] # no gc -sounds = {} # no gc -master_data = {} -overlay_axs = [] # for keeping track of candlesticks in overlays - -import userInterface as Ui - -# Get a pandas dataframe -datapath = ('D:/perso/trading/anaconda3/backtrader-ichimoku/data/EURUSD_M15_light.csv') - -dataframe = pandas.read_csv(datapath, - sep='\t', - skiprows=0, - header=0, - parse_dates=True, - index_col=0) - -# Pass it to the backtrader datafeed and add it to the cerebro -backtest = bt.Backtest(dataframe,IchimokuStart1) -backtest.run() - -interace = Ui.UserInterface(); -interace.drawFinPlots(dataframe) \ No newline at end of file diff --git a/connectors/OandaV20Connector.py b/connectors/OandaV20Connector.py new file mode 100644 index 0000000..c1d23c4 --- /dev/null +++ b/connectors/OandaV20Connector.py @@ -0,0 +1,20 @@ + + +# Après avoir importé les librairies nécessaires +class OandaV20Connector(OandaV20Store): + # Le constructeur de la classe + def __init__(self, token, account, practice=True): + # Appelle le constructeur de la classe parente + super().__init__(token=token, account=account, practice=practice) + # Crée un broker à partir du store + self.broker = self.getbroker() + # Crée un data feed à partir du store + self.data = self.getdata(dataname="EUR_USD", timeframe=bt.TimeFrame.Minutes, compression=1) + + # Une méthode pour ajouter le data feed au Cerebro + def add_data(self, cerebro): + cerebro.adddata(self.data) + + # Une méthode pour ajouter le broker au Cerebro + def add_broker(self, cerebro): + cerebro.setbroker(self.broker) diff --git a/custom_indicators/BollingerBandsBandwitch.py b/custom_indicators/BollingerBandsBandwitch.py new file mode 100644 index 0000000..4f57282 --- /dev/null +++ b/custom_indicators/BollingerBandsBandwitch.py @@ -0,0 +1,14 @@ +from backtrader import bt + +class BollingerBandsBandwitch(bt.ind.BollingerBands): + + ''' + Extends the Bollinger Bands with a Percentage line and a Bandwitch indicator + ''' + lines = ('bandwitch',) + plotlines = dict(bandwitch=dict(_name='%Bwtch')) # display the line as %B on chart + + def __init__(self): + super(BollingerBandsBandwitch, self).__init__() + self.l.bandwitch = 100 * (self.l.top - self.l.bot) / self.l.mid + pass \ No newline at end of file diff --git a/indicators/__init__.py b/custom_indicators/__init__.py similarity index 100% rename from indicators/__init__.py rename to custom_indicators/__init__.py diff --git a/indicators/ema.py b/custom_indicators/ema.py similarity index 83% rename from indicators/ema.py rename to custom_indicators/ema.py index b45b18d..66c3eaf 100644 --- a/indicators/ema.py +++ b/custom_indicators/ema.py @@ -12,8 +12,8 @@ def __init__(self, dataFrames, ema_periods=9): self.ema_df = dataFrames["Close"].ewm(span=ema_periods, adjust=False).mean() pass - def draw(self, ax, ema_color = "yellow"): - self.ema_plot = fplt.plot(self.ema_df, ax = ax, color=ema_color, width=1 ) + def draw(self, ax, ema_color = "yellow", width=1): + self.ema_plot = fplt.plot(self.ema_df, ax = ax, color=ema_color, width=width ) pass def clear(self): diff --git a/indicators/fin_macd.py b/custom_indicators/fin_macd.py similarity index 100% rename from indicators/fin_macd.py rename to custom_indicators/fin_macd.py diff --git a/indicators/ichimoku.py b/custom_indicators/ichimoku.py similarity index 92% rename from indicators/ichimoku.py rename to custom_indicators/ichimoku.py index 19c72bc..4f93966 100644 --- a/indicators/ichimoku.py +++ b/custom_indicators/ichimoku.py @@ -14,6 +14,11 @@ class Ichimoku(): + ''' + THIS CLASS TAKE A PANDA DATAFRAME AS INPUT, AND NOT A BACKTRADER DATA FEED (Use bt.Ind.Ichimoku instead) + ''' + + ''' Developed and published in his book in 1969 by journalist Goichi Hosoda @@ -37,6 +42,10 @@ class Ichimoku(): ''' + + ''' + THIS METHOD TAKE A PANDA DATAFRAME AS INPUT, AND NOT A BACKTRADER DATA FEED (Use bt.Ind.Ichimoku instead) + ''' def __init__(self, dataFrames, tenkan = 9, kijun = 26, senkou = 52, senkou_lead = 26, chikou = 26): # Tenkan-sen (Conversion Line): (9-period high + 9-period low)/2)) diff --git a/indicators/rsi.py b/custom_indicators/rsi.py similarity index 100% rename from indicators/rsi.py rename to custom_indicators/rsi.py diff --git a/indicators/sma.py b/custom_indicators/sma.py similarity index 83% rename from indicators/sma.py rename to custom_indicators/sma.py index 34ce7f0..f4eba78 100644 --- a/indicators/sma.py +++ b/custom_indicators/sma.py @@ -12,8 +12,8 @@ def __init__(self, dataFrames, sma_periods=14): self.sma_df = dataFrames["Close"].rolling(window=sma_periods).mean() pass - def draw(self, ax, sma_color = "green"): - self.sma_plot = fplt.plot(self.sma_df, ax = ax, color=sma_color, width=1 ) + def draw(self, ax, sma_color = "green", width=1): + self.sma_plot = fplt.plot(self.sma_df, ax = ax, color=sma_color, width=width ) pass def clear(self): diff --git a/indicators/stochastic.py b/custom_indicators/stochastic.py similarity index 100% rename from indicators/stochastic.py rename to custom_indicators/stochastic.py diff --git a/indicators/stochasticRsi.py b/custom_indicators/stochasticRsi.py similarity index 100% rename from indicators/stochasticRsi.py rename to custom_indicators/stochasticRsi.py diff --git a/data/Source 1/EURUSD_M15_2020.csv b/data/Source 1/EURUSD_M15_2020.csv new file mode 100644 index 0000000..0286bf9 --- /dev/null +++ b/data/Source 1/EURUSD_M15_2020.csv @@ -0,0 +1,24999 @@ +2020-01-01 22:00,1.1212,1.12139,1.12106,1.12127,234 +2020-01-01 22:15,1.12127,1.12154,1.12127,1.12146,221 +2020-01-01 22:30,1.12147,1.12156,1.12138,1.12154,103 +2020-01-01 22:45,1.12155,1.12166,1.12143,1.12143,666 +2020-01-01 23:00,1.12143,1.12218,1.12142,1.12202,620 +2020-01-01 23:15,1.12201,1.1221,1.12195,1.1221,200 +2020-01-01 23:30,1.1221,1.12216,1.12207,1.12208,197 +2020-01-01 23:45,1.12208,1.12208,1.12176,1.12188,390 +2020-01-02 00:00,1.12188,1.1219,1.12161,1.12162,471 +2020-01-02 00:15,1.12161,1.12169,1.12157,1.12161,555 +2020-01-02 00:30,1.12161,1.12174,1.12157,1.12172,380 +2020-01-02 00:45,1.12173,1.1219,1.12172,1.12183,384 +2020-01-02 01:00,1.12182,1.12231,1.1218,1.12225,763 +2020-01-02 01:15,1.12225,1.12244,1.12219,1.12236,1012 +2020-01-02 01:30,1.12234,1.12237,1.1221,1.1221,554 +2020-01-02 01:45,1.1221,1.12211,1.1218,1.12209,806 +2020-01-02 02:00,1.1221,1.1221,1.12184,1.1219,759 +2020-01-02 02:15,1.12191,1.12217,1.12186,1.12216,654 +2020-01-02 02:30,1.12216,1.12239,1.12211,1.12238,381 +2020-01-02 02:45,1.12239,1.12245,1.12218,1.12222,327 +2020-01-02 03:00,1.12224,1.12231,1.12215,1.12217,408 +2020-01-02 03:15,1.12216,1.12218,1.1218,1.12181,766 +2020-01-02 03:30,1.12181,1.12181,1.12131,1.12135,732 +2020-01-02 03:45,1.12134,1.12141,1.12124,1.12132,645 +2020-01-02 04:00,1.12132,1.12142,1.12127,1.12142,489 +2020-01-02 04:15,1.12142,1.12143,1.12119,1.12121,440 +2020-01-02 04:30,1.12122,1.12122,1.1209,1.12096,603 +2020-01-02 04:45,1.12096,1.12099,1.12008,1.12012,1125 +2020-01-02 05:00,1.12011,1.12032,1.12009,1.12013,1693 +2020-01-02 05:15,1.12013,1.12034,1.1201,1.12016,703 +2020-01-02 05:30,1.12017,1.12032,1.12013,1.12028,438 +2020-01-02 05:45,1.12029,1.12044,1.12017,1.12043,592 +2020-01-02 06:00,1.12044,1.1207,1.12042,1.12068,1001 +2020-01-02 06:15,1.12068,1.12069,1.12043,1.12053,902 +2020-01-02 06:30,1.12054,1.1207,1.12036,1.12068,805 +2020-01-02 06:45,1.12068,1.12077,1.1206,1.12077,622 +2020-01-02 07:00,1.12078,1.12099,1.12069,1.12077,1917 +2020-01-02 07:15,1.12077,1.12097,1.12056,1.12062,1503 +2020-01-02 07:30,1.12065,1.12073,1.12043,1.12073,1627 +2020-01-02 07:45,1.12074,1.12102,1.12073,1.12098,1706 +2020-01-02 08:00,1.12099,1.12137,1.12051,1.12098,2892 +2020-01-02 08:15,1.12097,1.12122,1.12072,1.12073,1624 +2020-01-02 08:30,1.12073,1.12103,1.12059,1.1209,1331 +2020-01-02 08:45,1.1209,1.12125,1.12083,1.1212,1352 +2020-01-02 09:00,1.12119,1.12141,1.12092,1.12105,1825 +2020-01-02 09:15,1.12105,1.12122,1.12095,1.121,1485 +2020-01-02 09:30,1.12099,1.12111,1.12052,1.12057,1785 +2020-01-02 09:45,1.12058,1.12059,1.12011,1.1203,1833 +2020-01-02 10:00,1.1203,1.12039,1.1201,1.1201,1750 +2020-01-02 10:15,1.12011,1.12011,1.11927,1.11933,2120 +2020-01-02 10:30,1.11933,1.1196,1.11927,1.11938,1671 +2020-01-02 10:45,1.11939,1.11997,1.11935,1.11982,1691 +2020-01-02 11:00,1.11984,1.12021,1.11967,1.12004,2335 +2020-01-02 11:15,1.12003,1.12003,1.11942,1.11946,2077 +2020-01-02 11:30,1.11947,1.11954,1.11871,1.11899,2458 +2020-01-02 11:45,1.11898,1.11906,1.11842,1.11848,1999 +2020-01-02 12:00,1.11847,1.11908,1.11829,1.11906,2184 +2020-01-02 12:15,1.11907,1.11925,1.11881,1.11916,1576 +2020-01-02 12:30,1.11917,1.11943,1.1191,1.11918,1655 +2020-01-02 12:45,1.11919,1.1194,1.11899,1.1193,1600 +2020-01-02 13:00,1.11929,1.11941,1.11909,1.11923,1810 +2020-01-02 13:15,1.11923,1.11969,1.11916,1.11952,2559 +2020-01-02 13:30,1.11951,1.11952,1.11896,1.11932,2635 +2020-01-02 13:45,1.11933,1.1197,1.11918,1.11963,181195 +2020-01-02 14:00,1.11963,1.11965,1.11851,1.11861,23562 +2020-01-02 14:15,1.1186,1.11872,1.11766,1.11773,47616 +2020-01-02 14:30,1.11774,1.11802,1.11712,1.11724,9808 +2020-01-02 14:45,1.11724,1.11749,1.117,1.11741,40664 +2020-01-02 15:00,1.11739,1.11765,1.11713,1.11752,5118 +2020-01-02 15:15,1.11752,1.1178,1.11708,1.11739,23881 +2020-01-02 15:30,1.11738,1.11828,1.11724,1.1181,4842 +2020-01-02 15:45,1.11812,1.12023,1.11803,1.12005,8645 +2020-01-02 16:00,1.12006,1.1203,1.11868,1.11873,30098 +2020-01-02 16:15,1.11875,1.11875,1.11829,1.11845,7726 +2020-01-02 16:30,1.11844,1.11866,1.11753,1.11757,3285 +2020-01-02 16:45,1.11757,1.11775,1.11651,1.11661,2986 +2020-01-02 17:00,1.11661,1.11666,1.11636,1.1166,2268 +2020-01-02 17:15,1.11659,1.11711,1.11635,1.11705,2743 +2020-01-02 17:30,1.11706,1.11719,1.11677,1.11704,1174 +2020-01-02 17:45,1.11704,1.11717,1.11645,1.11698,1964 +2020-01-02 18:00,1.11698,1.11712,1.11643,1.11648,2332 +2020-01-02 18:15,1.11647,1.11683,1.11636,1.11674,1466 +2020-01-02 18:30,1.11675,1.11723,1.11672,1.11713,1567 +2020-01-02 18:45,1.11713,1.11714,1.11663,1.11702,1497 +2020-01-02 19:00,1.11702,1.11703,1.11675,1.11702,1263 +2020-01-02 19:15,1.11703,1.11703,1.11678,1.11681,1406 +2020-01-02 19:30,1.11682,1.11682,1.11643,1.11653,1567 +2020-01-02 19:45,1.11654,1.11674,1.11642,1.11663,1395 +2020-01-02 20:00,1.11662,1.11705,1.11659,1.117,1232 +2020-01-02 20:15,1.117,1.11715,1.11695,1.1171,734 +2020-01-02 20:30,1.1171,1.11712,1.11684,1.11684,816 +2020-01-02 20:45,1.11684,1.11701,1.11667,1.11693,913 +2020-01-02 21:00,1.11692,1.11723,1.11689,1.11717,612 +2020-01-02 21:15,1.11717,1.11735,1.11717,1.11733,264 +2020-01-02 21:30,1.11733,1.11733,1.11716,1.11717,235 +2020-01-02 21:45,1.11718,1.11727,1.11712,1.11722,409 +2020-01-02 22:00,1.11722,1.11726,1.11692,1.11718,452 +2020-01-02 22:15,1.11718,1.11719,1.11687,1.11714,143 +2020-01-02 22:30,1.11715,1.1173,1.1171,1.11718,162 +2020-01-02 22:45,1.11718,1.11721,1.1171,1.11713,82 +2020-01-02 23:00,1.11712,1.11732,1.11712,1.11727,354 +2020-01-02 23:15,1.11727,1.11734,1.11722,1.11729,224 +2020-01-02 23:30,1.1173,1.11734,1.11702,1.11708,326 +2020-01-02 23:45,1.11707,1.1171,1.11701,1.11708,211 +2020-01-03 00:00,1.11707,1.11738,1.11698,1.11729,441 +2020-01-03 00:15,1.11729,1.11731,1.11714,1.11725,241 +2020-01-03 00:30,1.11725,1.1173,1.11723,1.11725,506 +2020-01-03 00:45,1.11726,1.1176,1.11725,1.11754,583 +2020-01-03 01:00,1.11753,1.11779,1.11745,1.11774,387 +2020-01-03 01:15,1.11774,1.11784,1.11759,1.11759,763 +2020-01-03 01:30,1.11759,1.11759,1.11728,1.11729,696 +2020-01-03 01:45,1.11729,1.11768,1.11722,1.11735,1489 +2020-01-03 02:00,1.11735,1.11765,1.11733,1.11756,1123 +2020-01-03 02:15,1.11756,1.11772,1.11741,1.11763,1665 +2020-01-03 02:30,1.11763,1.11774,1.1175,1.11767,1360 +2020-01-03 02:45,1.11767,1.11771,1.11718,1.11725,2051 +2020-01-03 03:00,1.11725,1.11733,1.11712,1.11729,770 +2020-01-03 03:15,1.11729,1.11732,1.11695,1.11718,1194 +2020-01-03 03:30,1.11718,1.11725,1.11712,1.11718,747 +2020-01-03 03:45,1.11718,1.11736,1.11716,1.1172,805 +2020-01-03 04:00,1.1172,1.11749,1.1172,1.11745,845 +2020-01-03 04:15,1.11745,1.11745,1.11733,1.11735,551 +2020-01-03 04:30,1.11736,1.11742,1.11703,1.11717,708 +2020-01-03 04:45,1.11717,1.11719,1.11685,1.117,650 +2020-01-03 05:00,1.117,1.11706,1.11667,1.11675,1007 +2020-01-03 05:15,1.11675,1.11675,1.11643,1.11663,991 +2020-01-03 05:30,1.11664,1.117,1.11657,1.11689,1277 +2020-01-03 05:45,1.1169,1.11701,1.11663,1.11663,752 +2020-01-03 06:00,1.11663,1.11667,1.11638,1.11652,1167 +2020-01-03 06:15,1.11653,1.11682,1.11643,1.11675,760 +2020-01-03 06:30,1.11674,1.11693,1.11672,1.11685,454 +2020-01-03 06:45,1.11686,1.11695,1.11679,1.11691,612 +2020-01-03 07:00,1.11691,1.11715,1.1163,1.11633,2192 +2020-01-03 07:15,1.11632,1.11643,1.11565,1.11585,2485 +2020-01-03 07:30,1.11586,1.11602,1.1156,1.11574,1815 +2020-01-03 07:45,1.11575,1.11594,1.11521,1.11532,2742 +2020-01-03 08:00,1.11531,1.11603,1.1152,1.11585,2866 +2020-01-03 08:15,1.11586,1.11604,1.11541,1.11583,2594 +2020-01-03 08:30,1.11581,1.1159,1.11524,1.11534,2246 +2020-01-03 08:45,1.11537,1.11541,1.11505,1.11512,4572 +2020-01-03 09:00,1.11512,1.11522,1.11464,1.11468,3023 +2020-01-03 09:15,1.11467,1.11474,1.1143,1.1147,2455 +2020-01-03 09:30,1.1147,1.11496,1.11445,1.11454,3177 +2020-01-03 09:45,1.11454,1.11456,1.114,1.11401,2883 +2020-01-03 10:00,1.114,1.11433,1.11315,1.11334,3669 +2020-01-03 10:15,1.11334,1.11373,1.11328,1.11348,2675 +2020-01-03 10:30,1.11347,1.11357,1.11307,1.11318,2152 +2020-01-03 10:45,1.11317,1.11367,1.1131,1.1136,2215 +2020-01-03 11:00,1.11361,1.11361,1.11266,1.11313,2550 +2020-01-03 11:15,1.11314,1.11314,1.11278,1.11297,1860 +2020-01-03 11:30,1.11298,1.11312,1.11252,1.11274,2558 +2020-01-03 11:45,1.11274,1.113,1.11249,1.113,2137 +2020-01-03 12:00,1.113,1.11321,1.11281,1.11314,1830 +2020-01-03 12:15,1.11312,1.11326,1.11286,1.11302,1719 +2020-01-03 12:30,1.11302,1.11405,1.11297,1.11403,2444 +2020-01-03 12:45,1.11402,1.11426,1.1136,1.11391,2122 +2020-01-03 13:00,1.11392,1.11475,1.11375,1.11465,3558 +2020-01-03 13:15,1.11465,1.11488,1.11452,1.11457,2410 +2020-01-03 13:30,1.11458,1.11478,1.11442,1.11465,1436 +2020-01-03 13:45,1.11465,1.11466,1.11373,1.11381,2956 +2020-01-03 14:00,1.1138,1.11434,1.11353,1.11411,2605 +2020-01-03 14:15,1.1141,1.11491,1.1141,1.11464,2448 +2020-01-03 14:30,1.11465,1.11528,1.11462,1.11515,3346 +2020-01-03 14:45,1.11514,1.11541,1.11495,1.11522,2782 +2020-01-03 15:00,1.11525,1.11669,1.11525,1.11616,4592 +2020-01-03 15:15,1.11614,1.11667,1.11592,1.1163,3135 +2020-01-03 15:30,1.11631,1.1165,1.11579,1.11631,2228 +2020-01-03 15:45,1.11631,1.11674,1.1156,1.11633,3325 +2020-01-03 16:00,1.11634,1.11684,1.11624,1.11681,20543 +2020-01-03 16:15,1.1168,1.11744,1.11677,1.11736,9592 +2020-01-03 16:30,1.11735,1.11798,1.1173,1.11737,2808 +2020-01-03 16:45,1.11737,1.11752,1.11711,1.11719,2009 +2020-01-03 17:00,1.1172,1.1174,1.1171,1.11727,1710 +2020-01-03 17:15,1.11729,1.11736,1.11708,1.11727,1274 +2020-01-03 17:30,1.11726,1.11727,1.11679,1.11712,1197 +2020-01-03 17:45,1.11713,1.11736,1.11707,1.11721,1142 +2020-01-03 18:00,1.11721,1.11732,1.11705,1.11725,1036 +2020-01-03 18:15,1.11725,1.11728,1.11697,1.11701,1218 +2020-01-03 18:30,1.11701,1.11716,1.11661,1.11684,2281 +2020-01-03 18:45,1.11683,1.11692,1.11659,1.11666,1237 +2020-01-03 19:00,1.11665,1.11681,1.1164,1.11666,2002 +2020-01-03 19:15,1.11666,1.11666,1.11612,1.11628,1846 +2020-01-03 19:30,1.11628,1.11638,1.11615,1.11625,1153 +2020-01-03 19:45,1.11625,1.11677,1.11623,1.11673,1342 +2020-01-03 20:00,1.11673,1.11674,1.11628,1.11635,772 +2020-01-03 20:15,1.11634,1.11643,1.11615,1.11618,819 +2020-01-03 20:30,1.11617,1.11619,1.11602,1.11613,756 +2020-01-03 20:45,1.11612,1.11616,1.116,1.11616,792 +2020-01-03 21:00,1.11614,1.1162,1.1158,1.11582,712 +2020-01-03 21:15,1.11583,1.116,1.11578,1.116,191 +2020-01-03 21:30,1.11598,1.11601,1.11572,1.11574,209 +2020-01-03 21:45,1.11573,1.11596,1.11523,1.11548,384 +2020-01-05 22:00,1.11656,1.11667,1.11601,1.11616,81 +2020-01-05 22:15,1.11616,1.11625,1.11589,1.11603,130 +2020-01-05 22:30,1.11602,1.11616,1.11599,1.11605,96 +2020-01-05 22:45,1.11601,1.11609,1.1159,1.11594,89 +2020-01-05 23:00,1.11595,1.11642,1.11592,1.11639,788 +2020-01-05 23:15,1.11639,1.11676,1.11636,1.11674,1068 +2020-01-05 23:30,1.11672,1.11677,1.11638,1.11658,1007 +2020-01-05 23:45,1.11659,1.11659,1.11603,1.11604,1142 +2020-01-06 00:00,1.11603,1.11671,1.116,1.11639,1345 +2020-01-06 00:15,1.1164,1.11681,1.1164,1.11671,617 +2020-01-06 00:30,1.1167,1.11685,1.11654,1.11674,857 +2020-01-06 00:45,1.11673,1.11678,1.11628,1.11635,1151 +2020-01-06 01:00,1.11635,1.11653,1.11617,1.11627,1652 +2020-01-06 01:15,1.11627,1.11639,1.11622,1.11633,861 +2020-01-06 01:30,1.11635,1.11639,1.11612,1.11624,1057 +2020-01-06 01:45,1.11623,1.11638,1.11616,1.11627,1078 +2020-01-06 02:00,1.11628,1.11644,1.11626,1.11631,806 +2020-01-06 02:15,1.11631,1.11666,1.11624,1.11664,526 +2020-01-06 02:30,1.11664,1.11671,1.11652,1.1166,636 +2020-01-06 02:45,1.1166,1.11666,1.11644,1.11653,681 +2020-01-06 03:00,1.11654,1.11681,1.11653,1.11674,617 +2020-01-06 03:15,1.11673,1.11707,1.11673,1.11703,630 +2020-01-06 03:30,1.11703,1.11709,1.11667,1.11676,1310 +2020-01-06 03:45,1.11677,1.11691,1.11656,1.11657,1113 +2020-01-06 04:00,1.11658,1.11661,1.11647,1.11651,660 +2020-01-06 04:15,1.11652,1.11657,1.11624,1.11633,1688 +2020-01-06 04:30,1.11632,1.11637,1.11621,1.11627,657 +2020-01-06 04:45,1.11627,1.11644,1.11616,1.11642,1384 +2020-01-06 05:00,1.11644,1.11651,1.11636,1.11641,593 +2020-01-06 05:15,1.11642,1.11649,1.11641,1.11644,641 +2020-01-06 05:30,1.11644,1.11647,1.11628,1.11628,499 +2020-01-06 05:45,1.11628,1.11628,1.11606,1.11623,895 +2020-01-06 06:00,1.11622,1.11624,1.11582,1.11583,854 +2020-01-06 06:15,1.11582,1.11604,1.11571,1.11603,1163 +2020-01-06 06:30,1.11603,1.11605,1.11574,1.11588,682 +2020-01-06 06:45,1.11591,1.11615,1.11588,1.11607,1010 +2020-01-06 07:00,1.11606,1.11636,1.11606,1.11618,1900 +2020-01-06 07:15,1.11617,1.1165,1.11597,1.1163,2029 +2020-01-06 07:30,1.11628,1.11656,1.11615,1.1165,1974 +2020-01-06 07:45,1.11651,1.11667,1.11645,1.11646,1679 +2020-01-06 08:00,1.11647,1.1167,1.11634,1.11639,2540 +2020-01-06 08:15,1.11638,1.11698,1.11632,1.11667,2147 +2020-01-06 08:30,1.11666,1.11698,1.11653,1.11692,1788 +2020-01-06 08:45,1.11691,1.11799,1.11676,1.11785,2820 +2020-01-06 09:00,1.11786,1.11814,1.11767,1.11782,2624 +2020-01-06 09:15,1.11781,1.11797,1.11751,1.1179,1951 +2020-01-06 09:30,1.1179,1.1189,1.11786,1.1189,2746 +2020-01-06 09:45,1.11889,1.11936,1.11875,1.11932,2966 +2020-01-06 10:00,1.11934,1.11954,1.11899,1.11943,2403 +2020-01-06 10:15,1.11943,1.11996,1.11932,1.11961,2513 +2020-01-06 10:30,1.11962,1.11982,1.11924,1.11953,1815 +2020-01-06 10:45,1.11954,1.11978,1.11954,1.11964,1707 +2020-01-06 11:00,1.11963,1.12051,1.11962,1.1203,2758 +2020-01-06 11:15,1.12029,1.12053,1.1199,1.12024,1858 +2020-01-06 11:30,1.12024,1.12055,1.12014,1.12017,1913 +2020-01-06 11:45,1.12016,1.12054,1.12009,1.12032,1441 +2020-01-06 12:00,1.12032,1.12043,1.11969,1.11975,1891 +2020-01-06 12:15,1.11975,1.11985,1.11958,1.1198,1447 +2020-01-06 12:30,1.11981,1.11984,1.11951,1.11982,1087 +2020-01-06 12:45,1.11982,1.11998,1.11967,1.11981,1946 +2020-01-06 13:00,1.11982,1.12002,1.11934,1.11935,2497 +2020-01-06 13:15,1.11937,1.11972,1.11911,1.11958,2155 +2020-01-06 13:30,1.11959,1.12032,1.1195,1.11998,2427 +2020-01-06 13:45,1.11998,1.12,1.11963,1.11976,1644 +2020-01-06 14:00,1.11976,1.12002,1.1195,1.11951,1941 +2020-01-06 14:15,1.1195,1.11972,1.11929,1.11946,4540 +2020-01-06 14:30,1.11947,1.11962,1.11883,1.11895,2796 +2020-01-06 14:45,1.11896,1.11897,1.11825,1.11831,3311 +2020-01-06 15:00,1.11832,1.11881,1.11828,1.11861,2532 +2020-01-06 15:15,1.11861,1.11881,1.11826,1.11876,2197 +2020-01-06 15:30,1.11875,1.11902,1.11827,1.1183,3207 +2020-01-06 15:45,1.11828,1.11901,1.11821,1.11886,3420 +2020-01-06 16:00,1.11887,1.11896,1.1181,1.1181,2408 +2020-01-06 16:15,1.11809,1.11875,1.11809,1.11858,2486 +2020-01-06 16:30,1.11857,1.11879,1.11855,1.11867,2169 +2020-01-06 16:45,1.11866,1.11873,1.11846,1.11872,1979 +2020-01-06 17:00,1.11872,1.11936,1.11842,1.11922,1944 +2020-01-06 17:15,1.11924,1.1196,1.1192,1.11929,1327 +2020-01-06 17:30,1.11929,1.11932,1.11913,1.11915,783 +2020-01-06 17:45,1.11916,1.1195,1.11906,1.1195,1364 +2020-01-06 18:00,1.11952,1.11963,1.11934,1.11942,1212 +2020-01-06 18:15,1.11944,1.11966,1.11932,1.11955,984 +2020-01-06 18:30,1.11956,1.11973,1.1195,1.11972,880 +2020-01-06 18:45,1.11973,1.11979,1.11917,1.11919,1312 +2020-01-06 19:00,1.11918,1.11928,1.11906,1.11916,1001 +2020-01-06 19:15,1.11917,1.11925,1.11901,1.1192,725 +2020-01-06 19:30,1.11919,1.11922,1.11879,1.1188,995 +2020-01-06 19:45,1.1188,1.11921,1.1188,1.11912,1085 +2020-01-06 20:00,1.11914,1.11917,1.11889,1.119,862 +2020-01-06 20:15,1.119,1.11913,1.11899,1.11903,672 +2020-01-06 20:30,1.11902,1.11909,1.11894,1.11904,639 +2020-01-06 20:45,1.11905,1.11939,1.11893,1.11936,1261 +2020-01-06 21:00,1.11936,1.11941,1.11928,1.1194,363 +2020-01-06 21:15,1.11939,1.11955,1.1193,1.11946,346 +2020-01-06 21:30,1.11946,1.11962,1.11946,1.11961,228 +2020-01-06 21:45,1.11961,1.11989,1.1196,1.11968,293 +2020-01-06 22:00,1.1196,1.1196,1.11928,1.1196,631 +2020-01-06 22:15,1.1196,1.1196,1.11951,1.11955,154 +2020-01-06 22:30,1.11955,1.11961,1.11951,1.11955,898 +2020-01-06 22:45,1.11955,1.11959,1.11951,1.11955,661 +2020-01-06 23:00,1.11955,1.11975,1.11955,1.11957,401 +2020-01-06 23:15,1.11957,1.11957,1.11946,1.11951,712 +2020-01-06 23:30,1.11951,1.11951,1.11941,1.11942,491 +2020-01-06 23:45,1.11942,1.11963,1.11942,1.11954,447 +2020-01-07 00:00,1.11953,1.11954,1.1193,1.11952,737 +2020-01-07 00:15,1.11953,1.11953,1.11936,1.11937,431 +2020-01-07 00:30,1.11936,1.11937,1.11915,1.11916,556 +2020-01-07 00:45,1.11917,1.11926,1.11891,1.11897,1110 +2020-01-07 01:00,1.11897,1.11921,1.11896,1.11918,627 +2020-01-07 01:15,1.11918,1.1197,1.11918,1.11964,628 +2020-01-07 01:30,1.11965,1.1197,1.11944,1.11968,855 +2020-01-07 01:45,1.11969,1.11969,1.11933,1.11934,920 +2020-01-07 02:00,1.11934,1.11934,1.11922,1.11926,761 +2020-01-07 02:15,1.11927,1.11934,1.11915,1.11918,695 +2020-01-07 02:30,1.11917,1.11923,1.11909,1.11912,432 +2020-01-07 02:45,1.11912,1.11919,1.11912,1.11913,447 +2020-01-07 03:00,1.11914,1.11942,1.11912,1.11939,792 +2020-01-07 03:15,1.11939,1.11943,1.11927,1.1193,640 +2020-01-07 03:30,1.1193,1.11943,1.11927,1.11929,482 +2020-01-07 03:45,1.11929,1.11934,1.1192,1.11922,367 +2020-01-07 04:00,1.11921,1.11931,1.11911,1.11923,756 +2020-01-07 04:15,1.11925,1.11934,1.11925,1.1193,558 +2020-01-07 04:30,1.11929,1.11931,1.11919,1.11928,395 +2020-01-07 04:45,1.11928,1.11933,1.11905,1.11909,474 +2020-01-07 05:00,1.11908,1.11924,1.11902,1.11919,471 +2020-01-07 05:15,1.11919,1.1192,1.11908,1.11914,423 +2020-01-07 05:30,1.11915,1.11919,1.11908,1.11908,328 +2020-01-07 05:45,1.11907,1.11907,1.11828,1.1183,1400 +2020-01-07 06:00,1.11829,1.11886,1.11809,1.11873,2190 +2020-01-07 06:15,1.11872,1.11881,1.11832,1.11852,1230 +2020-01-07 06:30,1.11853,1.11897,1.11852,1.11877,1084 +2020-01-07 06:45,1.11876,1.11893,1.11809,1.11816,1705 +2020-01-07 07:00,1.11815,1.11854,1.11782,1.11841,2339 +2020-01-07 07:15,1.1184,1.11852,1.11811,1.11815,1696 +2020-01-07 07:30,1.11814,1.11817,1.11731,1.11773,2775 +2020-01-07 07:45,1.11772,1.11787,1.11729,1.1174,1871 +2020-01-07 08:00,1.1174,1.11781,1.11726,1.11754,3096 +2020-01-07 08:15,1.11754,1.11809,1.11737,1.11806,2359 +2020-01-07 08:30,1.11805,1.11875,1.11802,1.11835,2698 +2020-01-07 08:45,1.11834,1.11866,1.11823,1.11847,2234 +2020-01-07 09:00,1.11846,1.11896,1.11839,1.11855,2376 +2020-01-07 09:15,1.11854,1.11866,1.11809,1.11829,1950 +2020-01-07 09:30,1.11829,1.11844,1.11811,1.11827,1878 +2020-01-07 09:45,1.11827,1.11849,1.11805,1.11845,1780 +2020-01-07 10:00,1.11846,1.11862,1.11809,1.11836,2338 +2020-01-07 10:15,1.11837,1.11856,1.11648,1.11662,3610 +2020-01-07 10:30,1.11664,1.11738,1.11661,1.11734,2359 +2020-01-07 10:45,1.11736,1.11766,1.11717,1.11762,1603 +2020-01-07 11:00,1.11762,1.11775,1.1172,1.11744,2327 +2020-01-07 11:15,1.11744,1.11794,1.11735,1.11787,2495 +2020-01-07 11:30,1.11788,1.11817,1.11763,1.11811,1770 +2020-01-07 11:45,1.11811,1.11849,1.11777,1.11816,3283 +2020-01-07 12:00,1.11817,1.11831,1.11786,1.11811,2741 +2020-01-07 12:15,1.1181,1.1181,1.11771,1.11795,1958 +2020-01-07 12:30,1.11796,1.11805,1.11772,1.1179,1860 +2020-01-07 12:45,1.1179,1.11798,1.11708,1.11748,2537 +2020-01-07 13:00,1.11746,1.11778,1.11705,1.11719,3460 +2020-01-07 13:15,1.11718,1.11757,1.11677,1.11737,2722 +2020-01-07 13:30,1.11736,1.11738,1.11661,1.11679,3369 +2020-01-07 13:45,1.1168,1.11697,1.11548,1.11561,3304 +2020-01-07 14:00,1.1156,1.1161,1.1155,1.116,2862 +2020-01-07 14:15,1.11601,1.11622,1.11565,1.11577,2607 +2020-01-07 14:30,1.11576,1.11599,1.11491,1.1156,3690 +2020-01-07 14:45,1.11561,1.11561,1.11465,1.11478,3531 +2020-01-07 15:00,1.11476,1.11516,1.11415,1.1151,4217 +2020-01-07 15:15,1.1151,1.1151,1.11376,1.11399,3950 +2020-01-07 15:30,1.11398,1.11426,1.11351,1.11352,3606 +2020-01-07 15:45,1.11352,1.11419,1.11342,1.11417,3098 +2020-01-07 16:00,1.11417,1.11439,1.11367,1.11378,2768 +2020-01-07 16:15,1.11379,1.11384,1.11335,1.11384,2060 +2020-01-07 16:30,1.11383,1.11394,1.11342,1.11368,1900 +2020-01-07 16:45,1.11369,1.11387,1.11357,1.11369,1741 +2020-01-07 17:00,1.11369,1.11419,1.11366,1.11419,1868 +2020-01-07 17:15,1.11417,1.11461,1.11413,1.1144,1666 +2020-01-07 17:30,1.11442,1.11473,1.11425,1.11463,1574 +2020-01-07 17:45,1.11462,1.1147,1.11416,1.11424,1601 +2020-01-07 18:00,1.11425,1.11446,1.11414,1.11434,1159 +2020-01-07 18:15,1.11436,1.11495,1.11436,1.11489,1353 +2020-01-07 18:30,1.11489,1.11492,1.11442,1.11449,930 +2020-01-07 18:45,1.11449,1.11465,1.11433,1.11434,759 +2020-01-07 19:00,1.11435,1.11442,1.11417,1.1143,1221 +2020-01-07 19:15,1.11431,1.11441,1.11422,1.11433,1068 +2020-01-07 19:30,1.11432,1.11443,1.1142,1.11436,916 +2020-01-07 19:45,1.11434,1.1145,1.11429,1.11445,1442 +2020-01-07 20:00,1.11446,1.11477,1.11446,1.11459,1019 +2020-01-07 20:15,1.11459,1.11471,1.11453,1.11464,742 +2020-01-07 20:30,1.11464,1.11464,1.11432,1.11435,1834 +2020-01-07 20:45,1.11436,1.11438,1.11423,1.11438,796 +2020-01-07 21:00,1.11439,1.11463,1.11437,1.11459,451 +2020-01-07 21:15,1.11459,1.11465,1.11452,1.11457,257 +2020-01-07 21:30,1.11456,1.11485,1.11456,1.11458,511 +2020-01-07 21:45,1.11457,1.11536,1.11452,1.11526,1063 +2020-01-07 22:00,1.11529,1.11536,1.11476,1.11479,316 +2020-01-07 22:15,1.11492,1.11516,1.11482,1.11488,495 +2020-01-07 22:30,1.11488,1.11488,1.11452,1.11474,276 +2020-01-07 22:45,1.11479,1.11494,1.11447,1.11477,505 +2020-01-07 23:00,1.11473,1.11502,1.11462,1.11487,575 +2020-01-07 23:15,1.11488,1.1154,1.11484,1.11523,1148 +2020-01-07 23:30,1.11523,1.11523,1.11487,1.11494,1879 +2020-01-07 23:45,1.11493,1.11544,1.11475,1.1154,1889 +2020-01-08 00:00,1.11539,1.11682,1.11525,1.11671,3345 +2020-01-08 00:15,1.1167,1.1167,1.11599,1.11623,3397 +2020-01-08 00:30,1.11624,1.11654,1.11602,1.11604,2870 +2020-01-08 00:45,1.11604,1.11624,1.11585,1.11586,2444 +2020-01-08 01:00,1.11585,1.11632,1.11585,1.1161,3065 +2020-01-08 01:15,1.11609,1.11621,1.11584,1.11591,1676 +2020-01-08 01:30,1.11591,1.11626,1.11565,1.11566,2220 +2020-01-08 01:45,1.11565,1.11587,1.11548,1.11557,2279 +2020-01-08 02:00,1.11557,1.11567,1.11539,1.11547,2211 +2020-01-08 02:15,1.11548,1.1157,1.11541,1.11553,885 +2020-01-08 02:30,1.11551,1.11552,1.11531,1.11534,2053 +2020-01-08 02:45,1.11534,1.11613,1.11531,1.11586,2135 +2020-01-08 03:00,1.11587,1.11591,1.11565,1.11571,1176 +2020-01-08 03:15,1.11573,1.11586,1.11563,1.11571,1488 +2020-01-08 03:30,1.11571,1.11581,1.1155,1.11553,1034 +2020-01-08 03:45,1.11554,1.11556,1.11536,1.11546,657 +2020-01-08 04:00,1.11545,1.11557,1.1154,1.11551,550 +2020-01-08 04:15,1.11552,1.11556,1.11504,1.11504,701 +2020-01-08 04:30,1.11505,1.11505,1.11474,1.11478,876 +2020-01-08 04:45,1.1148,1.11482,1.1145,1.11476,1025 +2020-01-08 05:00,1.11478,1.11492,1.11476,1.11476,1193 +2020-01-08 05:15,1.11475,1.11498,1.11473,1.11494,730 +2020-01-08 05:30,1.11493,1.11513,1.11493,1.11501,739 +2020-01-08 05:45,1.115,1.11501,1.1148,1.11492,908 +2020-01-08 06:00,1.11491,1.1151,1.11484,1.1149,919 +2020-01-08 06:15,1.1149,1.11539,1.11484,1.1153,990 +2020-01-08 06:30,1.1153,1.11533,1.11507,1.11521,821 +2020-01-08 06:45,1.11522,1.11533,1.11486,1.115,1192 +2020-01-08 07:00,1.11501,1.11548,1.11457,1.11479,2558 +2020-01-08 07:15,1.11481,1.11508,1.11447,1.11452,2112 +2020-01-08 07:30,1.11451,1.11517,1.11432,1.11507,2843 +2020-01-08 07:45,1.11508,1.11549,1.11504,1.11511,2321 +2020-01-08 08:00,1.11513,1.11533,1.11315,1.11428,3982 +2020-01-08 08:15,1.11427,1.1144,1.11312,1.11374,5521 +2020-01-08 08:30,1.11374,1.11374,1.11301,1.11353,3707 +2020-01-08 08:45,1.11354,1.11374,1.11337,1.11348,2640 +2020-01-08 09:00,1.11349,1.11355,1.11253,1.11267,2978 +2020-01-08 09:15,1.11267,1.11353,1.11267,1.11352,2172 +2020-01-08 09:30,1.11352,1.11447,1.11342,1.11416,2526 +2020-01-08 09:45,1.11416,1.11423,1.1138,1.11383,3957 +2020-01-08 10:00,1.11382,1.11385,1.11324,1.1134,3259 +2020-01-08 10:15,1.11339,1.11348,1.113,1.11309,2241 +2020-01-08 10:30,1.11308,1.11328,1.11277,1.11328,1855 +2020-01-08 10:45,1.11327,1.11328,1.11254,1.11273,2897 +2020-01-08 11:00,1.11274,1.11309,1.11269,1.11282,1775 +2020-01-08 11:15,1.11282,1.11299,1.11196,1.11286,3084 +2020-01-08 11:30,1.11286,1.11305,1.11248,1.11287,2652 +2020-01-08 11:45,1.11287,1.11311,1.11247,1.11271,5514 +2020-01-08 12:00,1.11271,1.11307,1.1125,1.11292,2596 +2020-01-08 12:15,1.11292,1.11304,1.11219,1.11247,2209 +2020-01-08 12:30,1.11248,1.11262,1.11218,1.11226,3186 +2020-01-08 12:45,1.11225,1.11244,1.11139,1.11167,3533 +2020-01-08 13:00,1.11166,1.11194,1.11123,1.11155,3286 +2020-01-08 13:15,1.11155,1.11179,1.11111,1.11147,4545 +2020-01-08 13:30,1.11147,1.11198,1.11145,1.1116,4031 +2020-01-08 13:45,1.11163,1.11224,1.11156,1.11199,1951 +2020-01-08 14:00,1.112,1.11227,1.11176,1.11214,3079 +2020-01-08 14:15,1.11214,1.11249,1.112,1.11247,1882 +2020-01-08 14:30,1.11248,1.11269,1.11176,1.11184,3616 +2020-01-08 14:45,1.11185,1.11254,1.11176,1.11245,2408 +2020-01-08 15:00,1.11244,1.11308,1.11225,1.11301,2378 +2020-01-08 15:15,1.11301,1.11306,1.11222,1.11238,2448 +2020-01-08 15:30,1.11237,1.11238,1.11158,1.11224,3225 +2020-01-08 15:45,1.11223,1.11226,1.11153,1.11198,3232 +2020-01-08 16:00,1.11197,1.11201,1.11112,1.11138,2292 +2020-01-08 16:15,1.11139,1.1115,1.11087,1.11123,2288 +2020-01-08 16:30,1.11123,1.11169,1.11102,1.11163,4994 +2020-01-08 16:45,1.11164,1.11179,1.11102,1.11164,3913 +2020-01-08 17:00,1.11163,1.11259,1.11155,1.11219,3606 +2020-01-08 17:15,1.11219,1.11233,1.11188,1.11207,2738 +2020-01-08 17:30,1.11208,1.11216,1.11135,1.11145,2325 +2020-01-08 17:45,1.11144,1.11183,1.11131,1.1118,2225 +2020-01-08 18:00,1.1118,1.1118,1.11104,1.11126,2328 +2020-01-08 18:15,1.11126,1.11148,1.11111,1.11147,1608 +2020-01-08 18:30,1.11146,1.11158,1.11131,1.11141,1034 +2020-01-08 18:45,1.11141,1.11146,1.11106,1.11131,842 +2020-01-08 19:00,1.11133,1.1114,1.11101,1.11108,963 +2020-01-08 19:15,1.11108,1.11111,1.11081,1.11102,925 +2020-01-08 19:30,1.11105,1.11119,1.11099,1.11103,1009 +2020-01-08 19:45,1.11103,1.11129,1.11098,1.11112,1017 +2020-01-08 20:00,1.11113,1.11118,1.11097,1.11108,1022 +2020-01-08 20:15,1.11109,1.11119,1.11104,1.11114,574 +2020-01-08 20:30,1.11114,1.11119,1.11103,1.11108,574 +2020-01-08 20:45,1.11108,1.11148,1.11106,1.11118,2803 +2020-01-08 21:00,1.11119,1.11127,1.11081,1.11081,706 +2020-01-08 21:15,1.11084,1.111,1.11084,1.11093,288 +2020-01-08 21:30,1.11092,1.11094,1.11083,1.11085,267 +2020-01-08 21:45,1.11085,1.11086,1.11016,1.11053,680 +2020-01-08 22:00,1.11053,1.11077,1.11033,1.11068,291 +2020-01-08 22:15,1.11068,1.11146,1.11068,1.11105,308 +2020-01-08 22:30,1.11104,1.11105,1.11088,1.111,141 +2020-01-08 22:45,1.111,1.11131,1.11089,1.11097,311 +2020-01-08 23:00,1.11098,1.11098,1.11071,1.11083,283 +2020-01-08 23:15,1.11085,1.11104,1.11081,1.11102,297 +2020-01-08 23:30,1.11102,1.11115,1.11097,1.11109,404 +2020-01-08 23:45,1.11109,1.1113,1.11109,1.11129,414 +2020-01-09 00:00,1.1113,1.11144,1.11091,1.11117,1488 +2020-01-09 00:15,1.11117,1.11134,1.11101,1.11134,910 +2020-01-09 00:30,1.11133,1.11159,1.11133,1.11143,1442 +2020-01-09 00:45,1.11144,1.11144,1.11122,1.11134,1302 +2020-01-09 01:00,1.11135,1.11149,1.11128,1.11137,920 +2020-01-09 01:15,1.11138,1.1114,1.1111,1.11133,902 +2020-01-09 01:30,1.11132,1.11185,1.11131,1.11184,1441 +2020-01-09 01:45,1.11184,1.11195,1.11171,1.11174,1212 +2020-01-09 02:00,1.11173,1.1119,1.11172,1.11188,865 +2020-01-09 02:15,1.11189,1.11189,1.11153,1.1116,796 +2020-01-09 02:30,1.11161,1.11174,1.11152,1.11154,472 +2020-01-09 02:45,1.11155,1.11159,1.11145,1.11152,723 +2020-01-09 03:00,1.11152,1.11153,1.11141,1.11153,537 +2020-01-09 03:15,1.11152,1.11163,1.11152,1.11159,600 +2020-01-09 03:30,1.1116,1.11175,1.11159,1.11174,474 +2020-01-09 03:45,1.11174,1.11179,1.11152,1.11152,763 +2020-01-09 04:00,1.11153,1.11157,1.1113,1.11132,600 +2020-01-09 04:15,1.11132,1.11138,1.11127,1.11137,367 +2020-01-09 04:30,1.11138,1.11158,1.11133,1.11158,859 +2020-01-09 04:45,1.11158,1.11158,1.11143,1.11154,363 +2020-01-09 05:00,1.11154,1.11158,1.11151,1.11153,403 +2020-01-09 05:15,1.11153,1.11172,1.11152,1.11168,553 +2020-01-09 05:30,1.11169,1.11175,1.11162,1.11162,426 +2020-01-09 05:45,1.11163,1.11189,1.11161,1.11182,673 +2020-01-09 06:00,1.11182,1.1119,1.11162,1.11166,929 +2020-01-09 06:15,1.11166,1.11169,1.11147,1.11148,623 +2020-01-09 06:30,1.11147,1.11157,1.11113,1.11121,1211 +2020-01-09 06:45,1.1112,1.11153,1.11111,1.11123,1599 +2020-01-09 07:00,1.11123,1.11149,1.1111,1.11132,1918 +2020-01-09 07:15,1.11132,1.11164,1.11125,1.11156,1563 +2020-01-09 07:30,1.11156,1.11199,1.11147,1.11191,2071 +2020-01-09 07:45,1.1119,1.11204,1.11131,1.11152,2259 +2020-01-09 08:00,1.11152,1.11162,1.11051,1.11071,3030 +2020-01-09 08:15,1.11072,1.11117,1.11067,1.11117,2466 +2020-01-09 08:30,1.11117,1.11159,1.11105,1.11157,2081 +2020-01-09 08:45,1.11156,1.11177,1.11136,1.11172,2102 +2020-01-09 09:00,1.11172,1.1119,1.11128,1.11145,2477 +2020-01-09 09:15,1.11144,1.11144,1.11103,1.11105,2250 +2020-01-09 09:30,1.11104,1.11111,1.11021,1.11039,2816 +2020-01-09 09:45,1.11037,1.11066,1.10984,1.10995,4391 +2020-01-09 10:00,1.10994,1.11021,1.10966,1.11014,2527 +2020-01-09 10:15,1.11013,1.11039,1.10996,1.11037,1690 +2020-01-09 10:30,1.11038,1.11118,1.1103,1.11108,1834 +2020-01-09 10:45,1.11108,1.11114,1.11083,1.11096,1651 +2020-01-09 11:00,1.11096,1.11126,1.11095,1.11114,1330 +2020-01-09 11:15,1.11115,1.11116,1.11084,1.111,1884 +2020-01-09 11:30,1.11101,1.11107,1.11039,1.11039,1332 +2020-01-09 11:45,1.11038,1.11099,1.11034,1.11046,1609 +2020-01-09 12:00,1.11045,1.11126,1.11033,1.1112,1807 +2020-01-09 12:15,1.1112,1.11128,1.11093,1.1111,2224 +2020-01-09 12:30,1.1111,1.11167,1.1111,1.11119,2133 +2020-01-09 12:45,1.11119,1.11157,1.11106,1.11135,2511 +2020-01-09 13:00,1.11135,1.11143,1.11074,1.11094,2750 +2020-01-09 13:15,1.11094,1.11121,1.11058,1.11116,2397 +2020-01-09 13:30,1.11115,1.11141,1.1111,1.11137,1672 +2020-01-09 13:45,1.11138,1.11173,1.11118,1.11148,2633 +2020-01-09 14:00,1.11149,1.11149,1.11081,1.11101,3640 +2020-01-09 14:15,1.11101,1.11101,1.11038,1.11063,2446 +2020-01-09 14:30,1.11062,1.11088,1.11046,1.11082,2588 +2020-01-09 14:45,1.11082,1.11101,1.11074,1.11082,2241 +2020-01-09 15:00,1.11082,1.11107,1.11058,1.11105,2107 +2020-01-09 15:15,1.11105,1.11107,1.11024,1.11063,2275 +2020-01-09 15:30,1.11062,1.11063,1.10924,1.11002,2876 +2020-01-09 15:45,1.11003,1.11035,1.10944,1.11022,3916 +2020-01-09 16:00,1.11021,1.11023,1.10947,1.10965,3902 +2020-01-09 16:15,1.10965,1.1098,1.10935,1.1098,3986 +2020-01-09 16:30,1.1098,1.11032,1.10976,1.11026,1917 +2020-01-09 16:45,1.11026,1.11061,1.11016,1.1106,1809 +2020-01-09 17:00,1.11059,1.11081,1.11037,1.1108,3363 +2020-01-09 17:15,1.11081,1.11097,1.11048,1.11091,1685 +2020-01-09 17:30,1.11092,1.11113,1.11058,1.11058,1615 +2020-01-09 17:45,1.11058,1.11076,1.11046,1.11046,1170 +2020-01-09 18:00,1.11046,1.1106,1.11033,1.11053,1530 +2020-01-09 18:15,1.11053,1.11086,1.1105,1.11071,1765 +2020-01-09 18:30,1.11072,1.11082,1.11045,1.11067,2219 +2020-01-09 18:45,1.11067,1.11079,1.1105,1.1105,886 +2020-01-09 19:00,1.11051,1.11088,1.11049,1.11085,1023 +2020-01-09 19:15,1.11085,1.11098,1.11081,1.11088,674 +2020-01-09 19:30,1.11089,1.11093,1.11072,1.11081,1022 +2020-01-09 19:45,1.1108,1.11087,1.11059,1.11061,677 +2020-01-09 20:00,1.1106,1.11073,1.1105,1.11061,792 +2020-01-09 20:15,1.11062,1.11072,1.11054,1.11055,690 +2020-01-09 20:30,1.11055,1.11064,1.11044,1.11048,709 +2020-01-09 20:45,1.11047,1.11065,1.11038,1.11062,988 +2020-01-09 21:00,1.11062,1.11068,1.11044,1.1105,439 +2020-01-09 21:15,1.1105,1.1105,1.11034,1.11038,364 +2020-01-09 21:30,1.11038,1.11056,1.11038,1.11055,259 +2020-01-09 21:45,1.11054,1.11069,1.11047,1.11051,406 +2020-01-09 22:00,1.11051,1.1106,1.11028,1.1105,357 +2020-01-09 22:15,1.1105,1.11066,1.11048,1.1105,129 +2020-01-09 22:30,1.1105,1.11055,1.11045,1.11052,419 +2020-01-09 22:45,1.11053,1.11066,1.11052,1.11065,115 +2020-01-09 23:00,1.11065,1.11075,1.11063,1.11074,286 +2020-01-09 23:15,1.11075,1.11076,1.11065,1.1107,172 +2020-01-09 23:30,1.11069,1.11075,1.11063,1.11069,290 +2020-01-09 23:45,1.11069,1.11093,1.11068,1.11093,239 +2020-01-10 00:00,1.11092,1.11094,1.11067,1.11068,632 +2020-01-10 00:15,1.11071,1.11073,1.11066,1.11072,373 +2020-01-10 00:30,1.11072,1.11091,1.11063,1.11063,834 +2020-01-10 00:45,1.11065,1.11079,1.1106,1.11069,767 +2020-01-10 01:00,1.11069,1.11073,1.11059,1.11061,610 +2020-01-10 01:15,1.11061,1.1107,1.11056,1.11062,454 +2020-01-10 01:30,1.11063,1.11073,1.11046,1.11048,484 +2020-01-10 01:45,1.11047,1.1105,1.1102,1.11042,866 +2020-01-10 02:00,1.11041,1.11053,1.11037,1.11049,534 +2020-01-10 02:15,1.11048,1.11051,1.11036,1.11043,997 +2020-01-10 02:30,1.11043,1.11051,1.11036,1.11047,642 +2020-01-10 02:45,1.11046,1.11083,1.11046,1.11079,470 +2020-01-10 03:00,1.1108,1.11081,1.11071,1.11074,400 +2020-01-10 03:15,1.11075,1.11087,1.11072,1.11072,452 +2020-01-10 03:30,1.11073,1.11084,1.11071,1.11076,355 +2020-01-10 03:45,1.11076,1.11083,1.11074,1.11081,481 +2020-01-10 04:00,1.11081,1.11082,1.11064,1.11082,511 +2020-01-10 04:15,1.11082,1.1109,1.11071,1.11086,583 +2020-01-10 04:30,1.11086,1.11111,1.11078,1.11081,373 +2020-01-10 04:45,1.1108,1.11081,1.11068,1.11074,330 +2020-01-10 05:00,1.11074,1.11081,1.1107,1.11079,449 +2020-01-10 05:15,1.11079,1.11091,1.11076,1.1109,355 +2020-01-10 05:30,1.11091,1.11096,1.11079,1.11091,541 +2020-01-10 05:45,1.1109,1.111,1.11084,1.11089,494 +2020-01-10 06:00,1.1109,1.11099,1.11087,1.11094,559 +2020-01-10 06:15,1.11094,1.11101,1.11074,1.11083,732 +2020-01-10 06:30,1.11083,1.11083,1.11068,1.11075,457 +2020-01-10 06:45,1.11075,1.11091,1.1107,1.11091,664 +2020-01-10 07:00,1.11092,1.1111,1.1108,1.11096,1367 +2020-01-10 07:15,1.11092,1.11092,1.1108,1.11089,932 +2020-01-10 07:30,1.11089,1.11089,1.11045,1.11056,1662 +2020-01-10 07:45,1.11057,1.11073,1.11042,1.1107,1291 +2020-01-10 08:00,1.11069,1.11092,1.11047,1.1108,2076 +2020-01-10 08:15,1.1108,1.11084,1.11011,1.11016,1685 +2020-01-10 08:30,1.11017,1.11019,1.10932,1.10942,2593 +2020-01-10 08:45,1.10942,1.10999,1.10935,1.10993,2115 +2020-01-10 09:00,1.10994,1.10994,1.10934,1.10956,1960 +2020-01-10 09:15,1.10956,1.1097,1.10912,1.10945,2282 +2020-01-10 09:30,1.10945,1.1096,1.10938,1.10944,2485 +2020-01-10 09:45,1.10945,1.11,1.10944,1.10963,2672 +2020-01-10 10:00,1.10963,1.1098,1.1095,1.10971,1605 +2020-01-10 10:15,1.10969,1.10984,1.10954,1.10972,1805 +2020-01-10 10:30,1.10972,1.10972,1.10909,1.10937,1953 +2020-01-10 10:45,1.10938,1.10946,1.10902,1.10926,1910 +2020-01-10 11:00,1.10926,1.10926,1.1085,1.10879,1889 +2020-01-10 11:15,1.10879,1.10923,1.10868,1.1092,1350 +2020-01-10 11:30,1.10923,1.10962,1.10922,1.10926,1419 +2020-01-10 11:45,1.10927,1.10948,1.10915,1.1093,1217 +2020-01-10 12:00,1.10929,1.10947,1.10916,1.10942,1872 +2020-01-10 12:15,1.10942,1.10954,1.10926,1.10952,1170 +2020-01-10 12:30,1.10953,1.10971,1.1095,1.10961,1123 +2020-01-10 12:45,1.1096,1.10994,1.10947,1.10984,1547 +2020-01-10 13:00,1.10984,1.10996,1.10898,1.10911,2360 +2020-01-10 13:15,1.10911,1.10951,1.10898,1.10921,2506 +2020-01-10 13:30,1.10926,1.11136,1.10925,1.1107,5987 +2020-01-10 13:45,1.11069,1.11098,1.10947,1.10966,4139 +2020-01-10 14:00,1.10967,1.1099,1.10919,1.10946,4030 +2020-01-10 14:15,1.10945,1.10987,1.10862,1.10963,3906 +2020-01-10 14:30,1.10963,1.11007,1.10941,1.10994,3550 +2020-01-10 14:45,1.10994,1.11034,1.10927,1.11007,2703 +2020-01-10 15:00,1.11006,1.11093,1.10983,1.11067,3390 +2020-01-10 15:15,1.11067,1.11117,1.11045,1.11083,2617 +2020-01-10 15:30,1.11082,1.11163,1.11077,1.11124,3140 +2020-01-10 15:45,1.11125,1.11179,1.11123,1.11128,4039 +2020-01-10 16:00,1.11128,1.11144,1.11111,1.11134,2546 +2020-01-10 16:15,1.11134,1.11182,1.1113,1.11155,2314 +2020-01-10 16:30,1.11155,1.11205,1.11136,1.1115,2275 +2020-01-10 16:45,1.11151,1.11192,1.11149,1.1118,1419 +2020-01-10 17:00,1.11179,1.11243,1.11179,1.1124,2086 +2020-01-10 17:15,1.1124,1.11291,1.11239,1.11258,1939 +2020-01-10 17:30,1.11259,1.11265,1.11213,1.1122,1597 +2020-01-10 17:45,1.1122,1.11228,1.11205,1.11224,1198 +2020-01-10 18:00,1.11223,1.11232,1.11193,1.11214,1121 +2020-01-10 18:15,1.11213,1.11213,1.11192,1.11206,1885 +2020-01-10 18:30,1.11206,1.11214,1.11193,1.11199,687 +2020-01-10 18:45,1.11199,1.11214,1.11183,1.11184,634 +2020-01-10 19:00,1.11186,1.11205,1.11171,1.11192,961 +2020-01-10 19:15,1.11193,1.11212,1.11185,1.11208,793 +2020-01-10 19:30,1.11211,1.11223,1.11206,1.11218,759 +2020-01-10 19:45,1.11219,1.11232,1.11212,1.1122,664 +2020-01-10 20:00,1.11221,1.11221,1.11194,1.11207,708 +2020-01-10 20:15,1.11207,1.1122,1.112,1.112,445 +2020-01-10 20:30,1.11201,1.11219,1.11198,1.1121,493 +2020-01-10 20:45,1.1121,1.11214,1.11198,1.1121,662 +2020-01-10 21:00,1.1121,1.11225,1.11204,1.11205,537 +2020-01-10 21:15,1.11204,1.11213,1.11198,1.11198,316 +2020-01-10 21:30,1.11199,1.1122,1.11198,1.11219,210 +2020-01-10 21:45,1.11219,1.11223,1.11165,1.11165,782 +2020-01-12 22:00,1.11141,1.11209,1.11141,1.11203,154 +2020-01-12 22:15,1.11203,1.11203,1.11193,1.11196,73 +2020-01-12 22:30,1.11195,1.11196,1.11128,1.11161,199 +2020-01-12 22:45,1.11161,1.11168,1.11131,1.11166,223 +2020-01-12 23:00,1.11166,1.11182,1.11146,1.11182,462 +2020-01-12 23:15,1.1118,1.1118,1.11156,1.1116,327 +2020-01-12 23:30,1.1116,1.11161,1.11151,1.11157,179 +2020-01-12 23:45,1.11157,1.11167,1.11156,1.11161,282 +2020-01-13 00:00,1.11161,1.11183,1.1116,1.11182,311 +2020-01-13 00:15,1.11182,1.11187,1.1116,1.11163,524 +2020-01-13 00:30,1.11163,1.11174,1.11159,1.11166,386 +2020-01-13 00:45,1.11167,1.11187,1.11166,1.11187,282 +2020-01-13 01:00,1.11186,1.11192,1.11172,1.11189,682 +2020-01-13 01:15,1.11189,1.112,1.1118,1.11197,489 +2020-01-13 01:30,1.11197,1.11202,1.11188,1.11198,543 +2020-01-13 01:45,1.11197,1.11214,1.11196,1.11213,382 +2020-01-13 02:00,1.11213,1.11215,1.11205,1.11208,713 +2020-01-13 02:15,1.11207,1.11208,1.112,1.11207,455 +2020-01-13 02:30,1.11208,1.11233,1.11205,1.11233,351 +2020-01-13 02:45,1.11233,1.11261,1.11227,1.11258,635 +2020-01-13 03:00,1.11257,1.11285,1.11252,1.11283,1029 +2020-01-13 03:15,1.11284,1.11284,1.11257,1.11264,629 +2020-01-13 03:30,1.11264,1.11281,1.11263,1.11276,553 +2020-01-13 03:45,1.11276,1.11299,1.11276,1.11293,535 +2020-01-13 04:00,1.11292,1.11292,1.11274,1.11283,277 +2020-01-13 04:15,1.11283,1.11306,1.11281,1.11292,594 +2020-01-13 04:30,1.11293,1.11303,1.11292,1.11293,208 +2020-01-13 04:45,1.11292,1.113,1.11272,1.11272,293 +2020-01-13 05:00,1.11272,1.113,1.11271,1.11293,451 +2020-01-13 05:15,1.11294,1.113,1.11283,1.11289,408 +2020-01-13 05:30,1.11287,1.11301,1.11286,1.11297,313 +2020-01-13 05:45,1.11298,1.11318,1.11295,1.11297,570 +2020-01-13 06:00,1.11296,1.11298,1.1125,1.11258,445 +2020-01-13 06:15,1.11259,1.11294,1.11257,1.11292,873 +2020-01-13 06:30,1.11293,1.11293,1.11277,1.11282,392 +2020-01-13 06:45,1.11282,1.11302,1.11281,1.11287,516 +2020-01-13 07:00,1.11287,1.11301,1.11259,1.1128,1425 +2020-01-13 07:15,1.11278,1.11283,1.11246,1.11273,1107 +2020-01-13 07:30,1.11272,1.11298,1.11259,1.11288,1581 +2020-01-13 07:45,1.11289,1.113,1.1122,1.11227,1796 +2020-01-13 08:00,1.11227,1.11286,1.11223,1.11242,8740 +2020-01-13 08:15,1.1124,1.11252,1.112,1.11231,2916 +2020-01-13 08:30,1.11232,1.11277,1.11214,1.11272,2351 +2020-01-13 08:45,1.11271,1.11296,1.11244,1.1128,2007 +2020-01-13 09:00,1.1128,1.11361,1.11244,1.11244,3560 +2020-01-13 09:15,1.11244,1.11246,1.11195,1.11216,2617 +2020-01-13 09:30,1.11216,1.11216,1.11171,1.11173,2279 +2020-01-13 09:45,1.11173,1.112,1.11147,1.11151,1934 +2020-01-13 10:00,1.11151,1.1119,1.11125,1.11171,1812 +2020-01-13 10:15,1.1117,1.11195,1.11162,1.11174,1539 +2020-01-13 10:30,1.11174,1.11188,1.11145,1.11169,1860 +2020-01-13 10:45,1.11169,1.11181,1.1115,1.11167,1740 +2020-01-13 11:00,1.11167,1.11222,1.11164,1.11211,1610 +2020-01-13 11:15,1.11211,1.11212,1.11182,1.11195,1515 +2020-01-13 11:30,1.11199,1.11205,1.11177,1.11189,1330 +2020-01-13 11:45,1.11187,1.1124,1.11175,1.11204,1873 +2020-01-13 12:00,1.11204,1.11221,1.11184,1.11214,1858 +2020-01-13 12:15,1.11214,1.11258,1.11213,1.11254,1663 +2020-01-13 12:30,1.11252,1.11262,1.1121,1.11216,1488 +2020-01-13 12:45,1.11216,1.1126,1.11192,1.11246,1869 +2020-01-13 13:00,1.11245,1.11284,1.11242,1.11263,1895 +2020-01-13 13:15,1.11262,1.11271,1.11243,1.11246,1685 +2020-01-13 13:30,1.11245,1.11249,1.11211,1.11231,1938 +2020-01-13 13:45,1.1123,1.11241,1.11182,1.11186,2310 +2020-01-13 14:00,1.11187,1.11218,1.11176,1.11208,2161 +2020-01-13 14:15,1.11211,1.11227,1.11175,1.11204,2736 +2020-01-13 14:30,1.11205,1.11267,1.11204,1.11211,3655 +2020-01-13 14:45,1.11211,1.11247,1.112,1.1124,2959 +2020-01-13 15:00,1.11239,1.11268,1.1121,1.11252,2656 +2020-01-13 15:15,1.11253,1.11298,1.1123,1.11295,2532 +2020-01-13 15:30,1.11295,1.11382,1.11293,1.11361,2716 +2020-01-13 15:45,1.1136,1.11372,1.11325,1.11331,2322 +2020-01-13 16:00,1.1133,1.11392,1.11325,1.11389,2008 +2020-01-13 16:15,1.1139,1.11442,1.11355,1.11434,2361 +2020-01-13 16:30,1.11434,1.11469,1.1137,1.11389,2318 +2020-01-13 16:45,1.1139,1.11412,1.11372,1.11372,1351 +2020-01-13 17:00,1.11372,1.11395,1.11366,1.11392,1295 +2020-01-13 17:15,1.11393,1.11404,1.11383,1.11399,880 +2020-01-13 17:30,1.11398,1.114,1.11355,1.11367,894 +2020-01-13 17:45,1.11368,1.11418,1.11367,1.11397,959 +2020-01-13 18:00,1.11397,1.11428,1.11384,1.11422,1090 +2020-01-13 18:15,1.11422,1.11448,1.11412,1.11431,848 +2020-01-13 18:30,1.11431,1.11431,1.11394,1.11401,941 +2020-01-13 18:45,1.11403,1.11417,1.11394,1.11396,597 +2020-01-13 19:00,1.11395,1.11414,1.11387,1.11402,1894 +2020-01-13 19:15,1.11402,1.11403,1.11382,1.11391,608 +2020-01-13 19:30,1.11392,1.11403,1.11385,1.11387,481 +2020-01-13 19:45,1.11387,1.11407,1.11376,1.11382,754 +2020-01-13 20:00,1.11381,1.11382,1.11369,1.11381,688 +2020-01-13 20:15,1.11382,1.11386,1.11367,1.11376,769 +2020-01-13 20:30,1.11376,1.11381,1.11361,1.11367,429 +2020-01-13 20:45,1.11369,1.11382,1.11361,1.11375,600 +2020-01-13 21:00,1.11376,1.11379,1.11357,1.11361,404 +2020-01-13 21:15,1.11362,1.11363,1.11341,1.11361,409 +2020-01-13 21:30,1.11362,1.11363,1.11338,1.11338,168 +2020-01-13 21:45,1.11337,1.11356,1.11331,1.11338,482 +2020-01-13 22:00,1.11338,1.1139,1.1132,1.11364,305 +2020-01-13 22:15,1.11363,1.11384,1.11358,1.11376,548 +2020-01-13 22:30,1.11374,1.11388,1.11357,1.11362,185 +2020-01-13 22:45,1.11359,1.11368,1.11352,1.11353,99 +2020-01-13 23:00,1.11355,1.11362,1.11354,1.11359,274 +2020-01-13 23:15,1.11359,1.11364,1.11352,1.1136,289 +2020-01-13 23:30,1.11359,1.11365,1.11358,1.11362,218 +2020-01-13 23:45,1.11361,1.11363,1.11333,1.11344,424 +2020-01-14 00:00,1.11344,1.11384,1.11339,1.11376,876 +2020-01-14 00:15,1.11375,1.11396,1.11373,1.11388,482 +2020-01-14 00:30,1.11388,1.11404,1.11388,1.11403,398 +2020-01-14 00:45,1.11404,1.11421,1.1137,1.11383,958 +2020-01-14 01:00,1.11384,1.11391,1.11363,1.11375,1197 +2020-01-14 01:15,1.11375,1.11409,1.11347,1.11349,1525 +2020-01-14 01:30,1.11351,1.11365,1.11324,1.11328,1249 +2020-01-14 01:45,1.11329,1.11372,1.11312,1.11371,1293 +2020-01-14 02:00,1.11372,1.11377,1.11353,1.11375,939 +2020-01-14 02:15,1.11376,1.11384,1.11358,1.11364,574 +2020-01-14 02:30,1.11364,1.11386,1.11364,1.11369,942 +2020-01-14 02:45,1.11368,1.11379,1.11361,1.11372,776 +2020-01-14 03:00,1.11373,1.11378,1.11352,1.11353,790 +2020-01-14 03:15,1.11354,1.11387,1.11354,1.11374,766 +2020-01-14 03:30,1.11373,1.11375,1.11354,1.11365,687 +2020-01-14 03:45,1.11366,1.11377,1.11355,1.11355,716 +2020-01-14 04:00,1.11356,1.11381,1.11355,1.11374,642 +2020-01-14 04:15,1.11375,1.11378,1.11367,1.11371,324 +2020-01-14 04:30,1.11371,1.11372,1.11357,1.11369,453 +2020-01-14 04:45,1.11368,1.11374,1.11362,1.11364,396 +2020-01-14 05:00,1.11365,1.11371,1.11359,1.11364,303 +2020-01-14 05:15,1.11364,1.11375,1.11363,1.11363,387 +2020-01-14 05:30,1.11361,1.11384,1.1136,1.11379,773 +2020-01-14 05:45,1.11378,1.11382,1.11367,1.1137,589 +2020-01-14 06:00,1.11369,1.1139,1.11348,1.11386,625 +2020-01-14 06:15,1.11386,1.11416,1.11384,1.1141,756 +2020-01-14 06:30,1.1141,1.11435,1.11391,1.11424,740 +2020-01-14 06:45,1.11423,1.11444,1.11404,1.11444,1386 +2020-01-14 07:00,1.11444,1.11444,1.11384,1.11399,1699 +2020-01-14 07:15,1.11398,1.11437,1.11373,1.11436,1838 +2020-01-14 07:30,1.11435,1.11435,1.11385,1.11389,1488 +2020-01-14 07:45,1.11389,1.11427,1.11377,1.11423,1896 +2020-01-14 08:00,1.11423,1.1144,1.1137,1.11376,2493 +2020-01-14 08:15,1.11375,1.11409,1.11353,1.1137,2288 +2020-01-14 08:30,1.11369,1.11415,1.11349,1.11398,2348 +2020-01-14 08:45,1.11397,1.11405,1.11333,1.11352,2404 +2020-01-14 09:00,1.11351,1.11354,1.11304,1.11319,2112 +2020-01-14 09:15,1.1132,1.11356,1.11319,1.11345,1486 +2020-01-14 09:30,1.11344,1.11349,1.11303,1.11312,1662 +2020-01-14 09:45,1.11311,1.11342,1.11305,1.11313,1691 +2020-01-14 10:00,1.11313,1.11328,1.11304,1.11308,1260 +2020-01-14 10:15,1.11308,1.11321,1.11284,1.11314,1414 +2020-01-14 10:30,1.11315,1.11329,1.11312,1.11319,1297 +2020-01-14 10:45,1.11319,1.11354,1.11319,1.11339,1396 +2020-01-14 11:00,1.11338,1.11345,1.11289,1.11309,1943 +2020-01-14 11:15,1.11308,1.11332,1.1129,1.11291,2049 +2020-01-14 11:30,1.11292,1.11326,1.11264,1.11318,2111 +2020-01-14 11:45,1.11317,1.11324,1.11263,1.11303,2483 +2020-01-14 12:00,1.11303,1.11303,1.11223,1.11223,2626 +2020-01-14 12:15,1.11223,1.11241,1.11194,1.11236,2020 +2020-01-14 12:30,1.11236,1.11239,1.11203,1.11236,1578 +2020-01-14 12:45,1.11236,1.11245,1.11194,1.11207,2183 +2020-01-14 13:00,1.11206,1.11208,1.11133,1.11149,2568 +2020-01-14 13:15,1.11147,1.11148,1.11055,1.11097,4004 +2020-01-14 13:30,1.11097,1.11159,1.11051,1.11102,4918 +2020-01-14 13:45,1.11101,1.11114,1.11066,1.11102,2822 +2020-01-14 14:00,1.11102,1.11132,1.11045,1.11062,4124 +2020-01-14 14:15,1.11061,1.11127,1.11048,1.11126,3071 +2020-01-14 14:30,1.11126,1.11172,1.11122,1.11165,3620 +2020-01-14 14:45,1.11164,1.11234,1.11156,1.11216,3110 +2020-01-14 15:00,1.11216,1.11223,1.11185,1.11194,2740 +2020-01-14 15:15,1.11193,1.11202,1.11159,1.1118,4673 +2020-01-14 15:30,1.11181,1.11232,1.11138,1.11171,2923 +2020-01-14 15:45,1.11171,1.11227,1.11148,1.11221,2947 +2020-01-14 16:00,1.11222,1.11283,1.11202,1.11263,3037 +2020-01-14 16:15,1.11262,1.11264,1.11229,1.11242,1739 +2020-01-14 16:30,1.11241,1.11293,1.11238,1.11291,1607 +2020-01-14 16:45,1.11292,1.11304,1.11279,1.11295,1299 +2020-01-14 17:00,1.11295,1.11318,1.11273,1.1131,1335 +2020-01-14 17:15,1.1131,1.11327,1.11299,1.11316,890 +2020-01-14 17:30,1.11316,1.11321,1.11296,1.11304,717 +2020-01-14 17:45,1.11304,1.11325,1.11297,1.1131,1647 +2020-01-14 18:00,1.1131,1.11327,1.11307,1.11317,1034 +2020-01-14 18:15,1.11316,1.11319,1.11298,1.1131,1057 +2020-01-14 18:30,1.1131,1.11348,1.11309,1.11321,1902 +2020-01-14 18:45,1.1132,1.11333,1.11305,1.11314,1140 +2020-01-14 19:00,1.11313,1.11329,1.11303,1.11316,1040 +2020-01-14 19:15,1.11317,1.11325,1.11308,1.11321,899 +2020-01-14 19:30,1.1132,1.1132,1.11298,1.11302,746 +2020-01-14 19:45,1.11303,1.11305,1.11279,1.1128,980 +2020-01-14 20:00,1.11279,1.11291,1.1127,1.11282,792 +2020-01-14 20:15,1.11282,1.11298,1.1128,1.11297,737 +2020-01-14 20:30,1.11296,1.11297,1.11289,1.11291,475 +2020-01-14 20:45,1.11291,1.11302,1.11277,1.11283,1504 +2020-01-14 21:00,1.11283,1.11283,1.11269,1.11274,625 +2020-01-14 21:15,1.11274,1.11274,1.1125,1.11255,519 +2020-01-14 21:30,1.11254,1.11264,1.11246,1.11264,253 +2020-01-14 21:45,1.11264,1.11284,1.11256,1.11274,281 +2020-01-14 22:00,1.11284,1.11287,1.11259,1.1127,240 +2020-01-14 22:15,1.11269,1.11271,1.11264,1.11267,257 +2020-01-14 22:30,1.11267,1.11272,1.1126,1.11264,274 +2020-01-14 22:45,1.11262,1.11268,1.11262,1.11262,137 +2020-01-14 23:00,1.11262,1.11278,1.11262,1.11274,194 +2020-01-14 23:15,1.11274,1.1128,1.11272,1.11274,252 +2020-01-14 23:30,1.11274,1.1128,1.11261,1.1127,518 +2020-01-14 23:45,1.11269,1.11279,1.11265,1.11275,236 +2020-01-15 00:00,1.11276,1.11297,1.1127,1.11295,522 +2020-01-15 00:15,1.11296,1.11302,1.1129,1.113,430 +2020-01-15 00:30,1.113,1.11304,1.11286,1.11296,569 +2020-01-15 00:45,1.11298,1.11307,1.11288,1.11295,562 +2020-01-15 01:00,1.11294,1.11311,1.1129,1.11309,458 +2020-01-15 01:15,1.11308,1.11309,1.11274,1.11274,855 +2020-01-15 01:30,1.11275,1.11288,1.11272,1.11287,663 +2020-01-15 01:45,1.11286,1.11301,1.11285,1.11296,785 +2020-01-15 02:00,1.11295,1.11311,1.11295,1.11307,755 +2020-01-15 02:15,1.11308,1.11308,1.11294,1.11295,675 +2020-01-15 02:30,1.11295,1.11297,1.1127,1.11282,672 +2020-01-15 02:45,1.11282,1.11292,1.11271,1.11291,364 +2020-01-15 03:00,1.11292,1.11296,1.1128,1.11287,309 +2020-01-15 03:15,1.11287,1.11301,1.11284,1.11297,532 +2020-01-15 03:30,1.11297,1.11308,1.11289,1.11304,475 +2020-01-15 03:45,1.11306,1.11311,1.11296,1.11302,327 +2020-01-15 04:00,1.11303,1.11306,1.11297,1.11306,466 +2020-01-15 04:15,1.11306,1.11316,1.11301,1.11316,420 +2020-01-15 04:30,1.11316,1.11337,1.11315,1.1133,469 +2020-01-15 04:45,1.11329,1.11336,1.11324,1.11331,674 +2020-01-15 05:00,1.1133,1.11332,1.11316,1.1132,424 +2020-01-15 05:15,1.1132,1.11331,1.1132,1.11326,594 +2020-01-15 05:30,1.11325,1.1133,1.11319,1.11322,466 +2020-01-15 05:45,1.11321,1.11346,1.11321,1.11339,302 +2020-01-15 06:00,1.11339,1.11362,1.11329,1.11359,691 +2020-01-15 06:15,1.11359,1.11364,1.11343,1.11348,739 +2020-01-15 06:30,1.11347,1.11348,1.11322,1.11329,860 +2020-01-15 06:45,1.11328,1.11356,1.11328,1.11355,686 +2020-01-15 07:00,1.11355,1.11368,1.11335,1.11343,1262 +2020-01-15 07:15,1.11342,1.11359,1.11342,1.11349,899 +2020-01-15 07:30,1.11348,1.11355,1.11291,1.11293,5345 +2020-01-15 07:45,1.11293,1.11311,1.11271,1.11284,1358 +2020-01-15 08:00,1.11283,1.11287,1.11214,1.11221,2623 +2020-01-15 08:15,1.11221,1.11236,1.11185,1.11231,2271 +2020-01-15 08:30,1.11231,1.11255,1.1122,1.1123,2212 +2020-01-15 08:45,1.1123,1.11308,1.1123,1.11301,1934 +2020-01-15 09:00,1.113,1.11313,1.11257,1.113,1752 +2020-01-15 09:15,1.11301,1.11321,1.11282,1.1132,2261 +2020-01-15 09:30,1.11318,1.11334,1.11281,1.11324,2826 +2020-01-15 09:45,1.11323,1.11326,1.11275,1.11282,2047 +2020-01-15 10:00,1.11282,1.11282,1.11249,1.11254,1717 +2020-01-15 10:15,1.11255,1.11306,1.11254,1.11306,1216 +2020-01-15 10:30,1.11305,1.11327,1.11293,1.11315,1310 +2020-01-15 10:45,1.11314,1.11393,1.11313,1.11387,2017 +2020-01-15 11:00,1.11387,1.11549,1.1138,1.115,3698 +2020-01-15 11:15,1.11501,1.11534,1.11467,1.115,2431 +2020-01-15 11:30,1.115,1.11514,1.11456,1.11491,1842 +2020-01-15 11:45,1.11491,1.11512,1.1146,1.1148,2072 +2020-01-15 12:00,1.11478,1.11516,1.1147,1.11489,1503 +2020-01-15 12:15,1.11489,1.11525,1.11472,1.11475,1625 +2020-01-15 12:30,1.11474,1.11481,1.11449,1.11451,1357 +2020-01-15 12:45,1.11451,1.11462,1.11396,1.1141,2276 +2020-01-15 13:00,1.11416,1.11449,1.11405,1.11422,2218 +2020-01-15 13:15,1.11422,1.11459,1.114,1.11447,2524 +2020-01-15 13:30,1.11447,1.11491,1.1143,1.11484,19576 +2020-01-15 13:45,1.11483,1.11494,1.11465,1.1149,2457 +2020-01-15 14:00,1.11489,1.11541,1.11486,1.11521,2934 +2020-01-15 14:15,1.11521,1.11607,1.11513,1.11602,2609 +2020-01-15 14:30,1.11602,1.11634,1.11545,1.11556,3407 +2020-01-15 14:45,1.11556,1.1156,1.11512,1.11522,3343 +2020-01-15 15:00,1.11523,1.11528,1.11431,1.11442,4007 +2020-01-15 15:15,1.11444,1.11548,1.11443,1.11536,2455 +2020-01-15 15:30,1.11537,1.11537,1.11496,1.11508,2624 +2020-01-15 15:45,1.1151,1.11527,1.1145,1.11521,3689 +2020-01-15 16:00,1.11522,1.11577,1.11496,1.11577,3213 +2020-01-15 16:15,1.11577,1.11594,1.11554,1.11554,1885 +2020-01-15 16:30,1.11555,1.11581,1.11543,1.11574,1676 +2020-01-15 16:45,1.11575,1.11599,1.11563,1.11595,1524 +2020-01-15 17:00,1.11596,1.11606,1.11562,1.11563,1701 +2020-01-15 17:15,1.11563,1.1161,1.11562,1.11605,1528 +2020-01-15 17:30,1.11605,1.11614,1.11568,1.11575,1215 +2020-01-15 17:45,1.11574,1.11593,1.11566,1.11576,1373 +2020-01-15 18:00,1.11575,1.11589,1.11562,1.11589,979 +2020-01-15 18:15,1.1159,1.11596,1.11545,1.11546,1097 +2020-01-15 18:30,1.11545,1.11553,1.11503,1.11519,1336 +2020-01-15 18:45,1.11518,1.11524,1.11497,1.11516,879 +2020-01-15 19:00,1.11515,1.11516,1.11494,1.11507,1039 +2020-01-15 19:15,1.11508,1.11528,1.11506,1.11527,2840 +2020-01-15 19:30,1.11527,1.1154,1.11512,1.11513,981 +2020-01-15 19:45,1.11514,1.11521,1.11494,1.11504,943 +2020-01-15 20:00,1.11504,1.11511,1.11493,1.11494,869 +2020-01-15 20:15,1.11496,1.11498,1.11482,1.11482,833 +2020-01-15 20:30,1.11482,1.1151,1.11482,1.11498,789 +2020-01-15 20:45,1.11497,1.11529,1.11497,1.11523,981 +2020-01-15 21:00,1.11523,1.11523,1.11492,1.11496,475 +2020-01-15 21:15,1.11496,1.11496,1.11486,1.11487,362 +2020-01-15 21:30,1.11486,1.11487,1.11481,1.11485,387 +2020-01-15 21:45,1.11486,1.11506,1.11482,1.11495,299 +2020-01-15 22:00,1.11492,1.11524,1.1149,1.11512,161 +2020-01-15 22:15,1.1151,1.11539,1.11503,1.11523,291 +2020-01-15 22:30,1.11522,1.11534,1.11506,1.11506,990 +2020-01-15 22:45,1.11506,1.11516,1.11504,1.11514,276 +2020-01-15 23:00,1.11515,1.1153,1.11514,1.11517,378 +2020-01-15 23:15,1.11517,1.11521,1.115,1.11505,242 +2020-01-15 23:30,1.11507,1.1152,1.11505,1.11513,403 +2020-01-15 23:45,1.11514,1.11526,1.1151,1.11524,349 +2020-01-16 00:00,1.11524,1.1158,1.11523,1.11578,735 +2020-01-16 00:15,1.11578,1.1158,1.11558,1.11574,892 +2020-01-16 00:30,1.11573,1.11577,1.11561,1.11562,514 +2020-01-16 00:45,1.11562,1.11563,1.11539,1.11548,454 +2020-01-16 01:00,1.11548,1.11552,1.11537,1.11545,672 +2020-01-16 01:15,1.11544,1.1155,1.11536,1.11544,723 +2020-01-16 01:30,1.11544,1.11546,1.11531,1.11539,640 +2020-01-16 01:45,1.11539,1.1154,1.1153,1.11535,634 +2020-01-16 02:00,1.11534,1.11537,1.11527,1.11535,400 +2020-01-16 02:15,1.11534,1.11536,1.11517,1.11518,523 +2020-01-16 02:30,1.11519,1.1152,1.11507,1.11519,428 +2020-01-16 02:45,1.11519,1.11522,1.11514,1.11516,1666 +2020-01-16 03:00,1.11516,1.11534,1.11513,1.11533,373 +2020-01-16 03:15,1.11533,1.11549,1.11532,1.11544,449 +2020-01-16 03:30,1.11545,1.1155,1.1154,1.11542,391 +2020-01-16 03:45,1.11542,1.11543,1.11526,1.11527,502 +2020-01-16 04:00,1.11527,1.11532,1.11525,1.11527,404 +2020-01-16 04:15,1.11526,1.11534,1.11525,1.11526,315 +2020-01-16 04:30,1.11526,1.11531,1.1151,1.11525,582 +2020-01-16 04:45,1.11526,1.11534,1.11507,1.1151,372 +2020-01-16 05:00,1.11511,1.11524,1.11511,1.11517,440 +2020-01-16 05:15,1.11517,1.11521,1.11509,1.11509,347 +2020-01-16 05:30,1.11509,1.11511,1.11499,1.11506,450 +2020-01-16 05:45,1.11507,1.11513,1.11496,1.11498,753 +2020-01-16 06:00,1.11498,1.11498,1.11475,1.11494,602 +2020-01-16 06:15,1.11494,1.11494,1.11455,1.11461,778 +2020-01-16 06:30,1.11459,1.11484,1.11445,1.11478,1000 +2020-01-16 06:45,1.11478,1.11504,1.11473,1.11503,781 +2020-01-16 07:00,1.11503,1.11529,1.11486,1.11491,1371 +2020-01-16 07:15,1.1149,1.11506,1.11458,1.1148,1807 +2020-01-16 07:30,1.11478,1.11507,1.11455,1.11461,1576 +2020-01-16 07:45,1.11461,1.11481,1.11451,1.11476,1585 +2020-01-16 08:00,1.11478,1.11535,1.11458,1.11521,2158 +2020-01-16 08:15,1.11521,1.11566,1.11504,1.11547,1820 +2020-01-16 08:30,1.11546,1.11637,1.11546,1.11586,3463 +2020-01-16 08:45,1.11585,1.11604,1.11553,1.11562,2035 +2020-01-16 09:00,1.11564,1.11586,1.11552,1.11569,1926 +2020-01-16 09:15,1.11569,1.11593,1.11537,1.11537,1663 +2020-01-16 09:30,1.11537,1.11567,1.11502,1.11534,2322 +2020-01-16 09:45,1.11535,1.11547,1.11523,1.11534,1555 +2020-01-16 10:00,1.11533,1.11574,1.11526,1.11569,1577 +2020-01-16 10:15,1.11569,1.11632,1.11559,1.11621,1556 +2020-01-16 10:30,1.11621,1.11624,1.11573,1.11574,1412 +2020-01-16 10:45,1.11574,1.11591,1.11561,1.11573,1359 +2020-01-16 11:00,1.11573,1.11596,1.11566,1.11573,1595 +2020-01-16 11:15,1.11574,1.11606,1.11574,1.11597,1002 +2020-01-16 11:30,1.11598,1.11604,1.11557,1.11585,1369 +2020-01-16 11:45,1.11584,1.11596,1.11575,1.11589,1041 +2020-01-16 12:00,1.11589,1.11619,1.11578,1.11614,1407 +2020-01-16 12:15,1.11613,1.11622,1.11567,1.11619,1526 +2020-01-16 12:30,1.1162,1.11727,1.11605,1.1167,3078 +2020-01-16 12:45,1.1167,1.11674,1.11634,1.11647,2416 +2020-01-16 13:00,1.11647,1.11697,1.11624,1.11689,2909 +2020-01-16 13:15,1.11689,1.11689,1.11642,1.11651,2663 +2020-01-16 13:30,1.11649,1.11656,1.11524,1.1157,4523 +2020-01-16 13:45,1.1157,1.11595,1.11501,1.11514,3143 +2020-01-16 14:00,1.11513,1.11568,1.11473,1.11566,2953 +2020-01-16 14:15,1.11567,1.11602,1.11538,1.11563,2991 +2020-01-16 14:30,1.11566,1.11566,1.11483,1.11511,4996 +2020-01-16 14:45,1.1151,1.11511,1.11411,1.11414,3201 +2020-01-16 15:00,1.11414,1.11468,1.11359,1.1139,3699 +2020-01-16 15:15,1.11389,1.11405,1.1131,1.11377,4046 +2020-01-16 15:30,1.11377,1.1138,1.11311,1.11322,4114 +2020-01-16 15:45,1.11322,1.11427,1.11312,1.11407,4255 +2020-01-16 16:00,1.11407,1.11423,1.11331,1.11367,3132 +2020-01-16 16:15,1.11366,1.11367,1.11311,1.11323,3127 +2020-01-16 16:30,1.11325,1.11355,1.11306,1.11312,2359 +2020-01-16 16:45,1.11312,1.11329,1.11279,1.11302,1846 +2020-01-16 17:00,1.11303,1.11344,1.11291,1.11327,1623 +2020-01-16 17:15,1.11327,1.11342,1.11306,1.11342,1161 +2020-01-16 17:30,1.11343,1.11357,1.11335,1.11354,1054 +2020-01-16 17:45,1.11354,1.1136,1.11325,1.11346,1333 +2020-01-16 18:00,1.11347,1.1136,1.11323,1.1136,1010 +2020-01-16 18:15,1.1136,1.11361,1.11337,1.11345,1218 +2020-01-16 18:30,1.11346,1.11346,1.11317,1.11324,798 +2020-01-16 18:45,1.11324,1.11352,1.11318,1.11346,895 +2020-01-16 19:00,1.11346,1.11352,1.11334,1.11345,723 +2020-01-16 19:15,1.11345,1.11345,1.11334,1.11334,523 +2020-01-16 19:30,1.11333,1.11355,1.11326,1.11343,740 +2020-01-16 19:45,1.11344,1.11353,1.11332,1.11348,1035 +2020-01-16 20:00,1.11348,1.1136,1.11345,1.11359,798 +2020-01-16 20:15,1.11359,1.11366,1.1135,1.11358,669 +2020-01-16 20:30,1.11357,1.11371,1.11351,1.11369,543 +2020-01-16 20:45,1.11368,1.11381,1.11364,1.11379,666 +2020-01-16 21:00,1.11378,1.11381,1.11371,1.11377,394 +2020-01-16 21:15,1.11377,1.11377,1.11365,1.11372,280 +2020-01-16 21:30,1.11372,1.11372,1.11353,1.11354,508 +2020-01-16 21:45,1.11354,1.11368,1.11343,1.11358,306 +2020-01-16 22:00,1.11358,1.11378,1.11343,1.11358,607 +2020-01-16 22:15,1.11358,1.11375,1.11345,1.11357,778 +2020-01-16 22:30,1.11358,1.11372,1.11344,1.11356,349 +2020-01-16 22:45,1.11358,1.11374,1.11356,1.11372,131 +2020-01-16 23:00,1.11371,1.11372,1.11359,1.11361,288 +2020-01-16 23:15,1.11362,1.11368,1.11355,1.11366,284 +2020-01-16 23:30,1.11366,1.11373,1.11362,1.1137,447 +2020-01-16 23:45,1.11371,1.11376,1.11367,1.11368,235 +2020-01-17 00:00,1.11368,1.1137,1.11355,1.11359,526 +2020-01-17 00:15,1.11359,1.11366,1.11351,1.11363,405 +2020-01-17 00:30,1.11363,1.11382,1.11361,1.11382,467 +2020-01-17 00:45,1.11383,1.11392,1.11369,1.11374,758 +2020-01-17 01:00,1.11375,1.1139,1.11374,1.11385,376 +2020-01-17 01:15,1.11385,1.11385,1.11351,1.11353,640 +2020-01-17 01:30,1.11353,1.11365,1.11339,1.11363,1406 +2020-01-17 01:45,1.11362,1.11376,1.11355,1.11368,631 +2020-01-17 02:00,1.11368,1.11406,1.11367,1.11406,794 +2020-01-17 02:15,1.11406,1.11417,1.114,1.11414,710 +2020-01-17 02:30,1.11414,1.11425,1.11407,1.11411,598 +2020-01-17 02:45,1.1141,1.11414,1.11362,1.11362,830 +2020-01-17 03:00,1.11362,1.11378,1.11357,1.11364,572 +2020-01-17 03:15,1.11365,1.11366,1.11326,1.11334,532 +2020-01-17 03:30,1.11335,1.11347,1.1132,1.11325,620 +2020-01-17 03:45,1.11326,1.11336,1.11308,1.11309,625 +2020-01-17 04:00,1.11309,1.11337,1.11309,1.1133,732 +2020-01-17 04:15,1.11331,1.11332,1.11317,1.1132,286 +2020-01-17 04:30,1.11321,1.11324,1.11309,1.11311,531 +2020-01-17 04:45,1.11311,1.11327,1.11309,1.11319,381 +2020-01-17 05:00,1.11318,1.11339,1.11318,1.11334,413 +2020-01-17 05:15,1.11334,1.11355,1.1133,1.11345,320 +2020-01-17 05:30,1.11345,1.11376,1.11344,1.11376,482 +2020-01-17 05:45,1.11375,1.11376,1.1136,1.11364,406 +2020-01-17 06:00,1.11364,1.11365,1.11347,1.11355,798 +2020-01-17 06:15,1.11355,1.11377,1.11355,1.11375,508 +2020-01-17 06:30,1.11374,1.11396,1.11374,1.1139,541 +2020-01-17 06:45,1.1139,1.11403,1.11383,1.11396,694 +2020-01-17 07:00,1.11395,1.11411,1.11384,1.11394,1385 +2020-01-17 07:15,1.11394,1.11396,1.11364,1.11366,1424 +2020-01-17 07:30,1.11366,1.11392,1.11358,1.11392,965 +2020-01-17 07:45,1.11391,1.11393,1.11348,1.11363,1596 +2020-01-17 08:00,1.11363,1.11387,1.11341,1.11381,1796 +2020-01-17 08:15,1.1138,1.11396,1.11346,1.11348,1167 +2020-01-17 08:30,1.11347,1.1137,1.11345,1.11367,1753 +2020-01-17 08:45,1.11367,1.11382,1.11339,1.11355,1551 +2020-01-17 09:00,1.11355,1.11371,1.1134,1.11349,1387 +2020-01-17 09:15,1.11349,1.11376,1.11311,1.1132,2189 +2020-01-17 09:30,1.1132,1.11323,1.11253,1.11274,4035 +2020-01-17 09:45,1.11275,1.11284,1.11248,1.11276,2367 +2020-01-17 10:00,1.11275,1.11282,1.11244,1.1125,1696 +2020-01-17 10:15,1.1125,1.11266,1.112,1.11203,2556 +2020-01-17 10:30,1.11202,1.11227,1.11189,1.11202,1992 +2020-01-17 10:45,1.11201,1.11215,1.11157,1.1116,2337 +2020-01-17 11:00,1.11158,1.11158,1.11082,1.11083,2898 +2020-01-17 11:15,1.11082,1.11112,1.11063,1.11102,2211 +2020-01-17 11:30,1.11102,1.11131,1.11078,1.11083,1949 +2020-01-17 11:45,1.11082,1.11126,1.11078,1.11123,1813 +2020-01-17 12:00,1.11124,1.11147,1.11111,1.11127,1380 +2020-01-17 12:15,1.11127,1.11129,1.111,1.11119,1525 +2020-01-17 12:30,1.11118,1.11134,1.11086,1.11104,2214 +2020-01-17 12:45,1.11105,1.11119,1.11059,1.11098,2578 +2020-01-17 13:00,1.11097,1.11119,1.11074,1.11074,2554 +2020-01-17 13:15,1.11075,1.1108,1.11027,1.1106,2546 +2020-01-17 13:30,1.11059,1.11059,1.11006,1.11007,3456 +2020-01-17 13:45,1.11007,1.11037,1.1098,1.11004,3543 +2020-01-17 14:00,1.11004,1.11031,1.10956,1.11024,2809 +2020-01-17 14:15,1.11023,1.11061,1.10991,1.11006,2931 +2020-01-17 14:30,1.11005,1.11029,1.10979,1.11006,2557 +2020-01-17 14:45,1.11005,1.11017,1.10979,1.11005,2218 +2020-01-17 15:00,1.11007,1.11028,1.10985,1.11005,3311 +2020-01-17 15:15,1.11004,1.11015,1.10944,1.10954,2774 +2020-01-17 15:30,1.10954,1.10971,1.10862,1.10868,5013 +2020-01-17 15:45,1.10867,1.10976,1.10867,1.10938,3833 +2020-01-17 16:00,1.10938,1.10954,1.10888,1.10918,3050 +2020-01-17 16:15,1.10919,1.10942,1.109,1.1093,2068 +2020-01-17 16:30,1.1093,1.10955,1.10923,1.10943,1371 +2020-01-17 16:45,1.10944,1.10961,1.10917,1.10917,1169 +2020-01-17 17:00,1.10917,1.10949,1.10917,1.10937,1341 +2020-01-17 17:15,1.10935,1.10947,1.10896,1.10899,1009 +2020-01-17 17:30,1.10901,1.10928,1.10893,1.10919,1033 +2020-01-17 17:45,1.1092,1.10924,1.1088,1.10911,1586 +2020-01-17 18:00,1.1091,1.10931,1.10902,1.1093,975 +2020-01-17 18:15,1.1093,1.10943,1.10911,1.10923,1088 +2020-01-17 18:30,1.10923,1.10938,1.10912,1.10916,559 +2020-01-17 18:45,1.10917,1.10934,1.10912,1.10925,629 +2020-01-17 19:00,1.10926,1.10931,1.10915,1.10915,432 +2020-01-17 19:15,1.10916,1.10918,1.10905,1.10911,319 +2020-01-17 19:30,1.10911,1.10921,1.10907,1.10917,576 +2020-01-17 19:45,1.10917,1.10946,1.10917,1.10931,654 +2020-01-17 20:00,1.1093,1.10931,1.10919,1.10926,877 +2020-01-17 20:15,1.10927,1.10933,1.10921,1.10927,348 +2020-01-17 20:30,1.10926,1.10927,1.10913,1.10919,451 +2020-01-17 20:45,1.10918,1.10927,1.10913,1.10927,917 +2020-01-17 21:00,1.10925,1.10928,1.10919,1.10925,605 +2020-01-17 21:15,1.10923,1.10924,1.1091,1.10911,528 +2020-01-17 21:30,1.10912,1.10916,1.10899,1.109,294 +2020-01-17 21:45,1.10902,1.10909,1.10886,1.1089,1090 +2020-01-19 22:00,1.1091,1.1093,1.10899,1.10925,188 +2020-01-19 22:15,1.10925,1.10925,1.10898,1.10898,46 +2020-01-19 22:30,1.10898,1.10907,1.10893,1.10905,349 +2020-01-19 22:45,1.10904,1.10908,1.1089,1.10904,928 +2020-01-19 23:00,1.10904,1.10914,1.10889,1.10893,523 +2020-01-19 23:15,1.10894,1.10916,1.10894,1.10915,363 +2020-01-19 23:30,1.10916,1.10941,1.10916,1.10925,459 +2020-01-19 23:45,1.10924,1.10948,1.10923,1.10946,424 +2020-01-20 00:00,1.10946,1.10956,1.10939,1.10954,410 +2020-01-20 00:15,1.10953,1.10985,1.10953,1.10984,506 +2020-01-20 00:30,1.10983,1.10984,1.10948,1.10954,1634 +2020-01-20 00:45,1.10954,1.10959,1.10926,1.10928,768 +2020-01-20 01:00,1.10929,1.10965,1.10924,1.10957,819 +2020-01-20 01:15,1.10959,1.10977,1.10957,1.10969,782 +2020-01-20 01:30,1.1097,1.1097,1.10949,1.10965,822 +2020-01-20 01:45,1.10966,1.10966,1.10951,1.10962,685 +2020-01-20 02:00,1.10962,1.10966,1.10949,1.10953,535 +2020-01-20 02:15,1.10953,1.10968,1.10953,1.10964,442 +2020-01-20 02:30,1.10965,1.1097,1.10954,1.1096,601 +2020-01-20 02:45,1.1096,1.10974,1.10958,1.10971,417 +2020-01-20 03:00,1.1097,1.10976,1.10968,1.10975,515 +2020-01-20 03:15,1.10974,1.10989,1.10973,1.10987,501 +2020-01-20 03:30,1.10986,1.10988,1.10954,1.10954,454 +2020-01-20 03:45,1.10953,1.1097,1.10951,1.10959,405 +2020-01-20 04:00,1.10959,1.10962,1.10954,1.10959,421 +2020-01-20 04:15,1.1096,1.10964,1.1094,1.1095,332 +2020-01-20 04:30,1.1095,1.10957,1.10949,1.10953,464 +2020-01-20 04:45,1.10953,1.10965,1.10948,1.10965,416 +2020-01-20 05:00,1.10965,1.10966,1.1096,1.1096,206 +2020-01-20 05:15,1.1096,1.10962,1.10949,1.10951,1157 +2020-01-20 05:30,1.1095,1.10972,1.1095,1.10971,316 +2020-01-20 05:45,1.10972,1.10989,1.10963,1.10979,575 +2020-01-20 06:00,1.10979,1.11002,1.10975,1.10995,500 +2020-01-20 06:15,1.10997,1.11007,1.10988,1.11005,920 +2020-01-20 06:30,1.11005,1.11008,1.10982,1.10999,701 +2020-01-20 06:45,1.10998,1.11011,1.10989,1.11005,581 +2020-01-20 07:00,1.11006,1.11013,1.10983,1.1099,1192 +2020-01-20 07:15,1.1099,1.11023,1.10975,1.10986,1194 +2020-01-20 07:30,1.10985,1.1099,1.10962,1.1097,1516 +2020-01-20 07:45,1.10969,1.10986,1.10939,1.10943,3653 +2020-01-20 08:00,1.10943,1.10973,1.10892,1.10898,2196 +2020-01-20 08:15,1.10898,1.10951,1.10893,1.10951,1585 +2020-01-20 08:30,1.1095,1.1095,1.10906,1.1091,1218 +2020-01-20 08:45,1.10909,1.1093,1.10886,1.1089,1466 +2020-01-20 09:00,1.1089,1.10895,1.10821,1.1085,2635 +2020-01-20 09:15,1.1085,1.10885,1.10839,1.10846,1611 +2020-01-20 09:30,1.10846,1.10895,1.10846,1.10884,1709 +2020-01-20 09:45,1.10885,1.10914,1.10866,1.10896,1636 +2020-01-20 10:00,1.10895,1.10906,1.10868,1.10881,1341 +2020-01-20 10:15,1.10882,1.10889,1.10833,1.10847,1082 +2020-01-20 10:30,1.10848,1.10865,1.10829,1.10862,1425 +2020-01-20 10:45,1.10861,1.10872,1.1084,1.10841,904 +2020-01-20 11:00,1.1084,1.10875,1.1084,1.10849,859 +2020-01-20 11:15,1.10849,1.10882,1.1084,1.10872,1266 +2020-01-20 11:30,1.10872,1.10879,1.10848,1.10854,1024 +2020-01-20 11:45,1.10854,1.10874,1.10853,1.10856,964 +2020-01-20 12:00,1.10857,1.10871,1.10848,1.10855,734 +2020-01-20 12:15,1.10855,1.10858,1.10827,1.10857,514 +2020-01-20 12:30,1.10857,1.10869,1.10841,1.10855,932 +2020-01-20 12:45,1.10854,1.10855,1.10831,1.10838,938 +2020-01-20 13:00,1.10839,1.10852,1.10833,1.10842,1237 +2020-01-20 13:15,1.10841,1.10847,1.10806,1.10811,1549 +2020-01-20 13:30,1.1081,1.1085,1.10805,1.10849,1279 +2020-01-20 13:45,1.10848,1.10855,1.10832,1.10835,1335 +2020-01-20 14:00,1.10834,1.10837,1.108,1.10801,1198 +2020-01-20 14:15,1.108,1.10837,1.10792,1.10833,1353 +2020-01-20 14:30,1.10832,1.10845,1.10822,1.10838,898 +2020-01-20 14:45,1.10839,1.10839,1.10818,1.1082,1001 +2020-01-20 15:00,1.10821,1.10838,1.10797,1.10836,1275 +2020-01-20 15:15,1.10837,1.10852,1.10825,1.10833,998 +2020-01-20 15:30,1.10834,1.10837,1.10798,1.10798,1215 +2020-01-20 15:45,1.10799,1.10833,1.10766,1.10827,2448 +2020-01-20 16:00,1.10828,1.10853,1.10816,1.10833,1966 +2020-01-20 16:15,1.10832,1.10836,1.10811,1.10833,709 +2020-01-20 16:30,1.10832,1.10847,1.10825,1.1084,714 +2020-01-20 16:45,1.10839,1.1086,1.10835,1.10838,764 +2020-01-20 17:00,1.10839,1.10854,1.10839,1.10851,2844 +2020-01-20 17:15,1.10851,1.10861,1.10849,1.10857,595 +2020-01-20 17:30,1.10857,1.10867,1.10856,1.10864,552 +2020-01-20 17:45,1.10864,1.10864,1.10831,1.10834,622 +2020-01-20 18:00,1.10833,1.10835,1.10828,1.10829,264 +2020-01-20 18:15,1.10828,1.1083,1.10823,1.10825,1302 +2020-01-20 18:30,1.10825,1.10827,1.10822,1.10825,591 +2020-01-20 18:45,1.10825,1.10906,1.10824,1.1089,877 +2020-01-20 19:00,1.1089,1.10911,1.10875,1.10885,786 +2020-01-20 19:15,1.10885,1.10915,1.10885,1.10914,874 +2020-01-20 19:30,1.10915,1.10919,1.10905,1.10918,384 +2020-01-20 19:45,1.10918,1.1092,1.10909,1.10918,317 +2020-01-20 20:00,1.10918,1.10945,1.10913,1.10923,615 +2020-01-20 20:15,1.10924,1.10946,1.10918,1.10939,648 +2020-01-20 20:30,1.10939,1.10978,1.10932,1.10974,9523 +2020-01-20 20:45,1.10973,1.10979,1.10965,1.10977,839 +2020-01-20 21:00,1.10975,1.10979,1.10951,1.10963,494 +2020-01-20 21:15,1.10962,1.10975,1.10956,1.10974,374 +2020-01-20 21:30,1.10974,1.10976,1.1097,1.10975,907 +2020-01-20 21:45,1.10973,1.10974,1.10944,1.10944,320 +2020-01-20 22:00,1.10934,1.10959,1.10934,1.10958,117 +2020-01-20 22:15,1.10958,1.10968,1.10957,1.10961,1216 +2020-01-20 22:30,1.10961,1.10977,1.10953,1.10971,351 +2020-01-20 22:45,1.10971,1.10976,1.10967,1.10968,162 +2020-01-20 23:00,1.10968,1.10968,1.10933,1.10948,659 +2020-01-20 23:15,1.10949,1.1095,1.10943,1.10948,195 +2020-01-20 23:30,1.1095,1.10963,1.10946,1.10959,242 +2020-01-20 23:45,1.10959,1.10968,1.10953,1.10962,529 +2020-01-21 00:00,1.10963,1.10968,1.10942,1.10945,523 +2020-01-21 00:15,1.10944,1.10945,1.10931,1.1094,357 +2020-01-21 00:30,1.1094,1.1094,1.10908,1.10915,273 +2020-01-21 00:45,1.10917,1.10935,1.10914,1.10923,661 +2020-01-21 01:00,1.10922,1.1093,1.10899,1.10899,1032 +2020-01-21 01:15,1.10899,1.10922,1.10887,1.10905,1293 +2020-01-21 01:30,1.10905,1.10917,1.10897,1.10905,1135 +2020-01-21 01:45,1.10904,1.10917,1.10895,1.10905,1026 +2020-01-21 02:00,1.10906,1.10948,1.10906,1.10947,808 +2020-01-21 02:15,1.10946,1.10964,1.10943,1.10946,588 +2020-01-21 02:30,1.10945,1.10945,1.10921,1.10927,809 +2020-01-21 02:45,1.10928,1.10959,1.10926,1.10957,627 +2020-01-21 03:00,1.10958,1.10981,1.10957,1.10967,825 +2020-01-21 03:15,1.10967,1.1098,1.10953,1.10956,847 +2020-01-21 03:30,1.10957,1.10972,1.10941,1.10966,643 +2020-01-21 03:45,1.10967,1.10986,1.10961,1.10973,679 +2020-01-21 04:00,1.10973,1.10974,1.10961,1.10967,391 +2020-01-21 04:15,1.10967,1.10967,1.10946,1.10961,357 +2020-01-21 04:30,1.10963,1.10978,1.10961,1.10963,478 +2020-01-21 04:45,1.10962,1.10993,1.10962,1.10992,447 +2020-01-21 05:00,1.10992,1.10993,1.10971,1.10982,540 +2020-01-21 05:15,1.10981,1.10982,1.10971,1.10972,388 +2020-01-21 05:30,1.10973,1.10973,1.10962,1.10962,435 +2020-01-21 05:45,1.10962,1.10967,1.1095,1.10952,550 +2020-01-21 06:00,1.10952,1.10973,1.10937,1.10967,667 +2020-01-21 06:15,1.10968,1.10972,1.10951,1.10958,592 +2020-01-21 06:30,1.10958,1.10973,1.10952,1.10956,823 +2020-01-21 06:45,1.10956,1.10972,1.10941,1.10942,1203 +2020-01-21 07:00,1.10941,1.10965,1.10927,1.10953,1429 +2020-01-21 07:15,1.10954,1.10967,1.10942,1.10959,1427 +2020-01-21 07:30,1.10962,1.10967,1.10937,1.10952,1597 +2020-01-21 07:45,1.10952,1.10956,1.10915,1.10921,2028 +2020-01-21 08:00,1.10922,1.10962,1.1089,1.10891,3298 +2020-01-21 08:15,1.10891,1.109,1.10864,1.10896,2090 +2020-01-21 08:30,1.10896,1.10932,1.10864,1.1092,1959 +2020-01-21 08:45,1.10921,1.10948,1.10901,1.10904,2512 +2020-01-21 09:00,1.10904,1.10918,1.10885,1.109,1836 +2020-01-21 09:15,1.10899,1.109,1.10855,1.10866,1826 +2020-01-21 09:30,1.10867,1.10935,1.1086,1.10926,2806 +2020-01-21 09:45,1.10925,1.1093,1.10895,1.10905,1854 +2020-01-21 10:00,1.10907,1.11002,1.109,1.10942,2815 +2020-01-21 10:15,1.10942,1.11072,1.10939,1.11055,2440 +2020-01-21 10:30,1.11054,1.11099,1.1104,1.1104,2280 +2020-01-21 10:45,1.1104,1.11049,1.11023,1.11038,1772 +2020-01-21 11:00,1.11037,1.11087,1.11018,1.11077,2597 +2020-01-21 11:15,1.11078,1.11089,1.11049,1.11082,1559 +2020-01-21 11:30,1.11082,1.11101,1.11049,1.11052,1934 +2020-01-21 11:45,1.11053,1.11093,1.11052,1.11055,1976 +2020-01-21 12:00,1.11054,1.11068,1.11036,1.11038,2076 +2020-01-21 12:15,1.11037,1.11042,1.10997,1.11002,1262 +2020-01-21 12:30,1.11002,1.11064,1.11002,1.11059,1587 +2020-01-21 12:45,1.11058,1.11091,1.11044,1.11079,1824 +2020-01-21 13:00,1.11084,1.1115,1.11076,1.11147,3035 +2020-01-21 13:15,1.11147,1.11179,1.11145,1.11166,3966 +2020-01-21 13:30,1.11166,1.11174,1.11135,1.11157,2270 +2020-01-21 13:45,1.11159,1.11174,1.11125,1.11136,2070 +2020-01-21 14:00,1.11136,1.11137,1.11082,1.11099,2369 +2020-01-21 14:15,1.11099,1.11131,1.11098,1.11127,1642 +2020-01-21 14:30,1.11129,1.11137,1.1105,1.11058,5383 +2020-01-21 14:45,1.11059,1.11068,1.11015,1.1103,2544 +2020-01-21 15:00,1.11029,1.11037,1.11008,1.1102,2287 +2020-01-21 15:15,1.11021,1.11037,1.10974,1.10992,2945 +2020-01-21 15:30,1.10992,1.10994,1.10928,1.10944,2565 +2020-01-21 15:45,1.10943,1.10989,1.10889,1.10977,3240 +2020-01-21 16:00,1.10976,1.10998,1.10959,1.10965,2898 +2020-01-21 16:15,1.10965,1.10975,1.10928,1.10958,2093 +2020-01-21 16:30,1.10957,1.10972,1.1092,1.10934,1768 +2020-01-21 16:45,1.10935,1.10971,1.10931,1.10957,1345 +2020-01-21 17:00,1.10956,1.10964,1.10923,1.10932,1022 +2020-01-21 17:15,1.10931,1.10937,1.10914,1.10915,795 +2020-01-21 17:30,1.10915,1.10926,1.10905,1.10912,798 +2020-01-21 17:45,1.10912,1.10924,1.10903,1.10917,651 +2020-01-21 18:00,1.10916,1.10922,1.10895,1.10908,864 +2020-01-21 18:15,1.1091,1.1095,1.10905,1.10928,1387 +2020-01-21 18:30,1.10927,1.10948,1.10922,1.10926,1215 +2020-01-21 18:45,1.10927,1.10943,1.10912,1.10924,977 +2020-01-21 19:00,1.10924,1.10937,1.10915,1.10928,1079 +2020-01-21 19:15,1.10927,1.1094,1.10922,1.10933,879 +2020-01-21 19:30,1.10934,1.10943,1.10924,1.10927,876 +2020-01-21 19:45,1.10928,1.10952,1.1092,1.10948,874 +2020-01-21 20:00,1.10949,1.10952,1.10918,1.10921,1194 +2020-01-21 20:15,1.10922,1.10929,1.10906,1.10909,655 +2020-01-21 20:30,1.10909,1.10913,1.10894,1.10902,719 +2020-01-21 20:45,1.10901,1.10912,1.10872,1.10872,1140 +2020-01-21 21:00,1.10873,1.10881,1.10841,1.10856,683 +2020-01-21 21:15,1.10857,1.10868,1.10849,1.10851,684 +2020-01-21 21:30,1.10849,1.1085,1.1081,1.1082,609 +2020-01-21 21:45,1.10821,1.10829,1.10809,1.10819,2203 +2020-01-21 22:00,1.10816,1.10846,1.10815,1.10829,186 +2020-01-21 22:15,1.10828,1.10834,1.10826,1.10826,377 +2020-01-21 22:30,1.10828,1.10839,1.10816,1.10825,1260 +2020-01-21 22:45,1.10825,1.10828,1.10822,1.10827,305 +2020-01-21 23:00,1.10827,1.10842,1.10825,1.10836,470 +2020-01-21 23:15,1.10834,1.1084,1.10825,1.10837,253 +2020-01-21 23:30,1.10835,1.10851,1.10832,1.10851,495 +2020-01-21 23:45,1.1085,1.10856,1.10849,1.10851,446 +2020-01-22 00:00,1.10851,1.1086,1.1084,1.10851,704 +2020-01-22 00:15,1.10851,1.10868,1.1085,1.10866,447 +2020-01-22 00:30,1.10867,1.10867,1.10826,1.10826,588 +2020-01-22 00:45,1.10826,1.10843,1.10821,1.10826,602 +2020-01-22 01:00,1.10826,1.10837,1.10813,1.10817,801 +2020-01-22 01:15,1.10817,1.10817,1.10802,1.10802,724 +2020-01-22 01:30,1.10802,1.1082,1.10776,1.10806,776 +2020-01-22 01:45,1.10807,1.10823,1.10802,1.10818,828 +2020-01-22 02:00,1.10818,1.10823,1.10794,1.10797,759 +2020-01-22 02:15,1.10797,1.10803,1.10773,1.10785,869 +2020-01-22 02:30,1.10786,1.108,1.10777,1.10784,740 +2020-01-22 02:45,1.10784,1.10811,1.10777,1.10804,893 +2020-01-22 03:00,1.10803,1.10816,1.10797,1.10814,744 +2020-01-22 03:15,1.10813,1.10839,1.10806,1.10835,607 +2020-01-22 03:30,1.10836,1.10836,1.10822,1.1083,377 +2020-01-22 03:45,1.10829,1.1083,1.10808,1.10815,573 +2020-01-22 04:00,1.10814,1.10821,1.10807,1.10818,310 +2020-01-22 04:15,1.10818,1.1083,1.10818,1.10828,306 +2020-01-22 04:30,1.10829,1.10829,1.10812,1.10814,415 +2020-01-22 04:45,1.10813,1.10824,1.10807,1.10824,294 +2020-01-22 05:00,1.10825,1.1084,1.1082,1.10829,373 +2020-01-22 05:15,1.10828,1.10841,1.10828,1.10835,494 +2020-01-22 05:30,1.10835,1.10851,1.10834,1.1085,526 +2020-01-22 05:45,1.10851,1.10857,1.10839,1.10845,798 +2020-01-22 06:00,1.10845,1.10862,1.10837,1.1085,706 +2020-01-22 06:15,1.1085,1.10851,1.10814,1.10824,810 +2020-01-22 06:30,1.10825,1.10836,1.10813,1.10816,695 +2020-01-22 06:45,1.10816,1.10829,1.10808,1.10828,801 +2020-01-22 07:00,1.10829,1.10831,1.10776,1.10781,989 +2020-01-22 07:15,1.1078,1.10798,1.10753,1.10791,1162 +2020-01-22 07:30,1.1079,1.10832,1.10782,1.10825,1089 +2020-01-22 07:45,1.10824,1.1086,1.10822,1.10859,2552 +2020-01-22 08:00,1.10859,1.10859,1.10773,1.1079,3336 +2020-01-22 08:15,1.1079,1.10792,1.10769,1.1078,1883 +2020-01-22 08:30,1.10779,1.10799,1.10749,1.10766,1772 +2020-01-22 08:45,1.10766,1.10824,1.10762,1.10815,1798 +2020-01-22 09:00,1.10815,1.10816,1.1078,1.10807,1839 +2020-01-22 09:15,1.10807,1.10859,1.108,1.10852,1798 +2020-01-22 09:30,1.10852,1.10927,1.10848,1.10881,2249 +2020-01-22 09:45,1.10882,1.10918,1.10871,1.10908,1665 +2020-01-22 10:00,1.10908,1.10938,1.10903,1.10903,2238 +2020-01-22 10:15,1.10903,1.10922,1.10903,1.10909,1409 +2020-01-22 10:30,1.10909,1.10947,1.10885,1.10893,1494 +2020-01-22 10:45,1.10893,1.10907,1.10858,1.10859,1605 +2020-01-22 11:00,1.1086,1.10879,1.10847,1.1085,2364 +2020-01-22 11:15,1.1085,1.1085,1.10797,1.10822,2359 +2020-01-22 11:30,1.10823,1.10848,1.10805,1.10813,1600 +2020-01-22 11:45,1.10813,1.10818,1.1078,1.10787,2542 +2020-01-22 12:00,1.10787,1.10817,1.10771,1.10805,2040 +2020-01-22 12:15,1.10804,1.10807,1.1078,1.10803,1545 +2020-01-22 12:30,1.10804,1.10851,1.10789,1.10841,1981 +2020-01-22 12:45,1.10841,1.10846,1.10805,1.10835,2373 +2020-01-22 13:00,1.10835,1.10884,1.10822,1.10876,2714 +2020-01-22 13:15,1.10875,1.1091,1.10862,1.10892,2008 +2020-01-22 13:30,1.10891,1.10903,1.10861,1.10886,1672 +2020-01-22 13:45,1.10887,1.10912,1.1085,1.10896,2211 +2020-01-22 14:00,1.10897,1.10984,1.10896,1.10936,3093 +2020-01-22 14:15,1.10936,1.10936,1.10886,1.1089,2478 +2020-01-22 14:30,1.10889,1.10892,1.10819,1.10828,2923 +2020-01-22 14:45,1.10829,1.10844,1.10726,1.10733,3171 +2020-01-22 15:00,1.1073,1.10777,1.107,1.10726,4565 +2020-01-22 15:15,1.10726,1.10776,1.10724,1.10759,3524 +2020-01-22 15:30,1.10758,1.10781,1.10734,1.10744,3082 +2020-01-22 15:45,1.10743,1.10757,1.10712,1.10754,3462 +2020-01-22 16:00,1.10754,1.10901,1.10747,1.10891,3124 +2020-01-22 16:15,1.10893,1.10912,1.10854,1.10872,2056 +2020-01-22 16:30,1.10873,1.10891,1.1084,1.10844,1717 +2020-01-22 16:45,1.10843,1.10863,1.10835,1.10846,1173 +2020-01-22 17:00,1.10847,1.10871,1.10839,1.10869,1223 +2020-01-22 17:15,1.1087,1.10899,1.1086,1.10868,1021 +2020-01-22 17:30,1.10868,1.1087,1.10839,1.10857,1684 +2020-01-22 17:45,1.10857,1.10869,1.10848,1.10856,1018 +2020-01-22 18:00,1.10856,1.10862,1.10843,1.10849,758 +2020-01-22 18:15,1.1085,1.10854,1.10839,1.10848,731 +2020-01-22 18:30,1.10849,1.10871,1.10848,1.10869,494 +2020-01-22 18:45,1.10869,1.10871,1.10856,1.10869,656 +2020-01-22 19:00,1.10868,1.10884,1.10866,1.10883,843 +2020-01-22 19:15,1.10882,1.10904,1.10879,1.10903,1134 +2020-01-22 19:30,1.10903,1.10911,1.10898,1.10906,822 +2020-01-22 19:45,1.10907,1.10934,1.10906,1.10918,797 +2020-01-22 20:00,1.10918,1.10928,1.10904,1.10912,883 +2020-01-22 20:15,1.10913,1.10913,1.10896,1.10901,695 +2020-01-22 20:30,1.109,1.10906,1.10895,1.10904,838 +2020-01-22 20:45,1.10903,1.10929,1.10893,1.10927,785 +2020-01-22 21:00,1.10929,1.10932,1.10913,1.10913,10096 +2020-01-22 21:15,1.10915,1.10931,1.10915,1.10926,216 +2020-01-22 21:30,1.10927,1.10935,1.10912,1.10931,193 +2020-01-22 21:45,1.1093,1.10951,1.10915,1.1092,428 +2020-01-22 22:00,1.1092,1.10954,1.1092,1.10936,96 +2020-01-22 22:15,1.10936,1.10938,1.10925,1.10927,211 +2020-01-22 22:30,1.10927,1.10934,1.10925,1.1093,146 +2020-01-22 22:45,1.10929,1.10933,1.10918,1.10932,440 +2020-01-22 23:00,1.10931,1.10954,1.10928,1.10953,445 +2020-01-22 23:15,1.10954,1.10958,1.10951,1.10951,251 +2020-01-22 23:30,1.10952,1.10967,1.10947,1.10951,591 +2020-01-22 23:45,1.1095,1.10959,1.10942,1.10957,474 +2020-01-23 00:00,1.10956,1.10964,1.10945,1.10961,481 +2020-01-23 00:15,1.10961,1.10965,1.10943,1.10951,408 +2020-01-23 00:30,1.10952,1.10996,1.10947,1.1095,1637 +2020-01-23 00:45,1.1095,1.10956,1.10797,1.10872,1586 +2020-01-23 01:00,1.10872,1.10897,1.10852,1.10887,1051 +2020-01-23 01:15,1.10887,1.10897,1.10863,1.10863,1295 +2020-01-23 01:30,1.10863,1.10892,1.10861,1.10879,935 +2020-01-23 01:45,1.10878,1.10895,1.10872,1.10892,740 +2020-01-23 02:00,1.10892,1.10896,1.10872,1.10893,1509 +2020-01-23 02:15,1.10892,1.10908,1.10883,1.10884,651 +2020-01-23 02:30,1.10885,1.10914,1.10885,1.10902,470 +2020-01-23 02:45,1.10902,1.10908,1.10886,1.10895,531 +2020-01-23 03:00,1.10894,1.10898,1.10876,1.10882,468 +2020-01-23 03:15,1.10881,1.10882,1.1084,1.10841,813 +2020-01-23 03:30,1.1084,1.10853,1.10839,1.10851,675 +2020-01-23 03:45,1.1085,1.10852,1.10823,1.10827,581 +2020-01-23 04:00,1.10827,1.10856,1.10822,1.10853,625 +2020-01-23 04:15,1.10853,1.10854,1.1083,1.10836,499 +2020-01-23 04:30,1.10838,1.10852,1.10811,1.10811,495 +2020-01-23 04:45,1.10811,1.10854,1.10809,1.10852,564 +2020-01-23 05:00,1.10851,1.10853,1.1084,1.10845,649 +2020-01-23 05:15,1.10846,1.10846,1.10824,1.1084,686 +2020-01-23 05:30,1.10839,1.10847,1.10834,1.10846,363 +2020-01-23 05:45,1.10846,1.10851,1.10824,1.1083,573 +2020-01-23 06:00,1.10829,1.10851,1.10829,1.10839,677 +2020-01-23 06:15,1.1084,1.10842,1.10826,1.10835,596 +2020-01-23 06:30,1.10835,1.10839,1.10809,1.10825,816 +2020-01-23 06:45,1.10825,1.10851,1.10824,1.10851,681 +2020-01-23 07:00,1.1085,1.10887,1.10849,1.10876,1469 +2020-01-23 07:15,1.10875,1.10922,1.1087,1.10918,1178 +2020-01-23 07:30,1.10917,1.10921,1.1087,1.10878,1421 +2020-01-23 07:45,1.10878,1.10913,1.10874,1.10892,2300 +2020-01-23 08:00,1.10891,1.10896,1.10843,1.1086,2788 +2020-01-23 08:15,1.10861,1.10861,1.10821,1.10857,1956 +2020-01-23 08:30,1.10858,1.10879,1.10835,1.10867,2060 +2020-01-23 08:45,1.10868,1.10895,1.10829,1.10837,2228 +2020-01-23 09:00,1.10837,1.10844,1.10811,1.1084,1843 +2020-01-23 09:15,1.10841,1.10841,1.10802,1.10802,1674 +2020-01-23 09:30,1.10802,1.10853,1.1079,1.10838,1916 +2020-01-23 09:45,1.10838,1.10867,1.10828,1.10843,1769 +2020-01-23 10:00,1.10844,1.10875,1.1082,1.10847,1840 +2020-01-23 10:15,1.10849,1.10878,1.10846,1.10854,1688 +2020-01-23 10:30,1.10854,1.10883,1.10842,1.10881,1607 +2020-01-23 10:45,1.1088,1.10919,1.10863,1.10911,1520 +2020-01-23 11:00,1.10912,1.10939,1.10874,1.10879,1579 +2020-01-23 11:15,1.10878,1.10946,1.10874,1.10939,1742 +2020-01-23 11:30,1.1094,1.10941,1.10921,1.10937,1159 +2020-01-23 11:45,1.10936,1.10948,1.10902,1.10903,1272 +2020-01-23 12:00,1.10904,1.10926,1.10891,1.10908,1506 +2020-01-23 12:15,1.10907,1.10915,1.109,1.10907,894 +2020-01-23 12:30,1.10908,1.10914,1.10885,1.10908,1456 +2020-01-23 12:45,1.10908,1.10916,1.10844,1.10845,1691 +2020-01-23 13:00,1.10845,1.10915,1.10845,1.10909,2356 +2020-01-23 13:15,1.10908,1.10947,1.10898,1.10898,2974 +2020-01-23 13:30,1.10898,1.11087,1.10827,1.10884,13347 +2020-01-23 13:45,1.10885,1.10906,1.10802,1.10866,8651 +2020-01-23 14:00,1.10867,1.10903,1.10752,1.10789,6143 +2020-01-23 14:15,1.1079,1.10819,1.10599,1.10702,9997 +2020-01-23 14:30,1.10701,1.10745,1.10602,1.10685,6570 +2020-01-23 14:45,1.10684,1.10718,1.10645,1.10692,5615 +2020-01-23 15:00,1.10692,1.10716,1.10612,1.10629,5092 +2020-01-23 15:15,1.10629,1.10629,1.10481,1.1053,5892 +2020-01-23 15:30,1.10529,1.10529,1.10402,1.10489,6422 +2020-01-23 15:45,1.10493,1.10494,1.10427,1.10462,5583 +2020-01-23 16:00,1.10459,1.10461,1.10362,1.10385,4130 +2020-01-23 16:15,1.10385,1.10412,1.10363,1.104,2500 +2020-01-23 16:30,1.10398,1.10422,1.10383,1.10401,1747 +2020-01-23 16:45,1.10402,1.10419,1.10395,1.10411,1475 +2020-01-23 17:00,1.1041,1.10441,1.10397,1.10439,1192 +2020-01-23 17:15,1.10438,1.10475,1.1043,1.10466,1034 +2020-01-23 17:30,1.10465,1.10505,1.10461,1.10492,1564 +2020-01-23 17:45,1.10492,1.10518,1.10481,1.10509,1767 +2020-01-23 18:00,1.10509,1.10526,1.10484,1.10522,1261 +2020-01-23 18:15,1.10517,1.10526,1.10493,1.10498,1162 +2020-01-23 18:30,1.10497,1.10536,1.10489,1.10532,1075 +2020-01-23 18:45,1.10532,1.10534,1.10492,1.10496,1172 +2020-01-23 19:00,1.10496,1.10501,1.10482,1.10497,870 +2020-01-23 19:15,1.10498,1.10539,1.10488,1.1053,1050 +2020-01-23 19:30,1.10529,1.10541,1.10513,1.1054,821 +2020-01-23 19:45,1.1054,1.10559,1.10534,1.10553,1225 +2020-01-23 20:00,1.10552,1.10568,1.10547,1.10557,876 +2020-01-23 20:15,1.10556,1.10577,1.10546,1.10572,622 +2020-01-23 20:30,1.10573,1.10574,1.10556,1.10558,584 +2020-01-23 20:45,1.10559,1.10566,1.10546,1.10555,540 +2020-01-23 21:00,1.10556,1.10578,1.10554,1.10574,377 +2020-01-23 21:15,1.10574,1.10576,1.10569,1.10573,170 +2020-01-23 21:30,1.10574,1.1058,1.10561,1.10561,320 +2020-01-23 21:45,1.10561,1.10588,1.10542,1.10542,402 +2020-01-23 22:00,1.10542,1.10582,1.10528,1.10545,335 +2020-01-23 22:15,1.10546,1.1056,1.10514,1.10542,584 +2020-01-23 22:30,1.10542,1.10547,1.10541,1.10544,128 +2020-01-23 22:45,1.10543,1.10556,1.10541,1.10553,155 +2020-01-23 23:00,1.10554,1.10562,1.10551,1.10553,440 +2020-01-23 23:15,1.10553,1.10558,1.10546,1.10547,185 +2020-01-23 23:30,1.10547,1.10552,1.10541,1.10543,194 +2020-01-23 23:45,1.10544,1.10558,1.10537,1.10554,225 +2020-01-24 00:00,1.10554,1.10556,1.10521,1.10523,596 +2020-01-24 00:15,1.10524,1.10525,1.10506,1.10512,397 +2020-01-24 00:30,1.10512,1.10531,1.10512,1.10516,291 +2020-01-24 00:45,1.10516,1.10539,1.1051,1.10526,675 +2020-01-24 01:00,1.10527,1.10527,1.10518,1.10523,411 +2020-01-24 01:15,1.10524,1.10543,1.10521,1.1054,333 +2020-01-24 01:30,1.10541,1.10553,1.1054,1.10542,701 +2020-01-24 01:45,1.10542,1.10548,1.10529,1.10538,745 +2020-01-24 02:00,1.10537,1.10538,1.1053,1.10534,617 +2020-01-24 02:15,1.10534,1.10534,1.10526,1.10528,558 +2020-01-24 02:30,1.10529,1.10533,1.10516,1.1052,695 +2020-01-24 02:45,1.10519,1.10537,1.10519,1.10528,512 +2020-01-24 03:00,1.1053,1.10531,1.10515,1.10522,508 +2020-01-24 03:15,1.10525,1.10528,1.10496,1.10496,391 +2020-01-24 03:30,1.10496,1.10514,1.10496,1.1051,490 +2020-01-24 03:45,1.10509,1.10517,1.105,1.10504,373 +2020-01-24 04:00,1.10503,1.10512,1.10499,1.10503,490 +2020-01-24 04:15,1.10504,1.10512,1.10497,1.1051,513 +2020-01-24 04:30,1.1051,1.10517,1.10504,1.10507,355 +2020-01-24 04:45,1.10507,1.10513,1.10486,1.10486,440 +2020-01-24 05:00,1.10487,1.10495,1.10485,1.10486,351 +2020-01-24 05:15,1.10487,1.10492,1.1048,1.10491,363 +2020-01-24 05:30,1.10491,1.10496,1.10466,1.10466,727 +2020-01-24 05:45,1.10465,1.10488,1.10465,1.10488,539 +2020-01-24 06:00,1.10487,1.10494,1.10472,1.10473,705 +2020-01-24 06:15,1.10473,1.10478,1.10447,1.10455,518 +2020-01-24 06:30,1.10454,1.10495,1.10454,1.10494,643 +2020-01-24 06:45,1.10495,1.10507,1.10483,1.10505,601 +2020-01-24 07:00,1.10503,1.10503,1.10463,1.10468,1581 +2020-01-24 07:15,1.10468,1.1048,1.10435,1.10439,1218 +2020-01-24 07:30,1.10439,1.10475,1.10426,1.10463,1161 +2020-01-24 07:45,1.10465,1.10525,1.10463,1.10511,1473 +2020-01-24 08:00,1.10511,1.10561,1.10497,1.10531,2677 +2020-01-24 08:15,1.10532,1.10534,1.10475,1.1052,2485 +2020-01-24 08:30,1.10559,1.10617,1.10473,1.10485,3685 +2020-01-24 08:45,1.10486,1.10495,1.10444,1.10469,2480 +2020-01-24 09:00,1.1047,1.10509,1.10424,1.10506,2586 +2020-01-24 09:15,1.10507,1.10519,1.10465,1.10491,2416 +2020-01-24 09:30,1.10505,1.10523,1.1042,1.1042,3429 +2020-01-24 09:45,1.10419,1.10441,1.10337,1.10358,3500 +2020-01-24 10:00,1.10357,1.10366,1.10316,1.10349,2646 +2020-01-24 10:15,1.10349,1.10375,1.1033,1.1036,2669 +2020-01-24 10:30,1.10361,1.10397,1.10361,1.10384,1519 +2020-01-24 10:45,1.10385,1.10396,1.10367,1.10374,1536 +2020-01-24 11:00,1.10374,1.10374,1.10312,1.10331,1882 +2020-01-24 11:15,1.10331,1.10342,1.10313,1.10338,3865 +2020-01-24 11:30,1.10338,1.10341,1.10281,1.10334,2074 +2020-01-24 11:45,1.10333,1.10356,1.10327,1.10356,1553 +2020-01-24 12:00,1.10353,1.10353,1.10326,1.10329,1355 +2020-01-24 12:15,1.10329,1.10366,1.10326,1.10366,794 +2020-01-24 12:30,1.10366,1.10368,1.10353,1.10354,1100 +2020-01-24 12:45,1.10354,1.10355,1.10261,1.10277,1599 +2020-01-24 13:00,1.10276,1.10369,1.10271,1.10354,2401 +2020-01-24 13:15,1.10353,1.10374,1.10336,1.10357,1869 +2020-01-24 13:30,1.10356,1.10385,1.10346,1.10368,2261 +2020-01-24 13:45,1.10368,1.10391,1.1036,1.10387,1822 +2020-01-24 14:00,1.10389,1.10398,1.10365,1.10371,2000 +2020-01-24 14:15,1.10372,1.10372,1.10336,1.10338,2293 +2020-01-24 14:30,1.10338,1.10349,1.10314,1.10322,2970 +2020-01-24 14:45,1.10326,1.10362,1.10287,1.10311,2925 +2020-01-24 15:00,1.10311,1.10361,1.10286,1.10321,3425 +2020-01-24 15:15,1.10318,1.1032,1.10264,1.10299,3982 +2020-01-24 15:30,1.10299,1.10302,1.1023,1.10298,3748 +2020-01-24 15:45,1.10298,1.10306,1.10231,1.10247,3468 +2020-01-24 16:00,1.10248,1.10258,1.10227,1.10232,2669 +2020-01-24 16:15,1.10233,1.10278,1.10233,1.10267,1652 +2020-01-24 16:30,1.10267,1.1027,1.10195,1.10223,2677 +2020-01-24 16:45,1.10222,1.10256,1.10221,1.1025,1371 +2020-01-24 17:00,1.10249,1.10267,1.10234,1.1024,1130 +2020-01-24 17:15,1.1024,1.10271,1.1022,1.10264,1250 +2020-01-24 17:30,1.10265,1.10268,1.10239,1.10241,823 +2020-01-24 17:45,1.10241,1.10277,1.10241,1.10271,1177 +2020-01-24 18:00,1.10273,1.10292,1.10262,1.10277,954 +2020-01-24 18:15,1.10276,1.10286,1.10263,1.1028,879 +2020-01-24 18:30,1.1028,1.10296,1.10274,1.10275,808 +2020-01-24 18:45,1.10277,1.10289,1.10274,1.10279,593 +2020-01-24 19:00,1.10279,1.10294,1.10274,1.10294,640 +2020-01-24 19:15,1.10294,1.10308,1.1029,1.10304,1045 +2020-01-24 19:30,1.10306,1.10327,1.10296,1.10327,585 +2020-01-24 19:45,1.10327,1.10329,1.10296,1.10296,1083 +2020-01-24 20:00,1.10295,1.10301,1.1028,1.10285,1217 +2020-01-24 20:15,1.10285,1.10287,1.10257,1.10266,846 +2020-01-24 20:30,1.10265,1.10277,1.1026,1.10264,487 +2020-01-24 20:45,1.10264,1.10284,1.10257,1.10277,561 +2020-01-24 21:00,1.10276,1.10296,1.10275,1.10286,491 +2020-01-24 21:15,1.10287,1.10287,1.10271,1.10274,229 +2020-01-24 21:30,1.10275,1.10277,1.10246,1.1025,549 +2020-01-24 21:45,1.10252,1.10271,1.10209,1.10224,1053 +2020-01-26 22:00,1.10318,1.10321,1.10285,1.10298,240 +2020-01-26 22:15,1.10295,1.10303,1.10259,1.10293,2171 +2020-01-26 22:30,1.10294,1.1032,1.10265,1.10276,707 +2020-01-26 22:45,1.10275,1.10307,1.10246,1.10301,786 +2020-01-26 23:00,1.10301,1.10316,1.10255,1.103,2334 +2020-01-26 23:15,1.10299,1.10343,1.10299,1.1034,2012 +2020-01-26 23:30,1.1034,1.10342,1.10288,1.10295,1280 +2020-01-26 23:45,1.10294,1.103,1.10244,1.10245,1410 +2020-01-27 00:00,1.10245,1.10326,1.10245,1.10321,1355 +2020-01-27 00:15,1.10321,1.10348,1.10304,1.1034,896 +2020-01-27 00:30,1.1034,1.10346,1.10315,1.10336,691 +2020-01-27 00:45,1.10335,1.10339,1.10315,1.10321,617 +2020-01-27 01:00,1.10322,1.10324,1.10309,1.10313,625 +2020-01-27 01:15,1.10313,1.10328,1.10313,1.10315,579 +2020-01-27 01:30,1.10315,1.10325,1.10309,1.10324,336 +2020-01-27 01:45,1.10324,1.10345,1.10324,1.10336,417 +2020-01-27 02:00,1.10336,1.10358,1.10335,1.10355,368 +2020-01-27 02:15,1.10355,1.10355,1.1032,1.10324,361 +2020-01-27 02:30,1.10324,1.10324,1.10291,1.10309,693 +2020-01-27 02:45,1.10309,1.10311,1.10287,1.10289,545 +2020-01-27 03:00,1.1029,1.103,1.10274,1.10297,495 +2020-01-27 03:15,1.10296,1.10301,1.10283,1.10284,507 +2020-01-27 03:30,1.10285,1.10291,1.10273,1.1029,513 +2020-01-27 03:45,1.10289,1.10291,1.1028,1.10281,452 +2020-01-27 04:00,1.10284,1.10291,1.10274,1.10276,523 +2020-01-27 04:15,1.10276,1.10281,1.10273,1.10281,463 +2020-01-27 04:30,1.1028,1.10286,1.10274,1.10285,492 +2020-01-27 04:45,1.10284,1.10286,1.10276,1.10277,442 +2020-01-27 05:00,1.10276,1.10281,1.10274,1.10274,436 +2020-01-27 05:15,1.10274,1.10276,1.10266,1.10269,370 +2020-01-27 05:30,1.1027,1.10277,1.10269,1.10275,280 +2020-01-27 05:45,1.10276,1.10309,1.10271,1.10308,187 +2020-01-27 06:00,1.10307,1.10317,1.10296,1.10301,665 +2020-01-27 06:15,1.103,1.103,1.10263,1.1029,514 +2020-01-27 06:30,1.1029,1.1029,1.10263,1.10275,650 +2020-01-27 06:45,1.10275,1.10278,1.1026,1.10276,628 +2020-01-27 07:00,1.10278,1.10339,1.10277,1.10337,1706 +2020-01-27 07:15,1.10336,1.10367,1.10325,1.10354,1364 +2020-01-27 07:30,1.10355,1.10375,1.10325,1.1035,1577 +2020-01-27 07:45,1.10351,1.10371,1.10345,1.10345,1551 +2020-01-27 08:00,1.10347,1.10375,1.10253,1.10269,2983 +2020-01-27 08:15,1.10268,1.1032,1.10263,1.10311,1958 +2020-01-27 08:30,1.10312,1.10325,1.10302,1.10304,1405 +2020-01-27 08:45,1.10304,1.10335,1.10264,1.10273,1906 +2020-01-27 09:00,1.10273,1.10277,1.1017,1.10214,4218 +2020-01-27 09:15,1.10215,1.10235,1.10158,1.10161,2764 +2020-01-27 09:30,1.1016,1.10208,1.10151,1.10178,2545 +2020-01-27 09:45,1.10179,1.10228,1.10171,1.10208,2794 +2020-01-27 10:00,1.10209,1.10227,1.10182,1.102,1578 +2020-01-27 10:15,1.102,1.10226,1.10183,1.10222,2337 +2020-01-27 10:30,1.10224,1.10251,1.10212,1.10249,1644 +2020-01-27 10:45,1.10248,1.10291,1.10235,1.1028,1554 +2020-01-27 11:00,1.10283,1.10288,1.10234,1.10243,2300 +2020-01-27 11:15,1.10242,1.10254,1.10216,1.10225,1646 +2020-01-27 11:30,1.10225,1.10251,1.1022,1.1024,1394 +2020-01-27 11:45,1.1024,1.10246,1.10224,1.10244,1388 +2020-01-27 12:00,1.10245,1.10257,1.10218,1.10226,1675 +2020-01-27 12:15,1.10226,1.10238,1.10212,1.10236,1405 +2020-01-27 12:30,1.10236,1.10247,1.10211,1.10213,1357 +2020-01-27 12:45,1.10211,1.10254,1.10201,1.10231,2012 +2020-01-27 13:00,1.10231,1.10254,1.10222,1.10242,2762 +2020-01-27 13:15,1.10242,1.10262,1.10239,1.10258,2056 +2020-01-27 13:30,1.10259,1.10315,1.10254,1.10289,2475 +2020-01-27 13:45,1.10289,1.103,1.10265,1.10271,1836 +2020-01-27 14:00,1.10271,1.10321,1.10248,1.10291,2770 +2020-01-27 14:15,1.10292,1.10293,1.10228,1.10242,3331 +2020-01-27 14:30,1.10242,1.10248,1.10191,1.10211,3917 +2020-01-27 14:45,1.10211,1.10225,1.10154,1.10173,3140 +2020-01-27 15:00,1.10174,1.10234,1.10172,1.10191,3028 +2020-01-27 15:15,1.1019,1.10196,1.10142,1.1018,2687 +2020-01-27 15:30,1.10181,1.10185,1.10144,1.10144,2904 +2020-01-27 15:45,1.10143,1.10173,1.10113,1.10124,2610 +2020-01-27 16:00,1.10124,1.10127,1.10096,1.10116,2882 +2020-01-27 16:15,1.10114,1.10203,1.1011,1.10199,2059 +2020-01-27 16:30,1.10198,1.10219,1.10176,1.1018,2092 +2020-01-27 16:45,1.1018,1.10216,1.10177,1.10188,1377 +2020-01-27 17:00,1.10189,1.10193,1.10141,1.10142,2010 +2020-01-27 17:15,1.10141,1.10175,1.10135,1.10159,1231 +2020-01-27 17:30,1.10158,1.10159,1.10115,1.10121,1075 +2020-01-27 17:45,1.1012,1.10155,1.10107,1.10152,1215 +2020-01-27 18:00,1.10153,1.10153,1.10133,1.10146,1014 +2020-01-27 18:15,1.10145,1.10157,1.10128,1.10147,947 +2020-01-27 18:30,1.10148,1.10153,1.10138,1.10148,1342 +2020-01-27 18:45,1.10147,1.10151,1.1014,1.10141,1025 +2020-01-27 19:00,1.1014,1.10169,1.10138,1.10159,1012 +2020-01-27 19:15,1.1016,1.10161,1.10143,1.10145,863 +2020-01-27 19:30,1.10146,1.10158,1.10142,1.10155,762 +2020-01-27 19:45,1.10154,1.10174,1.10148,1.10162,838 +2020-01-27 20:00,1.10162,1.10167,1.10156,1.10166,702 +2020-01-27 20:15,1.10166,1.10187,1.10165,1.1018,607 +2020-01-27 20:30,1.10181,1.10182,1.10172,1.10177,1326 +2020-01-27 20:45,1.10177,1.10185,1.10168,1.10168,1271 +2020-01-27 21:00,1.1017,1.10191,1.10167,1.1019,565 +2020-01-27 21:15,1.10189,1.10202,1.10186,1.10194,303 +2020-01-27 21:30,1.10195,1.10199,1.10193,1.10193,470 +2020-01-27 21:45,1.10194,1.10194,1.10178,1.10184,359 +2020-01-27 22:00,1.10185,1.10197,1.1018,1.10195,533 +2020-01-27 22:15,1.10195,1.102,1.10192,1.10198,561 +2020-01-27 22:30,1.10197,1.10197,1.10168,1.10179,537 +2020-01-27 22:45,1.10181,1.10184,1.10166,1.1018,472 +2020-01-27 23:00,1.1018,1.10203,1.10179,1.10191,823 +2020-01-27 23:15,1.10192,1.10193,1.10182,1.10183,212 +2020-01-27 23:30,1.10182,1.102,1.10182,1.10194,199 +2020-01-27 23:45,1.10192,1.10196,1.1018,1.10193,231 +2020-01-28 00:00,1.10193,1.10199,1.10189,1.10194,584 +2020-01-28 00:15,1.10194,1.10195,1.10182,1.10187,277 +2020-01-28 00:30,1.10187,1.10188,1.10172,1.10177,270 +2020-01-28 00:45,1.10176,1.10198,1.10176,1.10192,544 +2020-01-28 01:00,1.10192,1.10222,1.10192,1.1022,1118 +2020-01-28 01:15,1.10221,1.10252,1.10217,1.10227,878 +2020-01-28 01:30,1.10227,1.10227,1.10206,1.10208,475 +2020-01-28 01:45,1.10208,1.1021,1.10196,1.10199,520 +2020-01-28 02:00,1.10198,1.10201,1.10177,1.10182,683 +2020-01-28 02:15,1.10183,1.10191,1.10182,1.10189,307 +2020-01-28 02:30,1.10188,1.10194,1.10186,1.10191,395 +2020-01-28 02:45,1.10191,1.10218,1.10183,1.10214,426 +2020-01-28 03:00,1.10213,1.10214,1.10189,1.10199,369 +2020-01-28 03:15,1.10199,1.10205,1.10197,1.10205,207 +2020-01-28 03:30,1.10205,1.1021,1.10197,1.10208,314 +2020-01-28 03:45,1.10208,1.10219,1.10208,1.10212,422 +2020-01-28 04:00,1.10212,1.10223,1.10212,1.10223,664 +2020-01-28 04:15,1.10222,1.10222,1.10211,1.10217,389 +2020-01-28 04:30,1.10216,1.10217,1.10208,1.1021,355 +2020-01-28 04:45,1.10211,1.10224,1.10201,1.10223,359 +2020-01-28 05:00,1.10222,1.10229,1.10217,1.10222,443 +2020-01-28 05:15,1.10222,1.1023,1.10221,1.10223,367 +2020-01-28 05:30,1.10223,1.10224,1.10217,1.10218,264 +2020-01-28 05:45,1.10218,1.10227,1.10216,1.10218,467 +2020-01-28 06:00,1.10217,1.10232,1.10215,1.10223,625 +2020-01-28 06:15,1.10224,1.10232,1.10217,1.10228,626 +2020-01-28 06:30,1.10229,1.10229,1.10182,1.10185,677 +2020-01-28 06:45,1.10186,1.10199,1.10183,1.10193,537 +2020-01-28 07:00,1.10192,1.10192,1.10157,1.10168,1156 +2020-01-28 07:15,1.10169,1.10177,1.10146,1.10149,993 +2020-01-28 07:30,1.10151,1.10189,1.10141,1.10179,1402 +2020-01-28 07:45,1.10179,1.10184,1.10159,1.10167,1251 +2020-01-28 08:00,1.10167,1.10235,1.10163,1.10197,2310 +2020-01-28 08:15,1.10197,1.10204,1.10126,1.10167,1690 +2020-01-28 08:30,1.10167,1.10173,1.10126,1.10148,2025 +2020-01-28 08:45,1.10149,1.10195,1.10128,1.10193,2433 +2020-01-28 09:00,1.10192,1.10212,1.10176,1.10194,3290 +2020-01-28 09:15,1.10195,1.10216,1.10135,1.10137,2632 +2020-01-28 09:30,1.10137,1.10167,1.10134,1.10166,2209 +2020-01-28 09:45,1.10167,1.10206,1.10159,1.10167,2229 +2020-01-28 10:00,1.10167,1.10213,1.10161,1.10211,1971 +2020-01-28 10:15,1.10211,1.10225,1.10197,1.10208,1878 +2020-01-28 10:30,1.10208,1.10213,1.10165,1.10167,1309 +2020-01-28 10:45,1.10167,1.10198,1.10148,1.10192,1437 +2020-01-28 11:00,1.10193,1.10195,1.10161,1.10164,1416 +2020-01-28 11:15,1.10165,1.10178,1.10131,1.10142,1746 +2020-01-28 11:30,1.10142,1.10159,1.10121,1.10136,1228 +2020-01-28 11:45,1.10137,1.10137,1.10073,1.10105,2335 +2020-01-28 12:00,1.10107,1.10108,1.10059,1.10063,3293 +2020-01-28 12:15,1.10062,1.10065,1.10028,1.10031,2754 +2020-01-28 12:30,1.10031,1.10062,1.10022,1.10056,2361 +2020-01-28 12:45,1.10055,1.10076,1.10045,1.10065,2521 +2020-01-28 13:00,1.10065,1.10073,1.1002,1.10052,2713 +2020-01-28 13:15,1.10052,1.10075,1.10035,1.10067,2230 +2020-01-28 13:30,1.10073,1.10086,1.1005,1.10083,2459 +2020-01-28 13:45,1.10082,1.10096,1.10033,1.10053,2035 +2020-01-28 14:00,1.10053,1.10066,1.10018,1.10044,2428 +2020-01-28 14:15,1.10044,1.10066,1.10012,1.1002,2573 +2020-01-28 14:30,1.1002,1.10042,1.09999,1.10016,3412 +2020-01-28 14:45,1.10016,1.10048,1.10001,1.10041,2905 +2020-01-28 15:00,1.10039,1.10057,1.09979,1.10049,3375 +2020-01-28 15:15,1.10048,1.10048,1.09978,1.10005,2926 +2020-01-28 15:30,1.10005,1.10018,1.09987,1.10014,2506 +2020-01-28 15:45,1.10014,1.10049,1.0999,1.1,3231 +2020-01-28 16:00,1.10001,1.10061,1.09994,1.10054,2413 +2020-01-28 16:15,1.10054,1.10082,1.10035,1.10082,2180 +2020-01-28 16:30,1.1008,1.10104,1.10079,1.10099,1962 +2020-01-28 16:45,1.10098,1.10105,1.10066,1.10074,1432 +2020-01-28 17:00,1.10072,1.10075,1.10025,1.10058,1252 +2020-01-28 17:15,1.10059,1.10107,1.10058,1.10092,1471 +2020-01-28 17:30,1.10092,1.10107,1.10091,1.10094,1201 +2020-01-28 17:45,1.10093,1.10096,1.10086,1.1009,1361 +2020-01-28 18:00,1.10089,1.10129,1.10089,1.10128,1177 +2020-01-28 18:15,1.10129,1.1014,1.10119,1.10124,1015 +2020-01-28 18:30,1.10124,1.1014,1.10114,1.10137,1228 +2020-01-28 18:45,1.10138,1.10144,1.10122,1.10122,1277 +2020-01-28 19:00,1.10122,1.10143,1.10113,1.10139,975 +2020-01-28 19:15,1.10138,1.10153,1.10138,1.10151,817 +2020-01-28 19:30,1.10152,1.10158,1.10138,1.10157,591 +2020-01-28 19:45,1.10158,1.10172,1.10152,1.10166,722 +2020-01-28 20:00,1.10165,1.10184,1.10165,1.10177,498 +2020-01-28 20:15,1.10177,1.10189,1.10172,1.10182,457 +2020-01-28 20:30,1.10182,1.10189,1.10172,1.10183,403 +2020-01-28 20:45,1.10183,1.10217,1.10181,1.10217,716 +2020-01-28 21:00,1.10218,1.10226,1.10201,1.10212,525 +2020-01-28 21:15,1.1021,1.10213,1.10197,1.10207,294 +2020-01-28 21:30,1.10207,1.10228,1.10201,1.10218,450 +2020-01-28 21:45,1.10219,1.10224,1.10212,1.1022,223 +2020-01-28 22:00,1.10219,1.10229,1.10193,1.10211,467 +2020-01-28 22:15,1.10211,1.10244,1.1021,1.10229,398 +2020-01-28 22:30,1.1023,1.10235,1.10214,1.1022,733 +2020-01-28 22:45,1.10223,1.10246,1.10206,1.10219,1022 +2020-01-28 23:00,1.10217,1.10226,1.10207,1.10223,654 +2020-01-28 23:15,1.10224,1.10232,1.10223,1.10229,250 +2020-01-28 23:30,1.10229,1.10229,1.10212,1.10214,272 +2020-01-28 23:45,1.10215,1.10221,1.10213,1.1022,220 +2020-01-29 00:00,1.1022,1.10226,1.10202,1.10219,595 +2020-01-29 00:15,1.10219,1.10245,1.10213,1.10242,505 +2020-01-29 00:30,1.10244,1.10276,1.10242,1.10253,615 +2020-01-29 00:45,1.10253,1.10258,1.1022,1.10226,793 +2020-01-29 01:00,1.10225,1.10227,1.10207,1.10209,581 +2020-01-29 01:15,1.10208,1.10208,1.10188,1.10188,1049 +2020-01-29 01:30,1.10188,1.10193,1.10168,1.10174,911 +2020-01-29 01:45,1.10174,1.10175,1.10159,1.10165,1152 +2020-01-29 02:00,1.10165,1.10167,1.1015,1.10164,992 +2020-01-29 02:15,1.10165,1.10165,1.10149,1.10154,647 +2020-01-29 02:30,1.10153,1.10161,1.10152,1.10159,385 +2020-01-29 02:45,1.10161,1.10162,1.1015,1.10161,388 +2020-01-29 03:00,1.10161,1.1017,1.10152,1.10154,402 +2020-01-29 03:15,1.10154,1.10159,1.10141,1.10141,573 +2020-01-29 03:30,1.10142,1.10146,1.10127,1.10144,599 +2020-01-29 03:45,1.10145,1.10147,1.10131,1.10138,543 +2020-01-29 04:00,1.10139,1.1014,1.10125,1.10135,435 +2020-01-29 04:15,1.10134,1.10142,1.10134,1.10139,404 +2020-01-29 04:30,1.1014,1.10144,1.10127,1.10128,329 +2020-01-29 04:45,1.10128,1.10133,1.10127,1.10131,388 +2020-01-29 05:00,1.10131,1.10133,1.10128,1.10128,337 +2020-01-29 05:15,1.10128,1.10129,1.10112,1.10115,353 +2020-01-29 05:30,1.10114,1.10136,1.10114,1.10135,460 +2020-01-29 05:45,1.10135,1.10155,1.10134,1.10149,534 +2020-01-29 06:00,1.10151,1.10161,1.10144,1.10154,669 +2020-01-29 06:15,1.10155,1.10165,1.10149,1.10159,555 +2020-01-29 06:30,1.1016,1.10162,1.10156,1.10158,384 +2020-01-29 06:45,1.10159,1.10164,1.10146,1.10147,455 +2020-01-29 07:00,1.10148,1.10151,1.10083,1.10093,1252 +2020-01-29 07:15,1.10094,1.10094,1.10042,1.10057,1443 +2020-01-29 07:30,1.10057,1.10063,1.10042,1.10046,1308 +2020-01-29 07:45,1.10046,1.10057,1.10027,1.10056,1838 +2020-01-29 08:00,1.10056,1.10071,1.10021,1.10024,2405 +2020-01-29 08:15,1.10024,1.10065,1.10015,1.10063,2005 +2020-01-29 08:30,1.10062,1.10074,1.10028,1.10054,2196 +2020-01-29 08:45,1.10053,1.10062,1.09996,1.10021,2048 +2020-01-29 09:00,1.10022,1.10036,1.09945,1.10033,2554 +2020-01-29 09:15,1.10033,1.10051,1.1001,1.10043,1926 +2020-01-29 09:30,1.10044,1.10057,1.10028,1.10053,2165 +2020-01-29 09:45,1.10052,1.10055,1.10015,1.10021,1747 +2020-01-29 10:00,1.10021,1.10041,1.10017,1.10019,1511 +2020-01-29 10:15,1.10019,1.10022,1.0998,1.09996,1605 +2020-01-29 10:30,1.09997,1.10012,1.09985,1.10007,1464 +2020-01-29 10:45,1.10006,1.10022,1.10003,1.10013,1422 +2020-01-29 11:00,1.10013,1.10015,1.09971,1.09995,1825 +2020-01-29 11:15,1.09995,1.10015,1.09991,1.10013,1177 +2020-01-29 11:30,1.10013,1.10023,1.10001,1.10022,1028 +2020-01-29 11:45,1.10022,1.10023,1.09998,1.10015,963 +2020-01-29 12:00,1.10015,1.10033,1.10013,1.10029,1227 +2020-01-29 12:15,1.10029,1.1003,1.10005,1.10015,1044 +2020-01-29 12:30,1.10016,1.10016,1.09976,1.09978,1245 +2020-01-29 12:45,1.09977,1.09996,1.09969,1.09976,1669 +2020-01-29 13:00,1.09978,1.1001,1.09975,1.10008,1514 +2020-01-29 13:15,1.10007,1.10008,1.09943,1.09977,2487 +2020-01-29 13:30,1.09978,1.09982,1.09952,1.09967,2540 +2020-01-29 13:45,1.09966,1.09975,1.09923,1.09924,1924 +2020-01-29 14:00,1.09924,1.09979,1.09924,1.09961,2358 +2020-01-29 14:15,1.0996,1.09964,1.09925,1.09926,2327 +2020-01-29 14:30,1.09928,1.10028,1.09928,1.0998,3229 +2020-01-29 14:45,1.0998,1.09989,1.09946,1.09959,2657 +2020-01-29 15:00,1.09959,1.10092,1.09957,1.10076,4664 +2020-01-29 15:15,1.10074,1.10098,1.10064,1.10072,2414 +2020-01-29 15:30,1.10071,1.10079,1.10017,1.10064,2759 +2020-01-29 15:45,1.10063,1.10063,1.09943,1.0999,3212 +2020-01-29 16:00,1.0999,1.1005,1.09965,1.10009,2723 +2020-01-29 16:15,1.10008,1.10021,1.09976,1.10007,1530 +2020-01-29 16:30,1.10008,1.10035,1.09984,1.10033,1931 +2020-01-29 16:45,1.10034,1.10038,1.10019,1.10037,948 +2020-01-29 17:00,1.10038,1.10038,1.1,1.10021,1142 +2020-01-29 17:15,1.10022,1.10024,1.0999,1.1,1559 +2020-01-29 17:30,1.09999,1.10031,1.09991,1.10022,1085 +2020-01-29 17:45,1.10022,1.10059,1.10021,1.10048,1147 +2020-01-29 18:00,1.10048,1.10055,1.10015,1.10032,871 +2020-01-29 18:15,1.10033,1.10042,1.1001,1.10023,861 +2020-01-29 18:30,1.10023,1.10041,1.10021,1.10038,600 +2020-01-29 18:45,1.10039,1.10043,1.10013,1.10013,942 +2020-01-29 19:00,1.10014,1.10057,1.09984,1.10051,1369 +2020-01-29 19:15,1.10051,1.1008,1.10049,1.1007,976 +2020-01-29 19:30,1.1007,1.10128,1.10032,1.10115,1107 +2020-01-29 19:45,1.10115,1.10207,1.10106,1.10202,2511 +2020-01-29 20:00,1.10204,1.10207,1.10096,1.10123,2046 +2020-01-29 20:15,1.10123,1.10128,1.10096,1.10097,1909 +2020-01-29 20:30,1.10099,1.10099,1.10068,1.10091,1281 +2020-01-29 20:45,1.10092,1.10099,1.10041,1.10068,1409 +2020-01-29 21:00,1.10067,1.10068,1.10016,1.10049,762 +2020-01-29 21:15,1.10048,1.10056,1.10043,1.10054,309 +2020-01-29 21:30,1.10055,1.10064,1.10048,1.1006,291 +2020-01-29 21:45,1.10059,1.10108,1.10058,1.10098,519 +2020-01-29 22:00,1.10097,1.10108,1.10076,1.1009,931 +2020-01-29 22:15,1.1009,1.10101,1.1009,1.10097,1993 +2020-01-29 22:30,1.10099,1.10122,1.1009,1.10108,572 +2020-01-29 22:45,1.10106,1.10121,1.10099,1.10103,433 +2020-01-29 23:00,1.10103,1.10132,1.1009,1.1013,422 +2020-01-29 23:15,1.10131,1.10177,1.10129,1.10173,438 +2020-01-29 23:30,1.10174,1.10179,1.10157,1.10158,556 +2020-01-29 23:45,1.10157,1.10161,1.10132,1.10138,478 +2020-01-30 00:00,1.10138,1.10152,1.1013,1.10144,1884 +2020-01-30 00:15,1.10144,1.10152,1.10136,1.10144,3108 +2020-01-30 00:30,1.10144,1.1017,1.10143,1.10166,1065 +2020-01-30 00:45,1.10166,1.10171,1.10127,1.10129,562 +2020-01-30 01:00,1.10129,1.10156,1.10129,1.10135,634 +2020-01-30 01:15,1.10136,1.10147,1.10124,1.1014,462 +2020-01-30 01:30,1.10141,1.10155,1.10131,1.10131,623 +2020-01-30 01:45,1.10131,1.10137,1.1011,1.10111,927 +2020-01-30 02:00,1.10111,1.1013,1.10111,1.10128,751 +2020-01-30 02:15,1.10127,1.10132,1.10112,1.10123,397 +2020-01-30 02:30,1.10123,1.10126,1.10111,1.10118,394 +2020-01-30 02:45,1.10118,1.10124,1.10113,1.10122,2450 +2020-01-30 03:00,1.1012,1.10135,1.10115,1.10132,451 +2020-01-30 03:15,1.10132,1.10145,1.10131,1.10135,479 +2020-01-30 03:30,1.10136,1.10143,1.10127,1.10136,623 +2020-01-30 03:45,1.10136,1.10157,1.10135,1.10151,841 +2020-01-30 04:00,1.10151,1.10168,1.10151,1.10152,495 +2020-01-30 04:15,1.10152,1.10166,1.1015,1.10156,973 +2020-01-30 04:30,1.10156,1.10166,1.10151,1.10165,386 +2020-01-30 04:45,1.10165,1.10171,1.10151,1.10171,405 +2020-01-30 05:00,1.10171,1.10172,1.10149,1.10149,557 +2020-01-30 05:15,1.10148,1.1015,1.10131,1.10141,419 +2020-01-30 05:30,1.10142,1.10146,1.10133,1.10134,319 +2020-01-30 05:45,1.10135,1.10141,1.10125,1.10134,517 +2020-01-30 06:00,1.10133,1.10135,1.10111,1.1012,874 +2020-01-30 06:15,1.10119,1.10123,1.10116,1.10118,670 +2020-01-30 06:30,1.10119,1.10121,1.10104,1.10108,620 +2020-01-30 06:45,1.10108,1.10122,1.10097,1.10098,594 +2020-01-30 07:00,1.10098,1.10117,1.10069,1.10076,1744 +2020-01-30 07:15,1.10075,1.10136,1.10075,1.1013,1603 +2020-01-30 07:30,1.10131,1.10151,1.10101,1.10111,1998 +2020-01-30 07:45,1.10111,1.10117,1.10087,1.10116,1614 +2020-01-30 08:00,1.10116,1.10169,1.10096,1.1014,2869 +2020-01-30 08:15,1.1014,1.10172,1.10134,1.1016,1884 +2020-01-30 08:30,1.10158,1.10188,1.10145,1.10181,1558 +2020-01-30 08:45,1.1018,1.10181,1.10154,1.10166,1543 +2020-01-30 09:00,1.10165,1.10212,1.10145,1.10204,1748 +2020-01-30 09:15,1.10203,1.10207,1.1016,1.10162,1710 +2020-01-30 09:30,1.10162,1.10191,1.10148,1.10185,1906 +2020-01-30 09:45,1.10185,1.10211,1.10167,1.10189,1837 +2020-01-30 10:00,1.10191,1.10202,1.10165,1.10167,2197 +2020-01-30 10:15,1.10166,1.10172,1.10116,1.10119,1491 +2020-01-30 10:30,1.10119,1.10139,1.10114,1.1013,1925 +2020-01-30 10:45,1.10131,1.10161,1.10121,1.10142,1360 +2020-01-30 11:00,1.10143,1.10177,1.1014,1.1017,1472 +2020-01-30 11:15,1.10169,1.10205,1.1016,1.10201,1497 +2020-01-30 11:30,1.10202,1.1021,1.10174,1.10195,1836 +2020-01-30 11:45,1.10194,1.10241,1.10189,1.10228,1540 +2020-01-30 12:00,1.10229,1.10247,1.102,1.10239,3758 +2020-01-30 12:15,1.1024,1.10272,1.10235,1.10246,2020 +2020-01-30 12:30,1.10246,1.10263,1.10228,1.10244,1801 +2020-01-30 12:45,1.10244,1.10256,1.10202,1.10227,2267 +2020-01-30 13:00,1.10228,1.10296,1.10216,1.10287,2553 +2020-01-30 13:15,1.10286,1.10313,1.10237,1.10248,2525 +2020-01-30 13:30,1.10247,1.10318,1.10244,1.10255,3677 +2020-01-30 13:45,1.10256,1.10262,1.10174,1.10254,3720 +2020-01-30 14:00,1.10253,1.10292,1.10222,1.10265,3284 +2020-01-30 14:15,1.10265,1.10271,1.10221,1.10233,2257 +2020-01-30 14:30,1.10234,1.10235,1.10152,1.10174,4016 +2020-01-30 14:45,1.10174,1.10268,1.10158,1.10257,3644 +2020-01-30 15:00,1.10258,1.10289,1.1023,1.10266,2776 +2020-01-30 15:15,1.10267,1.10288,1.10261,1.10268,2255 +2020-01-30 15:30,1.10269,1.10349,1.10269,1.1034,4097 +2020-01-30 15:45,1.10341,1.10364,1.10313,1.10354,4127 +2020-01-30 16:00,1.10354,1.10358,1.10308,1.10308,3805 +2020-01-30 16:15,1.10308,1.10338,1.10283,1.10301,1907 +2020-01-30 16:30,1.10301,1.10313,1.10268,1.10276,2173 +2020-01-30 16:45,1.10276,1.10313,1.10258,1.10312,1537 +2020-01-30 17:00,1.10311,1.10322,1.10296,1.10317,858 +2020-01-30 17:15,1.10318,1.10328,1.10295,1.10323,1062 +2020-01-30 17:30,1.10322,1.10341,1.10303,1.10326,1881 +2020-01-30 17:45,1.10325,1.1038,1.10315,1.10376,1587 +2020-01-30 18:00,1.10376,1.10385,1.10352,1.10368,1094 +2020-01-30 18:15,1.10368,1.10371,1.10347,1.10349,837 +2020-01-30 18:30,1.10348,1.10354,1.10311,1.10324,1243 +2020-01-30 18:45,1.10324,1.10345,1.10317,1.10345,1005 +2020-01-30 19:00,1.10345,1.10361,1.10328,1.10359,1047 +2020-01-30 19:15,1.10361,1.10379,1.10344,1.10344,2100 +2020-01-30 19:30,1.10345,1.10393,1.10335,1.10379,1422 +2020-01-30 19:45,1.10378,1.10379,1.10289,1.10301,2697 +2020-01-30 20:00,1.10299,1.10334,1.10286,1.10324,1891 +2020-01-30 20:15,1.10325,1.10343,1.10316,1.1034,1328 +2020-01-30 20:30,1.10341,1.10371,1.10332,1.10354,1321 +2020-01-30 20:45,1.10353,1.10355,1.10321,1.10321,916 +2020-01-30 21:00,1.10321,1.10347,1.10308,1.10347,660 +2020-01-30 21:15,1.10346,1.10346,1.10316,1.10323,269 +2020-01-30 21:30,1.10323,1.10325,1.10308,1.10314,299 +2020-01-30 21:45,1.10314,1.10323,1.10303,1.10312,523 +2020-01-30 22:00,1.10312,1.10348,1.10312,1.10337,385 +2020-01-30 22:15,1.10336,1.10353,1.10318,1.10343,817 +2020-01-30 22:30,1.10343,1.10349,1.10327,1.10349,418 +2020-01-30 22:45,1.10349,1.1035,1.10315,1.10315,525 +2020-01-30 23:00,1.10316,1.1033,1.10315,1.10318,285 +2020-01-30 23:15,1.10319,1.10319,1.10313,1.10315,151 +2020-01-30 23:30,1.10312,1.10312,1.10296,1.10302,337 +2020-01-30 23:45,1.10303,1.10306,1.1028,1.10285,426 +2020-01-31 00:00,1.10285,1.10289,1.10276,1.10283,647 +2020-01-31 00:15,1.10284,1.10295,1.10283,1.10288,417 +2020-01-31 00:30,1.1029,1.10313,1.10287,1.10312,618 +2020-01-31 00:45,1.10313,1.10331,1.10312,1.1032,666 +2020-01-31 01:00,1.10321,1.10336,1.10312,1.10312,752 +2020-01-31 01:15,1.10313,1.10313,1.1028,1.10281,627 +2020-01-31 01:30,1.10283,1.1029,1.10276,1.10278,593 +2020-01-31 01:45,1.10278,1.10298,1.10266,1.1029,622 +2020-01-31 02:00,1.1029,1.10325,1.10287,1.10325,926 +2020-01-31 02:15,1.10325,1.10331,1.1028,1.10289,963 +2020-01-31 02:30,1.10289,1.10293,1.10272,1.10289,662 +2020-01-31 02:45,1.10289,1.10291,1.10264,1.10264,592 +2020-01-31 03:00,1.10263,1.10264,1.10245,1.10257,569 +2020-01-31 03:15,1.10259,1.10259,1.10244,1.10244,655 +2020-01-31 03:30,1.10245,1.1026,1.10243,1.10249,611 +2020-01-31 03:45,1.10249,1.1025,1.1024,1.10243,691 +2020-01-31 04:00,1.10241,1.10242,1.10234,1.10237,365 +2020-01-31 04:15,1.10237,1.10238,1.10225,1.10238,375 +2020-01-31 04:30,1.10239,1.1024,1.10232,1.10233,371 +2020-01-31 04:45,1.10235,1.10244,1.10232,1.10243,325 +2020-01-31 05:00,1.10243,1.10259,1.10238,1.10247,444 +2020-01-31 05:15,1.10247,1.10253,1.10246,1.10249,409 +2020-01-31 05:30,1.1025,1.10254,1.10236,1.10236,369 +2020-01-31 05:45,1.10235,1.1024,1.10213,1.10215,815 +2020-01-31 06:00,1.10215,1.10235,1.10214,1.10235,568 +2020-01-31 06:15,1.10235,1.1024,1.10226,1.10227,565 +2020-01-31 06:30,1.10227,1.10231,1.10185,1.1019,690 +2020-01-31 06:45,1.10189,1.10208,1.10189,1.10205,446 +2020-01-31 07:00,1.10207,1.10209,1.10168,1.10202,1580 +2020-01-31 07:15,1.10203,1.10245,1.10197,1.10244,1302 +2020-01-31 07:30,1.10244,1.10267,1.10237,1.10266,1975 +2020-01-31 07:45,1.10267,1.10284,1.1025,1.10277,1628 +2020-01-31 08:00,1.1028,1.1028,1.10248,1.10271,1823 +2020-01-31 08:15,1.10271,1.10302,1.10253,1.10264,2052 +2020-01-31 08:30,1.10264,1.10283,1.10248,1.10253,1440 +2020-01-31 08:45,1.10254,1.10261,1.10214,1.10214,1479 +2020-01-31 09:00,1.10215,1.1028,1.10202,1.10259,1691 +2020-01-31 09:15,1.10259,1.10294,1.10247,1.10274,1959 +2020-01-31 09:30,1.10277,1.10341,1.1027,1.10277,2606 +2020-01-31 09:45,1.10277,1.10303,1.10267,1.10282,1969 +2020-01-31 10:00,1.10284,1.10288,1.10243,1.10243,1660 +2020-01-31 10:15,1.10242,1.10274,1.10226,1.10273,1769 +2020-01-31 10:30,1.10273,1.10317,1.10273,1.10309,2371 +2020-01-31 10:45,1.10307,1.10334,1.10295,1.10305,1940 +2020-01-31 11:00,1.10305,1.10314,1.1028,1.10297,1971 +2020-01-31 11:15,1.10297,1.1031,1.10281,1.10301,1440 +2020-01-31 11:30,1.10302,1.10309,1.10269,1.10291,1547 +2020-01-31 11:45,1.10292,1.10386,1.1029,1.10371,3331 +2020-01-31 12:00,1.10372,1.10442,1.10341,1.10428,2729 +2020-01-31 12:15,1.10429,1.1046,1.10414,1.10435,2091 +2020-01-31 12:30,1.10436,1.10488,1.10426,1.10469,2172 +2020-01-31 12:45,1.10469,1.10493,1.10462,1.10474,1888 +2020-01-31 13:00,1.10474,1.10527,1.10466,1.10518,3245 +2020-01-31 13:15,1.10517,1.10527,1.10487,1.10497,2731 +2020-01-31 13:30,1.10497,1.10518,1.10467,1.10516,2354 +2020-01-31 13:45,1.10516,1.10557,1.10505,1.10549,2152 +2020-01-31 14:00,1.1055,1.1056,1.105,1.1051,2417 +2020-01-31 14:15,1.1051,1.10557,1.10486,1.10555,2827 +2020-01-31 14:30,1.10555,1.10633,1.10547,1.10625,3413 +2020-01-31 14:45,1.10625,1.10674,1.1059,1.10628,3571 +2020-01-31 15:00,1.10628,1.10646,1.10568,1.10583,4194 +2020-01-31 15:15,1.10585,1.10608,1.10557,1.10602,3351 +2020-01-31 15:30,1.10602,1.10633,1.10583,1.10591,2869 +2020-01-31 15:45,1.10591,1.10835,1.1057,1.10807,5066 +2020-01-31 16:00,1.10805,1.10903,1.10753,1.10753,6023 +2020-01-31 16:15,1.10753,1.10895,1.10747,1.10868,2987 +2020-01-31 16:30,1.10871,1.10882,1.10803,1.10811,2658 +2020-01-31 16:45,1.1081,1.10833,1.10787,1.10816,2411 +2020-01-31 17:00,1.10816,1.10845,1.10801,1.10818,2051 +2020-01-31 17:15,1.10816,1.10833,1.10788,1.10795,1611 +2020-01-31 17:30,1.10797,1.10831,1.10783,1.10783,2251 +2020-01-31 17:45,1.10784,1.10842,1.10781,1.10828,1951 +2020-01-31 18:00,1.10828,1.10836,1.10795,1.10809,1253 +2020-01-31 18:15,1.10809,1.10821,1.10778,1.10794,1296 +2020-01-31 18:30,1.10796,1.10803,1.10779,1.10796,1360 +2020-01-31 18:45,1.10797,1.10822,1.10788,1.10803,1432 +2020-01-31 19:00,1.10801,1.10828,1.10796,1.1081,1242 +2020-01-31 19:15,1.1081,1.10857,1.10806,1.10853,1127 +2020-01-31 19:30,1.10852,1.10872,1.10839,1.10841,1071 +2020-01-31 19:45,1.10842,1.10901,1.10831,1.10894,1382 +2020-01-31 20:00,1.10894,1.10894,1.10848,1.1088,829 +2020-01-31 20:15,1.10881,1.10899,1.10878,1.10897,530 +2020-01-31 20:30,1.10898,1.10917,1.10892,1.10893,1189 +2020-01-31 20:45,1.10893,1.10912,1.10879,1.10904,2105 +2020-01-31 21:00,1.10904,1.10919,1.10894,1.10917,472 +2020-01-31 21:15,1.10917,1.10938,1.10903,1.10937,653 +2020-01-31 21:30,1.10937,1.10948,1.10933,1.10947,428 +2020-01-31 21:45,1.10947,1.10954,1.10934,1.10944,1921 +2020-02-02 22:00,1.10939,1.10939,1.10916,1.10916,90 +2020-02-02 22:15,1.10916,1.10918,1.10876,1.10903,153 +2020-02-02 22:30,1.10903,1.10906,1.10813,1.10866,835 +2020-02-02 22:45,1.10866,1.10885,1.10829,1.10846,847 +2020-02-02 23:00,1.10851,1.10907,1.10851,1.10895,966 +2020-02-02 23:15,1.10894,1.10897,1.10884,1.10891,367 +2020-02-02 23:30,1.10893,1.10905,1.10883,1.10885,547 +2020-02-02 23:45,1.10884,1.10898,1.10884,1.1089,386 +2020-02-03 00:00,1.1089,1.1089,1.10858,1.1086,565 +2020-02-03 00:15,1.10859,1.1087,1.10859,1.10859,434 +2020-02-03 00:30,1.1086,1.1086,1.10809,1.1081,980 +2020-02-03 00:45,1.1081,1.1082,1.10799,1.10817,830 +2020-02-03 01:00,1.10817,1.10822,1.10802,1.10815,1429 +2020-02-03 01:15,1.10815,1.10876,1.10803,1.10871,1304 +2020-02-03 01:30,1.1087,1.10871,1.10825,1.10827,1017 +2020-02-03 01:45,1.10828,1.10831,1.10813,1.1083,806 +2020-02-03 02:00,1.10832,1.10846,1.10819,1.10836,902 +2020-02-03 02:15,1.10836,1.10837,1.10813,1.10823,816 +2020-02-03 02:30,1.10823,1.10846,1.10815,1.10817,1181 +2020-02-03 02:45,1.10818,1.10828,1.10802,1.10819,1012 +2020-02-03 03:00,1.10819,1.10838,1.10816,1.1083,632 +2020-02-03 03:15,1.10831,1.10836,1.10805,1.10809,718 +2020-02-03 03:30,1.1081,1.10816,1.10801,1.10816,523 +2020-02-03 03:45,1.10816,1.10825,1.10806,1.10811,560 +2020-02-03 04:00,1.10812,1.10824,1.1081,1.10823,276 +2020-02-03 04:15,1.10823,1.10835,1.10823,1.10832,264 +2020-02-03 04:30,1.10833,1.10849,1.10821,1.10838,312 +2020-02-03 04:45,1.10838,1.10841,1.10817,1.10817,669 +2020-02-03 05:00,1.10818,1.10828,1.10813,1.10827,383 +2020-02-03 05:15,1.10831,1.10843,1.10827,1.10831,717 +2020-02-03 05:30,1.10831,1.10844,1.10827,1.10838,798 +2020-02-03 05:45,1.10838,1.10848,1.10836,1.10844,434 +2020-02-03 06:00,1.10842,1.10862,1.10842,1.10857,563 +2020-02-03 06:15,1.10859,1.10859,1.1082,1.10824,548 +2020-02-03 06:30,1.10824,1.10833,1.10816,1.10833,528 +2020-02-03 06:45,1.10832,1.10839,1.1082,1.10824,1037 +2020-02-03 07:00,1.10823,1.10845,1.10774,1.10776,1910 +2020-02-03 07:15,1.10777,1.10793,1.10746,1.10749,2006 +2020-02-03 07:30,1.1075,1.1076,1.10704,1.10733,2516 +2020-02-03 07:45,1.10733,1.10766,1.10721,1.10747,1995 +2020-02-03 08:00,1.10747,1.10783,1.10713,1.10782,3131 +2020-02-03 08:15,1.10783,1.10783,1.10733,1.10743,2565 +2020-02-03 08:30,1.10742,1.10757,1.10699,1.10703,3064 +2020-02-03 08:45,1.10702,1.1072,1.10642,1.1066,2607 +2020-02-03 09:00,1.1066,1.1067,1.10604,1.10627,2528 +2020-02-03 09:15,1.10627,1.10643,1.1059,1.10622,2195 +2020-02-03 09:30,1.10622,1.10694,1.10619,1.10691,1607 +2020-02-03 09:45,1.1069,1.10727,1.10654,1.10726,2382 +2020-02-03 10:00,1.10726,1.10741,1.10663,1.10677,3053 +2020-02-03 10:15,1.10678,1.10685,1.1065,1.10674,1903 +2020-02-03 10:30,1.10674,1.10692,1.1065,1.10689,1545 +2020-02-03 10:45,1.1069,1.107,1.10642,1.10648,1983 +2020-02-03 11:00,1.10647,1.10681,1.10623,1.1063,2733 +2020-02-03 11:15,1.10631,1.10636,1.10602,1.10621,1671 +2020-02-03 11:30,1.10622,1.10631,1.10589,1.10629,1965 +2020-02-03 11:45,1.10629,1.10635,1.10583,1.10626,1588 +2020-02-03 12:00,1.10626,1.10666,1.10614,1.10661,1242 +2020-02-03 12:15,1.10661,1.10661,1.10631,1.10633,1321 +2020-02-03 12:30,1.10634,1.10649,1.10619,1.10627,1045 +2020-02-03 12:45,1.10627,1.10665,1.10627,1.10658,1284 +2020-02-03 13:00,1.10657,1.10666,1.10638,1.10658,2043 +2020-02-03 13:15,1.10657,1.10662,1.1062,1.10622,1821 +2020-02-03 13:30,1.10621,1.10643,1.10617,1.10632,1013 +2020-02-03 13:45,1.10631,1.10654,1.10622,1.1063,1350 +2020-02-03 14:00,1.1063,1.10637,1.1057,1.10571,1638 +2020-02-03 14:15,1.10572,1.10577,1.1053,1.10543,2019 +2020-02-03 14:30,1.10543,1.10547,1.105,1.10505,3165 +2020-02-03 14:45,1.10505,1.10506,1.1045,1.10473,3871 +2020-02-03 15:00,1.1047,1.10499,1.10356,1.10444,5795 +2020-02-03 15:15,1.10444,1.105,1.10442,1.10499,4131 +2020-02-03 15:30,1.10499,1.10501,1.10459,1.10459,2969 +2020-02-03 15:45,1.10459,1.10598,1.10447,1.10556,3992 +2020-02-03 16:00,1.10556,1.10593,1.10536,1.10558,3016 +2020-02-03 16:15,1.10559,1.10601,1.10554,1.10581,2368 +2020-02-03 16:30,1.10582,1.10618,1.10577,1.10607,2723 +2020-02-03 16:45,1.10609,1.10657,1.10607,1.1062,2014 +2020-02-03 17:00,1.10621,1.10663,1.1061,1.10661,1540 +2020-02-03 17:15,1.1066,1.10663,1.10615,1.10621,1452 +2020-02-03 17:30,1.10622,1.10624,1.10594,1.10594,1490 +2020-02-03 17:45,1.10595,1.10626,1.10575,1.10585,1182 +2020-02-03 18:00,1.10585,1.10635,1.10581,1.10628,1211 +2020-02-03 18:15,1.10628,1.10638,1.10617,1.10622,869 +2020-02-03 18:30,1.10623,1.10623,1.10598,1.10608,1055 +2020-02-03 18:45,1.106,1.1062,1.1059,1.10613,999 +2020-02-03 19:00,1.10616,1.10629,1.10612,1.10622,806 +2020-02-03 19:15,1.10621,1.10633,1.10611,1.10632,769 +2020-02-03 19:30,1.10632,1.10645,1.10609,1.10638,686 +2020-02-03 19:45,1.10637,1.10653,1.10615,1.10634,896 +2020-02-03 20:00,1.10633,1.1064,1.10609,1.10613,800 +2020-02-03 20:15,1.10614,1.10616,1.10594,1.10596,744 +2020-02-03 20:30,1.10595,1.10597,1.1058,1.10591,606 +2020-02-03 20:45,1.10591,1.10592,1.10571,1.10581,626 +2020-02-03 21:00,1.1058,1.10601,1.10577,1.10598,414 +2020-02-03 21:15,1.106,1.106,1.10594,1.10595,292 +2020-02-03 21:30,1.10595,1.10613,1.10595,1.10613,309 +2020-02-03 21:45,1.10612,1.10614,1.1059,1.10593,283 +2020-02-03 22:00,1.1059,1.10596,1.10584,1.10596,610 +2020-02-03 22:15,1.10596,1.106,1.10584,1.10599,759 +2020-02-03 22:30,1.10603,1.10609,1.10596,1.10596,843 +2020-02-03 22:45,1.10597,1.10611,1.10588,1.10591,276 +2020-02-03 23:00,1.10591,1.10619,1.10588,1.10617,324 +2020-02-03 23:15,1.10616,1.1062,1.10614,1.10618,147 +2020-02-03 23:30,1.10618,1.10631,1.10612,1.10628,182 +2020-02-03 23:45,1.10628,1.10628,1.10618,1.10623,126 +2020-02-04 00:00,1.10623,1.1063,1.10613,1.1062,315 +2020-02-04 00:15,1.1062,1.1062,1.106,1.10604,263 +2020-02-04 00:30,1.10605,1.10614,1.10604,1.10608,243 +2020-02-04 00:45,1.10607,1.10609,1.10593,1.10609,261 +2020-02-04 01:00,1.1061,1.1062,1.10592,1.10606,800 +2020-02-04 01:15,1.10607,1.10608,1.10595,1.10601,561 +2020-02-04 01:30,1.10602,1.10617,1.10601,1.10615,532 +2020-02-04 01:45,1.10615,1.10641,1.106,1.10601,599 +2020-02-04 02:00,1.10602,1.10604,1.10564,1.10571,947 +2020-02-04 02:15,1.10572,1.10573,1.10563,1.10567,641 +2020-02-04 02:30,1.10567,1.10575,1.10556,1.10559,635 +2020-02-04 02:45,1.10558,1.10586,1.10558,1.10586,463 +2020-02-04 03:00,1.10586,1.10598,1.10574,1.10574,395 +2020-02-04 03:15,1.10574,1.10579,1.10555,1.1056,359 +2020-02-04 03:30,1.1056,1.1059,1.10556,1.10575,1271 +2020-02-04 03:45,1.10573,1.10586,1.1057,1.10578,260 +2020-02-04 04:00,1.1058,1.10595,1.10573,1.10593,424 +2020-02-04 04:15,1.10593,1.10602,1.10586,1.10599,365 +2020-02-04 04:30,1.106,1.10609,1.10594,1.10608,749 +2020-02-04 04:45,1.10606,1.10609,1.10599,1.10599,295 +2020-02-04 05:00,1.10597,1.10601,1.10593,1.10596,501 +2020-02-04 05:15,1.10597,1.1061,1.10596,1.10604,345 +2020-02-04 05:30,1.10603,1.10633,1.10596,1.10598,613 +2020-02-04 05:45,1.10597,1.10597,1.10577,1.10586,635 +2020-02-04 06:00,1.10585,1.10614,1.10582,1.10604,684 +2020-02-04 06:15,1.10604,1.10625,1.10597,1.10611,708 +2020-02-04 06:30,1.10611,1.10637,1.1061,1.10615,821 +2020-02-04 06:45,1.10615,1.1062,1.10583,1.10591,868 +2020-02-04 07:00,1.1059,1.1059,1.10524,1.10532,1538 +2020-02-04 07:15,1.10532,1.10558,1.1051,1.10514,1552 +2020-02-04 07:30,1.10514,1.10526,1.10491,1.10502,1645 +2020-02-04 07:45,1.10502,1.10525,1.10488,1.10502,1690 +2020-02-04 08:00,1.10498,1.10587,1.10495,1.1056,2771 +2020-02-04 08:15,1.10561,1.10586,1.10517,1.10551,2507 +2020-02-04 08:30,1.10553,1.10579,1.10543,1.10559,1502 +2020-02-04 08:45,1.10558,1.10593,1.10524,1.10578,2281 +2020-02-04 09:00,1.10577,1.10611,1.10541,1.10588,2644 +2020-02-04 09:15,1.10588,1.1059,1.10543,1.10569,2274 +2020-02-04 09:30,1.10567,1.10599,1.1055,1.10569,2457 +2020-02-04 09:45,1.10569,1.10577,1.10528,1.10557,2330 +2020-02-04 10:00,1.10556,1.10571,1.10538,1.10548,1840 +2020-02-04 10:15,1.10548,1.10548,1.10499,1.1052,2083 +2020-02-04 10:30,1.10521,1.10536,1.10494,1.10533,1923 +2020-02-04 10:45,1.10534,1.10559,1.10524,1.10554,1422 +2020-02-04 11:00,1.10554,1.1058,1.10542,1.10546,1368 +2020-02-04 11:15,1.10546,1.10563,1.10535,1.10543,1590 +2020-02-04 11:30,1.10543,1.10556,1.10529,1.10548,1206 +2020-02-04 11:45,1.10547,1.1055,1.10522,1.1054,1531 +2020-02-04 12:00,1.10541,1.10541,1.1047,1.10489,1682 +2020-02-04 12:15,1.1049,1.10522,1.10488,1.10505,1121 +2020-02-04 12:30,1.10506,1.10509,1.10433,1.10446,1821 +2020-02-04 12:45,1.10446,1.10466,1.1043,1.1044,1606 +2020-02-04 13:00,1.10439,1.1048,1.10432,1.10475,1799 +2020-02-04 13:15,1.10476,1.10506,1.10459,1.1049,1919 +2020-02-04 13:30,1.10489,1.10507,1.10457,1.10467,2809 +2020-02-04 13:45,1.10466,1.10495,1.10437,1.10444,2385 +2020-02-04 14:00,1.10443,1.10466,1.10433,1.10462,2874 +2020-02-04 14:15,1.10461,1.10467,1.1044,1.10463,1584 +2020-02-04 14:30,1.10464,1.10466,1.10421,1.10438,3064 +2020-02-04 14:45,1.10437,1.10454,1.10408,1.10444,2483 +2020-02-04 15:00,1.10444,1.10483,1.10432,1.1044,2825 +2020-02-04 15:15,1.10441,1.10465,1.10365,1.10373,2439 +2020-02-04 15:30,1.10375,1.10397,1.10331,1.10362,3044 +2020-02-04 15:45,1.10361,1.1042,1.10342,1.10382,2291 +2020-02-04 16:00,1.10384,1.10389,1.10352,1.10364,2337 +2020-02-04 16:15,1.10363,1.10368,1.10328,1.10353,1637 +2020-02-04 16:30,1.10352,1.10363,1.10334,1.1035,1727 +2020-02-04 16:45,1.1035,1.10431,1.10349,1.10428,1306 +2020-02-04 17:00,1.10428,1.10452,1.10406,1.10416,1675 +2020-02-04 17:15,1.10416,1.10439,1.10391,1.1043,1163 +2020-02-04 17:30,1.1043,1.10439,1.10383,1.10398,1054 +2020-02-04 17:45,1.10398,1.10408,1.10366,1.10371,1211 +2020-02-04 18:00,1.10371,1.10434,1.10365,1.10431,1060 +2020-02-04 18:15,1.1043,1.10446,1.10416,1.10419,600 +2020-02-04 18:30,1.1042,1.10422,1.10404,1.10409,360 +2020-02-04 18:45,1.1041,1.10425,1.10391,1.10409,529 +2020-02-04 19:00,1.10409,1.10417,1.10401,1.10405,396 +2020-02-04 19:15,1.10405,1.10426,1.10403,1.10421,325 +2020-02-04 19:30,1.10422,1.10441,1.1042,1.10431,584 +2020-02-04 19:45,1.10432,1.10444,1.10416,1.10419,576 +2020-02-04 20:00,1.10419,1.10436,1.10419,1.1043,710 +2020-02-04 20:15,1.10429,1.10433,1.1041,1.10432,663 +2020-02-04 20:30,1.10431,1.10441,1.1043,1.10441,810 +2020-02-04 20:45,1.10441,1.10447,1.10423,1.10442,858 +2020-02-04 21:00,1.10442,1.10453,1.10441,1.10444,297 +2020-02-04 21:15,1.10443,1.10457,1.10435,1.10455,388 +2020-02-04 21:30,1.10456,1.10457,1.10438,1.10438,326 +2020-02-04 21:45,1.10438,1.10456,1.10433,1.10434,414 +2020-02-04 22:00,1.10436,1.10449,1.10421,1.10437,312 +2020-02-04 22:15,1.10433,1.10444,1.10413,1.10422,598 +2020-02-04 22:30,1.10427,1.1045,1.1042,1.10431,1157 +2020-02-04 22:45,1.10431,1.10452,1.10427,1.10444,364 +2020-02-04 23:00,1.10447,1.10459,1.10444,1.10455,296 +2020-02-04 23:15,1.10455,1.10456,1.10447,1.10451,218 +2020-02-04 23:30,1.10451,1.10451,1.10439,1.1045,202 +2020-02-04 23:45,1.10451,1.10452,1.10444,1.10446,116 +2020-02-05 00:00,1.10449,1.10449,1.1042,1.10437,565 +2020-02-05 00:15,1.10437,1.10444,1.10435,1.10436,276 +2020-02-05 00:30,1.10436,1.10446,1.10436,1.10443,200 +2020-02-05 00:45,1.10444,1.10445,1.10427,1.10431,453 +2020-02-05 01:00,1.1043,1.10436,1.10414,1.10415,448 +2020-02-05 01:15,1.10416,1.10427,1.10413,1.10423,510 +2020-02-05 01:30,1.10423,1.10431,1.10405,1.10406,727 +2020-02-05 01:45,1.10407,1.10412,1.10397,1.10402,780 +2020-02-05 02:00,1.10402,1.10409,1.10375,1.10382,725 +2020-02-05 02:15,1.10382,1.10392,1.10355,1.1036,527 +2020-02-05 02:30,1.1036,1.10365,1.10339,1.10345,744 +2020-02-05 02:45,1.10345,1.10353,1.1034,1.10343,391 +2020-02-05 03:00,1.10343,1.10362,1.1034,1.10362,467 +2020-02-05 03:15,1.10362,1.10366,1.10336,1.10349,452 +2020-02-05 03:30,1.10348,1.10348,1.10336,1.10338,1221 +2020-02-05 03:45,1.10338,1.10342,1.10336,1.10341,702 +2020-02-05 04:00,1.1034,1.10348,1.10337,1.10347,235 +2020-02-05 04:15,1.10348,1.10353,1.10346,1.10352,189 +2020-02-05 04:30,1.10353,1.10353,1.10341,1.10347,202 +2020-02-05 04:45,1.10346,1.10348,1.10336,1.10345,199 +2020-02-05 05:00,1.10345,1.10351,1.10336,1.10351,223 +2020-02-05 05:15,1.10351,1.10357,1.10347,1.10356,288 +2020-02-05 05:30,1.10356,1.10373,1.10356,1.1037,427 +2020-02-05 05:45,1.1037,1.10381,1.10368,1.10378,374 +2020-02-05 06:00,1.10378,1.10382,1.10361,1.10361,528 +2020-02-05 06:15,1.1036,1.10373,1.10354,1.10361,712 +2020-02-05 06:30,1.1036,1.10366,1.10345,1.10345,313 +2020-02-05 06:45,1.10346,1.10361,1.10346,1.10358,610 +2020-02-05 07:00,1.1036,1.10387,1.10356,1.10379,853 +2020-02-05 07:15,1.10379,1.10395,1.10367,1.10372,985 +2020-02-05 07:30,1.10373,1.10386,1.10368,1.10385,916 +2020-02-05 07:45,1.10385,1.10405,1.10356,1.10368,1296 +2020-02-05 08:00,1.1037,1.10444,1.10365,1.1044,2205 +2020-02-05 08:15,1.10439,1.10473,1.10424,1.10463,2087 +2020-02-05 08:30,1.10463,1.10474,1.1041,1.10471,4108 +2020-02-05 08:45,1.10472,1.10479,1.10386,1.1042,3558 +2020-02-05 09:00,1.10419,1.10427,1.10365,1.10411,2887 +2020-02-05 09:15,1.1041,1.10426,1.10357,1.10367,3225 +2020-02-05 09:30,1.10368,1.10385,1.10241,1.10249,3593 +2020-02-05 09:45,1.10246,1.10262,1.10215,1.1026,2665 +2020-02-05 10:00,1.10258,1.10279,1.10241,1.10261,1977 +2020-02-05 10:15,1.10262,1.10297,1.10252,1.10282,1912 +2020-02-05 10:30,1.10282,1.10288,1.1023,1.10234,2075 +2020-02-05 10:45,1.10234,1.10235,1.10178,1.10192,2085 +2020-02-05 11:00,1.10191,1.10197,1.10155,1.10166,1834 +2020-02-05 11:15,1.10167,1.10193,1.10145,1.10187,1798 +2020-02-05 11:30,1.10186,1.10248,1.10172,1.1024,3463 +2020-02-05 11:45,1.10241,1.10257,1.10205,1.10219,2363 +2020-02-05 12:00,1.10218,1.10231,1.10215,1.10225,1279 +2020-02-05 12:15,1.10226,1.1023,1.10184,1.10216,1875 +2020-02-05 12:30,1.10216,1.10228,1.10209,1.10225,1216 +2020-02-05 12:45,1.10226,1.10231,1.10206,1.10223,1567 +2020-02-05 13:00,1.10222,1.10232,1.1021,1.10218,1955 +2020-02-05 13:15,1.10218,1.10226,1.1015,1.10159,2857 +2020-02-05 13:30,1.1016,1.10166,1.10081,1.10088,2744 +2020-02-05 13:45,1.10086,1.10131,1.10078,1.10122,2886 +2020-02-05 14:00,1.10123,1.10142,1.10081,1.1009,2105 +2020-02-05 14:15,1.10089,1.10102,1.10042,1.10046,2654 +2020-02-05 14:30,1.10047,1.1006,1.09998,1.10005,3333 +2020-02-05 14:45,1.10006,1.10047,1.09999,1.10025,2430 +2020-02-05 15:00,1.10027,1.10069,1.09972,1.10047,3907 +2020-02-05 15:15,1.10046,1.10096,1.09991,1.10078,3564 +2020-02-05 15:30,1.10078,1.10092,1.10012,1.10029,3219 +2020-02-05 15:45,1.10029,1.10029,1.09963,1.10021,2737 +2020-02-05 16:00,1.10021,1.1004,1.09987,1.10013,2074 +2020-02-05 16:15,1.10012,1.10042,1.10002,1.1003,1680 +2020-02-05 16:30,1.10029,1.10053,1.09998,1.10031,1852 +2020-02-05 16:45,1.10031,1.10063,1.10019,1.10061,1541 +2020-02-05 17:00,1.10062,1.10068,1.10044,1.10063,1453 +2020-02-05 17:15,1.10064,1.10065,1.10037,1.10045,955 +2020-02-05 17:30,1.10047,1.10049,1.10033,1.10044,891 +2020-02-05 17:45,1.10044,1.10051,1.10009,1.1001,974 +2020-02-05 18:00,1.10011,1.10025,1.09989,1.09993,832 +2020-02-05 18:15,1.09994,1.10026,1.09993,1.10025,455 +2020-02-05 18:30,1.10026,1.10027,1.10009,1.10021,710 +2020-02-05 18:45,1.1002,1.1003,1.10016,1.10022,414 +2020-02-05 19:00,1.10023,1.10027,1.09988,1.09989,548 +2020-02-05 19:15,1.0999,1.09991,1.09947,1.09949,1026 +2020-02-05 19:30,1.09949,1.09961,1.09937,1.09937,1089 +2020-02-05 19:45,1.09938,1.09972,1.09937,1.0996,677 +2020-02-05 20:00,1.09959,1.0998,1.09958,1.09979,456 +2020-02-05 20:15,1.0998,1.09992,1.09976,1.09991,324 +2020-02-05 20:30,1.09992,1.09997,1.09985,1.09986,583 +2020-02-05 20:45,1.09986,1.09987,1.09963,1.09973,810 +2020-02-05 21:00,1.09976,1.09997,1.09974,1.09984,486 +2020-02-05 21:15,1.09986,1.09992,1.09983,1.09984,224 +2020-02-05 21:30,1.09985,1.09991,1.09969,1.09971,256 +2020-02-05 21:45,1.09971,1.09996,1.0997,1.09989,225 +2020-02-05 22:00,1.09989,1.0999,1.09974,1.09985,266 +2020-02-05 22:15,1.09984,1.09991,1.09984,1.09989,470 +2020-02-05 22:30,1.09989,1.09998,1.09989,1.09996,185 +2020-02-05 22:45,1.09997,1.10001,1.09995,1.09995,252 +2020-02-05 23:00,1.09994,1.10002,1.09993,1.09994,308 +2020-02-05 23:15,1.09995,1.09998,1.09984,1.09989,166 +2020-02-05 23:30,1.09992,1.1,1.09989,1.09997,194 +2020-02-05 23:45,1.09997,1.10003,1.09994,1.10003,207 +2020-02-06 00:00,1.10003,1.10005,1.09972,1.09978,328 +2020-02-06 00:15,1.09978,1.10001,1.09978,1.09999,195 +2020-02-06 00:30,1.09999,1.1,1.09983,1.09984,342 +2020-02-06 00:45,1.09983,1.09989,1.09959,1.09963,700 +2020-02-06 01:00,1.09963,1.09999,1.09963,1.09998,519 +2020-02-06 01:15,1.09999,1.1,1.09956,1.09964,613 +2020-02-06 01:30,1.09964,1.0997,1.09952,1.09954,660 +2020-02-06 01:45,1.09954,1.09982,1.09943,1.09981,621 +2020-02-06 02:00,1.09981,1.09989,1.09973,1.09978,445 +2020-02-06 02:15,1.09978,1.09985,1.09969,1.09975,418 +2020-02-06 02:30,1.09974,1.09983,1.09972,1.09976,182 +2020-02-06 02:45,1.09977,1.09977,1.09964,1.09976,368 +2020-02-06 03:00,1.09976,1.09988,1.09971,1.09985,359 +2020-02-06 03:15,1.09985,1.09985,1.09974,1.09976,209 +2020-02-06 03:30,1.09976,1.09978,1.09962,1.09976,271 +2020-02-06 03:45,1.09976,1.09977,1.0997,1.09971,219 +2020-02-06 04:00,1.09971,1.09982,1.09954,1.09972,753 +2020-02-06 04:15,1.09973,1.0998,1.09942,1.09948,535 +2020-02-06 04:30,1.09949,1.09971,1.09948,1.09971,330 +2020-02-06 04:45,1.09972,1.09973,1.09955,1.09956,358 +2020-02-06 05:00,1.09958,1.0996,1.0995,1.09956,310 +2020-02-06 05:15,1.09957,1.09976,1.0994,1.09971,374 +2020-02-06 05:30,1.09972,1.09978,1.09965,1.09978,481 +2020-02-06 05:45,1.09977,1.09997,1.09964,1.09997,444 +2020-02-06 06:00,1.09996,1.09996,1.0998,1.09982,499 +2020-02-06 06:15,1.09981,1.09986,1.09971,1.09971,773 +2020-02-06 06:30,1.09971,1.09987,1.09961,1.09986,612 +2020-02-06 06:45,1.09987,1.10021,1.09984,1.10001,663 +2020-02-06 07:00,1.10004,1.1001,1.09978,1.09992,1332 +2020-02-06 07:15,1.09992,1.1002,1.09977,1.10012,1304 +2020-02-06 07:30,1.10011,1.10056,1.09997,1.10027,1107 +2020-02-06 07:45,1.10026,1.10048,1.10022,1.10029,1156 +2020-02-06 08:00,1.10028,1.10138,1.09996,1.1002,3641 +2020-02-06 08:15,1.10021,1.10032,1.09975,1.09986,2110 +2020-02-06 08:30,1.09986,1.09991,1.09939,1.09969,2119 +2020-02-06 08:45,1.0997,1.09995,1.09944,1.09955,1358 +2020-02-06 09:00,1.09955,1.10017,1.0995,1.10002,1756 +2020-02-06 09:15,1.10001,1.10071,1.1,1.10053,2031 +2020-02-06 09:30,1.10053,1.10074,1.09999,1.09999,1736 +2020-02-06 09:45,1.10001,1.10009,1.09968,1.0999,1874 +2020-02-06 10:00,1.09989,1.10045,1.09988,1.10038,1571 +2020-02-06 10:15,1.10038,1.1005,1.10028,1.10047,1057 +2020-02-06 10:30,1.10047,1.10056,1.10029,1.10036,947 +2020-02-06 10:45,1.10036,1.10037,1.10009,1.10011,1117 +2020-02-06 11:00,1.10012,1.10028,1.10002,1.10003,1249 +2020-02-06 11:15,1.10001,1.10015,1.09975,1.09985,1296 +2020-02-06 11:30,1.09987,1.09995,1.09955,1.09986,1238 +2020-02-06 11:45,1.09987,1.10007,1.09977,1.10001,898 +2020-02-06 12:00,1.10002,1.10012,1.09981,1.09994,1044 +2020-02-06 12:15,1.09997,1.10026,1.09996,1.1002,832 +2020-02-06 12:30,1.10019,1.1002,1.09972,1.10006,1378 +2020-02-06 12:45,1.10005,1.10034,1.09975,1.10024,1525 +2020-02-06 13:00,1.10024,1.10035,1.10015,1.10028,1801 +2020-02-06 13:15,1.10028,1.10034,1.10005,1.10028,1855 +2020-02-06 13:30,1.10027,1.10037,1.09988,1.10006,1541 +2020-02-06 13:45,1.10006,1.10041,1.09993,1.10015,1823 +2020-02-06 14:00,1.10015,1.10015,1.09983,1.09983,1147 +2020-02-06 14:15,1.09984,1.09997,1.09951,1.0996,1237 +2020-02-06 14:30,1.09961,1.10001,1.09929,1.0999,2548 +2020-02-06 14:45,1.0999,1.09992,1.09882,1.09882,2586 +2020-02-06 15:00,1.09881,1.09909,1.09828,1.09828,3063 +2020-02-06 15:15,1.09829,1.0985,1.09779,1.09785,3126 +2020-02-06 15:30,1.09784,1.09789,1.09722,1.09764,3323 +2020-02-06 15:45,1.09764,1.09787,1.09644,1.09767,4338 +2020-02-06 16:00,1.09765,1.09827,1.09731,1.09772,3038 +2020-02-06 16:15,1.09771,1.09827,1.0973,1.09827,2493 +2020-02-06 16:30,1.09824,1.09835,1.09787,1.09791,1809 +2020-02-06 16:45,1.09792,1.09798,1.09745,1.09777,1378 +2020-02-06 17:00,1.09777,1.09798,1.09755,1.09777,1651 +2020-02-06 17:15,1.09778,1.09803,1.09769,1.09798,1342 +2020-02-06 17:30,1.09797,1.09802,1.09765,1.09788,629 +2020-02-06 17:45,1.09788,1.09789,1.09744,1.0975,1044 +2020-02-06 18:00,1.0975,1.09762,1.09722,1.09733,693 +2020-02-06 18:15,1.09734,1.09768,1.09733,1.09762,476 +2020-02-06 18:30,1.09765,1.09773,1.09756,1.09766,580 +2020-02-06 18:45,1.09767,1.09767,1.09717,1.09731,459 +2020-02-06 19:00,1.09731,1.09737,1.09707,1.0972,775 +2020-02-06 19:15,1.09721,1.09741,1.09716,1.0974,629 +2020-02-06 19:30,1.09742,1.0976,1.0973,1.09749,686 +2020-02-06 19:45,1.09751,1.09774,1.09743,1.09768,740 +2020-02-06 20:00,1.0977,1.09814,1.09766,1.09807,690 +2020-02-06 20:15,1.09807,1.09822,1.098,1.09812,602 +2020-02-06 20:30,1.09812,1.09822,1.09796,1.09796,761 +2020-02-06 20:45,1.098,1.09808,1.09768,1.09787,996 +2020-02-06 21:00,1.09787,1.09819,1.09785,1.09813,321 +2020-02-06 21:15,1.09813,1.09818,1.09806,1.09812,209 +2020-02-06 21:30,1.09812,1.09812,1.09798,1.09808,188 +2020-02-06 21:45,1.09807,1.09828,1.09801,1.09827,207 +2020-02-06 22:00,1.09827,1.09829,1.09771,1.098,951 +2020-02-06 22:15,1.098,1.09818,1.098,1.098,1230 +2020-02-06 22:30,1.098,1.098,1.09789,1.09793,154 +2020-02-06 22:45,1.09796,1.09808,1.09792,1.09807,84 +2020-02-06 23:00,1.09807,1.09812,1.09795,1.09806,278 +2020-02-06 23:15,1.09807,1.09809,1.09806,1.09806,117 +2020-02-06 23:30,1.0981,1.09814,1.09801,1.09802,214 +2020-02-06 23:45,1.09801,1.09809,1.098,1.09806,119 +2020-02-07 00:00,1.09809,1.09809,1.09776,1.09787,375 +2020-02-07 00:15,1.09788,1.09795,1.0978,1.09786,174 +2020-02-07 00:30,1.09786,1.09797,1.09781,1.09797,225 +2020-02-07 00:45,1.09797,1.09817,1.09794,1.09815,421 +2020-02-07 01:00,1.09815,1.09825,1.09802,1.09818,1333 +2020-02-07 01:15,1.09818,1.09826,1.09816,1.09823,1222 +2020-02-07 01:30,1.09824,1.09831,1.09816,1.0983,1339 +2020-02-07 01:45,1.09829,1.0983,1.0982,1.09829,878 +2020-02-07 02:00,1.09829,1.09832,1.09821,1.09824,938 +2020-02-07 02:15,1.09823,1.09836,1.09818,1.09832,853 +2020-02-07 02:30,1.09832,1.09839,1.09828,1.09833,1015 +2020-02-07 02:45,1.09833,1.09846,1.09831,1.09846,918 +2020-02-07 03:00,1.09846,1.09846,1.09826,1.09833,674 +2020-02-07 03:15,1.09833,1.09849,1.09828,1.09842,770 +2020-02-07 03:30,1.09841,1.09849,1.09834,1.09837,631 +2020-02-07 03:45,1.09836,1.0984,1.09825,1.09831,519 +2020-02-07 04:00,1.09832,1.09832,1.09816,1.09817,751 +2020-02-07 04:15,1.09818,1.09821,1.09811,1.09813,478 +2020-02-07 04:30,1.09814,1.09815,1.09794,1.09797,748 +2020-02-07 04:45,1.09798,1.09814,1.09791,1.09812,932 +2020-02-07 05:00,1.09811,1.09827,1.09809,1.09822,904 +2020-02-07 05:15,1.09823,1.09824,1.09812,1.09823,650 +2020-02-07 05:30,1.09824,1.09833,1.09817,1.09817,503 +2020-02-07 05:45,1.09816,1.09818,1.09804,1.09807,492 +2020-02-07 06:00,1.09808,1.09824,1.09806,1.09807,914 +2020-02-07 06:15,1.09808,1.09808,1.0978,1.09793,1000 +2020-02-07 06:30,1.09793,1.09805,1.09782,1.09792,1368 +2020-02-07 06:45,1.09793,1.09796,1.09772,1.09776,1095 +2020-02-07 07:00,1.09777,1.09783,1.0971,1.09728,2423 +2020-02-07 07:15,1.09728,1.09732,1.09686,1.09729,2058 +2020-02-07 07:30,1.09729,1.09757,1.09721,1.09753,2826 +2020-02-07 07:45,1.09754,1.09755,1.09667,1.09667,2561 +2020-02-07 08:00,1.09668,1.09687,1.09625,1.09679,4129 +2020-02-07 08:15,1.09679,1.0971,1.09674,1.09685,2210 +2020-02-07 08:30,1.09684,1.09686,1.09637,1.09668,2058 +2020-02-07 08:45,1.09668,1.09683,1.09566,1.09582,1399 +2020-02-07 09:00,1.09582,1.09641,1.09582,1.0963,1939 +2020-02-07 09:15,1.0963,1.09646,1.09592,1.09596,1210 +2020-02-07 09:30,1.09597,1.09628,1.09586,1.09612,1926 +2020-02-07 09:45,1.0961,1.09618,1.09534,1.09543,1980 +2020-02-07 10:00,1.09543,1.09568,1.09505,1.09506,1705 +2020-02-07 10:15,1.09508,1.09548,1.09479,1.09488,5449 +2020-02-07 10:30,1.09489,1.09527,1.09477,1.09522,2129 +2020-02-07 10:45,1.09522,1.09542,1.0951,1.09538,1469 +2020-02-07 11:00,1.09538,1.0954,1.09506,1.09538,1259 +2020-02-07 11:15,1.09539,1.09574,1.09527,1.09572,1628 +2020-02-07 11:30,1.09573,1.09578,1.09543,1.09571,1272 +2020-02-07 11:45,1.09571,1.09579,1.09513,1.09518,1530 +2020-02-07 12:00,1.0952,1.09551,1.09506,1.09542,1224 +2020-02-07 12:15,1.09542,1.09568,1.09536,1.09568,824 +2020-02-07 12:30,1.09568,1.09607,1.09553,1.09601,1233 +2020-02-07 12:45,1.09601,1.09647,1.09585,1.09646,1643 +2020-02-07 13:00,1.09644,1.09697,1.09634,1.09692,1833 +2020-02-07 13:15,1.09691,1.09708,1.09639,1.09652,2162 +2020-02-07 13:30,1.09655,1.09696,1.09543,1.09607,4625 +2020-02-07 13:45,1.09608,1.09646,1.09574,1.09581,2982 +2020-02-07 14:00,1.0958,1.09584,1.09487,1.09531,2968 +2020-02-07 14:15,1.09531,1.09587,1.09516,1.09561,2812 +2020-02-07 14:30,1.09561,1.09694,1.0956,1.09688,4162 +2020-02-07 14:45,1.09687,1.09734,1.09671,1.09713,3273 +2020-02-07 15:00,1.09713,1.09751,1.09681,1.09684,3096 +2020-02-07 15:15,1.09685,1.09716,1.0957,1.09602,2764 +2020-02-07 15:30,1.09602,1.09763,1.09584,1.09736,3814 +2020-02-07 15:45,1.09735,1.09756,1.09603,1.09633,3835 +2020-02-07 16:00,1.09631,1.09653,1.09563,1.09563,2217 +2020-02-07 16:15,1.09565,1.0957,1.09475,1.09476,2621 +2020-02-07 16:30,1.09476,1.09529,1.09461,1.09518,1769 +2020-02-07 16:45,1.09518,1.09538,1.09485,1.09494,1063 +2020-02-07 17:00,1.09494,1.09498,1.09458,1.09461,1050 +2020-02-07 17:15,1.09462,1.09487,1.09461,1.0947,993 +2020-02-07 17:30,1.0947,1.09485,1.09456,1.0946,671 +2020-02-07 17:45,1.09461,1.09462,1.09419,1.09427,1111 +2020-02-07 18:00,1.09426,1.0947,1.09424,1.09449,1340 +2020-02-07 18:15,1.09448,1.09467,1.09437,1.09466,616 +2020-02-07 18:30,1.09467,1.09492,1.09443,1.09451,1082 +2020-02-07 18:45,1.09451,1.0946,1.09425,1.09436,705 +2020-02-07 19:00,1.09437,1.09467,1.09437,1.09461,795 +2020-02-07 19:15,1.09462,1.09488,1.09453,1.09483,803 +2020-02-07 19:30,1.09483,1.09488,1.09451,1.09452,772 +2020-02-07 19:45,1.09451,1.09473,1.09449,1.09461,738 +2020-02-07 20:00,1.09462,1.09465,1.09448,1.09464,467 +2020-02-07 20:15,1.09464,1.09464,1.09441,1.09443,389 +2020-02-07 20:30,1.09444,1.09479,1.09443,1.09474,432 +2020-02-07 20:45,1.09475,1.09476,1.09462,1.09472,519 +2020-02-07 21:00,1.09471,1.09475,1.09459,1.0947,248 +2020-02-07 21:15,1.09469,1.0947,1.0945,1.0946,177 +2020-02-07 21:30,1.09459,1.09463,1.09436,1.09436,327 +2020-02-07 21:45,1.09436,1.09454,1.09424,1.09438,944 +2020-02-09 22:00,1.09439,1.09451,1.09419,1.09438,309 +2020-02-09 22:15,1.09438,1.09451,1.09438,1.09439,124 +2020-02-09 22:30,1.09439,1.09445,1.09425,1.09435,222 +2020-02-09 22:45,1.09435,1.09439,1.09431,1.09435,238 +2020-02-09 23:00,1.09435,1.09453,1.09428,1.09447,766 +2020-02-09 23:15,1.09447,1.09457,1.09446,1.09456,361 +2020-02-09 23:30,1.09457,1.095,1.09453,1.09495,1070 +2020-02-09 23:45,1.09493,1.09507,1.09483,1.09491,706 +2020-02-10 00:00,1.09491,1.09507,1.0948,1.09505,782 +2020-02-10 00:15,1.09505,1.09512,1.09501,1.09511,728 +2020-02-10 00:30,1.09511,1.09519,1.09501,1.09514,476 +2020-02-10 00:45,1.09513,1.09529,1.0951,1.09527,555 +2020-02-10 01:00,1.09526,1.09532,1.09515,1.09518,436 +2020-02-10 01:15,1.09518,1.09524,1.0951,1.09515,495 +2020-02-10 01:30,1.09515,1.09525,1.09502,1.09506,872 +2020-02-10 01:45,1.09507,1.09508,1.09492,1.09504,1018 +2020-02-10 02:00,1.09504,1.09531,1.09502,1.0952,410 +2020-02-10 02:15,1.09521,1.09526,1.09509,1.09521,800 +2020-02-10 02:30,1.09523,1.09524,1.09506,1.09511,882 +2020-02-10 02:45,1.09511,1.0954,1.0951,1.09535,469 +2020-02-10 03:00,1.09535,1.0954,1.09513,1.09516,630 +2020-02-10 03:15,1.09517,1.09528,1.09512,1.09517,653 +2020-02-10 03:30,1.09518,1.09519,1.095,1.09516,825 +2020-02-10 03:45,1.09517,1.09529,1.09516,1.09523,377 +2020-02-10 04:00,1.09524,1.09529,1.09518,1.09522,288 +2020-02-10 04:15,1.09523,1.09533,1.09522,1.09529,323 +2020-02-10 04:30,1.09528,1.09549,1.09528,1.09544,278 +2020-02-10 04:45,1.09545,1.09572,1.09543,1.09567,422 +2020-02-10 05:00,1.09568,1.09574,1.0956,1.09568,216 +2020-02-10 05:15,1.09568,1.09568,1.09552,1.09557,331 +2020-02-10 05:30,1.09558,1.09558,1.09541,1.09544,656 +2020-02-10 05:45,1.09544,1.09559,1.09542,1.09554,438 +2020-02-10 06:00,1.09554,1.09565,1.09539,1.0954,493 +2020-02-10 06:15,1.09539,1.09545,1.09528,1.09544,561 +2020-02-10 06:30,1.09545,1.09558,1.09533,1.09556,582 +2020-02-10 06:45,1.09558,1.09573,1.09513,1.09513,652 +2020-02-10 07:00,1.09512,1.09517,1.09481,1.0949,1366 +2020-02-10 07:15,1.09491,1.09536,1.0949,1.09527,1192 +2020-02-10 07:30,1.09526,1.09536,1.095,1.095,1861 +2020-02-10 07:45,1.095,1.09501,1.09451,1.09466,1693 +2020-02-10 08:00,1.09466,1.0949,1.0945,1.0946,1919 +2020-02-10 08:15,1.09461,1.09478,1.09447,1.09475,1581 +2020-02-10 08:30,1.09475,1.09525,1.09459,1.09515,1927 +2020-02-10 08:45,1.09516,1.09536,1.09491,1.09513,1782 +2020-02-10 09:00,1.09513,1.09515,1.09489,1.09498,1564 +2020-02-10 09:15,1.09499,1.09517,1.09486,1.09499,1643 +2020-02-10 09:30,1.095,1.09517,1.09488,1.09493,1240 +2020-02-10 09:45,1.09493,1.09516,1.09462,1.09497,1742 +2020-02-10 10:00,1.09496,1.09541,1.09494,1.09525,1458 +2020-02-10 10:15,1.09526,1.0955,1.09517,1.09518,1081 +2020-02-10 10:30,1.09519,1.09535,1.09478,1.0951,1492 +2020-02-10 10:45,1.09509,1.09523,1.09492,1.09494,1703 +2020-02-10 11:00,1.09493,1.095,1.09451,1.095,1413 +2020-02-10 11:15,1.09499,1.09515,1.09486,1.09498,994 +2020-02-10 11:30,1.09497,1.09523,1.09484,1.09515,1467 +2020-02-10 11:45,1.09515,1.09525,1.09491,1.09491,1264 +2020-02-10 12:00,1.09491,1.0951,1.09473,1.09499,1539 +2020-02-10 12:15,1.09498,1.09517,1.09486,1.09509,1251 +2020-02-10 12:30,1.0951,1.09515,1.09487,1.09509,1319 +2020-02-10 12:45,1.09509,1.09518,1.09481,1.09492,1502 +2020-02-10 13:00,1.09493,1.0952,1.0949,1.09511,1755 +2020-02-10 13:15,1.09511,1.09527,1.09485,1.09525,1766 +2020-02-10 13:30,1.09526,1.09526,1.09464,1.09473,2261 +2020-02-10 13:45,1.09473,1.09476,1.09298,1.09325,3418 +2020-02-10 14:00,1.09324,1.09337,1.0927,1.09284,3727 +2020-02-10 14:15,1.09284,1.09324,1.09278,1.09285,2038 +2020-02-10 14:30,1.09286,1.09302,1.09276,1.09299,2577 +2020-02-10 14:45,1.09299,1.09322,1.09275,1.09275,2573 +2020-02-10 15:00,1.09274,1.09327,1.0926,1.09326,2516 +2020-02-10 15:15,1.09326,1.09382,1.09312,1.09378,2073 +2020-02-10 15:30,1.09379,1.09379,1.09298,1.09299,2590 +2020-02-10 15:45,1.09299,1.09311,1.09192,1.09241,3197 +2020-02-10 16:00,1.0924,1.0924,1.09193,1.09195,2107 +2020-02-10 16:15,1.09195,1.09207,1.09125,1.09134,1794 +2020-02-10 16:30,1.09133,1.09141,1.09091,1.09115,1675 +2020-02-10 16:45,1.09116,1.09155,1.09113,1.0915,1330 +2020-02-10 17:00,1.09151,1.09201,1.0915,1.09164,1189 +2020-02-10 17:15,1.09165,1.09174,1.09146,1.09153,695 +2020-02-10 17:30,1.09152,1.0917,1.09127,1.09128,1156 +2020-02-10 17:45,1.09127,1.09152,1.09102,1.09102,964 +2020-02-10 18:00,1.09102,1.09147,1.09093,1.09142,828 +2020-02-10 18:15,1.09142,1.09165,1.09129,1.09151,819 +2020-02-10 18:30,1.0915,1.09165,1.09145,1.09154,634 +2020-02-10 18:45,1.09154,1.09156,1.09131,1.09136,481 +2020-02-10 19:00,1.09135,1.09141,1.09124,1.09139,496 +2020-02-10 19:15,1.0914,1.09162,1.09139,1.0915,572 +2020-02-10 19:30,1.09151,1.09157,1.0914,1.09143,267 +2020-02-10 19:45,1.09144,1.09149,1.09138,1.09138,401 +2020-02-10 20:00,1.09141,1.09152,1.09129,1.09129,418 +2020-02-10 20:15,1.09129,1.09134,1.09092,1.09093,252 +2020-02-10 20:30,1.09093,1.09107,1.09076,1.09089,445 +2020-02-10 20:45,1.09092,1.09138,1.09092,1.09123,831 +2020-02-10 21:00,1.09124,1.09135,1.09114,1.09115,252 +2020-02-10 21:15,1.09116,1.09118,1.09102,1.09104,194 +2020-02-10 21:30,1.09104,1.09115,1.09103,1.09106,173 +2020-02-10 21:45,1.09105,1.09112,1.09096,1.09105,286 +2020-02-10 22:00,1.09105,1.09116,1.09104,1.09115,140 +2020-02-10 22:15,1.09115,1.0912,1.09111,1.09119,94 +2020-02-10 22:30,1.09118,1.09139,1.09104,1.09116,750 +2020-02-10 22:45,1.09116,1.0913,1.09102,1.09107,654 +2020-02-10 23:00,1.09107,1.09131,1.09107,1.09127,309 +2020-02-10 23:15,1.09126,1.09131,1.09094,1.09095,397 +2020-02-10 23:30,1.09096,1.091,1.09089,1.09091,322 +2020-02-10 23:45,1.0909,1.09112,1.09088,1.09101,212 +2020-02-11 00:00,1.09103,1.09105,1.09083,1.09084,291 +2020-02-11 00:15,1.09085,1.09091,1.09078,1.09086,407 +2020-02-11 00:30,1.09086,1.09109,1.09085,1.09107,241 +2020-02-11 00:45,1.09108,1.09114,1.09095,1.091,242 +2020-02-11 01:00,1.09099,1.09124,1.09096,1.09124,426 +2020-02-11 01:15,1.09124,1.09151,1.09118,1.0914,780 +2020-02-11 01:30,1.09139,1.09144,1.09129,1.09136,1334 +2020-02-11 01:45,1.09136,1.09152,1.09134,1.09139,890 +2020-02-11 02:00,1.0914,1.09142,1.09118,1.09125,497 +2020-02-11 02:15,1.09125,1.09151,1.09123,1.09151,394 +2020-02-11 02:30,1.09151,1.09162,1.09145,1.09145,611 +2020-02-11 02:45,1.09145,1.09145,1.09121,1.09139,413 +2020-02-11 03:00,1.09139,1.09159,1.09128,1.09155,414 +2020-02-11 03:15,1.09155,1.09167,1.09155,1.09166,325 +2020-02-11 03:30,1.09169,1.0917,1.09131,1.09134,387 +2020-02-11 03:45,1.09135,1.0914,1.09124,1.09135,617 +2020-02-11 04:00,1.09134,1.09136,1.09123,1.09134,203 +2020-02-11 04:15,1.09134,1.09134,1.09113,1.09113,450 +2020-02-11 04:30,1.09115,1.0912,1.09108,1.09109,351 +2020-02-11 04:45,1.09109,1.0911,1.09088,1.09093,822 +2020-02-11 05:00,1.09093,1.09096,1.09078,1.09086,487 +2020-02-11 05:15,1.09086,1.09127,1.09086,1.09127,550 +2020-02-11 05:30,1.09128,1.09128,1.09104,1.09109,436 +2020-02-11 05:45,1.0911,1.09122,1.09102,1.09122,614 +2020-02-11 06:00,1.09122,1.09122,1.09088,1.09093,786 +2020-02-11 06:15,1.09093,1.09102,1.09082,1.09086,639 +2020-02-11 06:30,1.09086,1.09105,1.09085,1.09102,390 +2020-02-11 06:45,1.09101,1.09113,1.09096,1.09111,506 +2020-02-11 07:00,1.09112,1.09116,1.09061,1.09066,1751 +2020-02-11 07:15,1.09065,1.09102,1.09056,1.09091,1616 +2020-02-11 07:30,1.09091,1.09125,1.09083,1.09115,1201 +2020-02-11 07:45,1.09115,1.09143,1.09111,1.09142,1020 +2020-02-11 08:00,1.09144,1.09152,1.09063,1.09081,2696 +2020-02-11 08:15,1.09081,1.09099,1.09057,1.09087,1266 +2020-02-11 08:30,1.09087,1.091,1.09056,1.09098,1676 +2020-02-11 08:45,1.09098,1.09119,1.09087,1.09107,1232 +2020-02-11 09:00,1.09107,1.09146,1.0908,1.09146,2099 +2020-02-11 09:15,1.09147,1.09147,1.09117,1.09126,1445 +2020-02-11 09:30,1.09129,1.09158,1.09104,1.09104,1565 +2020-02-11 09:45,1.09103,1.09143,1.09095,1.09136,1571 +2020-02-11 10:00,1.09136,1.09151,1.09102,1.09128,1496 +2020-02-11 10:15,1.09127,1.09167,1.09122,1.09165,1541 +2020-02-11 10:30,1.09165,1.0918,1.0915,1.09177,1520 +2020-02-11 10:45,1.09178,1.09194,1.09151,1.09182,1302 +2020-02-11 11:00,1.09181,1.09206,1.09172,1.09181,1397 +2020-02-11 11:15,1.09182,1.09193,1.0915,1.0916,1660 +2020-02-11 11:30,1.09161,1.09178,1.09141,1.09144,1224 +2020-02-11 11:45,1.09144,1.09156,1.09124,1.09126,1662 +2020-02-11 12:00,1.09127,1.09148,1.09109,1.09138,2115 +2020-02-11 12:15,1.09137,1.09146,1.09118,1.09141,1396 +2020-02-11 12:30,1.09141,1.09162,1.0914,1.09145,1148 +2020-02-11 12:45,1.09145,1.09152,1.0907,1.09091,2463 +2020-02-11 13:00,1.0909,1.09097,1.08999,1.0901,3222 +2020-02-11 13:15,1.0901,1.09045,1.08975,1.08975,3223 +2020-02-11 13:30,1.08976,1.09039,1.08913,1.0899,3692 +2020-02-11 13:45,1.0899,1.0904,1.08949,1.09035,2946 +2020-02-11 14:00,1.09035,1.09116,1.09015,1.09088,3575 +2020-02-11 14:15,1.09088,1.09173,1.09088,1.09134,3033 +2020-02-11 14:30,1.09134,1.09181,1.09122,1.09168,2893 +2020-02-11 14:45,1.09167,1.09228,1.09151,1.09202,2107 +2020-02-11 15:00,1.09201,1.09248,1.09186,1.09217,2267 +2020-02-11 15:15,1.09218,1.0924,1.09163,1.09184,2773 +2020-02-11 15:30,1.09184,1.09211,1.09114,1.09136,2790 +2020-02-11 15:45,1.09136,1.09175,1.09116,1.0916,2356 +2020-02-11 16:00,1.09159,1.09193,1.09129,1.09188,957 +2020-02-11 16:15,1.09188,1.09216,1.09178,1.09184,557 +2020-02-11 16:30,1.09184,1.09233,1.09136,1.09141,761 +2020-02-11 16:45,1.09141,1.0917,1.09135,1.09164,459 +2020-02-11 17:00,1.09165,1.09236,1.09158,1.09206,578 +2020-02-11 17:15,1.09205,1.0922,1.09176,1.0922,366 +2020-02-11 17:30,1.09221,1.09233,1.09202,1.09224,403 +2020-02-11 17:45,1.09223,1.09241,1.09205,1.09217,374 +2020-02-11 18:00,1.09216,1.0922,1.09179,1.09191,343 +2020-02-11 18:15,1.09192,1.09205,1.09173,1.09175,265 +2020-02-11 18:30,1.09176,1.09212,1.0917,1.09195,245 +2020-02-11 18:45,1.09196,1.09206,1.09177,1.09189,290 +2020-02-11 19:00,1.09189,1.09221,1.09188,1.0922,247 +2020-02-11 19:15,1.09219,1.09231,1.09203,1.09228,246 +2020-02-11 19:30,1.09227,1.09227,1.09191,1.09205,214 +2020-02-11 19:45,1.09206,1.09218,1.09205,1.09215,158 +2020-02-11 20:00,1.09214,1.09215,1.09197,1.09201,147 +2020-02-11 20:15,1.092,1.09213,1.09191,1.09206,147 +2020-02-11 20:30,1.09206,1.09206,1.09181,1.09182,199 +2020-02-11 20:45,1.09184,1.09207,1.09184,1.09194,162 +2020-02-11 21:00,1.09183,1.09184,1.09178,1.09183,25 +2020-02-11 21:15,1.09184,1.09187,1.0917,1.0918,98 +2020-02-11 21:30,1.09182,1.09182,1.09167,1.09174,82 +2020-02-11 21:45,1.09175,1.09179,1.09141,1.09143,143 +2020-02-11 22:00,1.09139,1.09196,1.09138,1.09174,194 +2020-02-11 22:15,1.09172,1.09186,1.0917,1.0917,207 +2020-02-11 22:30,1.0917,1.09209,1.0917,1.09182,336 +2020-02-11 22:45,1.09183,1.09192,1.09175,1.09185,139 +2020-02-11 23:00,1.09186,1.09188,1.09172,1.09183,164 +2020-02-11 23:15,1.09182,1.09183,1.09175,1.09181,107 +2020-02-11 23:30,1.09181,1.09189,1.09179,1.09187,80 +2020-02-11 23:45,1.09187,1.09189,1.0918,1.09189,98 +2020-02-12 00:00,1.09187,1.0919,1.0912,1.09156,451 +2020-02-12 00:15,1.09155,1.09156,1.09135,1.09137,274 +2020-02-12 00:30,1.09138,1.09147,1.09135,1.09139,180 +2020-02-12 00:45,1.09139,1.09139,1.09116,1.09129,391 +2020-02-12 01:00,1.09128,1.09172,1.09108,1.09159,433 +2020-02-12 01:15,1.0916,1.09172,1.09151,1.09152,263 +2020-02-12 01:30,1.09152,1.09186,1.09151,1.0918,279 +2020-02-12 01:45,1.0918,1.09196,1.09177,1.09181,200 +2020-02-12 02:00,1.0918,1.09182,1.09145,1.09151,301 +2020-02-12 02:15,1.0915,1.09174,1.0915,1.09171,141 +2020-02-12 02:30,1.0917,1.09196,1.09167,1.09175,198 +2020-02-12 02:45,1.09175,1.09179,1.09155,1.09159,140 +2020-02-12 03:00,1.0916,1.09166,1.0915,1.09159,134 +2020-02-12 03:15,1.0916,1.09176,1.0916,1.09165,140 +2020-02-12 03:30,1.09166,1.09177,1.09157,1.09165,103 +2020-02-12 03:45,1.09164,1.09168,1.09149,1.09151,101 +2020-02-12 04:00,1.09151,1.09157,1.09142,1.09151,94 +2020-02-12 04:15,1.09152,1.09154,1.09136,1.09138,74 +2020-02-12 04:30,1.09137,1.09137,1.0912,1.09126,100 +2020-02-12 04:45,1.09125,1.09126,1.0912,1.09121,120 +2020-02-12 05:00,1.0912,1.09135,1.09111,1.09133,151 +2020-02-12 05:15,1.09132,1.09143,1.09121,1.09124,149 +2020-02-12 05:30,1.09125,1.09138,1.09112,1.09117,153 +2020-02-12 05:45,1.09116,1.09117,1.09094,1.09105,163 +2020-02-12 06:00,1.09104,1.09104,1.0905,1.09079,214 +2020-02-12 06:15,1.0908,1.09091,1.0908,1.09081,136 +2020-02-12 06:30,1.09082,1.09096,1.09069,1.09082,177 +2020-02-12 06:45,1.09079,1.09081,1.09049,1.09056,222 +2020-02-12 07:00,1.09057,1.09062,1.08972,1.09027,318 +2020-02-12 07:15,1.09026,1.09065,1.09024,1.09053,357 +2020-02-12 07:30,1.09054,1.09139,1.09052,1.09128,411 +2020-02-12 07:45,1.0913,1.09148,1.09092,1.09146,390 +2020-02-12 08:00,1.09144,1.09171,1.09115,1.09165,592 +2020-02-12 08:15,1.09165,1.09233,1.09161,1.09213,678852 +2020-02-12 08:30,1.09213,1.09255,1.09199,1.09199,1039856 +2020-02-12 08:45,1.09199,1.09235,1.09191,1.09216,823436 +2020-02-12 09:00,1.09215,1.09232,1.09194,1.09214,193702 +2020-02-12 09:15,1.09212,1.09222,1.09153,1.0916,3313 +2020-02-12 09:30,1.0916,1.0918,1.09114,1.09166,5490 +2020-02-12 09:45,1.09166,1.09228,1.09165,1.09203,3794 +2020-02-12 10:00,1.09203,1.09211,1.09167,1.09204,3076 +2020-02-12 10:15,1.09205,1.09217,1.09185,1.09196,2722 +2020-02-12 10:30,1.09195,1.09199,1.09158,1.09181,2598 +2020-02-12 10:45,1.09182,1.09196,1.09152,1.09181,2042 +2020-02-12 11:00,1.09181,1.09184,1.0913,1.0916,2738 +2020-02-12 11:15,1.0916,1.0916,1.09144,1.0915,1586 +2020-02-12 11:30,1.09149,1.09149,1.09108,1.0912,1908 +2020-02-12 11:45,1.0912,1.09135,1.09096,1.09119,984 +2020-02-12 12:00,1.09118,1.09143,1.09105,1.09141,704 +2020-02-12 12:15,1.09142,1.09142,1.09115,1.09117,756 +2020-02-12 12:30,1.09117,1.09124,1.09097,1.09112,420 +2020-02-12 12:45,1.09112,1.09136,1.091,1.09123,378 +2020-02-12 13:00,1.09123,1.09137,1.09113,1.09134,338 +2020-02-12 13:15,1.09134,1.09136,1.09076,1.09107,627 +2020-02-12 13:30,1.09106,1.09137,1.09097,1.09119,757 +2020-02-12 13:45,1.0912,1.09126,1.09046,1.09048,872 +2020-02-12 14:00,1.09049,1.09068,1.08996,1.09062,1713 +2020-02-12 14:15,1.09061,1.09105,1.09029,1.09104,3320 +2020-02-12 14:30,1.09103,1.09103,1.09042,1.09046,3629 +2020-02-12 14:45,1.09047,1.09049,1.08992,1.09039,5178 +2020-02-12 15:00,1.09039,1.09048,1.08911,1.08936,8963 +2020-02-12 15:15,1.08935,1.08945,1.08869,1.08896,9179 +2020-02-12 15:30,1.08895,1.08955,1.08873,1.08934,7855 +2020-02-12 15:45,1.08933,1.08955,1.08861,1.08944,9617 +2020-02-12 16:00,1.08946,1.08974,1.08906,1.08926,8921 +2020-02-12 16:15,1.08927,1.08975,1.0892,1.08942,7607 +2020-02-12 16:30,1.08941,1.08966,1.08911,1.08917,5840 +2020-02-12 16:45,1.08917,1.08925,1.08893,1.08922,4421 +2020-02-12 17:00,1.08923,1.08934,1.08782,1.08796,6784 +2020-02-12 17:15,1.088,1.0883,1.08768,1.08802,10622 +2020-02-12 17:30,1.08802,1.08805,1.08767,1.08768,8096 +2020-02-12 17:45,1.08769,1.0881,1.08767,1.08788,6883 +2020-02-12 18:00,1.08788,1.08797,1.08758,1.08763,7436 +2020-02-12 18:15,1.08764,1.08809,1.08762,1.0879,5771 +2020-02-12 18:30,1.0879,1.08805,1.08777,1.08779,3058 +2020-02-12 18:45,1.08778,1.08779,1.08761,1.08764,2231 +2020-02-12 19:00,1.08765,1.08776,1.0876,1.0876,2554 +2020-02-12 19:15,1.0876,1.08765,1.08654,1.0868,7368 +2020-02-12 19:30,1.0868,1.08707,1.0868,1.08692,5666 +2020-02-12 19:45,1.08693,1.08705,1.0866,1.08663,8303 +2020-02-12 20:00,1.08663,1.08699,1.08663,1.08698,5485 +2020-02-12 20:15,1.08699,1.08714,1.08693,1.0871,3188 +2020-02-12 20:30,1.08709,1.08731,1.08705,1.08726,2824 +2020-02-12 20:45,1.08726,1.08753,1.08721,1.08752,3707 +2020-02-12 21:00,1.08754,1.08755,1.08739,1.0874,2137 +2020-02-12 21:15,1.0874,1.08747,1.08732,1.08736,1863 +2020-02-12 21:30,1.08737,1.08737,1.08721,1.08728,3125 +2020-02-12 21:45,1.08729,1.08734,1.08712,1.08728,3489 +2020-02-12 22:00,1.08707,1.08745,1.08707,1.08732,979 +2020-02-12 22:15,1.08732,1.08743,1.0873,1.08733,4273 +2020-02-12 22:30,1.08735,1.0874,1.08708,1.08723,3143 +2020-02-12 22:45,1.08724,1.0874,1.08712,1.08716,3316 +2020-02-12 23:00,1.08717,1.08721,1.08712,1.08719,849 +2020-02-12 23:15,1.08719,1.08723,1.08712,1.0872,3676 +2020-02-12 23:30,1.0872,1.0872,1.087,1.08705,3508 +2020-02-12 23:45,1.08706,1.08759,1.08695,1.08756,4021 +2020-02-13 00:00,1.08755,1.08764,1.08724,1.08724,6806 +2020-02-13 00:15,1.08725,1.08742,1.08712,1.08734,4126 +2020-02-13 00:30,1.08734,1.08746,1.0872,1.08726,4709 +2020-02-13 00:45,1.08727,1.08741,1.08717,1.08724,3749 +2020-02-13 01:00,1.08724,1.08748,1.0872,1.08742,2839 +2020-02-13 01:15,1.08741,1.08742,1.0872,1.08724,3092 +2020-02-13 01:30,1.08723,1.08724,1.0871,1.08719,3209 +2020-02-13 01:45,1.08718,1.08742,1.08718,1.08729,2868 +2020-02-13 02:00,1.08728,1.08729,1.08697,1.08719,3355 +2020-02-13 02:15,1.08719,1.08738,1.08718,1.08723,2109 +2020-02-13 02:30,1.08723,1.08731,1.08715,1.08715,1821 +2020-02-13 02:45,1.08715,1.08721,1.08697,1.087,2278 +2020-02-13 03:00,1.08699,1.087,1.08678,1.08688,2783 +2020-02-13 03:15,1.08689,1.08702,1.08685,1.08695,2058 +2020-02-13 03:30,1.08696,1.08713,1.08694,1.087,2950 +2020-02-13 03:45,1.08703,1.08703,1.08686,1.087,2046 +2020-02-13 04:00,1.08699,1.087,1.08692,1.08694,1852 +2020-02-13 04:15,1.08693,1.08694,1.08682,1.08684,2277 +2020-02-13 04:30,1.08685,1.08685,1.08672,1.08679,2041 +2020-02-13 04:45,1.08678,1.0869,1.08652,1.0869,3390 +2020-02-13 05:00,1.08689,1.08702,1.08685,1.08691,2606 +2020-02-13 05:15,1.08693,1.08703,1.08675,1.08683,2655 +2020-02-13 05:30,1.08682,1.08706,1.08682,1.08706,1806 +2020-02-13 05:45,1.08705,1.08716,1.087,1.08715,2971 +2020-02-13 06:00,1.08715,1.08721,1.087,1.08711,4005 +2020-02-13 06:15,1.08713,1.08726,1.0871,1.0872,2823 +2020-02-13 06:30,1.08721,1.08732,1.08695,1.08697,3541 +2020-02-13 06:45,1.08696,1.08714,1.08695,1.08714,3321 +2020-02-13 07:00,1.08714,1.08751,1.08708,1.0874,5925 +2020-02-13 07:15,1.0874,1.08788,1.08734,1.08761,5879 +2020-02-13 07:30,1.0876,1.08787,1.08751,1.08767,4552 +2020-02-13 07:45,1.08767,1.08795,1.0876,1.08792,3816 +2020-02-13 08:00,1.08792,1.08818,1.08755,1.08804,5399 +2020-02-13 08:15,1.08804,1.08811,1.08789,1.08809,3673 +2020-02-13 08:30,1.08808,1.08859,1.08808,1.08853,4057 +2020-02-13 08:45,1.08853,1.08876,1.08845,1.08869,3108 +2020-02-13 09:00,1.08869,1.08887,1.08849,1.08851,3658 +2020-02-13 09:15,1.08852,1.08867,1.08815,1.08856,4458 +2020-02-13 09:30,1.08856,1.08872,1.08827,1.08848,4104 +2020-02-13 09:45,1.08849,1.08861,1.08821,1.08828,4378 +2020-02-13 10:00,1.08829,1.0883,1.088,1.08815,5437 +2020-02-13 10:15,1.08815,1.08839,1.08785,1.08829,5408 +2020-02-13 10:30,1.08829,1.08877,1.08814,1.08832,4884 +2020-02-13 10:45,1.08833,1.08837,1.08738,1.08739,5349 +2020-02-13 11:00,1.08739,1.08756,1.08684,1.08705,6882 +2020-02-13 11:15,1.08706,1.08728,1.08655,1.08673,6151 +2020-02-13 11:30,1.08674,1.08712,1.08667,1.08672,6554 +2020-02-13 11:45,1.08676,1.0869,1.0856,1.08576,9774 +2020-02-13 12:00,1.08578,1.08599,1.08531,1.08552,7137 +2020-02-13 12:15,1.08552,1.08582,1.08549,1.08576,5836 +2020-02-13 12:30,1.08577,1.08676,1.08571,1.08671,7118 +2020-02-13 12:45,1.08671,1.08693,1.08621,1.08638,6263 +2020-02-13 13:00,1.08639,1.08669,1.08612,1.08666,4709 +2020-02-13 13:15,1.08666,1.08691,1.08599,1.08609,4754 +2020-02-13 13:30,1.0861,1.08624,1.08559,1.08564,6932 +2020-02-13 13:45,1.08565,1.08577,1.08532,1.08548,6299 +2020-02-13 14:00,1.08548,1.08557,1.08476,1.08496,8749 +2020-02-13 14:15,1.08496,1.08536,1.08484,1.08536,6387 +2020-02-13 14:30,1.08535,1.08617,1.08534,1.08559,8053 +2020-02-13 14:45,1.08559,1.08566,1.08519,1.08553,6916 +2020-02-13 15:00,1.08553,1.08583,1.08452,1.08464,8066 +2020-02-13 15:15,1.08463,1.0848,1.0834,1.08379,8320 +2020-02-13 15:30,1.08378,1.08448,1.0836,1.08436,6235 +2020-02-13 15:45,1.08437,1.08495,1.08396,1.08486,9819 +2020-02-13 16:00,1.08487,1.08541,1.08477,1.085,6251 +2020-02-13 16:15,1.08501,1.08531,1.08494,1.08522,2466 +2020-02-13 16:30,1.08521,1.08528,1.08488,1.085,2410 +2020-02-13 16:45,1.08501,1.08501,1.08473,1.08473,1654 +2020-02-13 17:00,1.08474,1.08478,1.08399,1.0842,1553 +2020-02-13 17:15,1.08421,1.08451,1.08389,1.08418,1548 +2020-02-13 17:30,1.08417,1.08436,1.08393,1.08412,1706 +2020-02-13 17:45,1.08413,1.08432,1.08398,1.08424,1902 +2020-02-13 18:00,1.08425,1.08435,1.0841,1.08421,2253 +2020-02-13 18:15,1.08422,1.08426,1.08389,1.08408,1344 +2020-02-13 18:30,1.08408,1.08427,1.084,1.08426,925 +2020-02-13 18:45,1.08425,1.08427,1.08412,1.0842,917 +2020-02-13 19:00,1.08419,1.08425,1.08406,1.08419,829 +2020-02-13 19:15,1.08418,1.08435,1.08414,1.08419,729 +2020-02-13 19:30,1.08418,1.08441,1.08416,1.08423,777 +2020-02-13 19:45,1.08423,1.08443,1.08423,1.08433,855 +2020-02-13 20:00,1.08433,1.08454,1.08424,1.08433,974 +2020-02-13 20:15,1.08433,1.08435,1.08419,1.0842,562 +2020-02-13 20:30,1.0842,1.08428,1.08411,1.08423,753 +2020-02-13 20:45,1.08422,1.08429,1.0841,1.08413,731 +2020-02-13 21:00,1.08413,1.08413,1.08391,1.08392,737 +2020-02-13 21:15,1.08392,1.08395,1.0838,1.08391,642 +2020-02-13 21:30,1.0839,1.08406,1.0839,1.08405,620 +2020-02-13 21:45,1.08406,1.08419,1.08387,1.08408,1024 +2020-02-13 22:00,1.08408,1.08419,1.0838,1.08386,238 +2020-02-13 22:15,1.08387,1.08396,1.08381,1.08393,201 +2020-02-13 22:30,1.08394,1.08397,1.08385,1.08389,197 +2020-02-13 22:45,1.08389,1.08422,1.08388,1.084,134 +2020-02-13 23:00,1.08401,1.08402,1.08384,1.0839,617 +2020-02-13 23:15,1.08389,1.08399,1.08381,1.08396,700 +2020-02-13 23:30,1.08396,1.08406,1.08387,1.08402,736 +2020-02-13 23:45,1.08402,1.08418,1.08394,1.08413,621 +2020-02-14 00:00,1.08415,1.08416,1.08271,1.08324,1823 +2020-02-14 00:15,1.08323,1.08356,1.08323,1.08324,1567 +2020-02-14 00:30,1.08323,1.08358,1.08321,1.08355,1036 +2020-02-14 00:45,1.08354,1.08386,1.08354,1.0838,1149 +2020-02-14 01:00,1.08381,1.08383,1.08362,1.08376,1257 +2020-02-14 01:15,1.08376,1.08382,1.08351,1.08353,1502 +2020-02-14 01:30,1.08354,1.08356,1.08332,1.08352,1402 +2020-02-14 01:45,1.08352,1.08375,1.08343,1.08361,1477 +2020-02-14 02:00,1.0836,1.08373,1.08349,1.0835,1425 +2020-02-14 02:15,1.0835,1.08362,1.08343,1.08352,997 +2020-02-14 02:30,1.08351,1.08366,1.0835,1.08354,1002 +2020-02-14 02:45,1.08355,1.08371,1.08353,1.08369,1197 +2020-02-14 03:00,1.08369,1.08369,1.08349,1.08355,1194 +2020-02-14 03:15,1.08354,1.08366,1.08344,1.08351,1559 +2020-02-14 03:30,1.08351,1.08353,1.08333,1.08342,872 +2020-02-14 03:45,1.0834,1.0834,1.08308,1.0831,1287 +2020-02-14 04:00,1.0831,1.08327,1.08309,1.08311,863 +2020-02-14 04:15,1.08311,1.08327,1.0831,1.08326,858 +2020-02-14 04:30,1.08326,1.08326,1.08321,1.08324,694 +2020-02-14 04:45,1.08324,1.0833,1.08321,1.0833,363 +2020-02-14 05:00,1.08331,1.08344,1.0833,1.0834,607 +2020-02-14 05:15,1.08339,1.08346,1.08337,1.08346,375 +2020-02-14 05:30,1.08345,1.08351,1.08333,1.0835,480 +2020-02-14 05:45,1.08352,1.08372,1.08349,1.0837,677 +2020-02-14 06:00,1.0837,1.08371,1.08342,1.08361,768 +2020-02-14 06:15,1.08361,1.08389,1.08353,1.08378,621 +2020-02-14 06:30,1.08378,1.08386,1.08371,1.0838,578 +2020-02-14 06:45,1.08378,1.08385,1.0835,1.08353,1010 +2020-02-14 07:00,1.08353,1.08402,1.08348,1.08394,1466 +2020-02-14 07:15,1.08394,1.08397,1.08367,1.08369,803 +2020-02-14 07:30,1.08369,1.08418,1.08367,1.0841,1294 +2020-02-14 07:45,1.0841,1.08432,1.08404,1.0841,1461 +2020-02-14 08:00,1.08412,1.08426,1.08322,1.08338,1857 +2020-02-14 08:15,1.08338,1.08362,1.08323,1.08357,1354 +2020-02-14 08:30,1.08358,1.08396,1.08355,1.08377,1215 +2020-02-14 08:45,1.08376,1.08433,1.0837,1.0843,1415 +2020-02-14 09:00,1.08429,1.08458,1.084,1.08458,2166 +2020-02-14 09:15,1.08457,1.08483,1.08446,1.08466,1652 +2020-02-14 09:30,1.08468,1.08501,1.08444,1.08465,1885 +2020-02-14 09:45,1.08464,1.08482,1.08445,1.08448,1218 +2020-02-14 10:00,1.08449,1.0846,1.08425,1.08452,1249 +2020-02-14 10:15,1.08451,1.08487,1.08443,1.08482,1069 +2020-02-14 10:30,1.08483,1.08492,1.08413,1.08415,1815 +2020-02-14 10:45,1.08415,1.08424,1.0838,1.08389,1445 +2020-02-14 11:00,1.0839,1.08442,1.08388,1.08427,1450 +2020-02-14 11:15,1.08429,1.08447,1.08404,1.08414,1410 +2020-02-14 11:30,1.08415,1.08417,1.0838,1.08401,1264 +2020-02-14 11:45,1.08401,1.0841,1.0837,1.0837,1337 +2020-02-14 12:00,1.0837,1.08371,1.08324,1.08347,1694 +2020-02-14 12:15,1.08347,1.08392,1.08334,1.08391,1481 +2020-02-14 12:30,1.08392,1.08445,1.08386,1.08427,1663 +2020-02-14 12:45,1.08427,1.08451,1.08392,1.08398,2110 +2020-02-14 13:00,1.084,1.08434,1.08392,1.08418,2797 +2020-02-14 13:15,1.08418,1.08423,1.08358,1.0837,2419 +2020-02-14 13:30,1.08371,1.08543,1.0837,1.08535,3583 +2020-02-14 13:45,1.08536,1.08596,1.08491,1.08551,3455 +2020-02-14 14:00,1.08551,1.08591,1.08512,1.08581,3065 +2020-02-14 14:15,1.0858,1.0858,1.08534,1.08559,2098 +2020-02-14 14:30,1.08559,1.08611,1.0855,1.086,1800 +2020-02-14 14:45,1.08601,1.08607,1.08558,1.08562,2269 +2020-02-14 15:00,1.08566,1.08572,1.08466,1.08488,2919 +2020-02-14 15:15,1.08488,1.08518,1.08464,1.08518,1647 +2020-02-14 15:30,1.08517,1.08591,1.08508,1.08591,2213 +2020-02-14 15:45,1.08591,1.08591,1.08437,1.08457,2619 +2020-02-14 16:00,1.08458,1.08467,1.08392,1.08426,2871 +2020-02-14 16:15,1.08426,1.08435,1.08383,1.08414,2075 +2020-02-14 16:30,1.08413,1.08433,1.08403,1.08428,2031 +2020-02-14 16:45,1.08428,1.08436,1.08371,1.08392,1404 +2020-02-14 17:00,1.08391,1.08395,1.08351,1.08352,1388 +2020-02-14 17:15,1.08353,1.08372,1.08328,1.0836,1355 +2020-02-14 17:30,1.0836,1.08388,1.08358,1.08385,962 +2020-02-14 17:45,1.08385,1.08436,1.08384,1.08433,828 +2020-02-14 18:00,1.08433,1.08461,1.08425,1.08454,1020 +2020-02-14 18:15,1.08453,1.08463,1.08422,1.08422,689 +2020-02-14 18:30,1.08422,1.08446,1.08419,1.08441,454 +2020-02-14 18:45,1.0844,1.08442,1.08418,1.08436,638 +2020-02-14 19:00,1.08436,1.08454,1.08434,1.0845,704 +2020-02-14 19:15,1.08451,1.08455,1.08419,1.08422,855 +2020-02-14 19:30,1.08423,1.08423,1.08398,1.08399,666 +2020-02-14 19:45,1.084,1.08404,1.08388,1.08394,651 +2020-02-14 20:00,1.08394,1.08406,1.08383,1.08399,651 +2020-02-14 20:15,1.08399,1.08412,1.08374,1.08386,504 +2020-02-14 20:30,1.08386,1.08394,1.0837,1.08385,477 +2020-02-14 20:45,1.08386,1.08386,1.08363,1.08372,905 +2020-02-14 21:00,1.08373,1.08389,1.08363,1.08363,284 +2020-02-14 21:15,1.08363,1.08363,1.08333,1.08341,342 +2020-02-14 21:30,1.08339,1.08354,1.0832,1.0832,363 +2020-02-14 21:45,1.08319,1.08332,1.08294,1.08299,947 +2020-02-16 22:00,1.08406,1.08415,1.08355,1.08365,497 +2020-02-16 22:15,1.08365,1.08401,1.08365,1.08379,368 +2020-02-16 22:30,1.08379,1.08399,1.0836,1.08388,734 +2020-02-16 22:45,1.08388,1.08392,1.08379,1.08384,339 +2020-02-16 23:00,1.0839,1.084,1.08359,1.08392,603 +2020-02-16 23:15,1.08393,1.08397,1.08386,1.08389,232 +2020-02-16 23:30,1.08391,1.08411,1.08391,1.08407,403 +2020-02-16 23:45,1.08406,1.08416,1.08401,1.08411,294 +2020-02-17 00:00,1.08411,1.08411,1.0836,1.08375,674 +2020-02-17 00:15,1.08374,1.08375,1.0835,1.08373,459 +2020-02-17 00:30,1.08373,1.08375,1.08353,1.08356,340 +2020-02-17 00:45,1.08356,1.08366,1.08351,1.08358,392 +2020-02-17 01:00,1.08359,1.08369,1.08345,1.08361,561 +2020-02-17 01:15,1.08361,1.08365,1.08334,1.08351,424 +2020-02-17 01:30,1.08351,1.08374,1.08351,1.08373,468 +2020-02-17 01:45,1.08373,1.08379,1.08365,1.08365,502 +2020-02-17 02:00,1.08366,1.08389,1.0836,1.08387,586 +2020-02-17 02:15,1.08387,1.08396,1.08378,1.08392,305 +2020-02-17 02:30,1.08392,1.08401,1.08385,1.08397,315 +2020-02-17 02:45,1.08397,1.08402,1.08388,1.08392,245 +2020-02-17 03:00,1.08391,1.08391,1.08381,1.08381,259 +2020-02-17 03:15,1.08381,1.08392,1.08372,1.08381,392 +2020-02-17 03:30,1.0838,1.08386,1.08375,1.08382,300 +2020-02-17 03:45,1.08383,1.08387,1.08375,1.08384,218 +2020-02-17 04:00,1.08385,1.08407,1.0838,1.08401,248 +2020-02-17 04:15,1.08401,1.08402,1.08375,1.08386,335 +2020-02-17 04:30,1.08387,1.084,1.08381,1.08391,428 +2020-02-17 04:45,1.08391,1.08396,1.08375,1.08376,259 +2020-02-17 05:00,1.08379,1.08394,1.08379,1.08392,271 +2020-02-17 05:15,1.08393,1.08398,1.08383,1.08389,262 +2020-02-17 05:30,1.08388,1.08398,1.08383,1.08391,180 +2020-02-17 05:45,1.0839,1.08412,1.08386,1.08395,464 +2020-02-17 06:00,1.08396,1.08404,1.08378,1.08381,377 +2020-02-17 06:15,1.08381,1.08388,1.08375,1.08387,308 +2020-02-17 06:30,1.08386,1.08387,1.08359,1.08364,421 +2020-02-17 06:45,1.08363,1.08364,1.08339,1.08351,512 +2020-02-17 07:00,1.08351,1.08378,1.08351,1.08367,923 +2020-02-17 07:15,1.08367,1.08396,1.08366,1.0839,998 +2020-02-17 07:30,1.08389,1.08391,1.08374,1.08374,6004 +2020-02-17 07:45,1.08374,1.08422,1.08374,1.08406,1651 +2020-02-17 08:00,1.08407,1.0842,1.08383,1.08399,1635 +2020-02-17 08:15,1.08398,1.08424,1.08382,1.08397,1358 +2020-02-17 08:30,1.08398,1.084,1.08372,1.08392,1204 +2020-02-17 08:45,1.08392,1.08462,1.08385,1.08462,1478 +2020-02-17 09:00,1.08462,1.08509,1.08453,1.08495,2035 +2020-02-17 09:15,1.08496,1.08496,1.08438,1.08448,1588 +2020-02-17 09:30,1.08447,1.08466,1.08427,1.08438,1488 +2020-02-17 09:45,1.08438,1.08467,1.08424,1.08441,1622 +2020-02-17 10:00,1.08442,1.08461,1.08425,1.08453,1185 +2020-02-17 10:15,1.08453,1.08472,1.08446,1.08454,1016 +2020-02-17 10:30,1.08453,1.08473,1.08443,1.08466,1052 +2020-02-17 10:45,1.08463,1.08471,1.08452,1.08468,969 +2020-02-17 11:00,1.08468,1.0848,1.08442,1.08457,1253 +2020-02-17 11:15,1.08457,1.08463,1.08409,1.08415,879 +2020-02-17 11:30,1.08414,1.08425,1.08392,1.08409,923 +2020-02-17 11:45,1.08408,1.08421,1.08359,1.08391,1199 +2020-02-17 12:00,1.0839,1.08413,1.08381,1.08413,857 +2020-02-17 12:15,1.08413,1.08418,1.08371,1.08386,907 +2020-02-17 12:30,1.08386,1.08396,1.08367,1.08376,887 +2020-02-17 12:45,1.08376,1.08382,1.08352,1.08362,1338 +2020-02-17 13:00,1.08362,1.08374,1.0832,1.08352,1384 +2020-02-17 13:15,1.08352,1.08389,1.08349,1.08385,687 +2020-02-17 13:30,1.08385,1.08407,1.08371,1.08406,787 +2020-02-17 13:45,1.08407,1.08407,1.0836,1.0836,909 +2020-02-17 14:00,1.08359,1.08393,1.08349,1.08369,801 +2020-02-17 14:15,1.0837,1.08394,1.08358,1.08386,798 +2020-02-17 14:30,1.08386,1.0839,1.08369,1.08389,949 +2020-02-17 14:45,1.08388,1.08413,1.08382,1.0839,1094 +2020-02-17 15:00,1.08389,1.08399,1.08355,1.08356,1741 +2020-02-17 15:15,1.08355,1.08361,1.08334,1.08348,1133 +2020-02-17 15:30,1.08348,1.08373,1.08348,1.08361,1090 +2020-02-17 15:45,1.08361,1.08361,1.08293,1.08296,1774 +2020-02-17 16:00,1.08295,1.08335,1.08291,1.08327,1100 +2020-02-17 16:15,1.08327,1.08362,1.08315,1.08359,1121 +2020-02-17 16:30,1.0836,1.08361,1.08331,1.08342,844 +2020-02-17 16:45,1.08338,1.08379,1.08336,1.08374,884 +2020-02-17 17:00,1.08374,1.08399,1.08364,1.08377,922 +2020-02-17 17:15,1.08376,1.08378,1.08348,1.08366,713 +2020-02-17 17:30,1.08366,1.08366,1.0834,1.08343,592 +2020-02-17 17:45,1.08343,1.08343,1.08318,1.0832,794 +2020-02-17 18:00,1.0832,1.08349,1.08309,1.08343,659 +2020-02-17 18:15,1.08343,1.08344,1.08318,1.08318,299 +2020-02-17 18:30,1.08318,1.08332,1.083,1.08324,380 +2020-02-17 18:45,1.08324,1.0834,1.08323,1.08327,301 +2020-02-17 19:00,1.08327,1.08339,1.08309,1.08335,621 +2020-02-17 19:15,1.08335,1.08342,1.08333,1.08338,306 +2020-02-17 19:30,1.08338,1.08343,1.08332,1.08338,277 +2020-02-17 19:45,1.08337,1.08355,1.08335,1.08337,197 +2020-02-17 20:00,1.08337,1.08346,1.08334,1.08336,277 +2020-02-17 20:15,1.08337,1.08342,1.08333,1.08336,112 +2020-02-17 20:30,1.08336,1.08339,1.08317,1.08317,281 +2020-02-17 20:45,1.08317,1.08341,1.08317,1.08334,726 +2020-02-17 21:00,1.08333,1.08348,1.08322,1.08343,325 +2020-02-17 21:15,1.08344,1.08356,1.08338,1.08349,286 +2020-02-17 21:30,1.08348,1.08357,1.08326,1.08355,267 +2020-02-17 21:45,1.08356,1.08371,1.0833,1.08345,332 +2020-02-17 22:00,1.08343,1.08363,1.08322,1.0835,640 +2020-02-17 22:15,1.0835,1.08368,1.08335,1.08361,273 +2020-02-17 22:30,1.08362,1.08371,1.0835,1.08367,1063 +2020-02-17 22:45,1.08369,1.08373,1.08363,1.08366,346 +2020-02-17 23:00,1.08367,1.0837,1.0835,1.08364,718 +2020-02-17 23:15,1.08365,1.08367,1.0835,1.08361,552 +2020-02-17 23:30,1.08361,1.08366,1.0835,1.08351,275 +2020-02-17 23:45,1.08352,1.08371,1.08352,1.08366,255 +2020-02-18 00:00,1.08365,1.08367,1.08307,1.0831,1296 +2020-02-18 00:15,1.08311,1.08325,1.08282,1.08319,900 +2020-02-18 00:30,1.08319,1.08319,1.0829,1.08297,1098 +2020-02-18 00:45,1.08296,1.08301,1.0825,1.08258,837 +2020-02-18 01:00,1.08259,1.08287,1.08256,1.08276,1137 +2020-02-18 01:15,1.08276,1.08287,1.08265,1.08272,908 +2020-02-18 01:30,1.08273,1.08276,1.08229,1.08239,840 +2020-02-18 01:45,1.0824,1.08279,1.0824,1.08276,874 +2020-02-18 02:00,1.08276,1.08276,1.08262,1.08266,772 +2020-02-18 02:15,1.08266,1.08269,1.08234,1.08246,856 +2020-02-18 02:30,1.08247,1.08276,1.08239,1.08276,853 +2020-02-18 02:45,1.08277,1.08291,1.08275,1.08282,822 +2020-02-18 03:00,1.08281,1.08327,1.08279,1.08326,648 +2020-02-18 03:15,1.08326,1.08338,1.08319,1.08319,508 +2020-02-18 03:30,1.08318,1.08332,1.08316,1.0832,591 +2020-02-18 03:45,1.0832,1.08339,1.0831,1.08324,584 +2020-02-18 04:00,1.08324,1.08329,1.08318,1.08324,537 +2020-02-18 04:15,1.08324,1.08329,1.08315,1.08325,256 +2020-02-18 04:30,1.08325,1.08325,1.08305,1.08305,366 +2020-02-18 04:45,1.08305,1.0831,1.08299,1.08299,346 +2020-02-18 05:00,1.083,1.0832,1.083,1.0832,717 +2020-02-18 05:15,1.0832,1.08322,1.083,1.08316,618 +2020-02-18 05:30,1.08315,1.08319,1.08309,1.08315,463 +2020-02-18 05:45,1.08314,1.08317,1.08308,1.08311,620 +2020-02-18 06:00,1.08313,1.08367,1.08313,1.08348,914 +2020-02-18 06:15,1.08347,1.0835,1.08333,1.08346,799 +2020-02-18 06:30,1.08345,1.08349,1.08307,1.08311,933 +2020-02-18 06:45,1.08312,1.08321,1.08284,1.083,1055 +2020-02-18 07:00,1.08299,1.08346,1.08297,1.08346,1733 +2020-02-18 07:15,1.08345,1.08368,1.08336,1.08352,1825 +2020-02-18 07:30,1.08351,1.08372,1.08343,1.0836,1773 +2020-02-18 07:45,1.0836,1.08367,1.0833,1.0833,1638 +2020-02-18 08:00,1.0833,1.08351,1.08265,1.08285,3110 +2020-02-18 08:15,1.08285,1.08308,1.08266,1.08294,2443 +2020-02-18 08:30,1.08293,1.08299,1.08249,1.08277,2002 +2020-02-18 08:45,1.08275,1.08291,1.08249,1.08263,2418 +2020-02-18 09:00,1.08264,1.08303,1.08246,1.08292,2199 +2020-02-18 09:15,1.08293,1.08313,1.08286,1.08294,1858 +2020-02-18 09:30,1.08294,1.08306,1.08278,1.08283,1740 +2020-02-18 09:45,1.08282,1.083,1.08264,1.08272,2017 +2020-02-18 10:00,1.08273,1.08278,1.08212,1.0822,3082 +2020-02-18 10:15,1.08221,1.08286,1.08218,1.08238,2546 +2020-02-18 10:30,1.08239,1.08367,1.08226,1.08329,3656 +2020-02-18 10:45,1.08329,1.08339,1.08261,1.08267,2708 +2020-02-18 11:00,1.08268,1.08347,1.08268,1.08338,2018 +2020-02-18 11:15,1.08338,1.08357,1.08317,1.08336,1861 +2020-02-18 11:30,1.08336,1.0834,1.0829,1.08302,2136 +2020-02-18 11:45,1.083,1.083,1.08244,1.08245,2150 +2020-02-18 12:00,1.08245,1.08249,1.08203,1.08217,1417 +2020-02-18 12:15,1.08217,1.08231,1.08171,1.08182,2363 +2020-02-18 12:30,1.08184,1.0819,1.08124,1.08157,2279 +2020-02-18 12:45,1.08158,1.08174,1.08139,1.08143,1940 +2020-02-18 13:00,1.08143,1.08168,1.08139,1.08154,1646 +2020-02-18 13:15,1.08153,1.08155,1.08108,1.08125,2332 +2020-02-18 13:30,1.08126,1.0813,1.07933,1.08019,4048 +2020-02-18 13:45,1.08018,1.08032,1.07979,1.08021,2204 +2020-02-18 14:00,1.08023,1.08026,1.07906,1.07919,2759 +2020-02-18 14:15,1.0792,1.07946,1.07854,1.07934,3028 +2020-02-18 14:30,1.07934,1.08005,1.07917,1.07982,3320 +2020-02-18 14:45,1.07983,1.0808,1.07941,1.08078,2996 +2020-02-18 15:00,1.08077,1.08177,1.08076,1.08112,3409 +2020-02-18 15:15,1.08111,1.08173,1.08095,1.08172,3420 +2020-02-18 15:30,1.08172,1.08202,1.08127,1.08176,3048 +2020-02-18 15:45,1.08175,1.08258,1.08151,1.08227,3118 +2020-02-18 16:00,1.08227,1.08241,1.082,1.08211,2461 +2020-02-18 16:15,1.08211,1.08213,1.08166,1.08181,1413 +2020-02-18 16:30,1.08181,1.08181,1.0812,1.08133,1349 +2020-02-18 16:45,1.08132,1.08156,1.08122,1.08146,983 +2020-02-18 17:00,1.08147,1.08147,1.08101,1.08116,1008 +2020-02-18 17:15,1.08117,1.08118,1.0809,1.0809,724 +2020-02-18 17:30,1.0809,1.08091,1.08026,1.08039,1175 +2020-02-18 17:45,1.08038,1.0806,1.08031,1.08041,821 +2020-02-18 18:00,1.08041,1.08042,1.08006,1.08019,914 +2020-02-18 18:15,1.08018,1.08031,1.08011,1.08022,571 +2020-02-18 18:30,1.08022,1.08034,1.08015,1.08033,625 +2020-02-18 18:45,1.08033,1.08039,1.07994,1.08,717 +2020-02-18 19:00,1.07999,1.08017,1.07991,1.08008,598 +2020-02-18 19:15,1.0801,1.0801,1.07977,1.07989,912 +2020-02-18 19:30,1.07989,1.07993,1.07929,1.07943,796 +2020-02-18 19:45,1.07942,1.07958,1.07929,1.07939,833 +2020-02-18 20:00,1.07938,1.07968,1.07935,1.07956,572 +2020-02-18 20:15,1.07955,1.07955,1.07909,1.0791,507 +2020-02-18 20:30,1.0791,1.07945,1.07908,1.0793,624 +2020-02-18 20:45,1.07929,1.07965,1.07928,1.07958,536 +2020-02-18 21:00,1.07957,1.07959,1.07941,1.07945,374 +2020-02-18 21:15,1.07946,1.07948,1.07919,1.07923,216 +2020-02-18 21:30,1.07923,1.07923,1.07898,1.07898,192 +2020-02-18 21:45,1.07898,1.07933,1.07897,1.07907,367 +2020-02-18 22:00,1.07906,1.07941,1.07904,1.07929,287 +2020-02-18 22:15,1.07927,1.07942,1.07925,1.07934,618 +2020-02-18 22:30,1.07932,1.07949,1.07929,1.07946,288 +2020-02-18 22:45,1.07945,1.07959,1.07937,1.07942,472 +2020-02-18 23:00,1.07943,1.07951,1.07925,1.07943,603 +2020-02-18 23:15,1.07943,1.0796,1.07943,1.07956,292 +2020-02-18 23:30,1.07959,1.07971,1.07954,1.07965,147 +2020-02-18 23:45,1.07965,1.07965,1.07943,1.07949,205 +2020-02-19 00:00,1.07949,1.07949,1.07927,1.07944,377 +2020-02-19 00:15,1.07948,1.07964,1.07941,1.07959,354 +2020-02-19 00:30,1.07959,1.07969,1.07959,1.07965,222 +2020-02-19 00:45,1.07964,1.07994,1.07964,1.07979,450 +2020-02-19 01:00,1.07981,1.07991,1.07974,1.07974,704 +2020-02-19 01:15,1.07973,1.0802,1.07971,1.08002,692 +2020-02-19 01:30,1.08003,1.08034,1.08003,1.08028,630 +2020-02-19 01:45,1.08027,1.08037,1.08016,1.0802,586 +2020-02-19 02:00,1.0802,1.08028,1.07999,1.08027,433 +2020-02-19 02:15,1.08028,1.08028,1.08002,1.08002,745 +2020-02-19 02:30,1.08002,1.08005,1.07988,1.07994,687 +2020-02-19 02:45,1.07994,1.07996,1.07984,1.07989,414 +2020-02-19 03:00,1.07988,1.08002,1.07985,1.08001,312 +2020-02-19 03:15,1.08002,1.08017,1.07997,1.08015,423 +2020-02-19 03:30,1.08015,1.08015,1.07999,1.08,282 +2020-02-19 03:45,1.08,1.08002,1.07984,1.07988,383 +2020-02-19 04:00,1.07989,1.07991,1.0798,1.07983,406 +2020-02-19 04:15,1.07983,1.07988,1.07976,1.07982,342 +2020-02-19 04:30,1.07983,1.07984,1.07961,1.07961,383 +2020-02-19 04:45,1.07961,1.07974,1.07957,1.07972,203 +2020-02-19 05:00,1.07972,1.07975,1.07961,1.07963,220 +2020-02-19 05:15,1.07964,1.07965,1.07957,1.07959,257 +2020-02-19 05:30,1.0796,1.07963,1.07953,1.07953,312 +2020-02-19 05:45,1.07954,1.07956,1.07943,1.07954,622 +2020-02-19 06:00,1.07953,1.07953,1.07913,1.07934,497 +2020-02-19 06:15,1.07934,1.07954,1.07924,1.07954,632 +2020-02-19 06:30,1.07953,1.07968,1.07946,1.07966,593 +2020-02-19 06:45,1.07966,1.07987,1.07966,1.07981,414 +2020-02-19 07:00,1.07981,1.07984,1.07963,1.07974,1032 +2020-02-19 07:15,1.07974,1.08015,1.07965,1.08005,1065 +2020-02-19 07:30,1.08004,1.08024,1.07989,1.08022,908 +2020-02-19 07:45,1.08021,1.08045,1.08015,1.08018,1259 +2020-02-19 08:00,1.0802,1.08039,1.07964,1.07998,1770 +2020-02-19 08:15,1.07997,1.08053,1.07993,1.0804,1449 +2020-02-19 08:30,1.08039,1.08068,1.08023,1.08051,2227 +2020-02-19 08:45,1.08052,1.08071,1.08037,1.08038,1575 +2020-02-19 09:00,1.08038,1.08079,1.08032,1.08067,2202 +2020-02-19 09:15,1.08067,1.08077,1.08013,1.08022,1839 +2020-02-19 09:30,1.08022,1.08043,1.0801,1.08016,2016 +2020-02-19 09:45,1.08015,1.08036,1.07992,1.08031,1251 +2020-02-19 10:00,1.0803,1.08059,1.08024,1.08045,1441 +2020-02-19 10:15,1.08045,1.08047,1.07987,1.07996,1183 +2020-02-19 10:30,1.07997,1.08052,1.07992,1.08052,1365 +2020-02-19 10:45,1.08052,1.08052,1.07999,1.08005,1554 +2020-02-19 11:00,1.08005,1.08017,1.07945,1.07949,1523 +2020-02-19 11:15,1.07949,1.07955,1.07931,1.07941,1213 +2020-02-19 11:30,1.07941,1.07941,1.07846,1.07881,2487 +2020-02-19 11:45,1.0788,1.07931,1.0788,1.07915,1868 +2020-02-19 12:00,1.07915,1.07976,1.07907,1.07963,1891 +2020-02-19 12:15,1.07963,1.07994,1.07949,1.07991,1200 +2020-02-19 12:30,1.07991,1.07994,1.07962,1.07983,1145 +2020-02-19 12:45,1.07982,1.08036,1.07962,1.08008,1947 +2020-02-19 13:00,1.08008,1.0801,1.07961,1.07994,1779 +2020-02-19 13:15,1.07993,1.08011,1.07977,1.07992,1643 +2020-02-19 13:30,1.07992,1.07994,1.079,1.07918,3104 +2020-02-19 13:45,1.0792,1.07972,1.07913,1.07934,1884 +2020-02-19 14:00,1.07934,1.07937,1.07881,1.07911,2918 +2020-02-19 14:15,1.07911,1.07933,1.07894,1.0793,2266 +2020-02-19 14:30,1.0793,1.07935,1.07857,1.07895,3316 +2020-02-19 14:45,1.07895,1.07905,1.07834,1.0787,2408 +2020-02-19 15:00,1.07871,1.07946,1.07871,1.07891,2612 +2020-02-19 15:15,1.07891,1.079,1.07839,1.07842,2416 +2020-02-19 15:30,1.07842,1.07883,1.07822,1.07857,2452 +2020-02-19 15:45,1.07857,1.07948,1.07851,1.07912,2480 +2020-02-19 16:00,1.07912,1.07939,1.0787,1.07937,2757 +2020-02-19 16:15,1.07937,1.07977,1.07903,1.0796,1955 +2020-02-19 16:30,1.0796,1.07965,1.07889,1.07962,1888 +2020-02-19 16:45,1.07961,1.07987,1.07926,1.07933,1790 +2020-02-19 17:00,1.07932,1.07935,1.07869,1.07873,1366 +2020-02-19 17:15,1.07873,1.07931,1.0786,1.07922,1165 +2020-02-19 17:30,1.07926,1.07941,1.079,1.07941,972 +2020-02-19 17:45,1.07941,1.07958,1.07918,1.07918,880 +2020-02-19 18:00,1.07918,1.07931,1.07901,1.07923,721 +2020-02-19 18:15,1.07923,1.07939,1.07913,1.07926,497 +2020-02-19 18:30,1.07926,1.07937,1.07919,1.07932,544 +2020-02-19 18:45,1.07932,1.07986,1.07922,1.07983,583 +2020-02-19 19:00,1.07982,1.07984,1.07925,1.0795,1099 +2020-02-19 19:15,1.07949,1.07982,1.0793,1.07981,930 +2020-02-19 19:30,1.07982,1.08008,1.07974,1.08006,1114 +2020-02-19 19:45,1.08007,1.08007,1.07956,1.07963,1120 +2020-02-19 20:00,1.07963,1.08024,1.07956,1.08019,1010 +2020-02-19 20:15,1.08019,1.0806,1.08015,1.08039,839 +2020-02-19 20:30,1.08039,1.08058,1.08025,1.08058,567 +2020-02-19 20:45,1.08059,1.08101,1.08058,1.081,1009 +2020-02-19 21:00,1.08102,1.08115,1.08075,1.08096,623 +2020-02-19 21:15,1.08094,1.08115,1.08083,1.08093,392 +2020-02-19 21:30,1.08095,1.081,1.08073,1.08082,212 +2020-02-19 21:45,1.08083,1.08083,1.08022,1.08022,248 +2020-02-19 22:00,1.08022,1.08082,1.08022,1.08069,274 +2020-02-19 22:15,1.0807,1.08071,1.08059,1.08071,273 +2020-02-19 22:30,1.08071,1.08091,1.08061,1.0809,158 +2020-02-19 22:45,1.08089,1.0809,1.08057,1.08078,231 +2020-02-19 23:00,1.08078,1.08087,1.08069,1.08083,218 +2020-02-19 23:15,1.08082,1.08084,1.08078,1.08081,67 +2020-02-19 23:30,1.08082,1.08084,1.0807,1.08081,181 +2020-02-19 23:45,1.08082,1.08109,1.08081,1.08096,230 +2020-02-20 00:00,1.08095,1.08131,1.08045,1.08126,944 +2020-02-20 00:15,1.08126,1.08152,1.08113,1.08114,770 +2020-02-20 00:30,1.08113,1.08127,1.08087,1.08112,739 +2020-02-20 00:45,1.0811,1.0812,1.08094,1.08111,610 +2020-02-20 01:00,1.08112,1.08132,1.08091,1.08091,466 +2020-02-20 01:15,1.0809,1.08106,1.0805,1.0806,636 +2020-02-20 01:30,1.0806,1.08067,1.08003,1.0801,818 +2020-02-20 01:45,1.0801,1.08037,1.07976,1.08,845 +2020-02-20 02:00,1.08001,1.08021,1.0799,1.07996,582 +2020-02-20 02:15,1.07996,1.08001,1.07985,1.07998,438 +2020-02-20 02:30,1.07999,1.08009,1.0794,1.0797,1084 +2020-02-20 02:45,1.07969,1.07978,1.07924,1.07926,797 +2020-02-20 03:00,1.07927,1.07987,1.07916,1.07987,663 +2020-02-20 03:15,1.07986,1.08001,1.07962,1.07987,608 +2020-02-20 03:30,1.07986,1.07995,1.07956,1.07977,657 +2020-02-20 03:45,1.07976,1.07995,1.07966,1.07969,294 +2020-02-20 04:00,1.07971,1.07974,1.07959,1.07966,410 +2020-02-20 04:15,1.07966,1.07973,1.07962,1.0797,162 +2020-02-20 04:30,1.07972,1.0798,1.07966,1.07974,310 +2020-02-20 04:45,1.07973,1.07985,1.07962,1.07985,371 +2020-02-20 05:00,1.07987,1.0799,1.07975,1.07977,250 +2020-02-20 05:15,1.07976,1.07981,1.07958,1.07959,326 +2020-02-20 05:30,1.0796,1.07972,1.07959,1.0797,206 +2020-02-20 05:45,1.0797,1.07976,1.07958,1.07965,317 +2020-02-20 06:00,1.07967,1.07972,1.07956,1.07964,428 +2020-02-20 06:15,1.07963,1.07966,1.07927,1.07931,871 +2020-02-20 06:30,1.07931,1.07932,1.07902,1.07909,667 +2020-02-20 06:45,1.07908,1.07909,1.0787,1.07881,936 +2020-02-20 07:00,1.07883,1.07915,1.07876,1.07894,1233 +2020-02-20 07:15,1.07894,1.07895,1.07778,1.07855,2463 +2020-02-20 07:30,1.07853,1.07927,1.07838,1.07916,1390 +2020-02-20 07:45,1.07917,1.07925,1.07878,1.07905,1274 +2020-02-20 08:00,1.07906,1.07939,1.07889,1.079,1371 +2020-02-20 08:15,1.079,1.07915,1.07848,1.07915,1614 +2020-02-20 08:30,1.07915,1.07939,1.07899,1.07916,1105 +2020-02-20 08:45,1.07915,1.07979,1.07912,1.07968,1187 +2020-02-20 09:00,1.07968,1.07988,1.07939,1.07971,1286 +2020-02-20 09:15,1.0797,1.08053,1.07969,1.08044,1341 +2020-02-20 09:30,1.08043,1.08061,1.08021,1.08046,1335 +2020-02-20 09:45,1.08046,1.08053,1.07973,1.07997,1452 +2020-02-20 10:00,1.07996,1.08016,1.07928,1.07954,1666 +2020-02-20 10:15,1.07955,1.07955,1.07918,1.07923,1344 +2020-02-20 10:30,1.07924,1.0798,1.07921,1.07959,1325 +2020-02-20 10:45,1.07958,1.07977,1.07902,1.07923,1392 +2020-02-20 11:00,1.07923,1.07946,1.07909,1.07925,1306 +2020-02-20 11:15,1.07924,1.07924,1.07874,1.0792,1559 +2020-02-20 11:30,1.0792,1.07926,1.07902,1.07917,1398 +2020-02-20 11:45,1.07918,1.07974,1.07908,1.07963,1561 +2020-02-20 12:00,1.07964,1.07972,1.0793,1.07959,1515 +2020-02-20 12:15,1.0796,1.07971,1.07909,1.07912,1392 +2020-02-20 12:30,1.07913,1.07926,1.07858,1.07915,1711 +2020-02-20 12:45,1.07914,1.07923,1.07877,1.07881,1836 +2020-02-20 13:00,1.07881,1.0792,1.07877,1.07894,1415 +2020-02-20 13:15,1.07894,1.07962,1.07878,1.07957,1301 +2020-02-20 13:30,1.07958,1.07994,1.07894,1.07988,2161 +2020-02-20 13:45,1.07986,1.08049,1.07969,1.08045,2020 +2020-02-20 14:00,1.08044,1.08196,1.08036,1.08125,2757 +2020-02-20 14:15,1.08126,1.08147,1.08091,1.08146,1269 +2020-02-20 14:30,1.08146,1.08211,1.08127,1.08138,2349 +2020-02-20 14:45,1.08139,1.082,1.08138,1.08168,1744 +2020-02-20 15:00,1.08169,1.08197,1.08159,1.08178,1956 +2020-02-20 15:15,1.08176,1.08184,1.08103,1.0816,1860 +2020-02-20 15:30,1.0816,1.08163,1.08036,1.08036,2481 +2020-02-20 15:45,1.08036,1.08054,1.08003,1.08023,2685 +2020-02-20 16:00,1.08024,1.08075,1.08024,1.08059,2009 +2020-02-20 16:15,1.0806,1.08062,1.07829,1.07873,2847 +2020-02-20 16:30,1.07874,1.07926,1.07844,1.07909,2836 +2020-02-20 16:45,1.07909,1.07979,1.07893,1.07966,1969 +2020-02-20 17:00,1.07967,1.08022,1.07963,1.08004,1714 +2020-02-20 17:15,1.08006,1.08026,1.07995,1.08013,1379 +2020-02-20 17:30,1.08013,1.0802,1.07932,1.07981,1030 +2020-02-20 17:45,1.0798,1.07982,1.07928,1.0793,2774 +2020-02-20 18:00,1.0793,1.07948,1.07908,1.07921,2434 +2020-02-20 18:15,1.07921,1.07971,1.0792,1.0794,2341 +2020-02-20 18:30,1.07941,1.07946,1.07928,1.07934,1845 +2020-02-20 18:45,1.07935,1.07947,1.0793,1.07935,2150 +2020-02-20 19:00,1.07936,1.07944,1.07895,1.07909,1578 +2020-02-20 19:15,1.07909,1.07948,1.079,1.07944,2076 +2020-02-20 19:30,1.07945,1.07945,1.07883,1.07898,2584 +2020-02-20 19:45,1.07899,1.07904,1.07864,1.07894,2639 +2020-02-20 20:00,1.07895,1.07905,1.07868,1.07879,2971 +2020-02-20 20:15,1.0788,1.079,1.07848,1.07867,4079 +2020-02-20 20:30,1.07868,1.07881,1.07864,1.07874,3800 +2020-02-20 20:45,1.07875,1.07898,1.07862,1.07896,4398 +2020-02-20 21:00,1.07896,1.07896,1.07872,1.07885,3525 +2020-02-20 21:15,1.07886,1.07888,1.0785,1.07855,2607 +2020-02-20 21:30,1.07856,1.07862,1.0785,1.0786,3076 +2020-02-20 21:45,1.0786,1.07865,1.07828,1.07838,7269 +2020-02-20 22:00,1.07843,1.07854,1.07843,1.0785,933 +2020-02-20 22:15,1.0785,1.07862,1.07845,1.07856,3423 +2020-02-20 22:30,1.07856,1.07883,1.07856,1.07874,1818 +2020-02-20 22:45,1.07874,1.07878,1.07855,1.07868,651 +2020-02-20 23:00,1.07866,1.07876,1.07849,1.07875,933 +2020-02-20 23:15,1.07876,1.07885,1.07875,1.0788,462 +2020-02-20 23:30,1.0788,1.07891,1.07875,1.07881,1664 +2020-02-20 23:45,1.07881,1.07887,1.07874,1.07875,2953 +2020-02-21 00:00,1.07875,1.07912,1.07872,1.07911,4497 +2020-02-21 00:15,1.07911,1.07916,1.07874,1.07881,4887 +2020-02-21 00:30,1.07883,1.07902,1.07871,1.07892,546 +2020-02-21 00:45,1.07893,1.07905,1.07877,1.07902,627 +2020-02-21 01:00,1.07902,1.07922,1.07896,1.07915,689 +2020-02-21 01:15,1.07916,1.07932,1.07911,1.07923,571 +2020-02-21 01:30,1.07923,1.07935,1.07921,1.07923,644 +2020-02-21 01:45,1.07923,1.07936,1.07916,1.07927,821 +2020-02-21 02:00,1.07927,1.07935,1.07893,1.07894,851 +2020-02-21 02:15,1.07895,1.07927,1.07884,1.07884,971 +2020-02-21 02:30,1.07883,1.07906,1.07878,1.07881,1227 +2020-02-21 02:45,1.0788,1.079,1.07876,1.07897,508 +2020-02-21 03:00,1.07897,1.07923,1.07892,1.07916,630 +2020-02-21 03:15,1.07916,1.07917,1.0789,1.07897,636 +2020-02-21 03:30,1.07899,1.07907,1.07894,1.07904,446 +2020-02-21 03:45,1.07904,1.07906,1.07892,1.07902,462 +2020-02-21 04:00,1.07902,1.07935,1.07892,1.07911,719 +2020-02-21 04:15,1.07911,1.07925,1.07907,1.07925,544 +2020-02-21 04:30,1.07924,1.07933,1.07915,1.07933,457 +2020-02-21 04:45,1.07932,1.07948,1.0793,1.07946,584 +2020-02-21 05:00,1.07946,1.07947,1.07934,1.07943,507 +2020-02-21 05:15,1.07942,1.07946,1.07929,1.07936,276 +2020-02-21 05:30,1.07935,1.0794,1.07919,1.07925,442 +2020-02-21 05:45,1.07926,1.07937,1.0792,1.0793,317 +2020-02-21 06:00,1.07929,1.07946,1.0792,1.07941,547 +2020-02-21 06:15,1.07941,1.07941,1.07913,1.07914,557 +2020-02-21 06:30,1.07915,1.07925,1.07912,1.07918,403 +2020-02-21 06:45,1.07917,1.07919,1.07894,1.07903,639 +2020-02-21 07:00,1.07903,1.07939,1.07898,1.07927,2313 +2020-02-21 07:15,1.07927,1.07969,1.07926,1.07958,6171 +2020-02-21 07:30,1.07958,1.07971,1.07925,1.07955,7629 +2020-02-21 07:45,1.07956,1.07985,1.0795,1.07961,8973 +2020-02-21 08:00,1.0796,1.07969,1.07902,1.07952,14072 +2020-02-21 08:15,1.07953,1.0805,1.07953,1.08001,12488 +2020-02-21 08:30,1.08007,1.082,1.08007,1.08104,11256 +2020-02-21 08:45,1.08104,1.08159,1.0809,1.08141,8221 +2020-02-21 09:00,1.08141,1.08196,1.08139,1.08157,2960 +2020-02-21 09:15,1.08158,1.0817,1.08125,1.08156,2325 +2020-02-21 09:30,1.08155,1.08179,1.08135,1.08154,2248 +2020-02-21 09:45,1.08154,1.08159,1.08092,1.08097,1687 +2020-02-21 10:00,1.08098,1.08106,1.08016,1.08017,2202 +2020-02-21 10:15,1.08017,1.08025,1.07961,1.08013,1933 +2020-02-21 10:30,1.08013,1.08047,1.08012,1.08027,1326 +2020-02-21 10:45,1.08027,1.08039,1.07978,1.07997,1527 +2020-02-21 11:00,1.07997,1.08012,1.07953,1.07992,1634 +2020-02-21 11:15,1.07991,1.08054,1.07979,1.0804,1575 +2020-02-21 11:30,1.08041,1.08047,1.07999,1.08034,1588 +2020-02-21 11:45,1.08034,1.08066,1.0801,1.08061,2130 +2020-02-21 12:00,1.08061,1.08061,1.08005,1.08034,1944 +2020-02-21 12:15,1.08035,1.08056,1.08023,1.08023,1828 +2020-02-21 12:30,1.08024,1.08027,1.07992,1.07995,1434 +2020-02-21 12:45,1.07996,1.08031,1.07962,1.07966,2408 +2020-02-21 13:00,1.07965,1.08026,1.07965,1.08008,2015 +2020-02-21 13:15,1.08009,1.08023,1.0797,1.0801,2067 +2020-02-21 13:30,1.08012,1.08092,1.08005,1.08079,1930 +2020-02-21 13:45,1.08078,1.08123,1.08058,1.08092,2007 +2020-02-21 14:00,1.08092,1.08092,1.08011,1.08069,2127 +2020-02-21 14:15,1.08067,1.08096,1.08048,1.08079,1931 +2020-02-21 14:30,1.08078,1.08178,1.08076,1.08147,3177 +2020-02-21 14:45,1.0815,1.08459,1.0815,1.08371,6388 +2020-02-21 15:00,1.0837,1.08546,1.0837,1.08542,4253 +2020-02-21 15:15,1.08541,1.08589,1.08517,1.08578,4327 +2020-02-21 15:30,1.08577,1.08613,1.08513,1.08596,3799 +2020-02-21 15:45,1.08592,1.08634,1.08468,1.08526,3654 +2020-02-21 16:00,1.08526,1.08601,1.08506,1.08598,2658 +2020-02-21 16:15,1.08597,1.08635,1.08548,1.08555,2110 +2020-02-21 16:30,1.08555,1.08568,1.08487,1.08488,1775 +2020-02-21 16:45,1.0849,1.08562,1.08487,1.08543,1382 +2020-02-21 17:00,1.08542,1.08589,1.08538,1.08589,1212 +2020-02-21 17:15,1.08591,1.08599,1.08579,1.08588,938 +2020-02-21 17:30,1.08588,1.08601,1.08583,1.08587,619 +2020-02-21 17:45,1.08588,1.08608,1.08538,1.08574,1125 +2020-02-21 18:00,1.08574,1.08599,1.08541,1.08594,1022 +2020-02-21 18:15,1.08595,1.08616,1.0856,1.08562,821 +2020-02-21 18:30,1.08563,1.08582,1.08562,1.08569,714 +2020-02-21 18:45,1.08569,1.08591,1.08555,1.08562,766 +2020-02-21 19:00,1.08564,1.08566,1.08527,1.08549,682 +2020-02-21 19:15,1.08548,1.0858,1.08535,1.08561,1249 +2020-02-21 19:30,1.08561,1.08561,1.08536,1.0855,814 +2020-02-21 19:45,1.0855,1.08578,1.08548,1.08578,803 +2020-02-21 20:00,1.08576,1.08576,1.08528,1.08543,564 +2020-02-21 20:15,1.08545,1.08558,1.08522,1.08531,666 +2020-02-21 20:30,1.08531,1.08532,1.085,1.08508,585 +2020-02-21 20:45,1.08509,1.0851,1.08475,1.08491,708 +2020-02-21 21:00,1.08489,1.08496,1.08479,1.08486,403 +2020-02-21 21:15,1.08485,1.08491,1.08476,1.08488,449 +2020-02-21 21:30,1.08489,1.08489,1.08478,1.08483,280 +2020-02-21 21:45,1.08482,1.08502,1.08456,1.08456,757 +2020-02-23 22:00,1.08145,1.0829,1.08132,1.08264,1465 +2020-02-23 22:15,1.08264,1.08317,1.08261,1.0831,603 +2020-02-23 22:30,1.0831,1.08329,1.08307,1.08316,481 +2020-02-23 22:45,1.08319,1.08345,1.08279,1.08296,660 +2020-02-23 23:00,1.08297,1.08419,1.08295,1.08404,1519 +2020-02-23 23:15,1.08402,1.08407,1.08359,1.08359,1385 +2020-02-23 23:30,1.0836,1.08386,1.08335,1.08386,938 +2020-02-23 23:45,1.08386,1.08398,1.08366,1.08384,644 +2020-02-24 00:00,1.08385,1.08409,1.08376,1.08381,1225 +2020-02-24 00:15,1.08382,1.08423,1.08381,1.08422,1297 +2020-02-24 00:30,1.08422,1.08422,1.08306,1.08307,1228 +2020-02-24 00:45,1.08306,1.08328,1.08286,1.08312,1272 +2020-02-24 01:00,1.08313,1.08321,1.08261,1.08265,1502 +2020-02-24 01:15,1.08264,1.08275,1.08244,1.08254,929 +2020-02-24 01:30,1.08254,1.08273,1.08246,1.08266,902 +2020-02-24 01:45,1.08266,1.08294,1.0826,1.08281,1010 +2020-02-24 02:00,1.08282,1.08297,1.08271,1.08293,775 +2020-02-24 02:15,1.08293,1.08298,1.08275,1.08275,561 +2020-02-24 02:30,1.08276,1.08287,1.08251,1.08271,761 +2020-02-24 02:45,1.08271,1.08282,1.08226,1.08226,982 +2020-02-24 03:00,1.08228,1.08243,1.08221,1.08228,976 +2020-02-24 03:15,1.08228,1.08238,1.08219,1.08233,668 +2020-02-24 03:30,1.08233,1.08241,1.08226,1.08241,790 +2020-02-24 03:45,1.08239,1.08241,1.08215,1.08221,628 +2020-02-24 04:00,1.0822,1.08226,1.08211,1.08221,541 +2020-02-24 04:15,1.0822,1.08224,1.0821,1.08211,384 +2020-02-24 04:30,1.0821,1.08214,1.08201,1.08201,404 +2020-02-24 04:45,1.08201,1.08214,1.0819,1.08211,434 +2020-02-24 05:00,1.0821,1.08218,1.08203,1.08206,631 +2020-02-24 05:15,1.08206,1.08217,1.08178,1.08184,334 +2020-02-24 05:30,1.08184,1.08213,1.08184,1.082,472 +2020-02-24 05:45,1.082,1.08201,1.08147,1.08149,749 +2020-02-24 06:00,1.08149,1.08194,1.08149,1.08189,932 +2020-02-24 06:15,1.08189,1.08196,1.08173,1.08189,723 +2020-02-24 06:30,1.08188,1.08206,1.08168,1.08187,684 +2020-02-24 06:45,1.08187,1.08195,1.08155,1.08163,1056 +2020-02-24 07:00,1.08165,1.08195,1.0805,1.08103,3513 +2020-02-24 07:15,1.08103,1.08161,1.08093,1.08153,2226 +2020-02-24 07:30,1.08153,1.08174,1.08129,1.0814,1969 +2020-02-24 07:45,1.08139,1.08171,1.08119,1.08171,2251 +2020-02-24 08:00,1.08171,1.08283,1.08153,1.08225,3416 +2020-02-24 08:15,1.08224,1.08284,1.08213,1.0828,2828 +2020-02-24 08:30,1.08279,1.08283,1.082,1.08236,3337 +2020-02-24 08:45,1.08235,1.08283,1.08169,1.08265,2873 +2020-02-24 09:00,1.0827,1.08418,1.08261,1.08315,3937 +2020-02-24 09:15,1.08314,1.08315,1.08197,1.08214,3027 +2020-02-24 09:30,1.08214,1.08264,1.08208,1.08216,2782 +2020-02-24 09:45,1.08216,1.08221,1.08138,1.08156,3834 +2020-02-24 10:00,1.08156,1.08258,1.08152,1.08224,2719 +2020-02-24 10:15,1.08222,1.08233,1.08142,1.08146,2131 +2020-02-24 10:30,1.08146,1.08184,1.08129,1.08144,1937 +2020-02-24 10:45,1.08143,1.08191,1.0814,1.08158,2111 +2020-02-24 11:00,1.08157,1.08225,1.08135,1.08198,2323 +2020-02-24 11:15,1.08197,1.08232,1.08181,1.0822,2098 +2020-02-24 11:30,1.08221,1.08252,1.08208,1.08228,2168 +2020-02-24 11:45,1.08229,1.08245,1.08194,1.08207,1727 +2020-02-24 12:00,1.08208,1.08224,1.08166,1.08224,2522 +2020-02-24 12:15,1.08223,1.08281,1.08212,1.08273,2303 +2020-02-24 12:30,1.08274,1.08274,1.08198,1.08219,2483 +2020-02-24 12:45,1.08217,1.08229,1.08161,1.08182,3023 +2020-02-24 13:00,1.08182,1.08213,1.08148,1.08181,3290 +2020-02-24 13:15,1.08182,1.08221,1.08177,1.08212,2508 +2020-02-24 13:30,1.08212,1.08213,1.08156,1.08161,1972 +2020-02-24 13:45,1.08161,1.08163,1.0813,1.08146,1927 +2020-02-24 14:00,1.08146,1.08246,1.0814,1.08221,3116 +2020-02-24 14:15,1.08221,1.08371,1.08216,1.08338,3974 +2020-02-24 14:30,1.08337,1.08383,1.08271,1.08359,4665 +2020-02-24 14:45,1.08358,1.08526,1.08355,1.0849,4575 +2020-02-24 15:00,1.08492,1.08583,1.08462,1.08529,4599 +2020-02-24 15:15,1.08528,1.08579,1.08511,1.08577,3289 +2020-02-24 15:30,1.08578,1.08598,1.08499,1.08513,4193 +2020-02-24 15:45,1.08514,1.08608,1.08494,1.08558,4502 +2020-02-24 16:00,1.08559,1.08637,1.08458,1.08494,3596 +2020-02-24 16:15,1.08495,1.08607,1.08492,1.08606,2565 +2020-02-24 16:30,1.08605,1.08627,1.08546,1.08585,2876 +2020-02-24 16:45,1.08585,1.08596,1.08522,1.08559,2160 +2020-02-24 17:00,1.08561,1.08632,1.0853,1.08622,2575 +2020-02-24 17:15,1.08622,1.08683,1.08593,1.08616,2506 +2020-02-24 17:30,1.08618,1.08665,1.086,1.08639,2248 +2020-02-24 17:45,1.08638,1.08718,1.08631,1.08707,1684 +2020-02-24 18:00,1.08708,1.0872,1.08685,1.08706,1456 +2020-02-24 18:15,1.08706,1.08712,1.08671,1.0868,1367 +2020-02-24 18:30,1.0868,1.08685,1.08645,1.08646,847 +2020-02-24 18:45,1.08645,1.08653,1.08608,1.08638,801 +2020-02-24 19:00,1.08638,1.0864,1.0857,1.08593,1380 +2020-02-24 19:15,1.08594,1.08615,1.08521,1.08542,1743 +2020-02-24 19:30,1.08541,1.08544,1.08466,1.08486,1431 +2020-02-24 19:45,1.08487,1.08489,1.08414,1.08431,1853 +2020-02-24 20:00,1.08431,1.08478,1.08414,1.08475,1325 +2020-02-24 20:15,1.08476,1.08499,1.08471,1.08488,1444 +2020-02-24 20:30,1.08488,1.08556,1.08481,1.08545,1619 +2020-02-24 20:45,1.08545,1.08569,1.08519,1.08522,1847 +2020-02-24 21:00,1.08523,1.08556,1.08511,1.08552,818 +2020-02-24 21:15,1.08551,1.08554,1.0852,1.08524,488 +2020-02-24 21:30,1.08526,1.08536,1.08501,1.08523,478 +2020-02-24 21:45,1.08522,1.08553,1.08512,1.08519,381 +2020-02-24 22:00,1.08519,1.0853,1.08516,1.0853,599 +2020-02-24 22:15,1.0853,1.08545,1.08511,1.08538,690 +2020-02-24 22:30,1.08537,1.08557,1.08508,1.08539,575 +2020-02-24 22:45,1.08541,1.08555,1.08502,1.08518,769 +2020-02-24 23:00,1.08517,1.08539,1.08494,1.08498,554 +2020-02-24 23:15,1.08499,1.08515,1.0849,1.085,833 +2020-02-24 23:30,1.085,1.08536,1.085,1.08522,807 +2020-02-24 23:45,1.08522,1.08524,1.08483,1.08485,1045 +2020-02-25 00:00,1.08485,1.08523,1.08481,1.08517,1925 +2020-02-25 00:15,1.08516,1.08529,1.08511,1.08516,887 +2020-02-25 00:30,1.08517,1.08527,1.08509,1.08519,666 +2020-02-25 00:45,1.08519,1.08528,1.08506,1.08517,744 +2020-02-25 01:00,1.08517,1.08519,1.0845,1.08484,1673 +2020-02-25 01:15,1.08485,1.08577,1.08478,1.08563,1519 +2020-02-25 01:30,1.08564,1.08597,1.08563,1.08574,1480 +2020-02-25 01:45,1.08574,1.08597,1.08564,1.08584,1180 +2020-02-25 02:00,1.08585,1.08631,1.08582,1.08604,1379 +2020-02-25 02:15,1.08604,1.08614,1.08584,1.08591,742 +2020-02-25 02:30,1.08592,1.08616,1.08592,1.08608,976 +2020-02-25 02:45,1.08609,1.08646,1.08596,1.08634,1285 +2020-02-25 03:00,1.08633,1.08647,1.08627,1.08635,1019 +2020-02-25 03:15,1.08634,1.08665,1.0863,1.08661,987 +2020-02-25 03:30,1.08661,1.08675,1.0865,1.08653,680 +2020-02-25 03:45,1.08654,1.08661,1.08628,1.08628,555 +2020-02-25 04:00,1.08628,1.08628,1.08608,1.08623,522 +2020-02-25 04:15,1.08623,1.08628,1.08607,1.08609,427 +2020-02-25 04:30,1.08608,1.08626,1.08603,1.08625,485 +2020-02-25 04:45,1.08626,1.08627,1.08605,1.08608,377 +2020-02-25 05:00,1.08608,1.08608,1.08593,1.08596,267 +2020-02-25 05:15,1.08596,1.08597,1.08552,1.08552,682 +2020-02-25 05:30,1.08552,1.08557,1.0852,1.08527,951 +2020-02-25 05:45,1.08527,1.08535,1.08507,1.0851,673 +2020-02-25 06:00,1.0851,1.08522,1.08493,1.08516,1105 +2020-02-25 06:15,1.08516,1.0855,1.08505,1.0855,1468 +2020-02-25 06:30,1.0855,1.08575,1.08528,1.08536,1310 +2020-02-25 06:45,1.08536,1.08555,1.08501,1.08518,1438 +2020-02-25 07:00,1.08521,1.08527,1.08475,1.08507,2017 +2020-02-25 07:15,1.08507,1.08552,1.08498,1.08538,1852 +2020-02-25 07:30,1.08537,1.08567,1.08478,1.08561,2517 +2020-02-25 07:45,1.08562,1.08589,1.08523,1.08533,2262 +2020-02-25 08:00,1.08535,1.0856,1.08501,1.08546,2896 +2020-02-25 08:15,1.08546,1.08646,1.08539,1.08636,2553 +2020-02-25 08:30,1.08636,1.08658,1.08607,1.08631,2751 +2020-02-25 08:45,1.08632,1.08659,1.08625,1.08634,3014 +2020-02-25 09:00,1.08636,1.08659,1.08591,1.08598,3209 +2020-02-25 09:15,1.08597,1.08649,1.08552,1.08575,2863 +2020-02-25 09:30,1.08574,1.08606,1.08522,1.0854,2432 +2020-02-25 09:45,1.0854,1.08542,1.08486,1.08505,2681 +2020-02-25 10:00,1.08504,1.08505,1.0842,1.08437,2869 +2020-02-25 10:15,1.08436,1.08457,1.08382,1.08382,2725 +2020-02-25 10:30,1.08383,1.08403,1.08348,1.08384,2638 +2020-02-25 10:45,1.08384,1.08396,1.08355,1.0838,2268 +2020-02-25 11:00,1.0838,1.08406,1.0834,1.08347,2452 +2020-02-25 11:15,1.08348,1.08348,1.08317,1.08319,2115 +2020-02-25 11:30,1.08319,1.0834,1.083,1.08329,2648 +2020-02-25 11:45,1.08328,1.08382,1.08325,1.08366,2507 +2020-02-25 12:00,1.08367,1.08379,1.08313,1.08359,2223 +2020-02-25 12:15,1.08358,1.08377,1.08341,1.08351,2913 +2020-02-25 12:30,1.0835,1.08382,1.08342,1.08378,2176 +2020-02-25 12:45,1.08378,1.08382,1.083,1.08361,2599 +2020-02-25 13:00,1.08362,1.08407,1.08357,1.08398,2613 +2020-02-25 13:15,1.08398,1.08473,1.08392,1.0847,2500 +2020-02-25 13:30,1.08469,1.08496,1.08424,1.08443,2683 +2020-02-25 13:45,1.08444,1.08448,1.0839,1.08408,2791 +2020-02-25 14:00,1.08408,1.08457,1.08346,1.08418,3108 +2020-02-25 14:15,1.08418,1.08438,1.08387,1.08423,2757 +2020-02-25 14:30,1.08424,1.08458,1.0839,1.08437,4501 +2020-02-25 14:45,1.08439,1.08448,1.08319,1.08359,4332 +2020-02-25 15:00,1.08361,1.08421,1.08334,1.08376,4630 +2020-02-25 15:15,1.08376,1.08538,1.08353,1.08483,4582 +2020-02-25 15:30,1.08482,1.08556,1.08457,1.08503,4247 +2020-02-25 15:45,1.08503,1.08666,1.08497,1.08647,5517 +2020-02-25 16:00,1.08648,1.08716,1.08624,1.08694,4643 +2020-02-25 16:15,1.08694,1.08825,1.08691,1.0879,3282 +2020-02-25 16:30,1.0879,1.08825,1.08764,1.08823,2508 +2020-02-25 16:45,1.08823,1.08823,1.08635,1.08681,2381 +2020-02-25 17:00,1.08682,1.08739,1.08664,1.08721,2479 +2020-02-25 17:15,1.08721,1.08766,1.08711,1.08757,1954 +2020-02-25 17:30,1.08758,1.08777,1.08714,1.08776,1471 +2020-02-25 17:45,1.08776,1.08826,1.08763,1.08826,1871 +2020-02-25 18:00,1.08827,1.08827,1.08756,1.0876,2151 +2020-02-25 18:15,1.08762,1.08807,1.08739,1.0876,1658 +2020-02-25 18:30,1.08761,1.08771,1.08719,1.0875,1539 +2020-02-25 18:45,1.08751,1.08785,1.08743,1.08768,1555 +2020-02-25 19:00,1.08769,1.08821,1.08731,1.08791,2640 +2020-02-25 19:15,1.0879,1.0882,1.08779,1.08809,2215 +2020-02-25 19:30,1.08809,1.08902,1.08805,1.0884,2433 +2020-02-25 19:45,1.0884,1.0886,1.08793,1.08815,2155 +2020-02-25 20:00,1.08814,1.08814,1.08754,1.08807,2723 +2020-02-25 20:15,1.08806,1.08856,1.08784,1.08839,1582 +2020-02-25 20:30,1.08838,1.08863,1.08811,1.08829,1552 +2020-02-25 20:45,1.08829,1.08836,1.08799,1.08823,2167 +2020-02-25 21:00,1.08823,1.08857,1.0882,1.08832,1095 +2020-02-25 21:15,1.0883,1.0886,1.08809,1.08855,529 +2020-02-25 21:30,1.08854,1.08863,1.08833,1.08837,440 +2020-02-25 21:45,1.08836,1.08836,1.08798,1.08806,315 +2020-02-25 22:00,1.08806,1.0881,1.08769,1.08793,244 +2020-02-25 22:15,1.08793,1.08829,1.08793,1.08809,497 +2020-02-25 22:30,1.0881,1.08817,1.08797,1.08799,465 +2020-02-25 22:45,1.08799,1.08818,1.0878,1.08809,219 +2020-02-25 23:00,1.08809,1.0881,1.08772,1.08793,416 +2020-02-25 23:15,1.08792,1.08794,1.08767,1.08777,414 +2020-02-25 23:30,1.08777,1.0879,1.08766,1.08777,418 +2020-02-25 23:45,1.0878,1.08797,1.08777,1.08797,379 +2020-02-26 00:00,1.08796,1.08796,1.08755,1.08762,812 +2020-02-26 00:15,1.08762,1.08775,1.08673,1.08675,1014 +2020-02-26 00:30,1.08675,1.08711,1.08673,1.08689,1039 +2020-02-26 00:45,1.08688,1.08701,1.08681,1.08697,643 +2020-02-26 01:00,1.08697,1.08727,1.08691,1.08726,1488 +2020-02-26 01:15,1.08726,1.08746,1.08715,1.08738,1126 +2020-02-26 01:30,1.08736,1.08741,1.08711,1.08718,1065 +2020-02-26 01:45,1.08718,1.08738,1.08715,1.08737,1021 +2020-02-26 02:00,1.08738,1.08741,1.087,1.087,1206 +2020-02-26 02:15,1.08698,1.08716,1.0869,1.08695,1287 +2020-02-26 02:30,1.08697,1.08703,1.08624,1.08651,1858 +2020-02-26 02:45,1.08652,1.08684,1.08641,1.08682,1017 +2020-02-26 03:00,1.08682,1.08703,1.08672,1.08683,1162 +2020-02-26 03:15,1.08684,1.08691,1.08655,1.08655,912 +2020-02-26 03:30,1.08654,1.08667,1.0865,1.0866,781 +2020-02-26 03:45,1.0866,1.08676,1.0865,1.08665,711 +2020-02-26 04:00,1.08665,1.08689,1.08657,1.08684,765 +2020-02-26 04:15,1.08683,1.08683,1.0866,1.08671,676 +2020-02-26 04:30,1.08672,1.08677,1.08659,1.08669,1125 +2020-02-26 04:45,1.08669,1.08682,1.08658,1.08674,615 +2020-02-26 05:00,1.08673,1.08712,1.08673,1.08708,940 +2020-02-26 05:15,1.08708,1.08741,1.08695,1.08733,860 +2020-02-26 05:30,1.08732,1.08771,1.08723,1.08755,1164 +2020-02-26 05:45,1.08754,1.08783,1.08747,1.08759,1395 +2020-02-26 06:00,1.08761,1.08775,1.08728,1.08744,1269 +2020-02-26 06:15,1.08744,1.08761,1.08715,1.08745,2132 +2020-02-26 06:30,1.08746,1.08746,1.08705,1.08708,1191 +2020-02-26 06:45,1.08708,1.08745,1.08703,1.08745,1241 +2020-02-26 07:00,1.08746,1.08751,1.08679,1.08701,2126 +2020-02-26 07:15,1.08703,1.08721,1.08654,1.08663,2272 +2020-02-26 07:30,1.08663,1.08746,1.08658,1.08739,2225 +2020-02-26 07:45,1.0874,1.08756,1.08696,1.0871,2905 +2020-02-26 08:00,1.0871,1.08806,1.0871,1.08797,3707 +2020-02-26 08:15,1.08796,1.08816,1.08777,1.08814,2307 +2020-02-26 08:30,1.08814,1.08843,1.08801,1.08841,2415 +2020-02-26 08:45,1.08841,1.08976,1.08841,1.08918,3846 +2020-02-26 09:00,1.08918,1.08967,1.08894,1.08908,3183 +2020-02-26 09:15,1.08908,1.0894,1.08849,1.0887,3447 +2020-02-26 09:30,1.0887,1.08932,1.08844,1.08878,3451 +2020-02-26 09:45,1.08878,1.08961,1.08844,1.0889,2808 +2020-02-26 10:00,1.08889,1.089,1.08771,1.08791,3062 +2020-02-26 10:15,1.0879,1.08801,1.08742,1.08743,2966 +2020-02-26 10:30,1.08743,1.08799,1.0873,1.08787,2504 +2020-02-26 10:45,1.08788,1.08868,1.08759,1.08865,2366 +2020-02-26 11:00,1.08865,1.08896,1.08822,1.08849,2667 +2020-02-26 11:15,1.08848,1.0886,1.08805,1.08814,2471 +2020-02-26 11:30,1.08813,1.08815,1.08734,1.0874,2141 +2020-02-26 11:45,1.08741,1.08857,1.08741,1.08844,2280 +2020-02-26 12:00,1.08844,1.09086,1.08844,1.08945,4961 +2020-02-26 12:15,1.08944,1.08952,1.08864,1.08921,3586 +2020-02-26 12:30,1.08919,1.0892,1.08762,1.08777,2686 +2020-02-26 12:45,1.08777,1.08852,1.08687,1.08691,4301 +2020-02-26 13:00,1.08692,1.0875,1.08657,1.08743,3544 +2020-02-26 13:15,1.08743,1.08755,1.08661,1.08728,3780 +2020-02-26 13:30,1.08729,1.08754,1.08675,1.08694,3097 +2020-02-26 13:45,1.08694,1.08702,1.08562,1.08654,4284 +2020-02-26 14:00,1.08656,1.08744,1.08652,1.08733,3166 +2020-02-26 14:15,1.08733,1.08747,1.0862,1.08643,3601 +2020-02-26 14:30,1.08642,1.0865,1.08549,1.08612,5322 +2020-02-26 14:45,1.08609,1.08609,1.08558,1.08597,3545 +2020-02-26 15:00,1.08597,1.08677,1.08571,1.08643,3053 +2020-02-26 15:15,1.08644,1.08738,1.08601,1.08731,3371 +2020-02-26 15:30,1.08731,1.08753,1.0863,1.0864,3139 +2020-02-26 15:45,1.0864,1.08733,1.0864,1.08666,3076 +2020-02-26 16:00,1.08666,1.08795,1.0864,1.08741,3938 +2020-02-26 16:15,1.08742,1.08904,1.08727,1.08894,3375 +2020-02-26 16:30,1.08895,1.08911,1.08836,1.08872,2547 +2020-02-26 16:45,1.08871,1.08915,1.08831,1.08864,1536 +2020-02-26 17:00,1.08863,1.08918,1.08835,1.08902,2143 +2020-02-26 17:15,1.08901,1.08942,1.08849,1.08859,1981 +2020-02-26 17:30,1.08858,1.08859,1.08817,1.0883,1300 +2020-02-26 17:45,1.0883,1.08832,1.08781,1.08786,1713 +2020-02-26 18:00,1.08786,1.08815,1.08751,1.08761,1580 +2020-02-26 18:15,1.08762,1.08792,1.08756,1.08779,1048 +2020-02-26 18:30,1.08779,1.08902,1.08777,1.08891,2312 +2020-02-26 18:45,1.08891,1.08906,1.08747,1.08814,2761 +2020-02-26 19:00,1.08816,1.08883,1.08795,1.0885,2010 +2020-02-26 19:15,1.0885,1.0891,1.08836,1.08905,1835 +2020-02-26 19:30,1.08905,1.08996,1.08898,1.08993,1944 +2020-02-26 19:45,1.08993,1.08998,1.0897,1.08995,1760 +2020-02-26 20:00,1.08994,1.08994,1.08888,1.08909,1241 +2020-02-26 20:15,1.08909,1.08909,1.08872,1.08883,1439 +2020-02-26 20:30,1.08884,1.0889,1.08849,1.08851,1084 +2020-02-26 20:45,1.08851,1.08872,1.08831,1.08846,1592 +2020-02-26 21:00,1.08846,1.08856,1.08807,1.08852,674 +2020-02-26 21:15,1.08851,1.08852,1.08835,1.08836,264 +2020-02-26 21:30,1.08836,1.0884,1.08796,1.08804,485 +2020-02-26 21:45,1.08804,1.08813,1.08768,1.08813,580 +2020-02-26 22:00,1.08812,1.08841,1.08769,1.08805,241 +2020-02-26 22:15,1.08809,1.0886,1.08806,1.08826,223 +2020-02-26 22:30,1.08826,1.08845,1.08812,1.0883,134 +2020-02-26 22:45,1.08831,1.08832,1.0881,1.08823,226 +2020-02-26 23:00,1.08824,1.0883,1.08795,1.08805,755 +2020-02-26 23:15,1.08805,1.08818,1.08805,1.08816,305 +2020-02-26 23:30,1.08815,1.08835,1.08797,1.08831,328 +2020-02-26 23:45,1.08831,1.08864,1.08806,1.08864,697 +2020-02-27 00:00,1.08865,1.0913,1.08848,1.09031,3163 +2020-02-27 00:15,1.09031,1.09062,1.09,1.09014,1433 +2020-02-27 00:30,1.09013,1.09045,1.08999,1.09007,1124 +2020-02-27 00:45,1.09006,1.09028,1.08976,1.08979,1494 +2020-02-27 01:00,1.0898,1.09009,1.0896,1.08974,1715 +2020-02-27 01:15,1.08975,1.08977,1.08952,1.08963,1266 +2020-02-27 01:30,1.08963,1.09006,1.08961,1.08992,1800 +2020-02-27 01:45,1.08993,1.09016,1.08974,1.09011,1143 +2020-02-27 02:00,1.09011,1.09067,1.0901,1.09038,1188 +2020-02-27 02:15,1.09037,1.09083,1.09032,1.09072,1022 +2020-02-27 02:30,1.09073,1.09114,1.09066,1.09109,1290 +2020-02-27 02:45,1.09109,1.09144,1.09096,1.09103,1629 +2020-02-27 03:00,1.09103,1.09103,1.0907,1.09078,1094 +2020-02-27 03:15,1.09078,1.09085,1.09051,1.09062,790 +2020-02-27 03:30,1.09061,1.09085,1.09059,1.0906,790 +2020-02-27 03:45,1.09061,1.09063,1.09041,1.09053,831 +2020-02-27 04:00,1.09052,1.09055,1.09032,1.09045,521 +2020-02-27 04:15,1.09046,1.09059,1.0904,1.09055,674 +2020-02-27 04:30,1.09057,1.09066,1.09046,1.09063,717 +2020-02-27 04:45,1.09063,1.09134,1.09063,1.09125,978 +2020-02-27 05:00,1.09124,1.09127,1.09088,1.09097,1956 +2020-02-27 05:15,1.09098,1.09105,1.09062,1.09084,991 +2020-02-27 05:30,1.09084,1.09147,1.09081,1.09144,890 +2020-02-27 05:45,1.09144,1.09145,1.09071,1.09075,1066 +2020-02-27 06:00,1.09074,1.09088,1.09059,1.09069,1294 +2020-02-27 06:15,1.09069,1.09105,1.09058,1.09095,1105 +2020-02-27 06:30,1.09095,1.09168,1.09089,1.09156,1782 +2020-02-27 06:45,1.09156,1.09178,1.09104,1.09109,1609 +2020-02-27 07:00,1.09109,1.09175,1.09082,1.09169,2645 +2020-02-27 07:15,1.09168,1.09179,1.09133,1.09156,2797 +2020-02-27 07:30,1.09155,1.09155,1.09121,1.09139,2690 +2020-02-27 07:45,1.09139,1.09221,1.09124,1.09213,2221 +2020-02-27 08:00,1.09213,1.09347,1.09188,1.09293,4381 +2020-02-27 08:15,1.09293,1.09384,1.09273,1.09375,4407 +2020-02-27 08:30,1.09375,1.09456,1.09351,1.0943,4761 +2020-02-27 08:45,1.09432,1.09478,1.09413,1.09478,3648 +2020-02-27 09:00,1.09476,1.09476,1.09356,1.09372,3700 +2020-02-27 09:15,1.0937,1.09399,1.09332,1.09341,2576 +2020-02-27 09:30,1.09341,1.09393,1.09319,1.09344,2802 +2020-02-27 09:45,1.09343,1.09368,1.09325,1.09352,2167 +2020-02-27 10:00,1.09352,1.09396,1.09327,1.09391,2616 +2020-02-27 10:15,1.09391,1.09443,1.0936,1.09392,2590 +2020-02-27 10:30,1.09391,1.09438,1.09367,1.09428,2070 +2020-02-27 10:45,1.09428,1.09443,1.09389,1.09397,2276 +2020-02-27 11:00,1.09397,1.09442,1.09362,1.09401,2439 +2020-02-27 11:15,1.09401,1.09401,1.09348,1.09362,2493 +2020-02-27 11:30,1.09363,1.09449,1.0935,1.09421,2580 +2020-02-27 11:45,1.0942,1.09481,1.09414,1.09452,3283 +2020-02-27 12:00,1.09452,1.09475,1.09418,1.0946,3173 +2020-02-27 12:15,1.09459,1.09478,1.09445,1.09477,2391 +2020-02-27 12:30,1.09475,1.09631,1.09463,1.09617,4076 +2020-02-27 12:45,1.09619,1.09677,1.09585,1.09642,4570 +2020-02-27 13:00,1.09643,1.09663,1.0961,1.09635,3625 +2020-02-27 13:15,1.09637,1.09665,1.09611,1.09634,3851 +2020-02-27 13:30,1.09634,1.09711,1.09589,1.09683,5058 +2020-02-27 13:45,1.09682,1.09776,1.09663,1.09765,3982 +2020-02-27 14:00,1.09766,1.09784,1.09631,1.09673,4936 +2020-02-27 14:15,1.09676,1.09784,1.09671,1.09744,4341 +2020-02-27 14:30,1.09744,1.09831,1.09694,1.09827,4941 +2020-02-27 14:45,1.09827,1.0985,1.09695,1.09767,4392 +2020-02-27 15:00,1.09767,1.09952,1.09726,1.09942,4926 +2020-02-27 15:15,1.09944,1.09991,1.09891,1.09968,4318 +2020-02-27 15:30,1.0997,1.10064,1.0995,1.10042,4744 +2020-02-27 15:45,1.10042,1.10042,1.0984,1.09843,5586 +2020-02-27 16:00,1.09841,1.09893,1.09731,1.09758,5785 +2020-02-27 16:15,1.09759,1.09812,1.09722,1.09792,3222 +2020-02-27 16:30,1.09792,1.09827,1.09705,1.09777,2719 +2020-02-27 16:45,1.09777,1.09832,1.09742,1.09756,2689 +2020-02-27 17:00,1.09757,1.09772,1.09651,1.09658,2308 +2020-02-27 17:15,1.09658,1.09727,1.09647,1.09712,2129 +2020-02-27 17:30,1.09711,1.09715,1.09649,1.09706,2007 +2020-02-27 17:45,1.09706,1.09797,1.09671,1.09796,1809 +2020-02-27 18:00,1.09795,1.09844,1.0978,1.09804,2022 +2020-02-27 18:15,1.09804,1.09873,1.09804,1.09861,2012 +2020-02-27 18:30,1.09863,1.09941,1.09851,1.09931,2409 +2020-02-27 18:45,1.0993,1.09946,1.09797,1.09888,2761 +2020-02-27 19:00,1.09889,1.09928,1.09868,1.09913,1931 +2020-02-27 19:15,1.09916,1.09949,1.09864,1.0987,1746 +2020-02-27 19:30,1.09871,1.09897,1.09859,1.09873,1161 +2020-02-27 19:45,1.09872,1.09891,1.09855,1.09872,1018 +2020-02-27 20:00,1.09871,1.09886,1.09807,1.09841,1762 +2020-02-27 20:15,1.09842,1.0987,1.09832,1.09869,2058 +2020-02-27 20:30,1.09868,1.09931,1.09855,1.09931,2054 +2020-02-27 20:45,1.09931,1.0995,1.09896,1.09929,2302 +2020-02-27 21:00,1.09927,1.09978,1.09875,1.09974,967 +2020-02-27 21:15,1.09973,1.09976,1.09923,1.09923,666 +2020-02-27 21:30,1.09923,1.09986,1.09919,1.09969,518 +2020-02-27 21:45,1.0997,1.10034,1.09969,1.09998,471 +2020-02-27 22:00,1.09998,1.10044,1.09998,1.10022,266 +2020-02-27 22:15,1.10022,1.10048,1.10018,1.10018,299 +2020-02-27 22:30,1.10015,1.10033,1.10005,1.1003,253 +2020-02-27 22:45,1.1003,1.10039,1.10022,1.10026,373 +2020-02-27 23:00,1.10025,1.10044,1.09986,1.10003,1158 +2020-02-27 23:15,1.10003,1.10021,1.09979,1.0998,932 +2020-02-27 23:30,1.09979,1.10029,1.09971,1.09996,1012 +2020-02-27 23:45,1.09996,1.09997,1.09959,1.09963,710 +2020-02-28 00:00,1.09964,1.10052,1.09949,1.10003,1447 +2020-02-28 00:15,1.10004,1.10007,1.09964,1.09965,1256 +2020-02-28 00:30,1.09966,1.09984,1.09962,1.09979,906 +2020-02-28 00:45,1.09978,1.09989,1.09965,1.09966,806 +2020-02-28 01:00,1.09966,1.09967,1.09921,1.09945,1650 +2020-02-28 01:15,1.09945,1.09961,1.09937,1.0995,1375 +2020-02-28 01:30,1.0995,1.09956,1.09908,1.09919,1748 +2020-02-28 01:45,1.09919,1.09926,1.09857,1.09879,1411 +2020-02-28 02:00,1.09879,1.09888,1.09822,1.09885,1212 +2020-02-28 02:15,1.09882,1.09889,1.09855,1.09884,1264 +2020-02-28 02:30,1.09884,1.09912,1.09854,1.09866,1288 +2020-02-28 02:45,1.09866,1.09884,1.09859,1.09861,1176 +2020-02-28 03:00,1.09861,1.09869,1.09844,1.09853,1594 +2020-02-28 03:15,1.09853,1.0988,1.09842,1.09872,1642 +2020-02-28 03:30,1.09872,1.09936,1.09863,1.0993,2086 +2020-02-28 03:45,1.09931,1.09933,1.09866,1.09868,1956 +2020-02-28 04:00,1.09871,1.09909,1.09857,1.09898,1536 +2020-02-28 04:15,1.09897,1.09931,1.09889,1.09925,1138 +2020-02-28 04:30,1.09926,1.09954,1.09919,1.09954,1242 +2020-02-28 04:45,1.09954,1.09971,1.09941,1.09941,959 +2020-02-28 05:00,1.09942,1.09966,1.09922,1.09962,1346 +2020-02-28 05:15,1.09963,1.10043,1.0994,1.10003,1249 +2020-02-28 05:30,1.10004,1.10004,1.09965,1.09979,1410 +2020-02-28 05:45,1.09979,1.10026,1.09977,1.1,1853 +2020-02-28 06:00,1.1,1.1008,1.09987,1.10056,3052 +2020-02-28 06:15,1.10056,1.10056,1.10011,1.10035,1860 +2020-02-28 06:30,1.10034,1.10078,1.10013,1.10054,1681 +2020-02-28 06:45,1.10054,1.1008,1.1001,1.1001,1581 +2020-02-28 07:00,1.10011,1.10042,1.09973,1.09973,2627 +2020-02-28 07:15,1.09973,1.10004,1.09934,1.09994,3000 +2020-02-28 07:30,1.09994,1.10043,1.09952,1.09963,3675 +2020-02-28 07:45,1.09964,1.10006,1.09913,1.09956,3951 +2020-02-28 08:00,1.09957,1.102,1.09951,1.1016,4742 +2020-02-28 08:15,1.10158,1.1028,1.10149,1.10248,4248 +2020-02-28 08:30,1.10248,1.10253,1.10126,1.10215,4201 +2020-02-28 08:45,1.10215,1.1034,1.1018,1.1034,3843 +2020-02-28 09:00,1.1034,1.1047,1.10289,1.1047,4443 +2020-02-28 09:15,1.10468,1.10489,1.1037,1.10458,4061 +2020-02-28 09:30,1.10458,1.1053,1.10443,1.10445,4101 +2020-02-28 09:45,1.10445,1.10468,1.10374,1.10446,3611 +2020-02-28 10:00,1.10446,1.10449,1.1032,1.10386,3187 +2020-02-28 10:15,1.10386,1.10427,1.10259,1.10291,4010 +2020-02-28 10:30,1.1029,1.10343,1.10261,1.103,3237 +2020-02-28 10:45,1.10301,1.10417,1.10298,1.1034,3069 +2020-02-28 11:00,1.1034,1.10422,1.1028,1.10295,2975 +2020-02-28 11:15,1.10294,1.10326,1.10124,1.10132,3092 +2020-02-28 11:30,1.10133,1.10138,1.10046,1.10047,3629 +2020-02-28 11:45,1.10047,1.10098,1.09862,1.09934,4355 +2020-02-28 12:00,1.09936,1.09999,1.09897,1.09951,3482 +2020-02-28 12:15,1.09953,1.09954,1.09851,1.09866,3913 +2020-02-28 12:30,1.09864,1.09987,1.09861,1.09901,3838 +2020-02-28 12:45,1.09904,1.09941,1.09856,1.0987,3641 +2020-02-28 13:00,1.09872,1.09932,1.09744,1.09773,4331 +2020-02-28 13:15,1.09777,1.09842,1.09687,1.09703,4947 +2020-02-28 13:30,1.09704,1.09777,1.09686,1.09767,4360 +2020-02-28 13:45,1.09768,1.09911,1.09735,1.09869,5189 +2020-02-28 14:00,1.09869,1.09882,1.09795,1.09813,4602 +2020-02-28 14:15,1.09813,1.09826,1.09729,1.09736,3996 +2020-02-28 14:30,1.09736,1.09739,1.09513,1.09527,5023 +2020-02-28 14:45,1.0953,1.0973,1.09509,1.09661,4758 +2020-02-28 15:00,1.09659,1.09684,1.09547,1.09626,4772 +2020-02-28 15:15,1.09625,1.09733,1.09574,1.09729,3889 +2020-02-28 15:30,1.0973,1.09756,1.0963,1.09737,3981 +2020-02-28 15:45,1.09736,1.09901,1.09666,1.09843,8275 +2020-02-28 16:00,1.09844,1.10022,1.0979,1.09857,6956 +2020-02-28 16:15,1.09853,1.10026,1.09841,1.1001,4939 +2020-02-28 16:30,1.1001,1.1006,1.09887,1.09924,4790 +2020-02-28 16:45,1.09925,1.10076,1.09924,1.10002,2517 +2020-02-28 17:00,1.10001,1.10081,1.09989,1.10004,2064 +2020-02-28 17:15,1.10004,1.10088,1.10001,1.10011,2067 +2020-02-28 17:30,1.10013,1.10062,1.0995,1.09995,2884 +2020-02-28 17:45,1.09994,1.10031,1.09969,1.10011,1788 +2020-02-28 18:00,1.1001,1.10016,1.09922,1.10004,1648 +2020-02-28 18:15,1.10003,1.10004,1.09902,1.09969,1542 +2020-02-28 18:30,1.0997,1.10047,1.09959,1.10045,2008 +2020-02-28 18:45,1.10047,1.10057,1.09989,1.10006,2549 +2020-02-28 19:00,1.10005,1.10072,1.09967,1.09982,2145 +2020-02-28 19:15,1.09981,1.10037,1.09907,1.10037,1553 +2020-02-28 19:30,1.10039,1.10328,1.09927,1.10282,3935 +2020-02-28 19:45,1.10285,1.1032,1.10225,1.10291,2683 +2020-02-28 20:00,1.1029,1.10367,1.10254,1.10298,2457 +2020-02-28 20:15,1.10298,1.10402,1.10285,1.10398,2062 +2020-02-28 20:30,1.10399,1.10459,1.10342,1.10452,2436 +2020-02-28 20:45,1.10452,1.10453,1.10335,1.10378,1793 +2020-02-28 21:00,1.10377,1.1043,1.10243,1.10283,1395 +2020-02-28 21:15,1.10283,1.10324,1.10266,1.10311,749 +2020-02-28 21:30,1.1031,1.104,1.10308,1.10314,674 +2020-02-28 21:45,1.10313,1.10325,1.10229,1.10251,1251 +2020-03-01 22:00,1.10423,1.10452,1.10393,1.10437,182 +2020-03-01 22:15,1.10433,1.10437,1.10399,1.10403,196 +2020-03-01 22:30,1.10404,1.10483,1.10398,1.10447,334 +2020-03-01 22:45,1.10445,1.10472,1.10433,1.10456,305 +2020-03-01 23:00,1.10466,1.10727,1.10466,1.10716,1976 +2020-03-01 23:15,1.10715,1.10739,1.106,1.10631,1595 +2020-03-01 23:30,1.10632,1.1064,1.10528,1.10531,1703 +2020-03-01 23:45,1.1053,1.10531,1.10468,1.10515,1242 +2020-03-02 00:00,1.10516,1.10529,1.10362,1.10416,1995 +2020-03-02 00:15,1.10416,1.10432,1.10397,1.10416,1123 +2020-03-02 00:30,1.10416,1.10563,1.10415,1.1055,1424 +2020-03-02 00:45,1.1055,1.10638,1.10534,1.10633,1556 +2020-03-02 01:00,1.10633,1.10648,1.10567,1.10614,1951 +2020-03-02 01:15,1.10614,1.10647,1.1057,1.10593,2042 +2020-03-02 01:30,1.10593,1.10609,1.10547,1.10601,2454 +2020-03-02 01:45,1.10601,1.10601,1.1052,1.10565,2424 +2020-03-02 02:00,1.10567,1.10628,1.10554,1.10566,1763 +2020-03-02 02:15,1.10565,1.10592,1.10551,1.1059,1469 +2020-03-02 02:30,1.10592,1.10633,1.10576,1.10607,1787 +2020-03-02 02:45,1.1061,1.10615,1.10556,1.10568,1762 +2020-03-02 03:00,1.10568,1.10592,1.10531,1.10552,1035 +2020-03-02 03:15,1.10552,1.10599,1.1054,1.10592,1345 +2020-03-02 03:30,1.10592,1.1062,1.10545,1.10559,1193 +2020-03-02 03:45,1.10559,1.10568,1.10516,1.10524,903 +2020-03-02 04:00,1.10523,1.10526,1.10478,1.10488,1253 +2020-03-02 04:15,1.1049,1.10516,1.1049,1.10515,549 +2020-03-02 04:30,1.10514,1.10587,1.10514,1.10578,1334 +2020-03-02 04:45,1.10579,1.10584,1.1052,1.10527,1401 +2020-03-02 05:00,1.10527,1.10527,1.10482,1.10492,1270 +2020-03-02 05:15,1.10493,1.10499,1.10455,1.10461,856 +2020-03-02 05:30,1.10461,1.10467,1.10445,1.10448,864 +2020-03-02 05:45,1.10446,1.10473,1.10418,1.10431,1150 +2020-03-02 06:00,1.1043,1.10481,1.10425,1.10466,1961 +2020-03-02 06:15,1.10466,1.10475,1.10435,1.10448,1515 +2020-03-02 06:30,1.10448,1.10458,1.10395,1.10403,1145 +2020-03-02 06:45,1.10404,1.10431,1.10382,1.10418,1521 +2020-03-02 07:00,1.10418,1.10503,1.10396,1.10487,3818 +2020-03-02 07:15,1.10487,1.10636,1.10483,1.10605,3712 +2020-03-02 07:30,1.10606,1.10731,1.10604,1.10728,4016 +2020-03-02 07:45,1.10727,1.10786,1.10616,1.10634,5162 +2020-03-02 08:00,1.10634,1.1087,1.10602,1.10808,5932 +2020-03-02 08:15,1.10809,1.10905,1.10807,1.10875,3908 +2020-03-02 08:30,1.10874,1.10928,1.10854,1.10921,3954 +2020-03-02 08:45,1.1092,1.10931,1.10781,1.10846,4047 +2020-03-02 09:00,1.10845,1.10868,1.10629,1.1067,4572 +2020-03-02 09:15,1.1067,1.10773,1.10631,1.10747,3551 +2020-03-02 09:30,1.10748,1.10838,1.10738,1.10791,3896 +2020-03-02 09:45,1.10795,1.1081,1.10735,1.10795,3521 +2020-03-02 10:00,1.10795,1.10909,1.10774,1.10906,2986 +2020-03-02 10:15,1.10906,1.10925,1.1086,1.10871,3063 +2020-03-02 10:30,1.10872,1.10917,1.1085,1.10878,3528 +2020-03-02 10:45,1.10878,1.10897,1.1083,1.10848,3165 +2020-03-02 11:00,1.10847,1.10938,1.10816,1.10934,3312 +2020-03-02 11:15,1.10934,1.10979,1.10907,1.10974,2970 +2020-03-02 11:30,1.10974,1.11004,1.10891,1.10982,3871 +2020-03-02 11:45,1.10982,1.11194,1.10977,1.11184,4845 +2020-03-02 12:00,1.11185,1.11278,1.11131,1.11176,5571 +2020-03-02 12:15,1.11178,1.11226,1.111,1.11101,4482 +2020-03-02 12:30,1.111,1.1112,1.10997,1.11119,4744 +2020-03-02 12:45,1.11121,1.11183,1.11066,1.11123,4154 +2020-03-02 13:00,1.11124,1.11228,1.11093,1.11218,4195 +2020-03-02 13:15,1.11219,1.11304,1.11209,1.11221,4989 +2020-03-02 13:30,1.11222,1.11644,1.11222,1.11372,6654 +2020-03-02 13:45,1.11375,1.11457,1.11211,1.11216,5798 +2020-03-02 14:00,1.11218,1.11258,1.11078,1.11167,6268 +2020-03-02 14:15,1.11167,1.11286,1.11112,1.11237,4059 +2020-03-02 14:30,1.11238,1.11338,1.11175,1.11283,5757 +2020-03-02 14:45,1.11282,1.11372,1.1122,1.11254,4947 +2020-03-02 15:00,1.11255,1.11464,1.11241,1.11326,5849 +2020-03-02 15:15,1.11326,1.11401,1.1122,1.11253,4876 +2020-03-02 15:30,1.11252,1.11335,1.11212,1.11227,4420 +2020-03-02 15:45,1.11227,1.11384,1.11121,1.11312,6001 +2020-03-02 16:00,1.11311,1.11501,1.11246,1.11477,6116 +2020-03-02 16:15,1.11478,1.11526,1.11426,1.11489,3214 +2020-03-02 16:30,1.11488,1.11594,1.11457,1.11493,4240 +2020-03-02 16:45,1.11493,1.1165,1.11443,1.11632,2413 +2020-03-02 17:00,1.11632,1.11845,1.11609,1.11845,3459 +2020-03-02 17:15,1.11844,1.11844,1.11701,1.11726,3315 +2020-03-02 17:30,1.11726,1.11795,1.11697,1.1173,2186 +2020-03-02 17:45,1.1173,1.11821,1.11729,1.11797,1742 +2020-03-02 18:00,1.11797,1.11836,1.11701,1.1172,1136 +2020-03-02 18:15,1.11723,1.11766,1.11704,1.11743,981 +2020-03-02 18:30,1.11742,1.11752,1.1162,1.11631,700 +2020-03-02 18:45,1.11633,1.11681,1.11629,1.11636,664 +2020-03-02 19:00,1.11637,1.11664,1.11563,1.1157,727 +2020-03-02 19:15,1.1157,1.11641,1.1157,1.11637,790 +2020-03-02 19:30,1.11638,1.11662,1.11611,1.11651,624 +2020-03-02 19:45,1.11654,1.11665,1.11601,1.11638,735 +2020-03-02 20:00,1.11637,1.11637,1.11549,1.11576,865 +2020-03-02 20:15,1.11575,1.1159,1.11515,1.11525,640 +2020-03-02 20:30,1.11525,1.11528,1.11445,1.11448,841 +2020-03-02 20:45,1.11447,1.1147,1.11266,1.11356,1871 +2020-03-02 21:00,1.11355,1.11363,1.11237,1.1133,790 +2020-03-02 21:15,1.11328,1.11378,1.11268,1.11307,826 +2020-03-02 21:30,1.11307,1.11362,1.113,1.11323,511 +2020-03-02 21:45,1.11324,1.11404,1.11305,1.11331,710 +2020-03-02 22:00,1.11327,1.11348,1.11268,1.11348,290 +2020-03-02 22:15,1.11343,1.11385,1.11318,1.11346,108 +2020-03-02 22:30,1.11349,1.11389,1.11339,1.11385,735 +2020-03-02 22:45,1.11385,1.11391,1.11375,1.11385,733 +2020-03-02 23:00,1.11386,1.11479,1.11381,1.11437,1222 +2020-03-02 23:15,1.11437,1.11449,1.11415,1.11433,699 +2020-03-02 23:30,1.11433,1.11476,1.11433,1.11471,635 +2020-03-02 23:45,1.11471,1.11471,1.1143,1.11443,882 +2020-03-03 00:00,1.11443,1.11449,1.11401,1.11402,1075 +2020-03-03 00:15,1.11402,1.11403,1.11361,1.11373,754 +2020-03-03 00:30,1.11373,1.11377,1.1134,1.11342,606 +2020-03-03 00:45,1.11342,1.11355,1.11322,1.11323,916 +2020-03-03 01:00,1.11325,1.11349,1.11236,1.11236,1133 +2020-03-03 01:15,1.11237,1.11312,1.11202,1.11287,1428 +2020-03-03 01:30,1.11286,1.1138,1.11259,1.11354,1256 +2020-03-03 01:45,1.11353,1.11353,1.11305,1.11321,697 +2020-03-03 02:00,1.11321,1.11355,1.11286,1.11348,1096 +2020-03-03 02:15,1.11347,1.11426,1.11343,1.11425,1241 +2020-03-03 02:30,1.11424,1.1146,1.11414,1.11422,1315 +2020-03-03 02:45,1.11422,1.11424,1.11372,1.11403,1114 +2020-03-03 03:00,1.11403,1.11415,1.11392,1.11405,408 +2020-03-03 03:15,1.11405,1.11408,1.11366,1.11368,548 +2020-03-03 03:30,1.11368,1.11418,1.11367,1.11389,1249 +2020-03-03 03:45,1.11388,1.11397,1.1133,1.11344,600 +2020-03-03 04:00,1.11344,1.11404,1.11326,1.11389,723 +2020-03-03 04:15,1.11388,1.11473,1.1138,1.11472,1116 +2020-03-03 04:30,1.11471,1.11555,1.1146,1.11509,1241 +2020-03-03 04:45,1.1151,1.11522,1.11433,1.11444,1276 +2020-03-03 05:00,1.11444,1.11484,1.11423,1.11483,924 +2020-03-03 05:15,1.11486,1.11508,1.11453,1.11454,897 +2020-03-03 05:30,1.11453,1.11478,1.1143,1.11466,785 +2020-03-03 05:45,1.11465,1.11482,1.11432,1.11449,874 +2020-03-03 06:00,1.11448,1.11509,1.11448,1.11465,830 +2020-03-03 06:15,1.11465,1.11511,1.1146,1.11473,974 +2020-03-03 06:30,1.11473,1.11492,1.11421,1.1145,1218 +2020-03-03 06:45,1.1145,1.11475,1.11423,1.11455,1030 +2020-03-03 07:00,1.11456,1.11469,1.1126,1.11272,2905 +2020-03-03 07:15,1.11273,1.11368,1.11258,1.11295,2384 +2020-03-03 07:30,1.11295,1.11306,1.11216,1.11247,2585 +2020-03-03 07:45,1.11247,1.11247,1.1115,1.11199,3587 +2020-03-03 08:00,1.112,1.11314,1.11187,1.11249,3460 +2020-03-03 08:15,1.11249,1.11284,1.1121,1.11253,3199 +2020-03-03 08:30,1.11253,1.11253,1.11101,1.1112,2776 +2020-03-03 08:45,1.11121,1.11148,1.11066,1.11104,2753 +2020-03-03 09:00,1.11102,1.11168,1.11011,1.11021,3604 +2020-03-03 09:15,1.1102,1.11148,1.11002,1.11108,3206 +2020-03-03 09:30,1.11108,1.11266,1.11075,1.11189,3457 +2020-03-03 09:45,1.11186,1.11293,1.11186,1.11265,3126 +2020-03-03 10:00,1.11263,1.11322,1.1123,1.11298,2699 +2020-03-03 10:15,1.11299,1.11387,1.1119,1.11209,2839 +2020-03-03 10:30,1.11209,1.11222,1.11135,1.11173,2678 +2020-03-03 10:45,1.11171,1.1118,1.111,1.11123,2885 +2020-03-03 11:00,1.11125,1.11178,1.11075,1.11141,2859 +2020-03-03 11:15,1.1114,1.11188,1.11076,1.11093,2298 +2020-03-03 11:30,1.11093,1.11192,1.11062,1.11158,2194 +2020-03-03 11:45,1.11158,1.11197,1.11107,1.11137,2077 +2020-03-03 12:00,1.11137,1.11215,1.11123,1.11167,2369 +2020-03-03 12:15,1.11168,1.11197,1.11139,1.11143,2000 +2020-03-03 12:30,1.11144,1.11341,1.11044,1.11248,5381 +2020-03-03 12:45,1.11249,1.11314,1.11147,1.11176,4676 +2020-03-03 13:00,1.11176,1.11249,1.1109,1.11165,5171 +2020-03-03 13:15,1.11167,1.11168,1.10971,1.1103,5099 +2020-03-03 13:30,1.1103,1.11144,1.10953,1.11065,4636 +2020-03-03 13:45,1.11064,1.11211,1.11064,1.11189,3545 +2020-03-03 14:00,1.11191,1.11241,1.11154,1.11185,3585 +2020-03-03 14:15,1.11188,1.11268,1.11164,1.11237,2438 +2020-03-03 14:30,1.11236,1.11287,1.11182,1.1125,3698 +2020-03-03 14:45,1.11251,1.11281,1.11189,1.11254,3548 +2020-03-03 15:00,1.11271,1.11876,1.11268,1.11747,10186 +2020-03-03 15:15,1.11749,1.12134,1.11749,1.11933,8637 +2020-03-03 15:30,1.11931,1.11962,1.11777,1.11909,5222 +2020-03-03 15:45,1.11907,1.11927,1.11739,1.11796,4832 +2020-03-03 16:00,1.11799,1.1181,1.11555,1.11597,4739 +2020-03-03 16:15,1.11596,1.116,1.11405,1.11509,5418 +2020-03-03 16:30,1.11509,1.11772,1.11486,1.11706,3486 +2020-03-03 16:45,1.11705,1.11792,1.11695,1.11746,3007 +2020-03-03 17:00,1.11746,1.11773,1.11572,1.11678,3259 +2020-03-03 17:15,1.11677,1.11717,1.1155,1.11605,2100 +2020-03-03 17:30,1.11602,1.11649,1.11509,1.11551,1645 +2020-03-03 17:45,1.1155,1.11602,1.1147,1.11586,1971 +2020-03-03 18:00,1.1159,1.11656,1.11585,1.11591,1372 +2020-03-03 18:15,1.11591,1.11711,1.11584,1.11685,1847 +2020-03-03 18:30,1.11686,1.11747,1.11645,1.11737,1340 +2020-03-03 18:45,1.11736,1.11871,1.11735,1.11848,1741 +2020-03-03 19:00,1.11849,1.1195,1.11791,1.11841,3178 +2020-03-03 19:15,1.11841,1.11896,1.11827,1.11888,2672 +2020-03-03 19:30,1.11889,1.11936,1.11766,1.11775,2686 +2020-03-03 19:45,1.11776,1.11832,1.1174,1.11758,2183 +2020-03-03 20:00,1.11758,1.1184,1.11746,1.11778,1897 +2020-03-03 20:15,1.11777,1.11795,1.11715,1.11787,1324 +2020-03-03 20:30,1.11788,1.11822,1.11731,1.11775,1367 +2020-03-03 20:45,1.11775,1.1182,1.11722,1.11802,1663 +2020-03-03 21:00,1.11801,1.11822,1.11761,1.11817,700 +2020-03-03 21:15,1.11815,1.11815,1.11772,1.11784,573 +2020-03-03 21:30,1.11785,1.11805,1.11735,1.11742,365 +2020-03-03 21:45,1.11742,1.11749,1.11671,1.11716,464 +2020-03-03 22:00,1.11715,1.11772,1.11681,1.11684,122 +2020-03-03 22:15,1.11683,1.1176,1.11681,1.11752,167 +2020-03-03 22:30,1.11751,1.1177,1.11704,1.11704,317 +2020-03-03 22:45,1.11704,1.11705,1.1169,1.11699,351 +2020-03-03 23:00,1.11704,1.1185,1.11702,1.11791,1306 +2020-03-03 23:15,1.11791,1.11812,1.11766,1.11809,477 +2020-03-03 23:30,1.11809,1.11818,1.11774,1.11776,635 +2020-03-03 23:45,1.11777,1.11792,1.11753,1.11765,541 +2020-03-04 00:00,1.11765,1.11797,1.117,1.11713,1237 +2020-03-04 00:15,1.11714,1.11722,1.11684,1.1171,514 +2020-03-04 00:30,1.1171,1.11725,1.11683,1.11715,904 +2020-03-04 00:45,1.11715,1.11744,1.11705,1.11727,607 +2020-03-04 01:00,1.1173,1.11746,1.11679,1.11682,1008 +2020-03-04 01:15,1.11682,1.11704,1.11629,1.11657,905 +2020-03-04 01:30,1.11658,1.11691,1.11621,1.11685,1080 +2020-03-04 01:45,1.11687,1.11696,1.1166,1.11662,541 +2020-03-04 02:00,1.11663,1.11663,1.11612,1.11647,740 +2020-03-04 02:15,1.11646,1.11702,1.11646,1.11697,908 +2020-03-04 02:30,1.117,1.11711,1.11682,1.11687,585 +2020-03-04 02:45,1.11687,1.11702,1.11652,1.11653,690 +2020-03-04 03:00,1.11653,1.11656,1.11615,1.11617,724 +2020-03-04 03:15,1.11616,1.11666,1.11601,1.11665,822 +2020-03-04 03:30,1.11664,1.11664,1.11625,1.11631,678 +2020-03-04 03:45,1.1163,1.11635,1.11596,1.11608,623 +2020-03-04 04:00,1.11609,1.11619,1.11585,1.11587,774 +2020-03-04 04:15,1.11586,1.11594,1.11556,1.11557,572 +2020-03-04 04:30,1.11558,1.11598,1.11552,1.11588,485 +2020-03-04 04:45,1.1159,1.11633,1.1159,1.11611,531 +2020-03-04 05:00,1.11611,1.11624,1.11603,1.11624,382 +2020-03-04 05:15,1.11624,1.11635,1.11615,1.11618,304 +2020-03-04 05:30,1.11617,1.11628,1.11573,1.11573,587 +2020-03-04 05:45,1.11573,1.11592,1.11562,1.11568,327 +2020-03-04 06:00,1.11568,1.11585,1.11527,1.1153,624 +2020-03-04 06:15,1.1153,1.11531,1.11432,1.11478,1267 +2020-03-04 06:30,1.11477,1.11531,1.11469,1.11527,1036 +2020-03-04 06:45,1.11527,1.11579,1.11526,1.11531,928 +2020-03-04 07:00,1.11531,1.1158,1.11469,1.11535,2690 +2020-03-04 07:15,1.11534,1.11576,1.11501,1.11576,2047 +2020-03-04 07:30,1.11575,1.11579,1.11448,1.11472,2053 +2020-03-04 07:45,1.11476,1.11599,1.11476,1.11592,2801 +2020-03-04 08:00,1.11593,1.11691,1.11585,1.11668,3448 +2020-03-04 08:15,1.11669,1.11779,1.11626,1.11758,3609 +2020-03-04 08:30,1.11757,1.11875,1.11711,1.11829,3682 +2020-03-04 08:45,1.11829,1.11834,1.1162,1.11647,3487 +2020-03-04 09:00,1.11647,1.11658,1.11551,1.11624,2601 +2020-03-04 09:15,1.11624,1.11726,1.11597,1.11651,2665 +2020-03-04 09:30,1.1165,1.11681,1.11541,1.11562,2335 +2020-03-04 09:45,1.11562,1.11578,1.1152,1.11565,2458 +2020-03-04 10:00,1.11565,1.11662,1.11551,1.11598,2398 +2020-03-04 10:15,1.11599,1.11669,1.11584,1.11601,2998 +2020-03-04 10:30,1.11602,1.11603,1.11488,1.11503,2553 +2020-03-04 10:45,1.11502,1.11506,1.11359,1.11363,3327 +2020-03-04 11:00,1.11363,1.11466,1.11363,1.11456,2554 +2020-03-04 11:15,1.11455,1.11524,1.11449,1.11514,1921 +2020-03-04 11:30,1.11515,1.11547,1.11468,1.115,2388 +2020-03-04 11:45,1.115,1.11515,1.11423,1.11474,1707 +2020-03-04 12:00,1.11474,1.11479,1.11367,1.11379,2921 +2020-03-04 12:15,1.1138,1.11412,1.11317,1.11327,2948 +2020-03-04 12:30,1.1133,1.11336,1.11219,1.11246,2716 +2020-03-04 12:45,1.11246,1.11264,1.11097,1.11118,3120 +2020-03-04 13:00,1.11119,1.11258,1.11119,1.11239,3366 +2020-03-04 13:15,1.11245,1.11319,1.11208,1.11317,2701 +2020-03-04 13:30,1.11318,1.11328,1.11211,1.11274,2570 +2020-03-04 13:45,1.11275,1.11294,1.11223,1.11253,2104 +2020-03-04 14:00,1.11252,1.11268,1.1106,1.11099,3674 +2020-03-04 14:15,1.111,1.1115,1.11023,1.11061,4070 +2020-03-04 14:30,1.11059,1.11102,1.10955,1.11019,5009 +2020-03-04 14:45,1.11019,1.11222,1.11003,1.11184,3390 +2020-03-04 15:00,1.11183,1.1123,1.11001,1.11179,5205 +2020-03-04 15:15,1.11181,1.11272,1.11136,1.11141,4423 +2020-03-04 15:30,1.11141,1.11267,1.11131,1.11192,4066 +2020-03-04 15:45,1.11192,1.11425,1.1117,1.11394,4786 +2020-03-04 16:00,1.11395,1.11454,1.11324,1.11341,4396 +2020-03-04 16:15,1.11344,1.11373,1.11275,1.11289,3430 +2020-03-04 16:30,1.11288,1.11388,1.11222,1.11368,2852 +2020-03-04 16:45,1.11367,1.11374,1.11255,1.1129,2178 +2020-03-04 17:00,1.11291,1.11329,1.11268,1.11271,1384 +2020-03-04 17:15,1.11272,1.11315,1.11244,1.11282,1505 +2020-03-04 17:30,1.11283,1.11285,1.11231,1.11252,1524 +2020-03-04 17:45,1.11252,1.11255,1.11193,1.11236,1519 +2020-03-04 18:00,1.11235,1.11304,1.11233,1.11256,1087 +2020-03-04 18:15,1.11256,1.1137,1.11254,1.11362,1084 +2020-03-04 18:30,1.11361,1.11372,1.11317,1.11342,595 +2020-03-04 18:45,1.11341,1.11345,1.11294,1.11314,607 +2020-03-04 19:00,1.11313,1.11349,1.11301,1.11341,847 +2020-03-04 19:15,1.1134,1.11347,1.11288,1.11296,808 +2020-03-04 19:30,1.11296,1.11347,1.11294,1.11346,714 +2020-03-04 19:45,1.11347,1.11421,1.11346,1.11388,1115 +2020-03-04 20:00,1.11389,1.11406,1.11379,1.11398,441 +2020-03-04 20:15,1.11399,1.11421,1.11344,1.11344,495 +2020-03-04 20:30,1.11342,1.11366,1.11315,1.11352,594 +2020-03-04 20:45,1.11351,1.11374,1.11332,1.11371,775 +2020-03-04 21:00,1.1137,1.11382,1.11346,1.1135,306 +2020-03-04 21:15,1.11351,1.11355,1.11313,1.11323,186 +2020-03-04 21:30,1.11327,1.11347,1.1131,1.11334,469 +2020-03-04 21:45,1.11333,1.11351,1.11309,1.11328,488 +2020-03-04 22:00,1.11328,1.11351,1.11316,1.11332,91 +2020-03-04 22:15,1.11332,1.11335,1.11316,1.11327,354 +2020-03-04 22:30,1.11327,1.11331,1.11305,1.11305,272 +2020-03-04 22:45,1.11305,1.1134,1.11305,1.11332,604 +2020-03-04 23:00,1.11331,1.11371,1.11326,1.11368,583 +2020-03-04 23:15,1.11368,1.114,1.11357,1.11357,474 +2020-03-04 23:30,1.1136,1.11376,1.11332,1.11372,466 +2020-03-04 23:45,1.11372,1.11395,1.11361,1.1138,445 +2020-03-05 00:00,1.11382,1.11391,1.11327,1.11332,818 +2020-03-05 00:15,1.11332,1.11379,1.11328,1.1137,605 +2020-03-05 00:30,1.1137,1.11425,1.1136,1.11406,776 +2020-03-05 00:45,1.11405,1.11426,1.11347,1.11375,680 +2020-03-05 01:00,1.11375,1.11378,1.11336,1.11345,685 +2020-03-05 01:15,1.11345,1.11363,1.11341,1.11357,531 +2020-03-05 01:30,1.11357,1.11373,1.11352,1.11372,289 +2020-03-05 01:45,1.11373,1.11383,1.11368,1.11369,421 +2020-03-05 02:00,1.11369,1.11401,1.11368,1.11395,410 +2020-03-05 02:15,1.11398,1.11415,1.1139,1.11408,342 +2020-03-05 02:30,1.11409,1.1143,1.11399,1.11429,335 +2020-03-05 02:45,1.1143,1.1143,1.11414,1.11417,576 +2020-03-05 03:00,1.11416,1.11436,1.11409,1.11409,479 +2020-03-05 03:15,1.11408,1.11408,1.11391,1.11393,350 +2020-03-05 03:30,1.11392,1.11397,1.11371,1.11383,541 +2020-03-05 03:45,1.11384,1.1139,1.11374,1.11383,307 +2020-03-05 04:00,1.11382,1.11382,1.11357,1.11365,462 +2020-03-05 04:15,1.11365,1.11381,1.11365,1.11375,175 +2020-03-05 04:30,1.11376,1.1139,1.1137,1.11384,334 +2020-03-05 04:45,1.11383,1.11385,1.11366,1.11383,359 +2020-03-05 05:00,1.11382,1.114,1.11381,1.11395,416 +2020-03-05 05:15,1.11396,1.11398,1.11357,1.11357,278 +2020-03-05 05:30,1.11361,1.11363,1.11346,1.11349,377 +2020-03-05 05:45,1.11349,1.11361,1.11338,1.11345,429 +2020-03-05 06:00,1.11345,1.11382,1.11342,1.11369,844 +2020-03-05 06:15,1.11369,1.1139,1.11363,1.11381,662 +2020-03-05 06:30,1.11381,1.11386,1.11357,1.11357,506 +2020-03-05 06:45,1.11357,1.11358,1.11312,1.11326,978 +2020-03-05 07:00,1.1133,1.11393,1.11328,1.11383,1802 +2020-03-05 07:15,1.11382,1.11394,1.11327,1.11381,1365 +2020-03-05 07:30,1.1138,1.11391,1.11359,1.11381,1297 +2020-03-05 07:45,1.11382,1.11382,1.11195,1.1123,2602 +2020-03-05 08:00,1.1123,1.11328,1.11216,1.11321,4444 +2020-03-05 08:15,1.11322,1.11347,1.11218,1.1124,3004 +2020-03-05 08:30,1.1124,1.11343,1.1124,1.11341,2198 +2020-03-05 08:45,1.11341,1.11399,1.11327,1.11371,2728 +2020-03-05 09:00,1.11371,1.11389,1.1132,1.11383,2661 +2020-03-05 09:15,1.11384,1.11595,1.11369,1.11573,2754 +2020-03-05 09:30,1.11572,1.11674,1.11545,1.11664,3712 +2020-03-05 09:45,1.11667,1.1174,1.11641,1.11733,3218 +2020-03-05 10:00,1.11733,1.11772,1.11675,1.11748,2556 +2020-03-05 10:15,1.11748,1.11749,1.11686,1.11715,2302 +2020-03-05 10:30,1.11715,1.11774,1.11656,1.11669,2415 +2020-03-05 10:45,1.11669,1.11716,1.11626,1.117,30037 +2020-03-05 11:00,1.11699,1.11699,1.11565,1.11602,3478 +2020-03-05 11:15,1.11601,1.11698,1.11592,1.11688,2232 +2020-03-05 11:30,1.11687,1.11827,1.11669,1.11785,2744 +2020-03-05 11:45,1.11783,1.11836,1.11777,1.11831,3009 +2020-03-05 12:00,1.11829,1.11942,1.11794,1.11942,3549 +2020-03-05 12:15,1.11941,1.11997,1.11861,1.11866,4051 +2020-03-05 12:30,1.11867,1.11999,1.11861,1.11982,2690 +2020-03-05 12:45,1.11983,1.11985,1.11871,1.11886,2841 +2020-03-05 13:00,1.11886,1.1195,1.11855,1.11865,3377 +2020-03-05 13:15,1.11867,1.11968,1.11867,1.11952,3270 +2020-03-05 13:30,1.11951,1.11986,1.11792,1.11808,3682 +2020-03-05 13:45,1.11809,1.11897,1.11793,1.11866,3173 +2020-03-05 14:00,1.11865,1.11907,1.11807,1.11859,3196 +2020-03-05 14:15,1.11861,1.12013,1.11831,1.11984,3411 +2020-03-05 14:30,1.11984,1.11989,1.11838,1.11848,4523 +2020-03-05 14:45,1.1185,1.11923,1.11778,1.11907,4223 +2020-03-05 15:00,1.11905,1.1197,1.1175,1.11761,4660 +2020-03-05 15:15,1.11763,1.11834,1.1172,1.11776,3890 +2020-03-05 15:30,1.11774,1.11821,1.11669,1.11754,4331 +2020-03-05 15:45,1.11755,1.11912,1.11741,1.11877,4506 +2020-03-05 16:00,1.11879,1.11932,1.11827,1.119,3505 +2020-03-05 16:15,1.11901,1.11941,1.11793,1.11868,1930 +2020-03-05 16:30,1.11869,1.12049,1.11868,1.1197,2368 +2020-03-05 16:45,1.11971,1.12047,1.1196,1.12017,1748 +2020-03-05 17:00,1.12017,1.12063,1.11851,1.11896,2254 +2020-03-05 17:15,1.11895,1.11959,1.11843,1.11928,1983 +2020-03-05 17:30,1.1193,1.12074,1.11924,1.12058,2315 +2020-03-05 17:45,1.12061,1.12166,1.12056,1.1214,2530 +2020-03-05 18:00,1.12141,1.12168,1.1207,1.12135,1561 +2020-03-05 18:15,1.12134,1.12178,1.12114,1.12146,1490 +2020-03-05 18:30,1.12146,1.12156,1.12058,1.12077,1204 +2020-03-05 18:45,1.12077,1.12081,1.11978,1.11996,1015 +2020-03-05 19:00,1.11997,1.12038,1.11973,1.11974,1160 +2020-03-05 19:15,1.11976,1.12039,1.11974,1.12005,749 +2020-03-05 19:30,1.12004,1.12005,1.11919,1.11984,927 +2020-03-05 19:45,1.11985,1.12033,1.11962,1.12004,664 +2020-03-05 20:00,1.12,1.1204,1.11938,1.1203,917 +2020-03-05 20:15,1.1203,1.12195,1.1202,1.12193,1606 +2020-03-05 20:30,1.12194,1.12298,1.12185,1.1226,1054 +2020-03-05 20:45,1.1226,1.12289,1.12233,1.1228,1248 +2020-03-05 21:00,1.12283,1.12356,1.12247,1.1235,857 +2020-03-05 21:15,1.12351,1.12367,1.12297,1.12367,1582 +2020-03-05 21:30,1.12364,1.12447,1.1234,1.12428,565 +2020-03-05 21:45,1.12428,1.12442,1.12357,1.12361,722 +2020-03-05 22:00,1.12361,1.12399,1.12315,1.12341,80 +2020-03-05 22:15,1.12346,1.12364,1.12282,1.12282,170 +2020-03-05 22:30,1.12283,1.12329,1.12276,1.123,423 +2020-03-05 22:45,1.12301,1.12339,1.12289,1.1231,973 +2020-03-05 23:00,1.12307,1.12385,1.12276,1.12278,1381 +2020-03-05 23:15,1.12278,1.12286,1.12258,1.12269,779 +2020-03-05 23:30,1.1227,1.12272,1.12247,1.12271,328 +2020-03-05 23:45,1.1227,1.12297,1.12223,1.12224,645 +2020-03-06 00:00,1.12224,1.12242,1.12191,1.12217,774 +2020-03-06 00:15,1.12216,1.12217,1.12131,1.12175,968 +2020-03-06 00:30,1.12175,1.12281,1.12174,1.12259,1148 +2020-03-06 00:45,1.12258,1.12259,1.12112,1.12202,1416 +2020-03-06 01:00,1.12202,1.12239,1.12185,1.12204,986 +2020-03-06 01:15,1.12205,1.12309,1.12192,1.12307,1035 +2020-03-06 01:30,1.12307,1.12313,1.12253,1.12278,758 +2020-03-06 01:45,1.12278,1.12462,1.12263,1.12455,1508 +2020-03-06 02:00,1.12456,1.12487,1.1241,1.12446,2212 +2020-03-06 02:15,1.12445,1.12464,1.12363,1.12386,1263 +2020-03-06 02:30,1.12383,1.12386,1.12344,1.12355,1076 +2020-03-06 02:45,1.12353,1.1236,1.12303,1.12319,1150 +2020-03-06 03:00,1.1232,1.12332,1.12291,1.12317,843 +2020-03-06 03:15,1.12319,1.12339,1.12296,1.12312,869 +2020-03-06 03:30,1.12314,1.12321,1.12261,1.12284,1114 +2020-03-06 03:45,1.12285,1.12342,1.12285,1.12336,915 +2020-03-06 04:00,1.12335,1.1239,1.12331,1.12354,887 +2020-03-06 04:15,1.12354,1.12365,1.1232,1.12349,706 +2020-03-06 04:30,1.12348,1.12348,1.12296,1.12311,736 +2020-03-06 04:45,1.1231,1.12335,1.12306,1.12307,554 +2020-03-06 05:00,1.12307,1.12347,1.12298,1.12341,592 +2020-03-06 05:15,1.12341,1.12364,1.12321,1.12363,387 +2020-03-06 05:30,1.12364,1.12364,1.12337,1.12352,479 +2020-03-06 05:45,1.12351,1.12357,1.12279,1.12282,877 +2020-03-06 06:00,1.12282,1.1237,1.12258,1.1227,1518 +2020-03-06 06:15,1.1227,1.12286,1.12246,1.12255,1054 +2020-03-06 06:30,1.12255,1.12297,1.1219,1.12228,1366 +2020-03-06 06:45,1.12228,1.12304,1.12222,1.12278,1287 +2020-03-06 07:00,1.12278,1.12327,1.12235,1.12284,3115 +2020-03-06 07:15,1.12284,1.1229,1.12246,1.12273,2495 +2020-03-06 07:30,1.12273,1.12347,1.12271,1.12293,2106 +2020-03-06 07:45,1.12292,1.12377,1.12279,1.12344,2126 +2020-03-06 08:00,1.12342,1.12461,1.12288,1.12384,4579 +2020-03-06 08:15,1.12386,1.12554,1.12343,1.12538,3701 +2020-03-06 08:30,1.12537,1.12771,1.1252,1.12687,4599 +2020-03-06 08:45,1.12688,1.12783,1.12667,1.12723,4061 +2020-03-06 09:00,1.12723,1.12782,1.1268,1.12703,3760 +2020-03-06 09:15,1.12703,1.12756,1.127,1.12733,3162 +2020-03-06 09:30,1.12733,1.129,1.1271,1.12898,3847 +2020-03-06 09:45,1.12898,1.12952,1.1283,1.12939,4631 +2020-03-06 10:00,1.1294,1.13089,1.12929,1.12981,4956 +2020-03-06 10:15,1.12978,1.13237,1.12942,1.13229,5308 +2020-03-06 10:30,1.13228,1.1324,1.13031,1.13055,5928 +2020-03-06 10:45,1.13055,1.13195,1.12976,1.13163,5424 +2020-03-06 11:00,1.13164,1.133,1.13116,1.13293,4373 +2020-03-06 11:15,1.13291,1.13373,1.1317,1.13291,4962 +2020-03-06 11:30,1.1329,1.13405,1.13276,1.13376,3666 +2020-03-06 11:45,1.13377,1.13386,1.13259,1.13323,3201 +2020-03-06 12:00,1.13323,1.13323,1.13179,1.13188,2649 +2020-03-06 12:15,1.13188,1.13213,1.13067,1.13211,3244 +2020-03-06 12:30,1.13214,1.13245,1.13055,1.13157,3359 +2020-03-06 12:45,1.1316,1.13213,1.13074,1.13161,4088 +2020-03-06 13:00,1.13161,1.13361,1.13115,1.13356,3194 +2020-03-06 13:15,1.13356,1.13378,1.13258,1.13285,4259 +2020-03-06 13:30,1.13302,1.13334,1.13053,1.13221,6103 +2020-03-06 13:45,1.13221,1.13275,1.13079,1.13227,3970 +2020-03-06 14:00,1.13224,1.13302,1.13178,1.13302,5007 +2020-03-06 14:15,1.13303,1.13495,1.13296,1.13444,6174 +2020-03-06 14:30,1.13445,1.1347,1.13311,1.13373,6536 +2020-03-06 14:45,1.13376,1.13546,1.13367,1.13489,5881 +2020-03-06 15:00,1.1349,1.13545,1.13366,1.13439,6225 +2020-03-06 15:15,1.13442,1.13445,1.12872,1.13057,7247 +2020-03-06 15:30,1.13058,1.13146,1.12963,1.13049,7656 +2020-03-06 15:45,1.13049,1.13168,1.13005,1.131,5885 +2020-03-06 16:00,1.13098,1.1329,1.13082,1.13287,3734 +2020-03-06 16:15,1.13286,1.13302,1.13193,1.13246,1736 +2020-03-06 16:30,1.13248,1.13268,1.13083,1.13091,2334 +2020-03-06 16:45,1.13089,1.13193,1.13055,1.13192,1797 +2020-03-06 17:00,1.13192,1.13278,1.13186,1.13206,1741 +2020-03-06 17:15,1.13205,1.13221,1.13095,1.13105,1323 +2020-03-06 17:30,1.13105,1.13127,1.1288,1.12892,2116 +2020-03-06 17:45,1.12892,1.13081,1.12887,1.13053,2604 +2020-03-06 18:00,1.13054,1.13115,1.13018,1.13077,2004 +2020-03-06 18:15,1.13077,1.13105,1.12917,1.12947,1913 +2020-03-06 18:30,1.12947,1.13024,1.12909,1.12991,1796 +2020-03-06 18:45,1.1299,1.1301,1.12945,1.12984,1382 +2020-03-06 19:00,1.12984,1.13013,1.12938,1.13005,1698 +2020-03-06 19:15,1.13007,1.13073,1.12984,1.13065,1317 +2020-03-06 19:30,1.13065,1.13137,1.13043,1.1311,1928 +2020-03-06 19:45,1.13112,1.13187,1.1309,1.13177,2326 +2020-03-06 20:00,1.13176,1.13254,1.13116,1.1325,2627 +2020-03-06 20:15,1.13251,1.13257,1.13086,1.13191,3072 +2020-03-06 20:30,1.13194,1.13198,1.13059,1.13072,4151 +2020-03-06 20:45,1.13068,1.13101,1.13007,1.1306,2517 +2020-03-06 21:00,1.13059,1.13111,1.13042,1.13048,588 +2020-03-06 21:15,1.13049,1.13094,1.13038,1.1305,471 +2020-03-06 21:30,1.13049,1.1305,1.12933,1.12933,620 +2020-03-06 21:45,1.12933,1.12952,1.12804,1.12804,797 +2020-03-08 21:00,1.13473,1.13479,1.13407,1.1344,179 +2020-03-08 21:15,1.1344,1.1344,1.1335,1.13368,221 +2020-03-08 21:30,1.13367,1.13436,1.13354,1.13421,112 +2020-03-08 21:45,1.13421,1.13567,1.13421,1.1347,289 +2020-03-08 22:00,1.13469,1.1356,1.13417,1.13535,1274 +2020-03-08 22:15,1.13534,1.13554,1.13397,1.1348,2562 +2020-03-08 22:30,1.13479,1.13825,1.13459,1.13816,2731 +2020-03-08 22:45,1.13815,1.13947,1.13688,1.13868,3453 +2020-03-08 23:00,1.13873,1.13888,1.13664,1.1374,2533 +2020-03-08 23:15,1.13738,1.13871,1.137,1.13854,1528 +2020-03-08 23:30,1.13854,1.13963,1.13802,1.13856,1907 +2020-03-08 23:45,1.13854,1.13902,1.13822,1.13876,1189 +2020-03-09 00:00,1.13876,1.13876,1.13695,1.13833,2293 +2020-03-09 00:15,1.13831,1.13849,1.13683,1.13693,1559 +2020-03-09 00:30,1.13693,1.13725,1.13633,1.13654,1107 +2020-03-09 00:45,1.13654,1.13667,1.13588,1.13597,1264 +2020-03-09 01:00,1.13599,1.13701,1.13559,1.13672,1225 +2020-03-09 01:15,1.13671,1.13855,1.13669,1.1379,1308 +2020-03-09 01:30,1.13789,1.13994,1.13751,1.13993,2237 +2020-03-09 01:45,1.13994,1.14954,1.13972,1.14279,8562 +2020-03-09 02:00,1.1428,1.14603,1.14142,1.14571,5620 +2020-03-09 02:15,1.14564,1.14606,1.14217,1.14286,4659 +2020-03-09 02:30,1.14292,1.14388,1.14145,1.14164,2978 +2020-03-09 02:45,1.14163,1.14179,1.13863,1.13975,3245 +2020-03-09 03:00,1.13979,1.14023,1.13865,1.1387,2374 +2020-03-09 03:15,1.13873,1.13898,1.1371,1.13762,2777 +2020-03-09 03:30,1.13762,1.1412,1.13739,1.14091,1840 +2020-03-09 03:45,1.1409,1.14269,1.14013,1.14161,3094 +2020-03-09 04:00,1.14159,1.14233,1.14027,1.14166,2303 +2020-03-09 04:15,1.14165,1.14212,1.14012,1.14057,1897 +2020-03-09 04:30,1.1406,1.14093,1.13975,1.14037,874 +2020-03-09 04:45,1.14038,1.14083,1.13982,1.14011,1403 +2020-03-09 05:00,1.1401,1.14227,1.14001,1.14206,1507 +2020-03-09 05:15,1.14206,1.14251,1.14169,1.14172,1043 +2020-03-09 05:30,1.14171,1.14172,1.13876,1.13902,1414 +2020-03-09 05:45,1.13901,1.13982,1.13807,1.13816,1984 +2020-03-09 06:00,1.13815,1.14041,1.13813,1.14017,2712 +2020-03-09 06:15,1.14016,1.14093,1.13953,1.13993,1829 +2020-03-09 06:30,1.13993,1.1409,1.13937,1.13998,2258 +2020-03-09 06:45,1.13997,1.14071,1.13968,1.13994,1574 +2020-03-09 07:00,1.13995,1.14505,1.13995,1.14349,5302 +2020-03-09 07:15,1.14349,1.14644,1.14274,1.14615,6387 +2020-03-09 07:30,1.14615,1.14754,1.14559,1.14584,4917 +2020-03-09 07:45,1.14584,1.14659,1.14328,1.14384,4452 +2020-03-09 08:00,1.14387,1.14401,1.14158,1.14189,5336 +2020-03-09 08:15,1.14189,1.14293,1.14117,1.1426,3877 +2020-03-09 08:30,1.14259,1.14341,1.13901,1.14047,5604 +2020-03-09 08:45,1.14045,1.14203,1.13946,1.14023,4134 +2020-03-09 09:00,1.14023,1.14065,1.13744,1.13782,4899 +2020-03-09 09:15,1.13782,1.13844,1.13653,1.13692,3949 +2020-03-09 09:30,1.13692,1.13903,1.13676,1.13859,3143 +2020-03-09 09:45,1.13859,1.14029,1.13831,1.13912,2825 +2020-03-09 10:00,1.1391,1.14388,1.139,1.14327,3732 +2020-03-09 10:15,1.14332,1.14362,1.14118,1.14122,3731 +2020-03-09 10:30,1.14121,1.14155,1.14027,1.14103,3248 +2020-03-09 10:45,1.14104,1.14281,1.14104,1.1424,3075 +2020-03-09 11:00,1.14241,1.14289,1.14177,1.14208,3144 +2020-03-09 11:15,1.14208,1.14243,1.14162,1.14184,3091 +2020-03-09 11:30,1.14185,1.14222,1.14139,1.14145,3622 +2020-03-09 11:45,1.1415,1.14293,1.1409,1.14247,3732 +2020-03-09 12:00,1.14249,1.14385,1.14223,1.14298,3987 +2020-03-09 12:15,1.14298,1.143,1.14029,1.1403,4796 +2020-03-09 12:30,1.14031,1.14304,1.14029,1.14293,4980 +2020-03-09 12:45,1.14292,1.14362,1.14148,1.14356,3605 +2020-03-09 13:00,1.1436,1.14584,1.14302,1.14556,4420 +2020-03-09 13:15,1.14558,1.14698,1.14514,1.14577,4970 +2020-03-09 13:30,1.14577,1.14844,1.14575,1.14647,5559 +2020-03-09 13:45,1.14648,1.14657,1.1376,1.14014,8775 +2020-03-09 14:00,1.14011,1.14468,1.13997,1.14289,7147 +2020-03-09 14:15,1.14292,1.14393,1.14092,1.14188,6236 +2020-03-09 14:30,1.14189,1.14263,1.14084,1.14132,5134 +2020-03-09 14:45,1.14132,1.14383,1.14104,1.14343,4458 +2020-03-09 15:00,1.14346,1.1446,1.14292,1.1431,3829 +2020-03-09 15:15,1.14311,1.14452,1.14198,1.14205,4014 +2020-03-09 15:30,1.14207,1.14288,1.14137,1.14203,4084 +2020-03-09 15:45,1.14203,1.14262,1.1412,1.14195,4733 +2020-03-09 16:00,1.142,1.14395,1.14139,1.14332,3540 +2020-03-09 16:15,1.14331,1.14466,1.1426,1.14387,3489 +2020-03-09 16:30,1.14389,1.14693,1.14385,1.14633,4613 +2020-03-09 16:45,1.14633,1.14731,1.14538,1.14706,2875 +2020-03-09 17:00,1.14707,1.14714,1.1443,1.14522,3202 +2020-03-09 17:15,1.14523,1.14664,1.14519,1.14641,2919 +2020-03-09 17:30,1.1464,1.14707,1.14585,1.14681,2420 +2020-03-09 17:45,1.14678,1.1479,1.14591,1.14627,3487 +2020-03-09 18:00,1.14631,1.14707,1.14408,1.14453,3115 +2020-03-09 18:15,1.14452,1.14464,1.14272,1.14393,2844 +2020-03-09 18:30,1.14393,1.1473,1.14389,1.14697,2670 +2020-03-09 18:45,1.14698,1.14699,1.1454,1.14613,2355 +2020-03-09 19:00,1.14612,1.14664,1.14483,1.14622,2341 +2020-03-09 19:15,1.14623,1.14635,1.14439,1.14537,1239 +2020-03-09 19:30,1.14536,1.14606,1.14353,1.14417,2530 +2020-03-09 19:45,1.14415,1.14619,1.14399,1.14518,2262 +2020-03-09 20:00,1.14519,1.14658,1.14481,1.14635,1357 +2020-03-09 20:15,1.14634,1.1464,1.1447,1.14601,1265 +2020-03-09 20:30,1.14601,1.14602,1.14394,1.1442,969 +2020-03-09 20:45,1.14417,1.14514,1.14329,1.1439,1127 +2020-03-09 21:00,1.14285,1.14448,1.14211,1.1439,147 +2020-03-09 21:15,1.14442,1.14551,1.14369,1.14473,159 +2020-03-09 21:30,1.14474,1.1456,1.14444,1.14471,327 +2020-03-09 21:45,1.14468,1.14563,1.14368,1.14368,542 +2020-03-09 22:00,1.14464,1.14578,1.14333,1.14544,966 +2020-03-09 22:15,1.14543,1.14546,1.14475,1.14513,958 +2020-03-09 22:30,1.14513,1.14572,1.14455,1.14474,1228 +2020-03-09 22:45,1.14476,1.14483,1.14379,1.14382,1126 +2020-03-09 23:00,1.14384,1.14388,1.14202,1.14214,2053 +2020-03-09 23:15,1.14214,1.14258,1.14195,1.14201,643 +2020-03-09 23:30,1.14201,1.14222,1.14033,1.14038,1376 +2020-03-09 23:45,1.14036,1.14086,1.13948,1.13989,1473 +2020-03-10 00:00,1.13989,1.14251,1.13958,1.14102,2156 +2020-03-10 00:15,1.141,1.141,1.14001,1.14032,1389 +2020-03-10 00:30,1.14032,1.14035,1.1397,1.13971,1118 +2020-03-10 00:45,1.13971,1.13984,1.13767,1.13848,2238 +2020-03-10 01:00,1.13848,1.13947,1.13718,1.13911,2404 +2020-03-10 01:15,1.13912,1.13959,1.138,1.13859,1330 +2020-03-10 01:30,1.13859,1.14024,1.13833,1.14023,1570 +2020-03-10 01:45,1.14024,1.14138,1.13994,1.14066,1327 +2020-03-10 02:00,1.14068,1.1414,1.14013,1.14015,1237 +2020-03-10 02:15,1.14014,1.14042,1.1397,1.13977,1246 +2020-03-10 02:30,1.13978,1.14082,1.13974,1.14047,848 +2020-03-10 02:45,1.14047,1.14097,1.1404,1.14094,624 +2020-03-10 03:00,1.14098,1.14143,1.1407,1.14072,674 +2020-03-10 03:15,1.14072,1.14095,1.14022,1.14077,971 +2020-03-10 03:30,1.14077,1.14134,1.14019,1.14033,848 +2020-03-10 03:45,1.14033,1.14036,1.13888,1.13949,1767 +2020-03-10 04:00,1.13947,1.13991,1.13895,1.13964,773 +2020-03-10 04:15,1.13963,1.13979,1.13809,1.13833,1001 +2020-03-10 04:30,1.13836,1.13891,1.13783,1.13855,1303 +2020-03-10 04:45,1.13854,1.13854,1.13741,1.13751,764 +2020-03-10 05:00,1.13754,1.13765,1.13556,1.13598,2081 +2020-03-10 05:15,1.13599,1.13609,1.13508,1.13519,1855 +2020-03-10 05:30,1.13521,1.13605,1.13375,1.13598,1943 +2020-03-10 05:45,1.13597,1.13613,1.13319,1.13414,1860 +2020-03-10 06:00,1.13412,1.13733,1.13394,1.13671,3101 +2020-03-10 06:15,1.13673,1.13721,1.1356,1.13587,2288 +2020-03-10 06:30,1.13586,1.13587,1.13451,1.13487,2280 +2020-03-10 06:45,1.13484,1.13608,1.13386,1.134,4056 +2020-03-10 07:00,1.13401,1.13587,1.13375,1.1349,4221 +2020-03-10 07:15,1.1349,1.13667,1.13466,1.13614,3241 +2020-03-10 07:30,1.13614,1.13695,1.13444,1.13677,3750 +2020-03-10 07:45,1.13677,1.13865,1.13632,1.13818,3823 +2020-03-10 08:00,1.13818,1.1401,1.13814,1.13936,5197 +2020-03-10 08:15,1.13937,1.13968,1.13795,1.13872,4239 +2020-03-10 08:30,1.13872,1.13945,1.13768,1.13774,3832 +2020-03-10 08:45,1.13774,1.13795,1.13578,1.13598,3665 +2020-03-10 09:00,1.13598,1.13732,1.1353,1.13702,2744 +2020-03-10 09:15,1.13701,1.13726,1.13524,1.13555,3137 +2020-03-10 09:30,1.13555,1.13598,1.13452,1.13465,3507 +2020-03-10 09:45,1.13464,1.13578,1.13431,1.13511,2999 +2020-03-10 10:00,1.13513,1.13543,1.1344,1.13469,2390 +2020-03-10 10:15,1.13468,1.13568,1.13459,1.13528,2547 +2020-03-10 10:30,1.13531,1.13541,1.13392,1.1341,2666 +2020-03-10 10:45,1.13407,1.13541,1.13359,1.13531,3153 +2020-03-10 11:00,1.13532,1.13592,1.135,1.13522,3596 +2020-03-10 11:15,1.13521,1.13661,1.13453,1.13631,3639 +2020-03-10 11:30,1.13629,1.13651,1.13494,1.13502,2940 +2020-03-10 11:45,1.13503,1.13658,1.135,1.13598,2932 +2020-03-10 12:00,1.13599,1.1384,1.13543,1.13741,4595 +2020-03-10 12:15,1.13745,1.13851,1.13699,1.13833,3746 +2020-03-10 12:30,1.13835,1.13897,1.13723,1.13856,4001 +2020-03-10 12:45,1.13856,1.13895,1.13736,1.138,5158 +2020-03-10 13:00,1.13799,1.13901,1.13758,1.13897,3330 +2020-03-10 13:15,1.139,1.13942,1.13705,1.1371,4533 +2020-03-10 13:30,1.1371,1.13826,1.13676,1.13726,6515 +2020-03-10 13:45,1.13725,1.13781,1.13665,1.13719,4338 +2020-03-10 14:00,1.1372,1.13768,1.13577,1.13579,4511 +2020-03-10 14:15,1.1358,1.13674,1.13501,1.1359,3846 +2020-03-10 14:30,1.13591,1.13723,1.13568,1.13626,3700 +2020-03-10 14:45,1.13624,1.13737,1.13577,1.13707,4272 +2020-03-10 15:00,1.13707,1.13769,1.13604,1.1365,4637 +2020-03-10 15:15,1.13651,1.13857,1.13634,1.13838,4898 +2020-03-10 15:30,1.13837,1.13849,1.13674,1.13733,5073 +2020-03-10 15:45,1.13733,1.13759,1.13369,1.13419,5719 +2020-03-10 16:00,1.13418,1.13585,1.1338,1.13387,6556 +2020-03-10 16:15,1.13388,1.13434,1.13165,1.13388,5483 +2020-03-10 16:30,1.13388,1.13431,1.13091,1.13207,4671 +2020-03-10 16:45,1.13203,1.1322,1.12964,1.13059,4951 +2020-03-10 17:00,1.13057,1.13145,1.1303,1.13097,5539 +2020-03-10 17:15,1.13098,1.13185,1.13047,1.13132,3740 +2020-03-10 17:30,1.1313,1.13247,1.13052,1.13199,3348 +2020-03-10 17:45,1.13199,1.13276,1.13147,1.13161,2982 +2020-03-10 18:00,1.13159,1.13309,1.13073,1.13112,3716 +2020-03-10 18:15,1.1311,1.13123,1.12967,1.13016,3299 +2020-03-10 18:30,1.13018,1.13057,1.12906,1.1291,2648 +2020-03-10 18:45,1.12911,1.12981,1.12856,1.12951,3979 +2020-03-10 19:00,1.12941,1.12954,1.12791,1.12818,3826 +2020-03-10 19:15,1.12818,1.1298,1.12749,1.12971,4191 +2020-03-10 19:30,1.12971,1.13012,1.12895,1.12981,3223 +2020-03-10 19:45,1.12981,1.13023,1.12859,1.13002,2666 +2020-03-10 20:00,1.12998,1.13072,1.12963,1.13072,1115 +2020-03-10 20:15,1.13073,1.13073,1.12874,1.12888,1227 +2020-03-10 20:30,1.1289,1.12897,1.12823,1.12837,924 +2020-03-10 20:45,1.12836,1.12864,1.12788,1.12794,1201 +2020-03-10 21:00,1.12802,1.12881,1.12762,1.12881,101 +2020-03-10 21:15,1.12882,1.12934,1.12813,1.12873,159 +2020-03-10 21:30,1.12871,1.12897,1.12779,1.12793,105 +2020-03-10 21:45,1.12793,1.12941,1.12772,1.12916,206 +2020-03-10 22:00,1.12916,1.12987,1.12866,1.12987,1245 +2020-03-10 22:15,1.12989,1.13036,1.12949,1.13006,1146 +2020-03-10 22:30,1.13013,1.13013,1.12964,1.12986,371 +2020-03-10 22:45,1.12987,1.13097,1.12986,1.13086,727 +2020-03-10 23:00,1.13085,1.13088,1.13044,1.13046,696 +2020-03-10 23:15,1.13049,1.13052,1.13002,1.13003,806 +2020-03-10 23:30,1.13003,1.13095,1.13001,1.13095,586 +2020-03-10 23:45,1.13098,1.13233,1.13095,1.13136,1506 +2020-03-11 00:00,1.13136,1.13176,1.13016,1.13038,1590 +2020-03-11 00:15,1.13039,1.13104,1.13039,1.13082,1087 +2020-03-11 00:30,1.13081,1.13198,1.13074,1.13191,1591 +2020-03-11 00:45,1.13193,1.13255,1.1316,1.13182,1355 +2020-03-11 01:00,1.13183,1.13184,1.13094,1.13155,1822 +2020-03-11 01:15,1.13154,1.13233,1.13132,1.13221,1274 +2020-03-11 01:30,1.1322,1.13283,1.13187,1.13268,1354 +2020-03-11 01:45,1.13268,1.13273,1.13222,1.13238,1100 +2020-03-11 02:00,1.13239,1.13283,1.13212,1.13219,1112 +2020-03-11 02:15,1.13219,1.13258,1.13186,1.13192,1025 +2020-03-11 02:30,1.13191,1.1324,1.13157,1.13219,1190 +2020-03-11 02:45,1.13219,1.13256,1.13202,1.13244,568 +2020-03-11 03:00,1.13245,1.13274,1.13209,1.13218,858 +2020-03-11 03:15,1.13217,1.13278,1.13191,1.13256,736 +2020-03-11 03:30,1.13255,1.13382,1.1325,1.13333,1384 +2020-03-11 03:45,1.13334,1.13362,1.1327,1.13292,1303 +2020-03-11 04:00,1.13292,1.13326,1.13281,1.13323,867 +2020-03-11 04:15,1.13323,1.13345,1.13301,1.13345,535 +2020-03-11 04:30,1.13342,1.13377,1.13336,1.13344,761 +2020-03-11 04:45,1.13343,1.13387,1.13336,1.13374,827 +2020-03-11 05:00,1.13373,1.13484,1.13373,1.13448,1584 +2020-03-11 05:15,1.13449,1.13496,1.13429,1.13432,902 +2020-03-11 05:30,1.13432,1.13477,1.13422,1.13427,1153 +2020-03-11 05:45,1.13427,1.13514,1.13409,1.13507,839 +2020-03-11 06:00,1.13506,1.13516,1.13442,1.13513,1891 +2020-03-11 06:15,1.13512,1.13585,1.13473,1.13475,1988 +2020-03-11 06:30,1.13472,1.13588,1.13469,1.13585,1574 +2020-03-11 06:45,1.13582,1.13651,1.1356,1.13637,1527 +2020-03-11 07:00,1.1364,1.13667,1.1341,1.13411,5270 +2020-03-11 07:15,1.13413,1.13487,1.13359,1.1346,3094 +2020-03-11 07:30,1.1346,1.13504,1.13387,1.13403,2642 +2020-03-11 07:45,1.13404,1.13411,1.13267,1.13287,3468 +2020-03-11 08:00,1.13287,1.13334,1.13141,1.13153,4344 +2020-03-11 08:15,1.13151,1.13279,1.13119,1.13248,3339 +2020-03-11 08:30,1.13247,1.13293,1.13173,1.13236,3009 +2020-03-11 08:45,1.13236,1.13248,1.13092,1.13132,3358 +2020-03-11 09:00,1.13132,1.13333,1.13108,1.13163,3289 +2020-03-11 09:15,1.13163,1.13244,1.13135,1.13169,2865 +2020-03-11 09:30,1.1317,1.13317,1.13066,1.13068,2518 +2020-03-11 09:45,1.1307,1.13099,1.13013,1.13038,2987 +2020-03-11 10:00,1.13039,1.13186,1.13038,1.13177,2399 +2020-03-11 10:15,1.13177,1.13208,1.13137,1.13165,2203 +2020-03-11 10:30,1.13167,1.13266,1.1312,1.13203,3028 +2020-03-11 10:45,1.13203,1.13288,1.13153,1.13268,2268 +2020-03-11 11:00,1.13269,1.13316,1.13229,1.13298,2322 +2020-03-11 11:15,1.13298,1.13387,1.13267,1.13374,2569 +2020-03-11 11:30,1.13374,1.1339,1.13306,1.13306,1673 +2020-03-11 11:45,1.13307,1.13368,1.13235,1.13289,1943 +2020-03-11 12:00,1.13291,1.13484,1.13254,1.13423,3791 +2020-03-11 12:15,1.13422,1.13513,1.13348,1.13479,3672 +2020-03-11 12:30,1.13479,1.135,1.1343,1.135,2888 +2020-03-11 12:45,1.135,1.13506,1.13379,1.1339,3156 +2020-03-11 13:00,1.13391,1.1342,1.13308,1.13362,2804 +2020-03-11 13:15,1.13363,1.13407,1.13328,1.13362,2219 +2020-03-11 13:30,1.13362,1.13489,1.13333,1.13381,3603 +2020-03-11 13:45,1.1338,1.13517,1.13365,1.13449,2914 +2020-03-11 14:00,1.13449,1.13483,1.13192,1.13202,3549 +2020-03-11 14:15,1.13203,1.13299,1.13163,1.13298,3309 +2020-03-11 14:30,1.13298,1.13315,1.13184,1.13259,3210 +2020-03-11 14:45,1.1326,1.1327,1.13067,1.1307,3757 +2020-03-11 15:00,1.13068,1.1309,1.12825,1.12831,3588 +2020-03-11 15:15,1.12829,1.12907,1.12748,1.12858,4160 +2020-03-11 15:30,1.12857,1.129,1.12624,1.12723,4002 +2020-03-11 15:45,1.12722,1.12818,1.12573,1.12801,4211 +2020-03-11 16:00,1.128,1.12807,1.12602,1.12648,3630 +2020-03-11 16:15,1.12649,1.12764,1.12605,1.12759,5037 +2020-03-11 16:30,1.1276,1.12765,1.12672,1.12676,2379 +2020-03-11 16:45,1.12675,1.12738,1.12644,1.12688,2691 +2020-03-11 17:00,1.12687,1.12802,1.12666,1.12783,2976 +2020-03-11 17:15,1.12782,1.12877,1.12763,1.12823,2428 +2020-03-11 17:30,1.12821,1.12884,1.12749,1.12846,2072 +2020-03-11 17:45,1.12847,1.12863,1.12751,1.12846,2417 +2020-03-11 18:00,1.12846,1.1288,1.12781,1.12853,1560 +2020-03-11 18:15,1.12853,1.12857,1.12776,1.12789,1435 +2020-03-11 18:30,1.12792,1.12816,1.12742,1.12795,2509 +2020-03-11 18:45,1.12797,1.12824,1.12718,1.12818,2118 +2020-03-11 19:00,1.12817,1.1283,1.127,1.12766,3052 +2020-03-11 19:15,1.12766,1.12796,1.12686,1.12697,2300 +2020-03-11 19:30,1.12699,1.12804,1.1269,1.12724,2400 +2020-03-11 19:45,1.12724,1.12791,1.12715,1.12726,2045 +2020-03-11 20:00,1.12726,1.12798,1.12722,1.12791,734 +2020-03-11 20:15,1.12792,1.12792,1.12727,1.12759,550 +2020-03-11 20:30,1.12761,1.12776,1.12735,1.12751,270 +2020-03-11 20:45,1.1275,1.12756,1.12674,1.12682,1317 +2020-03-11 21:00,1.12682,1.12688,1.12604,1.12618,629 +2020-03-11 21:15,1.12613,1.12613,1.12517,1.12529,306 +2020-03-11 21:30,1.12528,1.12599,1.12517,1.12567,171 +2020-03-11 21:45,1.12567,1.12617,1.12501,1.12607,156 +2020-03-11 22:00,1.12604,1.12667,1.12586,1.12649,908 +2020-03-11 22:15,1.12648,1.12658,1.12542,1.12559,674 +2020-03-11 22:30,1.12559,1.12602,1.12557,1.12596,927 +2020-03-11 22:45,1.12596,1.12607,1.12574,1.12584,634 +2020-03-11 23:00,1.12585,1.12591,1.1254,1.12566,1029 +2020-03-11 23:15,1.12571,1.12627,1.12568,1.12619,565 +2020-03-11 23:30,1.1262,1.12621,1.12571,1.12576,565 +2020-03-11 23:45,1.12573,1.12631,1.1257,1.12611,569 +2020-03-12 00:00,1.12612,1.12702,1.12593,1.12657,847 +2020-03-12 00:15,1.12657,1.12741,1.12656,1.12738,840 +2020-03-12 00:30,1.12738,1.12761,1.12721,1.12738,881 +2020-03-12 00:45,1.12737,1.12756,1.12702,1.12714,676 +2020-03-12 01:00,1.12714,1.12819,1.1266,1.12813,3250 +2020-03-12 01:15,1.12812,1.132,1.12812,1.13189,3873 +2020-03-12 01:30,1.13186,1.13336,1.13173,1.13291,4042 +2020-03-12 01:45,1.13291,1.1331,1.13125,1.1319,2866 +2020-03-12 02:00,1.1319,1.13318,1.13146,1.13165,3057 +2020-03-12 02:15,1.13166,1.13264,1.13129,1.13184,2466 +2020-03-12 02:30,1.13184,1.13206,1.13054,1.13139,2736 +2020-03-12 02:45,1.13138,1.13211,1.13129,1.13208,1324 +2020-03-12 03:00,1.13207,1.13208,1.13075,1.13124,1460 +2020-03-12 03:15,1.13125,1.13184,1.13113,1.13129,1320 +2020-03-12 03:30,1.13131,1.13199,1.13104,1.13141,1433 +2020-03-12 03:45,1.1314,1.13144,1.1311,1.1313,590 +2020-03-12 04:00,1.13131,1.13134,1.13028,1.13069,1287 +2020-03-12 04:15,1.13074,1.13074,1.1293,1.12961,1377 +2020-03-12 04:30,1.12961,1.12961,1.12855,1.12898,2522 +2020-03-12 04:45,1.12898,1.12976,1.12888,1.12957,1098 +2020-03-12 05:00,1.12957,1.12974,1.12916,1.12967,1154 +2020-03-12 05:15,1.12965,1.12991,1.12949,1.12986,704 +2020-03-12 05:30,1.12985,1.12986,1.12926,1.12949,741 +2020-03-12 05:45,1.1295,1.1295,1.1291,1.1293,973 +2020-03-12 06:00,1.1293,1.12963,1.12855,1.12889,1257 +2020-03-12 06:15,1.1289,1.12975,1.12877,1.1293,1093 +2020-03-12 06:30,1.12931,1.12956,1.12875,1.129,1038 +2020-03-12 06:45,1.12898,1.12949,1.12859,1.12926,1725 +2020-03-12 07:00,1.12926,1.13019,1.1289,1.12973,3556 +2020-03-12 07:15,1.12973,1.13045,1.12919,1.13025,3634 +2020-03-12 07:30,1.13024,1.13195,1.12948,1.13181,3336 +2020-03-12 07:45,1.1318,1.13188,1.13074,1.1312,1801 +2020-03-12 08:00,1.13116,1.13129,1.12957,1.13047,2707 +2020-03-12 08:15,1.13046,1.13127,1.12643,1.12687,3301 +2020-03-12 08:30,1.12688,1.12707,1.12541,1.12569,3288 +2020-03-12 08:45,1.12571,1.12686,1.12536,1.12675,2639 +2020-03-12 09:00,1.12675,1.12776,1.12662,1.12715,2252 +2020-03-12 09:15,1.12713,1.12714,1.12551,1.12579,2540 +2020-03-12 09:30,1.12579,1.12667,1.12534,1.1255,1707 +2020-03-12 09:45,1.1255,1.12574,1.12372,1.12444,3696 +2020-03-12 10:00,1.12444,1.12458,1.12282,1.12287,2479 +2020-03-12 10:15,1.12287,1.12364,1.12273,1.12308,2635 +2020-03-12 10:30,1.12307,1.12432,1.12294,1.12358,2865 +2020-03-12 10:45,1.1236,1.12411,1.12309,1.12334,2332 +2020-03-12 11:00,1.12335,1.12427,1.12308,1.12318,2026 +2020-03-12 11:15,1.12318,1.12325,1.12163,1.12167,1935 +2020-03-12 11:30,1.12167,1.12235,1.12115,1.12212,2821 +2020-03-12 11:45,1.12212,1.12381,1.12203,1.1237,2415 +2020-03-12 12:00,1.12373,1.12582,1.12364,1.12426,4868 +2020-03-12 12:15,1.12427,1.12492,1.12091,1.12137,6647 +2020-03-12 12:30,1.12137,1.12304,1.12041,1.1206,4894 +2020-03-12 12:45,1.1206,1.13013,1.11977,1.1215,7949 +2020-03-12 13:00,1.12147,1.12532,1.12104,1.12396,5790 +2020-03-12 13:15,1.12391,1.12524,1.12141,1.12332,3954 +2020-03-12 13:30,1.12343,1.12437,1.12154,1.12421,3705 +2020-03-12 13:45,1.12421,1.12467,1.12152,1.12391,4220 +2020-03-12 14:00,1.12392,1.12392,1.11317,1.11613,7146 +2020-03-12 14:15,1.11613,1.11797,1.11355,1.11738,6815 +2020-03-12 14:30,1.11738,1.11797,1.11411,1.11479,4691 +2020-03-12 14:45,1.11486,1.1161,1.11413,1.11448,4639 +2020-03-12 15:00,1.11444,1.11487,1.11079,1.11095,5446 +2020-03-12 15:15,1.11095,1.11451,1.1107,1.11377,6905 +2020-03-12 15:30,1.1138,1.1138,1.10896,1.10926,5804 +2020-03-12 15:45,1.10929,1.11084,1.10803,1.10814,5132 +2020-03-12 16:00,1.10817,1.10841,1.1055,1.10661,5972 +2020-03-12 16:15,1.10653,1.10832,1.10576,1.10825,4761 +2020-03-12 16:30,1.10824,1.11056,1.10823,1.10952,5646 +2020-03-12 16:45,1.10952,1.1164,1.10906,1.11461,6091 +2020-03-12 17:00,1.1146,1.11834,1.11438,1.11594,6443 +2020-03-12 17:15,1.11594,1.11863,1.11462,1.11819,3740 +2020-03-12 17:30,1.11821,1.11963,1.11776,1.11802,3688 +2020-03-12 17:45,1.11801,1.11932,1.11692,1.11854,3452 +2020-03-12 18:00,1.11855,1.12166,1.11844,1.11962,2609 +2020-03-12 18:15,1.11962,1.1213,1.11661,1.11703,2411 +2020-03-12 18:30,1.11703,1.11972,1.11634,1.11942,2207 +2020-03-12 18:45,1.11942,1.11944,1.11751,1.11773,2009 +2020-03-12 19:00,1.11772,1.1188,1.11706,1.1188,1828 +2020-03-12 19:15,1.11881,1.11906,1.11736,1.11894,1726 +2020-03-12 19:30,1.11894,1.12018,1.11877,1.1198,1953 +2020-03-12 19:45,1.11978,1.12017,1.11767,1.11806,2522 +2020-03-12 20:00,1.11803,1.12187,1.11763,1.12184,1291 +2020-03-12 20:15,1.12185,1.12263,1.11695,1.117,1826 +2020-03-12 20:30,1.11702,1.11939,1.11647,1.11729,1957 +2020-03-12 20:45,1.11729,1.11874,1.11599,1.11848,1547 +2020-03-12 21:00,1.11848,1.1204,1.1184,1.1193,100 +2020-03-12 21:15,1.11927,1.1196,1.11687,1.11689,167 +2020-03-12 21:30,1.11689,1.11782,1.11633,1.1176,984 +2020-03-12 21:45,1.11753,1.11818,1.11617,1.11676,646 +2020-03-12 22:00,1.11672,1.11894,1.11672,1.11731,1287 +2020-03-12 22:15,1.11728,1.11827,1.11687,1.11694,1015 +2020-03-12 22:30,1.11693,1.11772,1.1166,1.1169,1197 +2020-03-12 22:45,1.11692,1.11866,1.11677,1.11762,1603 +2020-03-12 23:00,1.11767,1.11846,1.11742,1.11789,1181 +2020-03-12 23:15,1.1179,1.118,1.11757,1.11797,792 +2020-03-12 23:30,1.11796,1.11882,1.11781,1.1184,402 +2020-03-12 23:45,1.11837,1.11864,1.11818,1.11823,400 +2020-03-13 00:00,1.11822,1.11827,1.11611,1.11634,2092 +2020-03-13 00:15,1.11634,1.11676,1.11522,1.11567,1634 +2020-03-13 00:30,1.11566,1.11606,1.11536,1.1156,2294 +2020-03-13 00:45,1.1156,1.11676,1.11554,1.11661,1631 +2020-03-13 01:00,1.11662,1.11717,1.11656,1.11693,824 +2020-03-13 01:15,1.11692,1.11865,1.11686,1.11861,1838 +2020-03-13 01:30,1.11858,1.11867,1.11823,1.11845,1123 +2020-03-13 01:45,1.11845,1.11884,1.11817,1.11866,1073 +2020-03-13 02:00,1.11863,1.11863,1.11771,1.11815,1143 +2020-03-13 02:15,1.11813,1.11857,1.11766,1.11828,649 +2020-03-13 02:30,1.11829,1.11873,1.11797,1.11836,1522 +2020-03-13 02:45,1.11838,1.12076,1.11834,1.12071,3680 +2020-03-13 03:00,1.12071,1.12087,1.11909,1.11926,3692 +2020-03-13 03:15,1.11925,1.12054,1.11899,1.11986,1858 +2020-03-13 03:30,1.11986,1.12046,1.11981,1.1204,1098 +2020-03-13 03:45,1.12038,1.12178,1.12028,1.12132,1255 +2020-03-13 04:00,1.12133,1.12147,1.12083,1.12084,605 +2020-03-13 04:15,1.12083,1.12089,1.12049,1.12066,975 +2020-03-13 04:30,1.12067,1.12177,1.12049,1.12171,1650 +2020-03-13 04:45,1.1217,1.12213,1.12113,1.12189,1159 +2020-03-13 05:00,1.1219,1.12206,1.12138,1.12171,2348 +2020-03-13 05:15,1.12172,1.12177,1.12059,1.12061,1902 +2020-03-13 05:30,1.12063,1.12064,1.11948,1.12055,2112 +2020-03-13 05:45,1.12055,1.12083,1.12006,1.12022,1994 +2020-03-13 06:00,1.12023,1.12092,1.11968,1.12064,2305 +2020-03-13 06:15,1.12063,1.12082,1.11903,1.11959,2848 +2020-03-13 06:30,1.11958,1.12082,1.11958,1.1204,2029 +2020-03-13 06:45,1.1204,1.12059,1.11969,1.11979,1570 +2020-03-13 07:00,1.1198,1.12081,1.11886,1.11936,3430 +2020-03-13 07:15,1.11935,1.11947,1.117,1.118,4476 +2020-03-13 07:30,1.11801,1.11922,1.11744,1.11854,4399 +2020-03-13 07:45,1.11853,1.1188,1.11621,1.11815,2679 +2020-03-13 08:00,1.11812,1.11959,1.11755,1.11941,3467 +2020-03-13 08:15,1.11943,1.12042,1.11781,1.11852,2573 +2020-03-13 08:30,1.11854,1.12056,1.11851,1.12047,2851 +2020-03-13 08:45,1.12048,1.1214,1.11962,1.12072,2261 +2020-03-13 09:00,1.12074,1.12078,1.11917,1.12004,2057 +2020-03-13 09:15,1.12005,1.12023,1.11806,1.11814,2228 +2020-03-13 09:30,1.11817,1.11881,1.11707,1.11733,1724 +2020-03-13 09:45,1.11732,1.11732,1.11607,1.11649,2098 +2020-03-13 10:00,1.1165,1.11702,1.11603,1.11635,2176 +2020-03-13 10:15,1.11635,1.11729,1.11604,1.11672,1812 +2020-03-13 10:30,1.11672,1.11688,1.11529,1.11566,2260 +2020-03-13 10:45,1.11566,1.11652,1.11536,1.11591,1814 +2020-03-13 11:00,1.1159,1.11649,1.11483,1.11489,2519 +2020-03-13 11:15,1.11489,1.11753,1.11484,1.11719,2262 +2020-03-13 11:30,1.11719,1.11736,1.11452,1.11452,2560 +2020-03-13 11:45,1.11453,1.11604,1.11395,1.11549,3027 +2020-03-13 12:00,1.11545,1.11862,1.11513,1.11557,5432 +2020-03-13 12:15,1.11557,1.11684,1.11501,1.11539,4187 +2020-03-13 12:30,1.11544,1.11567,1.1135,1.11447,4781 +2020-03-13 12:45,1.11447,1.11472,1.1109,1.11101,4971 +2020-03-13 13:00,1.111,1.11189,1.11031,1.11037,5168 +2020-03-13 13:15,1.11036,1.11193,1.11036,1.11105,4711 +2020-03-13 13:30,1.11105,1.11186,1.11062,1.11175,5877 +2020-03-13 13:45,1.11178,1.11272,1.11133,1.11237,5177 +2020-03-13 14:00,1.11236,1.11332,1.11112,1.11147,5847 +2020-03-13 14:15,1.11144,1.11264,1.11026,1.11093,5051 +2020-03-13 14:30,1.11095,1.11132,1.10984,1.11039,4476 +2020-03-13 14:45,1.1104,1.11163,1.10977,1.11078,3988 +2020-03-13 15:00,1.11078,1.11171,1.10997,1.11084,2463 +2020-03-13 15:15,1.11082,1.11199,1.11039,1.1119,2682 +2020-03-13 15:30,1.11189,1.11198,1.10937,1.10947,3648 +2020-03-13 15:45,1.10949,1.11123,1.10664,1.10696,4751 +2020-03-13 16:00,1.10697,1.10875,1.10622,1.10759,4886 +2020-03-13 16:15,1.10758,1.10875,1.10693,1.10814,3401 +2020-03-13 16:30,1.10815,1.10851,1.1055,1.1055,4827 +2020-03-13 16:45,1.10551,1.10823,1.1055,1.10809,4741 +2020-03-13 17:00,1.10809,1.11061,1.108,1.1095,4292 +2020-03-13 17:15,1.1095,1.11068,1.10838,1.10871,2182 +2020-03-13 17:30,1.1087,1.10987,1.10696,1.1071,2806 +2020-03-13 17:45,1.10712,1.10823,1.10574,1.10804,3810 +2020-03-13 18:00,1.10804,1.11017,1.10764,1.10903,2915 +2020-03-13 18:15,1.10901,1.10906,1.10708,1.10717,2584 +2020-03-13 18:30,1.10717,1.10883,1.10713,1.10817,3026 +2020-03-13 18:45,1.10817,1.10897,1.10626,1.10688,2753 +2020-03-13 19:00,1.10687,1.10782,1.1065,1.10705,2199 +2020-03-13 19:15,1.10707,1.10761,1.10609,1.10651,1360 +2020-03-13 19:30,1.10653,1.10725,1.10572,1.107,2464 +2020-03-13 19:45,1.10697,1.11151,1.10643,1.11135,1785 +2020-03-13 20:00,1.11136,1.11174,1.10811,1.10812,1395 +2020-03-13 20:15,1.10809,1.10982,1.108,1.10964,1037 +2020-03-13 20:30,1.10964,1.11165,1.10952,1.11088,1179 +2020-03-13 20:45,1.11087,1.11161,1.1098,1.10992,1200 +2020-03-15 21:00,1.10705,1.11724,1.10705,1.11413,312 +2020-03-15 21:15,1.11413,1.11913,1.11196,1.11888,269 +2020-03-15 21:30,1.11888,1.11953,1.11657,1.11854,216 +2020-03-15 21:45,1.11855,1.11996,1.11794,1.119,259 +2020-03-15 22:00,1.119,1.11985,1.11679,1.11783,969 +2020-03-15 22:15,1.11786,1.11799,1.11413,1.11605,2980 +2020-03-15 22:30,1.11605,1.11791,1.11548,1.11657,5174 +2020-03-15 22:45,1.11657,1.11693,1.11408,1.1157,5160 +2020-03-15 23:00,1.1157,1.11719,1.1154,1.11693,3667 +2020-03-15 23:15,1.11693,1.11826,1.11659,1.11785,3731 +2020-03-15 23:30,1.11788,1.11941,1.11754,1.11929,5012 +2020-03-15 23:45,1.1193,1.1194,1.11501,1.1156,2979 +2020-03-16 00:00,1.1156,1.1164,1.11333,1.11521,3944 +2020-03-16 00:15,1.11521,1.11689,1.11518,1.11604,3134 +2020-03-16 00:30,1.11603,1.11605,1.11176,1.11286,2837 +2020-03-16 00:45,1.11287,1.11346,1.1116,1.11177,3332 +2020-03-16 01:00,1.11177,1.1122,1.11049,1.11054,2999 +2020-03-16 01:15,1.11063,1.11125,1.10849,1.10962,3904 +2020-03-16 01:30,1.10962,1.11075,1.10962,1.11012,3060 +2020-03-16 01:45,1.1101,1.1106,1.10996,1.11014,1068 +2020-03-16 02:00,1.11019,1.11079,1.10993,1.11048,1083 +2020-03-16 02:15,1.11048,1.11076,1.1096,1.11053,1089 +2020-03-16 02:30,1.11052,1.11055,1.1096,1.10965,727 +2020-03-16 02:45,1.10964,1.11071,1.10887,1.11029,1000 +2020-03-16 03:00,1.11027,1.11129,1.10905,1.11094,1760 +2020-03-16 03:15,1.11099,1.11196,1.11085,1.1117,1279 +2020-03-16 03:30,1.11169,1.1117,1.11093,1.11106,592 +2020-03-16 03:45,1.11105,1.1129,1.11059,1.11242,1466 +2020-03-16 04:00,1.11242,1.11292,1.11169,1.11192,795 +2020-03-16 04:15,1.11193,1.11198,1.1109,1.11114,576 +2020-03-16 04:30,1.11113,1.11205,1.11109,1.11184,881 +2020-03-16 04:45,1.11186,1.11337,1.11183,1.11333,543 +2020-03-16 05:00,1.11331,1.11342,1.11084,1.11222,1446 +2020-03-16 05:15,1.11221,1.11282,1.11145,1.112,1259 +2020-03-16 05:30,1.112,1.11256,1.11169,1.11201,1372 +2020-03-16 05:45,1.112,1.1131,1.11177,1.11185,1113 +2020-03-16 06:00,1.11185,1.1136,1.11168,1.11314,3242 +2020-03-16 06:15,1.11314,1.1143,1.11302,1.11372,3502 +2020-03-16 06:30,1.1137,1.11534,1.1134,1.1148,2275 +2020-03-16 06:45,1.11481,1.11503,1.11318,1.11396,2739 +2020-03-16 07:00,1.11395,1.11526,1.11367,1.11461,4371 +2020-03-16 07:15,1.11462,1.11589,1.11284,1.11293,4423 +2020-03-16 07:30,1.11291,1.11719,1.11288,1.11675,3605 +2020-03-16 07:45,1.11676,1.11814,1.11587,1.11761,4191 +2020-03-16 08:00,1.11762,1.11947,1.11677,1.1186,4142 +2020-03-16 08:15,1.11863,1.12093,1.11851,1.1209,5192 +2020-03-16 08:30,1.1209,1.1224,1.12009,1.12082,4729 +2020-03-16 08:45,1.12081,1.12295,1.12015,1.12256,4466 +2020-03-16 09:00,1.1226,1.12366,1.12185,1.12357,4127 +2020-03-16 09:15,1.12358,1.12364,1.12102,1.12105,4728 +2020-03-16 09:30,1.12105,1.12105,1.1195,1.11955,2610 +2020-03-16 09:45,1.11955,1.11958,1.119,1.11927,2357 +2020-03-16 10:00,1.1193,1.12084,1.11912,1.11949,3193 +2020-03-16 10:15,1.11949,1.11968,1.11421,1.11696,4756 +2020-03-16 10:30,1.11698,1.12013,1.11677,1.11835,3244 +2020-03-16 10:45,1.11834,1.11873,1.11555,1.11654,3663 +2020-03-16 11:00,1.11655,1.11708,1.11556,1.11704,2905 +2020-03-16 11:15,1.11705,1.11716,1.11505,1.11618,2951 +2020-03-16 11:30,1.11614,1.11714,1.11539,1.11642,3132 +2020-03-16 11:45,1.11642,1.11859,1.11639,1.11857,4133 +2020-03-16 12:00,1.1186,1.12004,1.11827,1.11968,4837 +2020-03-16 12:15,1.1197,1.11984,1.1175,1.11826,5028 +2020-03-16 12:30,1.11831,1.11931,1.11653,1.11694,6123 +2020-03-16 12:45,1.11694,1.11766,1.11545,1.11659,6426 +2020-03-16 13:00,1.1166,1.11681,1.11495,1.11563,6257 +2020-03-16 13:15,1.11563,1.11571,1.11228,1.11241,6431 +2020-03-16 13:30,1.11241,1.11535,1.11099,1.11483,5853 +2020-03-16 13:45,1.11483,1.1162,1.1134,1.11489,8807 +2020-03-16 14:00,1.11487,1.11595,1.11254,1.11272,7391 +2020-03-16 14:15,1.11275,1.11471,1.11172,1.11333,6784 +2020-03-16 14:30,1.11332,1.11397,1.112,1.11221,3433 +2020-03-16 14:45,1.11224,1.11224,1.11012,1.11023,3462 +2020-03-16 15:00,1.11022,1.11215,1.10942,1.11178,3290 +2020-03-16 15:15,1.11181,1.11399,1.11172,1.11381,2904 +2020-03-16 15:30,1.11381,1.1144,1.11247,1.11422,2957 +2020-03-16 15:45,1.11419,1.1145,1.11305,1.11371,3107 +2020-03-16 16:00,1.11366,1.11597,1.11363,1.11592,3269 +2020-03-16 16:15,1.11593,1.11617,1.11475,1.11506,2316 +2020-03-16 16:30,1.11506,1.11608,1.11422,1.1148,3880 +2020-03-16 16:45,1.11485,1.11629,1.1139,1.11612,2187 +2020-03-16 17:00,1.11612,1.11688,1.11551,1.11551,4686 +2020-03-16 17:15,1.11551,1.1165,1.11453,1.11522,4475 +2020-03-16 17:30,1.11523,1.11707,1.11501,1.11706,3367 +2020-03-16 17:45,1.11705,1.11774,1.11578,1.11589,3626 +2020-03-16 18:00,1.11588,1.11773,1.11572,1.11735,2542 +2020-03-16 18:15,1.11736,1.11736,1.116,1.11701,2357 +2020-03-16 18:30,1.117,1.11713,1.11532,1.11536,2286 +2020-03-16 18:45,1.11538,1.11722,1.11509,1.11701,2778 +2020-03-16 19:00,1.11701,1.11701,1.11524,1.11569,4024 +2020-03-16 19:15,1.11569,1.11648,1.11522,1.11569,3214 +2020-03-16 19:30,1.11569,1.11712,1.11569,1.11656,3065 +2020-03-16 19:45,1.11658,1.11754,1.11644,1.11753,3182 +2020-03-16 20:00,1.11753,1.11772,1.1168,1.11727,978 +2020-03-16 20:15,1.11726,1.11862,1.11725,1.11856,552 +2020-03-16 20:30,1.11856,1.11856,1.11725,1.11736,439 +2020-03-16 20:45,1.11737,1.11835,1.11674,1.1182,598 +2020-03-16 21:00,1.1182,1.11825,1.11652,1.1176,79 +2020-03-16 21:15,1.11758,1.11761,1.11582,1.11659,127 +2020-03-16 21:30,1.11661,1.11824,1.11649,1.118,369 +2020-03-16 21:45,1.11801,1.11803,1.11753,1.11788,111 +2020-03-16 22:00,1.11788,1.11797,1.11655,1.1176,527 +2020-03-16 22:15,1.11758,1.11784,1.11745,1.11776,298 +2020-03-16 22:30,1.11776,1.11792,1.11672,1.11675,1289 +2020-03-16 22:45,1.11679,1.11759,1.11647,1.11675,2340 +2020-03-16 23:00,1.11678,1.11758,1.11642,1.11669,3121 +2020-03-16 23:15,1.1167,1.11685,1.11617,1.11627,1636 +2020-03-16 23:30,1.11629,1.11636,1.11585,1.11586,1170 +2020-03-16 23:45,1.11587,1.11639,1.11583,1.11633,633 +2020-03-17 00:00,1.11632,1.11638,1.11594,1.1163,2068 +2020-03-17 00:15,1.1163,1.1168,1.11606,1.11675,1892 +2020-03-17 00:30,1.11676,1.11708,1.11635,1.11684,2795 +2020-03-17 00:45,1.11685,1.11723,1.11649,1.11713,2089 +2020-03-17 01:00,1.11713,1.11731,1.11656,1.1166,3119 +2020-03-17 01:15,1.1166,1.11698,1.11635,1.11679,2422 +2020-03-17 01:30,1.11679,1.11702,1.116,1.11649,3788 +2020-03-17 01:45,1.11649,1.11722,1.11646,1.11692,7327 +2020-03-17 02:00,1.1169,1.11718,1.11654,1.117,2266 +2020-03-17 02:15,1.11698,1.11824,1.11687,1.11816,2734 +2020-03-17 02:30,1.11816,1.11887,1.1181,1.11866,2614 +2020-03-17 02:45,1.11866,1.11891,1.11727,1.11736,2308 +2020-03-17 03:00,1.11736,1.11831,1.11683,1.11824,3057 +2020-03-17 03:15,1.11821,1.11827,1.11763,1.11768,1167 +2020-03-17 03:30,1.11768,1.11857,1.1175,1.11833,2793 +2020-03-17 03:45,1.11832,1.11836,1.11786,1.11789,2443 +2020-03-17 04:00,1.1179,1.1183,1.11779,1.11809,1673 +2020-03-17 04:15,1.1181,1.11842,1.11805,1.11836,1845 +2020-03-17 04:30,1.11835,1.11853,1.11806,1.11814,1476 +2020-03-17 04:45,1.11814,1.11816,1.11756,1.11792,2269 +2020-03-17 05:00,1.11792,1.11803,1.11737,1.11776,1558 +2020-03-17 05:15,1.11776,1.11782,1.11742,1.11756,714 +2020-03-17 05:30,1.11756,1.11801,1.1174,1.11792,1116 +2020-03-17 05:45,1.11792,1.11811,1.11679,1.11684,880 +2020-03-17 06:00,1.11683,1.11743,1.11636,1.1168,3410 +2020-03-17 06:15,1.11681,1.11734,1.1165,1.11717,2664 +2020-03-17 06:30,1.11717,1.1173,1.11619,1.11669,2203 +2020-03-17 06:45,1.11668,1.11671,1.11573,1.11601,3916 +2020-03-17 07:00,1.11602,1.11615,1.11421,1.11494,4349 +2020-03-17 07:15,1.11496,1.11549,1.11401,1.11413,3847 +2020-03-17 07:30,1.11416,1.11438,1.11295,1.11306,2588 +2020-03-17 07:45,1.11305,1.11437,1.11286,1.11372,3699 +2020-03-17 08:00,1.11376,1.11452,1.11315,1.11431,4290 +2020-03-17 08:15,1.11432,1.11436,1.11255,1.11326,3434 +2020-03-17 08:30,1.11325,1.11328,1.11186,1.11195,3170 +2020-03-17 08:45,1.11195,1.11232,1.111,1.11108,3236 +2020-03-17 09:00,1.11108,1.11116,1.1102,1.11077,3199 +2020-03-17 09:15,1.11077,1.1108,1.10944,1.1106,2351 +2020-03-17 09:30,1.1106,1.11188,1.10961,1.10982,3830 +2020-03-17 09:45,1.10981,1.11083,1.10919,1.10937,2834 +2020-03-17 10:00,1.10937,1.10948,1.10774,1.10852,2521 +2020-03-17 10:15,1.10851,1.10881,1.10602,1.10619,2303 +2020-03-17 10:30,1.10619,1.10622,1.10494,1.10531,2342 +2020-03-17 10:45,1.10532,1.10532,1.1025,1.10281,3080 +2020-03-17 11:00,1.10281,1.1039,1.10004,1.10052,2242 +2020-03-17 11:15,1.1005,1.10264,1.10012,1.10225,2994 +2020-03-17 11:30,1.10225,1.10322,1.10165,1.102,2210 +2020-03-17 11:45,1.10206,1.10238,1.10001,1.10126,2340 +2020-03-17 12:00,1.10126,1.10177,1.09959,1.10056,6355 +2020-03-17 12:15,1.10056,1.10069,1.0987,1.0987,3649 +2020-03-17 12:30,1.09878,1.09917,1.09729,1.09761,4908 +2020-03-17 12:45,1.09761,1.09925,1.09747,1.09885,4072 +2020-03-17 13:00,1.09886,1.09912,1.09765,1.09816,3645 +2020-03-17 13:15,1.09816,1.09887,1.09779,1.09878,1891 +2020-03-17 13:30,1.09881,1.10108,1.09845,1.1,4401 +2020-03-17 13:45,1.10002,1.10077,1.0992,1.09946,4762 +2020-03-17 14:00,1.09949,1.10131,1.09829,1.10114,4949 +2020-03-17 14:15,1.10114,1.10149,1.0955,1.09671,5852 +2020-03-17 14:30,1.09669,1.09781,1.09566,1.09658,7490 +2020-03-17 14:45,1.09657,1.09864,1.09565,1.09705,12301 +2020-03-17 15:00,1.09707,1.09815,1.0958,1.09779,5397 +2020-03-17 15:15,1.09781,1.09855,1.09651,1.09692,4471 +2020-03-17 15:30,1.09692,1.09878,1.09654,1.0983,5139 +2020-03-17 15:45,1.09828,1.09921,1.09666,1.0971,5454 +2020-03-17 16:00,1.0971,1.09883,1.0968,1.09804,4592 +2020-03-17 16:15,1.09805,1.0999,1.09719,1.09853,4640 +2020-03-17 16:30,1.09854,1.09858,1.09708,1.09734,3360 +2020-03-17 16:45,1.09735,1.09828,1.09637,1.09661,3380 +2020-03-17 17:00,1.09661,1.0986,1.09584,1.09759,4692 +2020-03-17 17:15,1.09762,1.09813,1.09638,1.09806,4117 +2020-03-17 17:30,1.09803,1.09818,1.09643,1.09774,2772 +2020-03-17 17:45,1.0977,1.09892,1.09759,1.09883,2028 +2020-03-17 18:00,1.09883,1.09903,1.09804,1.09884,2196 +2020-03-17 18:15,1.09884,1.10103,1.09883,1.10099,2288 +2020-03-17 18:30,1.10098,1.10202,1.09978,1.1006,2432 +2020-03-17 18:45,1.10059,1.10059,1.09946,1.09998,2380 +2020-03-17 19:00,1.10002,1.1003,1.09872,1.09884,2461 +2020-03-17 19:15,1.09884,1.09933,1.09834,1.09925,1993 +2020-03-17 19:30,1.09927,1.10112,1.09918,1.10075,2065 +2020-03-17 19:45,1.10075,1.10121,1.09972,1.10015,2430 +2020-03-17 20:00,1.10017,1.10109,1.10009,1.10106,944 +2020-03-17 20:15,1.10106,1.10106,1.10017,1.10074,560 +2020-03-17 20:30,1.10074,1.10074,1.09972,1.09985,1066 +2020-03-17 20:45,1.09979,1.09995,1.09886,1.09971,1331 +2020-03-17 21:00,1.09971,1.10053,1.09952,1.10051,139 +2020-03-17 21:15,1.10049,1.10079,1.0995,1.09986,216 +2020-03-17 21:30,1.09975,1.10059,1.09932,1.10059,183 +2020-03-17 21:45,1.10059,1.101,1.10011,1.10076,335 +2020-03-17 22:00,1.10076,1.10199,1.10056,1.10181,1113 +2020-03-17 22:15,1.1018,1.10228,1.10121,1.10171,1127 +2020-03-17 22:30,1.10169,1.10184,1.1008,1.10108,934 +2020-03-17 22:45,1.10108,1.10165,1.10098,1.10152,737 +2020-03-17 23:00,1.10151,1.10227,1.10124,1.10213,2847 +2020-03-17 23:15,1.10213,1.1022,1.10136,1.10153,1983 +2020-03-17 23:30,1.10152,1.10178,1.10144,1.10163,858 +2020-03-17 23:45,1.10162,1.1017,1.1011,1.1016,698 +2020-03-18 00:00,1.10161,1.10169,1.10018,1.10025,1530 +2020-03-18 00:15,1.10025,1.10067,1.09977,1.10053,3067 +2020-03-18 00:30,1.10054,1.10153,1.10029,1.10037,2071 +2020-03-18 00:45,1.10037,1.10066,1.09907,1.09923,2253 +2020-03-18 01:00,1.09922,1.0995,1.09847,1.09892,1977 +2020-03-18 01:15,1.09891,1.10057,1.09879,1.10052,2032 +2020-03-18 01:30,1.10052,1.1009,1.10044,1.1005,1040 +2020-03-18 01:45,1.10048,1.10071,1.09963,1.10007,2333 +2020-03-18 02:00,1.10007,1.1006,1.09989,1.1005,1285 +2020-03-18 02:15,1.1005,1.10093,1.10046,1.10086,876 +2020-03-18 02:30,1.10084,1.10183,1.1008,1.10159,1008 +2020-03-18 02:45,1.10159,1.10195,1.1009,1.10107,2414 +2020-03-18 03:00,1.10107,1.10222,1.10106,1.10174,5834 +2020-03-18 03:15,1.10174,1.10255,1.10159,1.10219,2218 +2020-03-18 03:30,1.1022,1.10236,1.10181,1.10223,1553 +2020-03-18 03:45,1.10224,1.10281,1.10206,1.10275,1420 +2020-03-18 04:00,1.10275,1.10322,1.10252,1.10262,1230 +2020-03-18 04:15,1.10263,1.10329,1.10263,1.10313,1057 +2020-03-18 04:30,1.10314,1.1032,1.1026,1.10261,1257 +2020-03-18 04:45,1.10261,1.1031,1.10245,1.10306,1501 +2020-03-18 05:00,1.10306,1.10349,1.10304,1.10338,933 +2020-03-18 05:15,1.10337,1.10366,1.10327,1.10363,832 +2020-03-18 05:30,1.10364,1.10451,1.10362,1.10413,1375 +2020-03-18 05:45,1.10412,1.10442,1.10371,1.10391,1626 +2020-03-18 06:00,1.10392,1.10392,1.10159,1.1026,2412 +2020-03-18 06:15,1.10261,1.1027,1.10123,1.10157,2541 +2020-03-18 06:30,1.10156,1.10193,1.10105,1.10108,2466 +2020-03-18 06:45,1.10107,1.10118,1.10023,1.10033,3105 +2020-03-18 07:00,1.10033,1.10183,1.10017,1.1017,3964 +2020-03-18 07:15,1.1017,1.10183,1.10044,1.10165,2906 +2020-03-18 07:30,1.10165,1.1018,1.0995,1.09974,4287 +2020-03-18 07:45,1.0997,1.09975,1.09664,1.0968,4908 +2020-03-18 08:00,1.09681,1.09892,1.09655,1.09846,5345 +2020-03-18 08:15,1.09845,1.09931,1.09704,1.09715,4234 +2020-03-18 08:30,1.09714,1.09848,1.09649,1.09845,4674 +2020-03-18 08:45,1.09846,1.09846,1.09556,1.09722,4162 +2020-03-18 09:00,1.09722,1.09865,1.09713,1.09795,3298 +2020-03-18 09:15,1.09794,1.0996,1.09786,1.09874,3649 +2020-03-18 09:30,1.09874,1.10119,1.09848,1.10072,3542 +2020-03-18 09:45,1.10072,1.10165,1.0989,1.0995,4082 +2020-03-18 10:00,1.0995,1.10164,1.09912,1.10101,6336 +2020-03-18 10:15,1.10102,1.10176,1.10048,1.10167,6206 +2020-03-18 10:30,1.10168,1.10175,1.0997,1.10063,5134 +2020-03-18 10:45,1.10062,1.10146,1.09961,1.1,3834 +2020-03-18 11:00,1.09999,1.10052,1.09833,1.09839,3152 +2020-03-18 11:15,1.09839,1.09879,1.09681,1.09768,4564 +2020-03-18 11:30,1.09768,1.09819,1.09693,1.09718,4197 +2020-03-18 11:45,1.0972,1.09895,1.09711,1.09769,3496 +2020-03-18 12:00,1.09771,1.09792,1.09674,1.0979,3531 +2020-03-18 12:15,1.09789,1.09848,1.09543,1.09624,3965 +2020-03-18 12:30,1.09623,1.09777,1.0958,1.09648,3429 +2020-03-18 12:45,1.09648,1.09753,1.0928,1.09299,35652 +2020-03-18 13:00,1.093,1.09467,1.09272,1.09344,6429 +2020-03-18 13:15,1.09343,1.09366,1.09208,1.09247,3035 +2020-03-18 13:30,1.09248,1.09325,1.09059,1.09059,5899 +2020-03-18 13:45,1.09056,1.0917,1.08948,1.09083,5629 +2020-03-18 14:00,1.09086,1.09281,1.09016,1.0908,5437 +2020-03-18 14:15,1.09085,1.09149,1.08923,1.09037,3508 +2020-03-18 14:30,1.09037,1.09058,1.08794,1.08874,4541 +2020-03-18 14:45,1.08872,1.08953,1.08625,1.08679,4253 +2020-03-18 15:00,1.08678,1.08779,1.08512,1.08619,5190 +2020-03-18 15:15,1.08618,1.08674,1.08512,1.08656,3887 +2020-03-18 15:30,1.08656,1.08746,1.08507,1.08564,4761 +2020-03-18 15:45,1.08564,1.08669,1.08308,1.08326,5495 +2020-03-18 16:00,1.08326,1.08404,1.08267,1.08321,4638 +2020-03-18 16:15,1.08322,1.08486,1.08282,1.08462,5053 +2020-03-18 16:30,1.08461,1.08502,1.08258,1.08488,3843 +2020-03-18 16:45,1.08488,1.08511,1.08071,1.0809,4133 +2020-03-18 17:00,1.0809,1.08214,1.08016,1.08146,4080 +2020-03-18 17:15,1.08147,1.08374,1.08073,1.08333,3000 +2020-03-18 17:30,1.08332,1.08406,1.08253,1.08347,2911 +2020-03-18 17:45,1.08348,1.08523,1.08342,1.08477,2935 +2020-03-18 18:00,1.08478,1.08512,1.08199,1.08352,2296 +2020-03-18 18:15,1.08352,1.08822,1.08328,1.08748,4565 +2020-03-18 18:30,1.08747,1.08766,1.08562,1.08739,5519 +2020-03-18 18:45,1.08738,1.08884,1.08662,1.08718,3811 +2020-03-18 19:00,1.08721,1.08769,1.08529,1.08703,4431 +2020-03-18 19:15,1.08704,1.08888,1.08643,1.08871,3283 +2020-03-18 19:30,1.08872,1.08941,1.08803,1.0888,2120 +2020-03-18 19:45,1.0888,1.09001,1.08839,1.08986,3008 +2020-03-18 20:00,1.08984,1.09108,1.08968,1.09091,1234 +2020-03-18 20:15,1.09091,1.09106,1.09027,1.0906,1433 +2020-03-18 20:30,1.0906,1.09123,1.09021,1.09108,1010 +2020-03-18 20:45,1.09108,1.0919,1.09086,1.0912,1709 +2020-03-18 21:00,1.0912,1.0916,1.0909,1.09098,299 +2020-03-18 21:15,1.09099,1.09166,1.0909,1.09119,79 +2020-03-18 21:30,1.09119,1.09142,1.09069,1.09103,1281 +2020-03-18 21:45,1.09101,1.09137,1.09101,1.09126,335 +2020-03-18 22:00,1.09126,1.09184,1.09092,1.09174,690 +2020-03-18 22:15,1.09175,1.0919,1.09023,1.09023,449 +2020-03-18 22:30,1.09032,1.09147,1.09023,1.09089,903 +2020-03-18 22:45,1.09089,1.09351,1.09044,1.09325,1729 +2020-03-18 23:00,1.09331,1.09818,1.09312,1.09459,3258 +2020-03-18 23:15,1.09461,1.09598,1.09452,1.09578,1326 +2020-03-18 23:30,1.09577,1.09788,1.09498,1.09546,2202 +2020-03-18 23:45,1.09546,1.09707,1.09394,1.09442,2065 +2020-03-19 00:00,1.09442,1.0949,1.09259,1.09407,3024 +2020-03-19 00:15,1.09407,1.0942,1.09299,1.09332,2411 +2020-03-19 00:30,1.09331,1.09344,1.09093,1.09233,2979 +2020-03-19 00:45,1.09233,1.09242,1.08978,1.09001,3864 +2020-03-19 01:00,1.09001,1.09137,1.08858,1.08947,2708 +2020-03-19 01:15,1.08946,1.09082,1.08925,1.09059,2308 +2020-03-19 01:30,1.09058,1.09202,1.08956,1.09014,1959 +2020-03-19 01:45,1.09018,1.09126,1.09002,1.09086,2114 +2020-03-19 02:00,1.09085,1.09161,1.08888,1.08899,3044 +2020-03-19 02:15,1.08899,1.09176,1.08893,1.09137,2309 +2020-03-19 02:30,1.09137,1.09184,1.08932,1.08959,1223 +2020-03-19 02:45,1.08959,1.0909,1.08773,1.08809,1989 +2020-03-19 03:00,1.0881,1.09009,1.08792,1.08902,1665 +2020-03-19 03:15,1.08902,1.08943,1.08812,1.08875,1175 +2020-03-19 03:30,1.08872,1.09128,1.08856,1.0909,2558 +2020-03-19 03:45,1.09089,1.09089,1.08949,1.0897,1203 +2020-03-19 04:00,1.08973,1.09066,1.08941,1.08961,1257 +2020-03-19 04:15,1.08963,1.08984,1.08866,1.08935,1280 +2020-03-19 04:30,1.08935,1.08989,1.0891,1.08918,1127 +2020-03-19 04:45,1.0892,1.09002,1.08901,1.08961,994 +2020-03-19 05:00,1.08961,1.09052,1.08957,1.09028,1544 +2020-03-19 05:15,1.0903,1.09071,1.08942,1.08963,936 +2020-03-19 05:30,1.08963,1.09049,1.08954,1.09025,762 +2020-03-19 05:45,1.09024,1.09057,1.08968,1.09013,958 +2020-03-19 06:00,1.09013,1.09103,1.08994,1.09096,1120 +2020-03-19 06:15,1.09098,1.09344,1.09096,1.09252,1786 +2020-03-19 06:30,1.0925,1.09466,1.09187,1.09228,2808 +2020-03-19 06:45,1.09225,1.09475,1.09205,1.09247,4145 +2020-03-19 07:00,1.09247,1.09363,1.09217,1.09242,7665 +2020-03-19 07:15,1.09243,1.09267,1.08896,1.08918,6639 +2020-03-19 07:30,1.08917,1.08927,1.08584,1.08634,5448 +2020-03-19 07:45,1.08635,1.0877,1.0845,1.08477,4583 +2020-03-19 08:00,1.08477,1.08597,1.08132,1.08147,4936 +2020-03-19 08:15,1.08143,1.08891,1.08135,1.08734,4184 +2020-03-19 08:30,1.08733,1.08899,1.08686,1.08864,2104 +2020-03-19 08:45,1.08862,1.08898,1.0837,1.08375,2409 +2020-03-19 09:00,1.08374,1.0859,1.08349,1.08587,2296 +2020-03-19 09:15,1.08584,1.08596,1.0842,1.08479,2015 +2020-03-19 09:30,1.08482,1.08686,1.08305,1.08332,2550 +2020-03-19 09:45,1.08331,1.08385,1.0819,1.08235,2072 +2020-03-19 10:00,1.08235,1.08263,1.08092,1.08174,2326 +2020-03-19 10:15,1.08174,1.0818,1.08001,1.08005,2052 +2020-03-19 10:30,1.08005,1.08107,1.07961,1.08024,1768 +2020-03-19 10:45,1.08025,1.08061,1.07823,1.07824,1498 +2020-03-19 11:00,1.07825,1.08053,1.07793,1.07874,2399 +2020-03-19 11:15,1.07875,1.0794,1.07512,1.07525,2661 +2020-03-19 11:30,1.07522,1.07674,1.07319,1.07491,4400 +2020-03-19 11:45,1.07492,1.07607,1.07361,1.07495,3749 +2020-03-19 12:00,1.07495,1.0759,1.07259,1.07386,7019 +2020-03-19 12:15,1.07386,1.07522,1.07266,1.07303,5415 +2020-03-19 12:30,1.073,1.0765,1.07285,1.07641,4720 +2020-03-19 12:45,1.07639,1.08394,1.07579,1.07986,7279 +2020-03-19 13:00,1.07986,1.08342,1.07827,1.07981,7569 +2020-03-19 13:15,1.07979,1.08281,1.07872,1.082,5546 +2020-03-19 13:30,1.082,1.08225,1.07881,1.08046,6373 +2020-03-19 13:45,1.08046,1.08118,1.07865,1.08032,6694 +2020-03-19 14:00,1.08034,1.08106,1.0789,1.07942,7159 +2020-03-19 14:15,1.07941,1.08182,1.07821,1.07954,5372 +2020-03-19 14:30,1.07956,1.08042,1.07837,1.0798,4754 +2020-03-19 14:45,1.0798,1.08046,1.07826,1.0795,4623 +2020-03-19 15:00,1.07952,1.08003,1.07562,1.07667,5097 +2020-03-19 15:15,1.07668,1.07872,1.07617,1.07863,4722 +2020-03-19 15:30,1.07861,1.07953,1.07507,1.0758,5921 +2020-03-19 15:45,1.0758,1.07602,1.0695,1.06995,7054 +2020-03-19 16:00,1.06993,1.07143,1.06945,1.07136,7069 +2020-03-19 16:15,1.07135,1.07155,1.06824,1.06936,6439 +2020-03-19 16:30,1.06934,1.06972,1.06726,1.06884,5276 +2020-03-19 16:45,1.06884,1.06934,1.06606,1.06631,4669 +2020-03-19 17:00,1.06628,1.06877,1.0655,1.06821,5582 +2020-03-19 17:15,1.06821,1.07022,1.06727,1.07016,3906 +2020-03-19 17:30,1.07016,1.07047,1.06886,1.06911,3063 +2020-03-19 17:45,1.06913,1.06925,1.06631,1.06837,3461 +2020-03-19 18:00,1.06837,1.0698,1.06674,1.06754,3755 +2020-03-19 18:15,1.0675,1.06923,1.06686,1.0673,3374 +2020-03-19 18:30,1.06732,1.06783,1.06575,1.06739,3203 +2020-03-19 18:45,1.06738,1.06859,1.06647,1.06674,3956 +2020-03-19 19:00,1.06673,1.06891,1.06673,1.06883,3716 +2020-03-19 19:15,1.06882,1.06918,1.06697,1.0679,2968 +2020-03-19 19:30,1.0679,1.06818,1.06666,1.06733,2581 +2020-03-19 19:45,1.06731,1.06833,1.06601,1.06797,3227 +2020-03-19 20:00,1.06789,1.06978,1.06755,1.06946,1243 +2020-03-19 20:15,1.06946,1.06954,1.06856,1.06891,657 +2020-03-19 20:30,1.0689,1.07047,1.06821,1.07004,810 +2020-03-19 20:45,1.07003,1.07057,1.06858,1.06911,1214 +2020-03-19 21:00,1.06913,1.06974,1.06717,1.0674,317 +2020-03-19 21:15,1.06718,1.06771,1.06599,1.06671,372 +2020-03-19 21:30,1.06671,1.06759,1.06543,1.06553,226 +2020-03-19 21:45,1.06557,1.06676,1.06544,1.0662,154 +2020-03-19 22:00,1.06614,1.0663,1.06544,1.06578,753 +2020-03-19 22:15,1.06578,1.06645,1.06574,1.066,806 +2020-03-19 22:30,1.066,1.06698,1.06582,1.06654,1183 +2020-03-19 22:45,1.06654,1.06684,1.06599,1.06643,1133 +2020-03-19 23:00,1.06645,1.06682,1.06608,1.06654,1580 +2020-03-19 23:15,1.06654,1.06678,1.06584,1.06607,1712 +2020-03-19 23:30,1.06607,1.06654,1.06588,1.06598,1286 +2020-03-19 23:45,1.06597,1.0664,1.06542,1.06544,1818 +2020-03-20 00:00,1.06543,1.066,1.06527,1.06543,2485 +2020-03-20 00:15,1.06542,1.06683,1.06535,1.06652,3377 +2020-03-20 00:30,1.06652,1.06738,1.06635,1.06652,3736 +2020-03-20 00:45,1.06653,1.06671,1.06622,1.06637,3320 +2020-03-20 01:00,1.0664,1.06697,1.06629,1.06682,1955 +2020-03-20 01:15,1.06681,1.07047,1.06678,1.07047,3328 +2020-03-20 01:30,1.07048,1.07148,1.0689,1.07127,4214 +2020-03-20 01:45,1.07128,1.07438,1.07058,1.07192,3945 +2020-03-20 02:00,1.07193,1.07387,1.07083,1.07366,4688 +2020-03-20 02:15,1.07367,1.07448,1.07255,1.07448,4365 +2020-03-20 02:30,1.0745,1.07492,1.0743,1.07484,3023 +2020-03-20 02:45,1.07483,1.07491,1.07344,1.07346,2474 +2020-03-20 03:00,1.07347,1.07352,1.07161,1.07229,3148 +2020-03-20 03:15,1.07227,1.07356,1.0722,1.07305,2962 +2020-03-20 03:30,1.07306,1.07444,1.07304,1.07388,2222 +2020-03-20 03:45,1.07389,1.07415,1.07281,1.07349,1471 +2020-03-20 04:00,1.07348,1.07425,1.0731,1.07341,3360 +2020-03-20 04:15,1.0734,1.07381,1.07272,1.07287,3792 +2020-03-20 04:30,1.07287,1.07555,1.07279,1.07545,2966 +2020-03-20 04:45,1.07547,1.07646,1.0751,1.07646,3471 +2020-03-20 05:00,1.0765,1.07688,1.07615,1.07635,3291 +2020-03-20 05:15,1.07635,1.07639,1.07418,1.07521,4039 +2020-03-20 05:30,1.07522,1.07644,1.07446,1.07492,4802 +2020-03-20 05:45,1.0749,1.07555,1.07428,1.07527,3474 +2020-03-20 06:00,1.07527,1.07527,1.07414,1.07491,3806 +2020-03-20 06:15,1.07492,1.07683,1.0749,1.07659,5055 +2020-03-20 06:30,1.07656,1.07798,1.07572,1.07747,3753 +2020-03-20 06:45,1.07745,1.07796,1.07561,1.07592,4430 +2020-03-20 07:00,1.07592,1.07618,1.07429,1.07516,5048 +2020-03-20 07:15,1.07522,1.07861,1.07483,1.07824,5131 +2020-03-20 07:30,1.07823,1.08061,1.07798,1.08048,4257 +2020-03-20 07:45,1.08048,1.08309,1.07962,1.08138,5457 +2020-03-20 08:00,1.0814,1.08142,1.07761,1.0777,5677 +2020-03-20 08:15,1.0777,1.07918,1.07745,1.07781,4774 +2020-03-20 08:30,1.07779,1.07993,1.07778,1.07893,5343 +2020-03-20 08:45,1.07893,1.07956,1.07781,1.07872,3890 +2020-03-20 09:00,1.07874,1.07906,1.07716,1.07823,4042 +2020-03-20 09:15,1.07823,1.07825,1.07611,1.07619,3023 +2020-03-20 09:30,1.0762,1.07685,1.07316,1.07319,3571 +2020-03-20 09:45,1.07321,1.07382,1.07144,1.07209,4513 +2020-03-20 10:00,1.0721,1.07295,1.0706,1.07279,4719 +2020-03-20 10:15,1.0728,1.07581,1.07225,1.07539,5367 +2020-03-20 10:30,1.07539,1.07578,1.07281,1.07286,3861 +2020-03-20 10:45,1.07288,1.07405,1.07262,1.07367,2708 +2020-03-20 11:00,1.07367,1.07399,1.07166,1.07173,2928 +2020-03-20 11:15,1.07175,1.07176,1.06964,1.07083,3717 +2020-03-20 11:30,1.07085,1.07319,1.07048,1.07306,3555 +2020-03-20 11:45,1.07307,1.07396,1.07081,1.07106,3729 +2020-03-20 12:00,1.07111,1.0738,1.0701,1.07338,5831 +2020-03-20 12:15,1.07336,1.07371,1.07238,1.07258,3674 +2020-03-20 12:30,1.07258,1.07602,1.07233,1.07482,4503 +2020-03-20 12:45,1.07483,1.07539,1.07053,1.07094,5701 +2020-03-20 13:00,1.07092,1.07122,1.06992,1.07072,5655 +2020-03-20 13:15,1.0707,1.0707,1.06774,1.06912,6809 +2020-03-20 13:30,1.06909,1.07201,1.06906,1.06957,9290 +2020-03-20 13:45,1.06956,1.07084,1.06865,1.06929,7336 +2020-03-20 14:00,1.0693,1.0731,1.06906,1.07146,11725 +2020-03-20 14:15,1.07145,1.07496,1.07118,1.07281,15028 +2020-03-20 14:30,1.0728,1.0741,1.07168,1.0721,5960 +2020-03-20 14:45,1.07212,1.07422,1.07177,1.072,5764 +2020-03-20 15:00,1.072,1.07482,1.07194,1.07341,5813 +2020-03-20 15:15,1.07342,1.0742,1.07166,1.07251,5883 +2020-03-20 15:30,1.0725,1.07387,1.07205,1.0737,5403 +2020-03-20 15:45,1.0737,1.07383,1.06634,1.06842,18493 +2020-03-20 16:00,1.0684,1.0714,1.06765,1.06967,53119 +2020-03-20 16:15,1.06972,1.0705,1.0685,1.06879,6804 +2020-03-20 16:30,1.06878,1.06954,1.06694,1.06717,9068 +2020-03-20 16:45,1.06717,1.06743,1.06542,1.06606,9300 +2020-03-20 17:00,1.06605,1.06823,1.06534,1.06806,5314 +2020-03-20 17:15,1.06805,1.06951,1.06802,1.06909,9115 +2020-03-20 17:30,1.06909,1.0694,1.0672,1.06758,6588 +2020-03-20 17:45,1.06757,1.06827,1.06629,1.06665,10965 +2020-03-20 18:00,1.06665,1.06674,1.06549,1.06566,5976 +2020-03-20 18:15,1.06566,1.06651,1.0652,1.06533,6613 +2020-03-20 18:30,1.06534,1.06624,1.06382,1.06493,6770 +2020-03-20 18:45,1.065,1.0666,1.06461,1.06542,5075 +2020-03-20 19:00,1.06546,1.06593,1.06398,1.06462,6865 +2020-03-20 19:15,1.06462,1.06542,1.064,1.06402,5722 +2020-03-20 19:30,1.064,1.06597,1.06375,1.06556,6175 +2020-03-20 19:45,1.06552,1.06724,1.06525,1.06655,6293 +2020-03-20 20:00,1.06655,1.06853,1.06637,1.06834,1933 +2020-03-20 20:15,1.06834,1.06874,1.06622,1.06639,1048 +2020-03-20 20:30,1.0664,1.06966,1.0664,1.06959,1291 +2020-03-20 20:45,1.06959,1.07002,1.06893,1.06929,1197 +2020-03-22 21:00,1.07011,1.07039,1.07003,1.07017,20 +2020-03-22 21:15,1.07015,1.07044,1.06947,1.06947,49 +2020-03-22 21:30,1.06947,1.06996,1.06935,1.06963,81 +2020-03-22 21:45,1.06965,1.06965,1.06925,1.06939,57 +2020-03-22 22:00,1.06942,1.07038,1.06746,1.0675,5008 +2020-03-22 22:15,1.06746,1.06773,1.06543,1.06551,2872 +2020-03-22 22:30,1.06552,1.0666,1.06357,1.06561,5843 +2020-03-22 22:45,1.06561,1.06655,1.06561,1.0659,4682 +2020-03-22 23:00,1.06588,1.06796,1.06584,1.0666,4180 +2020-03-22 23:15,1.0666,1.06827,1.06593,1.06788,4700 +2020-03-22 23:30,1.06794,1.06862,1.06718,1.06841,4067 +2020-03-22 23:45,1.0684,1.07031,1.06808,1.06886,4479 +2020-03-23 00:00,1.06886,1.06972,1.06821,1.06972,2966 +2020-03-23 00:15,1.06972,1.07056,1.06766,1.06791,2845 +2020-03-23 00:30,1.06791,1.06844,1.06585,1.06594,3726 +2020-03-23 00:45,1.066,1.06954,1.06577,1.06785,4964 +2020-03-23 01:00,1.06783,1.06823,1.06687,1.06812,4107 +2020-03-23 01:15,1.06812,1.06925,1.06781,1.06781,3274 +2020-03-23 01:30,1.06782,1.07153,1.06758,1.07119,2189 +2020-03-23 01:45,1.07119,1.07206,1.07019,1.07175,2512 +2020-03-23 02:00,1.07175,1.07273,1.07132,1.07227,2770 +2020-03-23 02:15,1.07228,1.07275,1.07122,1.0716,2894 +2020-03-23 02:30,1.07161,1.07269,1.0713,1.0724,2663 +2020-03-23 02:45,1.07239,1.07295,1.07173,1.0729,1937 +2020-03-23 03:00,1.0729,1.07299,1.07177,1.07213,2163 +2020-03-23 03:15,1.07213,1.07238,1.07136,1.07185,3780 +2020-03-23 03:30,1.07187,1.07268,1.0713,1.0716,4771 +2020-03-23 03:45,1.07161,1.07186,1.07116,1.07139,3774 +2020-03-23 04:00,1.0714,1.07343,1.07139,1.07334,3738 +2020-03-23 04:15,1.07334,1.07339,1.07305,1.07328,1997 +2020-03-23 04:30,1.07329,1.07363,1.07276,1.0734,1818 +2020-03-23 04:45,1.0734,1.07372,1.0728,1.07354,2345 +2020-03-23 05:00,1.07358,1.07369,1.07281,1.07358,3511 +2020-03-23 05:15,1.07359,1.07476,1.07352,1.07474,6333 +2020-03-23 05:30,1.07473,1.07558,1.07453,1.07484,3909 +2020-03-23 05:45,1.07485,1.07558,1.07456,1.07498,2150 +2020-03-23 06:00,1.07497,1.07581,1.07428,1.07488,1679 +2020-03-23 06:15,1.07488,1.07684,1.07473,1.07589,2275 +2020-03-23 06:30,1.07591,1.07591,1.07493,1.07525,1760 +2020-03-23 06:45,1.07526,1.07535,1.0716,1.0747,3499 +2020-03-23 07:00,1.0747,1.07538,1.07289,1.07307,8379 +2020-03-23 07:15,1.07307,1.07377,1.07257,1.07272,6194 +2020-03-23 07:30,1.07273,1.07325,1.07085,1.07085,5588 +2020-03-23 07:45,1.07084,1.07131,1.06892,1.06929,2892 +2020-03-23 08:00,1.06927,1.07001,1.06897,1.06919,8587 +2020-03-23 08:15,1.06918,1.07081,1.06899,1.07025,5976 +2020-03-23 08:30,1.07025,1.07094,1.06933,1.07057,5782 +2020-03-23 08:45,1.07056,1.07101,1.07003,1.07079,4767 +2020-03-23 09:00,1.07078,1.07079,1.06944,1.0697,5595 +2020-03-23 09:15,1.06968,1.07007,1.06841,1.06893,6677 +2020-03-23 09:30,1.06892,1.06904,1.06745,1.06796,5982 +2020-03-23 09:45,1.06796,1.06855,1.06739,1.06835,3258 +2020-03-23 10:00,1.06835,1.06845,1.06702,1.06797,4242 +2020-03-23 10:15,1.06796,1.06796,1.06694,1.06733,3539 +2020-03-23 10:30,1.06731,1.06826,1.06671,1.06723,3229 +2020-03-23 10:45,1.06723,1.06998,1.06717,1.06915,4643 +2020-03-23 11:00,1.06915,1.06984,1.06816,1.06819,5054 +2020-03-23 11:15,1.0682,1.06878,1.06714,1.06726,5321 +2020-03-23 11:30,1.06729,1.06854,1.06709,1.06759,3918 +2020-03-23 11:45,1.06758,1.06856,1.06664,1.06852,3028 +2020-03-23 12:00,1.0685,1.07508,1.06832,1.07499,15762 +2020-03-23 12:15,1.07499,1.08022,1.07433,1.07748,18958 +2020-03-23 12:30,1.07748,1.07808,1.07394,1.07621,16912 +2020-03-23 12:45,1.07616,1.07914,1.07471,1.07786,16358 +2020-03-23 13:00,1.07786,1.07968,1.07664,1.07823,12981 +2020-03-23 13:15,1.07822,1.07904,1.07531,1.0757,10633 +2020-03-23 13:30,1.07571,1.07676,1.07348,1.07638,12008 +2020-03-23 13:45,1.07635,1.08063,1.07615,1.07937,11917 +2020-03-23 14:00,1.07935,1.08,1.07755,1.07846,5327 +2020-03-23 14:15,1.07846,1.07879,1.07657,1.07874,6406 +2020-03-23 14:30,1.07874,1.08199,1.07847,1.0804,4942 +2020-03-23 14:45,1.08041,1.08279,1.0794,1.0804,7614 +2020-03-23 15:00,1.0804,1.08124,1.07942,1.07979,6626 +2020-03-23 15:15,1.0798,1.08071,1.07802,1.07802,6233 +2020-03-23 15:30,1.07801,1.07857,1.07555,1.076,6146 +2020-03-23 15:45,1.07598,1.07673,1.07509,1.07586,6358 +2020-03-23 16:00,1.07588,1.0769,1.07364,1.07419,6768 +2020-03-23 16:15,1.07416,1.07492,1.0731,1.07353,6305 +2020-03-23 16:30,1.07352,1.07414,1.07241,1.07285,7743 +2020-03-23 16:45,1.07284,1.07573,1.07235,1.07499,5934 +2020-03-23 17:00,1.07498,1.0765,1.07474,1.0757,4444 +2020-03-23 17:15,1.07568,1.07799,1.07537,1.07696,6790 +2020-03-23 17:30,1.07696,1.07792,1.0763,1.07691,6543 +2020-03-23 17:45,1.07691,1.07785,1.07487,1.07509,4623 +2020-03-23 18:00,1.07511,1.07517,1.0738,1.07477,4815 +2020-03-23 18:15,1.07476,1.07542,1.07415,1.07509,3251 +2020-03-23 18:30,1.07508,1.0752,1.07236,1.07318,3555 +2020-03-23 18:45,1.07319,1.07381,1.07254,1.07299,3186 +2020-03-23 19:00,1.073,1.07377,1.07283,1.07376,2329 +2020-03-23 19:15,1.0738,1.07483,1.07358,1.07425,2708 +2020-03-23 19:30,1.07426,1.07486,1.07355,1.07485,2639 +2020-03-23 19:45,1.07487,1.07495,1.07232,1.07256,3291 +2020-03-23 20:00,1.07256,1.07375,1.07218,1.07219,1045 +2020-03-23 20:15,1.07218,1.07333,1.07199,1.07265,1203 +2020-03-23 20:30,1.07266,1.07326,1.0726,1.07312,639 +2020-03-23 20:45,1.07312,1.07317,1.07236,1.07239,686 +2020-03-23 21:00,1.07233,1.07279,1.07204,1.07251,206 +2020-03-23 21:15,1.07251,1.0734,1.0722,1.07285,202 +2020-03-23 21:30,1.07268,1.07312,1.0725,1.07262,98 +2020-03-23 21:45,1.07262,1.07294,1.07237,1.07247,347 +2020-03-23 22:00,1.07243,1.07498,1.07239,1.07475,916 +2020-03-23 22:15,1.07475,1.07519,1.07457,1.07502,581 +2020-03-23 22:30,1.07502,1.07514,1.07453,1.07512,526 +2020-03-23 22:45,1.07512,1.07512,1.07432,1.07449,842 +2020-03-23 23:00,1.0747,1.07506,1.07434,1.07474,2155 +2020-03-23 23:15,1.07474,1.07605,1.07462,1.07583,1521 +2020-03-23 23:30,1.07584,1.07649,1.07582,1.07628,1845 +2020-03-23 23:45,1.07628,1.07645,1.07619,1.07635,1089 +2020-03-24 00:00,1.07633,1.07701,1.07628,1.07629,1460 +2020-03-24 00:15,1.07629,1.07631,1.0752,1.07623,2185 +2020-03-24 00:30,1.07623,1.07778,1.07622,1.07737,2356 +2020-03-24 00:45,1.07736,1.08105,1.07729,1.07957,3716 +2020-03-24 01:00,1.07957,1.08227,1.07948,1.08136,2783 +2020-03-24 01:15,1.08137,1.08192,1.08028,1.08042,1713 +2020-03-24 01:30,1.08043,1.08102,1.07877,1.07892,3015 +2020-03-24 01:45,1.07891,1.0802,1.07884,1.07934,2930 +2020-03-24 02:00,1.07935,1.08143,1.0791,1.08106,2406 +2020-03-24 02:15,1.08106,1.08178,1.08081,1.08099,1779 +2020-03-24 02:30,1.081,1.08118,1.08041,1.08083,1907 +2020-03-24 02:45,1.08082,1.08139,1.07963,1.08112,2926 +2020-03-24 03:00,1.08112,1.08166,1.08018,1.08119,1848 +2020-03-24 03:15,1.08119,1.0813,1.07921,1.07963,2066 +2020-03-24 03:30,1.07963,1.0805,1.07943,1.0799,2501 +2020-03-24 03:45,1.07991,1.0805,1.07975,1.08003,1688 +2020-03-24 04:00,1.08002,1.08087,1.07997,1.08026,1996 +2020-03-24 04:15,1.08026,1.08057,1.07987,1.08,2453 +2020-03-24 04:30,1.08002,1.08026,1.07968,1.08007,1526 +2020-03-24 04:45,1.08007,1.08011,1.07869,1.07884,1639 +2020-03-24 05:00,1.07886,1.07984,1.07884,1.07962,1611 +2020-03-24 05:15,1.07961,1.07961,1.07876,1.07886,617 +2020-03-24 05:30,1.07885,1.07891,1.07757,1.07795,2052 +2020-03-24 05:45,1.07794,1.07818,1.07757,1.07787,1654 +2020-03-24 06:00,1.07786,1.07886,1.07773,1.07805,3336 +2020-03-24 06:15,1.07806,1.07961,1.07788,1.07947,3891 +2020-03-24 06:30,1.07948,1.08133,1.07941,1.08127,4532 +2020-03-24 06:45,1.08125,1.0866,1.08125,1.08342,3552 +2020-03-24 07:00,1.08343,1.08379,1.08212,1.08213,5931 +2020-03-24 07:15,1.08213,1.08468,1.08213,1.08449,4220 +2020-03-24 07:30,1.08449,1.08449,1.08258,1.08308,3802 +2020-03-24 07:45,1.08309,1.08432,1.08281,1.08301,4017 +2020-03-24 08:00,1.08302,1.08421,1.08224,1.08314,4958 +2020-03-24 08:15,1.0832,1.08482,1.08201,1.08256,6217 +2020-03-24 08:30,1.08261,1.08427,1.08232,1.08248,5139 +2020-03-24 08:45,1.08248,1.08261,1.08079,1.08249,4002 +2020-03-24 09:00,1.08249,1.08309,1.08139,1.08234,3263 +2020-03-24 09:15,1.08234,1.0834,1.08166,1.08266,3323 +2020-03-24 09:30,1.08265,1.08337,1.08182,1.08337,4010 +2020-03-24 09:45,1.08337,1.0858,1.08334,1.08537,3514 +2020-03-24 10:00,1.08538,1.08785,1.08489,1.08707,3987 +2020-03-24 10:15,1.08706,1.08738,1.08615,1.08657,2690 +2020-03-24 10:30,1.08657,1.08673,1.08502,1.08524,3193 +2020-03-24 10:45,1.08525,1.08845,1.08507,1.08814,3625 +2020-03-24 11:00,1.08814,1.08879,1.0872,1.08729,3531 +2020-03-24 11:15,1.0873,1.08733,1.08526,1.08605,4184 +2020-03-24 11:30,1.08604,1.08706,1.08491,1.08512,3431 +2020-03-24 11:45,1.08513,1.08757,1.08513,1.0865,3928 +2020-03-24 12:00,1.08649,1.08683,1.0829,1.08314,9704 +2020-03-24 12:15,1.08314,1.0833,1.08137,1.08246,9012 +2020-03-24 12:30,1.08244,1.08351,1.08145,1.08267,11154 +2020-03-24 12:45,1.08269,1.08296,1.08117,1.08222,7418 +2020-03-24 13:00,1.08223,1.08485,1.08144,1.08431,7551 +2020-03-24 13:15,1.08427,1.08537,1.08294,1.08443,6170 +2020-03-24 13:30,1.08444,1.08444,1.07882,1.07978,10563 +2020-03-24 13:45,1.07978,1.08245,1.0795,1.08122,10421 +2020-03-24 14:00,1.08121,1.08203,1.08015,1.08036,8479 +2020-03-24 14:15,1.08037,1.08126,1.07831,1.07837,10055 +2020-03-24 14:30,1.07837,1.07917,1.0769,1.07897,7015 +2020-03-24 14:45,1.07898,1.07974,1.07832,1.07846,5417 +2020-03-24 15:00,1.07845,1.07855,1.07701,1.07829,4314 +2020-03-24 15:15,1.07831,1.08022,1.0776,1.07934,5635 +2020-03-24 15:30,1.07932,1.07972,1.07705,1.07786,7393 +2020-03-24 15:45,1.07784,1.08016,1.07767,1.07948,6663 +2020-03-24 16:00,1.07953,1.0821,1.07905,1.08059,6262 +2020-03-24 16:15,1.0806,1.08103,1.07851,1.07884,6447 +2020-03-24 16:30,1.07885,1.07986,1.07758,1.0779,5631 +2020-03-24 16:45,1.0779,1.07965,1.07783,1.07903,3196 +2020-03-24 17:00,1.07904,1.07925,1.07749,1.07851,4425 +2020-03-24 17:15,1.07852,1.07852,1.07672,1.07674,2677 +2020-03-24 17:30,1.07678,1.07779,1.07531,1.07571,3953 +2020-03-24 17:45,1.0757,1.07661,1.07532,1.07565,3046 +2020-03-24 18:00,1.07566,1.07596,1.07516,1.07591,3605 +2020-03-24 18:15,1.07591,1.07707,1.07585,1.07696,3114 +2020-03-24 18:30,1.07696,1.07729,1.0754,1.07562,2657 +2020-03-24 18:45,1.07567,1.0761,1.07503,1.07586,2188 +2020-03-24 19:00,1.07584,1.07585,1.0747,1.0747,1815 +2020-03-24 19:15,1.07467,1.07524,1.07457,1.07473,2257 +2020-03-24 19:30,1.07473,1.0757,1.07466,1.07548,1883 +2020-03-24 19:45,1.07551,1.0774,1.07475,1.07716,2096 +2020-03-24 20:00,1.07713,1.07752,1.07671,1.07672,618 +2020-03-24 20:15,1.0767,1.07784,1.07654,1.07782,852 +2020-03-24 20:30,1.07782,1.07892,1.07769,1.07819,1138 +2020-03-24 20:45,1.07818,1.07986,1.07809,1.07861,1797 +2020-03-24 21:00,1.07861,1.07863,1.07643,1.0781,605 +2020-03-24 21:15,1.07815,1.07891,1.0781,1.07818,233 +2020-03-24 21:30,1.07817,1.07896,1.07813,1.07862,254 +2020-03-24 21:45,1.07862,1.07863,1.0775,1.07829,410 +2020-03-24 22:00,1.07812,1.07973,1.07803,1.07971,1305 +2020-03-24 22:15,1.0797,1.08088,1.07966,1.08067,742 +2020-03-24 22:30,1.08066,1.08128,1.08007,1.08043,762 +2020-03-24 22:45,1.08043,1.0815,1.08018,1.08115,731 +2020-03-24 23:00,1.08115,1.08147,1.08071,1.08106,796 +2020-03-24 23:15,1.08106,1.08114,1.07969,1.07975,951 +2020-03-24 23:30,1.07975,1.08088,1.07974,1.08075,1449 +2020-03-24 23:45,1.08074,1.08116,1.07973,1.07977,1245 +2020-03-25 00:00,1.07978,1.08021,1.07876,1.07927,3150 +2020-03-25 00:15,1.07928,1.08005,1.07879,1.0791,1978 +2020-03-25 00:30,1.07908,1.07926,1.07792,1.07828,2501 +2020-03-25 00:45,1.0783,1.07902,1.07599,1.0787,3729 +2020-03-25 01:00,1.07868,1.07991,1.07838,1.07954,2366 +2020-03-25 01:15,1.07954,1.08008,1.07853,1.0797,2046 +2020-03-25 01:30,1.07972,1.07993,1.07923,1.07988,1943 +2020-03-25 01:45,1.07986,1.08088,1.07976,1.08065,2127 +2020-03-25 02:00,1.08066,1.08074,1.08012,1.08026,2193 +2020-03-25 02:15,1.08027,1.08101,1.08017,1.08057,1892 +2020-03-25 02:30,1.08057,1.08072,1.07988,1.08038,1908 +2020-03-25 02:45,1.08038,1.08237,1.08038,1.08232,1946 +2020-03-25 03:00,1.08232,1.08232,1.08098,1.08099,2370 +2020-03-25 03:15,1.08099,1.08129,1.08078,1.08096,2726 +2020-03-25 03:30,1.08096,1.08194,1.08093,1.08153,1632 +2020-03-25 03:45,1.08152,1.08169,1.08067,1.0809,1952 +2020-03-25 04:00,1.08089,1.08096,1.08069,1.08074,2155 +2020-03-25 04:15,1.08076,1.08132,1.08071,1.08083,2562 +2020-03-25 04:30,1.08084,1.08084,1.08031,1.08046,1387 +2020-03-25 04:45,1.08045,1.0812,1.08032,1.08113,2470 +2020-03-25 05:00,1.08111,1.0814,1.07982,1.08032,3128 +2020-03-25 05:15,1.08031,1.08062,1.07922,1.07974,1690 +2020-03-25 05:30,1.07975,1.08071,1.07975,1.08067,1629 +2020-03-25 05:45,1.08066,1.0818,1.08063,1.0816,1255 +2020-03-25 06:00,1.08163,1.08232,1.08128,1.0818,3705 +2020-03-25 06:15,1.08181,1.08211,1.08168,1.08184,2043 +2020-03-25 06:30,1.08189,1.08224,1.08095,1.08105,2475 +2020-03-25 06:45,1.08104,1.08184,1.08065,1.08159,2128 +2020-03-25 07:00,1.08161,1.08243,1.08121,1.08215,3032 +2020-03-25 07:15,1.08216,1.0824,1.08198,1.08225,2319 +2020-03-25 07:30,1.08225,1.08404,1.08188,1.08198,3581 +2020-03-25 07:45,1.08198,1.08221,1.08055,1.0807,3356 +2020-03-25 08:00,1.08068,1.08122,1.07928,1.08054,7108 +2020-03-25 08:15,1.08055,1.08218,1.0805,1.08165,6325 +2020-03-25 08:30,1.08168,1.0834,1.08168,1.08292,6171 +2020-03-25 08:45,1.08291,1.08428,1.08213,1.08332,5482 +2020-03-25 09:00,1.08333,1.08447,1.08278,1.08382,5786 +2020-03-25 09:15,1.08383,1.08465,1.08319,1.0834,4270 +2020-03-25 09:30,1.0834,1.08469,1.0831,1.08463,5043 +2020-03-25 09:45,1.08462,1.08494,1.08405,1.08431,4734 +2020-03-25 10:00,1.08434,1.08455,1.08332,1.0836,4016 +2020-03-25 10:15,1.08361,1.08478,1.08329,1.08452,4153 +2020-03-25 10:30,1.08453,1.08453,1.08117,1.08208,6778 +2020-03-25 10:45,1.08208,1.08229,1.0805,1.08058,7051 +2020-03-25 11:00,1.08059,1.08221,1.07995,1.08067,7236 +2020-03-25 11:15,1.08067,1.08267,1.08066,1.08245,4257 +2020-03-25 11:30,1.08244,1.08285,1.08217,1.08235,2904 +2020-03-25 11:45,1.08235,1.0828,1.08086,1.08108,3158 +2020-03-25 12:00,1.08109,1.08175,1.08043,1.08118,4493 +2020-03-25 12:15,1.08115,1.08158,1.08026,1.08142,5978 +2020-03-25 12:30,1.08144,1.08182,1.07994,1.08063,6044 +2020-03-25 12:45,1.08063,1.08262,1.08019,1.08198,4757 +2020-03-25 13:00,1.08199,1.08323,1.08144,1.08274,4900 +2020-03-25 13:15,1.08275,1.08296,1.08203,1.08274,3655 +2020-03-25 13:30,1.08273,1.08273,1.08103,1.08109,6578 +2020-03-25 13:45,1.08109,1.08144,1.07972,1.07987,6013 +2020-03-25 14:00,1.07986,1.08089,1.07968,1.08052,4456 +2020-03-25 14:15,1.08054,1.08149,1.08044,1.08088,4708 +2020-03-25 14:30,1.08089,1.0813,1.07969,1.08029,4852 +2020-03-25 14:45,1.08028,1.08104,1.0799,1.08053,3912 +2020-03-25 15:00,1.08054,1.08108,1.07976,1.08035,2944 +2020-03-25 15:15,1.08035,1.08053,1.07848,1.07923,2799 +2020-03-25 15:30,1.07922,1.08041,1.07875,1.07986,4365 +2020-03-25 15:45,1.07986,1.08385,1.07937,1.0835,6348 +2020-03-25 16:00,1.0835,1.08496,1.08292,1.08384,6766 +2020-03-25 16:15,1.08384,1.08434,1.08271,1.0834,4527 +2020-03-25 16:30,1.08337,1.08417,1.08284,1.08414,2918 +2020-03-25 16:45,1.08413,1.08572,1.08384,1.085,3330 +2020-03-25 17:00,1.08499,1.08503,1.08405,1.08415,3277 +2020-03-25 17:15,1.08414,1.0869,1.0841,1.0867,3868 +2020-03-25 17:30,1.0867,1.08678,1.08565,1.08662,3663 +2020-03-25 17:45,1.08662,1.08692,1.08556,1.08604,2314 +2020-03-25 18:00,1.08605,1.08704,1.08563,1.08684,2576 +2020-03-25 18:15,1.08684,1.08815,1.08677,1.08789,1549 +2020-03-25 18:30,1.08789,1.08796,1.08692,1.08744,2146 +2020-03-25 18:45,1.08747,1.08763,1.08637,1.08664,2262 +2020-03-25 19:00,1.08665,1.08794,1.08662,1.08707,2092 +2020-03-25 19:15,1.08706,1.08807,1.08673,1.08796,1817 +2020-03-25 19:30,1.08796,1.08891,1.08751,1.08756,2400 +2020-03-25 19:45,1.0876,1.08874,1.08731,1.08837,3382 +2020-03-25 20:00,1.08836,1.08933,1.08834,1.08923,701 +2020-03-25 20:15,1.08923,1.08929,1.08845,1.08875,624 +2020-03-25 20:30,1.08874,1.08938,1.08865,1.08884,644 +2020-03-25 20:45,1.08884,1.0889,1.08792,1.08812,510 +2020-03-25 21:00,1.08812,1.08818,1.08736,1.0878,245 +2020-03-25 21:15,1.08781,1.08784,1.08723,1.08736,236 +2020-03-25 21:30,1.08736,1.0879,1.08736,1.08765,479 +2020-03-25 21:45,1.08766,1.08838,1.08727,1.08796,823 +2020-03-25 22:00,1.08797,1.08897,1.08796,1.08887,618 +2020-03-25 22:15,1.08888,1.08898,1.0871,1.08711,532 +2020-03-25 22:30,1.0871,1.08809,1.08698,1.08808,1218 +2020-03-25 22:45,1.08807,1.0888,1.08784,1.08811,946 +2020-03-25 23:00,1.08813,1.08853,1.08773,1.08804,668 +2020-03-25 23:15,1.08806,1.08854,1.08804,1.0884,1008 +2020-03-25 23:30,1.0884,1.08867,1.08826,1.08858,867 +2020-03-25 23:45,1.08859,1.08891,1.08854,1.08884,880 +2020-03-26 00:00,1.08882,1.08888,1.08742,1.08821,1654 +2020-03-26 00:15,1.08821,1.08943,1.088,1.0889,1999 +2020-03-26 00:30,1.08891,1.09218,1.08874,1.0913,2210 +2020-03-26 00:45,1.0913,1.09336,1.09053,1.09215,2520 +2020-03-26 01:00,1.09216,1.09217,1.09067,1.09139,2354 +2020-03-26 01:15,1.09139,1.0916,1.09026,1.09044,1792 +2020-03-26 01:30,1.09045,1.09084,1.09006,1.09069,1501 +2020-03-26 01:45,1.0907,1.09097,1.09015,1.09066,1005 +2020-03-26 02:00,1.09066,1.09109,1.0903,1.09036,1151 +2020-03-26 02:15,1.09036,1.09061,1.08956,1.08975,1093 +2020-03-26 02:30,1.08975,1.09016,1.08919,1.08987,1375 +2020-03-26 02:45,1.08987,1.09143,1.08987,1.09143,1262 +2020-03-26 03:00,1.09143,1.09193,1.09085,1.09111,1672 +2020-03-26 03:15,1.09111,1.09192,1.091,1.09189,1352 +2020-03-26 03:30,1.0919,1.0919,1.09113,1.09131,1456 +2020-03-26 03:45,1.09132,1.09196,1.09107,1.09169,921 +2020-03-26 04:00,1.09169,1.09192,1.09104,1.0911,948 +2020-03-26 04:15,1.0911,1.09122,1.09066,1.09116,706 +2020-03-26 04:30,1.09114,1.0915,1.09105,1.09133,792 +2020-03-26 04:45,1.09131,1.0914,1.09062,1.09062,867 +2020-03-26 05:00,1.09062,1.09184,1.09051,1.09133,1171 +2020-03-26 05:15,1.09134,1.09169,1.09107,1.09162,1131 +2020-03-26 05:30,1.09172,1.09196,1.0916,1.09176,1031 +2020-03-26 05:45,1.09176,1.09176,1.09051,1.0909,1175 +2020-03-26 06:00,1.09089,1.09116,1.09039,1.0906,991 +2020-03-26 06:15,1.09059,1.09065,1.08967,1.08967,1231 +2020-03-26 06:30,1.08968,1.09149,1.08967,1.09142,1197 +2020-03-26 06:45,1.09143,1.09152,1.08999,1.09007,1156 +2020-03-26 07:00,1.09005,1.09289,1.09002,1.09235,5542 +2020-03-26 07:15,1.09234,1.0924,1.08979,1.09129,3987 +2020-03-26 07:30,1.09127,1.09155,1.09003,1.09052,2486 +2020-03-26 07:45,1.09054,1.09277,1.09047,1.09248,3649 +2020-03-26 08:00,1.09248,1.09398,1.09153,1.09317,6744 +2020-03-26 08:15,1.09317,1.09398,1.09215,1.09309,5181 +2020-03-26 08:30,1.09312,1.09399,1.09303,1.09329,3661 +2020-03-26 08:45,1.09328,1.09446,1.09299,1.09379,5269 +2020-03-26 09:00,1.09377,1.09464,1.09367,1.09441,3665 +2020-03-26 09:15,1.09438,1.09459,1.09325,1.09332,5707 +2020-03-26 09:30,1.09332,1.09509,1.0926,1.09485,4442 +2020-03-26 09:45,1.09487,1.09491,1.09354,1.09461,3193 +2020-03-26 10:00,1.09461,1.09485,1.09372,1.09479,3105 +2020-03-26 10:15,1.09479,1.09496,1.09388,1.0942,2448 +2020-03-26 10:30,1.09421,1.09539,1.09415,1.09504,2682 +2020-03-26 10:45,1.09503,1.0957,1.09492,1.09536,3308 +2020-03-26 11:00,1.09536,1.09673,1.09535,1.09599,3628 +2020-03-26 11:15,1.09598,1.09782,1.09583,1.09706,5066 +2020-03-26 11:30,1.09706,1.09726,1.09623,1.09643,4023 +2020-03-26 11:45,1.09643,1.09643,1.09551,1.09594,3256 +2020-03-26 12:00,1.09593,1.09597,1.09288,1.09334,6436 +2020-03-26 12:15,1.09334,1.09511,1.09296,1.09509,6195 +2020-03-26 12:30,1.09504,1.09584,1.09273,1.09489,8487 +2020-03-26 12:45,1.09487,1.09767,1.09403,1.09719,7386 +2020-03-26 13:00,1.09722,1.09897,1.097,1.098,7716 +2020-03-26 13:15,1.09802,1.09857,1.0964,1.09656,7150 +2020-03-26 13:30,1.09655,1.09687,1.09488,1.09572,8103 +2020-03-26 13:45,1.09571,1.09788,1.09497,1.09749,5258 +2020-03-26 14:00,1.09749,1.09801,1.09593,1.09645,5537 +2020-03-26 14:15,1.09645,1.0979,1.09577,1.09713,6103 +2020-03-26 14:30,1.09715,1.09801,1.09554,1.09681,5606 +2020-03-26 14:45,1.09681,1.09924,1.0953,1.09914,6717 +2020-03-26 15:00,1.09915,1.10011,1.09861,1.09898,6002 +2020-03-26 15:15,1.09897,1.10191,1.09869,1.10161,4557 +2020-03-26 15:30,1.1016,1.10181,1.09925,1.09967,4254 +2020-03-26 15:45,1.09967,1.10285,1.09906,1.10245,7010 +2020-03-26 16:00,1.10246,1.10266,1.10081,1.10122,7664 +2020-03-26 16:15,1.1012,1.10239,1.10083,1.10219,3335 +2020-03-26 16:30,1.1022,1.10287,1.10197,1.10206,2214 +2020-03-26 16:45,1.1021,1.10446,1.1016,1.10435,4282 +2020-03-26 17:00,1.10433,1.10441,1.10231,1.10253,3384 +2020-03-26 17:15,1.10254,1.10306,1.10197,1.10245,2952 +2020-03-26 17:30,1.10244,1.10409,1.10243,1.10372,3136 +2020-03-26 17:45,1.10372,1.10401,1.10237,1.10242,3531 +2020-03-26 18:00,1.10241,1.10296,1.10184,1.10262,4323 +2020-03-26 18:15,1.10262,1.10366,1.10255,1.1033,2274 +2020-03-26 18:30,1.10329,1.10414,1.10312,1.10381,1891 +2020-03-26 18:45,1.1038,1.10427,1.10294,1.10424,2040 +2020-03-26 19:00,1.10422,1.10459,1.10258,1.10291,1231 +2020-03-26 19:15,1.1029,1.10415,1.10279,1.10381,1662 +2020-03-26 19:30,1.1038,1.10416,1.10345,1.10362,2137 +2020-03-26 19:45,1.10362,1.10539,1.1033,1.10535,2195 +2020-03-26 20:00,1.10534,1.10587,1.10394,1.1047,1794 +2020-03-26 20:15,1.10472,1.10492,1.10422,1.10438,885 +2020-03-26 20:30,1.10438,1.1045,1.1032,1.10349,526 +2020-03-26 20:45,1.10349,1.10368,1.103,1.10302,930 +2020-03-26 21:00,1.10298,1.10324,1.1027,1.1028,289 +2020-03-26 21:15,1.10282,1.10303,1.10242,1.10293,348 +2020-03-26 21:30,1.10293,1.10297,1.1023,1.10275,688 +2020-03-26 21:45,1.10277,1.10307,1.10275,1.10291,763 +2020-03-26 22:00,1.10292,1.10372,1.10234,1.10234,884 +2020-03-26 22:15,1.10234,1.10297,1.10229,1.10295,479 +2020-03-26 22:30,1.10295,1.1035,1.10294,1.10349,417 +2020-03-26 22:45,1.10351,1.10407,1.10321,1.10344,475 +2020-03-26 23:00,1.10349,1.10419,1.10347,1.1038,482 +2020-03-26 23:15,1.10382,1.10447,1.10381,1.10434,371 +2020-03-26 23:30,1.10432,1.10537,1.104,1.10535,1406 +2020-03-26 23:45,1.10536,1.10589,1.10449,1.10475,1072 +2020-03-27 00:00,1.10475,1.10482,1.104,1.10423,1213 +2020-03-27 00:15,1.1042,1.1042,1.10328,1.10358,1423 +2020-03-27 00:30,1.10357,1.10412,1.10349,1.1038,901 +2020-03-27 00:45,1.10382,1.10433,1.10249,1.10375,1790 +2020-03-27 01:00,1.10375,1.10434,1.10331,1.1043,1435 +2020-03-27 01:15,1.10431,1.10484,1.10408,1.10446,1201 +2020-03-27 01:30,1.10446,1.10459,1.10385,1.10397,1503 +2020-03-27 01:45,1.10397,1.10397,1.10301,1.10307,1203 +2020-03-27 02:00,1.10306,1.10358,1.10279,1.1034,863 +2020-03-27 02:15,1.10342,1.10432,1.10334,1.10412,982 +2020-03-27 02:30,1.10415,1.10479,1.10407,1.10474,1043 +2020-03-27 02:45,1.10474,1.10642,1.10463,1.1064,1342 +2020-03-27 03:00,1.10637,1.10785,1.10605,1.10664,2411 +2020-03-27 03:15,1.10665,1.10702,1.10584,1.10638,1239 +2020-03-27 03:30,1.10638,1.10864,1.10632,1.10758,1533 +2020-03-27 03:45,1.10759,1.10868,1.10742,1.1079,1344 +2020-03-27 04:00,1.10789,1.1079,1.10663,1.10669,1450 +2020-03-27 04:15,1.10668,1.10721,1.10583,1.10705,1455 +2020-03-27 04:30,1.10706,1.10739,1.10631,1.10685,862 +2020-03-27 04:45,1.10686,1.10719,1.10579,1.10582,1364 +2020-03-27 05:00,1.10584,1.10693,1.1057,1.10589,995 +2020-03-27 05:15,1.10589,1.10624,1.10551,1.1059,871 +2020-03-27 05:30,1.1059,1.10635,1.10554,1.10568,984 +2020-03-27 05:45,1.10567,1.10738,1.1055,1.10727,1089 +2020-03-27 06:00,1.10725,1.10739,1.10603,1.10638,1344 +2020-03-27 06:15,1.10639,1.1071,1.10572,1.10611,1096 +2020-03-27 06:30,1.10612,1.10613,1.10352,1.10406,2393 +2020-03-27 06:45,1.10405,1.10514,1.10379,1.10474,1629 +2020-03-27 07:00,1.10475,1.10543,1.10374,1.10381,3001 +2020-03-27 07:15,1.10381,1.10404,1.1025,1.10253,3463 +2020-03-27 07:30,1.10252,1.10268,1.10082,1.10185,3398 +2020-03-27 07:45,1.10185,1.10237,1.10098,1.10215,3072 +2020-03-27 08:00,1.10216,1.10403,1.10165,1.10329,4855 +2020-03-27 08:15,1.1033,1.10356,1.10187,1.10205,5273 +2020-03-27 08:30,1.10206,1.10285,1.10181,1.10186,3857 +2020-03-27 08:45,1.10185,1.10252,1.1001,1.10116,3742 +2020-03-27 09:00,1.10117,1.10183,1.10051,1.10125,3964 +2020-03-27 09:15,1.10125,1.10172,1.09933,1.0998,3918 +2020-03-27 09:30,1.09981,1.10117,1.09965,1.10042,3877 +2020-03-27 09:45,1.10044,1.10189,1.09981,1.1002,3641 +2020-03-27 10:00,1.10024,1.10101,1.09964,1.10008,4774 +2020-03-27 10:15,1.10008,1.10049,1.09905,1.10022,3920 +2020-03-27 10:30,1.10023,1.10133,1.10012,1.1013,4058 +2020-03-27 10:45,1.10133,1.10198,1.10101,1.10156,2708 +2020-03-27 11:00,1.10157,1.10314,1.1004,1.10259,2840 +2020-03-27 11:15,1.10257,1.10276,1.101,1.1015,3944 +2020-03-27 11:30,1.10151,1.10309,1.1009,1.10162,3655 +2020-03-27 11:45,1.10161,1.10295,1.1006,1.10061,2926 +2020-03-27 12:00,1.10065,1.10116,1.10029,1.10038,3464 +2020-03-27 12:15,1.10036,1.10136,1.09994,1.10111,3347 +2020-03-27 12:30,1.10111,1.10111,1.09778,1.09812,3364 +2020-03-27 12:45,1.09811,1.09873,1.09761,1.09859,2992 +2020-03-27 13:00,1.0986,1.09876,1.09693,1.09766,4715 +2020-03-27 13:15,1.09766,1.09773,1.09623,1.0964,4564 +2020-03-27 13:30,1.0964,1.09655,1.09533,1.09632,4886 +2020-03-27 13:45,1.09631,1.09837,1.09615,1.09819,4899 +2020-03-27 14:00,1.09819,1.10073,1.09792,1.10033,5077 +2020-03-27 14:15,1.10033,1.10039,1.09853,1.09904,5647 +2020-03-27 14:30,1.09904,1.09953,1.09794,1.09867,4334 +2020-03-27 14:45,1.09868,1.10102,1.09836,1.10058,4882 +2020-03-27 15:00,1.10059,1.10241,1.09998,1.10231,4089 +2020-03-27 15:15,1.10232,1.10369,1.10217,1.10358,4519 +2020-03-27 15:30,1.10357,1.10469,1.1029,1.10358,5005 +2020-03-27 15:45,1.10358,1.10595,1.10292,1.10587,8304 +2020-03-27 16:00,1.1059,1.10774,1.10525,1.10714,6034 +2020-03-27 16:15,1.10717,1.10916,1.10635,1.10744,6834 +2020-03-27 16:30,1.10742,1.10843,1.10658,1.10686,3229 +2020-03-27 16:45,1.10684,1.10849,1.10643,1.10783,3894 +2020-03-27 17:00,1.10783,1.10874,1.107,1.10714,3780 +2020-03-27 17:15,1.10712,1.10763,1.10641,1.10699,3166 +2020-03-27 17:30,1.10699,1.10869,1.10697,1.10833,5045 +2020-03-27 17:45,1.10833,1.11021,1.10794,1.10982,4903 +2020-03-27 18:00,1.10981,1.11105,1.1097,1.11001,4600 +2020-03-27 18:15,1.11,1.11012,1.1091,1.10991,2271 +2020-03-27 18:30,1.1099,1.11028,1.10955,1.11,1903 +2020-03-27 18:45,1.11005,1.11219,1.10985,1.11182,2196 +2020-03-27 19:00,1.11181,1.1127,1.1114,1.11227,3134 +2020-03-27 19:15,1.11225,1.11293,1.11184,1.11244,1976 +2020-03-27 19:30,1.11245,1.11279,1.1117,1.11213,2827 +2020-03-27 19:45,1.11213,1.11252,1.11141,1.11227,4036 +2020-03-27 20:00,1.11226,1.11387,1.11201,1.11385,1142 +2020-03-27 20:15,1.11386,1.11473,1.11349,1.11439,678 +2020-03-27 20:30,1.11439,1.11439,1.11285,1.11338,910 +2020-03-27 20:45,1.11338,1.11452,1.11334,1.11379,2299 +2020-03-29 21:00,1.11172,1.11203,1.11083,1.11138,83 +2020-03-29 21:15,1.11148,1.11285,1.11148,1.11243,91 +2020-03-29 21:30,1.11243,1.11259,1.1115,1.1122,144 +2020-03-29 21:45,1.1122,1.11238,1.11205,1.11205,37 +2020-03-29 22:00,1.11205,1.11281,1.1118,1.11185,1374 +2020-03-29 22:15,1.11183,1.11188,1.11067,1.11077,1170 +2020-03-29 22:30,1.11075,1.11168,1.11067,1.11077,1052 +2020-03-29 22:45,1.11079,1.11172,1.11079,1.11096,478 +2020-03-29 23:00,1.11098,1.11173,1.11049,1.11168,675 +2020-03-29 23:15,1.11171,1.11219,1.11155,1.11204,521 +2020-03-29 23:30,1.11203,1.11301,1.11193,1.11277,867 +2020-03-29 23:45,1.11273,1.1144,1.11272,1.11361,1823 +2020-03-30 00:00,1.11361,1.11383,1.11187,1.11221,1471 +2020-03-30 00:15,1.1122,1.11288,1.11192,1.11208,817 +2020-03-30 00:30,1.11208,1.11217,1.11055,1.1108,946 +2020-03-30 00:45,1.1108,1.11094,1.10897,1.11047,1723 +2020-03-30 01:00,1.11049,1.11135,1.10985,1.11097,1047 +2020-03-30 01:15,1.11097,1.11171,1.10983,1.1106,992 +2020-03-30 01:30,1.11059,1.11086,1.10949,1.10962,977 +2020-03-30 01:45,1.10962,1.1098,1.10919,1.10954,765 +2020-03-30 02:00,1.10955,1.10962,1.10869,1.10927,1103 +2020-03-30 02:15,1.10929,1.10967,1.10906,1.10952,810 +2020-03-30 02:30,1.10952,1.10954,1.10853,1.10908,1022 +2020-03-30 02:45,1.10908,1.10947,1.10904,1.10929,614 +2020-03-30 03:00,1.10929,1.10929,1.10847,1.10849,533 +2020-03-30 03:15,1.10848,1.10862,1.10792,1.10824,646 +2020-03-30 03:30,1.10823,1.10839,1.108,1.10805,626 +2020-03-30 03:45,1.10805,1.10859,1.10796,1.10803,800 +2020-03-30 04:00,1.10803,1.10807,1.10687,1.10705,782 +2020-03-30 04:15,1.10707,1.10863,1.10707,1.10802,1332 +2020-03-30 04:30,1.10803,1.10817,1.10685,1.10773,990 +2020-03-30 04:45,1.10773,1.10823,1.10728,1.10809,620 +2020-03-30 05:00,1.10811,1.10864,1.10764,1.10819,684 +2020-03-30 05:15,1.10818,1.10826,1.107,1.10777,1017 +2020-03-30 05:30,1.10777,1.10874,1.10759,1.10841,1011 +2020-03-30 05:45,1.10841,1.11024,1.10761,1.11005,2175 +2020-03-30 06:00,1.11005,1.1106,1.10818,1.10818,2675 +2020-03-30 06:15,1.10817,1.10971,1.10811,1.1088,2142 +2020-03-30 06:30,1.10879,1.10886,1.1068,1.10712,2770 +2020-03-30 06:45,1.10713,1.10863,1.10606,1.10619,2924 +2020-03-30 07:00,1.10619,1.10811,1.10603,1.10756,4180 +2020-03-30 07:15,1.10756,1.10886,1.10661,1.10674,3830 +2020-03-30 07:30,1.10675,1.10762,1.10626,1.10686,3518 +2020-03-30 07:45,1.10686,1.10833,1.10631,1.10825,4191 +2020-03-30 08:00,1.10826,1.10846,1.10684,1.10731,4080 +2020-03-30 08:15,1.10731,1.10809,1.10676,1.10746,3259 +2020-03-30 08:30,1.10747,1.10817,1.10717,1.10789,3111 +2020-03-30 08:45,1.10788,1.10916,1.10788,1.10916,3410 +2020-03-30 09:00,1.10916,1.10958,1.10845,1.10851,2728 +2020-03-30 09:15,1.10853,1.10889,1.10761,1.1078,2580 +2020-03-30 09:30,1.10781,1.1079,1.10651,1.10752,3441 +2020-03-30 09:45,1.10752,1.10752,1.10657,1.10694,3358 +2020-03-30 10:00,1.10695,1.10713,1.10599,1.10646,2501 +2020-03-30 10:15,1.10649,1.10654,1.10561,1.10593,1996 +2020-03-30 10:30,1.10593,1.10713,1.10566,1.10684,2127 +2020-03-30 10:45,1.10682,1.10731,1.10643,1.10675,2279 +2020-03-30 11:00,1.10674,1.10711,1.1062,1.10622,2525 +2020-03-30 11:15,1.10623,1.10631,1.10454,1.10511,2693 +2020-03-30 11:30,1.1051,1.10646,1.10502,1.10563,2622 +2020-03-30 11:45,1.10563,1.10625,1.10509,1.10604,2904 +2020-03-30 12:00,1.10603,1.10623,1.10332,1.10332,3325 +2020-03-30 12:15,1.10332,1.10353,1.1027,1.10336,3023 +2020-03-30 12:30,1.10337,1.10351,1.10282,1.10294,2340 +2020-03-30 12:45,1.10294,1.10339,1.10126,1.10153,3616 +2020-03-30 13:00,1.10154,1.10311,1.101,1.10244,4812 +2020-03-30 13:15,1.10239,1.10344,1.10226,1.10288,3519 +2020-03-30 13:30,1.1029,1.10341,1.10184,1.10212,4038 +2020-03-30 13:45,1.10213,1.10362,1.10179,1.10314,3968 +2020-03-30 14:00,1.10314,1.10421,1.10252,1.10264,4555 +2020-03-30 14:15,1.10261,1.10345,1.10227,1.10241,3349 +2020-03-30 14:30,1.10243,1.10436,1.10219,1.10285,4168 +2020-03-30 14:45,1.10283,1.10404,1.10194,1.10294,7255 +2020-03-30 15:00,1.10292,1.10408,1.10271,1.10306,4208 +2020-03-30 15:15,1.10305,1.10369,1.10246,1.10326,2901 +2020-03-30 15:30,1.10325,1.10459,1.10248,1.10286,2964 +2020-03-30 15:45,1.10286,1.10303,1.10113,1.1017,3088 +2020-03-30 16:00,1.10169,1.10233,1.10109,1.10164,2901 +2020-03-30 16:15,1.10165,1.1025,1.10136,1.10231,2020 +2020-03-30 16:30,1.10231,1.10245,1.10181,1.10223,1515 +2020-03-30 16:45,1.10222,1.10222,1.1014,1.10193,2054 +2020-03-30 17:00,1.10194,1.10229,1.10152,1.10178,1510 +2020-03-30 17:15,1.1018,1.1022,1.10144,1.10159,1383 +2020-03-30 17:30,1.10159,1.10225,1.10115,1.10127,1164 +2020-03-30 17:45,1.10128,1.1024,1.10118,1.10185,1302 +2020-03-30 18:00,1.10184,1.10354,1.10165,1.10341,1715 +2020-03-30 18:15,1.1034,1.10417,1.10304,1.10374,1409 +2020-03-30 18:30,1.10375,1.10409,1.1033,1.10365,1161 +2020-03-30 18:45,1.10363,1.10392,1.10254,1.10266,2020 +2020-03-30 19:00,1.10268,1.10443,1.10255,1.10442,1897 +2020-03-30 19:15,1.10446,1.1046,1.10405,1.10432,1560 +2020-03-30 19:30,1.10431,1.10448,1.10395,1.10416,1424 +2020-03-30 19:45,1.10415,1.10533,1.1039,1.10528,1541 +2020-03-30 20:00,1.10528,1.1053,1.10404,1.10406,934 +2020-03-30 20:15,1.10406,1.10556,1.10363,1.10465,851 +2020-03-30 20:30,1.10464,1.10471,1.10417,1.10462,664 +2020-03-30 20:45,1.10466,1.10507,1.10386,1.10427,775 +2020-03-30 21:00,1.10427,1.10472,1.10371,1.10412,108 +2020-03-30 21:15,1.10411,1.10431,1.10247,1.10339,314 +2020-03-30 21:30,1.10334,1.10545,1.1025,1.10474,1708 +2020-03-30 21:45,1.10478,1.1054,1.10437,1.10439,636 +2020-03-30 22:00,1.10445,1.10505,1.10422,1.10496,1071 +2020-03-30 22:15,1.10496,1.10506,1.10401,1.10488,533 +2020-03-30 22:30,1.10487,1.10489,1.10435,1.10439,414 +2020-03-30 22:45,1.1044,1.10474,1.10392,1.10414,240 +2020-03-30 23:00,1.10413,1.10416,1.10284,1.10305,662 +2020-03-30 23:15,1.10304,1.10325,1.10245,1.10298,718 +2020-03-30 23:30,1.10297,1.10301,1.10254,1.10259,300 +2020-03-30 23:45,1.10262,1.10298,1.10242,1.1029,371 +2020-03-31 00:00,1.10289,1.10336,1.10248,1.10315,807 +2020-03-31 00:15,1.10314,1.10371,1.10282,1.10323,618 +2020-03-31 00:30,1.10325,1.10427,1.10295,1.10315,1079 +2020-03-31 00:45,1.10315,1.10338,1.09832,1.10131,3699 +2020-03-31 01:00,1.10131,1.10249,1.101,1.10107,2287 +2020-03-31 01:15,1.10109,1.10231,1.10094,1.10114,2154 +2020-03-31 01:30,1.10114,1.10128,1.10004,1.10076,1917 +2020-03-31 01:45,1.10077,1.10193,1.10077,1.10159,1344 +2020-03-31 02:00,1.10158,1.10182,1.10115,1.10175,1147 +2020-03-31 02:15,1.10176,1.10246,1.10128,1.10235,678 +2020-03-31 02:30,1.10236,1.10318,1.10232,1.10277,785 +2020-03-31 02:45,1.10278,1.10311,1.10237,1.10258,651 +2020-03-31 03:00,1.10258,1.10301,1.10234,1.10255,986 +2020-03-31 03:15,1.10254,1.10271,1.10228,1.10245,735 +2020-03-31 03:30,1.10245,1.10253,1.10185,1.10231,769 +2020-03-31 03:45,1.10231,1.10331,1.10226,1.10265,769 +2020-03-31 04:00,1.10262,1.10267,1.10187,1.10243,544 +2020-03-31 04:15,1.10242,1.10277,1.1019,1.10203,746 +2020-03-31 04:30,1.10203,1.10232,1.10151,1.10166,851 +2020-03-31 04:45,1.10166,1.10201,1.10139,1.1016,631 +2020-03-31 05:00,1.1016,1.10174,1.10075,1.10089,944 +2020-03-31 05:15,1.10089,1.10197,1.10086,1.10171,683 +2020-03-31 05:30,1.10171,1.10171,1.10093,1.10093,581 +2020-03-31 05:45,1.10093,1.10199,1.10089,1.10181,988 +2020-03-31 06:00,1.10181,1.1025,1.10149,1.10218,1757 +2020-03-31 06:15,1.10218,1.10228,1.10024,1.10069,1741 +2020-03-31 06:30,1.10068,1.10152,1.09946,1.09979,1874 +2020-03-31 06:45,1.09977,1.10039,1.09908,1.10013,2099 +2020-03-31 07:00,1.10013,1.10063,1.0991,1.1005,3508 +2020-03-31 07:15,1.1005,1.1005,1.0991,1.09957,4149 +2020-03-31 07:30,1.09957,1.10041,1.09918,1.0999,2938 +2020-03-31 07:45,1.09991,1.10033,1.09939,1.09962,2465 +2020-03-31 08:00,1.09961,1.10021,1.09917,1.09959,4050 +2020-03-31 08:15,1.0996,1.10011,1.09935,1.09951,4691 +2020-03-31 08:30,1.09955,1.10023,1.09913,1.09924,2912 +2020-03-31 08:45,1.09925,1.09956,1.09783,1.09787,3818 +2020-03-31 09:00,1.09788,1.09828,1.09724,1.0978,4202 +2020-03-31 09:15,1.0978,1.09901,1.09763,1.09767,4573 +2020-03-31 09:30,1.09767,1.09808,1.09675,1.09684,3996 +2020-03-31 09:45,1.09684,1.09782,1.09666,1.09762,3876 +2020-03-31 10:00,1.09761,1.09803,1.09684,1.09718,3695 +2020-03-31 10:15,1.09718,1.09738,1.09609,1.09643,4481 +2020-03-31 10:30,1.09644,1.09663,1.09564,1.09593,3793 +2020-03-31 10:45,1.0959,1.09598,1.09476,1.09488,3673 +2020-03-31 11:00,1.09488,1.09489,1.09265,1.09373,6256 +2020-03-31 11:15,1.09372,1.09434,1.09338,1.09406,4454 +2020-03-31 11:30,1.09406,1.09445,1.09336,1.09427,4089 +2020-03-31 11:45,1.09428,1.09599,1.09401,1.09519,4353 +2020-03-31 12:00,1.0952,1.096,1.09508,1.0956,4853 +2020-03-31 12:15,1.0956,1.09563,1.0944,1.09519,4614 +2020-03-31 12:30,1.09518,1.09791,1.09509,1.09686,10885 +2020-03-31 12:45,1.09687,1.09768,1.09639,1.09719,6651 +2020-03-31 13:00,1.0972,1.09762,1.09658,1.09719,6019 +2020-03-31 13:15,1.0972,1.09735,1.09583,1.09608,6303 +2020-03-31 13:30,1.09608,1.09728,1.09608,1.09661,5221 +2020-03-31 13:45,1.09662,1.09733,1.09528,1.09529,5664 +2020-03-31 14:00,1.09531,1.09688,1.09426,1.09639,7389 +2020-03-31 14:15,1.09639,1.09701,1.09504,1.09694,5359 +2020-03-31 14:30,1.09696,1.09945,1.09655,1.09832,10484 +2020-03-31 14:45,1.09831,1.09939,1.09529,1.09708,16103 +2020-03-31 15:00,1.09712,1.09977,1.09677,1.09915,12215 +2020-03-31 15:15,1.09916,1.1006,1.09857,1.10034,7633 +2020-03-31 15:30,1.10029,1.10104,1.09931,1.10075,6353 +2020-03-31 15:45,1.10075,1.10272,1.10035,1.1014,6514 +2020-03-31 16:00,1.10141,1.10182,1.09903,1.09948,6000 +2020-03-31 16:15,1.09948,1.09987,1.09902,1.09983,4330 +2020-03-31 16:30,1.09982,1.10045,1.09819,1.09847,4319 +2020-03-31 16:45,1.09849,1.09849,1.09672,1.09709,4998 +2020-03-31 17:00,1.09709,1.09804,1.09699,1.09749,5121 +2020-03-31 17:15,1.0975,1.09819,1.09726,1.09779,5183 +2020-03-31 17:30,1.0978,1.09788,1.09649,1.09693,3814 +2020-03-31 17:45,1.09692,1.10096,1.09685,1.10022,5345 +2020-03-31 18:00,1.10022,1.1019,1.09958,1.10115,5809 +2020-03-31 18:15,1.10122,1.1016,1.09998,1.10055,3941 +2020-03-31 18:30,1.10055,1.10127,1.09996,1.10121,2661 +2020-03-31 18:45,1.10121,1.10216,1.1002,1.10196,3070 +2020-03-31 19:00,1.10197,1.10205,1.10082,1.10141,3507 +2020-03-31 19:15,1.1014,1.10175,1.10029,1.1006,2747 +2020-03-31 19:30,1.1006,1.10178,1.10041,1.10168,2993 +2020-03-31 19:45,1.1017,1.10319,1.10153,1.10318,4079 +2020-03-31 20:00,1.10317,1.10317,1.10189,1.10264,1811 +2020-03-31 20:15,1.10265,1.1028,1.10165,1.10234,1189 +2020-03-31 20:30,1.10234,1.10315,1.10231,1.10315,922 +2020-03-31 20:45,1.10316,1.10371,1.10286,1.10299,902 +2020-03-31 21:00,1.10286,1.10338,1.10286,1.10338,155 +2020-03-31 21:15,1.1033,1.10364,1.10327,1.10361,168 +2020-03-31 21:30,1.10359,1.1039,1.10334,1.10341,242 +2020-03-31 21:45,1.10341,1.10348,1.10271,1.10286,300 +2020-03-31 22:00,1.10291,1.10359,1.10281,1.10303,728 +2020-03-31 22:15,1.10302,1.10313,1.1025,1.10263,469 +2020-03-31 22:30,1.10265,1.1029,1.10231,1.10289,1137 +2020-03-31 22:45,1.10289,1.10308,1.10223,1.1023,1430 +2020-03-31 23:00,1.10232,1.103,1.10227,1.10275,1707 +2020-03-31 23:15,1.10274,1.1037,1.10263,1.10357,1955 +2020-03-31 23:30,1.10357,1.10372,1.10315,1.10319,1168 +2020-03-31 23:45,1.10319,1.10319,1.10254,1.10259,1294 +2020-04-01 00:00,1.1026,1.10313,1.10221,1.10235,2889 +2020-04-01 00:15,1.10237,1.1033,1.10236,1.10313,2014 +2020-04-01 00:30,1.10312,1.10331,1.10246,1.1029,2251 +2020-04-01 00:45,1.10291,1.10361,1.10281,1.10312,3286 +2020-04-01 01:00,1.10313,1.10328,1.10251,1.10262,1828 +2020-04-01 01:15,1.10263,1.1029,1.10205,1.10231,2724 +2020-04-01 01:30,1.10231,1.10236,1.10102,1.10104,2519 +2020-04-01 01:45,1.10103,1.10174,1.1009,1.10151,2139 +2020-04-01 02:00,1.10152,1.10158,1.10056,1.10144,2864 +2020-04-01 02:15,1.10145,1.10186,1.10131,1.10134,2257 +2020-04-01 02:30,1.10134,1.10146,1.10084,1.10119,2230 +2020-04-01 02:45,1.10119,1.10285,1.10118,1.10245,1887 +2020-04-01 03:00,1.10245,1.1031,1.10215,1.10289,2716 +2020-04-01 03:15,1.10289,1.10302,1.10223,1.10238,2426 +2020-04-01 03:30,1.10237,1.10255,1.1016,1.102,1839 +2020-04-01 03:45,1.10198,1.10231,1.10169,1.10195,1980 +2020-04-01 04:00,1.10195,1.10286,1.10189,1.10268,1911 +2020-04-01 04:15,1.10271,1.10291,1.10207,1.10231,1726 +2020-04-01 04:30,1.10231,1.10243,1.10198,1.10236,1525 +2020-04-01 04:45,1.10236,1.10249,1.10153,1.10163,1726 +2020-04-01 05:00,1.10163,1.10265,1.10153,1.1021,2376 +2020-04-01 05:15,1.10206,1.10263,1.10193,1.10255,1673 +2020-04-01 05:30,1.10254,1.10329,1.10244,1.1025,2901 +2020-04-01 05:45,1.1025,1.10288,1.10179,1.10242,2110 +2020-04-01 06:00,1.10243,1.10267,1.10143,1.10156,2516 +2020-04-01 06:15,1.10152,1.10156,1.0998,1.09998,4769 +2020-04-01 06:30,1.09999,1.1005,1.09871,1.09912,3337 +2020-04-01 06:45,1.09909,1.09938,1.09812,1.09827,3691 +2020-04-01 07:00,1.09829,1.0992,1.09745,1.09842,6001 +2020-04-01 07:15,1.09843,1.09859,1.09711,1.0973,5259 +2020-04-01 07:30,1.09728,1.09831,1.09695,1.09775,3848 +2020-04-01 07:45,1.09776,1.09807,1.09583,1.09596,5470 +2020-04-01 08:00,1.09595,1.09676,1.09555,1.09556,4470 +2020-04-01 08:15,1.09556,1.09576,1.0931,1.09347,4880 +2020-04-01 08:30,1.09346,1.09502,1.09343,1.095,4929 +2020-04-01 08:45,1.095,1.09583,1.09484,1.09566,3562 +2020-04-01 09:00,1.09568,1.09592,1.09278,1.0932,5170 +2020-04-01 09:15,1.09321,1.09355,1.09165,1.09285,5676 +2020-04-01 09:30,1.09284,1.0936,1.09236,1.09277,5657 +2020-04-01 09:45,1.09278,1.09369,1.09277,1.09334,3360 +2020-04-01 10:00,1.09333,1.09367,1.09309,1.09351,2614 +2020-04-01 10:15,1.09352,1.09419,1.09317,1.09395,3970 +2020-04-01 10:30,1.09394,1.09435,1.09347,1.09389,3226 +2020-04-01 10:45,1.09387,1.09463,1.09369,1.09428,3641 +2020-04-01 11:00,1.09427,1.09472,1.09341,1.09432,3490 +2020-04-01 11:15,1.09432,1.0949,1.09385,1.09437,2539 +2020-04-01 11:30,1.09437,1.09437,1.09343,1.09361,2885 +2020-04-01 11:45,1.09358,1.09414,1.0927,1.09409,3689 +2020-04-01 12:00,1.09409,1.09425,1.0928,1.09368,4564 +2020-04-01 12:15,1.09368,1.09387,1.09232,1.09246,5881 +2020-04-01 12:30,1.09247,1.09294,1.09208,1.09272,3973 +2020-04-01 12:45,1.0927,1.0937,1.09239,1.09297,3981 +2020-04-01 13:00,1.09298,1.09318,1.09205,1.09272,3966 +2020-04-01 13:15,1.09271,1.09337,1.09212,1.09303,3547 +2020-04-01 13:30,1.09304,1.09332,1.09212,1.0928,3940 +2020-04-01 13:45,1.09279,1.09333,1.09246,1.09298,4529 +2020-04-01 14:00,1.09298,1.09417,1.09246,1.09357,5310 +2020-04-01 14:15,1.09356,1.09361,1.09217,1.09238,4570 +2020-04-01 14:30,1.09239,1.09309,1.09183,1.09211,4403 +2020-04-01 14:45,1.09209,1.09339,1.09189,1.09212,7852 +2020-04-01 15:00,1.09211,1.09322,1.09166,1.09264,5036 +2020-04-01 15:15,1.09264,1.09417,1.09258,1.09392,3413 +2020-04-01 15:30,1.09392,1.09423,1.09335,1.0934,1697 +2020-04-01 15:45,1.0934,1.09363,1.09298,1.09329,2014 +2020-04-01 16:00,1.09329,1.09376,1.09319,1.09347,2095 +2020-04-01 16:15,1.09346,1.09346,1.09221,1.09261,1616 +2020-04-01 16:30,1.09261,1.09292,1.09234,1.09286,1102 +2020-04-01 16:45,1.09288,1.09309,1.09224,1.09253,1482 +2020-04-01 17:00,1.09252,1.09252,1.09156,1.09212,1896 +2020-04-01 17:15,1.09211,1.09252,1.09051,1.0912,2429 +2020-04-01 17:30,1.09119,1.09139,1.09068,1.09124,2126 +2020-04-01 17:45,1.09125,1.09227,1.09026,1.09197,4105 +2020-04-01 18:00,1.09195,1.094,1.09195,1.09242,2686 +2020-04-01 18:15,1.09243,1.0928,1.09188,1.09201,1694 +2020-04-01 18:30,1.092,1.09335,1.09191,1.0931,1517 +2020-04-01 18:45,1.09306,1.09358,1.09285,1.09294,2196 +2020-04-01 19:00,1.09291,1.09391,1.09284,1.09381,2694 +2020-04-01 19:15,1.09382,1.09527,1.09328,1.09451,2309 +2020-04-01 19:30,1.0945,1.09579,1.09446,1.09574,1728 +2020-04-01 19:45,1.09575,1.09575,1.09447,1.09476,2838 +2020-04-01 20:00,1.09473,1.09639,1.09464,1.09609,1631 +2020-04-01 20:15,1.09608,1.09696,1.09556,1.09593,1090 +2020-04-01 20:30,1.09596,1.09697,1.09582,1.09612,1376 +2020-04-01 20:45,1.09613,1.09682,1.09589,1.09616,925 +2020-04-01 21:00,1.09619,1.09683,1.09607,1.09676,260 +2020-04-01 21:15,1.09676,1.09684,1.09539,1.09548,249 +2020-04-01 21:30,1.09549,1.09584,1.09482,1.09499,1063 +2020-04-01 21:45,1.09499,1.09533,1.09407,1.09445,283 +2020-04-01 22:00,1.09447,1.0958,1.09438,1.0957,1856 +2020-04-01 22:15,1.0957,1.09594,1.0956,1.09579,999 +2020-04-01 22:30,1.09581,1.09587,1.09515,1.09524,1025 +2020-04-01 22:45,1.09523,1.0957,1.0952,1.09559,862 +2020-04-01 23:00,1.09559,1.09559,1.09458,1.09515,1242 +2020-04-01 23:15,1.09515,1.09518,1.09457,1.09459,952 +2020-04-01 23:30,1.0946,1.09518,1.09458,1.09496,1567 +2020-04-01 23:45,1.09494,1.09536,1.09458,1.09513,1212 +2020-04-02 00:00,1.09514,1.09527,1.09452,1.09477,1499 +2020-04-02 00:15,1.09478,1.0949,1.0942,1.09441,1338 +2020-04-02 00:30,1.09441,1.09477,1.09435,1.0946,1919 +2020-04-02 00:45,1.09459,1.09462,1.09384,1.09427,2786 +2020-04-02 01:00,1.09427,1.09591,1.09424,1.0959,2139 +2020-04-02 01:15,1.0959,1.0959,1.09459,1.09495,1695 +2020-04-02 01:30,1.09497,1.09506,1.0942,1.09428,1207 +2020-04-02 01:45,1.09432,1.09451,1.09402,1.09404,1174 +2020-04-02 02:00,1.09402,1.09433,1.09368,1.09432,1100 +2020-04-02 02:15,1.09432,1.09451,1.09412,1.09441,793 +2020-04-02 02:30,1.0944,1.09442,1.09352,1.09354,1949 +2020-04-02 02:45,1.09353,1.09371,1.09326,1.09341,1950 +2020-04-02 03:00,1.09341,1.09349,1.09302,1.0934,1439 +2020-04-02 03:15,1.0934,1.09395,1.09304,1.09379,1533 +2020-04-02 03:30,1.09379,1.09385,1.09349,1.09375,1393 +2020-04-02 03:45,1.09374,1.09399,1.09369,1.09389,1157 +2020-04-02 04:00,1.09389,1.09396,1.09365,1.09375,431 +2020-04-02 04:15,1.09375,1.09386,1.09346,1.09383,796 +2020-04-02 04:30,1.09383,1.09386,1.09345,1.09382,781 +2020-04-02 04:45,1.09382,1.09449,1.0937,1.09442,690 +2020-04-02 05:00,1.0944,1.09458,1.09408,1.09458,1383 +2020-04-02 05:15,1.09459,1.095,1.09437,1.09466,1586 +2020-04-02 05:30,1.09464,1.09502,1.09424,1.09437,2107 +2020-04-02 05:45,1.09437,1.09476,1.09432,1.09463,1708 +2020-04-02 06:00,1.09464,1.09644,1.09433,1.09597,3176 +2020-04-02 06:15,1.09595,1.09602,1.09536,1.09545,2616 +2020-04-02 06:30,1.09545,1.09553,1.09445,1.09495,2634 +2020-04-02 06:45,1.09496,1.09505,1.09341,1.09366,2003 +2020-04-02 07:00,1.09364,1.09425,1.09321,1.09363,4406 +2020-04-02 07:15,1.09362,1.09527,1.09347,1.09467,3162 +2020-04-02 07:30,1.09467,1.0951,1.09374,1.09391,4236 +2020-04-02 07:45,1.09392,1.09403,1.09316,1.09322,3006 +2020-04-02 08:00,1.09323,1.09345,1.09164,1.09199,4179 +2020-04-02 08:15,1.09198,1.09214,1.09153,1.09193,4525 +2020-04-02 08:30,1.09194,1.09262,1.09176,1.09187,3667 +2020-04-02 08:45,1.09187,1.09262,1.09147,1.09189,3745 +2020-04-02 09:00,1.09188,1.09214,1.09147,1.09192,2269 +2020-04-02 09:15,1.09191,1.09393,1.09171,1.09381,3805 +2020-04-02 09:30,1.09379,1.09397,1.09313,1.09332,2888 +2020-04-02 09:45,1.09331,1.09375,1.09266,1.09349,2770 +2020-04-02 10:00,1.09349,1.09376,1.09316,1.09324,2785 +2020-04-02 10:15,1.09324,1.09341,1.09192,1.09314,4106 +2020-04-02 10:30,1.09313,1.09344,1.09262,1.09328,3101 +2020-04-02 10:45,1.09328,1.09341,1.09143,1.09199,3675 +2020-04-02 11:00,1.09199,1.09241,1.09111,1.09211,4980 +2020-04-02 11:15,1.0921,1.09292,1.09114,1.09229,3494 +2020-04-02 11:30,1.09229,1.09247,1.09159,1.09194,3691 +2020-04-02 11:45,1.09194,1.09195,1.09079,1.09134,4060 +2020-04-02 12:00,1.09134,1.09152,1.08967,1.09064,6205 +2020-04-02 12:15,1.09062,1.09071,1.08938,1.09035,5487 +2020-04-02 12:30,1.09031,1.0912,1.08945,1.09087,7923 +2020-04-02 12:45,1.09087,1.09087,1.0875,1.08796,5698 +2020-04-02 13:00,1.08796,1.08823,1.08562,1.08565,7244 +2020-04-02 13:15,1.08563,1.08663,1.08523,1.08654,5960 +2020-04-02 13:30,1.08654,1.08775,1.08542,1.08594,6197 +2020-04-02 13:45,1.08593,1.08602,1.08404,1.08514,4987 +2020-04-02 14:00,1.08513,1.0873,1.08436,1.08694,8258 +2020-04-02 14:15,1.08694,1.08717,1.08546,1.08611,6171 +2020-04-02 14:30,1.08612,1.09002,1.08596,1.08749,12990 +2020-04-02 14:45,1.0875,1.08776,1.08451,1.08623,11859 +2020-04-02 15:00,1.08622,1.08685,1.08533,1.08685,7614 +2020-04-02 15:15,1.08687,1.08811,1.0863,1.08689,5144 +2020-04-02 15:30,1.08689,1.08714,1.0844,1.08539,4524 +2020-04-02 15:45,1.08538,1.08694,1.08517,1.08616,3410 +2020-04-02 16:00,1.08618,1.08737,1.08588,1.08671,3664 +2020-04-02 16:15,1.08671,1.087,1.08415,1.0845,4886 +2020-04-02 16:30,1.0845,1.08532,1.08445,1.08455,3537 +2020-04-02 16:45,1.08455,1.08542,1.0837,1.08415,7251 +2020-04-02 17:00,1.08416,1.08474,1.08386,1.08473,3284 +2020-04-02 17:15,1.08473,1.08485,1.08405,1.08433,2666 +2020-04-02 17:30,1.08433,1.08433,1.08264,1.08343,2984 +2020-04-02 17:45,1.08343,1.08429,1.08255,1.08258,2889 +2020-04-02 18:00,1.0826,1.08335,1.08225,1.08297,2970 +2020-04-02 18:15,1.08296,1.0834,1.08206,1.0834,2284 +2020-04-02 18:30,1.08338,1.08338,1.0825,1.08303,2723 +2020-04-02 18:45,1.08302,1.08515,1.08268,1.08514,3215 +2020-04-02 19:00,1.08513,1.08521,1.0842,1.08447,2778 +2020-04-02 19:15,1.08447,1.08494,1.08413,1.08457,3175 +2020-04-02 19:30,1.08457,1.08506,1.08436,1.08488,1986 +2020-04-02 19:45,1.08487,1.08577,1.08447,1.08495,3803 +2020-04-02 20:00,1.08495,1.08562,1.08452,1.08538,1294 +2020-04-02 20:15,1.08541,1.08666,1.08528,1.08615,1268 +2020-04-02 20:30,1.08613,1.08656,1.08572,1.08605,914 +2020-04-02 20:45,1.08606,1.08614,1.08547,1.08561,642 +2020-04-02 21:00,1.08557,1.08645,1.08554,1.08567,129 +2020-04-02 21:15,1.08564,1.08565,1.08552,1.08558,144 +2020-04-02 21:30,1.08561,1.08564,1.08511,1.08525,216 +2020-04-02 21:45,1.08524,1.08584,1.0852,1.08529,805 +2020-04-02 22:00,1.0853,1.08586,1.0853,1.08539,701 +2020-04-02 22:15,1.0854,1.08562,1.08525,1.0855,605 +2020-04-02 22:30,1.0855,1.08562,1.08513,1.08546,943 +2020-04-02 22:45,1.08546,1.0855,1.08499,1.08499,800 +2020-04-02 23:00,1.08499,1.08509,1.08482,1.08496,960 +2020-04-02 23:15,1.08495,1.08496,1.08421,1.08422,914 +2020-04-02 23:30,1.08423,1.08466,1.08422,1.08457,793 +2020-04-02 23:45,1.08455,1.08466,1.08427,1.0846,803 +2020-04-03 00:00,1.08459,1.08459,1.08386,1.08395,1951 +2020-04-03 00:15,1.08395,1.08412,1.08362,1.0837,1715 +2020-04-03 00:30,1.0837,1.08383,1.08346,1.08357,1296 +2020-04-03 00:45,1.08356,1.08436,1.0833,1.08423,2018 +2020-04-03 01:00,1.08423,1.08452,1.08412,1.08432,2000 +2020-04-03 01:15,1.08434,1.08456,1.08394,1.08455,2074 +2020-04-03 01:30,1.08454,1.08537,1.0845,1.08525,1171 +2020-04-03 01:45,1.08525,1.08553,1.08508,1.08534,1263 +2020-04-03 02:00,1.08533,1.08538,1.08481,1.08484,1341 +2020-04-03 02:15,1.08485,1.08544,1.08481,1.0853,1325 +2020-04-03 02:30,1.0853,1.08549,1.0848,1.08493,1351 +2020-04-03 02:45,1.08493,1.08545,1.08481,1.08542,995 +2020-04-03 03:00,1.0854,1.08544,1.08486,1.08487,1397 +2020-04-03 03:15,1.08488,1.08488,1.08441,1.08475,1462 +2020-04-03 03:30,1.08476,1.08484,1.08421,1.08427,1334 +2020-04-03 03:45,1.08428,1.08465,1.08395,1.08453,1202 +2020-04-03 04:00,1.08452,1.08483,1.08425,1.0843,1534 +2020-04-03 04:15,1.0843,1.0845,1.08394,1.08398,1349 +2020-04-03 04:30,1.08397,1.08424,1.08366,1.08392,1142 +2020-04-03 04:45,1.08393,1.08451,1.08393,1.08436,1454 +2020-04-03 05:00,1.08436,1.08451,1.08383,1.08405,1211 +2020-04-03 05:15,1.08406,1.08488,1.084,1.08475,1053 +2020-04-03 05:30,1.08475,1.08492,1.08448,1.08489,1850 +2020-04-03 05:45,1.08491,1.08512,1.08448,1.08474,1901 +2020-04-03 06:00,1.08474,1.08474,1.08398,1.08408,3551 +2020-04-03 06:15,1.08407,1.08407,1.08287,1.0829,2841 +2020-04-03 06:30,1.08291,1.08347,1.0825,1.08333,2317 +2020-04-03 06:45,1.08334,1.08362,1.08235,1.08276,3137 +2020-04-03 07:00,1.08277,1.08312,1.08096,1.08106,5510 +2020-04-03 07:15,1.08106,1.08116,1.07961,1.07971,5374 +2020-04-03 07:30,1.07971,1.08078,1.07924,1.0803,4633 +2020-04-03 07:45,1.08028,1.08072,1.07875,1.07902,5301 +2020-04-03 08:00,1.07902,1.08064,1.07871,1.08033,5134 +2020-04-03 08:15,1.08033,1.08054,1.0797,1.08043,3947 +2020-04-03 08:30,1.08043,1.08056,1.07977,1.08006,3810 +2020-04-03 08:45,1.08007,1.0803,1.07955,1.07981,4223 +2020-04-03 09:00,1.07981,1.08004,1.07866,1.07933,5317 +2020-04-03 09:15,1.07935,1.08042,1.07929,1.08007,5358 +2020-04-03 09:30,1.08007,1.08021,1.07934,1.08005,4298 +2020-04-03 09:45,1.08004,1.08141,1.07996,1.08129,4791 +2020-04-03 10:00,1.0813,1.0816,1.08065,1.0808,3906 +2020-04-03 10:15,1.08081,1.08102,1.08009,1.08018,2644 +2020-04-03 10:30,1.08018,1.08121,1.08014,1.08121,2528 +2020-04-03 10:45,1.08121,1.0814,1.08,1.0801,3821 +2020-04-03 11:00,1.08009,1.08037,1.07855,1.0794,3239 +2020-04-03 11:15,1.0794,1.07972,1.07844,1.07883,5806 +2020-04-03 11:30,1.07883,1.07942,1.0787,1.07917,4105 +2020-04-03 11:45,1.07915,1.07941,1.07867,1.07888,3806 +2020-04-03 12:00,1.0789,1.07941,1.07836,1.07847,6312 +2020-04-03 12:15,1.07848,1.0805,1.07828,1.08005,5764 +2020-04-03 12:30,1.08003,1.08063,1.07779,1.07842,9265 +2020-04-03 12:45,1.07843,1.07908,1.07753,1.07761,7778 +2020-04-03 13:00,1.07761,1.07903,1.07753,1.07873,5430 +2020-04-03 13:15,1.07873,1.0798,1.07866,1.07979,5791 +2020-04-03 13:30,1.0798,1.07981,1.07832,1.07856,6233 +2020-04-03 13:45,1.07855,1.07896,1.07784,1.07894,3909 +2020-04-03 14:00,1.07893,1.07936,1.07839,1.07868,4380 +2020-04-03 14:15,1.07867,1.07943,1.07831,1.07889,4860 +2020-04-03 14:30,1.07888,1.07908,1.07762,1.07783,4022 +2020-04-03 14:45,1.07782,1.08059,1.07727,1.07975,6816 +2020-04-03 15:00,1.07975,1.08093,1.0792,1.08059,5824 +2020-04-03 15:15,1.08064,1.08071,1.07874,1.07962,3722 +2020-04-03 15:30,1.07962,1.07967,1.07851,1.07852,3389 +2020-04-03 15:45,1.07852,1.07988,1.07815,1.07978,2748 +2020-04-03 16:00,1.07979,1.07979,1.07782,1.07828,3238 +2020-04-03 16:15,1.07828,1.07919,1.07793,1.07904,3137 +2020-04-03 16:30,1.07907,1.07962,1.0787,1.07928,2194 +2020-04-03 16:45,1.07926,1.07936,1.07811,1.0787,3658 +2020-04-03 17:00,1.07872,1.07909,1.07835,1.07835,2599 +2020-04-03 17:15,1.07839,1.0793,1.07819,1.07921,2624 +2020-04-03 17:30,1.07921,1.07956,1.07905,1.0795,1538 +2020-04-03 17:45,1.0795,1.08008,1.07925,1.07982,1977 +2020-04-03 18:00,1.07982,1.08045,1.07961,1.08027,2177 +2020-04-03 18:15,1.08027,1.08161,1.08022,1.0815,2057 +2020-04-03 18:30,1.08151,1.08152,1.08057,1.08137,2652 +2020-04-03 18:45,1.08136,1.08152,1.0809,1.08104,3073 +2020-04-03 19:00,1.08103,1.08224,1.08097,1.08214,1569 +2020-04-03 19:15,1.08215,1.08253,1.08188,1.08223,1530 +2020-04-03 19:30,1.08223,1.08282,1.08147,1.0817,1262 +2020-04-03 19:45,1.08173,1.08216,1.08081,1.08092,2074 +2020-04-03 20:00,1.08098,1.0815,1.08081,1.08126,933 +2020-04-03 20:15,1.08127,1.08133,1.08045,1.08064,1069 +2020-04-03 20:30,1.08063,1.08163,1.0806,1.08074,1342 +2020-04-03 20:45,1.08074,1.08173,1.07955,1.07955,2352 +2020-04-05 21:00,1.08082,1.08141,1.08082,1.08121,32 +2020-04-05 21:15,1.08119,1.08145,1.08099,1.08143,49 +2020-04-05 21:30,1.08139,1.08182,1.08119,1.08138,39 +2020-04-05 21:45,1.08138,1.08191,1.08085,1.08116,290 +2020-04-05 22:00,1.08106,1.08193,1.08026,1.08174,3848 +2020-04-05 22:15,1.08177,1.08214,1.0813,1.0815,5043 +2020-04-05 22:30,1.08149,1.08193,1.08089,1.08166,2531 +2020-04-05 22:45,1.08166,1.08183,1.08141,1.08175,1870 +2020-04-05 23:00,1.08176,1.08189,1.08092,1.08105,2108 +2020-04-05 23:15,1.08106,1.08149,1.08106,1.08128,2639 +2020-04-05 23:30,1.08127,1.08145,1.08099,1.08111,1724 +2020-04-05 23:45,1.08111,1.08135,1.0804,1.08053,3003 +2020-04-06 00:00,1.08053,1.0811,1.07985,1.08069,3798 +2020-04-06 00:15,1.08072,1.08077,1.08011,1.08077,3408 +2020-04-06 00:30,1.08077,1.08205,1.08064,1.08205,3847 +2020-04-06 00:45,1.08204,1.08232,1.0813,1.08143,4220 +2020-04-06 01:00,1.08143,1.08191,1.08129,1.08173,2213 +2020-04-06 01:15,1.08173,1.08209,1.08142,1.08157,2599 +2020-04-06 01:30,1.08156,1.08182,1.0814,1.08146,2606 +2020-04-06 01:45,1.08144,1.08182,1.0814,1.0817,2364 +2020-04-06 02:00,1.08171,1.08183,1.08123,1.08138,2004 +2020-04-06 02:15,1.08137,1.08138,1.08102,1.08121,1658 +2020-04-06 02:30,1.0812,1.0814,1.0809,1.08096,1624 +2020-04-06 02:45,1.08096,1.08123,1.08054,1.08117,2500 +2020-04-06 03:00,1.08117,1.08142,1.08106,1.08124,2236 +2020-04-06 03:15,1.08124,1.08167,1.08124,1.08158,1622 +2020-04-06 03:30,1.08158,1.08218,1.08147,1.08168,2368 +2020-04-06 03:45,1.08167,1.08185,1.08144,1.08147,1935 +2020-04-06 04:00,1.08148,1.08198,1.08144,1.08189,2032 +2020-04-06 04:15,1.08189,1.08233,1.08183,1.08193,1730 +2020-04-06 04:30,1.08194,1.08195,1.08101,1.08136,1969 +2020-04-06 04:45,1.08137,1.08164,1.08116,1.08145,2496 +2020-04-06 05:00,1.08145,1.08218,1.08119,1.08204,3062 +2020-04-06 05:15,1.08203,1.08297,1.0819,1.08268,3404 +2020-04-06 05:30,1.08268,1.08352,1.08241,1.08334,2655 +2020-04-06 05:45,1.08335,1.08354,1.08242,1.08262,3604 +2020-04-06 06:00,1.08261,1.08262,1.08143,1.0815,4090 +2020-04-06 06:15,1.08149,1.08233,1.0813,1.08186,4720 +2020-04-06 06:30,1.08186,1.08251,1.08152,1.08154,2811 +2020-04-06 06:45,1.08153,1.082,1.08085,1.08099,3246 +2020-04-06 07:00,1.081,1.08198,1.08068,1.08157,5102 +2020-04-06 07:15,1.08158,1.08193,1.08115,1.08178,3306 +2020-04-06 07:30,1.08179,1.082,1.08133,1.08178,2906 +2020-04-06 07:45,1.08177,1.08308,1.08165,1.08175,4128 +2020-04-06 08:00,1.08175,1.08175,1.08041,1.08104,4454 +2020-04-06 08:15,1.08104,1.08125,1.08051,1.08088,3811 +2020-04-06 08:30,1.0809,1.081,1.07868,1.07886,5223 +2020-04-06 08:45,1.07887,1.07935,1.07831,1.0793,4618 +2020-04-06 09:00,1.0793,1.08012,1.07899,1.07991,3577 +2020-04-06 09:15,1.07994,1.08036,1.0796,1.07983,2727 +2020-04-06 09:30,1.07982,1.08083,1.07974,1.08079,3450 +2020-04-06 09:45,1.0808,1.08129,1.08041,1.08117,3547 +2020-04-06 10:00,1.08119,1.0818,1.08112,1.08144,3567 +2020-04-06 10:15,1.08145,1.08145,1.08024,1.08027,3436 +2020-04-06 10:30,1.08028,1.08094,1.08025,1.08065,2787 +2020-04-06 10:45,1.08065,1.08069,1.07993,1.08003,3060 +2020-04-06 11:00,1.08003,1.08036,1.07984,1.08031,2219 +2020-04-06 11:15,1.08031,1.08134,1.08006,1.08028,3923 +2020-04-06 11:30,1.0803,1.08033,1.07921,1.07958,4061 +2020-04-06 11:45,1.07959,1.08014,1.07883,1.07992,3799 +2020-04-06 12:00,1.07991,1.08061,1.07899,1.07902,5245 +2020-04-06 12:15,1.07903,1.07937,1.07862,1.07875,3787 +2020-04-06 12:30,1.07876,1.07886,1.07833,1.07846,3920 +2020-04-06 12:45,1.07847,1.07938,1.07796,1.07919,4101 +2020-04-06 13:00,1.07918,1.07954,1.07853,1.07866,3859 +2020-04-06 13:15,1.07869,1.079,1.07781,1.0779,3342 +2020-04-06 13:30,1.0779,1.07824,1.07683,1.07777,4691 +2020-04-06 13:45,1.07779,1.08026,1.07778,1.08023,6195 +2020-04-06 14:00,1.08022,1.08092,1.07889,1.08085,6592 +2020-04-06 14:15,1.08085,1.0809,1.0794,1.07961,4880 +2020-04-06 14:30,1.0796,1.08009,1.07883,1.07891,4557 +2020-04-06 14:45,1.07891,1.07913,1.07777,1.07853,5617 +2020-04-06 15:00,1.07853,1.08064,1.07827,1.08042,3804 +2020-04-06 15:15,1.08039,1.08177,1.08034,1.08127,2197 +2020-04-06 15:30,1.08125,1.0816,1.08054,1.08071,1861 +2020-04-06 15:45,1.0807,1.08151,1.08048,1.08067,3036 +2020-04-06 16:00,1.08068,1.08082,1.07936,1.07987,3262 +2020-04-06 16:15,1.07983,1.08045,1.07958,1.08045,2747 +2020-04-06 16:30,1.08046,1.08047,1.07963,1.07968,2535 +2020-04-06 16:45,1.07968,1.08034,1.07957,1.08018,3200 +2020-04-06 17:00,1.08018,1.08057,1.07987,1.07993,1982 +2020-04-06 17:15,1.07994,1.08004,1.07915,1.07915,2309 +2020-04-06 17:30,1.07915,1.07947,1.07881,1.07939,1500 +2020-04-06 17:45,1.07938,1.08019,1.0793,1.07994,2155 +2020-04-06 18:00,1.07994,1.08019,1.07962,1.07979,1346 +2020-04-06 18:15,1.0798,1.08029,1.07956,1.0797,2108 +2020-04-06 18:30,1.0797,1.08005,1.07964,1.07999,1134 +2020-04-06 18:45,1.07998,1.08019,1.07957,1.07962,2535 +2020-04-06 19:00,1.07963,1.07988,1.07826,1.07892,3194 +2020-04-06 19:15,1.07892,1.0793,1.07831,1.07914,3571 +2020-04-06 19:30,1.07915,1.07959,1.0788,1.07886,2586 +2020-04-06 19:45,1.07884,1.07982,1.07852,1.07981,2885 +2020-04-06 20:00,1.07981,1.07996,1.07962,1.07977,987 +2020-04-06 20:15,1.07977,1.07996,1.07942,1.0796,865 +2020-04-06 20:30,1.07961,1.07971,1.07931,1.07934,464 +2020-04-06 20:45,1.07934,1.07947,1.07898,1.0792,575 +2020-04-06 21:00,1.0792,1.07952,1.0792,1.07939,206 +2020-04-06 21:15,1.07944,1.07949,1.0792,1.07943,299 +2020-04-06 21:30,1.07944,1.07954,1.07929,1.07945,543 +2020-04-06 21:45,1.07945,1.07953,1.07931,1.07936,770 +2020-04-06 22:00,1.07941,1.07946,1.0789,1.07891,781 +2020-04-06 22:15,1.07893,1.07902,1.07835,1.07845,1903 +2020-04-06 22:30,1.07846,1.07908,1.07846,1.0788,1608 +2020-04-06 22:45,1.0788,1.07902,1.0784,1.07849,1461 +2020-04-06 23:00,1.0785,1.07908,1.07843,1.07904,1763 +2020-04-06 23:15,1.07905,1.07959,1.07902,1.07933,1797 +2020-04-06 23:30,1.07933,1.0799,1.07928,1.07984,1359 +2020-04-06 23:45,1.07984,1.0802,1.07968,1.07988,1933 +2020-04-07 00:00,1.07988,1.08019,1.07965,1.07977,3038 +2020-04-07 00:15,1.07978,1.08018,1.0796,1.08001,2256 +2020-04-07 00:30,1.08001,1.08001,1.07904,1.07914,2736 +2020-04-07 00:45,1.07914,1.0795,1.07904,1.07937,2586 +2020-04-07 01:00,1.07937,1.07945,1.07908,1.07934,1616 +2020-04-07 01:15,1.07935,1.08016,1.07927,1.08005,2028 +2020-04-07 01:30,1.08005,1.08042,1.07998,1.08027,2031 +2020-04-07 01:45,1.08028,1.08093,1.08015,1.08065,2707 +2020-04-07 02:00,1.08065,1.08084,1.08048,1.08073,1835 +2020-04-07 02:15,1.08074,1.08097,1.08069,1.08074,1968 +2020-04-07 02:30,1.08074,1.08086,1.08039,1.08065,1258 +2020-04-07 02:45,1.08064,1.08089,1.08053,1.08078,1777 +2020-04-07 03:00,1.08078,1.08091,1.08069,1.08088,1118 +2020-04-07 03:15,1.08088,1.08151,1.08075,1.08118,2193 +2020-04-07 03:30,1.08118,1.08165,1.08116,1.08148,2019 +2020-04-07 03:45,1.0815,1.08184,1.08143,1.08144,1976 +2020-04-07 04:00,1.08145,1.08167,1.08123,1.08125,2221 +2020-04-07 04:15,1.08124,1.08157,1.08113,1.08142,1674 +2020-04-07 04:30,1.08142,1.0825,1.08139,1.0824,2897 +2020-04-07 04:45,1.08241,1.08301,1.08216,1.08261,2652 +2020-04-07 05:00,1.08261,1.08262,1.08207,1.08233,2256 +2020-04-07 05:15,1.08234,1.08292,1.08226,1.08274,1981 +2020-04-07 05:30,1.08274,1.08402,1.08243,1.08365,2615 +2020-04-07 05:45,1.08366,1.08406,1.08276,1.08293,3512 +2020-04-07 06:00,1.08291,1.08329,1.08231,1.0829,3429 +2020-04-07 06:15,1.08291,1.08377,1.08289,1.08304,4783 +2020-04-07 06:30,1.08304,1.08375,1.08269,1.08346,3189 +2020-04-07 06:45,1.08345,1.08618,1.08328,1.08589,4520 +2020-04-07 07:00,1.0859,1.08714,1.08542,1.08714,6942 +2020-04-07 07:15,1.08718,1.0877,1.08676,1.08741,5476 +2020-04-07 07:30,1.08741,1.08756,1.08657,1.08665,3794 +2020-04-07 07:45,1.08665,1.08785,1.0863,1.08777,4284 +2020-04-07 08:00,1.08776,1.08778,1.08652,1.08653,3370 +2020-04-07 08:15,1.08652,1.08712,1.08646,1.0869,3001 +2020-04-07 08:30,1.08688,1.0869,1.08517,1.08592,3432 +2020-04-07 08:45,1.08592,1.08684,1.0857,1.0868,3134 +2020-04-07 09:00,1.08679,1.08733,1.0863,1.08686,3346 +2020-04-07 09:15,1.08687,1.08788,1.08676,1.08726,3143 +2020-04-07 09:30,1.08726,1.08766,1.08572,1.08619,3481 +2020-04-07 09:45,1.08619,1.08742,1.08609,1.0874,2567 +2020-04-07 10:00,1.08739,1.08898,1.0873,1.08883,5698 +2020-04-07 10:15,1.08885,1.08929,1.08803,1.08815,2711 +2020-04-07 10:30,1.08815,1.08887,1.08801,1.08837,2688 +2020-04-07 10:45,1.08839,1.08891,1.08766,1.0878,2231 +2020-04-07 11:00,1.08779,1.08803,1.08732,1.08735,2824 +2020-04-07 11:15,1.08736,1.08744,1.08625,1.08658,2395 +2020-04-07 11:30,1.08657,1.08689,1.08603,1.08688,3797 +2020-04-07 11:45,1.08687,1.08821,1.08669,1.08773,4337 +2020-04-07 12:00,1.08773,1.08861,1.08736,1.08845,4496 +2020-04-07 12:15,1.08848,1.09154,1.08847,1.091,5521 +2020-04-07 12:30,1.09099,1.0915,1.09015,1.09095,3983 +2020-04-07 12:45,1.09096,1.09172,1.09024,1.09052,4602 +2020-04-07 13:00,1.09049,1.09098,1.08993,1.09007,4273 +2020-04-07 13:15,1.09009,1.09148,1.08981,1.09143,3856 +2020-04-07 13:30,1.09144,1.09146,1.09025,1.09138,6129 +2020-04-07 13:45,1.09137,1.0917,1.09065,1.09148,4893 +2020-04-07 14:00,1.09146,1.09174,1.0909,1.09125,4814 +2020-04-07 14:15,1.09126,1.09263,1.09051,1.09058,7046 +2020-04-07 14:30,1.09058,1.09111,1.09017,1.09041,4915 +2020-04-07 14:45,1.0904,1.09059,1.08807,1.08839,8235 +2020-04-07 15:00,1.08839,1.0889,1.08761,1.08882,6106 +2020-04-07 15:15,1.08882,1.08947,1.0884,1.08858,4180 +2020-04-07 15:30,1.08858,1.08965,1.08806,1.08959,3938 +2020-04-07 15:45,1.08959,1.08977,1.08854,1.08859,3857 +2020-04-07 16:00,1.08859,1.08971,1.08829,1.08901,4311 +2020-04-07 16:15,1.089,1.09033,1.08898,1.09028,3786 +2020-04-07 16:30,1.09028,1.09099,1.0897,1.08992,2746 +2020-04-07 16:45,1.08992,1.09052,1.0894,1.08961,2801 +2020-04-07 17:00,1.08964,1.09002,1.08946,1.08965,1995 +2020-04-07 17:15,1.08965,1.08975,1.08902,1.08931,2381 +2020-04-07 17:30,1.0893,1.08959,1.0889,1.08901,2364 +2020-04-07 17:45,1.08901,1.09045,1.0889,1.09035,2769 +2020-04-07 18:00,1.09034,1.09098,1.09032,1.09083,2917 +2020-04-07 18:15,1.09083,1.09091,1.09013,1.09021,2847 +2020-04-07 18:30,1.09019,1.09093,1.09017,1.09027,2639 +2020-04-07 18:45,1.09029,1.09078,1.09018,1.09025,4030 +2020-04-07 19:00,1.09024,1.09098,1.0902,1.09059,2722 +2020-04-07 19:15,1.09058,1.09079,1.09036,1.09037,2258 +2020-04-07 19:30,1.09039,1.09057,1.09013,1.09025,1708 +2020-04-07 19:45,1.09026,1.0907,1.09016,1.09046,2375 +2020-04-07 20:00,1.09046,1.09047,1.08962,1.08971,1059 +2020-04-07 20:15,1.08971,1.08979,1.08949,1.0895,429 +2020-04-07 20:30,1.0895,1.08973,1.08935,1.08943,250 +2020-04-07 20:45,1.08943,1.0896,1.08891,1.08904,850 +2020-04-07 21:00,1.08903,1.08951,1.08903,1.08934,283 +2020-04-07 21:15,1.08931,1.08948,1.0892,1.0892,243 +2020-04-07 21:30,1.0892,1.08947,1.08896,1.08922,175 +2020-04-07 21:45,1.08922,1.08925,1.0889,1.08905,177 +2020-04-07 22:00,1.08906,1.08953,1.08903,1.08921,1350 +2020-04-07 22:15,1.08922,1.08948,1.08914,1.08934,1195 +2020-04-07 22:30,1.08934,1.08944,1.08915,1.08922,1142 +2020-04-07 22:45,1.08923,1.08962,1.0891,1.08922,922 +2020-04-07 23:00,1.08922,1.08978,1.08911,1.08971,1337 +2020-04-07 23:15,1.08971,1.09002,1.08948,1.08999,1217 +2020-04-07 23:30,1.08998,1.09019,1.08977,1.09002,1304 +2020-04-07 23:45,1.09003,1.09006,1.08915,1.08935,2182 +2020-04-08 00:00,1.08934,1.08969,1.0892,1.08942,2735 +2020-04-08 00:15,1.08943,1.08947,1.08839,1.08853,3060 +2020-04-08 00:30,1.0885,1.08859,1.08711,1.08756,4098 +2020-04-08 00:45,1.08759,1.0879,1.08668,1.08677,3910 +2020-04-08 01:00,1.08678,1.08752,1.08675,1.08728,2767 +2020-04-08 01:15,1.08729,1.08792,1.08727,1.08759,1898 +2020-04-08 01:30,1.08761,1.08776,1.08705,1.08708,2066 +2020-04-08 01:45,1.08708,1.08746,1.08699,1.0871,1305 +2020-04-08 02:00,1.08709,1.08761,1.08695,1.08736,1161 +2020-04-08 02:15,1.08737,1.08746,1.08655,1.08695,1594 +2020-04-08 02:30,1.08695,1.08741,1.08694,1.08716,1310 +2020-04-08 02:45,1.08716,1.08727,1.08642,1.08646,1718 +2020-04-08 03:00,1.08648,1.08671,1.08622,1.08636,2070 +2020-04-08 03:15,1.08636,1.08672,1.08633,1.08659,1413 +2020-04-08 03:30,1.08659,1.08674,1.08607,1.08609,1414 +2020-04-08 03:45,1.08609,1.08633,1.08588,1.08596,1664 +2020-04-08 04:00,1.08597,1.08656,1.08596,1.08648,1723 +2020-04-08 04:15,1.0865,1.08713,1.08648,1.08711,1541 +2020-04-08 04:30,1.08711,1.08711,1.08657,1.08688,1169 +2020-04-08 04:45,1.08688,1.08701,1.08651,1.08674,1806 +2020-04-08 05:00,1.08671,1.08701,1.08646,1.08672,1475 +2020-04-08 05:15,1.08672,1.08742,1.08672,1.08714,2078 +2020-04-08 05:30,1.08714,1.08769,1.08693,1.08759,2317 +2020-04-08 05:45,1.08759,1.08878,1.08755,1.08812,2738 +2020-04-08 06:00,1.08814,1.08825,1.08379,1.08447,7799 +2020-04-08 06:15,1.08447,1.0847,1.08299,1.08392,5903 +2020-04-08 06:30,1.08392,1.08483,1.08373,1.08463,3601 +2020-04-08 06:45,1.08465,1.08572,1.08456,1.08571,3121 +2020-04-08 07:00,1.08572,1.08654,1.08537,1.086,4919 +2020-04-08 07:15,1.08601,1.08616,1.08451,1.08498,4676 +2020-04-08 07:30,1.08498,1.08553,1.0847,1.08548,3461 +2020-04-08 07:45,1.08548,1.08628,1.08507,1.08605,3071 +2020-04-08 08:00,1.08606,1.08624,1.08521,1.08531,3132 +2020-04-08 08:15,1.08532,1.08568,1.08497,1.0854,2680 +2020-04-08 08:30,1.0854,1.08564,1.08457,1.0855,3372 +2020-04-08 08:45,1.0855,1.08561,1.0851,1.0852,3623 +2020-04-08 09:00,1.08526,1.08711,1.08526,1.0866,4361 +2020-04-08 09:15,1.0866,1.0873,1.08632,1.08726,3678 +2020-04-08 09:30,1.08726,1.08738,1.0866,1.08663,3150 +2020-04-08 09:45,1.08664,1.0872,1.08611,1.08633,3092 +2020-04-08 10:00,1.08633,1.08723,1.08609,1.08613,3235 +2020-04-08 10:15,1.08612,1.08713,1.08607,1.08701,1979 +2020-04-08 10:30,1.08701,1.08783,1.08698,1.08735,3331 +2020-04-08 10:45,1.08735,1.08793,1.08683,1.08715,2640 +2020-04-08 11:00,1.08714,1.08751,1.08655,1.08746,2645 +2020-04-08 11:15,1.08746,1.08768,1.08685,1.08768,2616 +2020-04-08 11:30,1.08766,1.08766,1.08621,1.08656,2848 +2020-04-08 11:45,1.08657,1.0872,1.0857,1.08682,3221 +2020-04-08 12:00,1.08681,1.08732,1.08666,1.0871,2778 +2020-04-08 12:15,1.08712,1.08773,1.08696,1.08753,2902 +2020-04-08 12:30,1.08752,1.08771,1.08684,1.0875,2349 +2020-04-08 12:45,1.08752,1.08845,1.08724,1.08727,3999 +2020-04-08 13:00,1.08726,1.08817,1.08694,1.0874,3169 +2020-04-08 13:15,1.08741,1.08874,1.08734,1.08848,3151 +2020-04-08 13:30,1.08849,1.08883,1.08834,1.08867,4066 +2020-04-08 13:45,1.08868,1.0888,1.08776,1.08802,4931 +2020-04-08 14:00,1.08803,1.08867,1.08774,1.08814,3957 +2020-04-08 14:15,1.08814,1.08859,1.08796,1.08829,2253 +2020-04-08 14:30,1.0883,1.08857,1.08716,1.08738,3776 +2020-04-08 14:45,1.08742,1.08836,1.08534,1.08633,6583 +2020-04-08 15:00,1.08633,1.08704,1.08605,1.08696,4645 +2020-04-08 15:15,1.08695,1.08833,1.08661,1.08746,3857 +2020-04-08 15:30,1.08745,1.08792,1.08678,1.0871,3164 +2020-04-08 15:45,1.08711,1.08713,1.08591,1.08637,1638 +2020-04-08 16:00,1.08637,1.08653,1.08534,1.08593,1503 +2020-04-08 16:15,1.08591,1.08597,1.08513,1.08521,2575 +2020-04-08 16:30,1.08521,1.08625,1.08508,1.08579,2199 +2020-04-08 16:45,1.0858,1.08659,1.08567,1.08635,3052 +2020-04-08 17:00,1.08634,1.08649,1.08607,1.08645,1907 +2020-04-08 17:15,1.08646,1.08654,1.08605,1.08621,1678 +2020-04-08 17:30,1.08622,1.08662,1.08615,1.08655,1646 +2020-04-08 17:45,1.08654,1.08668,1.08619,1.08655,1531 +2020-04-08 18:00,1.08651,1.0867,1.08608,1.08639,2262 +2020-04-08 18:15,1.08641,1.08706,1.08637,1.08689,1831 +2020-04-08 18:30,1.0869,1.08717,1.08674,1.08709,1372 +2020-04-08 18:45,1.08709,1.08727,1.08609,1.08619,1657 +2020-04-08 19:00,1.08621,1.08666,1.08605,1.08645,1669 +2020-04-08 19:15,1.08645,1.0866,1.0861,1.0861,1281 +2020-04-08 19:30,1.08612,1.0862,1.08525,1.0854,2081 +2020-04-08 19:45,1.0854,1.08604,1.08519,1.08531,2679 +2020-04-08 20:00,1.08531,1.08573,1.08521,1.08558,861 +2020-04-08 20:15,1.08557,1.08558,1.08513,1.08525,355 +2020-04-08 20:30,1.08522,1.08528,1.08501,1.0852,289 +2020-04-08 20:45,1.08522,1.08568,1.08513,1.08564,370 +2020-04-08 21:00,1.08559,1.08589,1.08545,1.08558,180 +2020-04-08 21:15,1.08556,1.08568,1.08545,1.08549,185 +2020-04-08 21:30,1.08549,1.08576,1.08545,1.08564,315 +2020-04-08 21:45,1.08565,1.08578,1.08545,1.08559,214 +2020-04-08 22:00,1.08551,1.08567,1.08545,1.08549,685 +2020-04-08 22:15,1.0855,1.08609,1.08545,1.08605,873 +2020-04-08 22:30,1.08606,1.08607,1.08584,1.08598,505 +2020-04-08 22:45,1.08598,1.08604,1.08579,1.08589,350 +2020-04-08 23:00,1.08587,1.08605,1.0857,1.08602,1234 +2020-04-08 23:15,1.08601,1.0861,1.08586,1.08591,812 +2020-04-08 23:30,1.08592,1.08606,1.08585,1.08585,622 +2020-04-08 23:45,1.08589,1.08621,1.08589,1.08599,580 +2020-04-09 00:00,1.08598,1.08617,1.08581,1.08602,1895 +2020-04-09 00:15,1.08603,1.08658,1.08603,1.08657,2475 +2020-04-09 00:30,1.08655,1.08706,1.08642,1.08701,1965 +2020-04-09 00:45,1.08701,1.08802,1.08673,1.08715,4157 +2020-04-09 01:00,1.08713,1.08771,1.08658,1.08668,2749 +2020-04-09 01:15,1.08667,1.0868,1.0865,1.08668,2147 +2020-04-09 01:30,1.08669,1.08669,1.08564,1.0858,3452 +2020-04-09 01:45,1.0858,1.0863,1.08559,1.08591,2498 +2020-04-09 02:00,1.08594,1.08605,1.08545,1.08575,1984 +2020-04-09 02:15,1.08575,1.08601,1.08559,1.08585,1268 +2020-04-09 02:30,1.08586,1.08608,1.08547,1.08552,1356 +2020-04-09 02:45,1.08553,1.0862,1.08534,1.08617,1672 +2020-04-09 03:00,1.08616,1.08616,1.08566,1.08594,1120 +2020-04-09 03:15,1.08594,1.08683,1.08594,1.08669,1846 +2020-04-09 03:30,1.0867,1.0868,1.08639,1.08677,1772 +2020-04-09 03:45,1.08677,1.08697,1.08659,1.08664,1411 +2020-04-09 04:00,1.08665,1.08696,1.08665,1.08675,1363 +2020-04-09 04:15,1.08673,1.08676,1.08649,1.08668,857 +2020-04-09 04:30,1.08669,1.0871,1.08656,1.08665,1154 +2020-04-09 04:45,1.08664,1.08665,1.08624,1.08651,1360 +2020-04-09 05:00,1.0865,1.0866,1.08625,1.08631,997 +2020-04-09 05:15,1.08631,1.08661,1.08624,1.08636,991 +2020-04-09 05:30,1.08636,1.08664,1.08623,1.08637,987 +2020-04-09 05:45,1.08638,1.08639,1.08547,1.08552,1434 +2020-04-09 06:00,1.08553,1.08581,1.08421,1.08459,3164 +2020-04-09 06:15,1.08458,1.08509,1.08409,1.08489,2736 +2020-04-09 06:30,1.08489,1.08552,1.08459,1.08459,2222 +2020-04-09 06:45,1.0846,1.08606,1.08455,1.08598,3029 +2020-04-09 07:00,1.08601,1.08695,1.08578,1.08695,3890 +2020-04-09 07:15,1.08695,1.08709,1.08642,1.08687,2908 +2020-04-09 07:30,1.08688,1.08738,1.08637,1.08736,2805 +2020-04-09 07:45,1.08735,1.08821,1.08703,1.08757,3366 +2020-04-09 08:00,1.08756,1.08784,1.08681,1.08717,2303 +2020-04-09 08:15,1.08717,1.08752,1.08674,1.0871,2147 +2020-04-09 08:30,1.08709,1.08756,1.08696,1.0871,2600 +2020-04-09 08:45,1.08709,1.08736,1.0868,1.0869,2004 +2020-04-09 09:00,1.08691,1.08721,1.08661,1.08687,2473 +2020-04-09 09:15,1.08687,1.08762,1.08681,1.08733,2408 +2020-04-09 09:30,1.08733,1.08808,1.08715,1.08787,2101 +2020-04-09 09:45,1.08787,1.08877,1.08749,1.08863,2981 +2020-04-09 10:00,1.08864,1.08864,1.08771,1.0882,2752 +2020-04-09 10:15,1.0882,1.08893,1.08781,1.08802,2504 +2020-04-09 10:30,1.08801,1.08803,1.08656,1.08659,3200 +2020-04-09 10:45,1.0866,1.08694,1.08554,1.08597,3309 +2020-04-09 11:00,1.08599,1.08646,1.0858,1.08619,3235 +2020-04-09 11:15,1.08619,1.08625,1.08528,1.08535,2894 +2020-04-09 11:30,1.08536,1.08585,1.08496,1.085,4099 +2020-04-09 11:45,1.08502,1.08614,1.08499,1.08579,3028 +2020-04-09 12:00,1.08579,1.08674,1.08578,1.08669,2821 +2020-04-09 12:15,1.08668,1.08746,1.08664,1.08717,3810 +2020-04-09 12:30,1.08715,1.08812,1.08682,1.08782,7481 +2020-04-09 12:45,1.08784,1.091,1.08775,1.09039,7686 +2020-04-09 13:00,1.09039,1.09206,1.08949,1.09177,6617 +2020-04-09 13:15,1.09177,1.09417,1.0912,1.09405,7046 +2020-04-09 13:30,1.09405,1.09405,1.09254,1.09391,7631 +2020-04-09 13:45,1.0939,1.0939,1.09246,1.09311,6222 +2020-04-09 14:00,1.09314,1.09341,1.09148,1.09298,6155 +2020-04-09 14:15,1.09298,1.09313,1.09197,1.0927,5181 +2020-04-09 14:30,1.09274,1.09301,1.09166,1.09223,5240 +2020-04-09 14:45,1.09223,1.09454,1.09182,1.09369,7764 +2020-04-09 15:00,1.09369,1.09421,1.09255,1.09418,6905 +2020-04-09 15:15,1.09418,1.09452,1.0933,1.09337,4894 +2020-04-09 15:30,1.09334,1.0934,1.09258,1.09321,4171 +2020-04-09 15:45,1.0932,1.0939,1.09291,1.09302,2821 +2020-04-09 16:00,1.09303,1.09364,1.09229,1.09257,3032 +2020-04-09 16:15,1.09257,1.09336,1.09239,1.09269,2683 +2020-04-09 16:30,1.09268,1.09295,1.09247,1.09271,1804 +2020-04-09 16:45,1.0927,1.09388,1.09259,1.09359,2410 +2020-04-09 17:00,1.0936,1.09385,1.09305,1.09384,2447 +2020-04-09 17:15,1.09384,1.09442,1.09366,1.09417,3198 +2020-04-09 17:30,1.09416,1.09516,1.0941,1.09466,4711 +2020-04-09 17:45,1.09467,1.09469,1.09377,1.09446,3004 +2020-04-09 18:00,1.09447,1.09449,1.09265,1.0937,2827 +2020-04-09 18:15,1.09368,1.09464,1.09336,1.09417,3702 +2020-04-09 18:30,1.09415,1.09442,1.09292,1.09309,3913 +2020-04-09 18:45,1.09312,1.09319,1.09199,1.09222,3743 +2020-04-09 19:00,1.09222,1.09255,1.09206,1.09243,3183 +2020-04-09 19:15,1.09244,1.09289,1.09211,1.09264,2757 +2020-04-09 19:30,1.09263,1.09293,1.09224,1.0927,2949 +2020-04-09 19:45,1.09271,1.09366,1.09239,1.09359,2879 +2020-04-09 20:00,1.0936,1.09396,1.0933,1.09332,976 +2020-04-09 20:15,1.09331,1.09337,1.09277,1.09319,761 +2020-04-09 20:30,1.0932,1.09322,1.09236,1.09291,951 +2020-04-09 20:45,1.09293,1.09335,1.09275,1.09285,607 +2020-04-09 21:00,1.09286,1.0932,1.09286,1.09311,199 +2020-04-09 21:15,1.09311,1.09314,1.09218,1.09236,314 +2020-04-09 21:30,1.09238,1.09284,1.09208,1.09232,415 +2020-04-09 21:45,1.09231,1.09284,1.09231,1.09252,240 +2020-04-09 22:00,1.09253,1.09265,1.09227,1.09241,1142 +2020-04-09 22:15,1.09241,1.09288,1.09241,1.0928,139 +2020-04-09 22:30,1.0928,1.09285,1.09242,1.09277,1045 +2020-04-09 22:45,1.09276,1.093,1.09255,1.09275,747 +2020-04-09 23:00,1.09285,1.09323,1.09271,1.09294,240 +2020-04-09 23:15,1.09295,1.09353,1.09272,1.09337,1486 +2020-04-09 23:30,1.09337,1.09338,1.0925,1.0925,737 +2020-04-09 23:45,1.09249,1.09258,1.09214,1.09226,316 +2020-04-10 00:00,1.09226,1.09241,1.09198,1.09221,322 +2020-04-10 00:15,1.09221,1.09237,1.09192,1.09216,572 +2020-04-10 00:30,1.09215,1.09261,1.09215,1.09248,412 +2020-04-10 00:45,1.09249,1.09266,1.09205,1.09224,752 +2020-04-10 01:00,1.09224,1.09241,1.09206,1.09219,916 +2020-04-10 01:15,1.0922,1.09235,1.09211,1.09223,912 +2020-04-10 01:30,1.09224,1.09278,1.0922,1.09253,891 +2020-04-10 01:45,1.09253,1.09285,1.09241,1.09283,155 +2020-04-10 02:00,1.09283,1.09285,1.0926,1.09279,1052 +2020-04-10 02:15,1.09279,1.09283,1.09266,1.09272,576 +2020-04-10 02:30,1.09273,1.0928,1.09249,1.09273,678 +2020-04-10 02:45,1.0927,1.09365,1.09265,1.09337,1477 +2020-04-10 03:00,1.09339,1.09377,1.09318,1.09367,593 +2020-04-10 03:15,1.09367,1.09377,1.09358,1.09374,455 +2020-04-10 03:30,1.09375,1.09435,1.09361,1.09434,1052 +2020-04-10 03:45,1.09432,1.09441,1.09391,1.09427,1434 +2020-04-10 04:00,1.09427,1.09427,1.09374,1.0939,709 +2020-04-10 04:15,1.09387,1.09422,1.09378,1.09416,383 +2020-04-10 04:30,1.09413,1.09417,1.09367,1.09376,1035 +2020-04-10 04:45,1.09378,1.09391,1.09372,1.09379,1709 +2020-04-10 05:00,1.09378,1.09382,1.09277,1.09297,732 +2020-04-10 05:15,1.09297,1.09327,1.09285,1.09294,1286 +2020-04-10 05:30,1.09299,1.09388,1.09296,1.09381,923 +2020-04-10 05:45,1.09381,1.09421,1.09376,1.09397,589 +2020-04-10 06:00,1.09398,1.09405,1.0939,1.09394,246 +2020-04-10 06:15,1.09394,1.09414,1.09388,1.09407,404 +2020-04-10 06:30,1.09409,1.09441,1.09405,1.0943,370 +2020-04-10 06:45,1.09438,1.09492,1.09418,1.09478,1596 +2020-04-10 07:00,1.09477,1.09504,1.0946,1.09485,2136 +2020-04-10 07:15,1.09493,1.09517,1.09483,1.0951,1017 +2020-04-10 07:30,1.09508,1.09515,1.09503,1.0951,538 +2020-04-10 07:45,1.0951,1.0951,1.0935,1.09374,3732 +2020-04-10 08:00,1.09375,1.09471,1.09371,1.09464,3620 +2020-04-10 08:15,1.09464,1.09467,1.09406,1.09448,6840 +2020-04-10 08:30,1.09448,1.09461,1.09423,1.09453,1036 +2020-04-10 08:45,1.09453,1.0946,1.0942,1.09423,987 +2020-04-10 09:00,1.09423,1.09451,1.09419,1.09445,291 +2020-04-10 09:15,1.09444,1.09479,1.09441,1.09458,3326 +2020-04-10 09:30,1.09467,1.09472,1.09435,1.09447,1962 +2020-04-10 09:45,1.09444,1.09453,1.09429,1.09448,584 +2020-04-10 10:00,1.09448,1.09474,1.09448,1.09455,426 +2020-04-10 10:15,1.09454,1.09459,1.09438,1.09446,996 +2020-04-10 10:30,1.09446,1.09446,1.0942,1.09435,252 +2020-04-10 10:45,1.09435,1.09445,1.09394,1.0941,678 +2020-04-10 11:00,1.09409,1.0942,1.09386,1.0941,821 +2020-04-10 11:15,1.0941,1.09415,1.09387,1.09402,689 +2020-04-10 11:30,1.09403,1.09405,1.09373,1.09391,746 +2020-04-10 11:45,1.09391,1.09391,1.09363,1.0937,1280 +2020-04-10 12:00,1.0937,1.09421,1.09369,1.09412,1359 +2020-04-10 12:15,1.09409,1.09433,1.09381,1.09422,4920 +2020-04-10 12:30,1.09417,1.09424,1.09408,1.09418,898 +2020-04-10 12:45,1.09418,1.09444,1.09415,1.09428,1909 +2020-04-10 13:00,1.09427,1.09441,1.09418,1.09427,1773 +2020-04-10 13:15,1.09427,1.09476,1.09426,1.09474,2035 +2020-04-10 13:30,1.09474,1.09492,1.09434,1.09436,1643 +2020-04-10 13:45,1.09436,1.09466,1.09434,1.0945,1873 +2020-04-10 14:00,1.09451,1.0948,1.09444,1.09467,552 +2020-04-10 14:15,1.09468,1.09474,1.09449,1.09469,1515 +2020-04-10 14:30,1.09468,1.09489,1.09466,1.09484,601 +2020-04-10 14:45,1.09485,1.09511,1.09483,1.09511,961 +2020-04-10 15:00,1.09508,1.09514,1.09436,1.09445,6083 +2020-04-10 15:15,1.09446,1.09477,1.0944,1.09453,4866 +2020-04-10 15:30,1.09452,1.09483,1.09448,1.0947,1772 +2020-04-10 15:45,1.09469,1.09494,1.09445,1.09483,4371 +2020-04-10 16:00,1.09481,1.09524,1.09472,1.0949,4861 +2020-04-10 16:15,1.09493,1.09506,1.09486,1.09504,3314 +2020-04-10 16:30,1.09503,1.09511,1.09489,1.09496,3869 +2020-04-10 16:45,1.09496,1.09499,1.09471,1.09481,2591 +2020-04-10 17:00,1.0948,1.09482,1.09471,1.09479,1017 +2020-04-10 17:15,1.09478,1.09481,1.09393,1.09404,4185 +2020-04-10 17:30,1.09401,1.09412,1.09356,1.09369,741 +2020-04-10 17:45,1.09369,1.0938,1.09324,1.09327,967 +2020-04-10 18:00,1.09326,1.09372,1.09325,1.09352,598 +2020-04-10 18:15,1.09351,1.09364,1.0933,1.09354,1389 +2020-04-10 18:30,1.09354,1.09359,1.09339,1.09341,1345 +2020-04-10 18:45,1.09341,1.09355,1.09332,1.09336,358 +2020-04-10 19:00,1.09336,1.09344,1.09325,1.09328,207 +2020-04-10 19:15,1.09328,1.09365,1.09328,1.09356,224 +2020-04-10 19:30,1.09356,1.09388,1.09349,1.09355,1630 +2020-04-10 19:45,1.09355,1.09368,1.09336,1.09363,1624 +2020-04-10 20:00,1.09362,1.09386,1.09358,1.09368,7697 +2020-04-10 20:15,1.09367,1.09397,1.09362,1.09369,5719 +2020-04-10 20:30,1.0937,1.09374,1.09355,1.09361,5762 +2020-04-10 20:45,1.0936,1.09397,1.09311,1.09326,4471 +2020-04-12 21:00,1.09482,1.09482,1.09364,1.09402,52 +2020-04-12 21:15,1.09402,1.09402,1.09394,1.094,15 +2020-04-12 21:30,1.09394,1.09402,1.09388,1.09396,21 +2020-04-12 21:45,1.09396,1.09409,1.09396,1.09409,45 +2020-04-12 22:00,1.09409,1.09409,1.09341,1.09342,2500 +2020-04-12 22:15,1.09341,1.09351,1.09325,1.09339,1141 +2020-04-12 22:30,1.0934,1.09368,1.09329,1.09358,687 +2020-04-12 22:45,1.09359,1.09382,1.09339,1.09362,576 +2020-04-12 23:00,1.09363,1.09363,1.09337,1.09355,540 +2020-04-12 23:15,1.09355,1.09365,1.09332,1.09348,454 +2020-04-12 23:30,1.09349,1.09366,1.09342,1.09344,554 +2020-04-12 23:45,1.09347,1.09349,1.09304,1.09315,610 +2020-04-13 00:00,1.09314,1.09379,1.09283,1.09353,1154 +2020-04-13 00:15,1.09356,1.09372,1.0932,1.09338,1326 +2020-04-13 00:30,1.09337,1.09362,1.09327,1.09348,1116 +2020-04-13 00:45,1.09348,1.09348,1.0929,1.09299,1032 +2020-04-13 01:00,1.09298,1.09371,1.09275,1.09367,1266 +2020-04-13 01:15,1.09367,1.0942,1.09306,1.09307,1648 +2020-04-13 01:30,1.09307,1.09312,1.09273,1.09309,1319 +2020-04-13 01:45,1.09309,1.09317,1.09279,1.09313,816 +2020-04-13 02:00,1.09313,1.09313,1.09255,1.09257,858 +2020-04-13 02:15,1.0926,1.09293,1.09249,1.09269,689 +2020-04-13 02:30,1.09269,1.09288,1.09255,1.09281,893 +2020-04-13 02:45,1.0928,1.09298,1.09278,1.09289,596 +2020-04-13 03:00,1.09289,1.09295,1.09256,1.09295,841 +2020-04-13 03:15,1.09295,1.09305,1.09292,1.093,243 +2020-04-13 03:30,1.093,1.09336,1.09297,1.09326,535 +2020-04-13 03:45,1.09326,1.09351,1.09324,1.09333,545 +2020-04-13 04:00,1.09333,1.09375,1.09333,1.09358,629 +2020-04-13 04:15,1.09359,1.09387,1.09355,1.09364,552 +2020-04-13 04:30,1.09365,1.09387,1.09352,1.09377,639 +2020-04-13 04:45,1.09376,1.09377,1.0935,1.09367,813 +2020-04-13 05:00,1.09366,1.09374,1.09332,1.09361,623 +2020-04-13 05:15,1.09361,1.09374,1.09352,1.09372,333 +2020-04-13 05:30,1.0937,1.09403,1.0936,1.09392,463 +2020-04-13 05:45,1.09392,1.09392,1.09334,1.09337,474 +2020-04-13 06:00,1.09338,1.09405,1.09335,1.09402,1144 +2020-04-13 06:15,1.09401,1.09511,1.09385,1.09487,1581 +2020-04-13 06:30,1.09486,1.09638,1.09441,1.09607,2677 +2020-04-13 06:45,1.09606,1.09663,1.09577,1.09619,2896 +2020-04-13 07:00,1.09617,1.09655,1.09559,1.09635,2680 +2020-04-13 07:15,1.09634,1.09678,1.09592,1.09615,2072 +2020-04-13 07:30,1.09616,1.09632,1.0948,1.0948,2239 +2020-04-13 07:45,1.09479,1.09513,1.09439,1.09465,2584 +2020-04-13 08:00,1.09465,1.0947,1.09369,1.09371,3445 +2020-04-13 08:15,1.09372,1.09379,1.09272,1.09324,3837 +2020-04-13 08:30,1.09327,1.09344,1.09282,1.09316,2328 +2020-04-13 08:45,1.09315,1.09349,1.09297,1.09312,1375 +2020-04-13 09:00,1.09312,1.09335,1.09303,1.09314,1358 +2020-04-13 09:15,1.09313,1.09371,1.09311,1.09367,1003 +2020-04-13 09:30,1.09365,1.09379,1.09343,1.09362,1150 +2020-04-13 09:45,1.09362,1.09387,1.09357,1.09384,762 +2020-04-13 10:00,1.09385,1.09386,1.09056,1.09115,2933 +2020-04-13 10:15,1.09114,1.09133,1.09032,1.09107,3290 +2020-04-13 10:30,1.09107,1.09194,1.09092,1.09176,1873 +2020-04-13 10:45,1.09176,1.09182,1.09123,1.09139,1904 +2020-04-13 11:00,1.09137,1.0914,1.09098,1.09129,2118 +2020-04-13 11:15,1.0913,1.09197,1.09092,1.09194,1678 +2020-04-13 11:30,1.09193,1.09248,1.09189,1.09219,2095 +2020-04-13 11:45,1.0922,1.09313,1.09203,1.09301,1539 +2020-04-13 12:00,1.093,1.09314,1.09233,1.09264,3545 +2020-04-13 12:15,1.09264,1.09264,1.09199,1.0923,2813 +2020-04-13 12:30,1.09229,1.09301,1.0922,1.09238,3018 +2020-04-13 12:45,1.09238,1.09281,1.0917,1.09223,3928 +2020-04-13 13:00,1.09225,1.09233,1.09164,1.09196,3481 +2020-04-13 13:15,1.09198,1.0921,1.09059,1.0906,2697 +2020-04-13 13:30,1.0906,1.09116,1.0905,1.09059,3706 +2020-04-13 13:45,1.09061,1.09125,1.09056,1.09107,3795 +2020-04-13 14:00,1.09105,1.0915,1.09068,1.0915,3994 +2020-04-13 14:15,1.09147,1.09183,1.09124,1.09149,3560 +2020-04-13 14:30,1.09149,1.09166,1.09067,1.09067,3348 +2020-04-13 14:45,1.09069,1.09119,1.08966,1.09001,5091 +2020-04-13 15:00,1.09,1.09038,1.08926,1.08951,3610 +2020-04-13 15:15,1.0895,1.09062,1.08943,1.0905,2089 +2020-04-13 15:30,1.09051,1.09081,1.09043,1.09072,2585 +2020-04-13 15:45,1.09073,1.09082,1.09029,1.09054,3349 +2020-04-13 16:00,1.09055,1.09111,1.09038,1.0911,1533 +2020-04-13 16:15,1.0911,1.09142,1.0908,1.09117,1510 +2020-04-13 16:30,1.09116,1.09137,1.09088,1.0909,2294 +2020-04-13 16:45,1.09089,1.09187,1.09079,1.09169,2891 +2020-04-13 17:00,1.09168,1.09168,1.09062,1.09066,2007 +2020-04-13 17:15,1.09064,1.09089,1.09056,1.09069,1565 +2020-04-13 17:30,1.09069,1.09158,1.09056,1.09149,2045 +2020-04-13 17:45,1.0915,1.09241,1.09134,1.092,3298 +2020-04-13 18:00,1.09197,1.09236,1.09193,1.092,2302 +2020-04-13 18:15,1.09201,1.09214,1.09166,1.09183,1238 +2020-04-13 18:30,1.09182,1.09214,1.09173,1.09186,1814 +2020-04-13 18:45,1.09188,1.09235,1.09168,1.09221,2313 +2020-04-13 19:00,1.09221,1.09234,1.09165,1.09172,1769 +2020-04-13 19:15,1.09171,1.09189,1.09126,1.0914,1564 +2020-04-13 19:30,1.09141,1.09165,1.09133,1.09152,1247 +2020-04-13 19:45,1.09152,1.09193,1.0915,1.09169,1158 +2020-04-13 20:00,1.09169,1.09172,1.09126,1.0914,513 +2020-04-13 20:15,1.09142,1.09149,1.09098,1.09103,507 +2020-04-13 20:30,1.09105,1.09133,1.09102,1.09105,472 +2020-04-13 20:45,1.09104,1.0912,1.09074,1.0912,619 +2020-04-13 21:00,1.09109,1.09118,1.09087,1.091,93 +2020-04-13 21:15,1.091,1.09121,1.09029,1.09112,697 +2020-04-13 21:30,1.09104,1.09141,1.09083,1.09108,381 +2020-04-13 21:45,1.09107,1.09125,1.09068,1.09071,331 +2020-04-13 22:00,1.09073,1.0912,1.09064,1.09105,769 +2020-04-13 22:15,1.09104,1.09109,1.0909,1.09104,725 +2020-04-13 22:30,1.09105,1.09136,1.09092,1.09135,1203 +2020-04-13 22:45,1.09135,1.09158,1.09126,1.09147,680 +2020-04-13 23:00,1.09148,1.09194,1.09145,1.09183,485 +2020-04-13 23:15,1.09184,1.09184,1.0916,1.09177,485 +2020-04-13 23:30,1.09175,1.09202,1.09169,1.09201,806 +2020-04-13 23:45,1.09201,1.09259,1.09191,1.09198,753 +2020-04-14 00:00,1.09197,1.09276,1.09176,1.09237,1493 +2020-04-14 00:15,1.09238,1.09249,1.09167,1.09187,1880 +2020-04-14 00:30,1.09188,1.09203,1.09164,1.0918,1904 +2020-04-14 00:45,1.09179,1.09255,1.09166,1.09229,1998 +2020-04-14 01:00,1.0923,1.09239,1.09186,1.09186,1877 +2020-04-14 01:15,1.09187,1.09239,1.09166,1.09216,2057 +2020-04-14 01:30,1.09218,1.09258,1.09203,1.09256,2124 +2020-04-14 01:45,1.09257,1.09387,1.09256,1.09371,3105 +2020-04-14 02:00,1.09373,1.09446,1.09365,1.09389,3246 +2020-04-14 02:15,1.09388,1.09412,1.09381,1.09412,1962 +2020-04-14 02:30,1.09413,1.09444,1.09399,1.094,2054 +2020-04-14 02:45,1.09401,1.09478,1.09394,1.09471,1853 +2020-04-14 03:00,1.0947,1.09487,1.09448,1.09467,1681 +2020-04-14 03:15,1.09468,1.09484,1.0945,1.09461,849 +2020-04-14 03:30,1.0946,1.09468,1.09425,1.09437,1294 +2020-04-14 03:45,1.09439,1.09478,1.09435,1.09468,895 +2020-04-14 04:00,1.09469,1.09486,1.09454,1.09468,1417 +2020-04-14 04:15,1.09468,1.09471,1.09431,1.09454,1568 +2020-04-14 04:30,1.09452,1.09462,1.09422,1.09423,1142 +2020-04-14 04:45,1.09422,1.09451,1.0941,1.09434,1476 +2020-04-14 05:00,1.09435,1.09451,1.09376,1.09393,1803 +2020-04-14 05:15,1.09394,1.09412,1.09372,1.09387,1208 +2020-04-14 05:30,1.09388,1.09472,1.09386,1.09448,1681 +2020-04-14 05:45,1.09447,1.09472,1.09385,1.09387,1716 +2020-04-14 06:00,1.09388,1.09429,1.09325,1.09351,3635 +2020-04-14 06:15,1.0935,1.09362,1.09275,1.09342,2901 +2020-04-14 06:30,1.09342,1.09382,1.09277,1.09299,1854 +2020-04-14 06:45,1.09299,1.09299,1.09241,1.09288,3138 +2020-04-14 07:00,1.09287,1.09375,1.09249,1.09349,4221 +2020-04-14 07:15,1.09348,1.09358,1.09293,1.09317,3261 +2020-04-14 07:30,1.09317,1.09323,1.09248,1.09304,2418 +2020-04-14 07:45,1.09304,1.09349,1.09274,1.09316,2367 +2020-04-14 08:00,1.09317,1.09329,1.09183,1.09195,3646 +2020-04-14 08:15,1.09192,1.0921,1.09149,1.09189,2457 +2020-04-14 08:30,1.0919,1.0925,1.09155,1.09239,2648 +2020-04-14 08:45,1.09238,1.09277,1.09156,1.09229,2764 +2020-04-14 09:00,1.09227,1.09289,1.09199,1.09285,3097 +2020-04-14 09:15,1.09285,1.09415,1.09265,1.09401,3015 +2020-04-14 09:30,1.09401,1.09528,1.09386,1.09525,4187 +2020-04-14 09:45,1.09523,1.09575,1.09453,1.09461,3229 +2020-04-14 10:00,1.0946,1.09505,1.09429,1.09439,3104 +2020-04-14 10:15,1.0944,1.09469,1.09393,1.09459,3092 +2020-04-14 10:30,1.09459,1.09476,1.0941,1.09423,2438 +2020-04-14 10:45,1.09422,1.0945,1.09376,1.09435,2630 +2020-04-14 11:00,1.09435,1.09487,1.09418,1.09473,2066 +2020-04-14 11:15,1.09474,1.09495,1.09411,1.09474,2052 +2020-04-14 11:30,1.09474,1.09555,1.0947,1.095,3823 +2020-04-14 11:45,1.09501,1.09658,1.09498,1.09637,4329 +2020-04-14 12:00,1.09638,1.0967,1.09584,1.09626,4568 +2020-04-14 12:15,1.09627,1.09696,1.09562,1.09685,4494 +2020-04-14 12:30,1.09685,1.09761,1.0963,1.0972,3852 +2020-04-14 12:45,1.0972,1.09748,1.09652,1.09708,2973 +2020-04-14 13:00,1.09709,1.09711,1.09565,1.09625,3935 +2020-04-14 13:15,1.09625,1.09636,1.09552,1.09558,5110 +2020-04-14 13:30,1.09562,1.0965,1.0955,1.09619,5030 +2020-04-14 13:45,1.09619,1.09633,1.09557,1.09606,5185 +2020-04-14 14:00,1.09604,1.09708,1.09601,1.09708,4268 +2020-04-14 14:15,1.09707,1.09769,1.0964,1.0965,4945 +2020-04-14 14:30,1.0965,1.09762,1.0965,1.09759,4806 +2020-04-14 14:45,1.0976,1.09841,1.09664,1.09696,5792 +2020-04-14 15:00,1.09697,1.09702,1.09563,1.09602,4891 +2020-04-14 15:15,1.09598,1.09632,1.09549,1.09551,3234 +2020-04-14 15:30,1.09551,1.09649,1.0955,1.09642,2950 +2020-04-14 15:45,1.09642,1.09703,1.09639,1.097,2875 +2020-04-14 16:00,1.09701,1.09712,1.09648,1.0966,2183 +2020-04-14 16:15,1.09661,1.09732,1.09659,1.09704,1809 +2020-04-14 16:30,1.09703,1.09728,1.09666,1.09708,2068 +2020-04-14 16:45,1.09706,1.09707,1.09615,1.09649,2062 +2020-04-14 17:00,1.09648,1.09721,1.09646,1.09714,2053 +2020-04-14 17:15,1.09715,1.09737,1.09642,1.09642,1212 +2020-04-14 17:30,1.09643,1.09677,1.0964,1.09643,1758 +2020-04-14 17:45,1.09643,1.09839,1.09643,1.09835,2996 +2020-04-14 18:00,1.09834,1.09834,1.09725,1.09741,1863 +2020-04-14 18:15,1.09742,1.09845,1.09706,1.09816,3268 +2020-04-14 18:30,1.09819,1.09819,1.09731,1.09768,1522 +2020-04-14 18:45,1.0977,1.09838,1.09757,1.0981,2489 +2020-04-14 19:00,1.09808,1.09838,1.09785,1.09815,2214 +2020-04-14 19:15,1.09815,1.09871,1.09795,1.0985,2250 +2020-04-14 19:30,1.0985,1.09857,1.09809,1.09817,1868 +2020-04-14 19:45,1.09816,1.09862,1.09806,1.09857,1826 +2020-04-14 20:00,1.09856,1.09865,1.09831,1.09854,1072 +2020-04-14 20:15,1.09854,1.09856,1.09798,1.09813,690 +2020-04-14 20:30,1.09812,1.09841,1.09794,1.09821,537 +2020-04-14 20:45,1.09822,1.09832,1.09793,1.09798,500 +2020-04-14 21:00,1.09794,1.09864,1.09767,1.09861,1083 +2020-04-14 21:15,1.09861,1.09907,1.09823,1.09857,580 +2020-04-14 21:30,1.09858,1.09872,1.09831,1.09856,353 +2020-04-14 21:45,1.09856,1.09885,1.09814,1.0982,878 +2020-04-14 22:00,1.09822,1.09846,1.09821,1.09835,589 +2020-04-14 22:15,1.09833,1.09893,1.09833,1.09839,680 +2020-04-14 22:30,1.09839,1.09841,1.09824,1.09832,414 +2020-04-14 22:45,1.09832,1.09841,1.09826,1.09834,510 +2020-04-14 23:00,1.09837,1.09856,1.09832,1.09842,587 +2020-04-14 23:15,1.09843,1.09859,1.09837,1.09842,346 +2020-04-14 23:30,1.09842,1.09879,1.09833,1.09868,547 +2020-04-14 23:45,1.09869,1.09872,1.09834,1.09834,496 +2020-04-15 00:00,1.09832,1.09837,1.09807,1.0981,1136 +2020-04-15 00:15,1.0981,1.0983,1.09807,1.0981,912 +2020-04-15 00:30,1.0981,1.09823,1.09805,1.09817,725 +2020-04-15 00:45,1.09818,1.09872,1.09808,1.09859,1465 +2020-04-15 01:00,1.09859,1.09865,1.09815,1.09826,1667 +2020-04-15 01:15,1.09827,1.09854,1.09807,1.09819,1595 +2020-04-15 01:30,1.0982,1.09835,1.09816,1.09828,1255 +2020-04-15 01:45,1.09828,1.09868,1.09813,1.09863,1587 +2020-04-15 02:00,1.09865,1.09872,1.09845,1.09855,1124 +2020-04-15 02:15,1.09855,1.09857,1.09835,1.09847,1268 +2020-04-15 02:30,1.09848,1.09848,1.09801,1.09819,836 +2020-04-15 02:45,1.0982,1.09831,1.09803,1.09811,917 +2020-04-15 03:00,1.09811,1.09821,1.09801,1.09809,1050 +2020-04-15 03:15,1.09808,1.09811,1.09789,1.09789,605 +2020-04-15 03:30,1.0979,1.09791,1.09744,1.09757,813 +2020-04-15 03:45,1.09756,1.09794,1.09748,1.09772,756 +2020-04-15 04:00,1.09772,1.09788,1.0975,1.09752,561 +2020-04-15 04:15,1.09756,1.09771,1.09733,1.09751,856 +2020-04-15 04:30,1.09751,1.09752,1.09735,1.09745,782 +2020-04-15 04:45,1.09745,1.09756,1.09734,1.09752,775 +2020-04-15 05:00,1.0975,1.09753,1.09731,1.09732,706 +2020-04-15 05:15,1.09731,1.09754,1.09731,1.09751,658 +2020-04-15 05:30,1.09752,1.09761,1.09716,1.09719,1073 +2020-04-15 05:45,1.0972,1.09725,1.09629,1.09632,1806 +2020-04-15 06:00,1.09631,1.09682,1.09616,1.09668,2709 +2020-04-15 06:15,1.09669,1.09686,1.09599,1.09636,2559 +2020-04-15 06:30,1.09633,1.09634,1.09571,1.09622,3434 +2020-04-15 06:45,1.09622,1.09651,1.09569,1.09584,3379 +2020-04-15 07:00,1.09585,1.09677,1.09584,1.09594,4369 +2020-04-15 07:15,1.09594,1.09594,1.0948,1.0952,3233 +2020-04-15 07:30,1.0952,1.09553,1.09384,1.09407,4323 +2020-04-15 07:45,1.09406,1.09414,1.09285,1.09295,4099 +2020-04-15 08:00,1.09295,1.09395,1.09238,1.09363,4344 +2020-04-15 08:15,1.09362,1.09381,1.09265,1.09363,4039 +2020-04-15 08:30,1.09363,1.09376,1.09273,1.09274,3917 +2020-04-15 08:45,1.09275,1.09324,1.09204,1.09324,3893 +2020-04-15 09:00,1.09324,1.09332,1.09268,1.09317,3396 +2020-04-15 09:15,1.09316,1.09388,1.09285,1.09347,3384 +2020-04-15 09:30,1.09346,1.09386,1.09274,1.09285,3294 +2020-04-15 09:45,1.09283,1.09348,1.0926,1.09341,2967 +2020-04-15 10:00,1.09341,1.09361,1.09305,1.09338,2835 +2020-04-15 10:15,1.09338,1.09344,1.09221,1.09228,3643 +2020-04-15 10:30,1.09228,1.09229,1.09041,1.0907,4771 +2020-04-15 10:45,1.0907,1.09083,1.0903,1.09076,2426 +2020-04-15 11:00,1.09077,1.09123,1.0904,1.09119,3324 +2020-04-15 11:15,1.09119,1.09142,1.09063,1.09126,2939 +2020-04-15 11:30,1.09125,1.09186,1.09112,1.09151,2846 +2020-04-15 11:45,1.0915,1.09193,1.09108,1.09137,3831 +2020-04-15 12:00,1.09138,1.09156,1.0902,1.09028,4558 +2020-04-15 12:15,1.09032,1.09049,1.0882,1.08878,5306 +2020-04-15 12:30,1.08878,1.08891,1.0867,1.0871,7821 +2020-04-15 12:45,1.08709,1.08709,1.08564,1.08604,6278 +2020-04-15 13:00,1.08605,1.08787,1.08592,1.08719,5888 +2020-04-15 13:15,1.08717,1.0877,1.08681,1.08751,5211 +2020-04-15 13:30,1.08752,1.08796,1.08696,1.08708,5657 +2020-04-15 13:45,1.08707,1.0873,1.0868,1.08697,5255 +2020-04-15 14:00,1.08698,1.08798,1.08675,1.08797,5394 +2020-04-15 14:15,1.08798,1.08914,1.08767,1.08913,4406 +2020-04-15 14:30,1.08912,1.08975,1.08878,1.08949,5799 +2020-04-15 14:45,1.0895,1.09088,1.08946,1.09045,7120 +2020-04-15 15:00,1.09046,1.0907,1.08998,1.09,5859 +2020-04-15 15:15,1.09001,1.09145,1.09,1.09134,3943 +2020-04-15 15:30,1.09135,1.09192,1.09115,1.09167,3906 +2020-04-15 15:45,1.09168,1.09187,1.09078,1.09081,3743 +2020-04-15 16:00,1.0908,1.091,1.09025,1.09086,2870 +2020-04-15 16:15,1.09085,1.0911,1.09026,1.09063,2124 +2020-04-15 16:30,1.09062,1.09222,1.09061,1.09218,2236 +2020-04-15 16:45,1.09217,1.09306,1.09165,1.09169,2803 +2020-04-15 17:00,1.09167,1.09247,1.09134,1.09209,2580 +2020-04-15 17:15,1.09211,1.09231,1.09163,1.0918,2814 +2020-04-15 17:30,1.0918,1.09195,1.09115,1.09125,1835 +2020-04-15 17:45,1.09124,1.09201,1.09124,1.09177,2045 +2020-04-15 18:00,1.09177,1.09303,1.09162,1.09303,2615 +2020-04-15 18:15,1.09303,1.09388,1.09293,1.09357,3281 +2020-04-15 18:30,1.09356,1.09359,1.0932,1.09326,2205 +2020-04-15 18:45,1.09325,1.09338,1.09217,1.09217,2393 +2020-04-15 19:00,1.09218,1.09237,1.09181,1.09198,2535 +2020-04-15 19:15,1.09197,1.09207,1.09161,1.09167,2321 +2020-04-15 19:30,1.09167,1.0918,1.09152,1.09163,2155 +2020-04-15 19:45,1.09164,1.09183,1.09103,1.09136,1671 +2020-04-15 20:00,1.09136,1.09148,1.09091,1.09122,954 +2020-04-15 20:15,1.09122,1.09178,1.09115,1.09115,601 +2020-04-15 20:30,1.09116,1.0913,1.09093,1.09098,291 +2020-04-15 20:45,1.09099,1.09136,1.09066,1.09066,377 +2020-04-15 21:00,1.09076,1.09107,1.09061,1.09077,307 +2020-04-15 21:15,1.09077,1.0909,1.0907,1.09079,378 +2020-04-15 21:30,1.09079,1.09085,1.09071,1.09073,130 +2020-04-15 21:45,1.09071,1.09088,1.09067,1.09081,148 +2020-04-15 22:00,1.0908,1.09109,1.09079,1.091,580 +2020-04-15 22:15,1.09101,1.09111,1.0909,1.0909,362 +2020-04-15 22:30,1.09092,1.09095,1.09079,1.09086,499 +2020-04-15 22:45,1.09085,1.09087,1.09012,1.09017,724 +2020-04-15 23:00,1.09017,1.09042,1.09003,1.09013,1095 +2020-04-15 23:15,1.09012,1.09048,1.08999,1.09046,642 +2020-04-15 23:30,1.09046,1.09053,1.09033,1.09047,502 +2020-04-15 23:45,1.09046,1.0906,1.09022,1.09037,847 +2020-04-16 00:00,1.09036,1.09072,1.09,1.09011,2306 +2020-04-16 00:15,1.09012,1.09019,1.08922,1.08956,2623 +2020-04-16 00:30,1.08956,1.08956,1.08816,1.0886,2873 +2020-04-16 00:45,1.08861,1.08897,1.08843,1.08857,2510 +2020-04-16 01:00,1.08858,1.08886,1.08842,1.08847,2159 +2020-04-16 01:15,1.08849,1.08875,1.08816,1.08848,2423 +2020-04-16 01:30,1.08852,1.08921,1.08845,1.08845,2120 +2020-04-16 01:45,1.08847,1.08847,1.08752,1.08754,2890 +2020-04-16 02:00,1.08753,1.0884,1.08753,1.08829,2410 +2020-04-16 02:15,1.08829,1.08867,1.08826,1.0884,1685 +2020-04-16 02:30,1.08841,1.08858,1.0879,1.0881,1480 +2020-04-16 02:45,1.08811,1.08838,1.08796,1.08838,1253 +2020-04-16 03:00,1.08837,1.08839,1.08793,1.08805,1560 +2020-04-16 03:15,1.08805,1.08807,1.08768,1.08774,940 +2020-04-16 03:30,1.08773,1.08828,1.08744,1.08754,2049 +2020-04-16 03:45,1.08754,1.08757,1.08728,1.08736,1547 +2020-04-16 04:00,1.08736,1.08746,1.08703,1.08743,1510 +2020-04-16 04:15,1.08745,1.08747,1.08645,1.08648,1660 +2020-04-16 04:30,1.08649,1.0875,1.08648,1.08741,1944 +2020-04-16 04:45,1.0874,1.08792,1.08739,1.08792,1361 +2020-04-16 05:00,1.08791,1.08792,1.08736,1.08761,1480 +2020-04-16 05:15,1.08761,1.08836,1.08761,1.08836,2252 +2020-04-16 05:30,1.08836,1.0885,1.08807,1.08848,1654 +2020-04-16 05:45,1.08849,1.08881,1.0884,1.08844,2210 +2020-04-16 06:00,1.08843,1.0886,1.08792,1.0886,2847 +2020-04-16 06:15,1.0886,1.08941,1.08859,1.08898,3792 +2020-04-16 06:30,1.08896,1.09048,1.08879,1.09035,3524 +2020-04-16 06:45,1.09038,1.09048,1.08833,1.08846,3534 +2020-04-16 07:00,1.08844,1.08933,1.08716,1.08753,4641 +2020-04-16 07:15,1.08753,1.08832,1.08705,1.08805,3916 +2020-04-16 07:30,1.08804,1.08877,1.0873,1.08731,3627 +2020-04-16 07:45,1.0873,1.08775,1.08644,1.08729,4326 +2020-04-16 08:00,1.08729,1.08779,1.08681,1.08743,3640 +2020-04-16 08:15,1.08742,1.08836,1.0872,1.08808,3561 +2020-04-16 08:30,1.08808,1.08886,1.08807,1.08818,3192 +2020-04-16 08:45,1.08819,1.08888,1.08806,1.08877,2094 +2020-04-16 09:00,1.08878,1.08889,1.08709,1.08759,3892 +2020-04-16 09:15,1.0876,1.08782,1.08656,1.08657,3731 +2020-04-16 09:30,1.08658,1.08715,1.0858,1.08677,4169 +2020-04-16 09:45,1.08681,1.08689,1.08606,1.08689,3377 +2020-04-16 10:00,1.08689,1.08721,1.08531,1.0867,3985 +2020-04-16 10:15,1.0867,1.08862,1.08656,1.08799,3778 +2020-04-16 10:30,1.088,1.08817,1.08745,1.08782,3390 +2020-04-16 10:45,1.08782,1.08841,1.08721,1.08795,3622 +2020-04-16 11:00,1.08798,1.08819,1.08735,1.08819,2610 +2020-04-16 11:15,1.08818,1.08856,1.08794,1.08832,2974 +2020-04-16 11:30,1.08833,1.08844,1.08701,1.08736,3605 +2020-04-16 11:45,1.08737,1.08844,1.08714,1.08819,3611 +2020-04-16 12:00,1.08819,1.089,1.08818,1.08872,4445 +2020-04-16 12:15,1.08872,1.09007,1.08862,1.08931,5265 +2020-04-16 12:30,1.0893,1.09009,1.08807,1.08854,6622 +2020-04-16 12:45,1.08855,1.08901,1.08842,1.08894,5221 +2020-04-16 13:00,1.08894,1.08948,1.08822,1.08822,4936 +2020-04-16 13:15,1.08822,1.08839,1.08756,1.08781,3365 +2020-04-16 13:30,1.08781,1.08839,1.08718,1.08809,5650 +2020-04-16 13:45,1.0881,1.08833,1.08745,1.08788,3957 +2020-04-16 14:00,1.08788,1.08877,1.08742,1.08794,5073 +2020-04-16 14:15,1.08795,1.08886,1.0879,1.08832,5260 +2020-04-16 14:30,1.08833,1.08863,1.08664,1.08666,6488 +2020-04-16 14:45,1.08666,1.08696,1.0847,1.08509,8850 +2020-04-16 15:00,1.08509,1.08533,1.08349,1.08428,6951 +2020-04-16 15:15,1.08428,1.08436,1.08281,1.08344,4394 +2020-04-16 15:30,1.08344,1.08417,1.08299,1.08409,4549 +2020-04-16 15:45,1.0841,1.08452,1.08372,1.08407,4011 +2020-04-16 16:00,1.08406,1.08497,1.08369,1.0837,3464 +2020-04-16 16:15,1.08369,1.08374,1.08298,1.083,3637 +2020-04-16 16:30,1.083,1.08313,1.08166,1.08312,4683 +2020-04-16 16:45,1.08312,1.08376,1.08246,1.08335,5500 +2020-04-16 17:00,1.08334,1.08445,1.08316,1.08441,3591 +2020-04-16 17:15,1.08441,1.08478,1.08385,1.08394,2460 +2020-04-16 17:30,1.08391,1.08493,1.0839,1.08479,2646 +2020-04-16 17:45,1.08478,1.08478,1.08403,1.08409,1943 +2020-04-16 18:00,1.0841,1.08512,1.08402,1.08478,2836 +2020-04-16 18:15,1.0848,1.08481,1.08432,1.08432,2164 +2020-04-16 18:30,1.08432,1.08489,1.08413,1.08468,2599 +2020-04-16 18:45,1.0847,1.08476,1.08443,1.08449,1852 +2020-04-16 19:00,1.08449,1.08461,1.08401,1.0843,1958 +2020-04-16 19:15,1.08431,1.08468,1.08409,1.08456,2470 +2020-04-16 19:30,1.08457,1.08457,1.08406,1.08428,2002 +2020-04-16 19:45,1.08428,1.08497,1.08409,1.0846,2207 +2020-04-16 20:00,1.08459,1.08465,1.08374,1.08376,797 +2020-04-16 20:15,1.08376,1.0838,1.08335,1.08341,503 +2020-04-16 20:30,1.08342,1.08342,1.08301,1.08306,440 +2020-04-16 20:45,1.08305,1.08403,1.08305,1.08386,760 +2020-04-16 21:00,1.08386,1.08386,1.08329,1.08382,222 +2020-04-16 21:15,1.08383,1.08414,1.08377,1.08414,702 +2020-04-16 21:30,1.0841,1.08522,1.0841,1.08513,781 +2020-04-16 21:45,1.08509,1.08646,1.08501,1.08605,2727 +2020-04-16 22:00,1.08605,1.08605,1.08523,1.08523,1807 +2020-04-16 22:15,1.08525,1.08588,1.08515,1.08533,824 +2020-04-16 22:30,1.08535,1.08581,1.0853,1.08559,935 +2020-04-16 22:45,1.08558,1.08614,1.08544,1.08606,594 +2020-04-16 23:00,1.08606,1.08614,1.08573,1.086,1580 +2020-04-16 23:15,1.08599,1.08655,1.08581,1.08596,1664 +2020-04-16 23:30,1.08596,1.08674,1.08596,1.08644,1764 +2020-04-16 23:45,1.08646,1.08651,1.08567,1.08584,1997 +2020-04-17 00:00,1.08588,1.08599,1.08538,1.08561,2195 +2020-04-17 00:15,1.08561,1.08592,1.08543,1.08577,1916 +2020-04-17 00:30,1.08575,1.08669,1.08575,1.08628,2123 +2020-04-17 00:45,1.08628,1.0866,1.08598,1.08627,1858 +2020-04-17 01:00,1.08626,1.08768,1.08617,1.08754,2709 +2020-04-17 01:15,1.08753,1.08782,1.0871,1.08768,3285 +2020-04-17 01:30,1.0877,1.08777,1.08744,1.08759,1696 +2020-04-17 01:45,1.08763,1.08785,1.08707,1.08729,1742 +2020-04-17 02:00,1.08728,1.08728,1.0865,1.08661,1437 +2020-04-17 02:15,1.08661,1.08692,1.08648,1.08657,1110 +2020-04-17 02:30,1.08657,1.08754,1.08643,1.08739,1287 +2020-04-17 02:45,1.08739,1.08764,1.08725,1.08727,1661 +2020-04-17 03:00,1.08729,1.0874,1.08696,1.08714,1234 +2020-04-17 03:15,1.08713,1.08729,1.08702,1.08718,1147 +2020-04-17 03:30,1.08719,1.08728,1.08668,1.08676,1176 +2020-04-17 03:45,1.08678,1.08696,1.08663,1.08665,798 +2020-04-17 04:00,1.08664,1.08671,1.08638,1.0867,819 +2020-04-17 04:15,1.08672,1.08743,1.08665,1.08728,1040 +2020-04-17 04:30,1.08727,1.08743,1.08708,1.0873,1065 +2020-04-17 04:45,1.08729,1.08736,1.08695,1.08706,1145 +2020-04-17 05:00,1.08705,1.08726,1.08679,1.0868,995 +2020-04-17 05:15,1.08679,1.08682,1.08635,1.08662,1176 +2020-04-17 05:30,1.08662,1.08702,1.08661,1.08695,992 +2020-04-17 05:45,1.08695,1.08723,1.08646,1.08655,1410 +2020-04-17 06:00,1.08655,1.08666,1.08528,1.08548,3234 +2020-04-17 06:15,1.08546,1.08546,1.08454,1.08498,3394 +2020-04-17 06:30,1.08498,1.08563,1.08453,1.08559,2861 +2020-04-17 06:45,1.0856,1.08562,1.08487,1.08539,4071 +2020-04-17 07:00,1.0854,1.08591,1.08339,1.08349,4778 +2020-04-17 07:15,1.08349,1.08386,1.08324,1.08365,5060 +2020-04-17 07:30,1.08366,1.08384,1.08216,1.08246,4624 +2020-04-17 07:45,1.0825,1.08343,1.08199,1.08285,5389 +2020-04-17 08:00,1.08287,1.0829,1.08223,1.08248,4526 +2020-04-17 08:15,1.08247,1.08278,1.08173,1.08274,4421 +2020-04-17 08:30,1.08274,1.08365,1.08246,1.08365,3987 +2020-04-17 08:45,1.08364,1.08366,1.0825,1.08292,4001 +2020-04-17 09:00,1.08292,1.08306,1.082,1.08256,3080 +2020-04-17 09:15,1.08256,1.08291,1.08204,1.08231,3285 +2020-04-17 09:30,1.0823,1.08273,1.08173,1.0822,3945 +2020-04-17 09:45,1.0822,1.08246,1.08152,1.08195,4266 +2020-04-17 10:00,1.08195,1.08224,1.08119,1.08179,4246 +2020-04-17 10:15,1.08179,1.08255,1.0817,1.08232,3538 +2020-04-17 10:30,1.08233,1.08282,1.08209,1.0826,3595 +2020-04-17 10:45,1.08259,1.08366,1.08255,1.08359,4107 +2020-04-17 11:00,1.08359,1.08485,1.08342,1.0847,5755 +2020-04-17 11:15,1.08469,1.08473,1.08405,1.08447,4239 +2020-04-17 11:30,1.08446,1.08447,1.08339,1.08362,3564 +2020-04-17 11:45,1.08361,1.08503,1.0834,1.08481,3189 +2020-04-17 12:00,1.08481,1.08638,1.08437,1.08601,4983 +2020-04-17 12:15,1.08607,1.08734,1.08607,1.08704,7212 +2020-04-17 12:30,1.08703,1.08703,1.08585,1.08639,4920 +2020-04-17 12:45,1.08639,1.08712,1.08596,1.08643,4930 +2020-04-17 13:00,1.08644,1.08694,1.08604,1.08659,4268 +2020-04-17 13:15,1.08658,1.08799,1.08622,1.08736,4015 +2020-04-17 13:30,1.08735,1.08763,1.08602,1.08646,5403 +2020-04-17 13:45,1.08646,1.08885,1.08646,1.0886,6251 +2020-04-17 14:00,1.0886,1.0888,1.08743,1.08753,5321 +2020-04-17 14:15,1.08754,1.08858,1.08738,1.08834,3982 +2020-04-17 14:30,1.08833,1.08851,1.08717,1.08805,4684 +2020-04-17 14:45,1.08808,1.08926,1.08725,1.08893,5985 +2020-04-17 15:00,1.08891,1.08901,1.08768,1.08803,4604 +2020-04-17 15:15,1.08804,1.08848,1.08754,1.08792,4208 +2020-04-17 15:30,1.08792,1.08843,1.08744,1.08749,3681 +2020-04-17 15:45,1.08749,1.08847,1.08736,1.0883,2485 +2020-04-17 16:00,1.08831,1.08842,1.08777,1.08784,2456 +2020-04-17 16:15,1.08784,1.08794,1.0865,1.08664,2061 +2020-04-17 16:30,1.08664,1.08704,1.08593,1.08675,3098 +2020-04-17 16:45,1.08677,1.0871,1.08634,1.08669,3080 +2020-04-17 17:00,1.08671,1.08732,1.08668,1.08696,2793 +2020-04-17 17:15,1.08695,1.08788,1.08692,1.08769,2513 +2020-04-17 17:30,1.08769,1.08825,1.08749,1.08784,2250 +2020-04-17 17:45,1.08783,1.08848,1.08744,1.0876,2204 +2020-04-17 18:00,1.08759,1.08772,1.08667,1.08667,2009 +2020-04-17 18:15,1.08668,1.08725,1.08659,1.087,2364 +2020-04-17 18:30,1.087,1.08733,1.08674,1.08676,2231 +2020-04-17 18:45,1.08678,1.08734,1.08674,1.08683,2167 +2020-04-17 19:00,1.08683,1.0872,1.08641,1.08664,1381 +2020-04-17 19:15,1.08664,1.08686,1.08652,1.08679,1226 +2020-04-17 19:30,1.08678,1.08715,1.08655,1.08715,1302 +2020-04-17 19:45,1.08716,1.08737,1.08677,1.08689,2299 +2020-04-17 20:00,1.08689,1.08693,1.08644,1.08668,816 +2020-04-17 20:15,1.08668,1.08731,1.08667,1.08716,620 +2020-04-17 20:30,1.08716,1.08746,1.08701,1.08738,714 +2020-04-17 20:45,1.0874,1.08767,1.08705,1.08711,2063 +2020-04-19 21:00,1.08748,1.0875,1.08634,1.08738,25 +2020-04-19 21:15,1.08717,1.08737,1.08656,1.08703,418 +2020-04-19 21:30,1.08705,1.08712,1.08695,1.087,573 +2020-04-19 21:45,1.08699,1.08777,1.08685,1.08732,60 +2020-04-19 22:00,1.08716,1.0874,1.08672,1.08672,1393 +2020-04-19 22:15,1.08672,1.08692,1.08661,1.08678,520 +2020-04-19 22:30,1.08675,1.08684,1.08649,1.08664,716 +2020-04-19 22:45,1.08664,1.0868,1.0865,1.08676,749 +2020-04-19 23:00,1.08675,1.08707,1.08667,1.08681,755 +2020-04-19 23:15,1.08681,1.08696,1.0867,1.08678,432 +2020-04-19 23:30,1.08679,1.08704,1.08674,1.087,906 +2020-04-19 23:45,1.087,1.087,1.08634,1.08635,1044 +2020-04-20 00:00,1.08635,1.08666,1.08572,1.0859,1690 +2020-04-20 00:15,1.0859,1.08611,1.08563,1.08609,1109 +2020-04-20 00:30,1.08609,1.08661,1.08607,1.08651,798 +2020-04-20 00:45,1.08649,1.08684,1.08604,1.08604,1738 +2020-04-20 01:00,1.08605,1.08639,1.08603,1.08622,1883 +2020-04-20 01:15,1.0862,1.08644,1.08598,1.0861,1448 +2020-04-20 01:30,1.0861,1.08626,1.0858,1.08597,1462 +2020-04-20 01:45,1.08598,1.08642,1.08597,1.08642,1271 +2020-04-20 02:00,1.08643,1.08662,1.08639,1.0864,1044 +2020-04-20 02:15,1.08641,1.08716,1.08626,1.08684,1410 +2020-04-20 02:30,1.08686,1.08692,1.08628,1.08643,1202 +2020-04-20 02:45,1.08644,1.08647,1.08619,1.08621,1053 +2020-04-20 03:00,1.0862,1.08634,1.08605,1.08617,1008 +2020-04-20 03:15,1.08618,1.08651,1.08611,1.08636,1061 +2020-04-20 03:30,1.08636,1.08639,1.08615,1.08628,876 +2020-04-20 03:45,1.08628,1.08629,1.0859,1.08609,813 +2020-04-20 04:00,1.0861,1.08691,1.08609,1.0869,1377 +2020-04-20 04:15,1.0869,1.08708,1.08665,1.08702,1577 +2020-04-20 04:30,1.08703,1.08717,1.08688,1.08702,926 +2020-04-20 04:45,1.087,1.08721,1.087,1.0871,1039 +2020-04-20 05:00,1.08712,1.08712,1.08674,1.08681,1166 +2020-04-20 05:15,1.08681,1.08685,1.08641,1.08649,737 +2020-04-20 05:30,1.08649,1.0865,1.08528,1.08528,1497 +2020-04-20 05:45,1.0853,1.08572,1.08527,1.08553,1318 +2020-04-20 06:00,1.08553,1.08553,1.08419,1.08428,3254 +2020-04-20 06:15,1.08428,1.08496,1.08411,1.08488,2888 +2020-04-20 06:30,1.08488,1.08539,1.08458,1.08538,3147 +2020-04-20 06:45,1.08538,1.08571,1.08516,1.08556,2325 +2020-04-20 07:00,1.08555,1.08652,1.08515,1.08628,4070 +2020-04-20 07:15,1.08631,1.08682,1.08559,1.08601,3425 +2020-04-20 07:30,1.08601,1.0867,1.08595,1.08641,3097 +2020-04-20 07:45,1.0864,1.08689,1.08611,1.08684,2723 +2020-04-20 08:00,1.08682,1.08686,1.08625,1.08637,3555 +2020-04-20 08:15,1.08639,1.08668,1.08593,1.08644,3159 +2020-04-20 08:30,1.08643,1.08705,1.08595,1.08682,2146 +2020-04-20 08:45,1.08682,1.08795,1.08679,1.08789,3594 +2020-04-20 09:00,1.0879,1.08967,1.08778,1.0891,5131 +2020-04-20 09:15,1.08909,1.08945,1.08889,1.08911,2656 +2020-04-20 09:30,1.08912,1.08921,1.08796,1.08839,2748 +2020-04-20 09:45,1.08838,1.08886,1.08802,1.08823,3203 +2020-04-20 10:00,1.08824,1.08826,1.08696,1.08731,3417 +2020-04-20 10:15,1.08731,1.08743,1.08652,1.08653,2956 +2020-04-20 10:30,1.08655,1.08664,1.08598,1.08619,2981 +2020-04-20 10:45,1.08619,1.08664,1.08577,1.08635,3287 +2020-04-20 11:00,1.08636,1.08666,1.08512,1.08544,3618 +2020-04-20 11:15,1.08543,1.08579,1.08527,1.08565,2369 +2020-04-20 11:30,1.08565,1.08588,1.08548,1.08579,2295 +2020-04-20 11:45,1.0858,1.08637,1.0853,1.08561,2874 +2020-04-20 12:00,1.08561,1.08596,1.08497,1.08594,3367 +2020-04-20 12:15,1.08594,1.08597,1.08505,1.08544,3335 +2020-04-20 12:30,1.08544,1.08679,1.0854,1.08678,3199 +2020-04-20 12:45,1.08677,1.08679,1.08622,1.08626,3283 +2020-04-20 13:00,1.08625,1.0865,1.0859,1.0862,2702 +2020-04-20 13:15,1.0862,1.08635,1.08501,1.08635,3526 +2020-04-20 13:30,1.08636,1.08707,1.08601,1.0868,5358 +2020-04-20 13:45,1.0868,1.08707,1.0862,1.08644,3883 +2020-04-20 14:00,1.08644,1.08794,1.08614,1.08704,3918 +2020-04-20 14:15,1.08704,1.08725,1.08659,1.0871,3625 +2020-04-20 14:30,1.0871,1.08821,1.08668,1.08804,4293 +2020-04-20 14:45,1.08807,1.08871,1.08773,1.08809,6011 +2020-04-20 15:00,1.08808,1.08844,1.08742,1.08758,4688 +2020-04-20 15:15,1.08761,1.0878,1.08724,1.08724,3361 +2020-04-20 15:30,1.08726,1.08738,1.08687,1.08727,2452 +2020-04-20 15:45,1.08729,1.08781,1.08724,1.08724,2430 +2020-04-20 16:00,1.08725,1.08841,1.08703,1.08835,2431 +2020-04-20 16:15,1.08835,1.08836,1.08739,1.08748,1869 +2020-04-20 16:30,1.08746,1.08781,1.08711,1.08719,1880 +2020-04-20 16:45,1.0872,1.08746,1.08693,1.08701,2480 +2020-04-20 17:00,1.08701,1.08731,1.08636,1.08642,1581 +2020-04-20 17:15,1.0864,1.08675,1.08627,1.08663,1944 +2020-04-20 17:30,1.08664,1.0868,1.08641,1.0866,1660 +2020-04-20 17:45,1.0866,1.08695,1.08656,1.08686,1295 +2020-04-20 18:00,1.08685,1.08711,1.08642,1.08646,1506 +2020-04-20 18:15,1.08646,1.08646,1.08579,1.08595,2355 +2020-04-20 18:30,1.08596,1.08645,1.08593,1.08596,2247 +2020-04-20 18:45,1.08595,1.08645,1.08591,1.0861,2081 +2020-04-20 19:00,1.0861,1.08667,1.08609,1.08647,2155 +2020-04-20 19:15,1.08648,1.08661,1.08614,1.08623,2282 +2020-04-20 19:30,1.08624,1.08632,1.08575,1.08579,1658 +2020-04-20 19:45,1.08582,1.08611,1.08566,1.08567,2801 +2020-04-20 20:00,1.08568,1.086,1.08551,1.08591,834 +2020-04-20 20:15,1.08594,1.08631,1.08592,1.08615,208 +2020-04-20 20:30,1.08614,1.08649,1.08601,1.08639,317 +2020-04-20 20:45,1.0864,1.08653,1.08607,1.08607,675 +2020-04-20 21:00,1.08611,1.08628,1.08595,1.08625,167 +2020-04-20 21:15,1.08626,1.08634,1.08623,1.08624,168 +2020-04-20 21:30,1.08629,1.0865,1.08604,1.08637,639 +2020-04-20 21:45,1.08636,1.08702,1.08613,1.08686,3378 +2020-04-20 22:00,1.08685,1.08685,1.08626,1.08655,1487 +2020-04-20 22:15,1.08655,1.08656,1.0862,1.08647,1266 +2020-04-20 22:30,1.0865,1.0867,1.08626,1.08638,942 +2020-04-20 22:45,1.08638,1.08645,1.08626,1.08642,703 +2020-04-20 23:00,1.08642,1.08642,1.08616,1.08618,696 +2020-04-20 23:15,1.08617,1.08632,1.08605,1.08631,549 +2020-04-20 23:30,1.0863,1.08637,1.08619,1.08637,689 +2020-04-20 23:45,1.08634,1.08654,1.08634,1.08637,875 +2020-04-21 00:00,1.08636,1.08641,1.08594,1.08595,1350 +2020-04-21 00:15,1.08595,1.08595,1.08537,1.0854,1887 +2020-04-21 00:30,1.0854,1.08564,1.08534,1.08551,1391 +2020-04-21 00:45,1.08553,1.08599,1.08545,1.08558,1478 +2020-04-21 01:00,1.08559,1.08593,1.08538,1.08543,1579 +2020-04-21 01:15,1.08542,1.08588,1.08541,1.0858,1225 +2020-04-21 01:30,1.08582,1.08591,1.08517,1.08518,1391 +2020-04-21 01:45,1.0852,1.08531,1.08455,1.0846,1897 +2020-04-21 02:00,1.08459,1.08485,1.08362,1.08377,2569 +2020-04-21 02:15,1.08377,1.08385,1.08257,1.08295,3678 +2020-04-21 02:30,1.08295,1.08315,1.08266,1.08283,2988 +2020-04-21 02:45,1.08284,1.08371,1.08284,1.08308,2828 +2020-04-21 03:00,1.08309,1.08348,1.08298,1.08327,2061 +2020-04-21 03:15,1.08328,1.08343,1.08296,1.08332,2115 +2020-04-21 03:30,1.08332,1.08364,1.08325,1.08341,1394 +2020-04-21 03:45,1.08335,1.08382,1.08331,1.08376,1228 +2020-04-21 04:00,1.08375,1.0838,1.08348,1.08373,1221 +2020-04-21 04:15,1.08373,1.08387,1.08346,1.08351,869 +2020-04-21 04:30,1.0835,1.08369,1.08325,1.08326,1309 +2020-04-21 04:45,1.08327,1.08335,1.08298,1.08328,1291 +2020-04-21 05:00,1.08329,1.0833,1.08283,1.08296,1691 +2020-04-21 05:15,1.08296,1.08357,1.08295,1.08319,2224 +2020-04-21 05:30,1.08318,1.08382,1.08309,1.08375,1408 +2020-04-21 05:45,1.08375,1.08419,1.08365,1.08413,1996 +2020-04-21 06:00,1.08413,1.08454,1.08358,1.08408,2450 +2020-04-21 06:15,1.0841,1.08453,1.08371,1.0841,3697 +2020-04-21 06:30,1.08408,1.08457,1.08369,1.08383,2299 +2020-04-21 06:45,1.08382,1.08424,1.08361,1.08391,3494 +2020-04-21 07:00,1.08392,1.08437,1.08335,1.08348,4594 +2020-04-21 07:15,1.08348,1.08431,1.08342,1.08397,2729 +2020-04-21 07:30,1.08402,1.08423,1.08326,1.0835,3238 +2020-04-21 07:45,1.08349,1.08388,1.08266,1.08306,4152 +2020-04-21 08:00,1.08304,1.08304,1.08201,1.08222,3212 +2020-04-21 08:15,1.08222,1.08297,1.08207,1.08291,3299 +2020-04-21 08:30,1.0829,1.08338,1.08282,1.08331,3796 +2020-04-21 08:45,1.0833,1.08471,1.08326,1.08366,4050 +2020-04-21 09:00,1.08367,1.08441,1.08366,1.0839,3819 +2020-04-21 09:15,1.0839,1.08422,1.0833,1.08408,4713 +2020-04-21 09:30,1.08407,1.08531,1.08404,1.08412,4822 +2020-04-21 09:45,1.08412,1.08448,1.08303,1.08325,3611 +2020-04-21 10:00,1.08325,1.08341,1.08282,1.08325,3706 +2020-04-21 10:15,1.08325,1.08333,1.08229,1.08303,3327 +2020-04-21 10:30,1.08302,1.08382,1.08297,1.0836,2705 +2020-04-21 10:45,1.0836,1.08388,1.083,1.08323,2742 +2020-04-21 11:00,1.08323,1.08337,1.08254,1.08299,3018 +2020-04-21 11:15,1.083,1.08339,1.08278,1.08337,3062 +2020-04-21 11:30,1.08337,1.08372,1.08283,1.08311,2892 +2020-04-21 11:45,1.08312,1.08383,1.08311,1.08324,3358 +2020-04-21 12:00,1.08322,1.08382,1.08297,1.08367,3826 +2020-04-21 12:15,1.0837,1.08436,1.08343,1.08436,3113 +2020-04-21 12:30,1.08438,1.08441,1.08292,1.08315,4162 +2020-04-21 12:45,1.08314,1.08345,1.08245,1.08291,4302 +2020-04-21 13:00,1.08291,1.08293,1.08165,1.0829,4624 +2020-04-21 13:15,1.0829,1.08362,1.08268,1.08322,4301 +2020-04-21 13:30,1.08323,1.08426,1.08308,1.08411,4320 +2020-04-21 13:45,1.0841,1.08746,1.08391,1.08707,8966 +2020-04-21 14:00,1.08709,1.08722,1.08593,1.08653,6768 +2020-04-21 14:15,1.08651,1.08802,1.08644,1.08702,6160 +2020-04-21 14:30,1.08703,1.08705,1.08434,1.08446,6227 +2020-04-21 14:45,1.08448,1.08631,1.08441,1.08591,7333 +2020-04-21 15:00,1.0859,1.08677,1.08581,1.08631,5968 +2020-04-21 15:15,1.08633,1.08729,1.08595,1.08601,4478 +2020-04-21 15:30,1.08602,1.0866,1.08568,1.0861,4247 +2020-04-21 15:45,1.08612,1.08667,1.08533,1.08537,3465 +2020-04-21 16:00,1.08538,1.08614,1.08534,1.08553,3281 +2020-04-21 16:15,1.08553,1.086,1.08462,1.08485,3301 +2020-04-21 16:30,1.08485,1.08533,1.08473,1.08493,3329 +2020-04-21 16:45,1.08493,1.08528,1.08436,1.08441,5000 +2020-04-21 17:00,1.0844,1.08503,1.08428,1.0848,3351 +2020-04-21 17:15,1.08479,1.08494,1.08444,1.08456,2716 +2020-04-21 17:30,1.08457,1.085,1.08451,1.08481,2802 +2020-04-21 17:45,1.08481,1.08485,1.08416,1.08446,2942 +2020-04-21 18:00,1.08445,1.0849,1.08416,1.08485,3426 +2020-04-21 18:15,1.08484,1.08558,1.08473,1.08546,3455 +2020-04-21 18:30,1.08545,1.08571,1.08508,1.08554,1823 +2020-04-21 18:45,1.08552,1.08555,1.08508,1.08528,2604 +2020-04-21 19:00,1.08528,1.08559,1.08504,1.08534,2550 +2020-04-21 19:15,1.08536,1.08596,1.08534,1.08588,1929 +2020-04-21 19:30,1.08588,1.08657,1.08579,1.08596,2620 +2020-04-21 19:45,1.086,1.08636,1.08574,1.08593,2353 +2020-04-21 20:00,1.08592,1.08625,1.08587,1.0861,852 +2020-04-21 20:15,1.0861,1.0861,1.08589,1.08592,510 +2020-04-21 20:30,1.08592,1.08603,1.0857,1.08581,446 +2020-04-21 20:45,1.0858,1.08587,1.08559,1.08564,648 +2020-04-21 21:00,1.08563,1.08609,1.08563,1.08588,294 +2020-04-21 21:15,1.08579,1.08603,1.08557,1.08571,1404 +2020-04-21 21:30,1.08573,1.08599,1.08558,1.08574,912 +2020-04-21 21:45,1.08573,1.08632,1.08568,1.08583,408 +2020-04-21 22:00,1.08583,1.08588,1.0856,1.08568,830 +2020-04-21 22:15,1.08571,1.0858,1.08562,1.08567,258 +2020-04-21 22:30,1.08567,1.08578,1.08555,1.08561,461 +2020-04-21 22:45,1.08561,1.08563,1.08527,1.08536,582 +2020-04-21 23:00,1.0854,1.08557,1.08525,1.0853,616 +2020-04-21 23:15,1.08531,1.08553,1.08524,1.08549,588 +2020-04-21 23:30,1.08551,1.0857,1.08546,1.08552,347 +2020-04-21 23:45,1.08552,1.08571,1.08551,1.08563,377 +2020-04-22 00:00,1.08563,1.08605,1.0856,1.08595,1461 +2020-04-22 00:15,1.08595,1.08599,1.08497,1.08502,1502 +2020-04-22 00:30,1.08502,1.08532,1.08491,1.0852,1184 +2020-04-22 00:45,1.08519,1.08555,1.08495,1.08549,1446 +2020-04-22 01:00,1.0855,1.08586,1.08542,1.08566,1510 +2020-04-22 01:15,1.08568,1.08609,1.08553,1.08553,1479 +2020-04-22 01:30,1.08554,1.08563,1.08524,1.08526,1389 +2020-04-22 01:45,1.08525,1.08526,1.08475,1.08491,1776 +2020-04-22 02:00,1.0849,1.08582,1.08466,1.08543,2632 +2020-04-22 02:15,1.08543,1.08551,1.08523,1.08542,2303 +2020-04-22 02:30,1.08542,1.08564,1.08529,1.08536,1353 +2020-04-22 02:45,1.08536,1.08554,1.08515,1.08522,1791 +2020-04-22 03:00,1.08523,1.08535,1.0851,1.0853,1200 +2020-04-22 03:15,1.0853,1.08534,1.08482,1.08491,828 +2020-04-22 03:30,1.08491,1.08503,1.08483,1.08487,1066 +2020-04-22 03:45,1.0849,1.08508,1.08483,1.08506,1069 +2020-04-22 04:00,1.08506,1.08513,1.08493,1.08508,758 +2020-04-22 04:15,1.08506,1.08513,1.0845,1.08483,1026 +2020-04-22 04:30,1.08485,1.08488,1.08449,1.08472,1137 +2020-04-22 04:45,1.08472,1.08488,1.08463,1.08463,1179 +2020-04-22 05:00,1.08463,1.08504,1.08453,1.08497,1420 +2020-04-22 05:15,1.08497,1.08512,1.08481,1.08508,1001 +2020-04-22 05:30,1.08507,1.08563,1.08504,1.08537,1362 +2020-04-22 05:45,1.08536,1.08564,1.08511,1.08553,1595 +2020-04-22 06:00,1.08553,1.08571,1.0851,1.08558,2599 +2020-04-22 06:15,1.08557,1.08647,1.08555,1.0863,3741 +2020-04-22 06:30,1.08629,1.08694,1.08592,1.08654,2914 +2020-04-22 06:45,1.08654,1.08693,1.08586,1.0859,3721 +2020-04-22 07:00,1.0859,1.08649,1.08566,1.08639,4893 +2020-04-22 07:15,1.08639,1.08736,1.08625,1.08663,4127 +2020-04-22 07:30,1.08663,1.08678,1.08609,1.08626,3775 +2020-04-22 07:45,1.08626,1.08646,1.08531,1.08555,3675 +2020-04-22 08:00,1.08556,1.08652,1.08529,1.08594,4428 +2020-04-22 08:15,1.08592,1.08618,1.08513,1.08529,3453 +2020-04-22 08:30,1.0853,1.08595,1.08529,1.08572,3332 +2020-04-22 08:45,1.08569,1.0863,1.08558,1.08597,3169 +2020-04-22 09:00,1.08597,1.08695,1.08596,1.08677,3010 +2020-04-22 09:15,1.08678,1.08682,1.08617,1.08625,2916 +2020-04-22 09:30,1.08626,1.08655,1.08611,1.08625,2583 +2020-04-22 09:45,1.08622,1.08667,1.08589,1.086,2431 +2020-04-22 10:00,1.086,1.08627,1.08573,1.08579,2426 +2020-04-22 10:15,1.08579,1.08627,1.08578,1.08623,1659 +2020-04-22 10:30,1.08624,1.08657,1.08623,1.08657,1702 +2020-04-22 10:45,1.08657,1.08719,1.08653,1.08705,2686 +2020-04-22 11:00,1.08705,1.08798,1.08672,1.0879,3646 +2020-04-22 11:15,1.0879,1.08852,1.08715,1.08724,3325 +2020-04-22 11:30,1.08722,1.08793,1.08712,1.08741,2756 +2020-04-22 11:45,1.08742,1.08776,1.08684,1.08763,3349 +2020-04-22 12:00,1.08764,1.08771,1.08621,1.08665,4261 +2020-04-22 12:15,1.08668,1.0875,1.08633,1.08725,3665 +2020-04-22 12:30,1.08726,1.08773,1.08667,1.08712,4838 +2020-04-22 12:45,1.0871,1.08757,1.08685,1.08686,4741 +2020-04-22 13:00,1.08686,1.08686,1.0858,1.08649,5438 +2020-04-22 13:15,1.08648,1.08717,1.08643,1.08679,3813 +2020-04-22 13:30,1.08678,1.08681,1.0857,1.08585,5254 +2020-04-22 13:45,1.08584,1.08612,1.08503,1.08515,2702 +2020-04-22 14:00,1.08515,1.08556,1.08491,1.08501,4405 +2020-04-22 14:15,1.08499,1.08537,1.08332,1.08382,4916 +2020-04-22 14:30,1.08384,1.08407,1.08303,1.0836,4629 +2020-04-22 14:45,1.08359,1.08378,1.08255,1.08291,5425 +2020-04-22 15:00,1.08292,1.08295,1.08203,1.08261,4738 +2020-04-22 15:15,1.08261,1.08343,1.08252,1.08286,3385 +2020-04-22 15:30,1.08285,1.08309,1.0826,1.08295,2465 +2020-04-22 15:45,1.08296,1.08317,1.08257,1.08291,1879 +2020-04-22 16:00,1.08288,1.08292,1.08204,1.0823,1922 +2020-04-22 16:15,1.08228,1.08239,1.08133,1.08158,2320 +2020-04-22 16:30,1.08158,1.08194,1.08152,1.08161,2255 +2020-04-22 16:45,1.0816,1.08175,1.08099,1.08156,2546 +2020-04-22 17:00,1.08156,1.0817,1.08117,1.08164,2495 +2020-04-22 17:15,1.08164,1.08164,1.08075,1.081,2119 +2020-04-22 17:30,1.08101,1.08128,1.08032,1.08107,2556 +2020-04-22 17:45,1.08107,1.0815,1.08096,1.0814,1567 +2020-04-22 18:00,1.08139,1.08166,1.08126,1.08149,1377 +2020-04-22 18:15,1.0815,1.08161,1.08144,1.08159,1127 +2020-04-22 18:30,1.08161,1.08187,1.08147,1.08164,1821 +2020-04-22 18:45,1.08164,1.08256,1.08147,1.08197,2369 +2020-04-22 19:00,1.08198,1.08207,1.08133,1.0815,1231 +2020-04-22 19:15,1.0815,1.08175,1.08146,1.08175,1079 +2020-04-22 19:30,1.08173,1.08236,1.08166,1.08233,2012 +2020-04-22 19:45,1.08232,1.08232,1.08157,1.0818,2245 +2020-04-22 20:00,1.08179,1.08209,1.0816,1.08202,804 +2020-04-22 20:15,1.08201,1.08213,1.08146,1.08213,432 +2020-04-22 20:30,1.08212,1.08221,1.08185,1.08201,437 +2020-04-22 20:45,1.082,1.08237,1.08195,1.08229,533 +2020-04-22 21:00,1.08226,1.08231,1.08213,1.08215,436 +2020-04-22 21:15,1.08214,1.08236,1.08204,1.08233,530 +2020-04-22 21:30,1.08233,1.08241,1.08188,1.08232,268 +2020-04-22 21:45,1.08232,1.08232,1.08229,1.0823,31 +2020-04-22 22:00,1.08227,1.08241,1.0822,1.08221,722 +2020-04-22 22:15,1.0822,1.08224,1.08207,1.08223,275 +2020-04-22 22:30,1.08222,1.0823,1.08207,1.08218,311 +2020-04-22 22:45,1.08217,1.08241,1.08217,1.0823,359 +2020-04-22 23:00,1.0823,1.08231,1.08196,1.08196,695 +2020-04-22 23:15,1.08195,1.08207,1.08179,1.0819,608 +2020-04-22 23:30,1.0819,1.08191,1.08093,1.081,1402 +2020-04-22 23:45,1.08099,1.08109,1.08056,1.08062,1070 +2020-04-23 00:00,1.08062,1.08117,1.08056,1.08113,1463 +2020-04-23 00:15,1.08113,1.08113,1.08046,1.08089,1523 +2020-04-23 00:30,1.08089,1.08142,1.0808,1.0814,1246 +2020-04-23 00:45,1.08139,1.08139,1.08066,1.08112,1236 +2020-04-23 01:00,1.08112,1.08144,1.0811,1.08142,907 +2020-04-23 01:15,1.08142,1.0818,1.08139,1.08166,1398 +2020-04-23 01:30,1.08167,1.08218,1.08163,1.08183,1908 +2020-04-23 01:45,1.08183,1.08199,1.08158,1.08179,1905 +2020-04-23 02:00,1.08182,1.08182,1.08141,1.08157,1221 +2020-04-23 02:15,1.08157,1.08158,1.08083,1.08091,1381 +2020-04-23 02:30,1.08089,1.08129,1.08087,1.08092,1411 +2020-04-23 02:45,1.08091,1.08118,1.08083,1.08113,1350 +2020-04-23 03:00,1.08114,1.08115,1.08081,1.08093,1249 +2020-04-23 03:15,1.08092,1.08119,1.08089,1.08112,756 +2020-04-23 03:30,1.08113,1.08116,1.08094,1.08103,718 +2020-04-23 03:45,1.08103,1.08104,1.0808,1.08092,713 +2020-04-23 04:00,1.0809,1.08129,1.08087,1.08129,838 +2020-04-23 04:15,1.08128,1.08138,1.08125,1.08133,972 +2020-04-23 04:30,1.08134,1.08158,1.08127,1.08153,928 +2020-04-23 04:45,1.08153,1.08164,1.08142,1.08156,959 +2020-04-23 05:00,1.08157,1.08288,1.08157,1.08283,1994 +2020-04-23 05:15,1.08284,1.08296,1.08246,1.08265,2055 +2020-04-23 05:30,1.08266,1.08296,1.08242,1.08296,1869 +2020-04-23 05:45,1.08295,1.08342,1.0827,1.08291,2013 +2020-04-23 06:00,1.08293,1.08343,1.08253,1.08266,3557 +2020-04-23 06:15,1.08269,1.08311,1.08232,1.08282,3745 +2020-04-23 06:30,1.08282,1.08306,1.08208,1.08228,2848 +2020-04-23 06:45,1.08229,1.08236,1.08112,1.08167,3170 +2020-04-23 07:00,1.08166,1.08195,1.08085,1.08119,4934 +2020-04-23 07:15,1.08118,1.08118,1.07853,1.07891,6798 +2020-04-23 07:30,1.07893,1.07957,1.07847,1.07859,5119 +2020-04-23 07:45,1.07858,1.07966,1.07844,1.0796,4543 +2020-04-23 08:00,1.07959,1.08029,1.07925,1.07952,4724 +2020-04-23 08:15,1.07954,1.08009,1.07921,1.0799,3933 +2020-04-23 08:30,1.0799,1.08015,1.07919,1.07946,3242 +2020-04-23 08:45,1.07943,1.07978,1.07902,1.07962,2784 +2020-04-23 09:00,1.0796,1.07994,1.07863,1.07876,3018 +2020-04-23 09:15,1.07877,1.07889,1.07793,1.07812,3482 +2020-04-23 09:30,1.07809,1.07939,1.07809,1.07861,2887 +2020-04-23 09:45,1.0786,1.07868,1.0769,1.07735,3909 +2020-04-23 10:00,1.07734,1.07778,1.07678,1.07758,5159 +2020-04-23 10:15,1.07756,1.07776,1.07734,1.07764,3040 +2020-04-23 10:30,1.07763,1.07763,1.0756,1.07644,5507 +2020-04-23 10:45,1.07642,1.0776,1.07609,1.07754,4126 +2020-04-23 11:00,1.07753,1.07921,1.07736,1.0792,5860 +2020-04-23 11:15,1.0792,1.07922,1.07776,1.07811,4164 +2020-04-23 11:30,1.07811,1.07846,1.07749,1.07791,3588 +2020-04-23 11:45,1.07792,1.07797,1.07636,1.07659,3049 +2020-04-23 12:00,1.0766,1.07753,1.07653,1.07714,3955 +2020-04-23 12:15,1.07715,1.07894,1.07682,1.07851,5009 +2020-04-23 12:30,1.0785,1.07901,1.07765,1.07816,5302 +2020-04-23 12:45,1.07816,1.07946,1.07816,1.07883,4395 +2020-04-23 13:00,1.07883,1.07918,1.0782,1.07847,4283 +2020-04-23 13:15,1.07847,1.07953,1.07807,1.07892,4062 +2020-04-23 13:30,1.07891,1.08034,1.07845,1.07977,8879 +2020-04-23 13:45,1.07974,1.07992,1.07912,1.07941,5173 +2020-04-23 14:00,1.07941,1.08238,1.07914,1.08178,5779 +2020-04-23 14:15,1.08182,1.08466,1.08085,1.08321,10332 +2020-04-23 14:30,1.08321,1.08422,1.08285,1.08352,6575 +2020-04-23 14:45,1.08353,1.08368,1.08244,1.08276,5769 +2020-04-23 15:00,1.08277,1.08368,1.08261,1.08346,4470 +2020-04-23 15:15,1.08347,1.08371,1.08268,1.08366,3490 +2020-04-23 15:30,1.08366,1.08374,1.08119,1.08144,4617 +2020-04-23 15:45,1.08144,1.08157,1.0808,1.08136,3434 +2020-04-23 16:00,1.08138,1.08167,1.08096,1.08119,2590 +2020-04-23 16:15,1.0812,1.08157,1.08084,1.08152,2297 +2020-04-23 16:30,1.08152,1.08182,1.08121,1.08172,2781 +2020-04-23 16:45,1.08173,1.08187,1.08123,1.08136,5719 +2020-04-23 17:00,1.08137,1.08144,1.07942,1.0799,4280 +2020-04-23 17:15,1.0799,1.07996,1.07723,1.07817,6891 +2020-04-23 17:30,1.07816,1.07908,1.07782,1.07831,4609 +2020-04-23 17:45,1.0783,1.07851,1.07643,1.07651,4381 +2020-04-23 18:00,1.07651,1.07761,1.07619,1.07739,3732 +2020-04-23 18:15,1.07739,1.07785,1.07705,1.07785,2542 +2020-04-23 18:30,1.07785,1.07834,1.07747,1.07831,2716 +2020-04-23 18:45,1.07832,1.07873,1.07787,1.07852,3030 +2020-04-23 19:00,1.07852,1.07879,1.07834,1.07877,2117 +2020-04-23 19:15,1.07877,1.07886,1.07806,1.07858,1552 +2020-04-23 19:30,1.07858,1.0786,1.07798,1.07803,2471 +2020-04-23 19:45,1.07803,1.07859,1.07793,1.0782,2612 +2020-04-23 20:00,1.07821,1.07827,1.07718,1.07722,918 +2020-04-23 20:15,1.07721,1.07725,1.0765,1.07671,914 +2020-04-23 20:30,1.07674,1.07751,1.07649,1.07748,905 +2020-04-23 20:45,1.07749,1.07784,1.07712,1.0776,751 +2020-04-23 21:00,1.0776,1.07804,1.07738,1.07776,358 +2020-04-23 21:15,1.07779,1.07849,1.07762,1.07787,376 +2020-04-23 21:30,1.07794,1.07807,1.07787,1.07804,935 +2020-04-23 21:45,1.07803,1.07844,1.07754,1.07774,1015 +2020-04-23 22:00,1.07773,1.07799,1.07752,1.07784,619 +2020-04-23 22:15,1.07784,1.07789,1.07774,1.07776,345 +2020-04-23 22:30,1.07775,1.07797,1.07774,1.07795,394 +2020-04-23 22:45,1.07795,1.07801,1.0779,1.07797,574 +2020-04-23 23:00,1.07798,1.07799,1.07779,1.07783,705 +2020-04-23 23:15,1.0778,1.07791,1.07766,1.07785,546 +2020-04-23 23:30,1.07786,1.07796,1.07746,1.07771,763 +2020-04-23 23:45,1.0777,1.07792,1.07737,1.07743,848 +2020-04-24 00:00,1.07743,1.07791,1.07736,1.07747,1820 +2020-04-24 00:15,1.07746,1.07746,1.07646,1.07666,3372 +2020-04-24 00:30,1.07666,1.07685,1.07646,1.07678,1837 +2020-04-24 00:45,1.07679,1.07702,1.07612,1.07662,3109 +2020-04-24 01:00,1.07662,1.07689,1.07649,1.07679,2307 +2020-04-24 01:15,1.07679,1.07681,1.07653,1.07664,2071 +2020-04-24 01:30,1.07667,1.07696,1.07631,1.07693,1346 +2020-04-24 01:45,1.07694,1.07695,1.07659,1.07664,1443 +2020-04-24 02:00,1.07665,1.07685,1.07659,1.07684,1118 +2020-04-24 02:15,1.07683,1.07702,1.07671,1.07695,891 +2020-04-24 02:30,1.07695,1.07744,1.07676,1.07744,1466 +2020-04-24 02:45,1.07744,1.07746,1.07711,1.07712,1328 +2020-04-24 03:00,1.07711,1.07711,1.07668,1.0769,949 +2020-04-24 03:15,1.07692,1.077,1.07685,1.07685,684 +2020-04-24 03:30,1.07686,1.07689,1.07665,1.07677,674 +2020-04-24 03:45,1.07676,1.07714,1.07674,1.07711,547 +2020-04-24 04:00,1.0771,1.0774,1.07707,1.07738,989 +2020-04-24 04:15,1.07738,1.07738,1.07711,1.07721,865 +2020-04-24 04:30,1.07721,1.07722,1.07689,1.07699,837 +2020-04-24 04:45,1.07698,1.07719,1.07687,1.07715,771 +2020-04-24 05:00,1.07714,1.07714,1.0765,1.07668,1285 +2020-04-24 05:15,1.07669,1.07701,1.07653,1.07698,1166 +2020-04-24 05:30,1.07698,1.07698,1.07658,1.07668,1081 +2020-04-24 05:45,1.07667,1.07667,1.07607,1.07631,1766 +2020-04-24 06:00,1.07632,1.07651,1.07532,1.07555,3036 +2020-04-24 06:15,1.07554,1.07614,1.0755,1.07609,2783 +2020-04-24 06:30,1.07609,1.07664,1.07567,1.0758,3082 +2020-04-24 06:45,1.0758,1.07634,1.07376,1.07382,5443 +2020-04-24 07:00,1.07382,1.07485,1.07271,1.07284,7405 +2020-04-24 07:15,1.07284,1.07407,1.07271,1.07337,3949 +2020-04-24 07:30,1.07336,1.07459,1.07336,1.07454,3694 +2020-04-24 07:45,1.07455,1.07513,1.07385,1.07406,3710 +2020-04-24 08:00,1.07406,1.07489,1.07329,1.07489,5201 +2020-04-24 08:15,1.07487,1.07534,1.07437,1.07499,4089 +2020-04-24 08:30,1.07498,1.07569,1.07481,1.07543,3726 +2020-04-24 08:45,1.07542,1.07591,1.07519,1.07558,3767 +2020-04-24 09:00,1.0756,1.07576,1.07495,1.07544,4057 +2020-04-24 09:15,1.07544,1.07634,1.07537,1.07612,3332 +2020-04-24 09:30,1.07612,1.07668,1.07607,1.07646,2508 +2020-04-24 09:45,1.07646,1.07681,1.07603,1.07653,2342 +2020-04-24 10:00,1.07654,1.07673,1.07618,1.07643,2086 +2020-04-24 10:15,1.07644,1.07682,1.07632,1.0766,1514 +2020-04-24 10:30,1.07659,1.07979,1.07636,1.07902,3859 +2020-04-24 10:45,1.07905,1.07945,1.07793,1.07851,4836 +2020-04-24 11:00,1.07852,1.07929,1.07769,1.07929,4465 +2020-04-24 11:15,1.07929,1.08056,1.07896,1.07898,4978 +2020-04-24 11:30,1.07899,1.07929,1.07854,1.07871,3102 +2020-04-24 11:45,1.07871,1.07955,1.07844,1.07933,3217 +2020-04-24 12:00,1.07931,1.07996,1.07905,1.07993,3962 +2020-04-24 12:15,1.07998,1.081,1.07951,1.08029,4693 +2020-04-24 12:30,1.08028,1.08061,1.07939,1.08017,4884 +2020-04-24 12:45,1.08017,1.08063,1.0797,1.08029,4278 +2020-04-24 13:00,1.08028,1.08053,1.07971,1.0799,4151 +2020-04-24 13:15,1.0799,1.08018,1.0792,1.07968,3126 +2020-04-24 13:30,1.07969,1.08078,1.07955,1.07963,3828 +2020-04-24 13:45,1.07963,1.08021,1.07843,1.07966,4359 +2020-04-24 14:00,1.07964,1.08044,1.07894,1.07985,6000 +2020-04-24 14:15,1.07986,1.08197,1.07949,1.08087,5399 +2020-04-24 14:30,1.08088,1.08094,1.07974,1.08069,4461 +2020-04-24 14:45,1.08069,1.08177,1.08036,1.08136,5518 +2020-04-24 15:00,1.08135,1.08139,1.0796,1.08033,4259 +2020-04-24 15:15,1.08032,1.08042,1.07959,1.08014,3277 +2020-04-24 15:30,1.08016,1.08035,1.07939,1.07982,2842 +2020-04-24 15:45,1.07984,1.08008,1.07948,1.0797,2317 +2020-04-24 16:00,1.07973,1.08021,1.07936,1.0794,3410 +2020-04-24 16:15,1.07937,1.07967,1.07871,1.07884,4025 +2020-04-24 16:30,1.07884,1.07938,1.07879,1.07922,2581 +2020-04-24 16:45,1.07921,1.07984,1.07862,1.07882,2445 +2020-04-24 17:00,1.07881,1.07892,1.07845,1.07891,2472 +2020-04-24 17:15,1.0789,1.07918,1.07862,1.07888,1632 +2020-04-24 17:30,1.07887,1.07935,1.07875,1.07926,1482 +2020-04-24 17:45,1.07925,1.07951,1.07909,1.07939,1581 +2020-04-24 18:00,1.0794,1.07954,1.07906,1.07954,2276 +2020-04-24 18:15,1.07954,1.07981,1.07939,1.07958,1886 +2020-04-24 18:30,1.07959,1.07983,1.07948,1.07976,1187 +2020-04-24 18:45,1.07975,1.08009,1.07973,1.07977,1702 +2020-04-24 19:00,1.07976,1.0802,1.07967,1.08009,1379 +2020-04-24 19:15,1.08009,1.08092,1.08002,1.08058,1225 +2020-04-24 19:30,1.08057,1.08109,1.08039,1.08084,1168 +2020-04-24 19:45,1.08083,1.08132,1.08054,1.08111,1674 +2020-04-24 20:00,1.08111,1.08197,1.08079,1.08166,1866 +2020-04-24 20:15,1.08166,1.08173,1.08138,1.08148,736 +2020-04-24 20:30,1.08154,1.0819,1.08151,1.08168,370 +2020-04-24 20:45,1.08168,1.08294,1.08166,1.08196,2193 +2020-04-26 21:00,1.08211,1.08228,1.08211,1.08228,22 +2020-04-26 21:15,1.08227,1.08227,1.08199,1.08214,49 +2020-04-26 21:30,1.08217,1.08217,1.08205,1.08206,95 +2020-04-26 21:45,1.08206,1.08224,1.08205,1.08214,85 +2020-04-26 22:00,1.08216,1.08219,1.08192,1.082,1014 +2020-04-26 22:15,1.08201,1.08206,1.08178,1.08191,586 +2020-04-26 22:30,1.08191,1.08193,1.08146,1.08149,725 +2020-04-26 22:45,1.0815,1.08173,1.08146,1.0817,457 +2020-04-26 23:00,1.08169,1.0821,1.08157,1.08178,674 +2020-04-26 23:15,1.0818,1.08187,1.08167,1.08181,534 +2020-04-26 23:30,1.08184,1.08194,1.08171,1.08183,493 +2020-04-26 23:45,1.08183,1.08211,1.08156,1.08209,662 +2020-04-27 00:00,1.08208,1.08212,1.08132,1.08136,1811 +2020-04-27 00:15,1.08137,1.08159,1.08127,1.08143,1024 +2020-04-27 00:30,1.08143,1.08148,1.08112,1.0812,906 +2020-04-27 00:45,1.08121,1.08182,1.08118,1.08181,2320 +2020-04-27 01:00,1.08182,1.08216,1.08172,1.0819,1880 +2020-04-27 01:15,1.08191,1.08264,1.08191,1.08257,2158 +2020-04-27 01:30,1.08258,1.08321,1.08238,1.0825,3120 +2020-04-27 01:45,1.0825,1.0829,1.08248,1.08253,2427 +2020-04-27 02:00,1.08254,1.08284,1.08234,1.08265,2130 +2020-04-27 02:15,1.08264,1.08276,1.0823,1.08232,991 +2020-04-27 02:30,1.08231,1.08261,1.08223,1.08239,1018 +2020-04-27 02:45,1.08239,1.08249,1.08205,1.08227,1003 +2020-04-27 03:00,1.08226,1.0824,1.08197,1.08238,1531 +2020-04-27 03:15,1.08239,1.08268,1.08222,1.08267,1352 +2020-04-27 03:30,1.08268,1.08305,1.08267,1.08293,1461 +2020-04-27 03:45,1.08294,1.08332,1.08285,1.08317,1208 +2020-04-27 04:00,1.08317,1.08328,1.08304,1.08316,1042 +2020-04-27 04:15,1.08315,1.08327,1.083,1.08312,827 +2020-04-27 04:30,1.08312,1.08431,1.0831,1.08421,2060 +2020-04-27 04:45,1.08422,1.08431,1.08381,1.08384,1633 +2020-04-27 05:00,1.08385,1.08443,1.08385,1.08438,1390 +2020-04-27 05:15,1.08438,1.08498,1.08416,1.08467,1583 +2020-04-27 05:30,1.08468,1.0849,1.08399,1.08399,1992 +2020-04-27 05:45,1.08401,1.08538,1.08401,1.08466,2474 +2020-04-27 06:00,1.08469,1.08587,1.08458,1.08517,4136 +2020-04-27 06:15,1.08516,1.08592,1.08489,1.08543,2430 +2020-04-27 06:30,1.08542,1.08561,1.08499,1.08548,2405 +2020-04-27 06:45,1.08551,1.0857,1.0846,1.0846,2942 +2020-04-27 07:00,1.08459,1.08479,1.08419,1.08431,4730 +2020-04-27 07:15,1.0843,1.08446,1.08351,1.08434,3813 +2020-04-27 07:30,1.08435,1.08451,1.08344,1.08375,3628 +2020-04-27 07:45,1.08375,1.08423,1.08329,1.08417,2705 +2020-04-27 08:00,1.08417,1.08459,1.08362,1.08428,3432 +2020-04-27 08:15,1.08427,1.08477,1.08398,1.08439,3018 +2020-04-27 08:30,1.0844,1.08469,1.08377,1.08382,2835 +2020-04-27 08:45,1.08381,1.08501,1.08356,1.08497,3620 +2020-04-27 09:00,1.08497,1.08503,1.08394,1.08444,3893 +2020-04-27 09:15,1.08444,1.08509,1.08443,1.08488,3150 +2020-04-27 09:30,1.08486,1.08518,1.0846,1.08505,2436 +2020-04-27 09:45,1.08504,1.0851,1.08412,1.08465,2606 +2020-04-27 10:00,1.08465,1.08541,1.0846,1.08478,3172 +2020-04-27 10:15,1.08478,1.08513,1.08463,1.08507,2416 +2020-04-27 10:30,1.08508,1.08602,1.08476,1.08552,2256 +2020-04-27 10:45,1.08554,1.086,1.08519,1.08519,2459 +2020-04-27 11:00,1.08519,1.08519,1.08352,1.08357,4477 +2020-04-27 11:15,1.08356,1.08456,1.08355,1.08389,4001 +2020-04-27 11:30,1.08389,1.08442,1.08339,1.08442,2413 +2020-04-27 11:45,1.0844,1.0855,1.08407,1.08548,4055 +2020-04-27 12:00,1.08546,1.08584,1.08499,1.08527,4100 +2020-04-27 12:15,1.08529,1.08572,1.0851,1.08549,3013 +2020-04-27 12:30,1.0855,1.08562,1.08438,1.08486,2928 +2020-04-27 12:45,1.08485,1.0853,1.08463,1.0851,3060 +2020-04-27 13:00,1.08509,1.08554,1.08469,1.08528,2987 +2020-04-27 13:15,1.08529,1.08547,1.08485,1.08544,2994 +2020-04-27 13:30,1.08546,1.08573,1.08451,1.08453,4289 +2020-04-27 13:45,1.08457,1.08501,1.08438,1.08473,3540 +2020-04-27 14:00,1.08472,1.08473,1.08341,1.0837,4268 +2020-04-27 14:15,1.0837,1.08431,1.08341,1.08375,4126 +2020-04-27 14:30,1.08376,1.08381,1.08326,1.08332,3754 +2020-04-27 14:45,1.08333,1.0845,1.08274,1.08404,4882 +2020-04-27 15:00,1.08403,1.08429,1.08335,1.08336,3087 +2020-04-27 15:15,1.08335,1.08389,1.08282,1.08378,2537 +2020-04-27 15:30,1.08379,1.08379,1.08304,1.08325,1914 +2020-04-27 15:45,1.08324,1.08332,1.08279,1.08285,1640 +2020-04-27 16:00,1.08285,1.08286,1.08206,1.08207,2541 +2020-04-27 16:15,1.08207,1.08232,1.08166,1.08198,2425 +2020-04-27 16:30,1.08197,1.08208,1.08165,1.08189,2833 +2020-04-27 16:45,1.08188,1.08219,1.08167,1.08213,2619 +2020-04-27 17:00,1.08212,1.08269,1.08206,1.08257,2068 +2020-04-27 17:15,1.08257,1.08269,1.08229,1.08268,1530 +2020-04-27 17:30,1.08267,1.08313,1.08257,1.08276,1712 +2020-04-27 17:45,1.08276,1.08298,1.0825,1.08292,978 +2020-04-27 18:00,1.08291,1.08304,1.08264,1.08288,1628 +2020-04-27 18:15,1.08287,1.08323,1.0827,1.08288,1799 +2020-04-27 18:30,1.08287,1.08327,1.0828,1.08326,1082 +2020-04-27 18:45,1.08327,1.08332,1.08306,1.08321,1466 +2020-04-27 19:00,1.08323,1.08337,1.08283,1.08298,1119 +2020-04-27 19:15,1.08298,1.0831,1.08281,1.0831,1221 +2020-04-27 19:30,1.0831,1.08336,1.08307,1.08317,1097 +2020-04-27 19:45,1.08315,1.08343,1.08276,1.08291,1472 +2020-04-27 20:00,1.0829,1.08304,1.08254,1.08267,816 +2020-04-27 20:15,1.08268,1.08282,1.08246,1.08246,280 +2020-04-27 20:30,1.08248,1.08291,1.08244,1.08279,406 +2020-04-27 20:45,1.08279,1.08298,1.08264,1.08286,473 +2020-04-27 21:00,1.08282,1.08303,1.08239,1.08249,368 +2020-04-27 21:15,1.08249,1.083,1.08209,1.08242,1862 +2020-04-27 21:30,1.08239,1.08295,1.08226,1.0829,577 +2020-04-27 21:45,1.0829,1.08314,1.08243,1.08301,886 +2020-04-27 22:00,1.08301,1.08303,1.08255,1.08265,762 +2020-04-27 22:15,1.08264,1.0827,1.08243,1.0827,737 +2020-04-27 22:30,1.08268,1.08284,1.08265,1.08281,628 +2020-04-27 22:45,1.08282,1.08289,1.08269,1.08286,660 +2020-04-27 23:00,1.08287,1.08301,1.08256,1.08265,751 +2020-04-27 23:15,1.08268,1.08269,1.08244,1.08246,790 +2020-04-27 23:30,1.08245,1.0825,1.08233,1.08235,539 +2020-04-27 23:45,1.08236,1.08254,1.08236,1.08245,661 +2020-04-28 00:00,1.08244,1.08281,1.08226,1.08278,1239 +2020-04-28 00:15,1.08278,1.0832,1.08278,1.08319,1160 +2020-04-28 00:30,1.08317,1.08348,1.08313,1.08331,933 +2020-04-28 00:45,1.0833,1.0836,1.08313,1.08329,1764 +2020-04-28 01:00,1.08329,1.08334,1.0829,1.08298,1473 +2020-04-28 01:15,1.083,1.08343,1.08296,1.0834,1070 +2020-04-28 01:30,1.0834,1.08344,1.08271,1.08291,1917 +2020-04-28 01:45,1.08291,1.08297,1.08235,1.08248,1608 +2020-04-28 02:00,1.08248,1.0828,1.08242,1.08269,1483 +2020-04-28 02:15,1.08269,1.08269,1.08239,1.08242,1327 +2020-04-28 02:30,1.08242,1.08283,1.08241,1.08276,784 +2020-04-28 02:45,1.08275,1.08276,1.08263,1.08274,487 +2020-04-28 03:00,1.08272,1.08274,1.08237,1.08241,527 +2020-04-28 03:15,1.0824,1.08259,1.08235,1.08257,818 +2020-04-28 03:30,1.08258,1.08267,1.0825,1.08259,931 +2020-04-28 03:45,1.08259,1.08274,1.08236,1.08242,938 +2020-04-28 04:00,1.08242,1.08242,1.08168,1.0818,1641 +2020-04-28 04:15,1.0818,1.08221,1.0818,1.0822,922 +2020-04-28 04:30,1.0822,1.0822,1.08186,1.08194,1019 +2020-04-28 04:45,1.08192,1.08219,1.0818,1.08218,1186 +2020-04-28 05:00,1.08217,1.08224,1.08188,1.08198,1557 +2020-04-28 05:15,1.08198,1.08248,1.08196,1.08236,1329 +2020-04-28 05:30,1.08236,1.08272,1.08225,1.08267,1850 +2020-04-28 05:45,1.08267,1.08273,1.08243,1.08252,1795 +2020-04-28 06:00,1.08253,1.08253,1.08197,1.08225,1971 +2020-04-28 06:15,1.08225,1.08235,1.08134,1.08153,2583 +2020-04-28 06:30,1.08153,1.08173,1.08099,1.08144,2368 +2020-04-28 06:45,1.08144,1.0816,1.08097,1.08125,2408 +2020-04-28 07:00,1.08127,1.08246,1.081,1.08207,3149 +2020-04-28 07:15,1.08207,1.08336,1.08187,1.08306,3156 +2020-04-28 07:30,1.08307,1.08348,1.08241,1.08302,3667 +2020-04-28 07:45,1.08302,1.08408,1.08287,1.08392,4561 +2020-04-28 08:00,1.08393,1.08459,1.0837,1.08449,4209 +2020-04-28 08:15,1.08448,1.08582,1.08445,1.08511,4409 +2020-04-28 08:30,1.08511,1.08563,1.08486,1.08546,2962 +2020-04-28 08:45,1.08547,1.08553,1.08459,1.08501,2451 +2020-04-28 09:00,1.08501,1.08511,1.0844,1.08478,2147 +2020-04-28 09:15,1.08478,1.08766,1.08476,1.08757,6195 +2020-04-28 09:30,1.08757,1.08855,1.08673,1.08797,6310 +2020-04-28 09:45,1.08797,1.08853,1.08751,1.08759,4469 +2020-04-28 10:00,1.08758,1.08801,1.08686,1.0875,3463 +2020-04-28 10:15,1.08749,1.08821,1.08706,1.08816,2946 +2020-04-28 10:30,1.08814,1.08844,1.08764,1.08769,2354 +2020-04-28 10:45,1.0877,1.08831,1.08742,1.08823,2677 +2020-04-28 11:00,1.08825,1.08841,1.08785,1.08814,3541 +2020-04-28 11:15,1.08814,1.08884,1.08805,1.08855,4129 +2020-04-28 11:30,1.08855,1.08872,1.08824,1.08829,2409 +2020-04-28 11:45,1.08828,1.08878,1.08799,1.08863,3075 +2020-04-28 12:00,1.08866,1.08881,1.08753,1.08767,3562 +2020-04-28 12:15,1.0877,1.08827,1.08732,1.08789,3424 +2020-04-28 12:30,1.08789,1.08851,1.08788,1.08801,3413 +2020-04-28 12:45,1.08801,1.08851,1.08697,1.08701,2933 +2020-04-28 13:00,1.08701,1.08747,1.08636,1.08636,4461 +2020-04-28 13:15,1.0864,1.08698,1.08604,1.08683,3889 +2020-04-28 13:30,1.08682,1.08689,1.0854,1.08559,3668 +2020-04-28 13:45,1.08558,1.08561,1.08395,1.08434,3852 +2020-04-28 14:00,1.08434,1.08555,1.08426,1.08476,4629 +2020-04-28 14:15,1.08475,1.08545,1.08453,1.08518,3713 +2020-04-28 14:30,1.08521,1.08571,1.08494,1.08542,4386 +2020-04-28 14:45,1.08541,1.08579,1.08298,1.08324,6659 +2020-04-28 15:00,1.08327,1.08393,1.08248,1.08392,5401 +2020-04-28 15:15,1.08392,1.08435,1.08346,1.08394,3304 +2020-04-28 15:30,1.08396,1.08465,1.08321,1.08443,2631 +2020-04-28 15:45,1.08442,1.08454,1.08354,1.08362,2002 +2020-04-28 16:00,1.08361,1.08383,1.08323,1.08347,2928 +2020-04-28 16:15,1.08346,1.08349,1.08252,1.08298,2097 +2020-04-28 16:30,1.08297,1.08344,1.08271,1.08315,1609 +2020-04-28 16:45,1.08315,1.08376,1.08307,1.08315,2307 +2020-04-28 17:00,1.08316,1.08328,1.08279,1.08309,2129 +2020-04-28 17:15,1.0831,1.0837,1.0829,1.0832,2202 +2020-04-28 17:30,1.08321,1.0837,1.08285,1.08295,1878 +2020-04-28 17:45,1.08297,1.08356,1.08269,1.08356,1399 +2020-04-28 18:00,1.08356,1.08399,1.08338,1.08353,2209 +2020-04-28 18:15,1.08354,1.08374,1.08337,1.08357,1439 +2020-04-28 18:30,1.08358,1.08372,1.08337,1.08341,932 +2020-04-28 18:45,1.08343,1.08372,1.08329,1.08355,1362 +2020-04-28 19:00,1.08354,1.08382,1.08336,1.08353,1824 +2020-04-28 19:15,1.08353,1.08358,1.08336,1.0835,1464 +2020-04-28 19:30,1.08351,1.08373,1.08351,1.08366,1484 +2020-04-28 19:45,1.08367,1.08367,1.08305,1.08326,1956 +2020-04-28 20:00,1.08327,1.08342,1.08253,1.08265,811 +2020-04-28 20:15,1.08267,1.08278,1.08239,1.08248,609 +2020-04-28 20:30,1.08248,1.08251,1.08193,1.08197,449 +2020-04-28 20:45,1.08198,1.08212,1.08176,1.08186,623 +2020-04-28 21:00,1.08186,1.08204,1.08186,1.08195,122 +2020-04-28 21:15,1.08195,1.08226,1.08184,1.08202,242 +2020-04-28 21:30,1.08202,1.08231,1.08186,1.08191,985 +2020-04-28 21:45,1.08192,1.08233,1.08183,1.08212,282 +2020-04-28 22:00,1.08213,1.08235,1.08201,1.08211,462 +2020-04-28 22:15,1.08211,1.08249,1.08211,1.08241,482 +2020-04-28 22:30,1.08239,1.08265,1.08239,1.08261,469 +2020-04-28 22:45,1.0826,1.08265,1.08252,1.08253,289 +2020-04-28 23:00,1.08253,1.08265,1.08239,1.08265,678 +2020-04-28 23:15,1.08266,1.08306,1.08258,1.083,632 +2020-04-28 23:30,1.08299,1.08313,1.08274,1.08312,1333 +2020-04-28 23:45,1.08312,1.08329,1.083,1.08324,903 +2020-04-29 00:00,1.08324,1.08365,1.08308,1.08362,1588 +2020-04-29 00:15,1.08361,1.08365,1.08324,1.08329,1441 +2020-04-29 00:30,1.08329,1.08417,1.08325,1.08407,1323 +2020-04-29 00:45,1.08405,1.08421,1.08394,1.08416,1538 +2020-04-29 01:00,1.08415,1.08425,1.08391,1.08425,959 +2020-04-29 01:15,1.08424,1.08474,1.08408,1.08466,895 +2020-04-29 01:30,1.08469,1.08545,1.08448,1.0852,2314 +2020-04-29 01:45,1.08522,1.08522,1.0845,1.0846,1462 +2020-04-29 02:00,1.0846,1.08501,1.08444,1.08486,1388 +2020-04-29 02:15,1.08485,1.08533,1.0846,1.08531,1261 +2020-04-29 02:30,1.08531,1.08533,1.08504,1.08506,885 +2020-04-29 02:45,1.08506,1.0852,1.08471,1.08509,1093 +2020-04-29 03:00,1.0851,1.0851,1.08455,1.08473,1090 +2020-04-29 03:15,1.08473,1.08482,1.0844,1.08444,1255 +2020-04-29 03:30,1.08445,1.08453,1.08431,1.08439,767 +2020-04-29 03:45,1.08438,1.08493,1.08411,1.08467,934 +2020-04-29 04:00,1.08467,1.08477,1.08451,1.08467,731 +2020-04-29 04:15,1.08468,1.08494,1.08456,1.08457,1003 +2020-04-29 04:30,1.08458,1.0846,1.08436,1.08455,974 +2020-04-29 04:45,1.08456,1.08501,1.08456,1.08496,1013 +2020-04-29 05:00,1.08497,1.08505,1.08483,1.08489,710 +2020-04-29 05:15,1.08488,1.08553,1.08488,1.08518,1379 +2020-04-29 05:30,1.08519,1.08554,1.08497,1.08548,1154 +2020-04-29 05:45,1.08547,1.08567,1.08526,1.08552,1652 +2020-04-29 06:00,1.08553,1.08557,1.08427,1.08441,2718 +2020-04-29 06:15,1.08441,1.08454,1.08392,1.08439,2307 +2020-04-29 06:30,1.08439,1.08518,1.08423,1.0846,2194 +2020-04-29 06:45,1.0846,1.08524,1.0845,1.08513,2521 +2020-04-29 07:00,1.08513,1.08684,1.08451,1.08595,6129 +2020-04-29 07:15,1.08594,1.08645,1.08544,1.08645,4287 +2020-04-29 07:30,1.0865,1.08673,1.08597,1.08628,3080 +2020-04-29 07:45,1.08627,1.08716,1.08605,1.08702,3518 +2020-04-29 08:00,1.08701,1.08732,1.08634,1.08654,3656 +2020-04-29 08:15,1.08655,1.08733,1.08639,1.08693,2337 +2020-04-29 08:30,1.08695,1.08741,1.08667,1.08689,2590 +2020-04-29 08:45,1.0869,1.08692,1.08629,1.08662,2721 +2020-04-29 09:00,1.08663,1.08687,1.08633,1.0867,2682 +2020-04-29 09:15,1.08671,1.08726,1.08643,1.08702,2666 +2020-04-29 09:30,1.08704,1.0871,1.08581,1.08602,3483 +2020-04-29 09:45,1.08603,1.08632,1.08545,1.08556,2598 +2020-04-29 10:00,1.08557,1.08592,1.08526,1.08557,2546 +2020-04-29 10:15,1.08557,1.08575,1.0852,1.08564,2213 +2020-04-29 10:30,1.08566,1.08569,1.08466,1.08498,2957 +2020-04-29 10:45,1.08498,1.08509,1.08464,1.08507,2836 +2020-04-29 11:00,1.08506,1.08507,1.08436,1.08476,2295 +2020-04-29 11:15,1.08475,1.08508,1.08466,1.08502,2436 +2020-04-29 11:30,1.08501,1.08543,1.08487,1.08502,2385 +2020-04-29 11:45,1.08503,1.08505,1.08411,1.08423,2935 +2020-04-29 12:00,1.08424,1.08446,1.084,1.08418,2620 +2020-04-29 12:15,1.08418,1.08455,1.08395,1.0842,2796 +2020-04-29 12:30,1.08418,1.08538,1.08406,1.08477,7063 +2020-04-29 12:45,1.0848,1.08573,1.08451,1.08572,4163 +2020-04-29 13:00,1.08571,1.08666,1.0855,1.08559,4703 +2020-04-29 13:15,1.08562,1.08651,1.08549,1.08641,3139 +2020-04-29 13:30,1.0864,1.08682,1.08613,1.08656,3540 +2020-04-29 13:45,1.0866,1.08672,1.0862,1.0864,3438 +2020-04-29 14:00,1.08639,1.08665,1.0851,1.08512,4889 +2020-04-29 14:15,1.08513,1.08561,1.08439,1.08474,5253 +2020-04-29 14:30,1.08473,1.08492,1.08425,1.08453,3317 +2020-04-29 14:45,1.08454,1.08587,1.08446,1.08516,3718 +2020-04-29 15:00,1.08518,1.0858,1.08471,1.08561,3508 +2020-04-29 15:15,1.08564,1.08567,1.08507,1.08529,2960 +2020-04-29 15:30,1.08529,1.08533,1.0845,1.08495,2649 +2020-04-29 15:45,1.08494,1.08555,1.08493,1.08523,2642 +2020-04-29 16:00,1.08523,1.08568,1.08514,1.08527,2675 +2020-04-29 16:15,1.08528,1.08556,1.08476,1.08551,2374 +2020-04-29 16:30,1.0855,1.08554,1.08492,1.08511,1630 +2020-04-29 16:45,1.08512,1.08528,1.08473,1.08477,3067 +2020-04-29 17:00,1.08477,1.08563,1.08471,1.0856,2447 +2020-04-29 17:15,1.08556,1.08635,1.08556,1.08606,2775 +2020-04-29 17:30,1.08607,1.08614,1.08573,1.08575,2308 +2020-04-29 17:45,1.08575,1.08675,1.08562,1.08638,1959 +2020-04-29 18:00,1.08637,1.08818,1.08627,1.08758,4889 +2020-04-29 18:15,1.08757,1.08797,1.08701,1.08779,2777 +2020-04-29 18:30,1.0878,1.08846,1.08695,1.08841,4195 +2020-04-29 18:45,1.08843,1.08856,1.08683,1.08716,4005 +2020-04-29 19:00,1.08716,1.08801,1.08665,1.08756,3489 +2020-04-29 19:15,1.08757,1.08757,1.08709,1.08736,2079 +2020-04-29 19:30,1.08736,1.08784,1.08691,1.08765,2709 +2020-04-29 19:45,1.08767,1.08827,1.08751,1.08752,3098 +2020-04-29 20:00,1.08753,1.08762,1.08707,1.08713,1342 +2020-04-29 20:15,1.08714,1.08753,1.08698,1.08751,483 +2020-04-29 20:30,1.08751,1.0879,1.08745,1.08786,513 +2020-04-29 20:45,1.08786,1.0879,1.08715,1.08724,1043 +2020-04-29 21:00,1.08741,1.08789,1.08705,1.08765,553 +2020-04-29 21:15,1.08765,1.08767,1.08737,1.08747,349 +2020-04-29 21:30,1.08746,1.08749,1.08733,1.0874,735 +2020-04-29 21:45,1.0874,1.08741,1.08733,1.08735,95 +2020-04-29 22:00,1.08736,1.08768,1.08736,1.08753,754 +2020-04-29 22:15,1.08752,1.08752,1.08735,1.08748,379 +2020-04-29 22:30,1.08749,1.08752,1.08745,1.08751,511 +2020-04-29 22:45,1.08752,1.08762,1.08747,1.08749,392 +2020-04-29 23:00,1.08748,1.08756,1.0873,1.08736,691 +2020-04-29 23:15,1.08739,1.08766,1.08739,1.08756,583 +2020-04-29 23:30,1.08758,1.08782,1.08756,1.08779,456 +2020-04-29 23:45,1.08779,1.08786,1.08761,1.08772,743 +2020-04-30 00:00,1.0877,1.08771,1.08695,1.0871,1399 +2020-04-30 00:15,1.08711,1.08713,1.08647,1.08668,1818 +2020-04-30 00:30,1.08668,1.08671,1.08557,1.08557,1877 +2020-04-30 00:45,1.08557,1.08599,1.08513,1.0859,2725 +2020-04-30 01:00,1.08589,1.08617,1.08558,1.08604,1518 +2020-04-30 01:15,1.08604,1.0863,1.08589,1.0862,1395 +2020-04-30 01:30,1.0862,1.08659,1.08617,1.08642,1212 +2020-04-30 01:45,1.08642,1.08675,1.08629,1.08674,1025 +2020-04-30 02:00,1.08673,1.08715,1.08668,1.08699,1515 +2020-04-30 02:15,1.08698,1.08714,1.08664,1.08668,1411 +2020-04-30 02:30,1.08668,1.08668,1.08636,1.08649,890 +2020-04-30 02:45,1.0865,1.08671,1.08618,1.08621,1100 +2020-04-30 03:00,1.08619,1.08629,1.08602,1.08629,1112 +2020-04-30 03:15,1.08629,1.08629,1.08598,1.08606,972 +2020-04-30 03:30,1.08606,1.08608,1.08597,1.08599,788 +2020-04-30 03:45,1.08599,1.08643,1.08596,1.0863,1757 +2020-04-30 04:00,1.08629,1.08629,1.08568,1.08577,1357 +2020-04-30 04:15,1.08577,1.08584,1.08546,1.08579,1534 +2020-04-30 04:30,1.0858,1.08605,1.08554,1.08602,1759 +2020-04-30 04:45,1.08602,1.08606,1.08574,1.08598,1536 +2020-04-30 05:00,1.08598,1.08604,1.08575,1.08588,1118 +2020-04-30 05:15,1.0859,1.08635,1.08588,1.08633,837 +2020-04-30 05:30,1.0863,1.08669,1.0862,1.08648,1195 +2020-04-30 05:45,1.0865,1.08685,1.08642,1.08642,1447 +2020-04-30 06:00,1.08642,1.08662,1.08534,1.08606,3154 +2020-04-30 06:15,1.08604,1.0866,1.08599,1.08627,2486 +2020-04-30 06:30,1.08628,1.08636,1.08547,1.08624,2522 +2020-04-30 06:45,1.08622,1.08833,1.08619,1.08809,5495 +2020-04-30 07:00,1.08807,1.08912,1.08769,1.08843,6546 +2020-04-30 07:15,1.08842,1.08844,1.08695,1.08699,3886 +2020-04-30 07:30,1.08699,1.0883,1.08681,1.08823,4502 +2020-04-30 07:45,1.08822,1.08845,1.08753,1.08838,3626 +2020-04-30 08:00,1.08839,1.08888,1.08755,1.08771,3870 +2020-04-30 08:15,1.08771,1.08784,1.08709,1.08747,3022 +2020-04-30 08:30,1.08747,1.08792,1.08701,1.08775,4049 +2020-04-30 08:45,1.08776,1.08858,1.08734,1.08858,3838 +2020-04-30 09:00,1.08855,1.08882,1.08797,1.08804,3259 +2020-04-30 09:15,1.08805,1.08869,1.08763,1.08824,3033 +2020-04-30 09:30,1.08825,1.08829,1.0875,1.0876,2904 +2020-04-30 09:45,1.0876,1.08773,1.08591,1.08617,3867 +2020-04-30 10:00,1.08616,1.0872,1.08616,1.08711,3512 +2020-04-30 10:15,1.08711,1.08786,1.08693,1.08784,2482 +2020-04-30 10:30,1.08783,1.08809,1.08733,1.08804,2530 +2020-04-30 10:45,1.08804,1.08817,1.08737,1.08754,2607 +2020-04-30 11:00,1.08755,1.08779,1.08698,1.08752,2914 +2020-04-30 11:15,1.08752,1.08782,1.08731,1.0877,2495 +2020-04-30 11:30,1.0877,1.08839,1.0873,1.08816,2965 +2020-04-30 11:45,1.08815,1.0886,1.08641,1.08675,6178 +2020-04-30 12:00,1.08676,1.08757,1.08652,1.08752,5035 +2020-04-30 12:15,1.08751,1.08756,1.08636,1.08662,3766 +2020-04-30 12:30,1.08663,1.08712,1.0862,1.08674,5335 +2020-04-30 12:45,1.08673,1.0881,1.08672,1.0876,6045 +2020-04-30 13:00,1.08759,1.08765,1.08349,1.08393,9403 +2020-04-30 13:15,1.08392,1.08534,1.0833,1.08498,6704 +2020-04-30 13:30,1.08497,1.08526,1.08416,1.08489,5344 +2020-04-30 13:45,1.08489,1.08646,1.08424,1.0859,5648 +2020-04-30 14:00,1.08588,1.08673,1.08489,1.08626,6753 +2020-04-30 14:15,1.08625,1.08946,1.08618,1.08929,6119 +2020-04-30 14:30,1.08929,1.08999,1.08884,1.08944,7244 +2020-04-30 14:45,1.08944,1.09617,1.08936,1.09536,9876 +2020-04-30 15:00,1.09535,1.09726,1.09357,1.09432,17128 +2020-04-30 15:15,1.09433,1.09469,1.09386,1.09444,4929 +2020-04-30 15:30,1.09444,1.09605,1.09418,1.09431,4919 +2020-04-30 15:45,1.0943,1.09437,1.09288,1.09333,5134 +2020-04-30 16:00,1.09334,1.09383,1.09225,1.09274,4886 +2020-04-30 16:15,1.09275,1.09376,1.09244,1.09373,4161 +2020-04-30 16:30,1.09373,1.09373,1.09207,1.09266,2844 +2020-04-30 16:45,1.09265,1.09376,1.09265,1.09371,3813 +2020-04-30 17:00,1.0937,1.09473,1.09359,1.09398,3180 +2020-04-30 17:15,1.09398,1.09479,1.0937,1.09454,2986 +2020-04-30 17:30,1.09453,1.09521,1.09403,1.09506,2799 +2020-04-30 17:45,1.09507,1.09514,1.09401,1.09471,2438 +2020-04-30 18:00,1.09472,1.09516,1.09432,1.09516,2587 +2020-04-30 18:15,1.09515,1.09539,1.09489,1.09506,2426 +2020-04-30 18:30,1.09506,1.09573,1.09473,1.09541,3271 +2020-04-30 18:45,1.09542,1.09553,1.09497,1.0952,3162 +2020-04-30 19:00,1.09518,1.09636,1.09514,1.0959,3066 +2020-04-30 19:15,1.09589,1.09598,1.09543,1.09558,2538 +2020-04-30 19:30,1.09556,1.09587,1.09537,1.09581,2195 +2020-04-30 19:45,1.09581,1.09595,1.09537,1.09561,3044 +2020-04-30 20:00,1.09561,1.09589,1.09524,1.09531,1460 +2020-04-30 20:15,1.09534,1.0957,1.09524,1.09532,651 +2020-04-30 20:30,1.0953,1.09542,1.09515,1.0952,530 +2020-04-30 20:45,1.09519,1.0955,1.0951,1.09539,920 +2020-04-30 21:00,1.09539,1.09547,1.09522,1.09531,572 +2020-04-30 21:15,1.0953,1.09542,1.09489,1.095,761 +2020-04-30 21:30,1.09496,1.09536,1.09489,1.09526,355 +2020-04-30 21:45,1.09526,1.09535,1.09497,1.09509,796 +2020-04-30 22:00,1.09509,1.09517,1.09445,1.09459,1390 +2020-04-30 22:15,1.09459,1.0947,1.09432,1.09448,1095 +2020-04-30 22:30,1.09447,1.0947,1.09437,1.09456,899 +2020-04-30 22:45,1.09459,1.09473,1.09421,1.09429,943 +2020-04-30 23:00,1.09429,1.09474,1.09427,1.09439,975 +2020-04-30 23:15,1.09438,1.0944,1.0941,1.09415,1032 +2020-04-30 23:30,1.09415,1.09438,1.09409,1.09424,724 +2020-04-30 23:45,1.09424,1.0945,1.09419,1.09448,790 +2020-05-01 00:00,1.09447,1.09452,1.09359,1.09386,2117 +2020-05-01 00:15,1.09385,1.09401,1.09355,1.09364,1464 +2020-05-01 00:30,1.09365,1.09371,1.09344,1.09352,1176 +2020-05-01 00:45,1.09351,1.09554,1.09345,1.09456,2121 +2020-05-01 01:00,1.09457,1.09467,1.09388,1.09399,1869 +2020-05-01 01:15,1.094,1.09435,1.09387,1.09425,1283 +2020-05-01 01:30,1.09426,1.09426,1.09366,1.0939,1749 +2020-05-01 01:45,1.09388,1.09424,1.09373,1.09419,1758 +2020-05-01 02:00,1.09418,1.09442,1.09404,1.0942,1298 +2020-05-01 02:15,1.0942,1.09432,1.0938,1.09394,1270 +2020-05-01 02:30,1.09395,1.09437,1.09389,1.09433,990 +2020-05-01 02:45,1.09432,1.09462,1.0942,1.09446,1244 +2020-05-01 03:00,1.09446,1.09447,1.09404,1.09446,806 +2020-05-01 03:15,1.09446,1.09452,1.09421,1.0943,1027 +2020-05-01 03:30,1.09428,1.09462,1.09427,1.09441,962 +2020-05-01 03:45,1.0944,1.09461,1.09437,1.0945,874 +2020-05-01 04:00,1.0945,1.09456,1.09445,1.09448,805 +2020-05-01 04:15,1.09448,1.09462,1.09441,1.09458,515 +2020-05-01 04:30,1.09458,1.09473,1.09447,1.09453,837 +2020-05-01 04:45,1.09452,1.09496,1.09447,1.09491,1064 +2020-05-01 05:00,1.0949,1.09491,1.09439,1.09453,1121 +2020-05-01 05:15,1.09453,1.09552,1.09445,1.09495,2005 +2020-05-01 05:30,1.09496,1.09499,1.09458,1.09467,1270 +2020-05-01 05:45,1.09466,1.09526,1.09461,1.09519,1904 +2020-05-01 06:00,1.0952,1.09625,1.09518,1.09601,3605 +2020-05-01 06:15,1.09601,1.09645,1.09595,1.09615,1946 +2020-05-01 06:30,1.09615,1.0964,1.09569,1.09569,1084 +2020-05-01 06:45,1.09568,1.09601,1.0953,1.09599,2132 +2020-05-01 07:00,1.09599,1.09697,1.09579,1.09588,3074 +2020-05-01 07:15,1.09589,1.0962,1.09524,1.0954,3163 +2020-05-01 07:30,1.09541,1.09568,1.09488,1.09551,3391 +2020-05-01 07:45,1.0955,1.09665,1.09545,1.09646,2648 +2020-05-01 08:00,1.09645,1.09685,1.096,1.09643,3485 +2020-05-01 08:15,1.09643,1.09795,1.09586,1.09671,4616 +2020-05-01 08:30,1.09671,1.09726,1.09648,1.09721,3049 +2020-05-01 08:45,1.09719,1.0977,1.09689,1.09763,2542 +2020-05-01 09:00,1.09763,1.09792,1.0974,1.09777,2254 +2020-05-01 09:15,1.09776,1.09874,1.09739,1.09867,2003 +2020-05-01 09:30,1.09865,1.09865,1.0978,1.09831,2673 +2020-05-01 09:45,1.09831,1.0984,1.09789,1.09817,2008 +2020-05-01 10:00,1.09817,1.09862,1.09815,1.09845,2116 +2020-05-01 10:15,1.09845,1.09896,1.09831,1.09853,1863 +2020-05-01 10:30,1.09854,1.09899,1.09779,1.09796,2415 +2020-05-01 10:45,1.09795,1.09837,1.09761,1.09812,2079 +2020-05-01 11:00,1.09813,1.09815,1.09755,1.09797,1662 +2020-05-01 11:15,1.09797,1.09836,1.09757,1.09791,2123 +2020-05-01 11:30,1.0979,1.098,1.09743,1.09784,1961 +2020-05-01 11:45,1.09784,1.09793,1.09707,1.09729,2671 +2020-05-01 12:00,1.09731,1.09826,1.09731,1.09797,2840 +2020-05-01 12:15,1.09796,1.09861,1.09716,1.09831,3630 +2020-05-01 12:30,1.09831,1.09863,1.09784,1.09807,2545 +2020-05-01 12:45,1.09806,1.09818,1.09763,1.09805,2419 +2020-05-01 13:00,1.09806,1.09818,1.09755,1.09815,2467 +2020-05-01 13:15,1.09816,1.09847,1.09764,1.09792,2823 +2020-05-01 13:30,1.09791,1.09815,1.09742,1.09796,2365 +2020-05-01 13:45,1.09799,1.09814,1.09737,1.0975,3247 +2020-05-01 14:00,1.09752,1.09873,1.09717,1.09868,4269 +2020-05-01 14:15,1.09869,1.09991,1.0986,1.09975,3543 +2020-05-01 14:30,1.09976,1.10187,1.09932,1.10046,6480 +2020-05-01 14:45,1.10047,1.10121,1.09987,1.10075,5977 +2020-05-01 15:00,1.10076,1.1009,1.09985,1.10021,4929 +2020-05-01 15:15,1.1002,1.10163,1.1,1.10147,3244 +2020-05-01 15:30,1.10146,1.10146,1.09999,1.10015,2734 +2020-05-01 15:45,1.10014,1.10015,1.09949,1.09976,3089 +2020-05-01 16:00,1.09977,1.09994,1.09926,1.09972,3141 +2020-05-01 16:15,1.09972,1.09988,1.09899,1.0992,2707 +2020-05-01 16:30,1.09919,1.09935,1.09873,1.09876,2610 +2020-05-01 16:45,1.09876,1.09912,1.09851,1.09875,2925 +2020-05-01 17:00,1.09874,1.09887,1.0984,1.09847,1519 +2020-05-01 17:15,1.09847,1.09875,1.09815,1.09819,1772 +2020-05-01 17:30,1.0982,1.09867,1.09784,1.09857,2382 +2020-05-01 17:45,1.09854,1.09854,1.09805,1.09816,2089 +2020-05-01 18:00,1.09815,1.09818,1.09774,1.09792,2008 +2020-05-01 18:15,1.09791,1.09804,1.09773,1.09793,1815 +2020-05-01 18:30,1.09792,1.09798,1.09762,1.09767,2459 +2020-05-01 18:45,1.09765,1.09797,1.09756,1.09766,2450 +2020-05-01 19:00,1.09765,1.09773,1.09751,1.09761,867 +2020-05-01 19:15,1.0976,1.09805,1.09746,1.09794,1284 +2020-05-01 19:30,1.09793,1.09803,1.09766,1.0978,1515 +2020-05-01 19:45,1.09781,1.09814,1.09759,1.09793,1786 +2020-05-01 20:00,1.09791,1.09801,1.09745,1.0975,908 +2020-05-01 20:15,1.09748,1.09768,1.09732,1.09753,666 +2020-05-01 20:30,1.09753,1.09806,1.09743,1.09798,390 +2020-05-01 20:45,1.09798,1.09822,1.09756,1.09777,984 +2020-05-03 21:00,1.09676,1.0973,1.09628,1.097,45 +2020-05-03 21:15,1.09709,1.09726,1.09688,1.09694,29 +2020-05-03 21:30,1.0969,1.09723,1.09676,1.09696,14 +2020-05-03 21:45,1.097,1.09708,1.09696,1.09704,34 +2020-05-03 22:00,1.09705,1.09736,1.09675,1.09676,1067 +2020-05-03 22:15,1.09677,1.09677,1.09599,1.09603,1190 +2020-05-03 22:30,1.09602,1.09612,1.09559,1.09585,1693 +2020-05-03 22:45,1.09584,1.09586,1.09529,1.09563,1432 +2020-05-03 23:00,1.09564,1.09611,1.09534,1.09603,1682 +2020-05-03 23:15,1.09603,1.09617,1.09579,1.09614,935 +2020-05-03 23:30,1.09612,1.09624,1.09603,1.09618,1064 +2020-05-03 23:45,1.09618,1.0962,1.09582,1.09608,1468 +2020-05-04 00:00,1.09608,1.09609,1.09513,1.09536,1940 +2020-05-04 00:15,1.09537,1.09555,1.09508,1.09541,1610 +2020-05-04 00:30,1.09539,1.09557,1.09522,1.09537,1410 +2020-05-04 00:45,1.09537,1.09539,1.09462,1.09472,1407 +2020-05-04 01:00,1.09471,1.09551,1.09468,1.09478,1607 +2020-05-04 01:15,1.09476,1.09538,1.09474,1.09523,1542 +2020-05-04 01:30,1.09524,1.09548,1.09505,1.09538,1475 +2020-05-04 01:45,1.09537,1.09538,1.09494,1.09501,1382 +2020-05-04 02:00,1.09501,1.0952,1.09482,1.09513,1027 +2020-05-04 02:15,1.09513,1.09519,1.0945,1.09476,1734 +2020-05-04 02:30,1.09475,1.09495,1.09467,1.09487,938 +2020-05-04 02:45,1.09487,1.09487,1.09434,1.09443,1491 +2020-05-04 03:00,1.09443,1.09469,1.09441,1.09447,1576 +2020-05-04 03:15,1.09447,1.09463,1.09433,1.09436,1052 +2020-05-04 03:30,1.09435,1.09441,1.09406,1.09425,1135 +2020-05-04 03:45,1.09427,1.09446,1.09417,1.09425,1121 +2020-05-04 04:00,1.09424,1.09428,1.09383,1.09395,1020 +2020-05-04 04:15,1.09394,1.09404,1.09381,1.09381,701 +2020-05-04 04:30,1.0938,1.09385,1.0935,1.09359,1336 +2020-05-04 04:45,1.09358,1.09392,1.09349,1.09362,1468 +2020-05-04 05:00,1.09362,1.0939,1.09355,1.09379,1266 +2020-05-04 05:15,1.09379,1.09401,1.09338,1.09352,1411 +2020-05-04 05:30,1.09352,1.0936,1.09309,1.09348,1626 +2020-05-04 05:45,1.09347,1.09347,1.09269,1.09284,1889 +2020-05-04 06:00,1.09285,1.09334,1.09249,1.09331,3966 +2020-05-04 06:15,1.09332,1.09383,1.09294,1.0936,2843 +2020-05-04 06:30,1.09359,1.09456,1.09336,1.09428,3122 +2020-05-04 06:45,1.09427,1.09472,1.09409,1.09413,2709 +2020-05-04 07:00,1.09411,1.09411,1.09327,1.0939,4950 +2020-05-04 07:15,1.09392,1.09455,1.09322,1.09346,3744 +2020-05-04 07:30,1.09346,1.09416,1.09265,1.09291,3620 +2020-05-04 07:45,1.09291,1.09378,1.09256,1.09365,4598 +2020-05-04 08:00,1.09369,1.09373,1.09235,1.09259,4546 +2020-05-04 08:15,1.09259,1.09364,1.09244,1.09355,4094 +2020-05-04 08:30,1.09353,1.09428,1.09341,1.09416,3161 +2020-05-04 08:45,1.09416,1.09489,1.09379,1.09447,3498 +2020-05-04 09:00,1.0945,1.09452,1.09333,1.09377,3251 +2020-05-04 09:15,1.09377,1.09378,1.0927,1.09301,3284 +2020-05-04 09:30,1.09298,1.09387,1.09289,1.09383,3362 +2020-05-04 09:45,1.09384,1.09432,1.09373,1.09389,3194 +2020-05-04 10:00,1.0939,1.09447,1.09353,1.09427,3210 +2020-05-04 10:15,1.09427,1.09436,1.09334,1.09402,3370 +2020-05-04 10:30,1.09402,1.09426,1.09386,1.09392,2904 +2020-05-04 10:45,1.09393,1.09393,1.09307,1.09315,2734 +2020-05-04 11:00,1.09314,1.09378,1.09272,1.09276,2831 +2020-05-04 11:15,1.09276,1.09379,1.09253,1.09317,3156 +2020-05-04 11:30,1.09316,1.09377,1.09292,1.09352,2930 +2020-05-04 11:45,1.09352,1.09413,1.09342,1.09392,3541 +2020-05-04 12:00,1.09393,1.09434,1.09359,1.09416,2919 +2020-05-04 12:15,1.09418,1.09435,1.09363,1.09386,3932 +2020-05-04 12:30,1.09387,1.09397,1.09318,1.09324,3189 +2020-05-04 12:45,1.09324,1.09353,1.09306,1.09347,2605 +2020-05-04 13:00,1.09348,1.09379,1.09326,1.09369,3001 +2020-05-04 13:15,1.09369,1.09373,1.09219,1.09257,3170 +2020-05-04 13:30,1.09258,1.09296,1.09221,1.09296,4725 +2020-05-04 13:45,1.09295,1.0932,1.09244,1.09263,4434 +2020-05-04 14:00,1.09262,1.09355,1.09109,1.09109,5064 +2020-05-04 14:15,1.09109,1.09178,1.09066,1.09085,4938 +2020-05-04 14:30,1.09085,1.09137,1.09055,1.09072,4080 +2020-05-04 14:45,1.09072,1.09163,1.09037,1.09163,5507 +2020-05-04 15:00,1.09159,1.09175,1.09004,1.09046,4260 +2020-05-04 15:15,1.09045,1.09131,1.0902,1.09128,3168 +2020-05-04 15:30,1.09128,1.09167,1.09103,1.09125,2711 +2020-05-04 15:45,1.09127,1.0913,1.09056,1.09102,2156 +2020-05-04 16:00,1.09103,1.0911,1.09019,1.09043,2658 +2020-05-04 16:15,1.09044,1.09069,1.08971,1.08988,2359 +2020-05-04 16:30,1.08988,1.09021,1.08957,1.0901,2514 +2020-05-04 16:45,1.0901,1.09034,1.08995,1.09001,2976 +2020-05-04 17:00,1.09002,1.09014,1.08968,1.09005,2325 +2020-05-04 17:15,1.09007,1.09033,1.08975,1.09021,1955 +2020-05-04 17:30,1.09021,1.09064,1.08976,1.08987,1497 +2020-05-04 17:45,1.08992,1.09035,1.08985,1.0902,1621 +2020-05-04 18:00,1.0902,1.0906,1.09007,1.09012,2676 +2020-05-04 18:15,1.09011,1.09025,1.08996,1.0902,825 +2020-05-04 18:30,1.09021,1.09039,1.09017,1.0903,1143 +2020-05-04 18:45,1.0903,1.0909,1.09018,1.09069,1509 +2020-05-04 19:00,1.09068,1.09081,1.0905,1.09075,1175 +2020-05-04 19:15,1.09076,1.09095,1.09058,1.09085,1397 +2020-05-04 19:30,1.09083,1.09092,1.09054,1.09059,942 +2020-05-04 19:45,1.09058,1.09062,1.08956,1.08972,2384 +2020-05-04 20:00,1.08975,1.08983,1.08959,1.08981,824 +2020-05-04 20:15,1.08981,1.09048,1.08981,1.08994,875 +2020-05-04 20:30,1.08994,1.08999,1.08972,1.08993,440 +2020-05-04 20:45,1.08993,1.09067,1.08988,1.09058,352 +2020-05-04 21:00,1.09063,1.09067,1.0903,1.09049,477 +2020-05-04 21:15,1.0905,1.09058,1.09011,1.09019,437 +2020-05-04 21:30,1.09018,1.0903,1.09011,1.09014,197 +2020-05-04 21:45,1.09013,1.0902,1.09007,1.09007,372 +2020-05-04 22:00,1.09007,1.0904,1.09003,1.09011,959 +2020-05-04 22:15,1.09011,1.09037,1.0901,1.0903,468 +2020-05-04 22:30,1.09031,1.09046,1.09019,1.09038,632 +2020-05-04 22:45,1.09038,1.09044,1.09023,1.0904,623 +2020-05-04 23:00,1.0904,1.0906,1.09036,1.09044,598 +2020-05-04 23:15,1.09045,1.09052,1.09039,1.09039,435 +2020-05-04 23:30,1.09039,1.09041,1.09021,1.09026,412 +2020-05-04 23:45,1.09024,1.09041,1.09024,1.0903,437 +2020-05-05 00:00,1.09031,1.09069,1.0903,1.09058,860 +2020-05-05 00:15,1.09059,1.0909,1.09059,1.09088,522 +2020-05-05 00:30,1.09088,1.09131,1.09082,1.09126,1119 +2020-05-05 00:45,1.09126,1.09126,1.09103,1.09105,858 +2020-05-05 01:00,1.09104,1.09151,1.09104,1.09122,949 +2020-05-05 01:15,1.09123,1.09142,1.09118,1.0912,1039 +2020-05-05 01:30,1.09121,1.09159,1.09114,1.09119,1038 +2020-05-05 01:45,1.09122,1.09129,1.09085,1.09089,785 +2020-05-05 02:00,1.0909,1.09115,1.09076,1.09113,764 +2020-05-05 02:15,1.09114,1.09143,1.09113,1.09129,666 +2020-05-05 02:30,1.09131,1.09148,1.09108,1.09146,743 +2020-05-05 02:45,1.09145,1.0915,1.09074,1.09075,950 +2020-05-05 03:00,1.09076,1.09092,1.09074,1.09081,643 +2020-05-05 03:15,1.09082,1.09085,1.09056,1.09071,686 +2020-05-05 03:30,1.09072,1.09077,1.09059,1.09068,651 +2020-05-05 03:45,1.09069,1.09071,1.09017,1.09036,925 +2020-05-05 04:00,1.09036,1.09043,1.09026,1.09042,515 +2020-05-05 04:15,1.09042,1.09042,1.09012,1.09025,723 +2020-05-05 04:30,1.09026,1.09033,1.08994,1.0903,807 +2020-05-05 04:45,1.09031,1.09076,1.09014,1.09065,889 +2020-05-05 05:00,1.09066,1.09104,1.09055,1.09067,1244 +2020-05-05 05:15,1.09067,1.09088,1.09062,1.09084,623 +2020-05-05 05:30,1.09085,1.09092,1.09052,1.09084,972 +2020-05-05 05:45,1.09085,1.09086,1.09056,1.09076,1111 +2020-05-05 06:00,1.09076,1.09081,1.09027,1.09081,1971 +2020-05-05 06:15,1.09081,1.09149,1.09066,1.09111,2210 +2020-05-05 06:30,1.09113,1.09122,1.09034,1.09081,2130 +2020-05-05 06:45,1.09082,1.09095,1.09008,1.0903,2987 +2020-05-05 07:00,1.09029,1.09044,1.0885,1.08926,5001 +2020-05-05 07:15,1.08925,1.08937,1.0885,1.08884,3414 +2020-05-05 07:30,1.08884,1.08905,1.08859,1.0889,2935 +2020-05-05 07:45,1.08889,1.09005,1.0887,1.08985,3640 +2020-05-05 08:00,1.08984,1.09258,1.08936,1.0915,4918 +2020-05-05 08:15,1.09148,1.09153,1.08984,1.09066,6996 +2020-05-05 08:30,1.09066,1.09093,1.086,1.08642,8928 +2020-05-05 08:45,1.08642,1.08648,1.08416,1.08456,7806 +2020-05-05 09:00,1.08455,1.08515,1.08258,1.08288,8710 +2020-05-05 09:15,1.08286,1.08422,1.08277,1.08305,6223 +2020-05-05 09:30,1.08306,1.08394,1.0828,1.08383,3917 +2020-05-05 09:45,1.08382,1.08523,1.08361,1.08503,3133 +2020-05-05 10:00,1.08502,1.08567,1.08457,1.08513,3200 +2020-05-05 10:15,1.08514,1.08556,1.08457,1.08499,2496 +2020-05-05 10:30,1.085,1.08547,1.08481,1.085,2362 +2020-05-05 10:45,1.085,1.08501,1.08328,1.08378,4420 +2020-05-05 11:00,1.08378,1.08443,1.08336,1.08431,3251 +2020-05-05 11:15,1.08429,1.08429,1.08306,1.08344,4109 +2020-05-05 11:30,1.08345,1.08401,1.08328,1.08367,2970 +2020-05-05 11:45,1.08367,1.08392,1.08304,1.08318,4106 +2020-05-05 12:00,1.08319,1.08452,1.08306,1.0843,3919 +2020-05-05 12:15,1.08432,1.08557,1.08402,1.08503,5127 +2020-05-05 12:30,1.08502,1.08542,1.08425,1.08496,3269 +2020-05-05 12:45,1.08496,1.085,1.08413,1.08416,4536 +2020-05-05 13:00,1.08415,1.08647,1.08408,1.08627,5458 +2020-05-05 13:15,1.08626,1.08694,1.08605,1.08657,5137 +2020-05-05 13:30,1.08658,1.08794,1.08645,1.08775,5897 +2020-05-05 13:45,1.08774,1.08872,1.08755,1.08784,5713 +2020-05-05 14:00,1.08787,1.0884,1.08653,1.0866,5563 +2020-05-05 14:15,1.08664,1.08684,1.08578,1.08578,4105 +2020-05-05 14:30,1.08579,1.08613,1.08561,1.08587,3938 +2020-05-05 14:45,1.08586,1.08623,1.08389,1.08403,5264 +2020-05-05 15:00,1.084,1.08481,1.08398,1.0843,4269 +2020-05-05 15:15,1.08431,1.08434,1.08363,1.08402,3669 +2020-05-05 15:30,1.08403,1.08434,1.08389,1.08409,3156 +2020-05-05 15:45,1.0841,1.08481,1.08374,1.08437,2786 +2020-05-05 16:00,1.08436,1.08465,1.08396,1.08427,2269 +2020-05-05 16:15,1.08428,1.08436,1.0837,1.08379,1842 +2020-05-05 16:30,1.08381,1.0839,1.08339,1.08367,1783 +2020-05-05 16:45,1.08368,1.08437,1.08365,1.08401,2143 +2020-05-05 17:00,1.08405,1.0843,1.08395,1.08399,2090 +2020-05-05 17:15,1.08402,1.08417,1.08386,1.08411,1173 +2020-05-05 17:30,1.08413,1.08422,1.0836,1.08422,1504 +2020-05-05 17:45,1.08422,1.08446,1.08402,1.08445,1923 +2020-05-05 18:00,1.08443,1.08568,1.08429,1.08544,1824 +2020-05-05 18:15,1.08543,1.08577,1.0853,1.08556,1989 +2020-05-05 18:30,1.08558,1.08571,1.08531,1.08539,1407 +2020-05-05 18:45,1.0854,1.08549,1.08504,1.0852,1895 +2020-05-05 19:00,1.08519,1.08528,1.08476,1.08477,1416 +2020-05-05 19:15,1.08477,1.08482,1.08436,1.08451,2029 +2020-05-05 19:30,1.0845,1.08472,1.08449,1.08466,1930 +2020-05-05 19:45,1.08465,1.08503,1.08449,1.08465,2088 +2020-05-05 20:00,1.08465,1.08477,1.08423,1.08426,999 +2020-05-05 20:15,1.08427,1.08438,1.08412,1.08421,486 +2020-05-05 20:30,1.08419,1.08422,1.08357,1.0836,568 +2020-05-05 20:45,1.08359,1.08377,1.08339,1.08377,576 +2020-05-05 21:00,1.08377,1.08437,1.08377,1.08416,592 +2020-05-05 21:15,1.08416,1.08433,1.08392,1.08429,667 +2020-05-05 21:30,1.08433,1.08456,1.08429,1.08445,378 +2020-05-05 21:45,1.08445,1.08451,1.08418,1.08418,1238 +2020-05-05 22:00,1.08419,1.08419,1.08351,1.08404,1354 +2020-05-05 22:15,1.08404,1.0841,1.08382,1.08405,1100 +2020-05-05 22:30,1.08405,1.08431,1.08384,1.08426,1356 +2020-05-05 22:45,1.08425,1.08434,1.08396,1.08403,963 +2020-05-05 23:00,1.08406,1.0841,1.08369,1.08376,892 +2020-05-05 23:15,1.08377,1.08386,1.08356,1.08357,574 +2020-05-05 23:30,1.08359,1.0839,1.08352,1.08384,704 +2020-05-05 23:45,1.08387,1.0839,1.0837,1.08384,948 +2020-05-06 00:00,1.08385,1.08438,1.08376,1.08381,1973 +2020-05-06 00:15,1.08383,1.0841,1.08345,1.08398,1546 +2020-05-06 00:30,1.08399,1.08423,1.08367,1.08406,1678 +2020-05-06 00:45,1.08407,1.08422,1.08361,1.0837,1829 +2020-05-06 01:00,1.08371,1.08394,1.08322,1.08329,2357 +2020-05-06 01:15,1.08329,1.08362,1.08328,1.08355,1327 +2020-05-06 01:30,1.08355,1.08407,1.08355,1.08391,1827 +2020-05-06 01:45,1.08392,1.08407,1.08375,1.08383,1602 +2020-05-06 02:00,1.08382,1.08398,1.0835,1.08391,1800 +2020-05-06 02:15,1.0839,1.08421,1.08385,1.08403,1200 +2020-05-06 02:30,1.08403,1.08408,1.0838,1.08396,1038 +2020-05-06 02:45,1.08397,1.08408,1.08369,1.08399,923 +2020-05-06 03:00,1.084,1.08406,1.0838,1.08397,1229 +2020-05-06 03:15,1.08398,1.08408,1.08378,1.08388,1031 +2020-05-06 03:30,1.08388,1.08392,1.08336,1.08337,1491 +2020-05-06 03:45,1.08338,1.08347,1.08321,1.08346,1121 +2020-05-06 04:00,1.08346,1.08358,1.08336,1.08355,997 +2020-05-06 04:15,1.08355,1.0838,1.08348,1.08376,572 +2020-05-06 04:30,1.08375,1.0838,1.08352,1.08377,518 +2020-05-06 04:45,1.08377,1.08408,1.08366,1.08407,1220 +2020-05-06 05:00,1.08406,1.0841,1.08355,1.08364,1207 +2020-05-06 05:15,1.08365,1.08384,1.08361,1.08371,911 +2020-05-06 05:30,1.08371,1.08385,1.08331,1.08353,1252 +2020-05-06 05:45,1.08354,1.08402,1.08354,1.08381,1460 +2020-05-06 06:00,1.08381,1.08389,1.08224,1.0825,3339 +2020-05-06 06:15,1.08249,1.08281,1.08162,1.08208,3223 +2020-05-06 06:30,1.08208,1.08288,1.08176,1.08243,3325 +2020-05-06 06:45,1.08241,1.08334,1.08241,1.08328,2990 +2020-05-06 07:00,1.0833,1.08341,1.08207,1.08247,4603 +2020-05-06 07:15,1.08247,1.08362,1.0824,1.08332,3673 +2020-05-06 07:30,1.08331,1.08331,1.08265,1.08296,2950 +2020-05-06 07:45,1.08295,1.08336,1.08233,1.08235,3092 +2020-05-06 08:00,1.08234,1.08247,1.08112,1.08149,3616 +2020-05-06 08:15,1.08149,1.08169,1.07915,1.07942,5378 +2020-05-06 08:30,1.07941,1.08017,1.07915,1.0798,4683 +2020-05-06 08:45,1.0798,1.08035,1.07943,1.08019,2775 +2020-05-06 09:00,1.08022,1.08032,1.07941,1.07975,3489 +2020-05-06 09:15,1.07976,1.0799,1.07904,1.07907,3193 +2020-05-06 09:30,1.07905,1.07957,1.07829,1.07865,4188 +2020-05-06 09:45,1.07866,1.07948,1.07846,1.07863,3490 +2020-05-06 10:00,1.07864,1.07921,1.07819,1.07905,3451 +2020-05-06 10:15,1.07905,1.07941,1.07883,1.07935,2535 +2020-05-06 10:30,1.07934,1.07995,1.07931,1.07995,2644 +2020-05-06 10:45,1.07995,1.08066,1.0799,1.08029,2768 +2020-05-06 11:00,1.08028,1.08089,1.08007,1.08089,2095 +2020-05-06 11:15,1.08088,1.08091,1.08041,1.08044,2833 +2020-05-06 11:30,1.08041,1.08138,1.08041,1.08128,2302 +2020-05-06 11:45,1.08127,1.08157,1.08105,1.08126,2757 +2020-05-06 12:00,1.08118,1.08135,1.0804,1.08064,3327 +2020-05-06 12:15,1.08063,1.08095,1.0804,1.08045,2814 +2020-05-06 12:30,1.08045,1.08144,1.08022,1.08143,3277 +2020-05-06 12:45,1.08143,1.08195,1.08106,1.08124,20042 +2020-05-06 13:00,1.08126,1.08139,1.08062,1.08101,3088 +2020-05-06 13:15,1.08102,1.08195,1.08089,1.08168,5074 +2020-05-06 13:30,1.08169,1.08267,1.08155,1.08261,11948 +2020-05-06 13:45,1.08261,1.08262,1.08064,1.0812,5409 +2020-05-06 14:00,1.0812,1.08154,1.07993,1.07998,4185 +2020-05-06 14:15,1.07999,1.08064,1.07958,1.07961,3510 +2020-05-06 14:30,1.07961,1.0801,1.07907,1.07923,3900 +2020-05-06 14:45,1.07923,1.08031,1.07899,1.07967,5146 +2020-05-06 15:00,1.07968,1.08077,1.07965,1.08053,3586 +2020-05-06 15:15,1.08053,1.08072,1.07983,1.08026,3094 +2020-05-06 15:30,1.08025,1.08034,1.07967,1.07995,2537 +2020-05-06 15:45,1.07995,1.08059,1.07977,1.08057,6068 +2020-05-06 16:00,1.08058,1.08131,1.08058,1.08109,2908 +2020-05-06 16:15,1.0811,1.08169,1.08106,1.08163,2967 +2020-05-06 16:30,1.08164,1.08169,1.08109,1.08113,1986 +2020-05-06 16:45,1.08115,1.08134,1.08062,1.08074,2208 +2020-05-06 17:00,1.08075,1.08113,1.08058,1.08075,2016 +2020-05-06 17:15,1.08076,1.08129,1.08049,1.08116,1906 +2020-05-06 17:30,1.08115,1.08131,1.08098,1.08128,1740 +2020-05-06 17:45,1.08129,1.0813,1.08086,1.08089,1372 +2020-05-06 18:00,1.0809,1.08112,1.08054,1.08085,2384 +2020-05-06 18:15,1.08085,1.08099,1.08059,1.08066,2451 +2020-05-06 18:30,1.08065,1.08092,1.08059,1.08074,1539 +2020-05-06 18:45,1.08074,1.08074,1.08032,1.08032,1359 +2020-05-06 19:00,1.08032,1.08056,1.08011,1.08029,1477 +2020-05-06 19:15,1.08029,1.08035,1.07969,1.08011,1878 +2020-05-06 19:30,1.08011,1.08017,1.0797,1.07971,1571 +2020-05-06 19:45,1.07971,1.07993,1.07934,1.07936,1954 +2020-05-06 20:00,1.07937,1.07955,1.07906,1.07918,839 +2020-05-06 20:15,1.07919,1.07952,1.07918,1.07932,475 +2020-05-06 20:30,1.07932,1.07949,1.07907,1.07949,558 +2020-05-06 20:45,1.0795,1.07965,1.0793,1.0793,462 +2020-05-06 21:00,1.07934,1.07974,1.07911,1.0795,568 +2020-05-06 21:15,1.0795,1.0796,1.0792,1.07954,589 +2020-05-06 21:30,1.07954,1.07958,1.07929,1.07935,291 +2020-05-06 21:45,1.07934,1.07969,1.07931,1.07948,414 +2020-05-06 22:00,1.07948,1.07971,1.0794,1.0796,561 +2020-05-06 22:15,1.07959,1.07968,1.07943,1.07955,767 +2020-05-06 22:30,1.07955,1.07992,1.07954,1.0798,618 +2020-05-06 22:45,1.07981,1.08,1.07975,1.07981,510 +2020-05-06 23:00,1.07982,1.07983,1.07932,1.07935,1209 +2020-05-06 23:15,1.07935,1.07945,1.0792,1.07938,1047 +2020-05-06 23:30,1.07938,1.07983,1.07938,1.07976,1135 +2020-05-06 23:45,1.07977,1.07998,1.07975,1.0798,871 +2020-05-07 00:00,1.0798,1.07999,1.07957,1.07996,1934 +2020-05-07 00:15,1.07995,1.08024,1.07924,1.07927,1846 +2020-05-07 00:30,1.07927,1.0797,1.07926,1.07964,1120 +2020-05-07 00:45,1.07965,1.07975,1.0792,1.07936,1572 +2020-05-07 01:00,1.07939,1.07956,1.07933,1.07954,1121 +2020-05-07 01:15,1.07953,1.07981,1.0795,1.07964,1370 +2020-05-07 01:30,1.07965,1.07987,1.07965,1.07986,1054 +2020-05-07 01:45,1.07986,1.08009,1.07973,1.08001,1669 +2020-05-07 02:00,1.08002,1.08023,1.07986,1.08019,1254 +2020-05-07 02:15,1.08017,1.08027,1.08004,1.08016,960 +2020-05-07 02:30,1.08016,1.08016,1.07981,1.07987,1219 +2020-05-07 02:45,1.07989,1.08008,1.07987,1.08,765 +2020-05-07 03:00,1.07999,1.08043,1.07995,1.08043,1311 +2020-05-07 03:15,1.08043,1.08045,1.08015,1.08025,1014 +2020-05-07 03:30,1.08026,1.08027,1.08009,1.08014,864 +2020-05-07 03:45,1.08013,1.08017,1.07999,1.08006,650 +2020-05-07 04:00,1.08006,1.08023,1.08003,1.08006,719 +2020-05-07 04:15,1.08007,1.0801,1.07982,1.07996,814 +2020-05-07 04:30,1.07997,1.07998,1.07971,1.07997,863 +2020-05-07 04:45,1.07998,1.08001,1.07975,1.0799,955 +2020-05-07 05:00,1.0799,1.07991,1.07948,1.0795,968 +2020-05-07 05:15,1.07949,1.07958,1.07926,1.07928,710 +2020-05-07 05:30,1.07929,1.07965,1.07919,1.07932,1088 +2020-05-07 05:45,1.07931,1.07938,1.07895,1.07923,2091 +2020-05-07 06:00,1.07923,1.08055,1.0791,1.08029,4427 +2020-05-07 06:15,1.08029,1.08042,1.07947,1.07982,2838 +2020-05-07 06:30,1.07981,1.07983,1.07861,1.07941,2890 +2020-05-07 06:45,1.0794,1.07981,1.07908,1.07921,3561 +2020-05-07 07:00,1.07922,1.08111,1.07891,1.08034,5368 +2020-05-07 07:15,1.08034,1.08163,1.08034,1.08065,5412 +2020-05-07 07:30,1.08066,1.08093,1.0803,1.08047,4111 +2020-05-07 07:45,1.08048,1.08068,1.07985,1.07989,3318 +2020-05-07 08:00,1.07988,1.07989,1.07914,1.07929,4475 +2020-05-07 08:15,1.0793,1.08014,1.07908,1.08011,2947 +2020-05-07 08:30,1.0801,1.08036,1.07957,1.07982,2609 +2020-05-07 08:45,1.07982,1.08029,1.0788,1.07929,2695 +2020-05-07 09:00,1.0793,1.07968,1.07795,1.07827,4150 +2020-05-07 09:15,1.07828,1.07879,1.07782,1.07841,4249 +2020-05-07 09:30,1.0784,1.07946,1.07838,1.07911,3652 +2020-05-07 09:45,1.07911,1.08001,1.07892,1.07987,3611 +2020-05-07 10:00,1.07988,1.08012,1.07946,1.07948,3664 +2020-05-07 10:15,1.07948,1.07992,1.07878,1.07878,3097 +2020-05-07 10:30,1.07879,1.07924,1.07818,1.07866,3405 +2020-05-07 10:45,1.07866,1.0797,1.07797,1.07918,3955 +2020-05-07 11:00,1.07919,1.07934,1.0785,1.07878,3554 +2020-05-07 11:15,1.07878,1.07937,1.07878,1.07912,3026 +2020-05-07 11:30,1.07913,1.07947,1.07854,1.07894,3343 +2020-05-07 11:45,1.07894,1.07945,1.07849,1.07904,3250 +2020-05-07 12:00,1.07906,1.07915,1.07823,1.07826,3459 +2020-05-07 12:15,1.07826,1.07858,1.07763,1.07815,4357 +2020-05-07 12:30,1.07814,1.07991,1.07788,1.07975,4464 +2020-05-07 12:45,1.07977,1.07995,1.07918,1.07944,2890 +2020-05-07 13:00,1.07944,1.07956,1.07882,1.07904,2650 +2020-05-07 13:15,1.07904,1.07965,1.07862,1.07888,2957 +2020-05-07 13:30,1.07888,1.07917,1.0783,1.0787,3761 +2020-05-07 13:45,1.07869,1.07875,1.07778,1.07784,4582 +2020-05-07 14:00,1.07783,1.0779,1.07665,1.07733,5567 +2020-05-07 14:15,1.07731,1.0793,1.07716,1.07805,4432 +2020-05-07 14:30,1.07805,1.07886,1.07783,1.07787,4091 +2020-05-07 14:45,1.0779,1.07795,1.07679,1.07766,5523 +2020-05-07 15:00,1.07767,1.07858,1.07761,1.07817,4051 +2020-05-07 15:15,1.07817,1.07892,1.07814,1.07883,2669 +2020-05-07 15:30,1.07886,1.07965,1.07853,1.07947,3008 +2020-05-07 15:45,1.07948,1.08154,1.07925,1.0814,4624 +2020-05-07 16:00,1.08141,1.08146,1.08027,1.0806,3285 +2020-05-07 16:15,1.0806,1.08094,1.08039,1.08081,3266 +2020-05-07 16:30,1.08082,1.08185,1.08082,1.08132,3804 +2020-05-07 16:45,1.08133,1.08173,1.08093,1.08125,3282 +2020-05-07 17:00,1.08125,1.08166,1.08122,1.0815,2390 +2020-05-07 17:15,1.0815,1.0821,1.08143,1.08189,2492 +2020-05-07 17:30,1.08189,1.08336,1.08182,1.08288,3519 +2020-05-07 17:45,1.08289,1.08323,1.08241,1.08307,2824 +2020-05-07 18:00,1.08308,1.08334,1.08252,1.08297,3057 +2020-05-07 18:15,1.08299,1.08305,1.08246,1.0826,2705 +2020-05-07 18:30,1.0826,1.08275,1.08234,1.08244,2878 +2020-05-07 18:45,1.08246,1.08283,1.08225,1.08258,2238 +2020-05-07 19:00,1.08258,1.08302,1.08227,1.08283,2581 +2020-05-07 19:15,1.08283,1.08321,1.08271,1.08321,2077 +2020-05-07 19:30,1.08321,1.08323,1.08278,1.08278,1657 +2020-05-07 19:45,1.08279,1.0831,1.08265,1.08291,1723 +2020-05-07 20:00,1.08294,1.0832,1.08281,1.08298,588 +2020-05-07 20:15,1.08297,1.08308,1.08287,1.08301,422 +2020-05-07 20:30,1.08301,1.08314,1.08296,1.08306,405 +2020-05-07 20:45,1.08306,1.08339,1.08296,1.08331,497 +2020-05-07 21:00,1.0834,1.08348,1.08313,1.08314,173 +2020-05-07 21:15,1.08316,1.08324,1.08305,1.08311,363 +2020-05-07 21:30,1.08309,1.0832,1.08306,1.0831,180 +2020-05-07 21:45,1.0831,1.08384,1.08224,1.08315,833 +2020-05-07 22:00,1.08315,1.0838,1.08301,1.08379,937 +2020-05-07 22:15,1.08379,1.08408,1.08363,1.08404,1249 +2020-05-07 22:30,1.08406,1.08407,1.0837,1.0837,685 +2020-05-07 22:45,1.0837,1.08379,1.08355,1.08376,610 +2020-05-07 23:00,1.08377,1.08402,1.08369,1.08385,990 +2020-05-07 23:15,1.08385,1.08385,1.08356,1.08368,1004 +2020-05-07 23:30,1.08369,1.08374,1.08334,1.08335,650 +2020-05-07 23:45,1.08335,1.08367,1.08321,1.08361,1088 +2020-05-08 00:00,1.0836,1.08386,1.08342,1.08357,1395 +2020-05-08 00:15,1.08358,1.08363,1.08334,1.08335,875 +2020-05-08 00:30,1.08335,1.0847,1.08335,1.08446,1932 +2020-05-08 00:45,1.08446,1.08495,1.08435,1.08478,2787 +2020-05-08 01:00,1.08479,1.08506,1.08446,1.0845,2932 +2020-05-08 01:15,1.0845,1.08457,1.08425,1.08439,1642 +2020-05-08 01:30,1.0844,1.08472,1.08431,1.08446,2281 +2020-05-08 01:45,1.08448,1.08526,1.08448,1.08502,2663 +2020-05-08 02:00,1.08503,1.08508,1.0845,1.08461,1632 +2020-05-08 02:15,1.08464,1.08531,1.08463,1.08516,1543 +2020-05-08 02:30,1.08516,1.08547,1.08476,1.08516,1841 +2020-05-08 02:45,1.08518,1.08533,1.08484,1.08492,1901 +2020-05-08 03:00,1.08491,1.08512,1.08486,1.08489,1304 +2020-05-08 03:15,1.08488,1.08489,1.08457,1.08478,854 +2020-05-08 03:30,1.08477,1.0848,1.08448,1.08451,1092 +2020-05-08 03:45,1.0845,1.08474,1.08448,1.08473,563 +2020-05-08 04:00,1.08473,1.08477,1.08463,1.08471,702 +2020-05-08 04:15,1.08471,1.08472,1.08441,1.08447,679 +2020-05-08 04:30,1.08446,1.08453,1.08415,1.08424,1028 +2020-05-08 04:45,1.08425,1.08441,1.08423,1.08431,827 +2020-05-08 05:00,1.08431,1.08434,1.08409,1.08414,581 +2020-05-08 05:15,1.08413,1.08461,1.08413,1.08444,1139 +2020-05-08 05:30,1.08444,1.08445,1.084,1.08426,1109 +2020-05-08 05:45,1.08426,1.08437,1.08411,1.08413,1660 +2020-05-08 06:00,1.08416,1.08444,1.08391,1.08403,2281 +2020-05-08 06:15,1.08402,1.08443,1.08378,1.08434,2042 +2020-05-08 06:30,1.08433,1.08433,1.08381,1.08405,1888 +2020-05-08 06:45,1.08405,1.08408,1.08334,1.08336,2214 +2020-05-08 07:00,1.08336,1.08372,1.08317,1.08372,2494 +2020-05-08 07:15,1.08372,1.08377,1.08327,1.0834,2182 +2020-05-08 07:30,1.0834,1.08351,1.08266,1.08321,3098 +2020-05-08 07:45,1.0832,1.0833,1.08239,1.08245,2292 +2020-05-08 08:00,1.08246,1.08257,1.08193,1.0824,2722 +2020-05-08 08:15,1.0824,1.08291,1.08223,1.08249,2202 +2020-05-08 08:30,1.0825,1.08279,1.08239,1.08277,1838 +2020-05-08 08:45,1.08276,1.08349,1.08265,1.08343,2127 +2020-05-08 09:00,1.08346,1.08401,1.08334,1.08397,2230 +2020-05-08 09:15,1.08397,1.08421,1.08372,1.08414,2022 +2020-05-08 09:30,1.08413,1.08429,1.08394,1.08401,1908 +2020-05-08 09:45,1.08401,1.08419,1.08376,1.08417,1785 +2020-05-08 10:00,1.08415,1.08468,1.08385,1.08452,1818 +2020-05-08 10:15,1.08451,1.08455,1.08383,1.08401,1775 +2020-05-08 10:30,1.08402,1.0844,1.08382,1.08424,1792 +2020-05-08 10:45,1.08424,1.08455,1.08406,1.08432,1752 +2020-05-08 11:00,1.08431,1.08451,1.08412,1.08423,1689 +2020-05-08 11:15,1.08422,1.08433,1.08379,1.08402,2144 +2020-05-08 11:30,1.08402,1.08409,1.08374,1.08376,1300 +2020-05-08 11:45,1.08376,1.08407,1.08358,1.08406,1642 +2020-05-08 12:00,1.08407,1.08467,1.08376,1.08433,2189 +2020-05-08 12:15,1.08432,1.08521,1.08401,1.085,4442 +2020-05-08 12:30,1.08512,1.08512,1.08275,1.08336,7217 +2020-05-08 12:45,1.08335,1.08389,1.08252,1.08358,4793 +2020-05-08 13:00,1.0836,1.0838,1.08292,1.08301,2691 +2020-05-08 13:15,1.08303,1.08333,1.08262,1.0827,2089 +2020-05-08 13:30,1.08271,1.08363,1.08271,1.08325,1367 +2020-05-08 13:45,1.08327,1.08346,1.08216,1.08257,1779 +2020-05-08 14:00,1.08257,1.08289,1.08151,1.08289,2468 +2020-05-08 14:15,1.0829,1.08416,1.0828,1.08376,3451 +2020-05-08 14:30,1.08378,1.08535,1.08371,1.08527,3096 +2020-05-08 14:45,1.08526,1.08756,1.08484,1.08723,5460 +2020-05-08 15:00,1.08722,1.08747,1.08591,1.08592,2697 +2020-05-08 15:15,1.08592,1.08594,1.08506,1.0853,2714 +2020-05-08 15:30,1.08531,1.08585,1.08524,1.08534,2748 +2020-05-08 15:45,1.08534,1.08556,1.08497,1.08538,2282 +2020-05-08 16:00,1.08537,1.08538,1.08443,1.0846,3021 +2020-05-08 16:15,1.0846,1.08479,1.0844,1.08443,2365 +2020-05-08 16:30,1.08443,1.08486,1.08432,1.08458,1933 +2020-05-08 16:45,1.08458,1.08468,1.08404,1.08466,2295 +2020-05-08 17:00,1.08467,1.08471,1.08416,1.08459,1762 +2020-05-08 17:15,1.0846,1.08492,1.08448,1.08488,1323 +2020-05-08 17:30,1.08488,1.08521,1.08475,1.0849,1274 +2020-05-08 17:45,1.08491,1.085,1.08477,1.08498,969 +2020-05-08 18:00,1.08498,1.08533,1.08445,1.08465,2092 +2020-05-08 18:15,1.08465,1.08471,1.08436,1.08458,1392 +2020-05-08 18:30,1.08459,1.08461,1.08419,1.08421,753 +2020-05-08 18:45,1.08424,1.08451,1.08416,1.08416,1571 +2020-05-08 19:00,1.08418,1.0843,1.0835,1.08378,1130 +2020-05-08 19:15,1.08378,1.08384,1.08326,1.08341,1326 +2020-05-08 19:30,1.08342,1.08377,1.0834,1.08377,980 +2020-05-08 19:45,1.08376,1.08392,1.08356,1.0837,1634 +2020-05-08 20:00,1.08371,1.08386,1.08346,1.08351,597 +2020-05-08 20:15,1.08349,1.08377,1.08349,1.08362,325 +2020-05-08 20:30,1.08362,1.08381,1.08353,1.08376,311 +2020-05-08 20:45,1.0838,1.08408,1.08358,1.08371,684 +2020-05-10 21:00,1.08265,1.08319,1.08239,1.08316,187 +2020-05-10 21:15,1.08318,1.08366,1.08316,1.08328,65 +2020-05-10 21:30,1.08328,1.08337,1.08323,1.08326,62 +2020-05-10 21:45,1.08333,1.08353,1.08319,1.08325,121 +2020-05-10 22:00,1.08331,1.0835,1.08302,1.08331,1089 +2020-05-10 22:15,1.0833,1.08376,1.08318,1.08324,1217 +2020-05-10 22:30,1.08323,1.08341,1.08314,1.08324,1059 +2020-05-10 22:45,1.08325,1.08354,1.08324,1.08345,694 +2020-05-10 23:00,1.08344,1.08344,1.08294,1.08302,954 +2020-05-10 23:15,1.08302,1.08315,1.08288,1.08292,1312 +2020-05-10 23:30,1.08292,1.08356,1.08292,1.08356,675 +2020-05-10 23:45,1.08356,1.08395,1.08333,1.08377,1282 +2020-05-11 00:00,1.08377,1.08404,1.08342,1.08384,1754 +2020-05-11 00:15,1.08385,1.08442,1.08383,1.08436,1295 +2020-05-11 00:30,1.08434,1.08435,1.08402,1.08404,884 +2020-05-11 00:45,1.08404,1.08459,1.08403,1.08455,1940 +2020-05-11 01:00,1.08453,1.08453,1.08426,1.08429,1636 +2020-05-11 01:15,1.0843,1.08439,1.0841,1.08419,1484 +2020-05-11 01:30,1.08418,1.08448,1.08418,1.08419,1630 +2020-05-11 01:45,1.08422,1.08504,1.08422,1.085,1745 +2020-05-11 02:00,1.085,1.08503,1.08467,1.08497,1880 +2020-05-11 02:15,1.08498,1.08498,1.08453,1.08468,1154 +2020-05-11 02:30,1.08469,1.08501,1.08467,1.08476,714 +2020-05-11 02:45,1.08476,1.08484,1.08465,1.08478,1144 +2020-05-11 03:00,1.08478,1.08481,1.08461,1.08473,1734 +2020-05-11 03:15,1.08473,1.08481,1.08463,1.08478,725 +2020-05-11 03:30,1.08477,1.08477,1.08451,1.08453,1073 +2020-05-11 03:45,1.08453,1.0848,1.08447,1.08471,1270 +2020-05-11 04:00,1.08472,1.08496,1.08465,1.08477,1620 +2020-05-11 04:15,1.08477,1.08482,1.08464,1.08471,672 +2020-05-11 04:30,1.08471,1.08484,1.08464,1.08482,600 +2020-05-11 04:45,1.08482,1.0849,1.08466,1.08466,757 +2020-05-11 05:00,1.08465,1.08473,1.08447,1.08449,1139 +2020-05-11 05:15,1.0845,1.08452,1.08418,1.08423,1843 +2020-05-11 05:30,1.08424,1.08437,1.08403,1.08424,859 +2020-05-11 05:45,1.08426,1.08437,1.08409,1.08412,1164 +2020-05-11 06:00,1.08413,1.08432,1.08364,1.08426,2252 +2020-05-11 06:15,1.08427,1.0847,1.08414,1.08443,2034 +2020-05-11 06:30,1.08443,1.0847,1.08415,1.08433,2859 +2020-05-11 06:45,1.08431,1.08436,1.08378,1.08421,2456 +2020-05-11 07:00,1.08421,1.08448,1.083,1.08305,3381 +2020-05-11 07:15,1.08305,1.08377,1.08264,1.08356,3496 +2020-05-11 07:30,1.08354,1.08358,1.08292,1.08327,2641 +2020-05-11 07:45,1.08327,1.08366,1.08307,1.08339,3167 +2020-05-11 08:00,1.0834,1.08368,1.0826,1.08275,2544 +2020-05-11 08:15,1.08275,1.08275,1.08204,1.08226,3553 +2020-05-11 08:30,1.08225,1.08225,1.08088,1.08115,4857 +2020-05-11 08:45,1.08115,1.08182,1.08086,1.08178,3144 +2020-05-11 09:00,1.08177,1.08188,1.08102,1.08123,3503 +2020-05-11 09:15,1.08123,1.08183,1.08123,1.08164,2699 +2020-05-11 09:30,1.08164,1.08264,1.08164,1.08245,2947 +2020-05-11 09:45,1.08244,1.08278,1.08241,1.08245,2896 +2020-05-11 10:00,1.08245,1.08299,1.08175,1.08202,2884 +2020-05-11 10:15,1.08204,1.08246,1.0815,1.08184,3608 +2020-05-11 10:30,1.08182,1.08253,1.08172,1.08227,2785 +2020-05-11 10:45,1.08226,1.08226,1.08174,1.08188,2364 +2020-05-11 11:00,1.0819,1.08209,1.0816,1.08198,3093 +2020-05-11 11:15,1.08199,1.08207,1.08139,1.08186,2935 +2020-05-11 11:30,1.08189,1.08225,1.08139,1.08143,2696 +2020-05-11 11:45,1.08143,1.08193,1.08126,1.08142,3973 +2020-05-11 12:00,1.08144,1.08246,1.08144,1.08245,5075 +2020-05-11 12:15,1.08247,1.08258,1.08204,1.08225,3493 +2020-05-11 12:30,1.08225,1.0825,1.08142,1.08147,3333 +2020-05-11 12:45,1.08145,1.08225,1.08144,1.08201,3684 +2020-05-11 13:00,1.08202,1.08314,1.082,1.08308,3738 +2020-05-11 13:15,1.08307,1.08362,1.08281,1.08304,3764 +2020-05-11 13:30,1.08305,1.08328,1.08252,1.08269,3849 +2020-05-11 13:45,1.08269,1.08438,1.08252,1.08327,5041 +2020-05-11 14:00,1.08327,1.08362,1.08273,1.08295,4301 +2020-05-11 14:15,1.08294,1.08314,1.0822,1.08232,3779 +2020-05-11 14:30,1.08233,1.0824,1.08158,1.08161,3881 +2020-05-11 14:45,1.08162,1.08257,1.08136,1.08244,5606 +2020-05-11 15:00,1.08243,1.08267,1.08026,1.08084,5087 +2020-05-11 15:15,1.08085,1.08142,1.08054,1.08097,3506 +2020-05-11 15:30,1.08097,1.08144,1.08071,1.08099,2839 +2020-05-11 15:45,1.08098,1.08187,1.08035,1.08165,3349 +2020-05-11 16:00,1.08171,1.08173,1.08078,1.08153,4083 +2020-05-11 16:15,1.08152,1.08152,1.08096,1.08108,2161 +2020-05-11 16:30,1.08107,1.08167,1.08069,1.08155,2586 +2020-05-11 16:45,1.08155,1.08161,1.08077,1.0808,2217 +2020-05-11 17:00,1.08079,1.08118,1.08067,1.08106,2142 +2020-05-11 17:15,1.08104,1.0812,1.08085,1.08092,1969 +2020-05-11 17:30,1.08093,1.08118,1.08071,1.08115,1910 +2020-05-11 17:45,1.08114,1.08116,1.08085,1.08111,2098 +2020-05-11 18:00,1.08108,1.08113,1.08058,1.08058,2043 +2020-05-11 18:15,1.08057,1.08077,1.0804,1.08054,2052 +2020-05-11 18:30,1.08053,1.0806,1.08035,1.0806,1547 +2020-05-11 18:45,1.0806,1.08098,1.08052,1.08093,2038 +2020-05-11 19:00,1.08092,1.08114,1.08078,1.08101,1638 +2020-05-11 19:15,1.08101,1.08122,1.08092,1.08121,1710 +2020-05-11 19:30,1.08121,1.08152,1.08121,1.08151,1339 +2020-05-11 19:45,1.0815,1.08174,1.08143,1.08146,1849 +2020-05-11 20:00,1.08149,1.08163,1.08127,1.0816,948 +2020-05-11 20:15,1.08159,1.08165,1.08114,1.08132,440 +2020-05-11 20:30,1.0813,1.08144,1.08089,1.08138,656 +2020-05-11 20:45,1.08138,1.08152,1.08005,1.08061,1479 +2020-05-11 21:00,1.08059,1.08081,1.08051,1.08067,170 +2020-05-11 21:15,1.08071,1.08071,1.08046,1.0805,432 +2020-05-11 21:30,1.08049,1.0806,1.08047,1.08059,331 +2020-05-11 21:45,1.08064,1.08074,1.08047,1.08066,127 +2020-05-11 22:00,1.08066,1.08093,1.08065,1.0809,1124 +2020-05-11 22:15,1.0809,1.0809,1.08065,1.08075,572 +2020-05-11 22:30,1.08077,1.08103,1.08077,1.08086,459 +2020-05-11 22:45,1.08088,1.08103,1.08077,1.08097,824 +2020-05-11 23:00,1.08095,1.08101,1.08084,1.08098,915 +2020-05-11 23:15,1.08097,1.08097,1.08076,1.08085,1040 +2020-05-11 23:30,1.08086,1.08105,1.08074,1.08076,866 +2020-05-11 23:45,1.08076,1.08097,1.08074,1.08093,1239 +2020-05-12 00:00,1.08093,1.08103,1.0799,1.07997,1717 +2020-05-12 00:15,1.07995,1.07996,1.07843,1.07862,3278 +2020-05-12 00:30,1.07861,1.07913,1.07844,1.07875,3288 +2020-05-12 00:45,1.07876,1.07935,1.0787,1.07923,2569 +2020-05-12 01:00,1.07924,1.0795,1.07905,1.07935,1928 +2020-05-12 01:15,1.07935,1.07947,1.07904,1.07907,1363 +2020-05-12 01:30,1.07906,1.07936,1.07879,1.07905,1777 +2020-05-12 01:45,1.07905,1.07957,1.07883,1.07947,2082 +2020-05-12 02:00,1.07947,1.07962,1.07928,1.07961,1852 +2020-05-12 02:15,1.07961,1.07967,1.07936,1.07958,1155 +2020-05-12 02:30,1.07957,1.07976,1.07935,1.07956,1232 +2020-05-12 02:45,1.07956,1.08007,1.0795,1.08,1472 +2020-05-12 03:00,1.08001,1.08008,1.07983,1.08004,1147 +2020-05-12 03:15,1.08005,1.08034,1.08002,1.08027,1238 +2020-05-12 03:30,1.08027,1.08062,1.08014,1.08053,980 +2020-05-12 03:45,1.08052,1.08071,1.08041,1.08068,869 +2020-05-12 04:00,1.08067,1.08077,1.08024,1.08076,1029 +2020-05-12 04:15,1.08077,1.08087,1.08011,1.08012,1239 +2020-05-12 04:30,1.08012,1.08028,1.08004,1.08016,1015 +2020-05-12 04:45,1.08015,1.08048,1.0801,1.08045,775 +2020-05-12 05:00,1.08046,1.08132,1.08001,1.08126,1719 +2020-05-12 05:15,1.08124,1.08172,1.08114,1.08156,1590 +2020-05-12 05:30,1.08157,1.0816,1.08104,1.0814,1781 +2020-05-12 05:45,1.0814,1.08145,1.08091,1.08096,1442 +2020-05-12 06:00,1.08096,1.08121,1.08041,1.08047,2356 +2020-05-12 06:15,1.08048,1.08152,1.08034,1.0815,2426 +2020-05-12 06:30,1.08152,1.08177,1.08115,1.08165,2182 +2020-05-12 06:45,1.08166,1.08248,1.08141,1.08205,2796 +2020-05-12 07:00,1.08204,1.08276,1.0819,1.08204,2464 +2020-05-12 07:15,1.08205,1.08209,1.08139,1.08161,1590 +2020-05-12 07:30,1.08161,1.08161,1.08078,1.08086,1491 +2020-05-12 07:45,1.08086,1.08167,1.08061,1.08158,1634 +2020-05-12 08:00,1.08161,1.08231,1.08145,1.08221,1675 +2020-05-12 08:15,1.0822,1.0827,1.08184,1.08217,1865 +2020-05-12 08:30,1.08219,1.08232,1.08179,1.08186,2964 +2020-05-12 08:45,1.08189,1.08238,1.08153,1.082,2813 +2020-05-12 09:00,1.082,1.08227,1.08124,1.08145,3125 +2020-05-12 09:15,1.08146,1.08212,1.08131,1.08194,3207 +2020-05-12 09:30,1.08195,1.08238,1.08176,1.08213,2546 +2020-05-12 09:45,1.08213,1.08243,1.08171,1.08195,3377 +2020-05-12 10:00,1.08195,1.08215,1.08159,1.08166,2606 +2020-05-12 10:15,1.08166,1.08367,1.08165,1.08306,4274 +2020-05-12 10:30,1.08306,1.08352,1.08242,1.08263,2890 +2020-05-12 10:45,1.08263,1.08359,1.08237,1.08347,2475 +2020-05-12 11:00,1.08348,1.08408,1.08335,1.08404,3068 +2020-05-12 11:15,1.08404,1.08462,1.08404,1.08447,2948 +2020-05-12 11:30,1.08448,1.08453,1.08385,1.08442,2642 +2020-05-12 11:45,1.08445,1.08486,1.08438,1.08486,2898 +2020-05-12 12:00,1.08486,1.086,1.08406,1.08573,4213 +2020-05-12 12:15,1.08574,1.08591,1.08523,1.08536,3562 +2020-05-12 12:30,1.08532,1.08644,1.08524,1.0862,4590 +2020-05-12 12:45,1.08622,1.08643,1.08567,1.08594,3032 +2020-05-12 13:00,1.08594,1.08844,1.0857,1.08823,3677 +2020-05-12 13:15,1.08823,1.08851,1.08696,1.08731,3957 +2020-05-12 13:30,1.08731,1.08765,1.08658,1.08664,4592 +2020-05-12 13:45,1.08663,1.08807,1.08626,1.08772,5167 +2020-05-12 14:00,1.08774,1.08789,1.08629,1.08645,5766 +2020-05-12 14:15,1.08646,1.08687,1.08619,1.08621,3758 +2020-05-12 14:30,1.08618,1.08717,1.08613,1.08701,4169 +2020-05-12 14:45,1.08702,1.08771,1.0866,1.08746,4985 +2020-05-12 15:00,1.08746,1.08776,1.08685,1.08759,4811 +2020-05-12 15:15,1.08755,1.0876,1.08665,1.08686,3441 +2020-05-12 15:30,1.08687,1.0871,1.08659,1.0871,3110 +2020-05-12 15:45,1.08711,1.08754,1.0862,1.08627,2774 +2020-05-12 16:00,1.08628,1.08661,1.08591,1.08599,2758 +2020-05-12 16:15,1.08599,1.0863,1.08567,1.0857,2771 +2020-05-12 16:30,1.08568,1.08581,1.08479,1.08491,2291 +2020-05-12 16:45,1.08491,1.08529,1.08485,1.08506,2244 +2020-05-12 17:00,1.08508,1.08547,1.08507,1.08527,2225 +2020-05-12 17:15,1.08528,1.08553,1.08472,1.08495,2492 +2020-05-12 17:30,1.08495,1.08571,1.08485,1.08565,2472 +2020-05-12 17:45,1.08563,1.08581,1.0851,1.0852,1394 +2020-05-12 18:00,1.0852,1.08546,1.08504,1.08536,1455 +2020-05-12 18:15,1.08535,1.08551,1.08516,1.08546,1431 +2020-05-12 18:30,1.08545,1.08582,1.08512,1.08542,1634 +2020-05-12 18:45,1.08542,1.08556,1.08512,1.08533,1842 +2020-05-12 19:00,1.08532,1.08552,1.08521,1.08552,1886 +2020-05-12 19:15,1.08552,1.08561,1.08522,1.08539,1499 +2020-05-12 19:30,1.08538,1.08563,1.08505,1.08507,1923 +2020-05-12 19:45,1.08506,1.08515,1.08482,1.08502,1895 +2020-05-12 20:00,1.08502,1.08516,1.08473,1.08485,734 +2020-05-12 20:15,1.08486,1.0849,1.08469,1.0847,432 +2020-05-12 20:30,1.08471,1.08485,1.08469,1.08479,481 +2020-05-12 20:45,1.08478,1.08485,1.0847,1.08472,428 +2020-05-12 21:00,1.08475,1.08482,1.08473,1.08481,36 +2020-05-12 21:15,1.08481,1.08481,1.08468,1.08476,47 +2020-05-12 21:30,1.08476,1.0848,1.08464,1.08466,143 +2020-05-12 21:45,1.08466,1.08472,1.08463,1.08468,111 +2020-05-12 22:00,1.08469,1.08493,1.08465,1.08488,1076 +2020-05-12 22:15,1.08487,1.08513,1.08481,1.08483,532 +2020-05-12 22:30,1.08483,1.08519,1.08475,1.08506,807 +2020-05-12 22:45,1.08507,1.08519,1.08497,1.08516,596 +2020-05-12 23:00,1.08514,1.08514,1.08481,1.08483,818 +2020-05-12 23:15,1.08483,1.08495,1.08472,1.08478,700 +2020-05-12 23:30,1.08478,1.08492,1.08471,1.08484,633 +2020-05-12 23:45,1.08485,1.085,1.08452,1.08454,819 +2020-05-13 00:00,1.08455,1.08497,1.08446,1.08478,1439 +2020-05-13 00:15,1.08477,1.08536,1.08456,1.08527,1346 +2020-05-13 00:30,1.08527,1.08566,1.08514,1.08566,1611 +2020-05-13 00:45,1.08566,1.08572,1.08543,1.08549,1995 +2020-05-13 01:00,1.08549,1.08567,1.08542,1.08557,1450 +2020-05-13 01:15,1.08556,1.08557,1.08528,1.08541,1283 +2020-05-13 01:30,1.08541,1.08559,1.08521,1.08523,1671 +2020-05-13 01:45,1.08522,1.08553,1.08511,1.08546,1407 +2020-05-13 02:00,1.08545,1.08562,1.08471,1.0852,3476 +2020-05-13 02:15,1.08518,1.0853,1.08503,1.08505,1985 +2020-05-13 02:30,1.08504,1.08514,1.08485,1.08506,1879 +2020-05-13 02:45,1.08507,1.08517,1.08485,1.08508,1425 +2020-05-13 03:00,1.08508,1.08522,1.08498,1.08509,1093 +2020-05-13 03:15,1.08511,1.08519,1.08475,1.08503,1196 +2020-05-13 03:30,1.08502,1.08511,1.08496,1.08501,939 +2020-05-13 03:45,1.08499,1.08516,1.08496,1.08509,680 +2020-05-13 04:00,1.08508,1.08508,1.08461,1.08463,1078 +2020-05-13 04:15,1.08462,1.08466,1.08439,1.08448,1043 +2020-05-13 04:30,1.08448,1.08491,1.08445,1.0848,750 +2020-05-13 04:45,1.08479,1.08499,1.08469,1.08493,1508 +2020-05-13 05:00,1.0849,1.08504,1.08465,1.08468,1257 +2020-05-13 05:15,1.08465,1.08494,1.08448,1.08485,1058 +2020-05-13 05:30,1.08483,1.08539,1.08483,1.08513,1356 +2020-05-13 05:45,1.08513,1.08515,1.08481,1.08492,1298 +2020-05-13 06:00,1.08494,1.08555,1.08447,1.08548,2849 +2020-05-13 06:15,1.08546,1.08556,1.08523,1.08525,1852 +2020-05-13 06:30,1.08524,1.08524,1.08449,1.08489,2143 +2020-05-13 06:45,1.08489,1.08514,1.08437,1.0845,2572 +2020-05-13 07:00,1.08451,1.08488,1.08409,1.08487,3135 +2020-05-13 07:15,1.08487,1.08505,1.08424,1.0846,2817 +2020-05-13 07:30,1.08458,1.08473,1.08328,1.08382,3882 +2020-05-13 07:45,1.08381,1.08397,1.08307,1.08382,3258 +2020-05-13 08:00,1.08382,1.08421,1.08356,1.08395,3060 +2020-05-13 08:15,1.08393,1.08456,1.08354,1.0839,2921 +2020-05-13 08:30,1.08391,1.08452,1.08385,1.08401,2860 +2020-05-13 08:45,1.08399,1.08451,1.08376,1.08423,2880 +2020-05-13 09:00,1.08423,1.08456,1.0836,1.08365,2910 +2020-05-13 09:15,1.08367,1.08432,1.08349,1.08393,3056 +2020-05-13 09:30,1.08393,1.08454,1.08376,1.08454,2365 +2020-05-13 09:45,1.08453,1.08476,1.08399,1.08426,2794 +2020-05-13 10:00,1.08427,1.08522,1.08405,1.08517,2652 +2020-05-13 10:15,1.08516,1.08547,1.085,1.08536,2211 +2020-05-13 10:30,1.08536,1.08582,1.08512,1.08565,2544 +2020-05-13 10:45,1.08565,1.08657,1.08546,1.08652,2537 +2020-05-13 11:00,1.08653,1.08656,1.08603,1.08628,2910 +2020-05-13 11:15,1.08627,1.08753,1.08619,1.08734,3174 +2020-05-13 11:30,1.08734,1.08747,1.08673,1.08716,3837 +2020-05-13 11:45,1.08716,1.08785,1.08695,1.08765,5007 +2020-05-13 12:00,1.08766,1.08783,1.08731,1.08746,4688 +2020-05-13 12:15,1.08749,1.08811,1.08741,1.08752,4268 +2020-05-13 12:30,1.08752,1.08789,1.08712,1.08726,3457 +2020-05-13 12:45,1.08726,1.08808,1.08726,1.08791,3662 +2020-05-13 13:00,1.08792,1.08965,1.08651,1.08754,9068 +2020-05-13 13:15,1.08754,1.0891,1.086,1.08696,10056 +2020-05-13 13:30,1.08697,1.08704,1.0857,1.08579,6461 +2020-05-13 13:45,1.08578,1.08659,1.08531,1.08614,5703 +2020-05-13 14:00,1.08614,1.0865,1.08541,1.08547,5098 +2020-05-13 14:15,1.08547,1.08602,1.08509,1.08581,5268 +2020-05-13 14:30,1.08581,1.0859,1.08506,1.0851,4300 +2020-05-13 14:45,1.08511,1.08562,1.08371,1.08384,6489 +2020-05-13 15:00,1.08384,1.08462,1.08369,1.0843,5120 +2020-05-13 15:15,1.08429,1.08459,1.08303,1.0842,4121 +2020-05-13 15:30,1.08423,1.08439,1.08381,1.08401,2852 +2020-05-13 15:45,1.084,1.08427,1.08336,1.08362,3023 +2020-05-13 16:00,1.08361,1.0839,1.08306,1.08315,3319 +2020-05-13 16:15,1.08314,1.08324,1.08225,1.08255,2760 +2020-05-13 16:30,1.08255,1.08306,1.0824,1.0827,3333 +2020-05-13 16:45,1.08271,1.08311,1.08197,1.0822,2261 +2020-05-13 17:00,1.08222,1.08222,1.08122,1.0819,3312 +2020-05-13 17:15,1.08192,1.08216,1.0815,1.08212,1996 +2020-05-13 17:30,1.08211,1.08221,1.08184,1.08211,1376 +2020-05-13 17:45,1.08211,1.08211,1.08163,1.08176,1502 +2020-05-13 18:00,1.08174,1.08238,1.0816,1.08225,1817 +2020-05-13 18:15,1.08226,1.08226,1.0817,1.0818,1150 +2020-05-13 18:30,1.08181,1.08202,1.08163,1.08184,1060 +2020-05-13 18:45,1.08182,1.08189,1.0815,1.08153,1676 +2020-05-13 19:00,1.08153,1.08192,1.08146,1.08146,1225 +2020-05-13 19:15,1.08145,1.0816,1.08116,1.08136,1631 +2020-05-13 19:30,1.08137,1.08157,1.08127,1.08146,1815 +2020-05-13 19:45,1.08145,1.08204,1.08143,1.0815,2347 +2020-05-13 20:00,1.08149,1.08174,1.08139,1.08165,1010 +2020-05-13 20:15,1.08165,1.08186,1.08146,1.08149,789 +2020-05-13 20:30,1.08148,1.08181,1.08144,1.08168,426 +2020-05-13 20:45,1.08168,1.0819,1.08162,1.08176,387 +2020-05-13 21:00,1.08176,1.08179,1.08167,1.0817,197 +2020-05-13 21:15,1.0817,1.08179,1.08167,1.08167,206 +2020-05-13 21:30,1.08167,1.08175,1.08165,1.08169,303 +2020-05-13 21:45,1.08165,1.08205,1.08161,1.08205,1132 +2020-05-13 22:00,1.08202,1.08205,1.08184,1.08202,509 +2020-05-13 22:15,1.08202,1.08202,1.08177,1.08185,427 +2020-05-13 22:30,1.08184,1.08201,1.08158,1.08167,489 +2020-05-13 22:45,1.08166,1.08181,1.08154,1.0818,342 +2020-05-13 23:00,1.0818,1.08192,1.08165,1.0818,823 +2020-05-13 23:15,1.0818,1.08191,1.08179,1.0819,263 +2020-05-13 23:30,1.0819,1.08205,1.08185,1.08199,481 +2020-05-13 23:45,1.08199,1.08218,1.08188,1.0821,559 +2020-05-14 00:00,1.0821,1.08219,1.08172,1.08209,1683 +2020-05-14 00:15,1.08208,1.0822,1.08191,1.08198,645 +2020-05-14 00:30,1.08197,1.08239,1.08196,1.08228,722 +2020-05-14 00:45,1.08227,1.08235,1.08199,1.08214,1177 +2020-05-14 01:00,1.08214,1.08216,1.0819,1.0819,1245 +2020-05-14 01:15,1.08192,1.08207,1.08183,1.082,1272 +2020-05-14 01:30,1.08199,1.08216,1.08124,1.08137,2249 +2020-05-14 01:45,1.08137,1.08137,1.08086,1.08093,2380 +2020-05-14 02:00,1.08092,1.08136,1.08088,1.08125,1881 +2020-05-14 02:15,1.08124,1.08137,1.08113,1.08127,958 +2020-05-14 02:30,1.08127,1.08151,1.08123,1.08142,1346 +2020-05-14 02:45,1.08142,1.08151,1.08129,1.08148,887 +2020-05-14 03:00,1.08148,1.08153,1.08126,1.0814,1035 +2020-05-14 03:15,1.08139,1.08139,1.08115,1.0812,994 +2020-05-14 03:30,1.08121,1.08128,1.0808,1.08107,1243 +2020-05-14 03:45,1.08107,1.08114,1.08072,1.08087,1199 +2020-05-14 04:00,1.08088,1.08094,1.08073,1.08078,819 +2020-05-14 04:15,1.08077,1.08082,1.0806,1.08063,928 +2020-05-14 04:30,1.08063,1.08068,1.08051,1.08054,825 +2020-05-14 04:45,1.08055,1.081,1.08054,1.08094,912 +2020-05-14 05:00,1.08094,1.08094,1.0808,1.08086,793 +2020-05-14 05:15,1.08086,1.08089,1.08048,1.08049,748 +2020-05-14 05:30,1.08049,1.08066,1.08043,1.08051,1593 +2020-05-14 05:45,1.08052,1.08113,1.0805,1.08073,1288 +2020-05-14 06:00,1.08073,1.08074,1.08014,1.08029,2630 +2020-05-14 06:15,1.0803,1.0807,1.08019,1.0803,2834 +2020-05-14 06:30,1.08031,1.0813,1.08021,1.08084,2251 +2020-05-14 06:45,1.08084,1.08098,1.0806,1.08075,1880 +2020-05-14 07:00,1.08076,1.08109,1.07961,1.08083,4704 +2020-05-14 07:15,1.08083,1.08125,1.08064,1.08069,2956 +2020-05-14 07:30,1.0807,1.08137,1.08065,1.08096,3777 +2020-05-14 07:45,1.08096,1.08121,1.08032,1.08044,3593 +2020-05-14 08:00,1.08044,1.08078,1.08021,1.08077,2885 +2020-05-14 08:15,1.08077,1.08155,1.08067,1.08155,3389 +2020-05-14 08:30,1.08157,1.08202,1.08113,1.08122,3228 +2020-05-14 08:45,1.08122,1.08154,1.08092,1.081,3068 +2020-05-14 09:00,1.08101,1.08126,1.0808,1.08111,2471 +2020-05-14 09:15,1.08112,1.08123,1.08081,1.08083,1710 +2020-05-14 09:30,1.08083,1.08129,1.08077,1.08116,1805 +2020-05-14 09:45,1.08116,1.08129,1.08062,1.08085,1644 +2020-05-14 10:00,1.08086,1.0809,1.07891,1.07907,5669 +2020-05-14 10:15,1.07905,1.08012,1.07899,1.07972,3261 +2020-05-14 10:30,1.07974,1.07997,1.07932,1.07972,2375 +2020-05-14 10:45,1.07972,1.07975,1.07831,1.07916,4274 +2020-05-14 11:00,1.07917,1.07928,1.07821,1.07873,3375 +2020-05-14 11:15,1.07872,1.07872,1.07751,1.0781,3544 +2020-05-14 11:30,1.0781,1.07923,1.078,1.07914,2829 +2020-05-14 11:45,1.07912,1.07947,1.07871,1.07894,3662 +2020-05-14 12:00,1.07892,1.07941,1.07865,1.07921,4365 +2020-05-14 12:15,1.07924,1.07951,1.07885,1.07895,3550 +2020-05-14 12:30,1.07898,1.07909,1.07748,1.07801,4371 +2020-05-14 12:45,1.07801,1.07893,1.07778,1.07888,4250 +2020-05-14 13:00,1.07887,1.07933,1.0784,1.07928,3064 +2020-05-14 13:15,1.07927,1.08011,1.07924,1.07929,2998 +2020-05-14 13:30,1.0793,1.07971,1.07893,1.07937,3264 +2020-05-14 13:45,1.07936,1.07967,1.07895,1.07905,4064 +2020-05-14 14:00,1.07905,1.08153,1.07888,1.08116,5187 +2020-05-14 14:15,1.08115,1.08163,1.08064,1.08076,4470 +2020-05-14 14:30,1.08077,1.08116,1.08007,1.08065,4283 +2020-05-14 14:45,1.08064,1.0815,1.08025,1.08114,6584 +2020-05-14 15:00,1.08115,1.0815,1.08027,1.08044,4490 +2020-05-14 15:15,1.08043,1.08075,1.08002,1.08021,3366 +2020-05-14 15:30,1.08021,1.08031,1.07883,1.07906,4053 +2020-05-14 15:45,1.07908,1.08003,1.07904,1.07985,2885 +2020-05-14 16:00,1.07986,1.08045,1.0787,1.07907,2991 +2020-05-14 16:15,1.07911,1.07926,1.07842,1.07855,3532 +2020-05-14 16:30,1.07855,1.07871,1.07837,1.07858,2616 +2020-05-14 16:45,1.07858,1.07867,1.0781,1.07823,2939 +2020-05-14 17:00,1.07824,1.07848,1.078,1.07842,2622 +2020-05-14 17:15,1.07843,1.07906,1.07835,1.07881,2721 +2020-05-14 17:30,1.07882,1.07907,1.07838,1.07842,2797 +2020-05-14 17:45,1.07841,1.07851,1.07804,1.07822,2103 +2020-05-14 18:00,1.07821,1.07845,1.07808,1.07832,1877 +2020-05-14 18:15,1.07831,1.07867,1.07823,1.07834,1411 +2020-05-14 18:30,1.07837,1.07845,1.07801,1.07836,1641 +2020-05-14 18:45,1.07835,1.07848,1.07809,1.07833,2208 +2020-05-14 19:00,1.07831,1.07901,1.07817,1.079,2049 +2020-05-14 19:15,1.07899,1.0794,1.07888,1.07931,2058 +2020-05-14 19:30,1.07932,1.07971,1.07891,1.07957,2099 +2020-05-14 19:45,1.07958,1.08025,1.0793,1.07995,2099 +2020-05-14 20:00,1.07996,1.08031,1.07988,1.08029,744 +2020-05-14 20:15,1.08029,1.08029,1.07972,1.07992,533 +2020-05-14 20:30,1.07991,1.0803,1.07983,1.08024,556 +2020-05-14 20:45,1.08023,1.0805,1.08014,1.0804,313 +2020-05-14 21:00,1.08042,1.08068,1.0803,1.08061,263 +2020-05-14 21:15,1.08059,1.08071,1.08042,1.08049,528 +2020-05-14 21:30,1.0805,1.08062,1.08032,1.08061,295 +2020-05-14 21:45,1.08061,1.08069,1.08053,1.08065,188 +2020-05-14 22:00,1.08064,1.08071,1.08047,1.08049,744 +2020-05-14 22:15,1.0805,1.08059,1.08039,1.08044,537 +2020-05-14 22:30,1.08046,1.08056,1.08035,1.08036,609 +2020-05-14 22:45,1.08039,1.08049,1.08018,1.08032,517 +2020-05-14 23:00,1.08034,1.08056,1.08029,1.08056,648 +2020-05-14 23:15,1.08058,1.08079,1.08057,1.08066,774 +2020-05-14 23:30,1.08069,1.08072,1.08061,1.08071,488 +2020-05-14 23:45,1.08072,1.08079,1.08059,1.0806,631 +2020-05-15 00:00,1.08061,1.08068,1.08012,1.08063,1691 +2020-05-15 00:15,1.08063,1.08071,1.08035,1.08045,1168 +2020-05-15 00:30,1.08046,1.08067,1.08023,1.08034,1264 +2020-05-15 00:45,1.08035,1.08059,1.07995,1.08054,2534 +2020-05-15 01:00,1.08056,1.0807,1.08022,1.08039,1355 +2020-05-15 01:15,1.0804,1.08065,1.08035,1.0805,1414 +2020-05-15 01:30,1.0805,1.08064,1.08015,1.08021,1351 +2020-05-15 01:45,1.08022,1.08043,1.08014,1.08024,1562 +2020-05-15 02:00,1.08025,1.08034,1.07996,1.08015,1883 +2020-05-15 02:15,1.08013,1.08016,1.07984,1.08002,1842 +2020-05-15 02:30,1.08003,1.08017,1.07994,1.08008,1451 +2020-05-15 02:45,1.08009,1.08036,1.08005,1.08029,911 +2020-05-15 03:00,1.08029,1.0805,1.08023,1.0805,1199 +2020-05-15 03:15,1.08049,1.08057,1.08035,1.08057,739 +2020-05-15 03:30,1.08057,1.08071,1.08047,1.08057,1053 +2020-05-15 03:45,1.08056,1.08063,1.08042,1.08052,939 +2020-05-15 04:00,1.0805,1.08063,1.08038,1.08047,780 +2020-05-15 04:15,1.08048,1.0806,1.08042,1.08054,703 +2020-05-15 04:30,1.08055,1.08069,1.08049,1.08062,757 +2020-05-15 04:45,1.08062,1.08065,1.08035,1.08052,781 +2020-05-15 05:00,1.08054,1.08061,1.08032,1.0806,871 +2020-05-15 05:15,1.08061,1.08072,1.08031,1.08054,977 +2020-05-15 05:30,1.08055,1.08068,1.08032,1.08067,934 +2020-05-15 05:45,1.08067,1.08069,1.08041,1.08063,1141 +2020-05-15 06:00,1.08062,1.081,1.08028,1.08056,2488 +2020-05-15 06:15,1.08055,1.08088,1.08025,1.08031,1966 +2020-05-15 06:30,1.08031,1.08056,1.0799,1.08003,2031 +2020-05-15 06:45,1.08002,1.08026,1.07955,1.07992,1953 +2020-05-15 07:00,1.07988,1.08057,1.07932,1.08051,2931 +2020-05-15 07:15,1.08052,1.08147,1.08032,1.08101,3316 +2020-05-15 07:30,1.08102,1.08146,1.08077,1.08132,1956 +2020-05-15 07:45,1.08131,1.08188,1.08085,1.08163,3415 +2020-05-15 08:00,1.08161,1.08195,1.08115,1.08141,2909 +2020-05-15 08:15,1.08142,1.08182,1.08119,1.08148,2488 +2020-05-15 08:30,1.08149,1.08175,1.08109,1.08121,2240 +2020-05-15 08:45,1.08119,1.08127,1.08058,1.08112,2577 +2020-05-15 09:00,1.08113,1.08171,1.08067,1.08148,2593 +2020-05-15 09:15,1.0815,1.08162,1.08102,1.08152,2547 +2020-05-15 09:30,1.08152,1.08159,1.08074,1.08098,2216 +2020-05-15 09:45,1.081,1.08135,1.08084,1.08126,2993 +2020-05-15 10:00,1.08127,1.0816,1.08092,1.08144,2350 +2020-05-15 10:15,1.08146,1.08188,1.08131,1.08138,2135 +2020-05-15 10:30,1.08138,1.08142,1.08063,1.08098,4322 +2020-05-15 10:45,1.08097,1.08135,1.08077,1.08102,2512 +2020-05-15 11:00,1.08101,1.08162,1.08066,1.08134,3431 +2020-05-15 11:15,1.08135,1.08136,1.08011,1.08034,2597 +2020-05-15 11:30,1.08035,1.08056,1.07986,1.08033,3444 +2020-05-15 11:45,1.08033,1.08036,1.07971,1.08001,3439 +2020-05-15 12:00,1.08,1.08001,1.07888,1.07975,4416 +2020-05-15 12:15,1.07975,1.08022,1.07938,1.08,4490 +2020-05-15 12:30,1.08004,1.08295,1.07985,1.08293,7512 +2020-05-15 12:45,1.08292,1.08399,1.08235,1.08296,5719 +2020-05-15 13:00,1.08295,1.0846,1.08224,1.08412,6719 +2020-05-15 13:15,1.08416,1.08509,1.08374,1.08405,5022 +2020-05-15 13:30,1.08407,1.08494,1.08379,1.08446,5660 +2020-05-15 13:45,1.08446,1.08479,1.08359,1.08376,4217 +2020-05-15 14:00,1.08376,1.08391,1.08262,1.08367,4351 +2020-05-15 14:15,1.08366,1.08372,1.08301,1.08331,4056 +2020-05-15 14:30,1.08332,1.08357,1.08274,1.08304,3853 +2020-05-15 14:45,1.08303,1.08306,1.0814,1.08191,5320 +2020-05-15 15:00,1.08193,1.08253,1.08167,1.0823,3959 +2020-05-15 15:15,1.08229,1.08254,1.08111,1.08117,2954 +2020-05-15 15:30,1.08119,1.08203,1.08119,1.08132,2991 +2020-05-15 15:45,1.08136,1.08222,1.08109,1.08155,3457 +2020-05-15 16:00,1.08156,1.08217,1.08135,1.08183,3079 +2020-05-15 16:15,1.08183,1.08196,1.0813,1.08162,2723 +2020-05-15 16:30,1.08163,1.0822,1.08116,1.0812,1978 +2020-05-15 16:45,1.08121,1.08155,1.08037,1.08067,2432 +2020-05-15 17:00,1.08068,1.08101,1.08046,1.08074,1886 +2020-05-15 17:15,1.08073,1.08106,1.08061,1.08082,2120 +2020-05-15 17:30,1.08081,1.08111,1.08076,1.08099,1624 +2020-05-15 17:45,1.08099,1.0813,1.08086,1.08107,1227 +2020-05-15 18:00,1.08108,1.0812,1.08085,1.08093,1313 +2020-05-15 18:15,1.08093,1.08129,1.0809,1.08118,1602 +2020-05-15 18:30,1.08117,1.08129,1.08107,1.08111,1102 +2020-05-15 18:45,1.08111,1.08172,1.08093,1.08141,1799 +2020-05-15 19:00,1.08142,1.08167,1.08126,1.08126,1007 +2020-05-15 19:15,1.08125,1.08151,1.08123,1.08134,795 +2020-05-15 19:30,1.08134,1.08138,1.0812,1.08123,974 +2020-05-15 19:45,1.08123,1.08185,1.08122,1.08171,975 +2020-05-15 20:00,1.08171,1.0819,1.08126,1.08134,980 +2020-05-15 20:15,1.08134,1.08152,1.08127,1.08142,474 +2020-05-15 20:30,1.08143,1.082,1.08133,1.08178,534 +2020-05-15 20:45,1.08178,1.08222,1.08174,1.08183,1359 +2020-05-17 21:00,1.08088,1.08196,1.08067,1.08179,153 +2020-05-17 21:15,1.08193,1.08211,1.08174,1.08193,59 +2020-05-17 21:30,1.0819,1.08193,1.08129,1.08145,127 +2020-05-17 21:45,1.08145,1.08166,1.08107,1.08158,97 +2020-05-17 22:00,1.08155,1.08206,1.08155,1.08182,918 +2020-05-17 22:15,1.08183,1.08198,1.08169,1.0819,670 +2020-05-17 22:30,1.08193,1.08213,1.08177,1.08211,1208 +2020-05-17 22:45,1.08211,1.08231,1.08208,1.08208,406 +2020-05-17 23:00,1.08209,1.0823,1.08203,1.08219,831 +2020-05-17 23:15,1.08219,1.08231,1.08188,1.08226,1030 +2020-05-17 23:30,1.08224,1.08226,1.08199,1.08208,694 +2020-05-17 23:45,1.08208,1.0822,1.08179,1.08186,725 +2020-05-18 00:00,1.08186,1.08215,1.08169,1.0821,1119 +2020-05-18 00:15,1.0821,1.08233,1.08197,1.08205,1047 +2020-05-18 00:30,1.08207,1.08217,1.0819,1.082,470 +2020-05-18 00:45,1.08198,1.082,1.08163,1.08168,1105 +2020-05-18 01:00,1.08169,1.08183,1.08143,1.08163,1200 +2020-05-18 01:15,1.08162,1.08206,1.08162,1.08205,1394 +2020-05-18 01:30,1.08206,1.08235,1.08205,1.08226,1132 +2020-05-18 01:45,1.08226,1.08236,1.08209,1.08224,1139 +2020-05-18 02:00,1.08225,1.08265,1.08218,1.08264,1373 +2020-05-18 02:15,1.08263,1.08268,1.08233,1.08255,1499 +2020-05-18 02:30,1.08255,1.08261,1.08231,1.0826,1019 +2020-05-18 02:45,1.08261,1.08264,1.08249,1.08253,1000 +2020-05-18 03:00,1.08252,1.08255,1.08226,1.08243,807 +2020-05-18 03:15,1.08243,1.08247,1.08226,1.08234,759 +2020-05-18 03:30,1.08234,1.08263,1.08233,1.08244,622 +2020-05-18 03:45,1.08244,1.08245,1.08229,1.08237,522 +2020-05-18 04:00,1.08236,1.08246,1.0822,1.08224,695 +2020-05-18 04:15,1.08224,1.08226,1.08216,1.08225,572 +2020-05-18 04:30,1.08225,1.08227,1.08193,1.08193,738 +2020-05-18 04:45,1.08194,1.08206,1.08194,1.08204,483 +2020-05-18 05:00,1.08204,1.08204,1.08175,1.08186,745 +2020-05-18 05:15,1.08186,1.08193,1.08176,1.0819,618 +2020-05-18 05:30,1.08191,1.08207,1.08188,1.08203,486 +2020-05-18 05:45,1.08203,1.08207,1.08181,1.08186,987 +2020-05-18 06:00,1.08186,1.08201,1.08168,1.08201,1416 +2020-05-18 06:15,1.08205,1.0825,1.08194,1.0822,1767 +2020-05-18 06:30,1.08222,1.08257,1.0822,1.08247,1814 +2020-05-18 06:45,1.08248,1.08284,1.08187,1.08195,2000 +2020-05-18 07:00,1.08195,1.08252,1.08163,1.08212,3146 +2020-05-18 07:15,1.08212,1.08232,1.08162,1.08184,2092 +2020-05-18 07:30,1.08182,1.08182,1.08124,1.08147,2098 +2020-05-18 07:45,1.08146,1.08157,1.08076,1.08131,2971 +2020-05-18 08:00,1.0813,1.0817,1.08078,1.08102,2903 +2020-05-18 08:15,1.08103,1.08146,1.08097,1.08142,2787 +2020-05-18 08:30,1.08143,1.08147,1.08023,1.08042,4022 +2020-05-18 08:45,1.08042,1.08102,1.08023,1.08094,3133 +2020-05-18 09:00,1.08093,1.08093,1.08004,1.08011,2429 +2020-05-18 09:15,1.0801,1.08059,1.07999,1.08049,2581 +2020-05-18 09:30,1.08049,1.08063,1.0802,1.08021,2242 +2020-05-18 09:45,1.08022,1.08096,1.08006,1.08086,2641 +2020-05-18 10:00,1.08083,1.08097,1.08056,1.08071,1923 +2020-05-18 10:15,1.08071,1.08096,1.08027,1.08073,1674 +2020-05-18 10:30,1.08073,1.08162,1.08056,1.08151,2064 +2020-05-18 10:45,1.08149,1.08166,1.08099,1.08116,1903 +2020-05-18 11:00,1.08115,1.08155,1.0809,1.0814,2037 +2020-05-18 11:15,1.0814,1.0817,1.08116,1.08134,2236 +2020-05-18 11:30,1.08134,1.08188,1.08102,1.0817,2809 +2020-05-18 11:45,1.0817,1.08227,1.08165,1.08201,2509 +2020-05-18 12:00,1.082,1.08316,1.08196,1.08314,3353 +2020-05-18 12:15,1.08317,1.08377,1.08298,1.08356,4453 +2020-05-18 12:30,1.08356,1.08438,1.08355,1.08364,3230 +2020-05-18 12:45,1.08364,1.08395,1.08301,1.08376,2766 +2020-05-18 13:00,1.08377,1.08466,1.08368,1.08424,3400 +2020-05-18 13:15,1.08422,1.08499,1.08398,1.08443,3172 +2020-05-18 13:30,1.08444,1.08667,1.08422,1.08581,5213 +2020-05-18 13:45,1.08582,1.08661,1.08544,1.08572,5174 +2020-05-18 14:00,1.08574,1.08599,1.08514,1.08563,3699 +2020-05-18 14:15,1.08564,1.08577,1.08514,1.08525,3467 +2020-05-18 14:30,1.08525,1.08559,1.08512,1.08527,2800 +2020-05-18 14:45,1.08525,1.08696,1.08506,1.08571,4176 +2020-05-18 15:00,1.08572,1.08691,1.0853,1.08664,4791 +2020-05-18 15:15,1.08665,1.09005,1.08658,1.08802,9180 +2020-05-18 15:30,1.08801,1.08934,1.08726,1.08934,6491 +2020-05-18 15:45,1.08936,1.09137,1.08924,1.09028,6945 +2020-05-18 16:00,1.09028,1.09199,1.08989,1.09137,6828 +2020-05-18 16:15,1.09141,1.09197,1.0905,1.09067,4702 +2020-05-18 16:30,1.09067,1.09116,1.09049,1.09075,3135 +2020-05-18 16:45,1.09076,1.09116,1.09021,1.09091,3239 +2020-05-18 17:00,1.0909,1.09266,1.0905,1.0925,3541 +2020-05-18 17:15,1.09251,1.0927,1.09163,1.0925,2936 +2020-05-18 17:30,1.0925,1.09252,1.09137,1.09144,2031 +2020-05-18 17:45,1.09145,1.0918,1.09113,1.09175,2076 +2020-05-18 18:00,1.09175,1.09183,1.09122,1.09155,1874 +2020-05-18 18:15,1.09154,1.09161,1.09101,1.09111,1940 +2020-05-18 18:30,1.09113,1.09187,1.0911,1.09175,1516 +2020-05-18 18:45,1.09178,1.09181,1.09122,1.0914,1970 +2020-05-18 19:00,1.0914,1.09168,1.09127,1.09146,1328 +2020-05-18 19:15,1.09146,1.09177,1.09129,1.09174,1054 +2020-05-18 19:30,1.09174,1.09187,1.09135,1.09185,1054 +2020-05-18 19:45,1.09184,1.0921,1.09175,1.09207,1565 +2020-05-18 20:00,1.09208,1.09211,1.09153,1.09174,624 +2020-05-18 20:15,1.09174,1.09179,1.09146,1.0917,426 +2020-05-18 20:30,1.09169,1.09177,1.09161,1.09174,406 +2020-05-18 20:45,1.09173,1.09175,1.0912,1.09154,884 +2020-05-18 21:00,1.09155,1.09213,1.09129,1.09183,422 +2020-05-18 21:15,1.09183,1.09193,1.09163,1.09165,316 +2020-05-18 21:30,1.09171,1.09171,1.09116,1.09146,1822 +2020-05-18 21:45,1.09147,1.09171,1.09143,1.09151,662 +2020-05-18 22:00,1.09151,1.09181,1.09126,1.09176,827 +2020-05-18 22:15,1.09179,1.09191,1.09168,1.09171,1799 +2020-05-18 22:30,1.09173,1.09175,1.09158,1.09172,601 +2020-05-18 22:45,1.09172,1.09176,1.09159,1.09164,987 +2020-05-18 23:00,1.09167,1.09175,1.0915,1.09165,486 +2020-05-18 23:15,1.09162,1.09162,1.09138,1.09145,616 +2020-05-18 23:30,1.09144,1.09156,1.09141,1.09148,743 +2020-05-18 23:45,1.09148,1.09154,1.0913,1.09139,706 +2020-05-19 00:00,1.09138,1.09225,1.09135,1.09199,1620 +2020-05-19 00:15,1.09197,1.09237,1.09165,1.09235,1263 +2020-05-19 00:30,1.09234,1.09237,1.09163,1.09178,2082 +2020-05-19 00:45,1.09178,1.0919,1.09157,1.0919,1755 +2020-05-19 01:00,1.09191,1.092,1.09137,1.09143,1733 +2020-05-19 01:15,1.09146,1.09154,1.09123,1.09127,1650 +2020-05-19 01:30,1.09126,1.09152,1.09095,1.09098,1986 +2020-05-19 01:45,1.09098,1.09155,1.09098,1.0911,1907 +2020-05-19 02:00,1.0911,1.0911,1.09086,1.09089,1136 +2020-05-19 02:15,1.09087,1.09106,1.09084,1.09099,1286 +2020-05-19 02:30,1.09099,1.09116,1.09072,1.09073,1013 +2020-05-19 02:45,1.09073,1.09079,1.0905,1.0905,1147 +2020-05-19 03:00,1.09051,1.09053,1.09022,1.09034,1697 +2020-05-19 03:15,1.09034,1.0905,1.09021,1.09047,1398 +2020-05-19 03:30,1.09047,1.09088,1.09039,1.09087,1350 +2020-05-19 03:45,1.09088,1.09095,1.09081,1.09082,1096 +2020-05-19 04:00,1.09085,1.09125,1.09085,1.09124,965 +2020-05-19 04:15,1.09124,1.0913,1.09112,1.09113,953 +2020-05-19 04:30,1.09112,1.09134,1.09093,1.09099,917 +2020-05-19 04:45,1.09099,1.09126,1.09093,1.09094,756 +2020-05-19 05:00,1.09095,1.09107,1.09075,1.09082,1327 +2020-05-19 05:15,1.09081,1.09127,1.09081,1.09127,873 +2020-05-19 05:30,1.09127,1.09148,1.09123,1.09135,1172 +2020-05-19 05:45,1.09136,1.09156,1.09082,1.09154,2411 +2020-05-19 06:00,1.09154,1.09277,1.09144,1.09245,4864 +2020-05-19 06:15,1.09244,1.09366,1.09228,1.0936,4024 +2020-05-19 06:30,1.0936,1.09399,1.09339,1.0935,3828 +2020-05-19 06:45,1.0935,1.09428,1.0933,1.09401,3596 +2020-05-19 07:00,1.094,1.09447,1.09333,1.09382,4384 +2020-05-19 07:15,1.09381,1.09452,1.09347,1.09353,3838 +2020-05-19 07:30,1.09353,1.09372,1.09306,1.09357,3813 +2020-05-19 07:45,1.09357,1.09418,1.09255,1.09292,5301 +2020-05-19 08:00,1.09292,1.09342,1.09267,1.09334,4526 +2020-05-19 08:15,1.09333,1.09344,1.09217,1.09217,4269 +2020-05-19 08:30,1.09217,1.09351,1.09214,1.09347,6170 +2020-05-19 08:45,1.09347,1.09533,1.09346,1.09514,6858 +2020-05-19 09:00,1.09512,1.09562,1.0949,1.09501,5660 +2020-05-19 09:15,1.09501,1.09552,1.09492,1.09536,4402 +2020-05-19 09:30,1.09537,1.09557,1.09493,1.09532,3185 +2020-05-19 09:45,1.09532,1.09532,1.09446,1.09465,2693 +2020-05-19 10:00,1.09467,1.09541,1.09438,1.0953,3290 +2020-05-19 10:15,1.0953,1.09572,1.09508,1.09556,4059 +2020-05-19 10:30,1.09555,1.09689,1.09542,1.09672,8258 +2020-05-19 10:45,1.09672,1.09759,1.09664,1.09681,3990 +2020-05-19 11:00,1.09682,1.09686,1.09595,1.09612,3099 +2020-05-19 11:15,1.09611,1.0964,1.09564,1.09577,2822 +2020-05-19 11:30,1.09581,1.09624,1.09571,1.09585,2485 +2020-05-19 11:45,1.09584,1.09584,1.09434,1.09482,3173 +2020-05-19 12:00,1.09482,1.09526,1.09454,1.09495,2285 +2020-05-19 12:15,1.09493,1.09529,1.09421,1.09466,3443 +2020-05-19 12:30,1.09468,1.09472,1.09423,1.09464,2980 +2020-05-19 12:45,1.09463,1.09517,1.0943,1.09505,3890 +2020-05-19 13:00,1.09505,1.09507,1.09329,1.09395,4826 +2020-05-19 13:15,1.09394,1.09401,1.09321,1.09328,3700 +2020-05-19 13:30,1.09329,1.09365,1.0926,1.09309,5781 +2020-05-19 13:45,1.09309,1.09358,1.09273,1.09344,6099 +2020-05-19 14:00,1.09343,1.09408,1.09291,1.09361,5368 +2020-05-19 14:15,1.09362,1.09424,1.0931,1.0938,5827 +2020-05-19 14:30,1.09381,1.09428,1.09345,1.09356,4248 +2020-05-19 14:45,1.09356,1.09495,1.09345,1.09479,5329 +2020-05-19 15:00,1.09478,1.09486,1.09344,1.0935,4465 +2020-05-19 15:15,1.09348,1.09396,1.09278,1.09284,4190 +2020-05-19 15:30,1.09284,1.09297,1.09242,1.09295,3457 +2020-05-19 15:45,1.09295,1.09378,1.09285,1.09365,2927 +2020-05-19 16:00,1.09365,1.09376,1.09316,1.09359,1736 +2020-05-19 16:15,1.09358,1.09377,1.09319,1.09352,1592 +2020-05-19 16:30,1.09352,1.09352,1.09278,1.09285,1615 +2020-05-19 16:45,1.09285,1.09316,1.09284,1.09292,2113 +2020-05-19 17:00,1.09293,1.09308,1.09264,1.09308,1471 +2020-05-19 17:15,1.09307,1.09351,1.09304,1.09325,2034 +2020-05-19 17:30,1.09325,1.09357,1.0932,1.09356,1159 +2020-05-19 17:45,1.09355,1.09406,1.09339,1.09397,1599 +2020-05-19 18:00,1.09396,1.09447,1.09373,1.09442,2175 +2020-05-19 18:15,1.09443,1.0954,1.09442,1.09535,2201 +2020-05-19 18:30,1.09534,1.09536,1.09491,1.09501,1620 +2020-05-19 18:45,1.09502,1.09526,1.09455,1.09463,2185 +2020-05-19 19:00,1.09462,1.09476,1.09376,1.09386,2971 +2020-05-19 19:15,1.09387,1.09406,1.0935,1.09365,1909 +2020-05-19 19:30,1.09363,1.09386,1.09303,1.09356,2347 +2020-05-19 19:45,1.09358,1.0936,1.09251,1.09256,3053 +2020-05-19 20:00,1.09256,1.09274,1.09185,1.09233,1683 +2020-05-19 20:15,1.09233,1.09241,1.09219,1.09226,520 +2020-05-19 20:30,1.09225,1.09244,1.09216,1.09228,567 +2020-05-19 20:45,1.09226,1.09247,1.09221,1.09221,518 +2020-05-19 21:00,1.09219,1.09309,1.09199,1.09223,680 +2020-05-19 21:15,1.09224,1.09224,1.09206,1.09209,172 +2020-05-19 21:30,1.09207,1.0921,1.09186,1.09206,617 +2020-05-19 21:45,1.09207,1.09213,1.09202,1.09211,243 +2020-05-19 22:00,1.09211,1.09228,1.09186,1.09212,1319 +2020-05-19 22:15,1.09212,1.0923,1.09206,1.09229,395 +2020-05-19 22:30,1.09228,1.09249,1.09215,1.09244,1385 +2020-05-19 22:45,1.09244,1.09248,1.09236,1.09242,402 +2020-05-19 23:00,1.09241,1.09249,1.09226,1.09244,875 +2020-05-19 23:15,1.09245,1.09259,1.09239,1.09258,609 +2020-05-19 23:30,1.09258,1.09273,1.09254,1.09272,610 +2020-05-19 23:45,1.09271,1.09273,1.0926,1.0926,574 +2020-05-20 00:00,1.09262,1.09315,1.09262,1.09311,1301 +2020-05-20 00:15,1.09311,1.09318,1.09299,1.09311,886 +2020-05-20 00:30,1.09311,1.09341,1.09311,1.09338,829 +2020-05-20 00:45,1.09339,1.09395,1.09334,1.09382,935 +2020-05-20 01:00,1.09381,1.09394,1.09371,1.09375,1126 +2020-05-20 01:15,1.09373,1.09448,1.09366,1.09417,1502 +2020-05-20 01:30,1.09416,1.09428,1.09397,1.09422,1970 +2020-05-20 01:45,1.09422,1.09444,1.0941,1.09437,1424 +2020-05-20 02:00,1.09438,1.09452,1.09401,1.09404,1401 +2020-05-20 02:15,1.09403,1.09403,1.09365,1.09385,1656 +2020-05-20 02:30,1.09386,1.09409,1.09379,1.09398,1162 +2020-05-20 02:45,1.09397,1.09409,1.09357,1.0937,1213 +2020-05-20 03:00,1.09371,1.09404,1.0937,1.09404,885 +2020-05-20 03:15,1.09405,1.09439,1.094,1.09437,617 +2020-05-20 03:30,1.09436,1.09467,1.09417,1.09418,1260 +2020-05-20 03:45,1.09417,1.09417,1.09393,1.09403,924 +2020-05-20 04:00,1.09402,1.0942,1.09392,1.09419,1053 +2020-05-20 04:15,1.09419,1.0942,1.09399,1.094,1157 +2020-05-20 04:30,1.09401,1.09404,1.09388,1.09393,688 +2020-05-20 04:45,1.09393,1.09411,1.09374,1.0941,908 +2020-05-20 05:00,1.0941,1.09435,1.0941,1.09425,780 +2020-05-20 05:15,1.09426,1.09436,1.094,1.09436,787 +2020-05-20 05:30,1.09435,1.09436,1.09413,1.09422,926 +2020-05-20 05:45,1.09422,1.09456,1.09422,1.0943,947 +2020-05-20 06:00,1.0943,1.09491,1.09416,1.0944,2064 +2020-05-20 06:15,1.09441,1.09454,1.09396,1.09415,2159 +2020-05-20 06:30,1.09414,1.09453,1.0938,1.09403,2264 +2020-05-20 06:45,1.09404,1.09481,1.09389,1.09421,2519 +2020-05-20 07:00,1.09421,1.096,1.09415,1.0956,5508 +2020-05-20 07:15,1.09562,1.09568,1.09492,1.09495,3013 +2020-05-20 07:30,1.09495,1.09506,1.09424,1.0946,2851 +2020-05-20 07:45,1.0946,1.0946,1.09379,1.09425,2786 +2020-05-20 08:00,1.09426,1.09466,1.09404,1.09436,2758 +2020-05-20 08:15,1.09437,1.09451,1.09414,1.09426,2361 +2020-05-20 08:30,1.09427,1.09452,1.09404,1.09434,2279 +2020-05-20 08:45,1.09437,1.09472,1.09409,1.0942,3216 +2020-05-20 09:00,1.09422,1.09466,1.09385,1.09463,3038 +2020-05-20 09:15,1.09464,1.09562,1.09445,1.09536,3156 +2020-05-20 09:30,1.09534,1.09551,1.09502,1.09522,2370 +2020-05-20 09:45,1.09523,1.09523,1.09475,1.09502,2843 +2020-05-20 10:00,1.09503,1.09516,1.09398,1.09403,3560 +2020-05-20 10:15,1.09403,1.09475,1.09396,1.09446,2720 +2020-05-20 10:30,1.09448,1.09448,1.0938,1.09423,3142 +2020-05-20 10:45,1.09422,1.09538,1.0938,1.09537,3409 +2020-05-20 11:00,1.09537,1.09631,1.0953,1.096,3657 +2020-05-20 11:15,1.096,1.09605,1.09519,1.09525,3047 +2020-05-20 11:30,1.09525,1.09581,1.09501,1.09576,1861 +2020-05-20 11:45,1.09577,1.09652,1.09549,1.0964,3371 +2020-05-20 12:00,1.09642,1.09665,1.09552,1.09582,3576 +2020-05-20 12:15,1.09584,1.09626,1.09566,1.09613,2747 +2020-05-20 12:30,1.09613,1.09633,1.09492,1.09561,4210 +2020-05-20 12:45,1.09561,1.09666,1.09545,1.0965,3703 +2020-05-20 13:00,1.09649,1.09775,1.09621,1.09761,5186 +2020-05-20 13:15,1.09762,1.09816,1.09745,1.09771,3459 +2020-05-20 13:30,1.09771,1.09777,1.09676,1.09694,4541 +2020-05-20 13:45,1.09694,1.09834,1.09688,1.09811,4670 +2020-05-20 14:00,1.0981,1.09959,1.09776,1.09953,5678 +2020-05-20 14:15,1.09954,1.09989,1.09909,1.09914,5575 +2020-05-20 14:30,1.09915,1.09954,1.09855,1.09936,5148 +2020-05-20 14:45,1.09938,1.09952,1.0986,1.09911,4904 +2020-05-20 15:00,1.09912,1.09957,1.09862,1.0987,4370 +2020-05-20 15:15,1.09871,1.09954,1.09867,1.09937,3235 +2020-05-20 15:30,1.09936,1.09946,1.09829,1.09839,3491 +2020-05-20 15:45,1.0984,1.0988,1.09769,1.09793,3976 +2020-05-20 16:00,1.09792,1.09806,1.0974,1.09785,3341 +2020-05-20 16:15,1.09785,1.09795,1.09711,1.09752,2695 +2020-05-20 16:30,1.09751,1.09768,1.09722,1.09757,3145 +2020-05-20 16:45,1.09756,1.09803,1.09731,1.09756,3930 +2020-05-20 17:00,1.09756,1.09781,1.09731,1.09764,3045 +2020-05-20 17:15,1.09767,1.09819,1.09753,1.09803,2975 +2020-05-20 17:30,1.09803,1.09874,1.09802,1.09874,2352 +2020-05-20 17:45,1.09876,1.09888,1.09803,1.09804,2003 +2020-05-20 18:00,1.09806,1.09874,1.09787,1.09833,3151 +2020-05-20 18:15,1.09832,1.09877,1.09813,1.09862,2352 +2020-05-20 18:30,1.09861,1.0992,1.09858,1.09881,2396 +2020-05-20 18:45,1.09881,1.09883,1.0985,1.09856,1904 +2020-05-20 19:00,1.09855,1.09874,1.09826,1.09843,1839 +2020-05-20 19:15,1.09845,1.09847,1.09819,1.09826,1609 +2020-05-20 19:30,1.09826,1.09837,1.09807,1.09825,1783 +2020-05-20 19:45,1.09826,1.09843,1.09802,1.09812,1330 +2020-05-20 20:00,1.09813,1.09816,1.09748,1.09764,742 +2020-05-20 20:15,1.09763,1.09815,1.09763,1.09792,412 +2020-05-20 20:30,1.09792,1.09792,1.09773,1.0978,355 +2020-05-20 20:45,1.0978,1.09796,1.09771,1.09771,442 +2020-05-20 21:00,1.09769,1.09819,1.09769,1.09799,477 +2020-05-20 21:15,1.09799,1.09802,1.09793,1.09796,162 +2020-05-20 21:30,1.09796,1.09796,1.09763,1.09771,830 +2020-05-20 21:45,1.09769,1.0978,1.09768,1.09779,498 +2020-05-20 22:00,1.09779,1.09814,1.09779,1.09797,463 +2020-05-20 22:15,1.09798,1.09804,1.09785,1.09792,477 +2020-05-20 22:30,1.09792,1.09803,1.09786,1.09786,351 +2020-05-20 22:45,1.09786,1.09798,1.09782,1.0979,258 +2020-05-20 23:00,1.09789,1.09806,1.09789,1.09795,397 +2020-05-20 23:15,1.09797,1.09806,1.09794,1.09796,261 +2020-05-20 23:30,1.09797,1.098,1.0979,1.0979,284 +2020-05-20 23:45,1.09791,1.09802,1.09786,1.09796,258 +2020-05-21 00:00,1.09794,1.09795,1.09731,1.09751,1390 +2020-05-21 00:15,1.0975,1.09753,1.09709,1.09716,988 +2020-05-21 00:30,1.09714,1.09743,1.09698,1.09732,978 +2020-05-21 00:45,1.09733,1.09743,1.0968,1.09682,1386 +2020-05-21 01:00,1.09682,1.09687,1.09651,1.09658,1485 +2020-05-21 01:15,1.09659,1.09687,1.09655,1.09662,1310 +2020-05-21 01:30,1.09662,1.09662,1.09568,1.09612,2286 +2020-05-21 01:45,1.09613,1.09621,1.0959,1.09612,1501 +2020-05-21 02:00,1.09611,1.09617,1.09565,1.09591,1414 +2020-05-21 02:15,1.09591,1.09606,1.09586,1.09595,854 +2020-05-21 02:30,1.09596,1.09603,1.09576,1.09603,744 +2020-05-21 02:45,1.09602,1.09637,1.09601,1.09631,1011 +2020-05-21 03:00,1.09631,1.09637,1.09616,1.09626,1032 +2020-05-21 03:15,1.09626,1.09638,1.09621,1.09635,556 +2020-05-21 03:30,1.09632,1.09632,1.09584,1.09592,847 +2020-05-21 03:45,1.09594,1.09625,1.09594,1.09608,724 +2020-05-21 04:00,1.09607,1.09628,1.09602,1.0962,630 +2020-05-21 04:15,1.09621,1.09629,1.09605,1.09625,408 +2020-05-21 04:30,1.09625,1.0964,1.0962,1.09632,717 +2020-05-21 04:45,1.09631,1.09631,1.09597,1.09607,678 +2020-05-21 05:00,1.09605,1.09612,1.0959,1.0959,823 +2020-05-21 05:15,1.09591,1.09595,1.09562,1.09562,861 +2020-05-21 05:30,1.09562,1.09562,1.09524,1.09537,928 +2020-05-21 05:45,1.09537,1.09557,1.09523,1.09547,1189 +2020-05-21 06:00,1.09546,1.09626,1.09545,1.09616,1663 +2020-05-21 06:15,1.09616,1.09616,1.09529,1.09587,2390 +2020-05-21 06:30,1.09587,1.09637,1.09575,1.09637,1742 +2020-05-21 06:45,1.09637,1.09672,1.09616,1.09668,1666 +2020-05-21 07:00,1.09668,1.09757,1.09647,1.09721,3583 +2020-05-21 07:15,1.0972,1.09789,1.09682,1.09697,3092 +2020-05-21 07:30,1.09701,1.09702,1.09588,1.09588,2964 +2020-05-21 07:45,1.09587,1.09687,1.09565,1.09674,2444 +2020-05-21 08:00,1.09674,1.09726,1.09662,1.09698,2298 +2020-05-21 08:15,1.09699,1.09702,1.09622,1.09694,2299 +2020-05-21 08:30,1.09696,1.09732,1.09671,1.09713,3603 +2020-05-21 08:45,1.09715,1.09732,1.09689,1.09721,2538 +2020-05-21 09:00,1.09722,1.09758,1.0971,1.09736,2959 +2020-05-21 09:15,1.09737,1.0976,1.0965,1.09676,3046 +2020-05-21 09:30,1.09676,1.09676,1.09628,1.09665,2955 +2020-05-21 09:45,1.09665,1.09665,1.09602,1.09607,2405 +2020-05-21 10:00,1.09608,1.09673,1.09606,1.09662,2418 +2020-05-21 10:15,1.09662,1.09707,1.09654,1.09704,2120 +2020-05-21 10:30,1.09707,1.09806,1.0968,1.09805,3047 +2020-05-21 10:45,1.09806,1.09924,1.09804,1.09849,3390 +2020-05-21 11:00,1.0985,1.09958,1.09832,1.09933,3370 +2020-05-21 11:15,1.09934,1.10001,1.09906,1.09972,3476 +2020-05-21 11:30,1.09973,1.0998,1.09911,1.09962,2604 +2020-05-21 11:45,1.09963,1.10033,1.09907,1.09936,3422 +2020-05-21 12:00,1.09939,1.1,1.09937,1.09993,2787 +2020-05-21 12:15,1.09998,1.10083,1.09992,1.10055,3099 +2020-05-21 12:30,1.10056,1.10083,1.09994,1.10027,3534 +2020-05-21 12:45,1.10028,1.10059,1.09824,1.09954,4397 +2020-05-21 13:00,1.09953,1.09954,1.0979,1.098,4267 +2020-05-21 13:15,1.098,1.0982,1.09672,1.09815,4409 +2020-05-21 13:30,1.09814,1.09893,1.09771,1.09872,4396 +2020-05-21 13:45,1.09872,1.09905,1.09812,1.0986,2585 +2020-05-21 14:00,1.09859,1.09891,1.09773,1.09796,2697 +2020-05-21 14:15,1.09796,1.09848,1.09721,1.09731,3447 +2020-05-21 14:30,1.09729,1.09729,1.0955,1.09588,4481 +2020-05-21 14:45,1.0959,1.09602,1.09371,1.09389,5663 +2020-05-21 15:00,1.09389,1.09495,1.09386,1.09494,3879 +2020-05-21 15:15,1.09494,1.09535,1.09425,1.09512,2489 +2020-05-21 15:30,1.09511,1.09569,1.09483,1.09553,2297 +2020-05-21 15:45,1.09552,1.09588,1.09515,1.09515,1300 +2020-05-21 16:00,1.09516,1.09538,1.09502,1.09519,1448 +2020-05-21 16:15,1.0952,1.09576,1.09507,1.0955,1163 +2020-05-21 16:30,1.09552,1.09571,1.09531,1.09558,1200 +2020-05-21 16:45,1.09558,1.09586,1.09533,1.09548,1173 +2020-05-21 17:00,1.09549,1.09685,1.09548,1.09648,1939 +2020-05-21 17:15,1.09649,1.09651,1.09579,1.09619,1579 +2020-05-21 17:30,1.09618,1.09632,1.09583,1.09631,1559 +2020-05-21 17:45,1.09633,1.09634,1.09562,1.09579,1331 +2020-05-21 18:00,1.0958,1.09594,1.09562,1.09582,1517 +2020-05-21 18:15,1.09581,1.09585,1.09552,1.09568,768 +2020-05-21 18:30,1.09568,1.09592,1.09532,1.09537,982 +2020-05-21 18:45,1.09537,1.09563,1.09503,1.09555,1678 +2020-05-21 19:00,1.09554,1.09595,1.09553,1.09582,1149 +2020-05-21 19:15,1.09576,1.09615,1.0957,1.09594,1163 +2020-05-21 19:30,1.09598,1.09615,1.09462,1.09487,1708 +2020-05-21 19:45,1.09487,1.09527,1.09468,1.09495,1487 +2020-05-21 20:00,1.09494,1.09497,1.09417,1.09442,1052 +2020-05-21 20:15,1.09442,1.09469,1.09442,1.09463,513 +2020-05-21 20:30,1.09463,1.09475,1.09447,1.09474,316 +2020-05-21 20:45,1.09475,1.09502,1.0946,1.09484,719 +2020-05-21 21:00,1.09472,1.09518,1.09472,1.09478,238 +2020-05-21 21:15,1.09476,1.09488,1.09466,1.09476,537 +2020-05-21 21:30,1.09474,1.09478,1.09468,1.09472,218 +2020-05-21 21:45,1.09471,1.09478,1.09468,1.09472,556 +2020-05-21 22:00,1.09474,1.09517,1.09468,1.09513,542 +2020-05-21 22:15,1.09512,1.09519,1.09491,1.09517,509 +2020-05-21 22:30,1.09517,1.09528,1.0951,1.09519,316 +2020-05-21 22:45,1.0952,1.09523,1.09501,1.09505,380 +2020-05-21 23:00,1.09506,1.09518,1.09491,1.09498,654 +2020-05-21 23:15,1.09499,1.09513,1.09494,1.09497,351 +2020-05-21 23:30,1.09497,1.09502,1.09482,1.09487,447 +2020-05-21 23:45,1.09486,1.09504,1.09484,1.0949,728 +2020-05-22 00:00,1.09491,1.09519,1.09478,1.09495,1049 +2020-05-22 00:15,1.09494,1.09535,1.09488,1.0953,1083 +2020-05-22 00:30,1.09531,1.09535,1.09512,1.09512,867 +2020-05-22 00:45,1.09513,1.09523,1.09464,1.09476,1269 +2020-05-22 01:00,1.09475,1.09489,1.09445,1.09478,1836 +2020-05-22 01:15,1.09477,1.09514,1.09477,1.09503,1395 +2020-05-22 01:30,1.09506,1.09508,1.09462,1.09467,984 +2020-05-22 01:45,1.09468,1.0948,1.09452,1.09463,1263 +2020-05-22 02:00,1.09463,1.09463,1.09391,1.09397,1665 +2020-05-22 02:15,1.09397,1.09413,1.09362,1.09377,1556 +2020-05-22 02:30,1.09378,1.09406,1.09369,1.09405,1054 +2020-05-22 02:45,1.09405,1.0942,1.0938,1.09413,1311 +2020-05-22 03:00,1.09413,1.0943,1.09395,1.09409,963 +2020-05-22 03:15,1.09408,1.09411,1.09339,1.09348,1272 +2020-05-22 03:30,1.09349,1.09356,1.09299,1.09299,1830 +2020-05-22 03:45,1.093,1.09349,1.093,1.09347,1379 +2020-05-22 04:00,1.09346,1.09346,1.09272,1.0931,1422 +2020-05-22 04:15,1.0931,1.0931,1.09271,1.09299,1045 +2020-05-22 04:30,1.09298,1.09324,1.09296,1.09301,1225 +2020-05-22 04:45,1.093,1.09309,1.0929,1.09294,1003 +2020-05-22 05:00,1.09294,1.09297,1.09188,1.09235,1745 +2020-05-22 05:15,1.09236,1.09245,1.09217,1.0922,1224 +2020-05-22 05:30,1.09221,1.09259,1.09216,1.09255,1118 +2020-05-22 05:45,1.09255,1.09291,1.09245,1.09276,1327 +2020-05-22 06:00,1.09275,1.09322,1.09259,1.09284,2175 +2020-05-22 06:15,1.09284,1.09306,1.09215,1.09264,1832 +2020-05-22 06:30,1.09264,1.09289,1.09242,1.09264,2508 +2020-05-22 06:45,1.09264,1.09273,1.09247,1.09266,1689 +2020-05-22 07:00,1.09266,1.09285,1.09131,1.09158,3624 +2020-05-22 07:15,1.09157,1.0918,1.09131,1.09145,2771 +2020-05-22 07:30,1.09147,1.09175,1.09131,1.09166,2672 +2020-05-22 07:45,1.09165,1.0917,1.0904,1.0904,2941 +2020-05-22 08:00,1.0904,1.09074,1.0901,1.09061,2754 +2020-05-22 08:15,1.09061,1.09124,1.09035,1.0907,2383 +2020-05-22 08:30,1.09073,1.09121,1.09051,1.09063,2673 +2020-05-22 08:45,1.09062,1.09075,1.08961,1.08993,3159 +2020-05-22 09:00,1.08992,1.09001,1.08941,1.08998,2273 +2020-05-22 09:15,1.08998,1.09072,1.08991,1.09033,2445 +2020-05-22 09:30,1.09033,1.09062,1.09006,1.09038,2711 +2020-05-22 09:45,1.09038,1.09041,1.08871,1.0892,3073 +2020-05-22 10:00,1.08921,1.08985,1.08895,1.08967,2575 +2020-05-22 10:15,1.08967,1.08991,1.08894,1.08981,2771 +2020-05-22 10:30,1.08982,1.09,1.08943,1.08987,2521 +2020-05-22 10:45,1.08987,1.09057,1.08983,1.09031,2537 +2020-05-22 11:00,1.09031,1.09132,1.09009,1.09111,2569 +2020-05-22 11:15,1.09111,1.09132,1.09055,1.09079,1980 +2020-05-22 11:30,1.0908,1.09085,1.09027,1.09044,2006 +2020-05-22 11:45,1.09045,1.09061,1.08973,1.09055,2973 +2020-05-22 12:00,1.09055,1.09086,1.09028,1.09039,2080 +2020-05-22 12:15,1.09038,1.09043,1.08997,1.09002,1950 +2020-05-22 12:30,1.09,1.09065,1.08993,1.09019,2115 +2020-05-22 12:45,1.09018,1.09034,1.08981,1.08982,1928 +2020-05-22 13:00,1.08982,1.09004,1.08951,1.08951,2290 +2020-05-22 13:15,1.08951,1.09044,1.08941,1.09036,2452 +2020-05-22 13:30,1.09038,1.09042,1.08939,1.08979,3655 +2020-05-22 13:45,1.08977,1.08982,1.08911,1.08962,3788 +2020-05-22 14:00,1.08961,1.09002,1.08943,1.08973,3577 +2020-05-22 14:15,1.08973,1.09018,1.08961,1.08969,2682 +2020-05-22 14:30,1.08969,1.09035,1.08964,1.08979,3749 +2020-05-22 14:45,1.08978,1.09016,1.08852,1.08906,3911 +2020-05-22 15:00,1.08906,1.0896,1.08891,1.08955,2450 +2020-05-22 15:15,1.08955,1.08985,1.08902,1.0895,2311 +2020-05-22 15:30,1.08949,1.08995,1.08938,1.08945,2086 +2020-05-22 15:45,1.08946,1.08954,1.08907,1.0893,1395 +2020-05-22 16:00,1.08932,1.08945,1.08908,1.08924,1318 +2020-05-22 16:15,1.08925,1.08935,1.08895,1.089,1155 +2020-05-22 16:30,1.08899,1.08926,1.08873,1.08924,1530 +2020-05-22 16:45,1.08925,1.08931,1.08874,1.0888,1660 +2020-05-22 17:00,1.08877,1.08937,1.08876,1.08903,1746 +2020-05-22 17:15,1.08903,1.08932,1.08899,1.08931,1013 +2020-05-22 17:30,1.08931,1.08946,1.08901,1.08919,964 +2020-05-22 17:45,1.0892,1.08937,1.08889,1.08927,1152 +2020-05-22 18:00,1.08927,1.08993,1.08926,1.08989,1847 +2020-05-22 18:15,1.08989,1.09004,1.0898,1.09001,1399 +2020-05-22 18:30,1.09001,1.09003,1.08974,1.08984,760 +2020-05-22 18:45,1.08983,1.08991,1.08969,1.08972,768 +2020-05-22 19:00,1.08973,1.09057,1.08972,1.09025,1319 +2020-05-22 19:15,1.09025,1.09028,1.08961,1.08972,917 +2020-05-22 19:30,1.08972,1.09007,1.08968,1.09,742 +2020-05-22 19:45,1.09001,1.09042,1.08999,1.09038,818 +2020-05-22 20:00,1.09038,1.09043,1.09023,1.09029,809 +2020-05-22 20:15,1.09028,1.09028,1.09001,1.09009,431 +2020-05-22 20:30,1.0901,1.09038,1.09002,1.09025,276 +2020-05-22 20:45,1.09026,1.09037,1.0898,1.0898,1092 +2020-05-24 21:00,1.08956,1.08998,1.08956,1.08959,45 +2020-05-24 21:15,1.08962,1.08976,1.08951,1.08975,81 +2020-05-24 21:30,1.08975,1.08976,1.08967,1.08967,66 +2020-05-24 21:45,1.08967,1.08973,1.08959,1.08959,26 +2020-05-24 22:00,1.08973,1.08998,1.08959,1.08966,866 +2020-05-24 22:15,1.08967,1.09011,1.08967,1.0901,266 +2020-05-24 22:30,1.09011,1.09019,1.08991,1.09005,280 +2020-05-24 22:45,1.09006,1.09054,1.09004,1.09039,515 +2020-05-24 23:00,1.0904,1.0905,1.09031,1.09039,401 +2020-05-24 23:15,1.09039,1.09072,1.09025,1.09066,561 +2020-05-24 23:30,1.09067,1.09082,1.09058,1.09064,536 +2020-05-24 23:45,1.09064,1.09083,1.09053,1.09079,442 +2020-05-25 00:00,1.0908,1.09086,1.09026,1.09044,731 +2020-05-25 00:15,1.09045,1.09057,1.09042,1.09053,446 +2020-05-25 00:30,1.09054,1.09079,1.0904,1.09041,419 +2020-05-25 00:45,1.09041,1.09048,1.0901,1.09015,426 +2020-05-25 01:00,1.09018,1.09024,1.08969,1.08976,947 +2020-05-25 01:15,1.08976,1.09,1.08971,1.0898,776 +2020-05-25 01:30,1.08981,1.08986,1.08929,1.08943,1477 +2020-05-25 01:45,1.08944,1.08951,1.08923,1.0894,1033 +2020-05-25 02:00,1.08941,1.08952,1.08933,1.08937,808 +2020-05-25 02:15,1.08937,1.08967,1.08928,1.08958,519 +2020-05-25 02:30,1.08959,1.0896,1.0892,1.08923,518 +2020-05-25 02:45,1.08923,1.08932,1.08872,1.08874,1020 +2020-05-25 03:00,1.08876,1.08922,1.08876,1.08917,775 +2020-05-25 03:15,1.08918,1.08922,1.08897,1.08901,481 +2020-05-25 03:30,1.08901,1.08902,1.08881,1.08885,381 +2020-05-25 03:45,1.08885,1.08899,1.0888,1.08895,337 +2020-05-25 04:00,1.08896,1.08905,1.08887,1.08903,258 +2020-05-25 04:15,1.08903,1.08905,1.08891,1.08895,333 +2020-05-25 04:30,1.08894,1.08903,1.08889,1.08895,299 +2020-05-25 04:45,1.08896,1.08908,1.08895,1.08905,416 +2020-05-25 05:00,1.08906,1.08931,1.08905,1.08929,306 +2020-05-25 05:15,1.08927,1.08932,1.08922,1.08922,227 +2020-05-25 05:30,1.08923,1.08923,1.08876,1.08879,555 +2020-05-25 05:45,1.0888,1.08883,1.08866,1.0888,493 +2020-05-25 06:00,1.08879,1.08903,1.0881,1.08814,1512 +2020-05-25 06:15,1.08813,1.08834,1.08749,1.0879,1828 +2020-05-25 06:30,1.08789,1.08803,1.08754,1.08789,1165 +2020-05-25 06:45,1.08788,1.08799,1.08742,1.08786,1283 +2020-05-25 07:00,1.08786,1.0882,1.08741,1.08746,1424 +2020-05-25 07:15,1.08747,1.08776,1.08706,1.08774,1636 +2020-05-25 07:30,1.08774,1.08806,1.08756,1.08794,1888 +2020-05-25 07:45,1.08794,1.08806,1.08756,1.08758,1846 +2020-05-25 08:00,1.08758,1.08823,1.08755,1.08804,1846 +2020-05-25 08:15,1.08804,1.08829,1.08797,1.08821,1619 +2020-05-25 08:30,1.08819,1.08871,1.08818,1.08856,1635 +2020-05-25 08:45,1.08855,1.08911,1.0885,1.08891,2135 +2020-05-25 09:00,1.08891,1.08946,1.08884,1.08935,1521 +2020-05-25 09:15,1.08936,1.08962,1.08914,1.08955,1577 +2020-05-25 09:30,1.08955,1.08986,1.08955,1.08981,1463 +2020-05-25 09:45,1.08982,1.09022,1.08979,1.09017,1334 +2020-05-25 10:00,1.09016,1.09035,1.08987,1.08995,2082 +2020-05-25 10:15,1.08996,1.09025,1.08992,1.09009,1360 +2020-05-25 10:30,1.09008,1.09042,1.09007,1.09041,1294 +2020-05-25 10:45,1.09042,1.09042,1.08998,1.09002,1048 +2020-05-25 11:00,1.09003,1.09005,1.08939,1.08972,1615 +2020-05-25 11:15,1.08973,1.08984,1.08956,1.08975,1156 +2020-05-25 11:30,1.08976,1.09013,1.08975,1.08996,1225 +2020-05-25 11:45,1.08996,1.09138,1.08991,1.09133,2255 +2020-05-25 12:00,1.09134,1.09144,1.0908,1.09093,2034 +2020-05-25 12:15,1.09096,1.09106,1.09079,1.09081,869 +2020-05-25 12:30,1.09083,1.09083,1.09037,1.09052,818 +2020-05-25 12:45,1.09052,1.09064,1.09031,1.09042,1128 +2020-05-25 13:00,1.09041,1.09101,1.08991,1.08996,5866 +2020-05-25 13:15,1.08999,1.09009,1.08967,1.08981,1656 +2020-05-25 13:30,1.08982,1.0901,1.08931,1.08935,1961 +2020-05-25 13:45,1.08935,1.08983,1.08913,1.08951,2722 +2020-05-25 14:00,1.08951,1.08952,1.08898,1.08921,1891 +2020-05-25 14:15,1.08921,1.08962,1.08913,1.0893,1670 +2020-05-25 14:30,1.08931,1.08999,1.0893,1.08957,1512 +2020-05-25 14:45,1.08958,1.08978,1.08917,1.08925,1551 +2020-05-25 15:00,1.08925,1.08977,1.08922,1.08977,1631 +2020-05-25 15:15,1.08976,1.08992,1.08948,1.08975,1169 +2020-05-25 15:30,1.08974,1.08976,1.08928,1.08936,1288 +2020-05-25 15:45,1.08936,1.08968,1.08936,1.08951,924 +2020-05-25 16:00,1.08951,1.08967,1.0894,1.0894,1037 +2020-05-25 16:15,1.08941,1.08963,1.08927,1.08963,505 +2020-05-25 16:30,1.08963,1.08971,1.08937,1.08962,392 +2020-05-25 16:45,1.08962,1.0897,1.08915,1.08932,645 +2020-05-25 17:00,1.08933,1.08958,1.08923,1.08946,1653 +2020-05-25 17:15,1.08946,1.08968,1.08933,1.08964,1671 +2020-05-25 17:30,1.08964,1.08971,1.08956,1.08963,879 +2020-05-25 17:45,1.08963,1.0898,1.08963,1.08976,345 +2020-05-25 18:00,1.08974,1.08975,1.08966,1.08967,1717 +2020-05-25 18:15,1.08966,1.08976,1.08965,1.08968,414 +2020-05-25 18:30,1.08968,1.0897,1.08966,1.08968,196 +2020-05-25 18:45,1.08968,1.08985,1.08965,1.08982,281 +2020-05-25 19:00,1.08981,1.08993,1.08964,1.08975,857 +2020-05-25 19:15,1.08975,1.08994,1.08956,1.08979,1042 +2020-05-25 19:30,1.0898,1.08983,1.08962,1.08982,210 +2020-05-25 19:45,1.08982,1.08982,1.0896,1.08963,173 +2020-05-25 20:00,1.08963,1.08971,1.08938,1.08964,304 +2020-05-25 20:15,1.08963,1.08969,1.08951,1.08952,407 +2020-05-25 20:30,1.08953,1.08963,1.08953,1.08958,293 +2020-05-25 20:45,1.08958,1.08971,1.08949,1.0895,478 +2020-05-25 21:00,1.0895,1.08969,1.08945,1.08949,163 +2020-05-25 21:15,1.08949,1.08958,1.08945,1.08958,143 +2020-05-25 21:30,1.08956,1.08958,1.08929,1.08956,486 +2020-05-25 21:45,1.08939,1.08958,1.08919,1.08936,634 +2020-05-25 22:00,1.08937,1.08951,1.08924,1.08935,487 +2020-05-25 22:15,1.08936,1.08941,1.08923,1.08929,404 +2020-05-25 22:30,1.0893,1.08946,1.0893,1.08945,223 +2020-05-25 22:45,1.08946,1.0895,1.08939,1.08947,268 +2020-05-25 23:00,1.08946,1.08972,1.08945,1.0897,670 +2020-05-25 23:15,1.0897,1.08978,1.08965,1.08975,458 +2020-05-25 23:30,1.08975,1.08994,1.08974,1.08992,373 +2020-05-25 23:45,1.08992,1.09017,1.08992,1.09016,570 +2020-05-26 00:00,1.09015,1.0902,1.08995,1.09012,1024 +2020-05-26 00:15,1.09013,1.09039,1.08969,1.08985,1312 +2020-05-26 00:30,1.08984,1.09103,1.08984,1.09099,1832 +2020-05-26 00:45,1.091,1.09102,1.09069,1.09097,1843 +2020-05-26 01:00,1.09099,1.09138,1.09086,1.09113,2179 +2020-05-26 01:15,1.09113,1.09127,1.09091,1.09114,1858 +2020-05-26 01:30,1.09114,1.09127,1.0908,1.09127,1503 +2020-05-26 01:45,1.09126,1.09143,1.09109,1.09122,1550 +2020-05-26 02:00,1.09123,1.09142,1.09122,1.09123,1265 +2020-05-26 02:15,1.09126,1.09127,1.09091,1.09103,1269 +2020-05-26 02:30,1.09104,1.09113,1.09077,1.09107,1023 +2020-05-26 02:45,1.09109,1.09122,1.091,1.09119,800 +2020-05-26 03:00,1.09117,1.09138,1.09106,1.09106,1018 +2020-05-26 03:15,1.09106,1.09137,1.09106,1.09131,871 +2020-05-26 03:30,1.09135,1.09197,1.09124,1.09175,1248 +2020-05-26 03:45,1.09174,1.09189,1.09164,1.09181,1160 +2020-05-26 04:00,1.0918,1.09191,1.0917,1.09175,893 +2020-05-26 04:15,1.09176,1.09187,1.09165,1.09187,747 +2020-05-26 04:30,1.09189,1.09218,1.09184,1.09204,1022 +2020-05-26 04:45,1.09205,1.09219,1.0919,1.09192,818 +2020-05-26 05:00,1.09192,1.09196,1.09176,1.09183,660 +2020-05-26 05:15,1.09183,1.09185,1.09172,1.09176,740 +2020-05-26 05:30,1.09174,1.09197,1.09167,1.09172,769 +2020-05-26 05:45,1.09174,1.09222,1.0916,1.09221,1225 +2020-05-26 06:00,1.09221,1.09289,1.09213,1.09282,2928 +2020-05-26 06:15,1.09282,1.09295,1.09242,1.09253,2497 +2020-05-26 06:30,1.09256,1.09278,1.09216,1.09223,1853 +2020-05-26 06:45,1.09223,1.0926,1.09176,1.09184,2143 +2020-05-26 07:00,1.09183,1.09366,1.09145,1.09354,3939 +2020-05-26 07:15,1.09355,1.09371,1.09284,1.09342,3827 +2020-05-26 07:30,1.09343,1.09387,1.09329,1.09333,3350 +2020-05-26 07:45,1.09333,1.09391,1.0932,1.09352,4384 +2020-05-26 08:00,1.09352,1.09429,1.09331,1.09404,3608 +2020-05-26 08:15,1.09405,1.09417,1.09376,1.09378,2530 +2020-05-26 08:30,1.09381,1.09495,1.09379,1.09482,3612 +2020-05-26 08:45,1.09484,1.09597,1.09455,1.09572,5074 +2020-05-26 09:00,1.09574,1.09731,1.09574,1.09691,5037 +2020-05-26 09:15,1.09693,1.09727,1.09613,1.0962,4291 +2020-05-26 09:30,1.09621,1.09666,1.09611,1.09629,2741 +2020-05-26 09:45,1.0963,1.09648,1.0959,1.09629,2704 +2020-05-26 10:00,1.09629,1.09651,1.09571,1.09595,2611 +2020-05-26 10:15,1.09594,1.09624,1.09547,1.09557,2775 +2020-05-26 10:30,1.09557,1.09566,1.09525,1.09536,3622 +2020-05-26 10:45,1.09536,1.09577,1.09516,1.09537,2945 +2020-05-26 11:00,1.09537,1.09589,1.09523,1.09572,2797 +2020-05-26 11:15,1.09573,1.09577,1.0952,1.09537,2176 +2020-05-26 11:30,1.09537,1.09618,1.09528,1.09603,2707 +2020-05-26 11:45,1.09603,1.098,1.09579,1.09783,4758 +2020-05-26 12:00,1.09785,1.09789,1.09727,1.09748,5303 +2020-05-26 12:15,1.09752,1.09757,1.09672,1.09678,3767 +2020-05-26 12:30,1.09681,1.09718,1.09615,1.09715,3541 +2020-05-26 12:45,1.09716,1.09747,1.09692,1.09707,2652 +2020-05-26 13:00,1.09706,1.09769,1.09695,1.09696,4461 +2020-05-26 13:15,1.09698,1.097,1.0964,1.09697,4442 +2020-05-26 13:30,1.097,1.09772,1.09671,1.09759,5171 +2020-05-26 13:45,1.09762,1.09801,1.0974,1.09794,5568 +2020-05-26 14:00,1.09793,1.09869,1.09731,1.09755,3880 +2020-05-26 14:15,1.09756,1.09823,1.09729,1.09732,2731 +2020-05-26 14:30,1.09733,1.09797,1.09725,1.09753,2791 +2020-05-26 14:45,1.09752,1.09898,1.09741,1.09867,5428 +2020-05-26 15:00,1.09868,1.09917,1.0981,1.09903,3546 +2020-05-26 15:15,1.09902,1.09907,1.09781,1.09787,2430 +2020-05-26 15:30,1.09787,1.09794,1.09752,1.09782,2564 +2020-05-26 15:45,1.09783,1.09789,1.09689,1.09692,2443 +2020-05-26 16:00,1.09692,1.09701,1.09678,1.09697,1841 +2020-05-26 16:15,1.09698,1.09719,1.09681,1.09685,1320 +2020-05-26 16:30,1.09684,1.09762,1.09684,1.09741,2177 +2020-05-26 16:45,1.09742,1.09767,1.09718,1.09763,2362 +2020-05-26 17:00,1.09764,1.09772,1.09704,1.09735,1656 +2020-05-26 17:15,1.09735,1.09847,1.09725,1.09811,2136 +2020-05-26 17:30,1.09811,1.09824,1.0978,1.09815,1230 +2020-05-26 17:45,1.09814,1.09814,1.0977,1.09789,1288 +2020-05-26 18:00,1.09789,1.09834,1.09786,1.09834,1200 +2020-05-26 18:15,1.09834,1.09868,1.09809,1.09857,917 +2020-05-26 18:30,1.09857,1.09908,1.09857,1.09896,2006 +2020-05-26 18:45,1.09898,1.09946,1.0989,1.09938,2236 +2020-05-26 19:00,1.09939,1.09957,1.0992,1.0992,1194 +2020-05-26 19:15,1.0992,1.09937,1.09905,1.09931,1038 +2020-05-26 19:30,1.09932,1.09936,1.09828,1.0983,2088 +2020-05-26 19:45,1.09829,1.09842,1.09785,1.09816,1392 +2020-05-26 20:00,1.0982,1.09875,1.09815,1.0987,842 +2020-05-26 20:15,1.0987,1.0989,1.09836,1.0984,823 +2020-05-26 20:30,1.09839,1.09849,1.09821,1.09838,584 +2020-05-26 20:45,1.09838,1.0984,1.09811,1.09816,677 +2020-05-26 21:00,1.09812,1.0983,1.09791,1.09791,696 +2020-05-26 21:15,1.09794,1.09829,1.09794,1.09825,756 +2020-05-26 21:30,1.09823,1.09827,1.09771,1.09794,1249 +2020-05-26 21:45,1.09796,1.09798,1.09748,1.09759,1726 +2020-05-26 22:00,1.09759,1.09821,1.09759,1.09794,955 +2020-05-26 22:15,1.09793,1.09824,1.09793,1.09818,573 +2020-05-26 22:30,1.09817,1.09819,1.09796,1.09817,331 +2020-05-26 22:45,1.09817,1.09822,1.09805,1.09819,342 +2020-05-26 23:00,1.09818,1.09833,1.09817,1.09823,715 +2020-05-26 23:15,1.09823,1.09834,1.09814,1.09831,963 +2020-05-26 23:30,1.09832,1.0985,1.09785,1.09792,1220 +2020-05-26 23:45,1.09793,1.09817,1.09783,1.09784,765 +2020-05-27 00:00,1.09785,1.09794,1.09727,1.09737,2322 +2020-05-27 00:15,1.09735,1.09745,1.09715,1.09727,1267 +2020-05-27 00:30,1.09727,1.09727,1.09704,1.09705,1223 +2020-05-27 00:45,1.09705,1.09724,1.09679,1.097,1948 +2020-05-27 01:00,1.097,1.09731,1.09697,1.09714,2386 +2020-05-27 01:15,1.09713,1.09743,1.09697,1.09697,1946 +2020-05-27 01:30,1.09697,1.09739,1.09678,1.09737,2023 +2020-05-27 01:45,1.09737,1.0975,1.09669,1.09672,1903 +2020-05-27 02:00,1.09673,1.09679,1.09621,1.09641,2148 +2020-05-27 02:15,1.09641,1.09641,1.09582,1.09607,2489 +2020-05-27 02:30,1.09607,1.09607,1.09551,1.09555,2232 +2020-05-27 02:45,1.09555,1.0961,1.09554,1.09596,2083 +2020-05-27 03:00,1.09598,1.09627,1.09592,1.09608,1692 +2020-05-27 03:15,1.09608,1.09625,1.096,1.09612,1250 +2020-05-27 03:30,1.09612,1.09632,1.09589,1.09622,1317 +2020-05-27 03:45,1.09621,1.09639,1.09612,1.09619,1210 +2020-05-27 04:00,1.09619,1.09626,1.09569,1.09588,1639 +2020-05-27 04:15,1.09588,1.09608,1.09584,1.09607,1124 +2020-05-27 04:30,1.09605,1.09605,1.09581,1.09582,815 +2020-05-27 04:45,1.09582,1.09582,1.09535,1.0955,1499 +2020-05-27 05:00,1.09549,1.09572,1.09522,1.09567,1530 +2020-05-27 05:15,1.09566,1.09576,1.09547,1.0957,1238 +2020-05-27 05:30,1.0957,1.09594,1.09554,1.09558,1806 +2020-05-27 05:45,1.09558,1.09587,1.09534,1.09586,1458 +2020-05-27 06:00,1.09586,1.09655,1.09581,1.09628,2343 +2020-05-27 06:15,1.09628,1.09638,1.09563,1.09564,2059 +2020-05-27 06:30,1.09565,1.09566,1.09511,1.09554,2041 +2020-05-27 06:45,1.09552,1.09604,1.0954,1.09572,2603 +2020-05-27 07:00,1.09572,1.09651,1.09563,1.09607,3905 +2020-05-27 07:15,1.09607,1.09614,1.0952,1.09538,3985 +2020-05-27 07:30,1.09536,1.09604,1.0953,1.09591,3461 +2020-05-27 07:45,1.0959,1.0965,1.09579,1.0965,3963 +2020-05-27 08:00,1.0965,1.09763,1.09639,1.09757,4312 +2020-05-27 08:15,1.09756,1.09791,1.0965,1.0969,5361 +2020-05-27 08:30,1.09688,1.09707,1.09628,1.09648,4829 +2020-05-27 08:45,1.09649,1.09702,1.09557,1.09566,3690 +2020-05-27 09:00,1.09565,1.09585,1.0934,1.09458,8295 +2020-05-27 09:15,1.09457,1.09861,1.09446,1.09769,9876 +2020-05-27 09:30,1.09768,1.09996,1.0976,1.09971,9889 +2020-05-27 09:45,1.09971,1.10307,1.09892,1.10252,8801 +2020-05-27 10:00,1.10252,1.10296,1.10087,1.10115,9858 +2020-05-27 10:15,1.10114,1.10297,1.10112,1.1028,5831 +2020-05-27 10:30,1.1028,1.10307,1.10204,1.10205,5498 +2020-05-27 10:45,1.10208,1.10219,1.10158,1.10161,3696 +2020-05-27 11:00,1.10162,1.10221,1.10131,1.10204,4270 +2020-05-27 11:15,1.10205,1.10247,1.1015,1.10233,4046 +2020-05-27 11:30,1.10233,1.10299,1.10139,1.10176,4985 +2020-05-27 11:45,1.10178,1.10243,1.10155,1.10174,4133 +2020-05-27 12:00,1.10177,1.10207,1.09777,1.09912,9161 +2020-05-27 12:15,1.09913,1.10097,1.09902,1.10074,7565 +2020-05-27 12:30,1.10075,1.10214,1.10074,1.10185,4916 +2020-05-27 12:45,1.10185,1.10187,1.09936,1.09981,6909 +2020-05-27 13:00,1.0998,1.10093,1.09929,1.10043,6025 +2020-05-27 13:15,1.10043,1.10096,1.09961,1.09963,4167 +2020-05-27 13:30,1.09963,1.10036,1.09862,1.09883,7302 +2020-05-27 13:45,1.09884,1.09907,1.09817,1.09876,6219 +2020-05-27 14:00,1.09876,1.10088,1.09867,1.10086,6126 +2020-05-27 14:15,1.10085,1.10165,1.10029,1.10081,7671 +2020-05-27 14:30,1.10079,1.10096,1.09929,1.0999,7666 +2020-05-27 14:45,1.0999,1.10045,1.09714,1.09732,9515 +2020-05-27 15:00,1.09731,1.0981,1.09655,1.09777,8670 +2020-05-27 15:15,1.09776,1.09814,1.09698,1.09746,5618 +2020-05-27 15:30,1.09745,1.09811,1.0963,1.0963,5971 +2020-05-27 15:45,1.09629,1.09717,1.09552,1.0968,6421 +2020-05-27 16:00,1.09679,1.09848,1.09672,1.09811,4371 +2020-05-27 16:15,1.0981,1.09827,1.09719,1.09725,3227 +2020-05-27 16:30,1.09728,1.09793,1.09721,1.09767,3084 +2020-05-27 16:45,1.09766,1.09796,1.09729,1.09747,2460 +2020-05-27 17:00,1.09748,1.09836,1.09685,1.09826,3589 +2020-05-27 17:15,1.09825,1.0988,1.09812,1.09862,2521 +2020-05-27 17:30,1.09866,1.09907,1.09817,1.09903,2501 +2020-05-27 17:45,1.09902,1.09917,1.09872,1.09914,1972 +2020-05-27 18:00,1.09914,1.09933,1.0986,1.09918,2162 +2020-05-27 18:15,1.0992,1.09924,1.09863,1.0987,2052 +2020-05-27 18:30,1.09871,1.0989,1.09851,1.09874,1427 +2020-05-27 18:45,1.09873,1.09912,1.0986,1.09901,1561 +2020-05-27 19:00,1.099,1.09929,1.09875,1.09925,1188 +2020-05-27 19:15,1.09925,1.09944,1.09899,1.09942,1448 +2020-05-27 19:30,1.09943,1.1002,1.0992,1.10003,1977 +2020-05-27 19:45,1.10002,1.10033,1.09973,1.09973,2018 +2020-05-27 20:00,1.09973,1.09997,1.09973,1.09986,1108 +2020-05-27 20:15,1.09987,1.10002,1.09972,1.10002,564 +2020-05-27 20:30,1.10002,1.10066,1.1,1.10053,777 +2020-05-27 20:45,1.10052,1.10097,1.10023,1.10026,1014 +2020-05-27 21:00,1.10024,1.10093,1.10014,1.10053,485 +2020-05-27 21:15,1.10052,1.10089,1.1005,1.10081,693 +2020-05-27 21:30,1.10082,1.1012,1.10081,1.10108,707 +2020-05-27 21:45,1.10108,1.10108,1.10048,1.10062,421 +2020-05-27 22:00,1.10062,1.10096,1.10059,1.10073,449 +2020-05-27 22:15,1.10073,1.10082,1.10066,1.10074,381 +2020-05-27 22:30,1.10074,1.10082,1.10066,1.1008,368 +2020-05-27 22:45,1.1008,1.10132,1.10076,1.10131,452 +2020-05-27 23:00,1.10131,1.10159,1.10123,1.10154,919 +2020-05-27 23:15,1.10153,1.10156,1.10133,1.10139,304 +2020-05-27 23:30,1.10138,1.10158,1.10133,1.10156,355 +2020-05-27 23:45,1.10155,1.10169,1.10146,1.10166,740 +2020-05-28 00:00,1.10165,1.10165,1.10097,1.10104,1566 +2020-05-28 00:15,1.10105,1.10157,1.10098,1.10156,1210 +2020-05-28 00:30,1.10156,1.10183,1.10153,1.1017,1112 +2020-05-28 00:45,1.10169,1.10268,1.10156,1.10231,1902 +2020-05-28 01:00,1.10232,1.10263,1.10169,1.10175,1639 +2020-05-28 01:15,1.10173,1.10207,1.10159,1.10207,1425 +2020-05-28 01:30,1.10207,1.10266,1.102,1.10265,1663 +2020-05-28 01:45,1.10264,1.10351,1.10257,1.10265,2443 +2020-05-28 02:00,1.10264,1.10292,1.10245,1.1028,1330 +2020-05-28 02:15,1.10279,1.10279,1.10192,1.10204,1678 +2020-05-28 02:30,1.10207,1.10211,1.10145,1.10167,1600 +2020-05-28 02:45,1.10167,1.10194,1.10157,1.1018,1325 +2020-05-28 03:00,1.10181,1.10211,1.10174,1.10188,1287 +2020-05-28 03:15,1.10189,1.10192,1.10168,1.10171,942 +2020-05-28 03:30,1.10172,1.10173,1.10117,1.10127,1516 +2020-05-28 03:45,1.10128,1.10146,1.10091,1.10115,1149 +2020-05-28 04:00,1.10115,1.10116,1.10083,1.10089,1208 +2020-05-28 04:15,1.1009,1.10103,1.10057,1.10074,1472 +2020-05-28 04:30,1.10075,1.10105,1.1006,1.10104,1552 +2020-05-28 04:45,1.10106,1.10106,1.10074,1.1008,1211 +2020-05-28 05:00,1.10081,1.10126,1.10056,1.10124,1459 +2020-05-28 05:15,1.10124,1.10135,1.10112,1.1013,1016 +2020-05-28 05:30,1.10132,1.10178,1.10131,1.10156,1761 +2020-05-28 05:45,1.10157,1.10181,1.101,1.10123,1557 +2020-05-28 06:00,1.10123,1.10245,1.10088,1.10205,3539 +2020-05-28 06:15,1.10204,1.10305,1.10203,1.10223,3448 +2020-05-28 06:30,1.10225,1.10267,1.10202,1.10211,1692 +2020-05-28 06:45,1.10209,1.10241,1.10154,1.102,2697 +2020-05-28 07:00,1.10199,1.10216,1.10033,1.10147,3905 +2020-05-28 07:15,1.10148,1.10152,1.10016,1.10079,3812 +2020-05-28 07:30,1.10079,1.10111,1.10021,1.10058,3590 +2020-05-28 07:45,1.10058,1.10084,1.0996,1.10042,4125 +2020-05-28 08:00,1.10041,1.10093,1.10007,1.10035,4198 +2020-05-28 08:15,1.10035,1.10036,1.09916,1.09927,4040 +2020-05-28 08:30,1.09927,1.09997,1.09918,1.09977,3859 +2020-05-28 08:45,1.09977,1.1002,1.09952,1.0999,2898 +2020-05-28 09:00,1.09991,1.10077,1.09922,1.10076,4406 +2020-05-28 09:15,1.10076,1.10151,1.10051,1.10099,4514 +2020-05-28 09:30,1.10098,1.10135,1.10059,1.10099,2998 +2020-05-28 09:45,1.10099,1.10126,1.10071,1.10096,2888 +2020-05-28 10:00,1.10096,1.10111,1.09962,1.10016,3054 +2020-05-28 10:15,1.10014,1.10066,1.0996,1.10052,2536 +2020-05-28 10:30,1.10052,1.10073,1.10008,1.10044,2133 +2020-05-28 10:45,1.10043,1.10071,1.10029,1.10071,2837 +2020-05-28 11:00,1.10073,1.10084,1.10025,1.10054,2495 +2020-05-28 11:15,1.10054,1.10076,1.10001,1.10039,1911 +2020-05-28 11:30,1.10039,1.10198,1.10032,1.10155,3315 +2020-05-28 11:45,1.10155,1.1016,1.10066,1.10068,2502 +2020-05-28 12:00,1.10068,1.10177,1.10059,1.10155,2692 +2020-05-28 12:15,1.10156,1.10171,1.10076,1.10105,2823 +2020-05-28 12:30,1.10104,1.1024,1.10076,1.10179,4402 +2020-05-28 12:45,1.10179,1.10295,1.10172,1.10215,4111 +2020-05-28 13:00,1.10213,1.10401,1.10213,1.10356,5347 +2020-05-28 13:15,1.10354,1.104,1.10304,1.10371,4766 +2020-05-28 13:30,1.10372,1.10386,1.10311,1.10336,4740 +2020-05-28 13:45,1.10336,1.10401,1.10316,1.10388,4749 +2020-05-28 14:00,1.1039,1.10481,1.10301,1.10477,5859 +2020-05-28 14:15,1.10476,1.1058,1.10431,1.10542,5068 +2020-05-28 14:30,1.10543,1.10556,1.10457,1.10491,5345 +2020-05-28 14:45,1.1049,1.10598,1.10485,1.1055,5588 +2020-05-28 15:00,1.10551,1.10597,1.10501,1.10596,4715 +2020-05-28 15:15,1.10597,1.10636,1.10545,1.10548,3538 +2020-05-28 15:30,1.10548,1.10644,1.10506,1.10642,3639 +2020-05-28 15:45,1.10641,1.10688,1.1061,1.10687,3516 +2020-05-28 16:00,1.10687,1.10747,1.10667,1.1074,3200 +2020-05-28 16:15,1.10739,1.10807,1.10719,1.10799,2979 +2020-05-28 16:30,1.10799,1.10825,1.10773,1.1079,2494 +2020-05-28 16:45,1.1079,1.10827,1.10778,1.10821,3125 +2020-05-28 17:00,1.1082,1.10896,1.10812,1.10895,2586 +2020-05-28 17:15,1.10895,1.10899,1.10764,1.10768,2366 +2020-05-28 17:30,1.10768,1.10833,1.10758,1.1082,2090 +2020-05-28 17:45,1.10821,1.10845,1.10784,1.10813,1931 +2020-05-28 18:00,1.10815,1.10871,1.10812,1.10849,1631 +2020-05-28 18:15,1.10851,1.10864,1.10828,1.10835,1505 +2020-05-28 18:30,1.10834,1.10872,1.10829,1.10859,1567 +2020-05-28 18:45,1.1086,1.10896,1.1083,1.10886,1930 +2020-05-28 19:00,1.10887,1.10931,1.10877,1.10919,1818 +2020-05-28 19:15,1.10919,1.10934,1.10756,1.1076,3140 +2020-05-28 19:30,1.10761,1.10774,1.10695,1.10707,2882 +2020-05-28 19:45,1.10707,1.1072,1.10669,1.10714,2270 +2020-05-28 20:00,1.10713,1.10748,1.10705,1.10737,869 +2020-05-28 20:15,1.10737,1.10781,1.10733,1.10762,687 +2020-05-28 20:30,1.10762,1.10786,1.10739,1.10786,758 +2020-05-28 20:45,1.10786,1.10797,1.10765,1.10767,628 +2020-05-28 21:00,1.10767,1.10769,1.10708,1.10708,820 +2020-05-28 21:15,1.10715,1.10776,1.10705,1.10762,834 +2020-05-28 21:30,1.10765,1.10771,1.1074,1.10761,270 +2020-05-28 21:45,1.1076,1.10814,1.10757,1.10782,373 +2020-05-28 22:00,1.10785,1.10812,1.10755,1.10766,1089 +2020-05-28 22:15,1.10765,1.10791,1.10763,1.10777,484 +2020-05-28 22:30,1.10778,1.10795,1.10765,1.1077,676 +2020-05-28 22:45,1.10773,1.10774,1.10734,1.10738,436 +2020-05-28 23:00,1.10737,1.10753,1.10728,1.10747,506 +2020-05-28 23:15,1.10747,1.10759,1.10736,1.10737,621 +2020-05-28 23:30,1.10738,1.10751,1.10723,1.10731,631 +2020-05-28 23:45,1.10734,1.10794,1.10734,1.10779,697 +2020-05-29 00:00,1.10778,1.10778,1.10725,1.10733,1146 +2020-05-29 00:15,1.10735,1.108,1.10698,1.10786,1402 +2020-05-29 00:30,1.10787,1.10802,1.10761,1.10785,1181 +2020-05-29 00:45,1.10785,1.10811,1.10743,1.10766,1738 +2020-05-29 01:00,1.10766,1.10803,1.10742,1.10754,1520 +2020-05-29 01:15,1.10755,1.10783,1.1074,1.10777,1316 +2020-05-29 01:30,1.10776,1.1083,1.1077,1.10803,1266 +2020-05-29 01:45,1.10803,1.1088,1.10803,1.1087,1621 +2020-05-29 02:00,1.1087,1.1089,1.10821,1.1083,1308 +2020-05-29 02:15,1.1083,1.10865,1.10825,1.10862,905 +2020-05-29 02:30,1.10863,1.10871,1.10825,1.10866,1145 +2020-05-29 02:45,1.10868,1.10882,1.10847,1.10881,980 +2020-05-29 03:00,1.10881,1.10897,1.10849,1.10852,964 +2020-05-29 03:15,1.10851,1.10861,1.10838,1.10853,952 +2020-05-29 03:30,1.10852,1.10892,1.10845,1.10892,705 +2020-05-29 03:45,1.10891,1.10906,1.10887,1.10896,854 +2020-05-29 04:00,1.10897,1.10935,1.10897,1.10932,921 +2020-05-29 04:15,1.10932,1.10948,1.10926,1.1094,934 +2020-05-29 04:30,1.1094,1.10954,1.10933,1.10946,890 +2020-05-29 04:45,1.10946,1.11001,1.10946,1.10993,910 +2020-05-29 05:00,1.10994,1.11002,1.10935,1.10939,1324 +2020-05-29 05:15,1.10941,1.10943,1.10923,1.10938,731 +2020-05-29 05:30,1.10938,1.1109,1.10937,1.1107,1592 +2020-05-29 05:45,1.11069,1.11108,1.11005,1.11007,1994 +2020-05-29 06:00,1.11006,1.11072,1.11006,1.1102,2697 +2020-05-29 06:15,1.11019,1.11019,1.1097,1.10995,2117 +2020-05-29 06:30,1.10994,1.10994,1.10896,1.10927,2073 +2020-05-29 06:45,1.10927,1.11004,1.10908,1.10994,1974 +2020-05-29 07:00,1.10993,1.111,1.1098,1.1102,4715 +2020-05-29 07:15,1.1102,1.11138,1.10968,1.11075,4340 +2020-05-29 07:30,1.11076,1.11087,1.10918,1.10954,4786 +2020-05-29 07:45,1.10954,1.11066,1.10894,1.11051,3983 +2020-05-29 08:00,1.11049,1.1107,1.10997,1.10998,3922 +2020-05-29 08:15,1.10998,1.11023,1.10959,1.11013,3275 +2020-05-29 08:30,1.11012,1.11109,1.11005,1.11077,3529 +2020-05-29 08:45,1.11074,1.11198,1.11071,1.1117,4056 +2020-05-29 09:00,1.11172,1.11379,1.11126,1.11365,5932 +2020-05-29 09:15,1.11363,1.11368,1.1127,1.11311,4770 +2020-05-29 09:30,1.11313,1.11326,1.11263,1.11298,4418 +2020-05-29 09:45,1.11298,1.11363,1.11256,1.11326,3889 +2020-05-29 10:00,1.11325,1.11393,1.11304,1.11314,4099 +2020-05-29 10:15,1.11315,1.11373,1.11303,1.11343,3838 +2020-05-29 10:30,1.11342,1.11407,1.1132,1.11334,3549 +2020-05-29 10:45,1.11333,1.11371,1.11259,1.11304,4332 +2020-05-29 11:00,1.11305,1.11406,1.11293,1.11326,4870 +2020-05-29 11:15,1.11325,1.11396,1.11321,1.11382,3017 +2020-05-29 11:30,1.11381,1.11417,1.11361,1.11388,3404 +2020-05-29 11:45,1.11389,1.11405,1.11327,1.11352,3662 +2020-05-29 12:00,1.11354,1.11413,1.11329,1.11359,3869 +2020-05-29 12:15,1.11362,1.11451,1.11356,1.114,3595 +2020-05-29 12:30,1.11401,1.11408,1.11326,1.11364,4904 +2020-05-29 12:45,1.11363,1.1139,1.11292,1.11296,98153 +2020-05-29 13:00,1.11297,1.11307,1.11012,1.11134,8655 +2020-05-29 13:15,1.11133,1.1119,1.11081,1.11125,6529 +2020-05-29 13:30,1.11125,1.11281,1.11107,1.11202,6740 +2020-05-29 13:45,1.11202,1.11215,1.11079,1.11194,6269 +2020-05-29 14:00,1.11194,1.11329,1.11107,1.11309,6032 +2020-05-29 14:15,1.1131,1.11312,1.11167,1.11229,5859 +2020-05-29 14:30,1.1123,1.11274,1.11183,1.11271,6616 +2020-05-29 14:45,1.11271,1.11302,1.1115,1.11254,12316 +2020-05-29 15:00,1.11256,1.11256,1.1094,1.11088,10598 +2020-05-29 15:15,1.11086,1.11281,1.11082,1.11242,6897 +2020-05-29 15:30,1.11246,1.11283,1.11159,1.11172,5047 +2020-05-29 15:45,1.11173,1.11178,1.11053,1.11067,3816 +2020-05-29 16:00,1.11067,1.11111,1.10942,1.11006,3948 +2020-05-29 16:15,1.11004,1.11004,1.10934,1.1094,3159 +2020-05-29 16:30,1.1094,1.10981,1.10895,1.10963,3188 +2020-05-29 16:45,1.10963,1.10996,1.10901,1.10978,4188 +2020-05-29 17:00,1.10977,1.10987,1.10848,1.10903,4212 +2020-05-29 17:15,1.10905,1.10926,1.10822,1.10824,2840 +2020-05-29 17:30,1.10823,1.10882,1.10809,1.10862,2874 +2020-05-29 17:45,1.10862,1.10918,1.10815,1.10912,2867 +2020-05-29 18:00,1.10911,1.10989,1.10877,1.10933,4641 +2020-05-29 18:15,1.10932,1.10968,1.10929,1.10953,2633 +2020-05-29 18:30,1.10955,1.10962,1.10924,1.10932,1874 +2020-05-29 18:45,1.10931,1.11006,1.10842,1.10993,5777 +2020-05-29 19:00,1.10995,1.11066,1.10921,1.10921,4216 +2020-05-29 19:15,1.10922,1.11007,1.10859,1.10885,2973 +2020-05-29 19:30,1.10883,1.10956,1.10879,1.10951,2055 +2020-05-29 19:45,1.10949,1.11007,1.10883,1.10997,2092 +2020-05-29 20:00,1.10993,1.11051,1.10979,1.11,1376 +2020-05-29 20:15,1.11,1.11027,1.10981,1.10983,756 +2020-05-29 20:30,1.10983,1.11063,1.10983,1.11062,641 +2020-05-29 20:45,1.1106,1.11085,1.1099,1.11036,1269 +2020-05-31 21:00,1.11129,1.11194,1.11129,1.11178,104 +2020-05-31 21:15,1.11178,1.11181,1.11147,1.11148,93 +2020-05-31 21:30,1.1115,1.1118,1.11145,1.11153,51 +2020-05-31 21:45,1.11153,1.11156,1.11123,1.1113,141 +2020-05-31 22:00,1.1113,1.1113,1.11023,1.11049,2152 +2020-05-31 22:15,1.11053,1.11097,1.11033,1.11097,955 +2020-05-31 22:30,1.11095,1.11136,1.11073,1.11132,781 +2020-05-31 22:45,1.11131,1.11144,1.11113,1.11118,897 +2020-05-31 23:00,1.11119,1.11167,1.11113,1.11154,922 +2020-05-31 23:15,1.11153,1.11184,1.11145,1.11174,785 +2020-05-31 23:30,1.11175,1.11175,1.1115,1.11161,846 +2020-05-31 23:45,1.1116,1.11195,1.11156,1.11156,1495 +2020-06-01 00:00,1.11155,1.1122,1.11126,1.11181,2699 +2020-06-01 00:15,1.1118,1.1126,1.11177,1.11208,3053 +2020-06-01 00:30,1.1121,1.11218,1.11163,1.11164,1945 +2020-06-01 00:45,1.11163,1.11234,1.11152,1.11216,1573 +2020-06-01 01:00,1.11215,1.11215,1.11164,1.11188,2100 +2020-06-01 01:15,1.11189,1.11366,1.11186,1.11359,3932 +2020-06-01 01:30,1.11361,1.11402,1.11318,1.11322,4471 +2020-06-01 01:45,1.11324,1.11371,1.11318,1.1134,2669 +2020-06-01 02:00,1.11341,1.1136,1.11298,1.11316,2203 +2020-06-01 02:15,1.11319,1.11366,1.11311,1.11343,1524 +2020-06-01 02:30,1.11345,1.11401,1.11338,1.11387,1552 +2020-06-01 02:45,1.11387,1.114,1.11367,1.11373,2171 +2020-06-01 03:00,1.11371,1.11382,1.11339,1.11343,1815 +2020-06-01 03:15,1.11344,1.11356,1.11338,1.11342,1554 +2020-06-01 03:30,1.11342,1.11357,1.11324,1.11355,1719 +2020-06-01 03:45,1.11355,1.11358,1.11329,1.11329,1566 +2020-06-01 04:00,1.11329,1.11381,1.11325,1.11357,1515 +2020-06-01 04:15,1.11358,1.1137,1.11339,1.11368,1107 +2020-06-01 04:30,1.11368,1.11369,1.11329,1.11339,870 +2020-06-01 04:45,1.1134,1.1136,1.11331,1.11334,1267 +2020-06-01 05:00,1.11334,1.11347,1.11303,1.11333,1570 +2020-06-01 05:15,1.11334,1.11398,1.11333,1.11377,1183 +2020-06-01 05:30,1.11378,1.11425,1.11373,1.11406,1305 +2020-06-01 05:45,1.11407,1.11411,1.11373,1.11398,1516 +2020-06-01 06:00,1.11396,1.11504,1.1138,1.11453,3484 +2020-06-01 06:15,1.11452,1.11485,1.11418,1.11436,2965 +2020-06-01 06:30,1.11436,1.11443,1.11381,1.11403,2648 +2020-06-01 06:45,1.11402,1.11426,1.11352,1.11369,2281 +2020-06-01 07:00,1.11369,1.11441,1.11347,1.11377,5004 +2020-06-01 07:15,1.11378,1.11391,1.11317,1.11334,4460 +2020-06-01 07:30,1.11333,1.11426,1.11328,1.11423,4402 +2020-06-01 07:45,1.11422,1.1154,1.11418,1.11487,5851 +2020-06-01 08:00,1.11487,1.11487,1.1116,1.11275,8610 +2020-06-01 08:15,1.11275,1.11336,1.11188,1.11336,8263 +2020-06-01 08:30,1.11337,1.11367,1.11277,1.11359,5771 +2020-06-01 08:45,1.1136,1.11414,1.11324,1.11395,4857 +2020-06-01 09:00,1.11396,1.11412,1.11331,1.11342,3323 +2020-06-01 09:15,1.11341,1.11348,1.112,1.11253,4269 +2020-06-01 09:30,1.11253,1.11257,1.11152,1.1116,3724 +2020-06-01 09:45,1.11157,1.11182,1.11075,1.11139,4371 +2020-06-01 10:00,1.1114,1.11164,1.11045,1.11097,4561 +2020-06-01 10:15,1.111,1.11147,1.11062,1.11122,4359 +2020-06-01 10:30,1.11121,1.11149,1.11096,1.11103,3063 +2020-06-01 10:45,1.11106,1.1112,1.11004,1.11059,3702 +2020-06-01 11:00,1.11058,1.11122,1.11057,1.11118,3561 +2020-06-01 11:15,1.11114,1.11166,1.11114,1.11128,2593 +2020-06-01 11:30,1.11128,1.11204,1.1109,1.11136,3128 +2020-06-01 11:45,1.11138,1.11151,1.11091,1.11117,2859 +2020-06-01 12:00,1.1112,1.11177,1.1111,1.11161,3533 +2020-06-01 12:15,1.11162,1.11207,1.1112,1.11136,2906 +2020-06-01 12:30,1.11135,1.1115,1.11045,1.11077,4460 +2020-06-01 12:45,1.1108,1.11103,1.11008,1.111,3345 +2020-06-01 13:00,1.111,1.11126,1.1106,1.11081,2401 +2020-06-01 13:15,1.11079,1.11193,1.11033,1.11189,3226 +2020-06-01 13:30,1.1119,1.11205,1.1114,1.11168,5620 +2020-06-01 13:45,1.11165,1.11267,1.11146,1.11255,3668 +2020-06-01 14:00,1.11255,1.11306,1.11201,1.11293,5717 +2020-06-01 14:15,1.11293,1.11384,1.11247,1.11268,6307 +2020-06-01 14:30,1.11272,1.11309,1.11192,1.11262,4839 +2020-06-01 14:45,1.11262,1.11373,1.11206,1.1137,4111 +2020-06-01 15:00,1.11371,1.11404,1.11217,1.11223,4148 +2020-06-01 15:15,1.11223,1.11295,1.11193,1.11214,3346 +2020-06-01 15:30,1.11215,1.11244,1.11128,1.11199,3338 +2020-06-01 15:45,1.11198,1.11246,1.11134,1.11226,2697 +2020-06-01 16:00,1.11226,1.11296,1.11191,1.11277,2128 +2020-06-01 16:15,1.11276,1.11286,1.11207,1.11234,1708 +2020-06-01 16:30,1.11235,1.11286,1.11235,1.11241,1445 +2020-06-01 16:45,1.1124,1.11297,1.11225,1.11297,1857 +2020-06-01 17:00,1.11296,1.11297,1.1125,1.11287,1762 +2020-06-01 17:15,1.11286,1.11304,1.11275,1.11301,1314 +2020-06-01 17:30,1.11302,1.11313,1.1129,1.11313,837 +2020-06-01 17:45,1.11312,1.11326,1.11266,1.11294,1216 +2020-06-01 18:00,1.11295,1.11321,1.11271,1.11279,1026 +2020-06-01 18:15,1.11279,1.11294,1.11225,1.11236,1091 +2020-06-01 18:30,1.11236,1.1128,1.11236,1.11274,1077 +2020-06-01 18:45,1.11277,1.11329,1.11275,1.11324,1377 +2020-06-01 19:00,1.11323,1.11351,1.11315,1.11326,1283 +2020-06-01 19:15,1.11326,1.11363,1.11321,1.11337,930 +2020-06-01 19:30,1.11339,1.11339,1.1129,1.11334,968 +2020-06-01 19:45,1.11333,1.11358,1.11297,1.11351,1207 +2020-06-01 20:00,1.11351,1.11363,1.1131,1.11341,737 +2020-06-01 20:15,1.11341,1.11347,1.11318,1.11326,304 +2020-06-01 20:30,1.11326,1.11327,1.11308,1.11325,193 +2020-06-01 20:45,1.11326,1.11355,1.11321,1.11353,419 +2020-06-01 21:00,1.11353,1.11357,1.11319,1.11352,96 +2020-06-01 21:15,1.11352,1.11355,1.11346,1.11352,248 +2020-06-01 21:30,1.11351,1.11353,1.11317,1.11323,464 +2020-06-01 21:45,1.11325,1.11325,1.11302,1.11312,632 +2020-06-01 22:00,1.11314,1.11345,1.11313,1.1134,537 +2020-06-01 22:15,1.11341,1.11354,1.11339,1.11351,179 +2020-06-01 22:30,1.11352,1.11352,1.11318,1.11318,260 +2020-06-01 22:45,1.11317,1.11332,1.11307,1.11322,439 +2020-06-01 23:00,1.11323,1.11324,1.11304,1.11307,479 +2020-06-01 23:15,1.11308,1.11314,1.11284,1.11296,548 +2020-06-01 23:30,1.11297,1.11314,1.11288,1.11291,420 +2020-06-01 23:45,1.11292,1.11293,1.11239,1.11251,790 +2020-06-02 00:00,1.11252,1.11333,1.11246,1.11328,1618 +2020-06-02 00:15,1.11327,1.11362,1.11308,1.11336,1389 +2020-06-02 00:30,1.11335,1.11384,1.1133,1.11374,1126 +2020-06-02 00:45,1.11373,1.11373,1.11299,1.11317,1767 +2020-06-02 01:00,1.11319,1.1133,1.11282,1.1131,1391 +2020-06-02 01:15,1.11312,1.11325,1.11285,1.1129,892 +2020-06-02 01:30,1.11292,1.11309,1.11284,1.11304,1467 +2020-06-02 01:45,1.11306,1.11309,1.11233,1.11257,1496 +2020-06-02 02:00,1.11255,1.11256,1.11205,1.11206,1335 +2020-06-02 02:15,1.11207,1.11229,1.11189,1.11202,1431 +2020-06-02 02:30,1.11202,1.11259,1.11201,1.11249,1236 +2020-06-02 02:45,1.1125,1.11262,1.11214,1.11239,738 +2020-06-02 03:00,1.11239,1.11264,1.11231,1.11264,870 +2020-06-02 03:15,1.11264,1.1127,1.11247,1.11257,553 +2020-06-02 03:30,1.11257,1.1126,1.11243,1.11257,613 +2020-06-02 03:45,1.11257,1.1127,1.11249,1.11268,529 +2020-06-02 04:00,1.11267,1.11268,1.11247,1.11265,574 +2020-06-02 04:15,1.11265,1.11267,1.11232,1.11255,787 +2020-06-02 04:30,1.11253,1.11274,1.11241,1.11271,802 +2020-06-02 04:45,1.11271,1.11275,1.11249,1.11256,514 +2020-06-02 05:00,1.11255,1.11348,1.11245,1.11335,908 +2020-06-02 05:15,1.11336,1.11363,1.11315,1.11349,1146 +2020-06-02 05:30,1.11349,1.11374,1.11334,1.11345,1855 +2020-06-02 05:45,1.11345,1.11353,1.11299,1.11336,1488 +2020-06-02 06:00,1.11337,1.11379,1.11307,1.11314,1820 +2020-06-02 06:15,1.11313,1.11313,1.11239,1.11269,2337 +2020-06-02 06:30,1.11269,1.11366,1.11238,1.11337,2636 +2020-06-02 06:45,1.11335,1.11338,1.11151,1.11185,3937 +2020-06-02 07:00,1.11184,1.11277,1.11175,1.1127,4953 +2020-06-02 07:15,1.11269,1.1132,1.11242,1.11276,3389 +2020-06-02 07:30,1.11277,1.11369,1.11163,1.11231,4816 +2020-06-02 07:45,1.11229,1.11288,1.11178,1.11277,4026 +2020-06-02 08:00,1.11279,1.11389,1.11231,1.11365,4619 +2020-06-02 08:15,1.11366,1.11661,1.11336,1.11639,7610 +2020-06-02 08:30,1.11637,1.11713,1.11586,1.11636,7495 +2020-06-02 08:45,1.11638,1.11712,1.11618,1.11702,5979 +2020-06-02 09:00,1.11702,1.11847,1.11701,1.11796,7292 +2020-06-02 09:15,1.11797,1.11831,1.11729,1.11796,5438 +2020-06-02 09:30,1.11796,1.11877,1.11739,1.11843,6984 +2020-06-02 09:45,1.11842,1.11857,1.11791,1.11801,6438 +2020-06-02 10:00,1.11804,1.11809,1.11666,1.11739,7220 +2020-06-02 10:15,1.1174,1.11768,1.11657,1.11666,5773 +2020-06-02 10:30,1.11667,1.1172,1.1165,1.11693,4907 +2020-06-02 10:45,1.11692,1.117,1.11642,1.11684,4375 +2020-06-02 11:00,1.11685,1.11696,1.11624,1.11632,3136 +2020-06-02 11:15,1.11631,1.11663,1.11547,1.11618,4912 +2020-06-02 11:30,1.11621,1.11678,1.11575,1.11669,3143 +2020-06-02 11:45,1.11667,1.117,1.11609,1.1169,3202 +2020-06-02 12:00,1.11693,1.11785,1.11682,1.11739,5212 +2020-06-02 12:15,1.11743,1.11793,1.11622,1.11623,5832 +2020-06-02 12:30,1.11624,1.11672,1.11569,1.11602,5475 +2020-06-02 12:45,1.11602,1.11667,1.11599,1.11649,4489 +2020-06-02 13:00,1.11648,1.11727,1.11633,1.1169,4806 +2020-06-02 13:15,1.11689,1.11779,1.1168,1.11753,4014 +2020-06-02 13:30,1.11756,1.11777,1.11706,1.11744,6448 +2020-06-02 13:45,1.11746,1.11889,1.1168,1.11889,6597 +2020-06-02 14:00,1.11888,1.11953,1.11791,1.11804,6152 +2020-06-02 14:15,1.11803,1.11907,1.11802,1.11873,7309 +2020-06-02 14:30,1.11872,1.11959,1.11848,1.11929,6356 +2020-06-02 14:45,1.11928,1.11931,1.11752,1.11836,8634 +2020-06-02 15:00,1.11836,1.11862,1.11764,1.11821,6951 +2020-06-02 15:15,1.11822,1.11879,1.11752,1.11753,5398 +2020-06-02 15:30,1.11753,1.11789,1.11731,1.11751,3499 +2020-06-02 15:45,1.11753,1.11763,1.1164,1.11657,3256 +2020-06-02 16:00,1.11658,1.11747,1.11636,1.11745,2483 +2020-06-02 16:15,1.11744,1.118,1.11742,1.118,2305 +2020-06-02 16:30,1.118,1.11838,1.11783,1.11806,2185 +2020-06-02 16:45,1.11808,1.11825,1.11726,1.11738,3160 +2020-06-02 17:00,1.11739,1.11783,1.11721,1.11745,2775 +2020-06-02 17:15,1.11745,1.11812,1.11744,1.11791,1665 +2020-06-02 17:30,1.11792,1.1181,1.11645,1.11673,2418 +2020-06-02 17:45,1.11674,1.11706,1.1164,1.11705,2337 +2020-06-02 18:00,1.11705,1.11708,1.11673,1.11688,2299 +2020-06-02 18:15,1.11689,1.11694,1.11661,1.11664,1348 +2020-06-02 18:30,1.11668,1.11701,1.11668,1.11689,1412 +2020-06-02 18:45,1.11691,1.11743,1.11652,1.1172,941 +2020-06-02 19:00,1.1172,1.11732,1.11639,1.11649,1705 +2020-06-02 19:15,1.11651,1.11663,1.11612,1.11627,2203 +2020-06-02 19:30,1.11627,1.11648,1.1161,1.11647,1377 +2020-06-02 19:45,1.11647,1.11703,1.11637,1.11651,1915 +2020-06-02 20:00,1.11652,1.11677,1.11631,1.11636,921 +2020-06-02 20:15,1.11636,1.11665,1.11632,1.11664,464 +2020-06-02 20:30,1.11662,1.11679,1.11654,1.11674,282 +2020-06-02 20:45,1.11675,1.11698,1.11668,1.11693,457 +2020-06-02 21:00,1.1169,1.11706,1.11683,1.11694,183 +2020-06-02 21:15,1.11698,1.11713,1.11684,1.11689,497 +2020-06-02 21:30,1.11688,1.11721,1.11686,1.11713,145 +2020-06-02 21:45,1.11713,1.11715,1.1168,1.11697,221 +2020-06-02 22:00,1.11696,1.11707,1.11667,1.1167,1913 +2020-06-02 22:15,1.1167,1.11711,1.1167,1.11707,282 +2020-06-02 22:30,1.11708,1.11716,1.11705,1.11715,264 +2020-06-02 22:45,1.11715,1.11743,1.11703,1.11729,811 +2020-06-02 23:00,1.1173,1.11731,1.11692,1.11695,705 +2020-06-02 23:15,1.11693,1.11758,1.1169,1.11731,1147 +2020-06-02 23:30,1.11731,1.11873,1.1173,1.11857,1572 +2020-06-02 23:45,1.11859,1.11868,1.11839,1.11851,907 +2020-06-03 00:00,1.1185,1.11854,1.11795,1.11839,1969 +2020-06-03 00:15,1.11838,1.11923,1.11838,1.11903,1925 +2020-06-03 00:30,1.11903,1.11989,1.11895,1.11974,2042 +2020-06-03 00:45,1.11974,1.12012,1.11911,1.11927,2970 +2020-06-03 01:00,1.11929,1.12006,1.11929,1.11974,2543 +2020-06-03 01:15,1.11975,1.11992,1.11922,1.11927,2231 +2020-06-03 01:30,1.11929,1.11933,1.11857,1.11922,2692 +2020-06-03 01:45,1.11925,1.1194,1.11866,1.11877,2486 +2020-06-03 02:00,1.11878,1.11894,1.11847,1.11866,1674 +2020-06-03 02:15,1.11867,1.11871,1.11825,1.11839,1799 +2020-06-03 02:30,1.1184,1.11912,1.1184,1.11912,1565 +2020-06-03 02:45,1.11913,1.11968,1.11907,1.11953,1436 +2020-06-03 03:00,1.11953,1.11981,1.11935,1.11981,1313 +2020-06-03 03:15,1.11981,1.12044,1.11975,1.12008,1458 +2020-06-03 03:30,1.12009,1.12047,1.12001,1.1203,1595 +2020-06-03 03:45,1.1203,1.12109,1.12029,1.12076,1568 +2020-06-03 04:00,1.12076,1.12091,1.12064,1.12081,1425 +2020-06-03 04:15,1.1208,1.12085,1.12035,1.12056,1166 +2020-06-03 04:30,1.12056,1.12063,1.12022,1.12029,1023 +2020-06-03 04:45,1.12028,1.12051,1.12024,1.12031,957 +2020-06-03 05:00,1.1203,1.12099,1.12017,1.12093,1087 +2020-06-03 05:15,1.12093,1.1212,1.12041,1.12041,1452 +2020-06-03 05:30,1.12042,1.12074,1.12027,1.12038,1224 +2020-06-03 05:45,1.12039,1.12047,1.11995,1.12038,1583 +2020-06-03 06:00,1.12039,1.12135,1.12039,1.12053,2753 +2020-06-03 06:15,1.12053,1.12087,1.12031,1.12071,1756 +2020-06-03 06:30,1.1207,1.12138,1.12061,1.1207,1882 +2020-06-03 06:45,1.12071,1.12129,1.12054,1.12091,2264 +2020-06-03 07:00,1.1209,1.12197,1.1206,1.12121,5067 +2020-06-03 07:15,1.12124,1.12275,1.12121,1.12232,4201 +2020-06-03 07:30,1.12231,1.12236,1.12067,1.12078,4443 +2020-06-03 07:45,1.12078,1.12196,1.12077,1.12163,3588 +2020-06-03 08:00,1.12163,1.12181,1.11955,1.11963,5551 +2020-06-03 08:15,1.11966,1.12119,1.1191,1.12119,4506 +2020-06-03 08:30,1.12119,1.12158,1.1205,1.12101,4059 +2020-06-03 08:45,1.12101,1.1212,1.12049,1.12104,4284 +2020-06-03 09:00,1.12105,1.12224,1.12102,1.12163,3806 +2020-06-03 09:15,1.12165,1.12182,1.12129,1.12175,2806 +2020-06-03 09:30,1.12174,1.12211,1.12138,1.12164,3627 +2020-06-03 09:45,1.12164,1.12267,1.12152,1.12174,3159 +2020-06-03 10:00,1.12174,1.12177,1.12097,1.12106,4037 +2020-06-03 10:15,1.12106,1.12128,1.12057,1.12094,3237 +2020-06-03 10:30,1.12095,1.12106,1.12034,1.12096,3162 +2020-06-03 10:45,1.12094,1.12101,1.11997,1.11998,3492 +2020-06-03 11:00,1.11999,1.12061,1.11936,1.11938,3816 +2020-06-03 11:15,1.11942,1.11972,1.11886,1.11893,3819 +2020-06-03 11:30,1.11893,1.11925,1.11838,1.1192,4174 +2020-06-03 11:45,1.11921,1.12019,1.11907,1.11942,4298 +2020-06-03 12:00,1.11942,1.11973,1.11919,1.11935,3261 +2020-06-03 12:15,1.11936,1.1201,1.11874,1.11986,4591 +2020-06-03 12:30,1.11986,1.12099,1.11878,1.11883,4430 +2020-06-03 12:45,1.11884,1.11977,1.11863,1.11913,4479 +2020-06-03 13:00,1.11911,1.11971,1.11864,1.11932,3927 +2020-06-03 13:15,1.11932,1.1207,1.11929,1.1197,4016 +2020-06-03 13:30,1.1197,1.12076,1.1194,1.12006,5507 +2020-06-03 13:45,1.12008,1.12184,1.11996,1.12149,6379 +2020-06-03 14:00,1.12148,1.12325,1.12126,1.12145,7775 +2020-06-03 14:15,1.12148,1.12364,1.12147,1.12275,5958 +2020-06-03 14:30,1.12277,1.12315,1.12177,1.12204,5180 +2020-06-03 14:45,1.12206,1.12276,1.12126,1.12167,7016 +2020-06-03 15:00,1.12169,1.12335,1.12158,1.12313,4756 +2020-06-03 15:15,1.12314,1.12346,1.1226,1.12329,3836 +2020-06-03 15:30,1.12329,1.12484,1.12282,1.12448,3099 +2020-06-03 15:45,1.12449,1.12514,1.12386,1.1246,2676 +2020-06-03 16:00,1.12459,1.12492,1.12413,1.12436,2379 +2020-06-03 16:15,1.12435,1.12435,1.12359,1.12387,2143 +2020-06-03 16:30,1.12388,1.1247,1.1235,1.12377,2330 +2020-06-03 16:45,1.12376,1.12385,1.12339,1.12366,1981 +2020-06-03 17:00,1.12366,1.1238,1.12322,1.12357,2007 +2020-06-03 17:15,1.12355,1.12398,1.1234,1.12388,1194 +2020-06-03 17:30,1.12389,1.12398,1.12346,1.12347,1003 +2020-06-03 17:45,1.12348,1.124,1.12344,1.12399,1211 +2020-06-03 18:00,1.12398,1.12429,1.12377,1.12395,1398 +2020-06-03 18:15,1.12394,1.12399,1.1234,1.12343,2023 +2020-06-03 18:30,1.12343,1.12364,1.12332,1.12343,1097 +2020-06-03 18:45,1.12344,1.12386,1.12331,1.12376,1483 +2020-06-03 19:00,1.12377,1.12426,1.12354,1.12426,1274 +2020-06-03 19:15,1.12424,1.12477,1.12415,1.12475,1258 +2020-06-03 19:30,1.12475,1.12493,1.1242,1.12444,1945 +2020-06-03 19:45,1.12443,1.12577,1.12412,1.1242,2232 +2020-06-03 20:00,1.12421,1.1244,1.12353,1.12384,1167 +2020-06-03 20:15,1.12384,1.12392,1.12348,1.12359,542 +2020-06-03 20:30,1.1236,1.1236,1.12323,1.12332,567 +2020-06-03 20:45,1.12333,1.12355,1.1232,1.12328,393 +2020-06-03 21:00,1.12325,1.12366,1.12325,1.12335,315 +2020-06-03 21:15,1.12335,1.12341,1.12333,1.12339,128 +2020-06-03 21:30,1.12339,1.12369,1.12335,1.12353,413 +2020-06-03 21:45,1.12366,1.12377,1.12349,1.12352,201 +2020-06-03 22:00,1.12352,1.1236,1.12313,1.12314,687 +2020-06-03 22:15,1.12314,1.1232,1.12296,1.12306,421 +2020-06-03 22:30,1.12305,1.1231,1.123,1.12305,508 +2020-06-03 22:45,1.12304,1.12331,1.12301,1.1232,666 +2020-06-03 23:00,1.12321,1.12333,1.12303,1.12326,1154 +2020-06-03 23:15,1.12328,1.12334,1.12316,1.12326,747 +2020-06-03 23:30,1.12325,1.1236,1.12324,1.1235,655 +2020-06-03 23:45,1.1235,1.12365,1.12341,1.12349,721 +2020-06-04 00:00,1.1235,1.12352,1.1228,1.12298,1181 +2020-06-04 00:15,1.12298,1.12305,1.12243,1.12265,1714 +2020-06-04 00:30,1.12266,1.12272,1.12185,1.12195,1626 +2020-06-04 00:45,1.12194,1.12221,1.12135,1.1222,1699 +2020-06-04 01:00,1.12225,1.12241,1.12211,1.12226,1641 +2020-06-04 01:15,1.12228,1.12246,1.12177,1.12187,1415 +2020-06-04 01:30,1.12186,1.12215,1.12159,1.12179,1198 +2020-06-04 01:45,1.12179,1.12213,1.12174,1.12199,1325 +2020-06-04 02:00,1.12199,1.1222,1.12189,1.12205,1690 +2020-06-04 02:15,1.12207,1.1221,1.1218,1.12196,1102 +2020-06-04 02:30,1.12197,1.122,1.12169,1.12176,1551 +2020-06-04 02:45,1.12176,1.12176,1.12142,1.12142,1492 +2020-06-04 03:00,1.12141,1.1216,1.12121,1.12154,1106 +2020-06-04 03:15,1.12153,1.12178,1.12146,1.12167,1260 +2020-06-04 03:30,1.12168,1.12183,1.12162,1.12172,778 +2020-06-04 03:45,1.12174,1.12186,1.12156,1.12163,897 +2020-06-04 04:00,1.12164,1.12178,1.12112,1.12114,795 +2020-06-04 04:15,1.12115,1.12159,1.12112,1.12141,725 +2020-06-04 04:30,1.12143,1.12182,1.1214,1.12174,759 +2020-06-04 04:45,1.12174,1.12177,1.12128,1.12154,760 +2020-06-04 05:00,1.12153,1.12199,1.12142,1.12181,948 +2020-06-04 05:15,1.1218,1.12197,1.12164,1.12196,1094 +2020-06-04 05:30,1.12197,1.12197,1.12178,1.12187,797 +2020-06-04 05:45,1.1219,1.12193,1.12134,1.12144,1002 +2020-06-04 06:00,1.12145,1.12212,1.12138,1.12141,1876 +2020-06-04 06:15,1.12141,1.12141,1.12054,1.12073,2344 +2020-06-04 06:30,1.12074,1.12098,1.12041,1.12055,1868 +2020-06-04 06:45,1.12056,1.12135,1.12003,1.12117,3544 +2020-06-04 07:00,1.12117,1.12125,1.12006,1.12042,3987 +2020-06-04 07:15,1.12044,1.12072,1.11985,1.12033,3678 +2020-06-04 07:30,1.12034,1.12095,1.12023,1.12059,2278 +2020-06-04 07:45,1.1206,1.12086,1.12005,1.12015,3265 +2020-06-04 08:00,1.12014,1.12037,1.11965,1.12032,3081 +2020-06-04 08:15,1.12032,1.12072,1.11948,1.11965,3312 +2020-06-04 08:30,1.11965,1.12015,1.11947,1.12007,2890 +2020-06-04 08:45,1.12006,1.12095,1.12004,1.12069,2520 +2020-06-04 09:00,1.12066,1.12066,1.11999,1.12011,1764 +2020-06-04 09:15,1.12011,1.12043,1.11996,1.11999,2604 +2020-06-04 09:30,1.12,1.12011,1.11954,1.11987,2516 +2020-06-04 09:45,1.11986,1.12021,1.11961,1.11994,2896 +2020-06-04 10:00,1.11994,1.12106,1.11979,1.12077,3463 +2020-06-04 10:15,1.12063,1.12105,1.12013,1.12054,2833 +2020-06-04 10:30,1.12053,1.12072,1.11992,1.11992,2082 +2020-06-04 10:45,1.11993,1.12047,1.11991,1.12047,2124 +2020-06-04 11:00,1.12048,1.12062,1.11986,1.12022,3217 +2020-06-04 11:15,1.12021,1.12038,1.11952,1.11999,2668 +2020-06-04 11:30,1.12,1.12057,1.11967,1.12056,2845 +2020-06-04 11:45,1.12054,1.12721,1.12042,1.12668,13117 +2020-06-04 12:00,1.12669,1.1271,1.12462,1.12497,10241 +2020-06-04 12:15,1.125,1.12504,1.12323,1.12342,6541 +2020-06-04 12:30,1.12342,1.12442,1.12169,1.12209,10511 +2020-06-04 12:45,1.12209,1.12493,1.12205,1.12375,6940 +2020-06-04 13:00,1.12374,1.126,1.12263,1.12566,7168 +2020-06-04 13:15,1.12567,1.12667,1.12488,1.12547,7600 +2020-06-04 13:30,1.12548,1.12738,1.12539,1.12625,8382 +2020-06-04 13:45,1.12624,1.12698,1.12593,1.12684,5681 +2020-06-04 14:00,1.12684,1.12807,1.12664,1.12722,6232 +2020-06-04 14:15,1.12722,1.13001,1.1272,1.12989,6739 +2020-06-04 14:30,1.12988,1.13277,1.12988,1.13184,8960 +2020-06-04 14:45,1.13182,1.13509,1.13181,1.13434,8968 +2020-06-04 15:00,1.13436,1.13623,1.13297,1.13355,9179 +2020-06-04 15:15,1.13355,1.13378,1.13125,1.13184,5969 +2020-06-04 15:30,1.13185,1.13254,1.1313,1.13133,4913 +2020-06-04 15:45,1.13133,1.13224,1.13123,1.13218,3953 +2020-06-04 16:00,1.13217,1.13282,1.132,1.13247,3366 +2020-06-04 16:15,1.13247,1.1331,1.13179,1.13303,3030 +2020-06-04 16:30,1.13304,1.13312,1.13221,1.13271,1806 +2020-06-04 16:45,1.1327,1.13322,1.13247,1.13289,2383 +2020-06-04 17:00,1.13289,1.13412,1.1328,1.13398,2300 +2020-06-04 17:15,1.13397,1.13423,1.13331,1.13332,2346 +2020-06-04 17:30,1.13333,1.13422,1.13322,1.13416,2271 +2020-06-04 17:45,1.13416,1.13458,1.13401,1.13441,2092 +2020-06-04 18:00,1.13442,1.13593,1.13441,1.13575,2613 +2020-06-04 18:15,1.13575,1.13619,1.13511,1.13565,2890 +2020-06-04 18:30,1.13566,1.13617,1.1351,1.13511,2570 +2020-06-04 18:45,1.1351,1.13594,1.13481,1.13482,3316 +2020-06-04 19:00,1.13481,1.13508,1.13394,1.13426,2349 +2020-06-04 19:15,1.13425,1.13448,1.13319,1.13322,2875 +2020-06-04 19:30,1.13325,1.13374,1.13321,1.13364,2442 +2020-06-04 19:45,1.13359,1.13375,1.13293,1.133,2606 +2020-06-04 20:00,1.13301,1.13317,1.1326,1.1327,1392 +2020-06-04 20:15,1.13272,1.13309,1.13272,1.13286,830 +2020-06-04 20:30,1.13287,1.13335,1.13271,1.13335,432 +2020-06-04 20:45,1.13335,1.1337,1.13334,1.1337,234 +2020-06-04 21:00,1.13367,1.13374,1.13344,1.13361,114 +2020-06-04 21:15,1.13361,1.13379,1.1335,1.13379,215 +2020-06-04 21:30,1.13379,1.13389,1.1334,1.1335,494 +2020-06-04 21:45,1.13348,1.13389,1.13341,1.13357,1061 +2020-06-04 22:00,1.13358,1.13378,1.13352,1.13378,500 +2020-06-04 22:15,1.13379,1.13429,1.13371,1.13428,610 +2020-06-04 22:30,1.13429,1.1343,1.13397,1.13406,610 +2020-06-04 22:45,1.13405,1.13405,1.13363,1.13382,717 +2020-06-04 23:00,1.13382,1.1343,1.13382,1.13429,893 +2020-06-04 23:15,1.13429,1.13444,1.13425,1.13437,839 +2020-06-04 23:30,1.13436,1.13436,1.13373,1.13373,1090 +2020-06-04 23:45,1.13375,1.13403,1.13353,1.13354,1175 +2020-06-05 00:00,1.13357,1.13443,1.13344,1.13429,1902 +2020-06-05 00:15,1.1343,1.13442,1.134,1.134,1303 +2020-06-05 00:30,1.134,1.13409,1.13369,1.13396,1379 +2020-06-05 00:45,1.13398,1.13405,1.1331,1.13323,1598 +2020-06-05 01:00,1.13324,1.13385,1.13297,1.13298,1868 +2020-06-05 01:15,1.13299,1.13325,1.13289,1.1332,1154 +2020-06-05 01:30,1.1332,1.13355,1.13284,1.13295,2018 +2020-06-05 01:45,1.13296,1.13308,1.1328,1.13289,1204 +2020-06-05 02:00,1.13287,1.133,1.13263,1.13273,1021 +2020-06-05 02:15,1.13273,1.13293,1.13258,1.13263,1443 +2020-06-05 02:30,1.13262,1.13291,1.13262,1.13287,1332 +2020-06-05 02:45,1.13287,1.13334,1.13281,1.13318,1687 +2020-06-05 03:00,1.13318,1.13366,1.13314,1.13353,1544 +2020-06-05 03:15,1.13352,1.13366,1.13328,1.13334,1128 +2020-06-05 03:30,1.13335,1.13364,1.13332,1.13358,1170 +2020-06-05 03:45,1.1336,1.13404,1.13353,1.1339,1091 +2020-06-05 04:00,1.13389,1.13412,1.13379,1.13384,1093 +2020-06-05 04:15,1.13385,1.13477,1.13385,1.13462,1226 +2020-06-05 04:30,1.13463,1.13551,1.13456,1.1353,1843 +2020-06-05 04:45,1.13529,1.1355,1.13466,1.13466,1244 +2020-06-05 05:00,1.13465,1.1352,1.13459,1.13499,1518 +2020-06-05 05:15,1.13498,1.13503,1.13461,1.13464,1140 +2020-06-05 05:30,1.13465,1.13476,1.13439,1.13444,1190 +2020-06-05 05:45,1.13443,1.1374,1.13434,1.1369,4288 +2020-06-05 06:00,1.1369,1.13778,1.13637,1.13657,4628 +2020-06-05 06:15,1.13658,1.13803,1.13644,1.1372,4212 +2020-06-05 06:30,1.13721,1.13836,1.13705,1.13719,3527 +2020-06-05 06:45,1.13718,1.13756,1.13675,1.13732,2971 +2020-06-05 07:00,1.13733,1.13809,1.13661,1.13684,4716 +2020-06-05 07:15,1.13687,1.13697,1.1354,1.13555,4600 +2020-06-05 07:30,1.13556,1.13669,1.13555,1.13591,4767 +2020-06-05 07:45,1.13591,1.13604,1.1345,1.13486,3692 +2020-06-05 08:00,1.13485,1.13559,1.13463,1.13504,3663 +2020-06-05 08:15,1.13504,1.13522,1.13458,1.13473,3489 +2020-06-05 08:30,1.13474,1.135,1.134,1.13474,3159 +2020-06-05 08:45,1.13474,1.1348,1.13262,1.13323,5092 +2020-06-05 09:00,1.13323,1.13355,1.13269,1.13328,5658 +2020-06-05 09:15,1.13328,1.13371,1.1317,1.13202,4424 +2020-06-05 09:30,1.13201,1.13323,1.13188,1.1329,3780 +2020-06-05 09:45,1.13291,1.13369,1.13261,1.13352,2778 +2020-06-05 10:00,1.13351,1.13354,1.13171,1.1323,3054 +2020-06-05 10:15,1.13231,1.13245,1.13182,1.13202,2838 +2020-06-05 10:30,1.13202,1.13264,1.13197,1.1323,2681 +2020-06-05 10:45,1.13231,1.133,1.13218,1.13282,2551 +2020-06-05 11:00,1.13286,1.13348,1.13284,1.13324,3411 +2020-06-05 11:15,1.13327,1.1338,1.13319,1.13344,2497 +2020-06-05 11:30,1.13343,1.13348,1.13263,1.13295,2669 +2020-06-05 11:45,1.13296,1.13377,1.13289,1.13355,3209 +2020-06-05 12:00,1.13356,1.13435,1.13287,1.1329,2853 +2020-06-05 12:15,1.13291,1.13352,1.1327,1.13331,4248 +2020-06-05 12:30,1.13326,1.13366,1.12856,1.12996,14866 +2020-06-05 12:45,1.12993,1.13115,1.12824,1.12954,8755 +2020-06-05 13:00,1.12954,1.13112,1.12851,1.1311,8250 +2020-06-05 13:15,1.13107,1.13192,1.13059,1.13178,6851 +2020-06-05 13:30,1.13176,1.13237,1.13096,1.13138,6901 +2020-06-05 13:45,1.13139,1.13146,1.1295,1.12969,6140 +2020-06-05 14:00,1.12973,1.12986,1.12828,1.1291,6855 +2020-06-05 14:15,1.12909,1.13034,1.12904,1.12946,4706 +2020-06-05 14:30,1.12945,1.13051,1.12943,1.13,4944 +2020-06-05 14:45,1.13,1.13227,1.1299,1.13119,7338 +2020-06-05 15:00,1.13118,1.13191,1.13078,1.13098,5189 +2020-06-05 15:15,1.13098,1.13193,1.13074,1.13117,3643 +2020-06-05 15:30,1.13119,1.13121,1.13008,1.13061,3241 +2020-06-05 15:45,1.13062,1.13062,1.12922,1.12957,3334 +2020-06-05 16:00,1.12956,1.12984,1.12865,1.12879,3294 +2020-06-05 16:15,1.1288,1.12932,1.12851,1.12872,3117 +2020-06-05 16:30,1.12875,1.12925,1.12861,1.12884,1978 +2020-06-05 16:45,1.12883,1.12919,1.12871,1.12904,2847 +2020-06-05 17:00,1.12905,1.12906,1.12871,1.1289,2165 +2020-06-05 17:15,1.12891,1.12904,1.12859,1.12864,1665 +2020-06-05 17:30,1.12863,1.12893,1.12789,1.12882,1582 +2020-06-05 17:45,1.12883,1.12917,1.12878,1.12913,1804 +2020-06-05 18:00,1.12913,1.12978,1.12912,1.12927,3128 +2020-06-05 18:15,1.12929,1.12954,1.12911,1.12938,1950 +2020-06-05 18:30,1.12939,1.12984,1.12888,1.12984,2394 +2020-06-05 18:45,1.12982,1.12994,1.12895,1.12937,3164 +2020-06-05 19:00,1.12941,1.1298,1.12922,1.1297,1485 +2020-06-05 19:15,1.12971,1.12995,1.12951,1.12979,2068 +2020-06-05 19:30,1.1298,1.12987,1.12947,1.12953,1515 +2020-06-05 19:45,1.12952,1.12954,1.12903,1.12915,1977 +2020-06-05 20:00,1.12916,1.1292,1.12829,1.12832,1516 +2020-06-05 20:15,1.12833,1.12882,1.12784,1.12872,649 +2020-06-05 20:30,1.12872,1.12895,1.12853,1.12863,520 +2020-06-05 20:45,1.12863,1.1292,1.12839,1.12911,2166 +2020-06-07 21:00,1.12934,1.13066,1.12934,1.13046,597 +2020-06-07 21:15,1.13046,1.13046,1.1293,1.1298,100 +2020-06-07 21:30,1.1298,1.13025,1.12948,1.12983,117 +2020-06-07 21:45,1.12977,1.13002,1.12948,1.12959,193 +2020-06-07 22:00,1.12959,1.13037,1.12935,1.13021,681 +2020-06-07 22:15,1.13021,1.13045,1.13015,1.13035,501 +2020-06-07 22:30,1.13037,1.13044,1.13016,1.1303,419 +2020-06-07 22:45,1.1303,1.1303,1.13011,1.13016,376 +2020-06-07 23:00,1.13014,1.13078,1.13003,1.13075,1133 +2020-06-07 23:15,1.13075,1.13116,1.13068,1.13115,723 +2020-06-07 23:30,1.13115,1.13169,1.13109,1.13167,636 +2020-06-07 23:45,1.13167,1.13198,1.13114,1.1316,949 +2020-06-08 00:00,1.1316,1.1316,1.13071,1.13076,2208 +2020-06-08 00:15,1.13077,1.13147,1.13047,1.13116,1306 +2020-06-08 00:30,1.13115,1.13115,1.13023,1.13052,1655 +2020-06-08 00:45,1.13053,1.13073,1.12965,1.12976,2076 +2020-06-08 01:00,1.12977,1.12994,1.12912,1.12914,1422 +2020-06-08 01:15,1.12914,1.12946,1.12885,1.12936,1437 +2020-06-08 01:30,1.12934,1.12944,1.12849,1.12884,1397 +2020-06-08 01:45,1.12885,1.12941,1.12881,1.12932,1284 +2020-06-08 02:00,1.12931,1.1294,1.1291,1.12924,1085 +2020-06-08 02:15,1.12926,1.12961,1.12919,1.12959,1361 +2020-06-08 02:30,1.12958,1.12962,1.12921,1.12924,1392 +2020-06-08 02:45,1.12924,1.12946,1.12885,1.12891,954 +2020-06-08 03:00,1.12893,1.12925,1.12893,1.12918,929 +2020-06-08 03:15,1.1292,1.12957,1.1292,1.12944,774 +2020-06-08 03:30,1.12943,1.12957,1.12932,1.12946,447 +2020-06-08 03:45,1.12945,1.12956,1.12893,1.12896,928 +2020-06-08 04:00,1.12897,1.12916,1.12889,1.12901,809 +2020-06-08 04:15,1.12901,1.12909,1.12882,1.12894,765 +2020-06-08 04:30,1.12895,1.12905,1.12866,1.12901,968 +2020-06-08 04:45,1.12899,1.12904,1.1287,1.12887,604 +2020-06-08 05:00,1.12888,1.12888,1.12863,1.12882,730 +2020-06-08 05:15,1.12882,1.12899,1.1286,1.1286,734 +2020-06-08 05:30,1.12861,1.12871,1.12826,1.12869,926 +2020-06-08 05:45,1.12869,1.12941,1.12843,1.12912,1186 +2020-06-08 06:00,1.12913,1.12918,1.12822,1.12846,2203 +2020-06-08 06:15,1.12849,1.12873,1.12811,1.12855,2090 +2020-06-08 06:30,1.12855,1.12901,1.1285,1.12884,2392 +2020-06-08 06:45,1.12884,1.12965,1.12873,1.12942,2005 +2020-06-08 07:00,1.12941,1.12986,1.12845,1.12846,3296 +2020-06-08 07:15,1.12847,1.12952,1.12832,1.12951,2773 +2020-06-08 07:30,1.12949,1.13082,1.12949,1.13025,4354 +2020-06-08 07:45,1.13026,1.13075,1.12984,1.13,2889 +2020-06-08 08:00,1.12999,1.13107,1.12979,1.13087,2851 +2020-06-08 08:15,1.13086,1.13157,1.13072,1.13079,3381 +2020-06-08 08:30,1.13079,1.1308,1.12962,1.12997,3533 +2020-06-08 08:45,1.12998,1.13084,1.12963,1.13,3590 +2020-06-08 09:00,1.13,1.13053,1.12964,1.12999,3636 +2020-06-08 09:15,1.12998,1.13065,1.12994,1.13037,2991 +2020-06-08 09:30,1.13035,1.13041,1.12886,1.12935,3262 +2020-06-08 09:45,1.12935,1.12997,1.1292,1.12967,3045 +2020-06-08 10:00,1.12967,1.12973,1.12858,1.12875,3579 +2020-06-08 10:15,1.12876,1.12898,1.12824,1.12831,3497 +2020-06-08 10:30,1.12832,1.12859,1.12699,1.12702,3762 +2020-06-08 10:45,1.12702,1.12759,1.12701,1.12709,2187 +2020-06-08 11:00,1.12709,1.12759,1.12685,1.12754,2881 +2020-06-08 11:15,1.12755,1.12786,1.12716,1.12735,2704 +2020-06-08 11:30,1.12739,1.12785,1.12682,1.12734,3120 +2020-06-08 11:45,1.12735,1.12781,1.12728,1.12763,3063 +2020-06-08 12:00,1.12762,1.12888,1.12758,1.12848,3215 +2020-06-08 12:15,1.12848,1.12972,1.12845,1.12936,2598 +2020-06-08 12:30,1.12935,1.1296,1.12903,1.12946,2650 +2020-06-08 12:45,1.12944,1.13029,1.12911,1.12937,3579 +2020-06-08 13:00,1.12937,1.13078,1.12926,1.13047,3970 +2020-06-08 13:15,1.13046,1.13102,1.1296,1.13074,3266 +2020-06-08 13:30,1.13073,1.13102,1.13011,1.13088,4169 +2020-06-08 13:45,1.13088,1.13185,1.13061,1.13097,5076 +2020-06-08 14:00,1.13096,1.13129,1.13026,1.13051,4987 +2020-06-08 14:15,1.13051,1.13107,1.12988,1.1308,4588 +2020-06-08 14:30,1.13078,1.13094,1.12912,1.12925,5110 +2020-06-08 14:45,1.12927,1.13065,1.12905,1.13007,4330 +2020-06-08 15:00,1.13008,1.13098,1.12969,1.1309,3628 +2020-06-08 15:15,1.13088,1.13111,1.12852,1.12939,4912 +2020-06-08 15:30,1.12939,1.12999,1.12892,1.12986,3512 +2020-06-08 15:45,1.12985,1.13018,1.12882,1.12882,3281 +2020-06-08 16:00,1.12884,1.13015,1.12884,1.12948,2587 +2020-06-08 16:15,1.12947,1.12997,1.12913,1.12927,2156 +2020-06-08 16:30,1.12927,1.12943,1.1286,1.12889,2524 +2020-06-08 16:45,1.12887,1.12916,1.12856,1.12911,2485 +2020-06-08 17:00,1.12911,1.1296,1.12892,1.12943,1975 +2020-06-08 17:15,1.12943,1.13002,1.12939,1.12992,1411 +2020-06-08 17:30,1.12992,1.12992,1.1293,1.12947,1198 +2020-06-08 17:45,1.12947,1.13012,1.12937,1.13012,1779 +2020-06-08 18:00,1.13013,1.13045,1.12999,1.13036,1765 +2020-06-08 18:15,1.13037,1.13047,1.13001,1.13027,1210 +2020-06-08 18:30,1.13028,1.13085,1.13015,1.1302,1556 +2020-06-08 18:45,1.13022,1.13048,1.13002,1.13036,1489 +2020-06-08 19:00,1.13036,1.13045,1.12998,1.1302,1318 +2020-06-08 19:15,1.13019,1.1302,1.12985,1.12987,1190 +2020-06-08 19:30,1.12987,1.13033,1.12982,1.13003,1307 +2020-06-08 19:45,1.13004,1.1301,1.12968,1.1297,2140 +2020-06-08 20:00,1.12971,1.12972,1.12914,1.1292,1196 +2020-06-08 20:15,1.12922,1.12941,1.12913,1.12934,456 +2020-06-08 20:30,1.12935,1.1295,1.1292,1.1292,408 +2020-06-08 20:45,1.1292,1.12948,1.1291,1.12937,453 +2020-06-08 21:00,1.12936,1.12949,1.12914,1.12921,161 +2020-06-08 21:15,1.12921,1.12923,1.12896,1.12908,49 +2020-06-08 21:30,1.12908,1.12915,1.129,1.12913,193 +2020-06-08 21:45,1.12911,1.12916,1.12908,1.12912,117 +2020-06-08 22:00,1.12912,1.12939,1.12908,1.12926,737 +2020-06-08 22:15,1.12925,1.12947,1.12922,1.12942,313 +2020-06-08 22:30,1.12942,1.12952,1.12925,1.12943,618 +2020-06-08 22:45,1.12944,1.12958,1.12937,1.12946,648 +2020-06-08 23:00,1.12948,1.12958,1.1294,1.12957,752 +2020-06-08 23:15,1.12958,1.12992,1.12956,1.12988,575 +2020-06-08 23:30,1.12988,1.13031,1.12988,1.1303,548 +2020-06-08 23:45,1.13028,1.1305,1.13023,1.1304,669 +2020-06-09 00:00,1.1304,1.1315,1.13014,1.1312,2442 +2020-06-09 00:15,1.13121,1.13122,1.13038,1.13057,1868 +2020-06-09 00:30,1.13056,1.13063,1.12995,1.13027,2542 +2020-06-09 00:45,1.13029,1.13058,1.13014,1.13041,1505 +2020-06-09 01:00,1.13041,1.13043,1.12939,1.12967,2641 +2020-06-09 01:15,1.12966,1.1297,1.1285,1.12882,2973 +2020-06-09 01:30,1.12882,1.12934,1.12872,1.12897,1924 +2020-06-09 01:45,1.12896,1.12923,1.12866,1.12922,2240 +2020-06-09 02:00,1.12924,1.12929,1.12867,1.12881,1824 +2020-06-09 02:15,1.12881,1.12887,1.12843,1.12844,2145 +2020-06-09 02:30,1.12845,1.12872,1.12839,1.12872,1227 +2020-06-09 02:45,1.12872,1.1288,1.12851,1.12874,881 +2020-06-09 03:00,1.12874,1.12903,1.12871,1.12887,1098 +2020-06-09 03:15,1.12887,1.12914,1.12875,1.12909,799 +2020-06-09 03:30,1.12909,1.12914,1.12883,1.12885,1029 +2020-06-09 03:45,1.12885,1.12887,1.12848,1.12872,1002 +2020-06-09 04:00,1.12873,1.12883,1.12848,1.1286,1132 +2020-06-09 04:15,1.12861,1.12865,1.1284,1.12853,1102 +2020-06-09 04:30,1.12854,1.12891,1.12854,1.1289,910 +2020-06-09 04:45,1.12891,1.12891,1.12849,1.12853,1587 +2020-06-09 05:00,1.12854,1.12875,1.12847,1.12865,1329 +2020-06-09 05:15,1.12866,1.12888,1.1286,1.12887,838 +2020-06-09 05:30,1.12889,1.12926,1.12886,1.12923,1154 +2020-06-09 05:45,1.12923,1.12957,1.12908,1.12913,1641 +2020-06-09 06:00,1.12914,1.12961,1.12898,1.12937,2564 +2020-06-09 06:15,1.12939,1.1294,1.12846,1.12855,2763 +2020-06-09 06:30,1.12854,1.12892,1.12745,1.12752,3746 +2020-06-09 06:45,1.12754,1.12766,1.12657,1.12679,3766 +2020-06-09 07:00,1.1268,1.12761,1.12607,1.12674,4518 +2020-06-09 07:15,1.12674,1.12705,1.12623,1.12665,4061 +2020-06-09 07:30,1.12665,1.12685,1.12551,1.12596,4858 +2020-06-09 07:45,1.126,1.12675,1.12585,1.12669,4890 +2020-06-09 08:00,1.12668,1.12702,1.12594,1.12594,3655 +2020-06-09 08:15,1.12597,1.126,1.12409,1.1256,5050 +2020-06-09 08:30,1.12561,1.12565,1.12463,1.12526,4784 +2020-06-09 08:45,1.12525,1.12661,1.12519,1.12615,3941 +2020-06-09 09:00,1.12615,1.1265,1.12554,1.12567,4130 +2020-06-09 09:15,1.12569,1.12672,1.12561,1.12658,2808 +2020-06-09 09:30,1.12659,1.12738,1.12649,1.12693,3380 +2020-06-09 09:45,1.12694,1.12697,1.1265,1.1267,3441 +2020-06-09 10:00,1.1267,1.12748,1.12636,1.12705,3457 +2020-06-09 10:15,1.12708,1.12727,1.12612,1.12637,3818 +2020-06-09 10:30,1.12636,1.12726,1.12616,1.12724,3642 +2020-06-09 10:45,1.12724,1.12832,1.12635,1.12818,4419 +2020-06-09 11:00,1.12819,1.1283,1.12732,1.12734,3415 +2020-06-09 11:15,1.12734,1.12764,1.12688,1.12722,2612 +2020-06-09 11:30,1.12723,1.12781,1.12717,1.12776,2437 +2020-06-09 11:45,1.12777,1.12845,1.12773,1.12818,2941 +2020-06-09 12:00,1.12817,1.12977,1.12797,1.1293,3318 +2020-06-09 12:15,1.12934,1.12983,1.12889,1.12969,2616 +2020-06-09 12:30,1.1297,1.13025,1.12915,1.13005,3834 +2020-06-09 12:45,1.13006,1.13006,1.1291,1.12995,3543 +2020-06-09 13:00,1.12994,1.13082,1.12967,1.13078,2365 +2020-06-09 13:15,1.13077,1.13109,1.13011,1.13018,3952 +2020-06-09 13:30,1.1302,1.13381,1.12992,1.13341,7106 +2020-06-09 13:45,1.1334,1.13575,1.13334,1.13484,9154 +2020-06-09 14:00,1.13487,1.13497,1.13376,1.13429,6578 +2020-06-09 14:15,1.13429,1.1349,1.13384,1.13429,4737 +2020-06-09 14:30,1.13431,1.13489,1.1333,1.13472,4187 +2020-06-09 14:45,1.1347,1.13563,1.13467,1.13539,5533 +2020-06-09 15:00,1.13538,1.13586,1.13519,1.13524,3446 +2020-06-09 15:15,1.13527,1.13638,1.13515,1.13566,3791 +2020-06-09 15:30,1.13565,1.13619,1.13463,1.13464,3004 +2020-06-09 15:45,1.13465,1.13571,1.13393,1.13473,3721 +2020-06-09 16:00,1.13474,1.13519,1.13457,1.13505,2295 +2020-06-09 16:15,1.13505,1.13539,1.13483,1.13506,2358 +2020-06-09 16:30,1.13503,1.13505,1.13439,1.1345,2590 +2020-06-09 16:45,1.13449,1.13462,1.13426,1.13426,2955 +2020-06-09 17:00,1.13425,1.13434,1.13381,1.13384,1998 +2020-06-09 17:15,1.13383,1.13413,1.13325,1.13395,2437 +2020-06-09 17:30,1.13395,1.13435,1.13377,1.13412,2189 +2020-06-09 17:45,1.13413,1.13478,1.13384,1.13455,1814 +2020-06-09 18:00,1.13454,1.13481,1.1344,1.13474,2249 +2020-06-09 18:15,1.13473,1.1348,1.1343,1.13439,1828 +2020-06-09 18:30,1.1344,1.13467,1.1341,1.13441,1338 +2020-06-09 18:45,1.13441,1.13459,1.13428,1.13448,1506 +2020-06-09 19:00,1.13448,1.13449,1.134,1.13427,1436 +2020-06-09 19:15,1.13427,1.13435,1.13402,1.13412,1094 +2020-06-09 19:30,1.13412,1.13416,1.13395,1.13396,1443 +2020-06-09 19:45,1.13395,1.13422,1.13359,1.13364,1522 +2020-06-09 20:00,1.13367,1.13382,1.13311,1.1335,1227 +2020-06-09 20:15,1.1335,1.13378,1.1335,1.13361,397 +2020-06-09 20:30,1.13361,1.13364,1.13344,1.13362,323 +2020-06-09 20:45,1.13361,1.13395,1.13351,1.13395,439 +2020-06-09 21:00,1.13395,1.13409,1.13371,1.13376,180 +2020-06-09 21:15,1.13375,1.13388,1.13373,1.13384,78 +2020-06-09 21:30,1.13385,1.13391,1.13347,1.13379,1556 +2020-06-09 21:45,1.13379,1.13411,1.13366,1.13374,350 +2020-06-09 22:00,1.13375,1.13383,1.13357,1.13381,430 +2020-06-09 22:15,1.13379,1.13388,1.13363,1.13384,336 +2020-06-09 22:30,1.13383,1.13398,1.13368,1.13392,603 +2020-06-09 22:45,1.13392,1.13398,1.13383,1.13388,235 +2020-06-09 23:00,1.13388,1.1341,1.13387,1.13388,637 +2020-06-09 23:15,1.13382,1.13393,1.13346,1.13346,713 +2020-06-09 23:30,1.13347,1.13347,1.13326,1.13343,700 +2020-06-09 23:45,1.13341,1.13342,1.13315,1.1332,697 +2020-06-10 00:00,1.1332,1.13388,1.1332,1.13363,1324 +2020-06-10 00:15,1.13363,1.13431,1.13363,1.13411,904 +2020-06-10 00:30,1.13412,1.13438,1.13405,1.13437,847 +2020-06-10 00:45,1.13438,1.13447,1.13379,1.13394,1437 +2020-06-10 01:00,1.13395,1.1345,1.13385,1.1345,1055 +2020-06-10 01:15,1.13448,1.1346,1.13429,1.1344,1515 +2020-06-10 01:30,1.13441,1.1345,1.13393,1.13396,1599 +2020-06-10 01:45,1.13396,1.13402,1.13379,1.13385,1350 +2020-06-10 02:00,1.13384,1.13417,1.13378,1.13394,1382 +2020-06-10 02:15,1.13394,1.13433,1.13385,1.13399,1014 +2020-06-10 02:30,1.13398,1.13415,1.1339,1.13409,865 +2020-06-10 02:45,1.1341,1.13446,1.1341,1.13432,802 +2020-06-10 03:00,1.13432,1.13444,1.13407,1.13412,1116 +2020-06-10 03:15,1.13413,1.13423,1.13405,1.13414,634 +2020-06-10 03:30,1.13413,1.13457,1.13412,1.13429,975 +2020-06-10 03:45,1.13428,1.13442,1.13424,1.13424,427 +2020-06-10 04:00,1.13424,1.13453,1.13419,1.1343,612 +2020-06-10 04:15,1.1343,1.13436,1.13408,1.13423,876 +2020-06-10 04:30,1.13425,1.13441,1.1342,1.13425,1132 +2020-06-10 04:45,1.13427,1.13458,1.13417,1.13427,757 +2020-06-10 05:00,1.13427,1.13455,1.13416,1.13449,994 +2020-06-10 05:15,1.13451,1.1359,1.13451,1.13565,1652 +2020-06-10 05:30,1.13564,1.13684,1.1356,1.13656,2508 +2020-06-10 05:45,1.13655,1.13697,1.13612,1.13624,2502 +2020-06-10 06:00,1.13623,1.13674,1.13576,1.13637,2483 +2020-06-10 06:15,1.13636,1.13692,1.13574,1.13585,2386 +2020-06-10 06:30,1.13584,1.13606,1.13503,1.13532,2600 +2020-06-10 06:45,1.13531,1.13587,1.13509,1.13511,2658 +2020-06-10 07:00,1.1351,1.1355,1.13432,1.13529,4636 +2020-06-10 07:15,1.13528,1.1361,1.13514,1.13563,3686 +2020-06-10 07:30,1.13562,1.13567,1.13464,1.13466,3473 +2020-06-10 07:45,1.13465,1.13621,1.13455,1.13597,3249 +2020-06-10 08:00,1.13596,1.13646,1.13584,1.13646,3490 +2020-06-10 08:15,1.13646,1.13742,1.1364,1.13703,2312 +2020-06-10 08:30,1.13702,1.13756,1.13696,1.13699,2937 +2020-06-10 08:45,1.137,1.13712,1.13647,1.13689,2730 +2020-06-10 09:00,1.1369,1.13717,1.13607,1.13629,3325 +2020-06-10 09:15,1.1363,1.13653,1.13551,1.13573,3337 +2020-06-10 09:30,1.13573,1.13615,1.13559,1.1361,3339 +2020-06-10 09:45,1.13608,1.13614,1.13565,1.13591,2587 +2020-06-10 10:00,1.13591,1.13608,1.13503,1.13508,2296 +2020-06-10 10:15,1.13507,1.13548,1.13482,1.13522,2548 +2020-06-10 10:30,1.13523,1.13677,1.13512,1.13674,2678 +2020-06-10 10:45,1.13675,1.1373,1.1363,1.13652,3190 +2020-06-10 11:00,1.13651,1.13743,1.13639,1.13726,2891 +2020-06-10 11:15,1.13726,1.13889,1.1371,1.13782,4059 +2020-06-10 11:30,1.13781,1.13851,1.13765,1.13815,3084 +2020-06-10 11:45,1.13817,1.13894,1.13797,1.13857,5408 +2020-06-10 12:00,1.13857,1.13889,1.13748,1.13755,3804 +2020-06-10 12:15,1.13755,1.1378,1.13668,1.13713,3363 +2020-06-10 12:30,1.13716,1.13744,1.13638,1.13676,4141 +2020-06-10 12:45,1.13676,1.13802,1.13667,1.13801,2972 +2020-06-10 13:00,1.138,1.13854,1.13747,1.1378,3543 +2020-06-10 13:15,1.1378,1.13811,1.13712,1.13765,2678 +2020-06-10 13:30,1.13766,1.13796,1.13629,1.13655,5303 +2020-06-10 13:45,1.13655,1.13675,1.13599,1.13655,5233 +2020-06-10 14:00,1.13657,1.1367,1.13565,1.1359,4229 +2020-06-10 14:15,1.13588,1.13766,1.13574,1.13762,3935 +2020-06-10 14:30,1.13762,1.1378,1.13669,1.13685,4707 +2020-06-10 14:45,1.13686,1.13709,1.1345,1.135,5718 +2020-06-10 15:00,1.13501,1.13553,1.13423,1.13463,3994 +2020-06-10 15:15,1.13463,1.13506,1.1342,1.13449,3750 +2020-06-10 15:30,1.13449,1.13541,1.1344,1.13536,3945 +2020-06-10 15:45,1.13536,1.13596,1.13505,1.1354,2593 +2020-06-10 16:00,1.13539,1.13598,1.13453,1.1351,2532 +2020-06-10 16:15,1.1351,1.13561,1.1351,1.13552,2391 +2020-06-10 16:30,1.13551,1.13591,1.13508,1.13522,1992 +2020-06-10 16:45,1.13523,1.13554,1.13492,1.13513,2115 +2020-06-10 17:00,1.13516,1.13593,1.13494,1.13581,1703 +2020-06-10 17:15,1.13581,1.13585,1.13514,1.13516,1937 +2020-06-10 17:30,1.1352,1.13663,1.1352,1.13654,1384 +2020-06-10 17:45,1.13653,1.13697,1.13639,1.13681,2595 +2020-06-10 18:00,1.13676,1.14068,1.13219,1.14068,9422 +2020-06-10 18:15,1.14068,1.14218,1.14006,1.14107,7776 +2020-06-10 18:30,1.14107,1.14224,1.13841,1.14108,8330 +2020-06-10 18:45,1.14109,1.14127,1.13788,1.13909,8713 +2020-06-10 19:00,1.13909,1.13925,1.13613,1.13866,7861 +2020-06-10 19:15,1.13864,1.14095,1.13783,1.14087,4776 +2020-06-10 19:30,1.14087,1.14156,1.14009,1.14063,4030 +2020-06-10 19:45,1.14062,1.14066,1.13894,1.13894,3710 +2020-06-10 20:00,1.13894,1.13905,1.13788,1.13836,1208 +2020-06-10 20:15,1.13835,1.13835,1.13652,1.13662,1551 +2020-06-10 20:30,1.13663,1.13748,1.13646,1.13733,1024 +2020-06-10 20:45,1.13732,1.13762,1.13725,1.13729,787 +2020-06-10 21:00,1.13729,1.13757,1.13729,1.13752,83 +2020-06-10 21:15,1.13756,1.13759,1.13739,1.13744,169 +2020-06-10 21:30,1.13746,1.13749,1.13739,1.13744,162 +2020-06-10 21:45,1.13745,1.13762,1.13744,1.13755,92 +2020-06-10 22:00,1.13764,1.13799,1.13755,1.13789,643 +2020-06-10 22:15,1.13788,1.13808,1.13725,1.1373,781 +2020-06-10 22:30,1.13733,1.13783,1.13733,1.13743,590 +2020-06-10 22:45,1.13744,1.13776,1.13733,1.13771,354 +2020-06-10 23:00,1.1377,1.13821,1.13762,1.138,1549 +2020-06-10 23:15,1.138,1.13814,1.13749,1.1376,1254 +2020-06-10 23:30,1.1376,1.13772,1.13715,1.13722,1760 +2020-06-10 23:45,1.13721,1.13744,1.13638,1.13667,1982 +2020-06-11 00:00,1.13668,1.13753,1.13658,1.13736,2114 +2020-06-11 00:15,1.13737,1.13801,1.1372,1.13797,1673 +2020-06-11 00:30,1.13798,1.13836,1.13763,1.13829,2497 +2020-06-11 00:45,1.13829,1.13888,1.13787,1.13866,2608 +2020-06-11 01:00,1.13865,1.13915,1.13854,1.13877,1403 +2020-06-11 01:15,1.13878,1.13886,1.13818,1.13829,1946 +2020-06-11 01:30,1.13831,1.13944,1.13824,1.13944,1762 +2020-06-11 01:45,1.13944,1.13952,1.13865,1.13895,2044 +2020-06-11 02:00,1.13894,1.13896,1.13856,1.13874,1621 +2020-06-11 02:15,1.13877,1.13886,1.13854,1.13881,1025 +2020-06-11 02:30,1.1388,1.13936,1.1387,1.13924,945 +2020-06-11 02:45,1.13925,1.1394,1.13869,1.13874,1786 +2020-06-11 03:00,1.13874,1.13889,1.13839,1.13855,1259 +2020-06-11 03:15,1.13856,1.13858,1.13731,1.13745,1417 +2020-06-11 03:30,1.13746,1.13792,1.1371,1.13724,1583 +2020-06-11 03:45,1.13723,1.13724,1.13563,1.13572,2878 +2020-06-11 04:00,1.13573,1.13585,1.13505,1.13511,3088 +2020-06-11 04:15,1.13515,1.13517,1.13437,1.13472,2387 +2020-06-11 04:30,1.13472,1.13548,1.13463,1.1352,2297 +2020-06-11 04:45,1.13521,1.13541,1.1348,1.1351,1836 +2020-06-11 05:00,1.13511,1.13525,1.13325,1.13325,2831 +2020-06-11 05:15,1.13325,1.13367,1.13251,1.13358,2809 +2020-06-11 05:30,1.13359,1.13406,1.13311,1.13334,2745 +2020-06-11 05:45,1.13335,1.13463,1.13325,1.13436,2696 +2020-06-11 06:00,1.1344,1.13468,1.13396,1.13451,3650 +2020-06-11 06:15,1.13453,1.13574,1.13433,1.13527,3297 +2020-06-11 06:30,1.13526,1.13596,1.13499,1.13544,3454 +2020-06-11 06:45,1.13545,1.13624,1.13525,1.13601,3955 +2020-06-11 07:00,1.13601,1.13659,1.13431,1.1349,6804 +2020-06-11 07:15,1.13489,1.13671,1.13463,1.13661,5145 +2020-06-11 07:30,1.1366,1.1369,1.13622,1.13633,4895 +2020-06-11 07:45,1.13632,1.1373,1.13619,1.13632,4053 +2020-06-11 08:00,1.13632,1.13757,1.13584,1.13734,4432 +2020-06-11 08:15,1.13734,1.13776,1.13712,1.1372,3972 +2020-06-11 08:30,1.13721,1.13909,1.13699,1.13763,4670 +2020-06-11 08:45,1.13764,1.13906,1.13707,1.13896,4849 +2020-06-11 09:00,1.13896,1.13958,1.13816,1.13843,4594 +2020-06-11 09:15,1.13843,1.13947,1.13819,1.13844,4699 +2020-06-11 09:30,1.13846,1.14014,1.13845,1.13877,3951 +2020-06-11 09:45,1.13876,1.13887,1.13816,1.13832,3301 +2020-06-11 10:00,1.13833,1.13842,1.13757,1.13792,3633 +2020-06-11 10:15,1.13792,1.13838,1.13747,1.13793,2873 +2020-06-11 10:30,1.13791,1.13853,1.13781,1.13809,2977 +2020-06-11 10:45,1.13806,1.13826,1.13702,1.13723,3197 +2020-06-11 11:00,1.13725,1.13749,1.13648,1.13696,3393 +2020-06-11 11:15,1.13697,1.13699,1.13581,1.13622,3488 +2020-06-11 11:30,1.13623,1.13627,1.13532,1.13586,3609 +2020-06-11 11:45,1.13587,1.13659,1.13541,1.13555,3852 +2020-06-11 12:00,1.13555,1.13571,1.13439,1.13476,3629 +2020-06-11 12:15,1.13475,1.13485,1.1337,1.13427,3578 +2020-06-11 12:30,1.13426,1.1347,1.13363,1.13421,4460 +2020-06-11 12:45,1.13421,1.13585,1.13411,1.13565,4103 +2020-06-11 13:00,1.13567,1.13656,1.1353,1.1365,4477 +2020-06-11 13:15,1.1365,1.13746,1.13613,1.13686,4917 +2020-06-11 13:30,1.13687,1.13688,1.13504,1.13581,5684 +2020-06-11 13:45,1.13579,1.13785,1.13555,1.13778,5440 +2020-06-11 14:00,1.13779,1.14002,1.13718,1.13917,6287 +2020-06-11 14:15,1.13918,1.14036,1.1386,1.13913,5183 +2020-06-11 14:30,1.13914,1.13975,1.13832,1.13844,5475 +2020-06-11 14:45,1.13844,1.13875,1.13755,1.13811,5953 +2020-06-11 15:00,1.13812,1.13867,1.13761,1.13796,4706 +2020-06-11 15:15,1.13796,1.13983,1.13753,1.13823,4702 +2020-06-11 15:30,1.13822,1.13869,1.13656,1.13727,5093 +2020-06-11 15:45,1.13729,1.13797,1.13622,1.13786,4893 +2020-06-11 16:00,1.13786,1.13836,1.13763,1.13811,3556 +2020-06-11 16:15,1.13811,1.13813,1.13659,1.13747,4300 +2020-06-11 16:30,1.13746,1.13817,1.13742,1.13786,3158 +2020-06-11 16:45,1.13786,1.13815,1.13615,1.13616,3679 +2020-06-11 17:00,1.13617,1.13617,1.13373,1.13387,4552 +2020-06-11 17:15,1.13385,1.13394,1.13218,1.13245,3340 +2020-06-11 17:30,1.13245,1.13296,1.13124,1.13175,4371 +2020-06-11 17:45,1.13175,1.13253,1.13076,1.13181,3878 +2020-06-11 18:00,1.1318,1.13256,1.13131,1.13167,4542 +2020-06-11 18:15,1.13167,1.13238,1.13167,1.13212,3105 +2020-06-11 18:30,1.13215,1.13252,1.1303,1.13072,3914 +2020-06-11 18:45,1.13072,1.13121,1.12978,1.13008,4374 +2020-06-11 19:00,1.13007,1.13142,1.13003,1.13026,4530 +2020-06-11 19:15,1.13026,1.13049,1.12923,1.13007,4155 +2020-06-11 19:30,1.13007,1.13092,1.1298,1.13086,3998 +2020-06-11 19:45,1.1309,1.13095,1.12973,1.12993,3007 +2020-06-11 20:00,1.12994,1.13029,1.12911,1.12942,1686 +2020-06-11 20:15,1.12942,1.1296,1.12899,1.12913,782 +2020-06-11 20:30,1.12913,1.12925,1.12885,1.12921,632 +2020-06-11 20:45,1.12918,1.13005,1.12917,1.12989,632 +2020-06-11 21:00,1.12989,1.12989,1.12925,1.12969,911 +2020-06-11 21:15,1.12969,1.13019,1.12951,1.12997,803 +2020-06-11 21:30,1.12997,1.13001,1.12949,1.12967,429 +2020-06-11 21:45,1.12967,1.12967,1.12922,1.12929,1124 +2020-06-11 22:00,1.12927,1.12974,1.12886,1.12923,1650 +2020-06-11 22:15,1.12923,1.12941,1.1287,1.12883,1080 +2020-06-11 22:30,1.12884,1.12931,1.12883,1.12924,1259 +2020-06-11 22:45,1.12929,1.12985,1.12929,1.12984,1072 +2020-06-11 23:00,1.12984,1.12995,1.1293,1.12932,1955 +2020-06-11 23:15,1.1293,1.12935,1.12877,1.12908,1690 +2020-06-11 23:30,1.1291,1.12999,1.12902,1.12932,1536 +2020-06-11 23:45,1.12932,1.12942,1.12875,1.12879,1811 +2020-06-12 00:00,1.12881,1.12903,1.12809,1.1282,2815 +2020-06-12 00:15,1.12819,1.12921,1.12819,1.1289,2428 +2020-06-12 00:30,1.12891,1.1294,1.12886,1.12923,2687 +2020-06-12 00:45,1.12923,1.12925,1.12804,1.12828,2185 +2020-06-12 01:00,1.12828,1.12832,1.12765,1.1281,2745 +2020-06-12 01:15,1.12808,1.1284,1.12796,1.12823,1908 +2020-06-12 01:30,1.12824,1.12858,1.12801,1.12822,2480 +2020-06-12 01:45,1.12821,1.12892,1.12816,1.1288,2774 +2020-06-12 02:00,1.1288,1.1293,1.12853,1.12928,2422 +2020-06-12 02:15,1.12926,1.12977,1.12894,1.12934,1950 +2020-06-12 02:30,1.12933,1.1297,1.12903,1.12908,2443 +2020-06-12 02:45,1.1291,1.12924,1.1288,1.12887,2258 +2020-06-12 03:00,1.12887,1.12927,1.12873,1.12923,1709 +2020-06-12 03:15,1.12924,1.12928,1.12886,1.12897,1385 +2020-06-12 03:30,1.12896,1.12931,1.12885,1.1292,1752 +2020-06-12 03:45,1.12921,1.12977,1.12911,1.12935,1826 +2020-06-12 04:00,1.12936,1.12977,1.12917,1.12922,2001 +2020-06-12 04:15,1.12923,1.12956,1.12922,1.12937,2122 +2020-06-12 04:30,1.12937,1.12939,1.12917,1.12931,1157 +2020-06-12 04:45,1.12931,1.12972,1.12912,1.12969,1593 +2020-06-12 05:00,1.12969,1.12972,1.1294,1.12966,1320 +2020-06-12 05:15,1.12967,1.1298,1.12931,1.12962,1253 +2020-06-12 05:30,1.12961,1.13066,1.12958,1.13055,1693 +2020-06-12 05:45,1.13053,1.13136,1.13046,1.1311,2689 +2020-06-12 06:00,1.13111,1.13159,1.13069,1.13072,3457 +2020-06-12 06:15,1.13073,1.13087,1.12969,1.13038,4080 +2020-06-12 06:30,1.13037,1.1313,1.13034,1.13045,3690 +2020-06-12 06:45,1.13044,1.13088,1.13015,1.13042,3192 +2020-06-12 07:00,1.13042,1.13143,1.12971,1.131,5177 +2020-06-12 07:15,1.13099,1.13186,1.13091,1.13117,5698 +2020-06-12 07:30,1.13117,1.13127,1.13051,1.13073,4213 +2020-06-12 07:45,1.13072,1.13217,1.13055,1.13215,4879 +2020-06-12 08:00,1.13215,1.13296,1.132,1.13251,3939 +2020-06-12 08:15,1.1325,1.13297,1.13247,1.13289,3184 +2020-06-12 08:30,1.13288,1.13405,1.13281,1.1335,4020 +2020-06-12 08:45,1.13351,1.1338,1.13242,1.13247,4125 +2020-06-12 09:00,1.1325,1.13266,1.13156,1.13162,4230 +2020-06-12 09:15,1.13162,1.13214,1.13108,1.13211,3439 +2020-06-12 09:30,1.13212,1.13217,1.131,1.13142,3270 +2020-06-12 09:45,1.13141,1.13253,1.1314,1.13217,3026 +2020-06-12 10:00,1.13219,1.13238,1.13128,1.13221,3542 +2020-06-12 10:15,1.13222,1.13275,1.13164,1.13261,3630 +2020-06-12 10:30,1.13265,1.13266,1.13097,1.13114,4194 +2020-06-12 10:45,1.13114,1.13131,1.12955,1.13027,4004 +2020-06-12 11:00,1.13025,1.13045,1.12924,1.12973,3810 +2020-06-12 11:15,1.12971,1.13117,1.12968,1.13115,3402 +2020-06-12 11:30,1.13114,1.13182,1.1311,1.13112,2615 +2020-06-12 11:45,1.13111,1.13146,1.13043,1.13094,3674 +2020-06-12 12:00,1.13092,1.13157,1.13018,1.13043,3457 +2020-06-12 12:15,1.13043,1.13086,1.13001,1.13004,3435 +2020-06-12 12:30,1.13003,1.1311,1.1294,1.13058,3791 +2020-06-12 12:45,1.13059,1.13082,1.12991,1.13051,3038 +2020-06-12 13:00,1.13052,1.13059,1.12913,1.13044,4081 +2020-06-12 13:15,1.13043,1.13117,1.12993,1.13057,3143 +2020-06-12 13:30,1.13057,1.13229,1.12951,1.13198,7462 +2020-06-12 13:45,1.13197,1.13214,1.12988,1.13013,5973 +2020-06-12 14:00,1.13015,1.13043,1.12943,1.13014,5620 +2020-06-12 14:15,1.13013,1.13052,1.12856,1.12874,5628 +2020-06-12 14:30,1.12875,1.12896,1.12633,1.12661,6737 +2020-06-12 14:45,1.12661,1.12698,1.12387,1.12464,8073 +2020-06-12 15:00,1.12462,1.12528,1.12339,1.12354,10099 +2020-06-12 15:15,1.12355,1.12466,1.12332,1.12435,8519 +2020-06-12 15:30,1.12435,1.12558,1.1239,1.12487,6689 +2020-06-12 15:45,1.12487,1.12584,1.12474,1.12516,5423 +2020-06-12 16:00,1.12518,1.12564,1.12468,1.12488,4383 +2020-06-12 16:15,1.12489,1.12554,1.12434,1.12492,5137 +2020-06-12 16:30,1.12492,1.1251,1.12408,1.12492,4190 +2020-06-12 16:45,1.12492,1.12511,1.12348,1.12359,4153 +2020-06-12 17:00,1.12361,1.12446,1.1232,1.12346,3911 +2020-06-12 17:15,1.12347,1.12352,1.12178,1.12191,4003 +2020-06-12 17:30,1.12191,1.12234,1.1214,1.12203,3915 +2020-06-12 17:45,1.12202,1.12257,1.12125,1.1224,4345 +2020-06-12 18:00,1.12239,1.12284,1.1221,1.12264,3967 +2020-06-12 18:15,1.12266,1.12295,1.12232,1.12274,3869 +2020-06-12 18:30,1.12275,1.12313,1.12248,1.12271,3917 +2020-06-12 18:45,1.1227,1.12338,1.12267,1.12309,3283 +2020-06-12 19:00,1.12309,1.12434,1.12309,1.12392,3931 +2020-06-12 19:15,1.12393,1.1241,1.1233,1.12369,2197 +2020-06-12 19:30,1.1237,1.12431,1.1237,1.12423,2248 +2020-06-12 19:45,1.12424,1.12532,1.12413,1.12527,1850 +2020-06-12 20:00,1.12527,1.12593,1.12526,1.12579,1088 +2020-06-12 20:15,1.12578,1.12588,1.12532,1.12553,645 +2020-06-12 20:30,1.12554,1.1259,1.12528,1.12529,662 +2020-06-12 20:45,1.12531,1.12619,1.12513,1.1255,1495 +2020-06-14 21:00,1.12329,1.12452,1.12329,1.12414,229 +2020-06-14 21:15,1.12414,1.12425,1.12404,1.12419,84 +2020-06-14 21:30,1.12419,1.12474,1.12419,1.12433,93 +2020-06-14 21:45,1.12432,1.12434,1.1242,1.12422,80 +2020-06-14 22:00,1.1242,1.12433,1.12262,1.12339,2829 +2020-06-14 22:15,1.12339,1.12442,1.12329,1.12426,2259 +2020-06-14 22:30,1.12425,1.12473,1.124,1.12416,2266 +2020-06-14 22:45,1.12414,1.12517,1.12411,1.12467,1272 +2020-06-14 23:00,1.12468,1.12491,1.12448,1.12486,2384 +2020-06-14 23:15,1.12487,1.12491,1.12426,1.1244,1752 +2020-06-14 23:30,1.12441,1.12533,1.12437,1.12512,1485 +2020-06-14 23:45,1.12511,1.12582,1.12502,1.12515,2779 +2020-06-15 00:00,1.12516,1.12571,1.12504,1.12542,3647 +2020-06-15 00:15,1.12543,1.12547,1.12494,1.12513,2807 +2020-06-15 00:30,1.12513,1.12611,1.12512,1.12564,2709 +2020-06-15 00:45,1.12564,1.12565,1.1245,1.1246,3969 +2020-06-15 01:00,1.12459,1.12507,1.12436,1.12467,3414 +2020-06-15 01:15,1.12467,1.1251,1.12455,1.12496,2850 +2020-06-15 01:30,1.12496,1.12523,1.12479,1.12521,2498 +2020-06-15 01:45,1.12521,1.12601,1.12515,1.12591,2228 +2020-06-15 02:00,1.12592,1.12593,1.12532,1.12565,2700 +2020-06-15 02:15,1.12566,1.12605,1.12551,1.12597,2019 +2020-06-15 02:30,1.12597,1.12598,1.12541,1.12595,2557 +2020-06-15 02:45,1.12594,1.12594,1.12513,1.12526,1660 +2020-06-15 03:00,1.12527,1.12572,1.12524,1.12551,2068 +2020-06-15 03:15,1.12551,1.12571,1.12543,1.12564,1484 +2020-06-15 03:30,1.12563,1.12578,1.12544,1.12578,1424 +2020-06-15 03:45,1.12578,1.12643,1.12571,1.12633,1744 +2020-06-15 04:00,1.12635,1.12653,1.12602,1.12623,1982 +2020-06-15 04:15,1.12623,1.1267,1.12623,1.12667,1427 +2020-06-15 04:30,1.12668,1.12682,1.12607,1.12626,1862 +2020-06-15 04:45,1.12626,1.12627,1.12592,1.12606,2497 +2020-06-15 05:00,1.12604,1.12617,1.12515,1.12519,2259 +2020-06-15 05:15,1.1252,1.12538,1.12474,1.12507,2475 +2020-06-15 05:30,1.12508,1.12508,1.12382,1.12429,3439 +2020-06-15 05:45,1.1243,1.12457,1.1237,1.12413,4069 +2020-06-15 06:00,1.12414,1.12416,1.12267,1.12289,4101 +2020-06-15 06:15,1.1229,1.12381,1.12286,1.12345,4061 +2020-06-15 06:30,1.12345,1.12484,1.12341,1.12362,5475 +2020-06-15 06:45,1.12362,1.12399,1.1229,1.1231,4780 +2020-06-15 07:00,1.1231,1.12359,1.12299,1.12339,5598 +2020-06-15 07:15,1.12338,1.12442,1.12336,1.12398,5531 +2020-06-15 07:30,1.12396,1.12468,1.12352,1.12428,4818 +2020-06-15 07:45,1.12427,1.12502,1.12409,1.1244,3401 +2020-06-15 08:00,1.12441,1.12652,1.12417,1.12584,5898 +2020-06-15 08:15,1.12583,1.12593,1.12458,1.12526,4318 +2020-06-15 08:30,1.12525,1.12562,1.12475,1.12545,4139 +2020-06-15 08:45,1.12545,1.12675,1.1254,1.12665,4610 +2020-06-15 09:00,1.12664,1.12665,1.12532,1.12574,4015 +2020-06-15 09:15,1.12575,1.12598,1.12521,1.12553,9690 +2020-06-15 09:30,1.12553,1.12555,1.12448,1.12462,4353 +2020-06-15 09:45,1.12462,1.1253,1.1244,1.12491,3442 +2020-06-15 10:00,1.12493,1.12601,1.12484,1.12583,3288 +2020-06-15 10:15,1.12584,1.12597,1.12481,1.12485,4010 +2020-06-15 10:30,1.12483,1.12511,1.12473,1.12494,3006 +2020-06-15 10:45,1.12494,1.12511,1.12449,1.1246,2797 +2020-06-15 11:00,1.12461,1.12486,1.12404,1.12481,2796 +2020-06-15 11:15,1.12481,1.1258,1.1245,1.12551,2678 +2020-06-15 11:30,1.12549,1.12579,1.12515,1.12572,2139 +2020-06-15 11:45,1.12572,1.12676,1.12543,1.12577,4290 +2020-06-15 12:00,1.12577,1.12608,1.12466,1.12526,5357 +2020-06-15 12:15,1.12525,1.1257,1.12494,1.12524,3322 +2020-06-15 12:30,1.12527,1.12555,1.12461,1.12488,3455 +2020-06-15 12:45,1.12488,1.12541,1.12461,1.12475,3080 +2020-06-15 13:00,1.12476,1.1253,1.12439,1.1246,4080 +2020-06-15 13:15,1.12461,1.12547,1.12461,1.12504,2146 +2020-06-15 13:30,1.12504,1.12646,1.12452,1.12578,7796 +2020-06-15 13:45,1.12582,1.12844,1.12538,1.12774,8085 +2020-06-15 14:00,1.12775,1.12851,1.12751,1.12778,6815 +2020-06-15 14:15,1.12778,1.12778,1.12693,1.12706,4558 +2020-06-15 14:30,1.12704,1.12815,1.12693,1.12808,4638 +2020-06-15 14:45,1.12807,1.12938,1.12734,1.12736,6152 +2020-06-15 15:00,1.12737,1.12778,1.12659,1.12707,3964 +2020-06-15 15:15,1.12706,1.12706,1.12601,1.12632,3719 +2020-06-15 15:30,1.12632,1.12748,1.12615,1.12649,2892 +2020-06-15 15:45,1.12648,1.12699,1.1261,1.12696,2440 +2020-06-15 16:00,1.12695,1.12829,1.12686,1.12818,2810 +2020-06-15 16:15,1.12818,1.12867,1.12782,1.1286,2458 +2020-06-15 16:30,1.1286,1.1286,1.12804,1.12837,2627 +2020-06-15 16:45,1.12838,1.1288,1.12823,1.12852,1740 +2020-06-15 17:00,1.12852,1.12893,1.12829,1.12869,1850 +2020-06-15 17:15,1.12867,1.12877,1.12821,1.12828,1274 +2020-06-15 17:30,1.12831,1.12896,1.12821,1.1289,987 +2020-06-15 17:45,1.1289,1.13011,1.12878,1.12984,1817 +2020-06-15 18:00,1.12985,1.13248,1.12985,1.13246,4471 +2020-06-15 18:15,1.13245,1.13324,1.13235,1.13248,3686 +2020-06-15 18:30,1.13249,1.13296,1.13199,1.13209,2184 +2020-06-15 18:45,1.1321,1.13215,1.13108,1.13148,2359 +2020-06-15 19:00,1.1315,1.13215,1.13148,1.13176,2390 +2020-06-15 19:15,1.13176,1.13237,1.1316,1.13163,1954 +2020-06-15 19:30,1.13163,1.13172,1.13076,1.13081,1850 +2020-06-15 19:45,1.1308,1.13146,1.13073,1.13144,1631 +2020-06-15 20:00,1.13146,1.13179,1.13126,1.13154,851 +2020-06-15 20:15,1.13154,1.13191,1.13147,1.13167,451 +2020-06-15 20:30,1.13166,1.13212,1.13166,1.13173,460 +2020-06-15 20:45,1.13174,1.13229,1.13161,1.13228,547 +2020-06-15 21:00,1.13228,1.13253,1.13198,1.13219,211 +2020-06-15 21:15,1.13219,1.13272,1.13213,1.13237,367 +2020-06-15 21:30,1.13237,1.1327,1.13224,1.1325,550 +2020-06-15 21:45,1.1325,1.13255,1.1325,1.13254,85 +2020-06-15 22:00,1.13254,1.13282,1.13204,1.13273,761 +2020-06-15 22:15,1.13273,1.13295,1.13258,1.13284,643 +2020-06-15 22:30,1.13284,1.13308,1.13248,1.13249,739 +2020-06-15 22:45,1.1325,1.13309,1.13247,1.13293,863 +2020-06-15 23:00,1.13293,1.13293,1.13257,1.13268,1032 +2020-06-15 23:15,1.1327,1.13327,1.13266,1.13311,814 +2020-06-15 23:30,1.13311,1.13363,1.13301,1.13348,873 +2020-06-15 23:45,1.13348,1.1338,1.1333,1.13375,795 +2020-06-16 00:00,1.13376,1.13398,1.13324,1.13339,1489 +2020-06-16 00:15,1.13339,1.13363,1.13311,1.13316,1245 +2020-06-16 00:30,1.13314,1.13352,1.13307,1.13311,1359 +2020-06-16 00:45,1.1331,1.1334,1.13301,1.13335,1177 +2020-06-16 01:00,1.13335,1.13397,1.13334,1.13351,1432 +2020-06-16 01:15,1.13352,1.13357,1.13292,1.13324,1427 +2020-06-16 01:30,1.13325,1.13335,1.13274,1.13289,1447 +2020-06-16 01:45,1.13289,1.1332,1.13274,1.13281,1111 +2020-06-16 02:00,1.13281,1.13347,1.13281,1.13337,1178 +2020-06-16 02:15,1.13338,1.13361,1.13298,1.13309,1062 +2020-06-16 02:30,1.1331,1.1346,1.13308,1.13403,2561 +2020-06-16 02:45,1.13404,1.13483,1.13395,1.13454,1856 +2020-06-16 03:00,1.13452,1.13471,1.13418,1.13427,1589 +2020-06-16 03:15,1.13425,1.13436,1.1339,1.13427,1462 +2020-06-16 03:30,1.13426,1.13448,1.13395,1.13437,1661 +2020-06-16 03:45,1.13437,1.13477,1.13379,1.13394,1489 +2020-06-16 04:00,1.13394,1.13395,1.13349,1.1336,1335 +2020-06-16 04:15,1.1336,1.13381,1.13351,1.13368,1071 +2020-06-16 04:30,1.13368,1.13368,1.13321,1.13343,976 +2020-06-16 04:45,1.13343,1.13373,1.13326,1.13326,774 +2020-06-16 05:00,1.13326,1.13393,1.13321,1.13378,997 +2020-06-16 05:15,1.13378,1.13436,1.13378,1.13428,725 +2020-06-16 05:30,1.13428,1.1347,1.13391,1.13391,1412 +2020-06-16 05:45,1.1339,1.13394,1.13357,1.13358,1228 +2020-06-16 06:00,1.13358,1.13391,1.13322,1.13347,2514 +2020-06-16 06:15,1.13348,1.13385,1.13304,1.13361,1676 +2020-06-16 06:30,1.13361,1.13428,1.13279,1.13426,3918 +2020-06-16 06:45,1.13427,1.13469,1.1336,1.13462,4090 +2020-06-16 07:00,1.13461,1.13532,1.13405,1.13459,5368 +2020-06-16 07:15,1.13458,1.13459,1.13316,1.13343,4846 +2020-06-16 07:30,1.1334,1.13365,1.13255,1.13324,4403 +2020-06-16 07:45,1.13323,1.13372,1.13206,1.13228,3871 +2020-06-16 08:00,1.13228,1.13245,1.1315,1.1324,5244 +2020-06-16 08:15,1.13242,1.13351,1.13235,1.13304,3892 +2020-06-16 08:30,1.13306,1.13342,1.13277,1.1331,3321 +2020-06-16 08:45,1.13311,1.13472,1.13308,1.13361,3250 +2020-06-16 09:00,1.13363,1.13411,1.13313,1.13316,2659 +2020-06-16 09:15,1.13317,1.13336,1.13245,1.1329,2801 +2020-06-16 09:30,1.1329,1.13317,1.13218,1.13265,2650 +2020-06-16 09:45,1.13264,1.1336,1.13228,1.13335,3840 +2020-06-16 10:00,1.13334,1.1335,1.13206,1.1328,2490 +2020-06-16 10:15,1.13281,1.13295,1.13204,1.13295,2577 +2020-06-16 10:30,1.13296,1.13313,1.13106,1.13118,2846 +2020-06-16 10:45,1.13119,1.13184,1.13103,1.13155,2442 +2020-06-16 11:00,1.13155,1.13197,1.13088,1.13096,2373 +2020-06-16 11:15,1.13096,1.13151,1.1309,1.13148,1921 +2020-06-16 11:30,1.13152,1.13155,1.12969,1.12995,2911 +2020-06-16 11:45,1.12996,1.13064,1.12948,1.13036,2497 +2020-06-16 12:00,1.13037,1.13077,1.12975,1.13075,2744 +2020-06-16 12:15,1.13074,1.13105,1.1303,1.13065,3197 +2020-06-16 12:30,1.13063,1.1319,1.12947,1.13138,5876 +2020-06-16 12:45,1.13138,1.13139,1.12961,1.13016,4378 +2020-06-16 13:00,1.13017,1.13027,1.12696,1.1272,6135 +2020-06-16 13:15,1.12719,1.12867,1.12698,1.12833,4474 +2020-06-16 13:30,1.12834,1.12853,1.12749,1.12816,5649 +2020-06-16 13:45,1.12816,1.12858,1.12661,1.127,4705 +2020-06-16 14:00,1.127,1.12749,1.12602,1.12666,5488 +2020-06-16 14:15,1.12666,1.12692,1.12451,1.12564,5595 +2020-06-16 14:30,1.12566,1.12616,1.12374,1.12444,6519 +2020-06-16 14:45,1.12443,1.12473,1.12316,1.12374,9480 +2020-06-16 15:00,1.12374,1.12512,1.12278,1.12511,8988 +2020-06-16 15:15,1.1251,1.12606,1.12443,1.12587,6775 +2020-06-16 15:30,1.12588,1.1264,1.12523,1.12535,4725 +2020-06-16 15:45,1.12535,1.1259,1.12512,1.12571,3154 +2020-06-16 16:00,1.12574,1.12685,1.12547,1.12664,4213 +2020-06-16 16:15,1.12665,1.12687,1.12643,1.12653,3060 +2020-06-16 16:30,1.12652,1.12732,1.12651,1.12717,2336 +2020-06-16 16:45,1.12717,1.12729,1.12666,1.12682,1760 +2020-06-16 17:00,1.12683,1.12686,1.12591,1.12606,1177 +2020-06-16 17:15,1.12605,1.12632,1.12586,1.12588,1029 +2020-06-16 17:30,1.12589,1.12624,1.12582,1.12618,999 +2020-06-16 17:45,1.12619,1.12638,1.12581,1.12627,1273 +2020-06-16 18:00,1.12627,1.12681,1.12627,1.1266,1404 +2020-06-16 18:15,1.12661,1.12672,1.12597,1.12638,2262 +2020-06-16 18:30,1.12639,1.12683,1.12639,1.1265,1676 +2020-06-16 18:45,1.12653,1.12724,1.12642,1.12723,1390 +2020-06-16 19:00,1.12722,1.12724,1.12637,1.12638,1491 +2020-06-16 19:15,1.12637,1.12648,1.12585,1.12633,1800 +2020-06-16 19:30,1.12633,1.12658,1.1257,1.12571,1535 +2020-06-16 19:45,1.12572,1.12616,1.12566,1.12615,1530 +2020-06-16 20:00,1.12616,1.12624,1.12572,1.12616,790 +2020-06-16 20:15,1.12615,1.12639,1.12602,1.12622,323 +2020-06-16 20:30,1.12621,1.12639,1.12618,1.12621,319 +2020-06-16 20:45,1.1262,1.12635,1.12602,1.12631,279 +2020-06-16 21:00,1.12629,1.12641,1.126,1.12632,397 +2020-06-16 21:15,1.12632,1.12632,1.12559,1.12576,377 +2020-06-16 21:30,1.12576,1.12614,1.1255,1.12571,538 +2020-06-16 21:45,1.12574,1.12623,1.12565,1.12615,1018 +2020-06-16 22:00,1.12615,1.12621,1.12557,1.12562,818 +2020-06-16 22:15,1.12561,1.12568,1.12532,1.12566,786 +2020-06-16 22:30,1.12563,1.12571,1.12539,1.12569,1056 +2020-06-16 22:45,1.12573,1.12596,1.12573,1.1259,461 +2020-06-16 23:00,1.1259,1.12624,1.1259,1.1261,1031 +2020-06-16 23:15,1.1261,1.12646,1.12606,1.12636,744 +2020-06-16 23:30,1.12635,1.12651,1.1263,1.1264,753 +2020-06-16 23:45,1.12644,1.1266,1.1264,1.12648,677 +2020-06-17 00:00,1.12649,1.12673,1.12611,1.12654,2170 +2020-06-17 00:15,1.12654,1.12676,1.12555,1.12595,2685 +2020-06-17 00:30,1.12596,1.12677,1.1257,1.12667,1619 +2020-06-17 00:45,1.12667,1.12731,1.12655,1.12673,2354 +2020-06-17 01:00,1.12673,1.12723,1.1266,1.1266,2089 +2020-06-17 01:15,1.1266,1.12691,1.12625,1.12625,1869 +2020-06-17 01:30,1.12626,1.12701,1.12602,1.12701,1839 +2020-06-17 01:45,1.12701,1.12728,1.12641,1.12651,2256 +2020-06-17 02:00,1.12653,1.12681,1.12632,1.12654,1922 +2020-06-17 02:15,1.12654,1.1266,1.12601,1.12606,1567 +2020-06-17 02:30,1.12606,1.12608,1.12549,1.12582,2098 +2020-06-17 02:45,1.12581,1.1266,1.1258,1.12642,1566 +2020-06-17 03:00,1.12642,1.12643,1.12615,1.12634,1339 +2020-06-17 03:15,1.12633,1.12653,1.12628,1.12648,1169 +2020-06-17 03:30,1.12648,1.12678,1.12633,1.12636,1849 +2020-06-17 03:45,1.12635,1.12643,1.12623,1.12642,1307 +2020-06-17 04:00,1.12643,1.12678,1.1263,1.12678,1008 +2020-06-17 04:15,1.12679,1.12725,1.12676,1.12724,939 +2020-06-17 04:30,1.12724,1.1273,1.12672,1.12687,1180 +2020-06-17 04:45,1.12686,1.12713,1.12672,1.12713,996 +2020-06-17 05:00,1.12713,1.12798,1.12701,1.12707,2005 +2020-06-17 05:15,1.12708,1.12738,1.12697,1.12734,1298 +2020-06-17 05:30,1.12734,1.12754,1.1271,1.12728,1172 +2020-06-17 05:45,1.12729,1.12764,1.12716,1.12733,1057 +2020-06-17 06:00,1.12733,1.12832,1.12719,1.1281,2572 +2020-06-17 06:15,1.12811,1.12841,1.12752,1.12807,2716 +2020-06-17 06:30,1.12806,1.12836,1.12759,1.12813,2442 +2020-06-17 06:45,1.12812,1.12854,1.12801,1.12803,2853 +2020-06-17 07:00,1.12806,1.12894,1.12798,1.12832,5106 +2020-06-17 07:15,1.12833,1.12895,1.12798,1.12878,4808 +2020-06-17 07:30,1.12877,1.12939,1.12863,1.12912,3927 +2020-06-17 07:45,1.12912,1.12912,1.12659,1.12665,4348 +2020-06-17 08:00,1.12666,1.12744,1.12567,1.12609,7790 +2020-06-17 08:15,1.12611,1.12754,1.12603,1.12698,4147 +2020-06-17 08:30,1.12698,1.12735,1.12621,1.12668,3389 +2020-06-17 08:45,1.12668,1.12676,1.12509,1.12575,3875 +2020-06-17 09:00,1.12574,1.12602,1.12422,1.12422,4628 +2020-06-17 09:15,1.12423,1.12445,1.12359,1.12414,5046 +2020-06-17 09:30,1.12413,1.12415,1.1235,1.12375,4603 +2020-06-17 09:45,1.12376,1.1239,1.12244,1.12294,4654 +2020-06-17 10:00,1.12294,1.12387,1.12291,1.12316,3490 +2020-06-17 10:15,1.12317,1.12447,1.1229,1.12443,3341 +2020-06-17 10:30,1.12445,1.12488,1.12393,1.12414,3470 +2020-06-17 10:45,1.12415,1.12441,1.12366,1.1242,2914 +2020-06-17 11:00,1.1242,1.12547,1.12404,1.12493,3569 +2020-06-17 11:15,1.12492,1.12493,1.12423,1.12483,1960 +2020-06-17 11:30,1.12484,1.12527,1.12428,1.12452,2613 +2020-06-17 11:45,1.12451,1.12473,1.12294,1.12306,3208 +2020-06-17 12:00,1.12306,1.12389,1.1227,1.12313,3683 +2020-06-17 12:15,1.12313,1.12345,1.12227,1.12291,4303 +2020-06-17 12:30,1.1229,1.12366,1.12262,1.12342,3477 +2020-06-17 12:45,1.12341,1.12447,1.12332,1.12369,3940 +2020-06-17 13:00,1.12369,1.12412,1.12325,1.12361,3688 +2020-06-17 13:15,1.12362,1.12484,1.12319,1.12474,3966 +2020-06-17 13:30,1.12474,1.12474,1.1229,1.12297,4942 +2020-06-17 13:45,1.12297,1.12407,1.12142,1.12201,5029 +2020-06-17 14:00,1.122,1.12255,1.12113,1.12148,5383 +2020-06-17 14:15,1.12148,1.12216,1.12068,1.12172,8381 +2020-06-17 14:30,1.12172,1.12246,1.12151,1.12237,5499 +2020-06-17 14:45,1.1224,1.12377,1.12179,1.12195,5597 +2020-06-17 15:00,1.12194,1.12308,1.12152,1.1223,4844 +2020-06-17 15:15,1.12232,1.12248,1.12171,1.1223,3172 +2020-06-17 15:30,1.12231,1.12231,1.12091,1.12127,3294 +2020-06-17 15:45,1.12127,1.12192,1.12098,1.12183,2876 +2020-06-17 16:00,1.1218,1.12231,1.12164,1.1217,2337 +2020-06-17 16:15,1.1217,1.12253,1.12157,1.12245,2965 +2020-06-17 16:30,1.12245,1.12297,1.12239,1.12294,2117 +2020-06-17 16:45,1.12294,1.12336,1.1228,1.12308,2625 +2020-06-17 17:00,1.12308,1.12342,1.12302,1.12338,2686 +2020-06-17 17:15,1.12339,1.12396,1.12332,1.12384,2063 +2020-06-17 17:30,1.12381,1.12399,1.12361,1.12366,2141 +2020-06-17 17:45,1.12367,1.12401,1.12366,1.12367,1464 +2020-06-17 18:00,1.12366,1.12372,1.12301,1.12302,1759 +2020-06-17 18:15,1.12302,1.12337,1.12295,1.12334,1653 +2020-06-17 18:30,1.12334,1.12362,1.12332,1.12343,1082 +2020-06-17 18:45,1.12342,1.12342,1.12297,1.12307,1283 +2020-06-17 19:00,1.12305,1.1232,1.12286,1.12304,1981 +2020-06-17 19:15,1.12304,1.1237,1.12304,1.12341,3022 +2020-06-17 19:30,1.12343,1.12357,1.12328,1.12333,2437 +2020-06-17 19:45,1.12334,1.12397,1.12328,1.12389,2531 +2020-06-17 20:00,1.12388,1.12398,1.12349,1.12369,804 +2020-06-17 20:15,1.1237,1.12434,1.1236,1.12416,672 +2020-06-17 20:30,1.12419,1.12419,1.12384,1.12404,459 +2020-06-17 20:45,1.12404,1.1246,1.12394,1.12432,798 +2020-06-17 21:00,1.12428,1.12457,1.12409,1.12457,433 +2020-06-17 21:15,1.12458,1.12466,1.12427,1.12427,212 +2020-06-17 21:30,1.12428,1.12443,1.12424,1.12442,122 +2020-06-17 21:45,1.12443,1.12449,1.1242,1.12427,431 +2020-06-17 22:00,1.12424,1.12443,1.12418,1.12442,784 +2020-06-17 22:15,1.12442,1.12453,1.12432,1.12453,338 +2020-06-17 22:30,1.12451,1.12475,1.12451,1.12469,646 +2020-06-17 22:45,1.12469,1.12474,1.1244,1.12444,404 +2020-06-17 23:00,1.12444,1.12461,1.1244,1.12444,1442 +2020-06-17 23:15,1.12443,1.12447,1.12379,1.12398,1578 +2020-06-17 23:30,1.12397,1.12437,1.12388,1.12431,885 +2020-06-17 23:45,1.12431,1.12433,1.12395,1.12419,1257 +2020-06-18 00:00,1.12419,1.12467,1.12385,1.12414,2130 +2020-06-18 00:15,1.12416,1.12499,1.124,1.12458,2208 +2020-06-18 00:30,1.12459,1.1249,1.12435,1.12437,1414 +2020-06-18 00:45,1.12438,1.12459,1.12405,1.12411,1840 +2020-06-18 01:00,1.12414,1.12467,1.12408,1.1246,1328 +2020-06-18 01:15,1.1246,1.12497,1.12389,1.12413,1991 +2020-06-18 01:30,1.12413,1.12414,1.12249,1.12316,4429 +2020-06-18 01:45,1.12315,1.12363,1.12301,1.12351,1650 +2020-06-18 02:00,1.12352,1.12366,1.12319,1.12359,1884 +2020-06-18 02:15,1.12361,1.12377,1.1232,1.12348,1593 +2020-06-18 02:30,1.12348,1.12405,1.12346,1.12394,1696 +2020-06-18 02:45,1.12393,1.12397,1.12365,1.12393,1807 +2020-06-18 03:00,1.12393,1.1248,1.12393,1.12457,1646 +2020-06-18 03:15,1.12458,1.12479,1.12438,1.12461,1397 +2020-06-18 03:30,1.12462,1.12503,1.12457,1.12492,1744 +2020-06-18 03:45,1.12493,1.12517,1.12465,1.12492,1568 +2020-06-18 04:00,1.12491,1.12518,1.12475,1.12484,1326 +2020-06-18 04:15,1.12486,1.1249,1.12462,1.12467,1166 +2020-06-18 04:30,1.12466,1.12501,1.12443,1.12489,1533 +2020-06-18 04:45,1.12489,1.12612,1.12486,1.12553,1907 +2020-06-18 05:00,1.12552,1.12595,1.12536,1.12558,1573 +2020-06-18 05:15,1.12559,1.12565,1.12525,1.12533,1170 +2020-06-18 05:30,1.12532,1.12538,1.12495,1.12495,1190 +2020-06-18 05:45,1.12495,1.12511,1.12475,1.12507,1205 +2020-06-18 06:00,1.12507,1.1253,1.12446,1.12487,2341 +2020-06-18 06:15,1.12486,1.12522,1.12455,1.12512,2205 +2020-06-18 06:30,1.12514,1.12588,1.12511,1.1253,3188 +2020-06-18 06:45,1.12532,1.1257,1.12523,1.12541,2395 +2020-06-18 07:00,1.1254,1.12569,1.12482,1.12545,3071 +2020-06-18 07:15,1.12546,1.12577,1.1242,1.12491,3917 +2020-06-18 07:30,1.12492,1.12519,1.12401,1.12453,3860 +2020-06-18 07:45,1.12452,1.12481,1.1241,1.1243,3269 +2020-06-18 08:00,1.12431,1.12436,1.12305,1.12337,4157 +2020-06-18 08:15,1.12338,1.12425,1.123,1.12395,3357 +2020-06-18 08:30,1.12396,1.12599,1.12386,1.12534,5361 +2020-06-18 08:45,1.12535,1.12546,1.12472,1.12491,4246 +2020-06-18 09:00,1.12493,1.12548,1.1245,1.12544,2909 +2020-06-18 09:15,1.12543,1.12581,1.12515,1.12524,3649 +2020-06-18 09:30,1.12523,1.12613,1.12478,1.12541,4907 +2020-06-18 09:45,1.12541,1.12607,1.12493,1.12505,3522 +2020-06-18 10:00,1.12505,1.12505,1.12422,1.12424,2767 +2020-06-18 10:15,1.12425,1.1248,1.1239,1.12468,2511 +2020-06-18 10:30,1.12465,1.12513,1.12422,1.12509,2451 +2020-06-18 10:45,1.12508,1.1256,1.12478,1.12549,3024 +2020-06-18 11:00,1.12549,1.12585,1.1241,1.12436,5105 +2020-06-18 11:15,1.12436,1.12472,1.12382,1.12409,3992 +2020-06-18 11:30,1.12408,1.12442,1.12378,1.12403,2683 +2020-06-18 11:45,1.12404,1.12417,1.12296,1.12342,4847 +2020-06-18 12:00,1.12344,1.12347,1.12142,1.12216,5392 +2020-06-18 12:15,1.12216,1.12325,1.12195,1.12291,3598 +2020-06-18 12:30,1.1229,1.1233,1.12222,1.1232,5123 +2020-06-18 12:45,1.12317,1.12345,1.12232,1.12273,3857 +2020-06-18 13:00,1.12274,1.12312,1.1222,1.12287,3245 +2020-06-18 13:15,1.12289,1.12295,1.12181,1.1223,4675 +2020-06-18 13:30,1.1223,1.12317,1.12227,1.12307,5284 +2020-06-18 13:45,1.12307,1.12315,1.1211,1.12126,4529 +2020-06-18 14:00,1.12127,1.12256,1.1212,1.12251,3653 +2020-06-18 14:15,1.12251,1.12263,1.12026,1.12118,4085 +2020-06-18 14:30,1.1212,1.12184,1.12055,1.12159,4818 +2020-06-18 14:45,1.12159,1.12212,1.12081,1.1221,5347 +2020-06-18 15:00,1.1221,1.12301,1.12181,1.12301,3789 +2020-06-18 15:15,1.12299,1.12324,1.12252,1.12258,2925 +2020-06-18 15:30,1.12257,1.12293,1.1214,1.12144,3058 +2020-06-18 15:45,1.12144,1.12191,1.12111,1.12151,2785 +2020-06-18 16:00,1.12151,1.12173,1.12104,1.12154,3400 +2020-06-18 16:15,1.12154,1.12156,1.12081,1.12091,2085 +2020-06-18 16:30,1.12094,1.12097,1.11985,1.12025,2538 +2020-06-18 16:45,1.12026,1.12071,1.11923,1.11933,2717 +2020-06-18 17:00,1.11932,1.11981,1.11854,1.1197,3312 +2020-06-18 17:15,1.11971,1.11979,1.11893,1.11934,1865 +2020-06-18 17:30,1.11934,1.12015,1.119,1.1201,1561 +2020-06-18 17:45,1.12011,1.12048,1.12,1.12038,2102 +2020-06-18 18:00,1.12038,1.12056,1.11993,1.12023,2186 +2020-06-18 18:15,1.1202,1.12072,1.12006,1.12036,2003 +2020-06-18 18:30,1.12036,1.12063,1.12015,1.12033,1870 +2020-06-18 18:45,1.1203,1.12088,1.12026,1.12088,1818 +2020-06-18 19:00,1.12085,1.12093,1.12046,1.12054,1272 +2020-06-18 19:15,1.12058,1.12099,1.12052,1.12094,1243 +2020-06-18 19:30,1.12094,1.12129,1.12087,1.12088,1530 +2020-06-18 19:45,1.12087,1.12108,1.12021,1.12024,2205 +2020-06-18 20:00,1.12026,1.1204,1.11996,1.12036,1194 +2020-06-18 20:15,1.12037,1.12084,1.12028,1.12083,438 +2020-06-18 20:30,1.12083,1.12098,1.12066,1.12078,257 +2020-06-18 20:45,1.12079,1.12079,1.12043,1.12055,572 +2020-06-18 21:00,1.12054,1.12068,1.12008,1.12047,450 +2020-06-18 21:15,1.12047,1.12054,1.12033,1.12036,459 +2020-06-18 21:30,1.12037,1.12037,1.12005,1.12026,852 +2020-06-18 21:45,1.12025,1.12045,1.12012,1.12034,671 +2020-06-18 22:00,1.12032,1.12081,1.12032,1.12068,608 +2020-06-18 22:15,1.12068,1.12077,1.12044,1.1207,737 +2020-06-18 22:30,1.12072,1.12075,1.1206,1.1206,281 +2020-06-18 22:45,1.12063,1.12095,1.1206,1.12089,525 +2020-06-18 23:00,1.1209,1.12096,1.12075,1.1208,742 +2020-06-18 23:15,1.12079,1.12093,1.12072,1.12087,489 +2020-06-18 23:30,1.12087,1.12132,1.12086,1.12098,686 +2020-06-18 23:45,1.12099,1.12099,1.12069,1.12076,958 +2020-06-19 00:00,1.12075,1.12081,1.12008,1.12025,1962 +2020-06-19 00:15,1.12025,1.12031,1.11997,1.12017,1917 +2020-06-19 00:30,1.12018,1.1203,1.12005,1.12019,1979 +2020-06-19 00:45,1.12018,1.12043,1.11992,1.12036,1799 +2020-06-19 01:00,1.12036,1.12044,1.11988,1.12006,2296 +2020-06-19 01:15,1.12005,1.12078,1.11998,1.12061,1416 +2020-06-19 01:30,1.12061,1.12103,1.12054,1.12067,2207 +2020-06-19 01:45,1.12067,1.12104,1.12056,1.12059,1262 +2020-06-19 02:00,1.1206,1.12062,1.12041,1.12059,993 +2020-06-19 02:15,1.1206,1.12086,1.12053,1.12059,1406 +2020-06-19 02:30,1.1206,1.12088,1.12056,1.12071,1518 +2020-06-19 02:45,1.12072,1.12107,1.12066,1.12106,1156 +2020-06-19 03:00,1.12105,1.12122,1.12084,1.12115,1444 +2020-06-19 03:15,1.12116,1.12144,1.12106,1.12109,1703 +2020-06-19 03:30,1.1211,1.12132,1.12098,1.12128,808 +2020-06-19 03:45,1.1213,1.12144,1.12101,1.12144,928 +2020-06-19 04:00,1.12144,1.12144,1.12112,1.12123,1452 +2020-06-19 04:15,1.12124,1.12142,1.12114,1.12118,775 +2020-06-19 04:30,1.12117,1.12161,1.12116,1.12141,1019 +2020-06-19 04:45,1.12143,1.12151,1.12124,1.12133,771 +2020-06-19 05:00,1.12134,1.12146,1.12123,1.12131,1002 +2020-06-19 05:15,1.12131,1.12151,1.12129,1.12146,649 +2020-06-19 05:30,1.12146,1.1216,1.12135,1.12152,1201 +2020-06-19 05:45,1.1215,1.12169,1.12135,1.12145,953 +2020-06-19 06:00,1.12146,1.12162,1.12055,1.12055,1854 +2020-06-19 06:15,1.12055,1.12138,1.12055,1.12133,1676 +2020-06-19 06:30,1.12133,1.12217,1.12112,1.12191,2838 +2020-06-19 06:45,1.12191,1.12201,1.12161,1.12167,2071 +2020-06-19 07:00,1.12166,1.12181,1.12109,1.1216,2993 +2020-06-19 07:15,1.12159,1.12185,1.12138,1.12147,2100 +2020-06-19 07:30,1.12151,1.12151,1.12048,1.1208,2279 +2020-06-19 07:45,1.12079,1.12135,1.12073,1.12126,2937 +2020-06-19 08:00,1.12126,1.12126,1.1204,1.12066,3654 +2020-06-19 08:15,1.12065,1.12131,1.12036,1.12131,2980 +2020-06-19 08:30,1.12132,1.12195,1.12132,1.12173,3037 +2020-06-19 08:45,1.12174,1.12189,1.12134,1.12161,2074 +2020-06-19 09:00,1.12159,1.12185,1.1211,1.12133,2733 +2020-06-19 09:15,1.12133,1.12163,1.12099,1.12155,2609 +2020-06-19 09:30,1.12156,1.12172,1.12129,1.12136,2076 +2020-06-19 09:45,1.12137,1.12184,1.12134,1.12155,2096 +2020-06-19 10:00,1.12153,1.12153,1.12074,1.12095,2776 +2020-06-19 10:15,1.12094,1.12099,1.11985,1.11996,3091 +2020-06-19 10:30,1.11997,1.12027,1.11944,1.12019,2533 +2020-06-19 10:45,1.1202,1.12052,1.11982,1.12038,2017 +2020-06-19 11:00,1.12037,1.12044,1.11954,1.11999,2586 +2020-06-19 11:15,1.12,1.12054,1.1198,1.12,1757 +2020-06-19 11:30,1.12002,1.12095,1.11972,1.12094,2199 +2020-06-19 11:45,1.12096,1.12107,1.12046,1.121,2511 +2020-06-19 12:00,1.12101,1.12166,1.12013,1.12101,3571 +2020-06-19 12:15,1.12104,1.12294,1.12088,1.12257,29953 +2020-06-19 12:30,1.12258,1.12542,1.12252,1.12472,6872 +2020-06-19 12:45,1.12472,1.12483,1.12361,1.12378,3668 +2020-06-19 13:00,1.1238,1.12422,1.12308,1.12313,3355 +2020-06-19 13:15,1.12313,1.12349,1.1228,1.12316,3242 +2020-06-19 13:30,1.12317,1.12368,1.12273,1.12306,3960 +2020-06-19 13:45,1.12307,1.12328,1.12163,1.12181,4134 +2020-06-19 14:00,1.12184,1.12298,1.12184,1.12296,3330 +2020-06-19 14:15,1.12297,1.12325,1.12201,1.12202,3577 +2020-06-19 14:30,1.12202,1.12206,1.11932,1.11947,5518 +2020-06-19 14:45,1.11947,1.11948,1.1168,1.11817,9683 +2020-06-19 15:00,1.11819,1.12152,1.11795,1.12044,7793 +2020-06-19 15:15,1.12043,1.12043,1.11892,1.11924,4970 +2020-06-19 15:30,1.11923,1.11947,1.11831,1.11879,4059 +2020-06-19 15:45,1.11878,1.11937,1.11829,1.11881,3298 +2020-06-19 16:00,1.11882,1.1191,1.11826,1.11826,3127 +2020-06-19 16:15,1.11829,1.11941,1.11811,1.11932,4931 +2020-06-19 16:30,1.11931,1.11957,1.11875,1.11907,2961 +2020-06-19 16:45,1.11907,1.11962,1.11892,1.11924,2106 +2020-06-19 17:00,1.11925,1.11926,1.11869,1.11872,2968 +2020-06-19 17:15,1.11871,1.11921,1.11862,1.11912,2376 +2020-06-19 17:30,1.11911,1.11936,1.11884,1.11915,1531 +2020-06-19 17:45,1.11916,1.11931,1.11878,1.11884,1958 +2020-06-19 18:00,1.11884,1.11898,1.1177,1.1177,3231 +2020-06-19 18:15,1.1177,1.11828,1.11747,1.11797,2319 +2020-06-19 18:30,1.11798,1.1184,1.11792,1.11824,2182 +2020-06-19 18:45,1.11824,1.11873,1.1181,1.11851,2099 +2020-06-19 19:00,1.11851,1.1189,1.11851,1.11879,1448 +2020-06-19 19:15,1.1188,1.1189,1.1187,1.11876,1430 +2020-06-19 19:30,1.11877,1.11877,1.1185,1.11856,770 +2020-06-19 19:45,1.11854,1.11881,1.11832,1.11863,897 +2020-06-19 20:00,1.11865,1.1188,1.11784,1.11795,805 +2020-06-19 20:15,1.11796,1.11816,1.1178,1.11781,824 +2020-06-19 20:30,1.11781,1.11791,1.11719,1.11736,892 +2020-06-19 20:45,1.11737,1.11795,1.11731,1.11759,286 +2020-06-21 21:00,1.11835,1.11846,1.11811,1.11837,52 +2020-06-21 21:15,1.11841,1.1185,1.11834,1.11839,60 +2020-06-21 21:30,1.11836,1.11856,1.11826,1.11851,60 +2020-06-21 21:45,1.1185,1.11874,1.11824,1.11825,71 +2020-06-21 22:00,1.11847,1.11847,1.1175,1.11766,866 +2020-06-21 22:15,1.11768,1.11815,1.11762,1.11808,696 +2020-06-21 22:30,1.1181,1.11842,1.11803,1.1183,777 +2020-06-21 22:45,1.11829,1.1184,1.11779,1.11806,486 +2020-06-21 23:00,1.11806,1.11811,1.11758,1.11759,661 +2020-06-21 23:15,1.11759,1.11759,1.11686,1.11716,991 +2020-06-21 23:30,1.11716,1.11722,1.11684,1.11712,700 +2020-06-21 23:45,1.11714,1.11776,1.11714,1.11766,716 +2020-06-22 00:00,1.11766,1.1179,1.11737,1.11768,1421 +2020-06-22 00:15,1.11768,1.11816,1.11768,1.11806,1386 +2020-06-22 00:30,1.11807,1.11844,1.11789,1.11837,1058 +2020-06-22 00:45,1.11837,1.11851,1.11798,1.118,1286 +2020-06-22 01:00,1.118,1.11892,1.11799,1.11883,1640 +2020-06-22 01:15,1.11882,1.11888,1.11837,1.11846,1255 +2020-06-22 01:30,1.11848,1.11873,1.11836,1.1187,1454 +2020-06-22 01:45,1.1187,1.11892,1.11852,1.11852,1237 +2020-06-22 02:00,1.11853,1.11882,1.11846,1.11867,1130 +2020-06-22 02:15,1.11867,1.11929,1.11856,1.11928,1728 +2020-06-22 02:30,1.11931,1.11967,1.11917,1.11925,1831 +2020-06-22 02:45,1.11925,1.11937,1.119,1.11911,1295 +2020-06-22 03:00,1.11909,1.11929,1.11886,1.11921,955 +2020-06-22 03:15,1.1192,1.1195,1.11913,1.11946,1038 +2020-06-22 03:30,1.11945,1.11952,1.1192,1.11925,1056 +2020-06-22 03:45,1.11924,1.11927,1.119,1.11922,982 +2020-06-22 04:00,1.11921,1.11976,1.11917,1.11972,822 +2020-06-22 04:15,1.11971,1.11982,1.11962,1.11977,655 +2020-06-22 04:30,1.11976,1.11999,1.11974,1.11982,806 +2020-06-22 04:45,1.1198,1.12039,1.11976,1.12032,1035 +2020-06-22 05:00,1.12032,1.12044,1.11985,1.11999,1529 +2020-06-22 05:15,1.11999,1.12046,1.11993,1.12032,1184 +2020-06-22 05:30,1.12032,1.12038,1.11994,1.12001,990 +2020-06-22 05:45,1.12,1.12003,1.11945,1.11952,1142 +2020-06-22 06:00,1.11951,1.11974,1.11895,1.11939,2281 +2020-06-22 06:15,1.11939,1.11988,1.11929,1.11971,1555 +2020-06-22 06:30,1.11971,1.12014,1.11929,1.1199,2233 +2020-06-22 06:45,1.11993,1.12065,1.11934,1.1194,2899 +2020-06-22 07:00,1.11943,1.11946,1.1188,1.11929,3934 +2020-06-22 07:15,1.1193,1.1202,1.11894,1.12019,2697 +2020-06-22 07:30,1.12017,1.12055,1.12002,1.12025,3790 +2020-06-22 07:45,1.12025,1.12121,1.12015,1.12103,4008 +2020-06-22 08:00,1.12103,1.12128,1.12073,1.12082,3350 +2020-06-22 08:15,1.12082,1.12097,1.1206,1.12083,2498 +2020-06-22 08:30,1.12085,1.12236,1.12071,1.12204,2724 +2020-06-22 08:45,1.12204,1.1225,1.12191,1.12244,2322 +2020-06-22 09:00,1.12243,1.12265,1.12205,1.12212,2972 +2020-06-22 09:15,1.12212,1.1223,1.12164,1.12209,2106 +2020-06-22 09:30,1.12208,1.12212,1.12127,1.1215,3311 +2020-06-22 09:45,1.12149,1.1219,1.1212,1.12134,2343 +2020-06-22 10:00,1.12132,1.12166,1.12107,1.12132,2888 +2020-06-22 10:15,1.1213,1.12166,1.12118,1.12142,2547 +2020-06-22 10:30,1.12143,1.12201,1.12138,1.12198,1870 +2020-06-22 10:45,1.12198,1.12207,1.12135,1.12136,2481 +2020-06-22 11:00,1.12136,1.12153,1.1208,1.1208,2551 +2020-06-22 11:15,1.12082,1.12105,1.12031,1.12078,2642 +2020-06-22 11:30,1.12077,1.12107,1.12051,1.12084,2228 +2020-06-22 11:45,1.12084,1.12166,1.12081,1.12132,2472 +2020-06-22 12:00,1.12132,1.12145,1.12087,1.12132,2385 +2020-06-22 12:15,1.12134,1.12172,1.12065,1.12105,2080 +2020-06-22 12:30,1.12104,1.12174,1.12092,1.12121,1965 +2020-06-22 12:45,1.1212,1.12233,1.12088,1.12207,2806 +2020-06-22 13:00,1.12206,1.123,1.12206,1.12259,3258 +2020-06-22 13:15,1.12258,1.1229,1.12227,1.12267,2981 +2020-06-22 13:30,1.12267,1.12289,1.12219,1.1227,4277 +2020-06-22 13:45,1.12269,1.12463,1.12262,1.12443,6185 +2020-06-22 14:00,1.12442,1.12497,1.12423,1.12456,4335 +2020-06-22 14:15,1.12456,1.12597,1.12442,1.12509,4232 +2020-06-22 14:30,1.12512,1.12596,1.12496,1.12587,3704 +2020-06-22 14:45,1.12586,1.12698,1.12465,1.12483,5331 +2020-06-22 15:00,1.12483,1.12561,1.12466,1.12549,2608 +2020-06-22 15:15,1.12548,1.126,1.12522,1.12561,2963 +2020-06-22 15:30,1.12562,1.12584,1.12517,1.12564,2079 +2020-06-22 15:45,1.12563,1.12616,1.12556,1.12599,1906 +2020-06-22 16:00,1.12601,1.12623,1.12584,1.12588,2132 +2020-06-22 16:15,1.12587,1.12623,1.12573,1.12583,1784 +2020-06-22 16:30,1.12582,1.12611,1.1257,1.12608,1597 +2020-06-22 16:45,1.12607,1.12637,1.12588,1.12609,2587 +2020-06-22 17:00,1.1261,1.1261,1.12567,1.12592,1750 +2020-06-22 17:15,1.12593,1.12636,1.1255,1.12563,1669 +2020-06-22 17:30,1.12564,1.12584,1.12551,1.12568,1121 +2020-06-22 17:45,1.12569,1.12597,1.12559,1.12582,1111 +2020-06-22 18:00,1.12583,1.12599,1.12562,1.12594,1055 +2020-06-22 18:15,1.12596,1.12596,1.12579,1.12585,812 +2020-06-22 18:30,1.12586,1.12631,1.12581,1.12612,1114 +2020-06-22 18:45,1.12615,1.12622,1.12569,1.12608,1552 +2020-06-22 19:00,1.12606,1.12622,1.12585,1.12603,1467 +2020-06-22 19:15,1.12603,1.12609,1.12528,1.12563,2362 +2020-06-22 19:30,1.12563,1.12613,1.12554,1.12611,1415 +2020-06-22 19:45,1.12612,1.12613,1.12555,1.12555,1460 +2020-06-22 20:00,1.12557,1.12578,1.12542,1.12578,801 +2020-06-22 20:15,1.12578,1.12601,1.12577,1.12587,691 +2020-06-22 20:30,1.12585,1.12623,1.12577,1.12617,225 +2020-06-22 20:45,1.1262,1.12662,1.12597,1.12597,522 +2020-06-22 21:00,1.12597,1.12622,1.12584,1.12622,209 +2020-06-22 21:15,1.12622,1.12625,1.1261,1.12623,224 +2020-06-22 21:30,1.12619,1.12628,1.12598,1.12625,263 +2020-06-22 21:45,1.12626,1.1263,1.12622,1.12624,177 +2020-06-22 22:00,1.12624,1.12662,1.12623,1.12632,694 +2020-06-22 22:15,1.12634,1.12672,1.12631,1.12671,670 +2020-06-22 22:30,1.12675,1.12677,1.12653,1.12659,1110 +2020-06-22 22:45,1.1266,1.12748,1.12655,1.12727,1362 +2020-06-22 23:00,1.12727,1.12729,1.12689,1.12691,1579 +2020-06-22 23:15,1.1269,1.12722,1.12685,1.12715,1455 +2020-06-22 23:30,1.12714,1.12749,1.12708,1.12744,1128 +2020-06-22 23:45,1.12743,1.12809,1.1274,1.12776,1439 +2020-06-23 00:00,1.12775,1.1278,1.12724,1.12735,1724 +2020-06-23 00:15,1.12735,1.12739,1.12708,1.12724,1133 +2020-06-23 00:30,1.12724,1.12731,1.12669,1.12689,1473 +2020-06-23 00:45,1.12689,1.12711,1.12665,1.12669,1216 +2020-06-23 01:00,1.1267,1.12678,1.125,1.12502,3082 +2020-06-23 01:15,1.12502,1.12506,1.12333,1.12336,6280 +2020-06-23 01:30,1.12337,1.12436,1.1233,1.12373,4351 +2020-06-23 01:45,1.12374,1.12581,1.12357,1.12581,3590 +2020-06-23 02:00,1.12584,1.12698,1.12566,1.1268,4801 +2020-06-23 02:15,1.1268,1.12712,1.12622,1.12656,3300 +2020-06-23 02:30,1.12658,1.12721,1.12645,1.12667,3178 +2020-06-23 02:45,1.12667,1.12755,1.12657,1.12748,2880 +2020-06-23 03:00,1.12749,1.12761,1.12716,1.12727,2357 +2020-06-23 03:15,1.1273,1.1276,1.12684,1.12702,1698 +2020-06-23 03:30,1.12706,1.1272,1.1265,1.12666,1796 +2020-06-23 03:45,1.12667,1.12712,1.12667,1.12691,1602 +2020-06-23 04:00,1.1269,1.1269,1.12658,1.1267,1488 +2020-06-23 04:15,1.1267,1.12696,1.12666,1.12686,1216 +2020-06-23 04:30,1.12685,1.12686,1.12627,1.1263,1570 +2020-06-23 04:45,1.1263,1.12643,1.12614,1.12614,1207 +2020-06-23 05:00,1.12615,1.12649,1.12615,1.12635,1428 +2020-06-23 05:15,1.12635,1.12677,1.12635,1.12658,968 +2020-06-23 05:30,1.12659,1.12662,1.12593,1.12601,1261 +2020-06-23 05:45,1.12601,1.12642,1.12571,1.12587,2245 +2020-06-23 06:00,1.12589,1.12661,1.12565,1.12639,2340 +2020-06-23 06:15,1.12639,1.12651,1.12608,1.12645,1799 +2020-06-23 06:30,1.12645,1.12705,1.12629,1.12675,2547 +2020-06-23 06:45,1.12676,1.12738,1.12666,1.12698,2652 +2020-06-23 07:00,1.12699,1.12768,1.12659,1.12739,4022 +2020-06-23 07:15,1.1275,1.12979,1.1275,1.12939,5751 +2020-06-23 07:30,1.12946,1.1296,1.128,1.12892,4422 +2020-06-23 07:45,1.1289,1.13051,1.12879,1.13009,4685 +2020-06-23 08:00,1.13011,1.13058,1.12894,1.12913,3723 +2020-06-23 08:15,1.12914,1.12935,1.12844,1.12918,3433 +2020-06-23 08:30,1.12919,1.12929,1.12813,1.12903,4279 +2020-06-23 08:45,1.12903,1.12927,1.12822,1.12905,3295 +2020-06-23 09:00,1.12905,1.12938,1.12844,1.12861,2988 +2020-06-23 09:15,1.12861,1.12882,1.12823,1.12881,2810 +2020-06-23 09:30,1.12882,1.12915,1.12864,1.12889,3017 +2020-06-23 09:45,1.1289,1.12896,1.12846,1.12879,3235 +2020-06-23 10:00,1.12878,1.12936,1.12841,1.12935,3286 +2020-06-23 10:15,1.12938,1.12981,1.12904,1.1291,2720 +2020-06-23 10:30,1.12911,1.12949,1.12841,1.12861,3153 +2020-06-23 10:45,1.1286,1.12955,1.12834,1.1292,2845 +2020-06-23 11:00,1.1292,1.1292,1.12855,1.12858,3156 +2020-06-23 11:15,1.12857,1.12941,1.12856,1.12924,3300 +2020-06-23 11:30,1.12924,1.1302,1.12905,1.1302,2746 +2020-06-23 11:45,1.13022,1.13071,1.1296,1.13058,3208 +2020-06-23 12:00,1.1306,1.13189,1.1306,1.13178,3957 +2020-06-23 12:15,1.13176,1.13255,1.13167,1.13221,3569 +2020-06-23 12:30,1.1322,1.13313,1.13195,1.1326,3547 +2020-06-23 12:45,1.13261,1.13333,1.13261,1.13298,3295 +2020-06-23 13:00,1.13301,1.13378,1.1327,1.13276,3298 +2020-06-23 13:15,1.13275,1.13315,1.1319,1.13244,3873 +2020-06-23 13:30,1.13246,1.1329,1.13207,1.13261,3424 +2020-06-23 13:45,1.13262,1.13354,1.13245,1.13288,3916 +2020-06-23 14:00,1.13287,1.13413,1.13265,1.13393,6005 +2020-06-23 14:15,1.13393,1.13486,1.13389,1.13405,4102 +2020-06-23 14:30,1.13407,1.13445,1.1335,1.13384,3714 +2020-06-23 14:45,1.13383,1.13401,1.1327,1.13333,5105 +2020-06-23 15:00,1.13336,1.13367,1.13286,1.1336,3475 +2020-06-23 15:15,1.1336,1.13372,1.13242,1.13274,3291 +2020-06-23 15:30,1.13274,1.13277,1.13222,1.13275,2817 +2020-06-23 15:45,1.13276,1.13281,1.13171,1.13224,2204 +2020-06-23 16:00,1.13224,1.13261,1.13199,1.13256,1875 +2020-06-23 16:15,1.13255,1.13298,1.13249,1.13256,1716 +2020-06-23 16:30,1.13256,1.13265,1.13171,1.13172,2102 +2020-06-23 16:45,1.13173,1.13188,1.13068,1.13087,2569 +2020-06-23 17:00,1.13086,1.13134,1.13086,1.13124,1473 +2020-06-23 17:15,1.13123,1.13176,1.13114,1.13166,1627 +2020-06-23 17:30,1.13167,1.1319,1.13128,1.13181,1602 +2020-06-23 17:45,1.13181,1.13209,1.13175,1.1319,2031 +2020-06-23 18:00,1.1319,1.13199,1.13106,1.13128,2296 +2020-06-23 18:15,1.1313,1.13134,1.13097,1.13118,1643 +2020-06-23 18:30,1.13118,1.13167,1.13113,1.13137,1471 +2020-06-23 18:45,1.13136,1.13147,1.13107,1.13118,1608 +2020-06-23 19:00,1.13119,1.13119,1.1306,1.13092,3234 +2020-06-23 19:15,1.13091,1.131,1.13069,1.13087,2154 +2020-06-23 19:30,1.13087,1.13107,1.13081,1.13099,1309 +2020-06-23 19:45,1.13099,1.131,1.13018,1.1303,1746 +2020-06-23 20:00,1.13031,1.13068,1.13031,1.13052,842 +2020-06-23 20:15,1.13052,1.13059,1.13033,1.13042,355 +2020-06-23 20:30,1.13042,1.13081,1.13027,1.13056,700 +2020-06-23 20:45,1.13057,1.13087,1.13057,1.13074,604 +2020-06-23 21:00,1.13073,1.13112,1.13072,1.13107,332 +2020-06-23 21:15,1.13107,1.13112,1.13104,1.13104,63 +2020-06-23 21:30,1.13104,1.13105,1.13075,1.13105,66 +2020-06-23 21:45,1.13101,1.13109,1.13082,1.13095,225 +2020-06-23 22:00,1.13096,1.1311,1.1308,1.13095,636 +2020-06-23 22:15,1.13094,1.13125,1.13093,1.13094,334 +2020-06-23 22:30,1.13097,1.13114,1.13093,1.13113,199 +2020-06-23 22:45,1.13114,1.13114,1.13075,1.13079,485 +2020-06-23 23:00,1.13081,1.13109,1.13073,1.13083,977 +2020-06-23 23:15,1.13084,1.13105,1.13079,1.13084,920 +2020-06-23 23:30,1.13084,1.13106,1.13077,1.13106,714 +2020-06-23 23:45,1.13107,1.13137,1.13102,1.13124,1185 +2020-06-24 00:00,1.13124,1.132,1.13119,1.13191,1776 +2020-06-24 00:15,1.1319,1.13221,1.1318,1.13194,955 +2020-06-24 00:30,1.13193,1.13194,1.13158,1.13158,1294 +2020-06-24 00:45,1.13158,1.13185,1.13144,1.13173,1725 +2020-06-24 01:00,1.13173,1.13187,1.13144,1.13183,1542 +2020-06-24 01:15,1.13183,1.13245,1.13181,1.13226,1226 +2020-06-24 01:30,1.13224,1.13251,1.13217,1.13243,2001 +2020-06-24 01:45,1.13242,1.13242,1.13162,1.13165,1770 +2020-06-24 02:00,1.13164,1.13223,1.13089,1.13218,2468 +2020-06-24 02:15,1.13219,1.13246,1.13208,1.13214,1718 +2020-06-24 02:30,1.13216,1.13257,1.13207,1.13208,1551 +2020-06-24 02:45,1.13208,1.13217,1.13174,1.13178,1959 +2020-06-24 03:00,1.13177,1.132,1.1315,1.13161,1421 +2020-06-24 03:15,1.13162,1.13165,1.1314,1.13146,1237 +2020-06-24 03:30,1.13146,1.13179,1.13133,1.13173,1220 +2020-06-24 03:45,1.13173,1.13174,1.13139,1.13153,1628 +2020-06-24 04:00,1.13154,1.13168,1.1314,1.1316,1222 +2020-06-24 04:15,1.1316,1.13178,1.13143,1.1317,1501 +2020-06-24 04:30,1.13171,1.1318,1.13164,1.13165,823 +2020-06-24 04:45,1.13162,1.13199,1.13145,1.13146,533 +2020-06-24 05:00,1.13146,1.13159,1.13129,1.13151,835 +2020-06-24 05:15,1.13152,1.13169,1.13145,1.13161,634 +2020-06-24 05:30,1.1316,1.13236,1.13156,1.13225,1142 +2020-06-24 05:45,1.13224,1.13225,1.13146,1.13146,1013 +2020-06-24 06:00,1.13146,1.13223,1.13125,1.13217,2103 +2020-06-24 06:15,1.13216,1.1325,1.13174,1.13226,1904 +2020-06-24 06:30,1.13225,1.13225,1.13144,1.13181,2166 +2020-06-24 06:45,1.13181,1.13216,1.13171,1.13174,1432 +2020-06-24 07:00,1.13174,1.13228,1.13123,1.13123,3328 +2020-06-24 07:15,1.13124,1.1315,1.12974,1.12982,3726 +2020-06-24 07:30,1.12982,1.13036,1.12917,1.12943,3829 +2020-06-24 07:45,1.12942,1.12991,1.12916,1.12982,2944 +2020-06-24 08:00,1.12981,1.13018,1.12887,1.1289,4111 +2020-06-24 08:15,1.12891,1.12975,1.12869,1.12957,3902 +2020-06-24 08:30,1.12958,1.12981,1.12895,1.12972,3056 +2020-06-24 08:45,1.12972,1.13049,1.12956,1.13012,2762 +2020-06-24 09:00,1.13012,1.13043,1.12798,1.12857,4235 +2020-06-24 09:15,1.12859,1.12896,1.12685,1.12831,5515 +2020-06-24 09:30,1.12832,1.12946,1.12828,1.1294,3929 +2020-06-24 09:45,1.12938,1.13045,1.12934,1.13034,3357 +2020-06-24 10:00,1.13035,1.13078,1.12951,1.12961,3188 +2020-06-24 10:15,1.12962,1.13001,1.12929,1.12977,2778 +2020-06-24 10:30,1.12976,1.1306,1.12966,1.12991,2185 +2020-06-24 10:45,1.12993,1.13085,1.12989,1.1307,2385 +2020-06-24 11:00,1.1307,1.13111,1.1301,1.13045,2568 +2020-06-24 11:15,1.13045,1.13095,1.12987,1.13004,2758 +2020-06-24 11:30,1.13004,1.13017,1.129,1.129,3140 +2020-06-24 11:45,1.12899,1.12955,1.12826,1.12836,2993 +2020-06-24 12:00,1.12839,1.1285,1.12747,1.12802,3322 +2020-06-24 12:15,1.128,1.12839,1.1276,1.12821,2900 +2020-06-24 12:30,1.12821,1.12821,1.1272,1.12764,3403 +2020-06-24 12:45,1.12764,1.12789,1.12706,1.12735,2941 +2020-06-24 13:00,1.12734,1.12823,1.127,1.12777,3751 +2020-06-24 13:15,1.12778,1.12782,1.12677,1.1269,4027 +2020-06-24 13:30,1.1269,1.12746,1.12652,1.12742,4293 +2020-06-24 13:45,1.12741,1.12764,1.1265,1.12667,4625 +2020-06-24 14:00,1.12668,1.12746,1.12572,1.12723,5665 +2020-06-24 14:15,1.12721,1.12795,1.12704,1.12755,4186 +2020-06-24 14:30,1.12756,1.12767,1.12609,1.12681,5509 +2020-06-24 14:45,1.12681,1.12779,1.12624,1.12774,6074 +2020-06-24 15:00,1.12776,1.1281,1.12621,1.12623,5388 +2020-06-24 15:15,1.12623,1.12711,1.12604,1.12692,4066 +2020-06-24 15:30,1.12695,1.12722,1.1263,1.12686,7691 +2020-06-24 15:45,1.12686,1.12747,1.12667,1.12706,4417 +2020-06-24 16:00,1.12706,1.1274,1.12666,1.12712,3765 +2020-06-24 16:15,1.12712,1.12805,1.12707,1.12736,2918 +2020-06-24 16:30,1.12736,1.12762,1.12691,1.12762,2783 +2020-06-24 16:45,1.12761,1.12798,1.1272,1.12783,2785 +2020-06-24 17:00,1.12783,1.12801,1.12733,1.12753,2425 +2020-06-24 17:15,1.12753,1.12807,1.12709,1.12714,2449 +2020-06-24 17:30,1.12714,1.12723,1.12645,1.12659,2487 +2020-06-24 17:45,1.12659,1.12668,1.12612,1.12616,3123 +2020-06-24 18:00,1.12615,1.12627,1.12554,1.12569,2984 +2020-06-24 18:15,1.12568,1.12596,1.12567,1.12591,2434 +2020-06-24 18:30,1.1259,1.12596,1.12558,1.12571,2303 +2020-06-24 18:45,1.1257,1.12597,1.12551,1.12585,2103 +2020-06-24 19:00,1.12586,1.12627,1.12574,1.12623,2806 +2020-06-24 19:15,1.12625,1.12642,1.12609,1.12624,2535 +2020-06-24 19:30,1.12627,1.12636,1.12609,1.12633,1894 +2020-06-24 19:45,1.12632,1.12633,1.12509,1.12519,1954 +2020-06-24 20:00,1.12519,1.12546,1.12506,1.12542,1411 +2020-06-24 20:15,1.12543,1.12544,1.12503,1.12512,708 +2020-06-24 20:30,1.12512,1.12526,1.12497,1.12501,562 +2020-06-24 20:45,1.12505,1.12518,1.12482,1.12503,924 +2020-06-24 21:00,1.12503,1.12565,1.12499,1.1256,214 +2020-06-24 21:15,1.12547,1.12563,1.1253,1.12551,416 +2020-06-24 21:30,1.12553,1.12571,1.12515,1.12554,679 +2020-06-24 21:45,1.12562,1.12568,1.12529,1.12543,1404 +2020-06-24 22:00,1.12547,1.12554,1.1251,1.1251,649 +2020-06-24 22:15,1.12514,1.12525,1.12495,1.12517,351 +2020-06-24 22:30,1.12517,1.12527,1.12512,1.12521,178 +2020-06-24 22:45,1.12521,1.12537,1.12505,1.12522,253 +2020-06-24 23:00,1.12522,1.12525,1.12491,1.12506,846 +2020-06-24 23:15,1.12506,1.12509,1.12481,1.12498,618 +2020-06-24 23:30,1.12497,1.12518,1.12494,1.12507,405 +2020-06-24 23:45,1.12507,1.12515,1.1249,1.12499,531 +2020-06-25 00:00,1.125,1.12517,1.12457,1.12473,2308 +2020-06-25 00:15,1.12473,1.12533,1.12471,1.12529,1674 +2020-06-25 00:30,1.12529,1.12558,1.12495,1.12503,1776 +2020-06-25 00:45,1.12502,1.12584,1.12497,1.12558,2186 +2020-06-25 01:00,1.12559,1.12597,1.12546,1.12548,1826 +2020-06-25 01:15,1.12549,1.12585,1.12544,1.12554,1894 +2020-06-25 01:30,1.12551,1.12551,1.12496,1.12506,2299 +2020-06-25 01:45,1.12505,1.12536,1.12495,1.125,2540 +2020-06-25 02:00,1.12499,1.12504,1.12435,1.1244,2100 +2020-06-25 02:15,1.12441,1.1248,1.12433,1.1247,1848 +2020-06-25 02:30,1.1247,1.12473,1.12429,1.12443,1830 +2020-06-25 02:45,1.12444,1.12461,1.12426,1.12455,2103 +2020-06-25 03:00,1.12455,1.1249,1.12448,1.12482,1763 +2020-06-25 03:15,1.12482,1.12498,1.1246,1.12479,1228 +2020-06-25 03:30,1.12479,1.12493,1.12433,1.1244,1189 +2020-06-25 03:45,1.12439,1.12451,1.12398,1.1242,1631 +2020-06-25 04:00,1.12421,1.12446,1.12409,1.1242,1551 +2020-06-25 04:15,1.12421,1.12445,1.12414,1.12441,1137 +2020-06-25 04:30,1.12441,1.12472,1.12439,1.12465,1196 +2020-06-25 04:45,1.12464,1.12488,1.12464,1.12484,935 +2020-06-25 05:00,1.12485,1.12512,1.12483,1.12494,1304 +2020-06-25 05:15,1.12496,1.12528,1.12482,1.12524,981 +2020-06-25 05:30,1.12525,1.12532,1.12506,1.12509,1349 +2020-06-25 05:45,1.12509,1.12521,1.12458,1.12479,1380 +2020-06-25 06:00,1.12481,1.12535,1.12447,1.12464,2695 +2020-06-25 06:15,1.12465,1.12471,1.12378,1.12382,2151 +2020-06-25 06:30,1.12382,1.12432,1.12364,1.1241,2748 +2020-06-25 06:45,1.12411,1.12446,1.1235,1.12371,3586 +2020-06-25 07:00,1.12371,1.1242,1.12238,1.1226,4501 +2020-06-25 07:15,1.1226,1.1238,1.12239,1.1238,4669 +2020-06-25 07:30,1.12378,1.12452,1.12364,1.12444,4446 +2020-06-25 07:45,1.12444,1.12451,1.12319,1.12339,4268 +2020-06-25 08:00,1.12341,1.12489,1.12285,1.12477,5697 +2020-06-25 08:15,1.12478,1.12506,1.12388,1.12393,4240 +2020-06-25 08:30,1.12393,1.12427,1.12341,1.12377,2906 +2020-06-25 08:45,1.12376,1.12394,1.1225,1.12295,3682 +2020-06-25 09:00,1.12295,1.12316,1.12256,1.12294,4354 +2020-06-25 09:15,1.12295,1.12342,1.12281,1.12329,2655 +2020-06-25 09:30,1.1233,1.12346,1.12175,1.12246,3425 +2020-06-25 09:45,1.12246,1.12299,1.1224,1.12267,2966 +2020-06-25 10:00,1.12267,1.123,1.12199,1.12208,2879 +2020-06-25 10:15,1.12207,1.12243,1.12164,1.12233,3302 +2020-06-25 10:30,1.12234,1.12236,1.12142,1.12159,3548 +2020-06-25 10:45,1.12159,1.12166,1.12062,1.12079,3608 +2020-06-25 11:00,1.12079,1.12131,1.12052,1.12131,3851 +2020-06-25 11:15,1.12131,1.12131,1.1201,1.12083,3520 +2020-06-25 11:30,1.12083,1.12121,1.11985,1.11996,4000 +2020-06-25 11:45,1.11995,1.12008,1.11921,1.11961,4852 +2020-06-25 12:00,1.11962,1.12026,1.11903,1.12001,4535 +2020-06-25 12:15,1.12,1.12049,1.11988,1.12033,3222 +2020-06-25 12:30,1.12038,1.12107,1.11981,1.12031,5480 +2020-06-25 12:45,1.12032,1.12112,1.11988,1.12111,4369 +2020-06-25 13:00,1.12113,1.12176,1.12073,1.12171,4019 +2020-06-25 13:15,1.1217,1.12196,1.12142,1.12172,2770 +2020-06-25 13:30,1.12171,1.12193,1.1203,1.12089,5373 +2020-06-25 13:45,1.1209,1.12217,1.12065,1.12166,5078 +2020-06-25 14:00,1.12168,1.1228,1.12144,1.12271,5658 +2020-06-25 14:15,1.12271,1.12314,1.12242,1.12295,3645 +2020-06-25 14:30,1.12294,1.12309,1.12203,1.12233,3225 +2020-06-25 14:45,1.12233,1.1228,1.12119,1.1213,5074 +2020-06-25 15:00,1.12131,1.12218,1.12112,1.122,3652 +2020-06-25 15:15,1.122,1.1225,1.12176,1.12183,2910 +2020-06-25 15:30,1.12182,1.12213,1.12102,1.12145,3703 +2020-06-25 15:45,1.12145,1.12202,1.12132,1.12195,2172 +2020-06-25 16:00,1.12196,1.12261,1.12196,1.1226,2611 +2020-06-25 16:15,1.1226,1.12285,1.12255,1.12262,2014 +2020-06-25 16:30,1.12265,1.12294,1.12251,1.12272,2590 +2020-06-25 16:45,1.12273,1.123,1.1226,1.12272,2336 +2020-06-25 17:00,1.12272,1.12277,1.12228,1.12269,2223 +2020-06-25 17:15,1.1227,1.12303,1.12258,1.12297,1393 +2020-06-25 17:30,1.12297,1.12297,1.12225,1.12235,1422 +2020-06-25 17:45,1.12234,1.12252,1.1222,1.1223,1217 +2020-06-25 18:00,1.12231,1.12234,1.1218,1.12202,1708 +2020-06-25 18:15,1.12204,1.12209,1.12143,1.12195,1891 +2020-06-25 18:30,1.12197,1.12199,1.12143,1.12164,1699 +2020-06-25 18:45,1.12164,1.12175,1.12147,1.12159,1784 +2020-06-25 19:00,1.12159,1.1224,1.12142,1.1223,3270 +2020-06-25 19:15,1.12229,1.12292,1.12229,1.12256,1679 +2020-06-25 19:30,1.12255,1.12257,1.12222,1.12236,2051 +2020-06-25 19:45,1.12236,1.12271,1.12199,1.1221,1850 +2020-06-25 20:00,1.12211,1.12262,1.12191,1.12233,964 +2020-06-25 20:15,1.12232,1.12232,1.12185,1.12187,584 +2020-06-25 20:30,1.12187,1.12191,1.1216,1.12165,522 +2020-06-25 20:45,1.12165,1.12191,1.12157,1.1217,858 +2020-06-25 21:00,1.12181,1.1219,1.12149,1.1215,291 +2020-06-25 21:15,1.12151,1.12198,1.12148,1.12174,600 +2020-06-25 21:30,1.12178,1.12213,1.12132,1.1214,6066 +2020-06-25 21:45,1.12144,1.12211,1.12134,1.12156,1758 +2020-06-25 22:00,1.12154,1.12192,1.12144,1.12191,337 +2020-06-25 22:15,1.1219,1.12206,1.1218,1.12205,308 +2020-06-25 22:30,1.12206,1.12213,1.12192,1.12213,372 +2020-06-25 22:45,1.12213,1.12223,1.12207,1.12211,242 +2020-06-25 23:00,1.12211,1.12217,1.12195,1.12207,642 +2020-06-25 23:15,1.12206,1.12226,1.12192,1.12217,760 +2020-06-25 23:30,1.12217,1.12237,1.12202,1.1223,655 +2020-06-25 23:45,1.1223,1.12233,1.12175,1.12179,635 +2020-06-26 00:00,1.12179,1.12197,1.12126,1.12132,1489 +2020-06-26 00:15,1.12132,1.12159,1.12129,1.12147,862 +2020-06-26 00:30,1.12149,1.1215,1.12081,1.12117,1417 +2020-06-26 00:45,1.12116,1.1216,1.12083,1.12157,2059 +2020-06-26 01:00,1.12158,1.12177,1.12141,1.12164,1327 +2020-06-26 01:15,1.12165,1.12175,1.12144,1.12162,1097 +2020-06-26 01:30,1.12163,1.12173,1.12137,1.12159,1360 +2020-06-26 01:45,1.12157,1.12207,1.12146,1.12196,1746 +2020-06-26 02:00,1.12195,1.12211,1.12175,1.12207,1139 +2020-06-26 02:15,1.12207,1.12212,1.12172,1.12184,1095 +2020-06-26 02:30,1.12183,1.12197,1.12169,1.12187,756 +2020-06-26 02:45,1.12186,1.12216,1.12182,1.122,947 +2020-06-26 03:00,1.12201,1.12214,1.1218,1.1218,1048 +2020-06-26 03:15,1.12181,1.12188,1.12159,1.12187,649 +2020-06-26 03:30,1.12187,1.12208,1.12183,1.12199,831 +2020-06-26 03:45,1.12199,1.1223,1.12199,1.12227,752 +2020-06-26 04:00,1.12225,1.12248,1.1221,1.12233,962 +2020-06-26 04:15,1.12233,1.12263,1.12232,1.12247,1016 +2020-06-26 04:30,1.12247,1.12251,1.12232,1.1225,633 +2020-06-26 04:45,1.12251,1.12259,1.12224,1.12236,951 +2020-06-26 05:00,1.12238,1.12253,1.12226,1.1223,804 +2020-06-26 05:15,1.12231,1.12235,1.12217,1.12232,929 +2020-06-26 05:30,1.12235,1.12241,1.12201,1.12201,693 +2020-06-26 05:45,1.12202,1.12228,1.122,1.12214,711 +2020-06-26 06:00,1.12213,1.12216,1.12126,1.12154,1787 +2020-06-26 06:15,1.12155,1.12168,1.12108,1.12116,1048 +2020-06-26 06:30,1.12116,1.12135,1.12107,1.12131,996 +2020-06-26 06:45,1.12131,1.12148,1.12059,1.12082,1990 +2020-06-26 07:00,1.12083,1.12142,1.12075,1.12109,2839 +2020-06-26 07:15,1.12109,1.1215,1.1205,1.12143,2685 +2020-06-26 07:30,1.12143,1.12279,1.12139,1.12279,3175 +2020-06-26 07:45,1.12279,1.12296,1.12227,1.12251,2769 +2020-06-26 08:00,1.12252,1.12268,1.12214,1.12237,2867 +2020-06-26 08:15,1.12238,1.12307,1.12214,1.12263,2941 +2020-06-26 08:30,1.12262,1.12292,1.12234,1.12277,2425 +2020-06-26 08:45,1.1228,1.12393,1.12273,1.12391,3421 +2020-06-26 09:00,1.1239,1.12392,1.1229,1.12292,2597 +2020-06-26 09:15,1.12291,1.12304,1.12222,1.12229,2075 +2020-06-26 09:30,1.12229,1.12276,1.1222,1.12261,1659 +2020-06-26 09:45,1.12261,1.12286,1.12177,1.12201,2476 +2020-06-26 10:00,1.122,1.12256,1.12172,1.12239,2439 +2020-06-26 10:15,1.12239,1.1229,1.12217,1.12285,1675 +2020-06-26 10:30,1.12284,1.12327,1.12266,1.12322,1819 +2020-06-26 10:45,1.12322,1.12342,1.12264,1.12264,1773 +2020-06-26 11:00,1.12262,1.1232,1.12256,1.12261,1927 +2020-06-26 11:15,1.1226,1.12267,1.12198,1.12207,1433 +2020-06-26 11:30,1.12207,1.12207,1.12113,1.12123,1779 +2020-06-26 11:45,1.12123,1.12187,1.12091,1.12104,2607 +2020-06-26 12:00,1.12106,1.12167,1.12066,1.12131,3046 +2020-06-26 12:15,1.1213,1.12224,1.12098,1.12209,2030 +2020-06-26 12:30,1.1221,1.12273,1.12202,1.12203,2503 +2020-06-26 12:45,1.12202,1.12203,1.12139,1.12188,2468 +2020-06-26 13:00,1.12187,1.12252,1.12172,1.12245,2342 +2020-06-26 13:15,1.12246,1.1229,1.12206,1.12209,2743 +2020-06-26 13:30,1.12208,1.12256,1.12144,1.12145,4296 +2020-06-26 13:45,1.12146,1.1216,1.1206,1.12075,4468 +2020-06-26 14:00,1.12076,1.12116,1.11998,1.12038,4089 +2020-06-26 14:15,1.12037,1.12115,1.12028,1.12112,3784 +2020-06-26 14:30,1.12112,1.12124,1.11951,1.12045,4914 +2020-06-26 14:45,1.12045,1.12076,1.11968,1.12032,5871 +2020-06-26 15:00,1.12034,1.12102,1.11999,1.12084,3410 +2020-06-26 15:15,1.12082,1.12124,1.12034,1.12115,3493 +2020-06-26 15:30,1.12114,1.12119,1.1204,1.12049,3482 +2020-06-26 15:45,1.12048,1.12152,1.12048,1.12146,2483 +2020-06-26 16:00,1.12144,1.12184,1.12124,1.12146,2342 +2020-06-26 16:15,1.12147,1.12214,1.12128,1.12209,2281 +2020-06-26 16:30,1.12209,1.12267,1.12209,1.12256,2167 +2020-06-26 16:45,1.12256,1.1235,1.12247,1.12293,2536 +2020-06-26 17:00,1.12293,1.12348,1.12284,1.1234,2318 +2020-06-26 17:15,1.12341,1.12384,1.12315,1.12334,1751 +2020-06-26 17:30,1.12333,1.1238,1.12332,1.12336,1408 +2020-06-26 17:45,1.12335,1.12346,1.12297,1.1231,1312 +2020-06-26 18:00,1.12312,1.12316,1.1227,1.12273,1216 +2020-06-26 18:15,1.12274,1.12275,1.12255,1.12262,1461 +2020-06-26 18:30,1.12261,1.12286,1.1225,1.12269,1102 +2020-06-26 18:45,1.12269,1.12289,1.12242,1.12268,1274 +2020-06-26 19:00,1.12268,1.12306,1.12258,1.12267,1712 +2020-06-26 19:15,1.12266,1.12273,1.12252,1.12261,792 +2020-06-26 19:30,1.12262,1.12269,1.12235,1.12269,650 +2020-06-26 19:45,1.1227,1.12292,1.12232,1.12269,1152 +2020-06-26 20:00,1.12268,1.12292,1.12264,1.12269,874 +2020-06-26 20:15,1.12268,1.1227,1.12234,1.12242,766 +2020-06-26 20:30,1.12244,1.12246,1.12195,1.12212,366 +2020-06-26 20:45,1.12212,1.12222,1.12162,1.1217,1052 +2020-06-28 21:00,1.12149,1.12252,1.12149,1.12241,54 +2020-06-28 21:15,1.12241,1.1228,1.12191,1.12191,46 +2020-06-28 21:30,1.12191,1.12241,1.12181,1.12238,79 +2020-06-28 21:45,1.12235,1.12238,1.12214,1.12231,123 +2020-06-28 22:00,1.12229,1.12229,1.1217,1.12205,660 +2020-06-28 22:15,1.12205,1.12242,1.12203,1.12229,709 +2020-06-28 22:30,1.1223,1.1224,1.12224,1.1223,821 +2020-06-28 22:45,1.1223,1.12249,1.12224,1.12243,295 +2020-06-28 23:00,1.12243,1.12253,1.12224,1.12232,794 +2020-06-28 23:15,1.12231,1.12235,1.12198,1.12198,780 +2020-06-28 23:30,1.12199,1.12266,1.12199,1.12266,496 +2020-06-28 23:45,1.12266,1.12267,1.12214,1.12219,426 +2020-06-29 00:00,1.12219,1.12252,1.12199,1.12229,1309 +2020-06-29 00:15,1.12227,1.12237,1.12197,1.12233,686 +2020-06-29 00:30,1.12232,1.12267,1.12228,1.12261,1392 +2020-06-29 00:45,1.12261,1.12294,1.12245,1.12293,1257 +2020-06-29 01:00,1.12295,1.12336,1.12289,1.12334,2192 +2020-06-29 01:15,1.12334,1.12356,1.12308,1.12342,2140 +2020-06-29 01:30,1.12343,1.1236,1.12323,1.12337,1272 +2020-06-29 01:45,1.12335,1.12357,1.12328,1.12347,1194 +2020-06-29 02:00,1.12346,1.12375,1.12332,1.12374,1300 +2020-06-29 02:15,1.12376,1.12408,1.12352,1.12399,1348 +2020-06-29 02:30,1.124,1.12468,1.12389,1.12458,1720 +2020-06-29 02:45,1.12459,1.12466,1.12425,1.12426,1269 +2020-06-29 03:00,1.12427,1.12436,1.12386,1.12399,1343 +2020-06-29 03:15,1.124,1.12415,1.12384,1.12405,1269 +2020-06-29 03:30,1.12406,1.12422,1.12381,1.12392,1224 +2020-06-29 03:45,1.12392,1.12404,1.12381,1.12394,1021 +2020-06-29 04:00,1.12395,1.12409,1.12382,1.12387,1353 +2020-06-29 04:15,1.12389,1.12412,1.12381,1.12412,1107 +2020-06-29 04:30,1.12413,1.1243,1.12398,1.12412,1054 +2020-06-29 04:45,1.12412,1.12429,1.12402,1.12417,1253 +2020-06-29 05:00,1.12416,1.12483,1.12416,1.12471,1459 +2020-06-29 05:15,1.12472,1.12497,1.12466,1.12493,904 +2020-06-29 05:30,1.12493,1.12592,1.12466,1.12575,1751 +2020-06-29 05:45,1.12576,1.12582,1.12502,1.12517,1533 +2020-06-29 06:00,1.1252,1.12569,1.12509,1.12549,3075 +2020-06-29 06:15,1.12551,1.12668,1.1253,1.12658,2595 +2020-06-29 06:30,1.12658,1.12666,1.1259,1.1259,2566 +2020-06-29 06:45,1.12591,1.12637,1.12578,1.12578,2128 +2020-06-29 07:00,1.12579,1.12612,1.1253,1.1256,4092 +2020-06-29 07:15,1.1256,1.12571,1.12471,1.12482,3769 +2020-06-29 07:30,1.12485,1.12501,1.12451,1.12465,2385 +2020-06-29 07:45,1.12466,1.12493,1.12428,1.12433,3126 +2020-06-29 08:00,1.12434,1.12467,1.12404,1.12442,3006 +2020-06-29 08:15,1.12441,1.12505,1.12439,1.12484,2855 +2020-06-29 08:30,1.12485,1.12556,1.12474,1.12555,2422 +2020-06-29 08:45,1.12556,1.12582,1.12541,1.12541,2216 +2020-06-29 09:00,1.1254,1.12559,1.12492,1.12515,2347 +2020-06-29 09:15,1.12514,1.12555,1.12497,1.12544,1779 +2020-06-29 09:30,1.12547,1.12632,1.12523,1.1262,2679 +2020-06-29 09:45,1.1262,1.12708,1.1262,1.12708,2279 +2020-06-29 10:00,1.12708,1.12767,1.12693,1.12739,3486 +2020-06-29 10:15,1.1274,1.12806,1.12736,1.12798,2587 +2020-06-29 10:30,1.12802,1.1281,1.12751,1.12788,2268 +2020-06-29 10:45,1.12789,1.12879,1.12789,1.12862,2589 +2020-06-29 11:00,1.12862,1.12868,1.12764,1.1279,2574 +2020-06-29 11:15,1.12791,1.12796,1.12738,1.12782,2510 +2020-06-29 11:30,1.12781,1.12827,1.12754,1.1276,1994 +2020-06-29 11:45,1.12763,1.1281,1.12744,1.12785,1952 +2020-06-29 12:00,1.12787,1.1287,1.12775,1.12836,2621 +2020-06-29 12:15,1.12838,1.12861,1.12789,1.12816,2828 +2020-06-29 12:30,1.12818,1.12828,1.12782,1.12825,2230 +2020-06-29 12:45,1.12824,1.12867,1.12816,1.12859,2091 +2020-06-29 13:00,1.12861,1.12866,1.12784,1.12795,2314 +2020-06-29 13:15,1.12795,1.12795,1.12748,1.12751,2157 +2020-06-29 13:30,1.12751,1.12758,1.12651,1.12658,4240 +2020-06-29 13:45,1.12658,1.12663,1.1255,1.12578,4671 +2020-06-29 14:00,1.12579,1.12609,1.12441,1.1252,4442 +2020-06-29 14:15,1.1252,1.12532,1.12391,1.12447,4620 +2020-06-29 14:30,1.12447,1.12479,1.12304,1.12476,5353 +2020-06-29 14:45,1.12476,1.12517,1.12388,1.12455,5380 +2020-06-29 15:00,1.12456,1.12534,1.12407,1.12412,4233 +2020-06-29 15:15,1.12413,1.12495,1.1241,1.12447,2545 +2020-06-29 15:30,1.12447,1.12462,1.12402,1.12462,2046 +2020-06-29 15:45,1.12461,1.12495,1.12357,1.12359,2429 +2020-06-29 16:00,1.12361,1.12387,1.12337,1.12363,1952 +2020-06-29 16:15,1.12362,1.12419,1.1236,1.12403,1802 +2020-06-29 16:30,1.12403,1.1241,1.12331,1.12349,1968 +2020-06-29 16:45,1.12348,1.12367,1.12245,1.12274,2227 +2020-06-29 17:00,1.12272,1.12287,1.12193,1.1227,1700 +2020-06-29 17:15,1.1227,1.12327,1.12265,1.12326,1719 +2020-06-29 17:30,1.12325,1.12333,1.12302,1.12305,1158 +2020-06-29 17:45,1.12306,1.12315,1.12258,1.12272,1070 +2020-06-29 18:00,1.12271,1.12316,1.12257,1.12316,1012 +2020-06-29 18:15,1.12316,1.12331,1.12302,1.12303,1007 +2020-06-29 18:30,1.12302,1.12333,1.12288,1.1233,819 +2020-06-29 18:45,1.12331,1.12353,1.12331,1.12349,1373 +2020-06-29 19:00,1.12348,1.12352,1.12296,1.12322,1221 +2020-06-29 19:15,1.12322,1.12387,1.12318,1.12374,1050 +2020-06-29 19:30,1.12375,1.1238,1.12329,1.12344,854 +2020-06-29 19:45,1.12344,1.12395,1.12344,1.12362,1120 +2020-06-29 20:00,1.12363,1.12388,1.12349,1.12381,685 +2020-06-29 20:15,1.12383,1.12398,1.12377,1.12395,440 +2020-06-29 20:30,1.12395,1.12416,1.12375,1.12403,458 +2020-06-29 20:45,1.12403,1.12424,1.12403,1.1241,424 +2020-06-29 21:00,1.12412,1.12413,1.1234,1.12358,1046 +2020-06-29 21:15,1.12368,1.1241,1.12354,1.12406,1242 +2020-06-29 21:30,1.12405,1.12416,1.12403,1.12413,600 +2020-06-29 21:45,1.12414,1.12414,1.12398,1.12401,334 +2020-06-29 22:00,1.12403,1.12426,1.124,1.12416,235 +2020-06-29 22:15,1.12417,1.12446,1.12408,1.12437,295 +2020-06-29 22:30,1.12439,1.1248,1.12437,1.12457,585 +2020-06-29 22:45,1.12455,1.12493,1.1245,1.12487,320 +2020-06-29 23:00,1.12486,1.12486,1.12441,1.12461,902 +2020-06-29 23:15,1.1246,1.12478,1.12443,1.12478,378 +2020-06-29 23:30,1.12477,1.12516,1.12476,1.12512,511 +2020-06-29 23:45,1.12509,1.12517,1.12463,1.12467,750 +2020-06-30 00:00,1.12466,1.1247,1.12435,1.12435,939 +2020-06-30 00:15,1.12436,1.12452,1.12425,1.12427,888 +2020-06-30 00:30,1.12429,1.12436,1.1238,1.12409,1131 +2020-06-30 00:45,1.12409,1.12415,1.12346,1.1238,1064 +2020-06-30 01:00,1.12381,1.12412,1.1236,1.12408,1082 +2020-06-30 01:15,1.12408,1.12433,1.124,1.12413,531 +2020-06-30 01:30,1.12413,1.12451,1.12409,1.12443,1073 +2020-06-30 01:45,1.12441,1.12477,1.1244,1.12473,652 +2020-06-30 02:00,1.12471,1.12494,1.12453,1.12475,903 +2020-06-30 02:15,1.12475,1.12478,1.12436,1.12447,737 +2020-06-30 02:30,1.12446,1.12448,1.12402,1.12414,756 +2020-06-30 02:45,1.12413,1.12432,1.12401,1.12417,835 +2020-06-30 03:00,1.12418,1.12422,1.124,1.12412,582 +2020-06-30 03:15,1.12412,1.12461,1.12412,1.12449,431 +2020-06-30 03:30,1.12451,1.12452,1.1243,1.12431,457 +2020-06-30 03:45,1.1243,1.1243,1.12372,1.12377,741 +2020-06-30 04:00,1.12379,1.12426,1.12379,1.12419,596 +2020-06-30 04:15,1.12419,1.12442,1.12406,1.12439,799 +2020-06-30 04:30,1.12439,1.12439,1.12373,1.12377,591 +2020-06-30 04:45,1.12375,1.12397,1.12369,1.12385,733 +2020-06-30 05:00,1.12386,1.124,1.12372,1.12374,455 +2020-06-30 05:15,1.12376,1.12376,1.12327,1.12328,634 +2020-06-30 05:30,1.12329,1.12331,1.12248,1.12293,1505 +2020-06-30 05:45,1.12291,1.12312,1.12254,1.12309,1183 +2020-06-30 06:00,1.12308,1.12311,1.12141,1.12188,2744 +2020-06-30 06:15,1.12191,1.12191,1.12145,1.12166,1473 +2020-06-30 06:30,1.12166,1.12166,1.12039,1.12095,2561 +2020-06-30 06:45,1.12095,1.12151,1.1206,1.12129,2069 +2020-06-30 07:00,1.12128,1.12138,1.12052,1.12085,3134 +2020-06-30 07:15,1.12085,1.12136,1.12075,1.12105,2351 +2020-06-30 07:30,1.12105,1.12134,1.12065,1.12132,1767 +2020-06-30 07:45,1.12133,1.12237,1.12128,1.12231,2289 +2020-06-30 08:00,1.1223,1.12278,1.12174,1.12184,2567 +2020-06-30 08:15,1.12184,1.12271,1.12176,1.1226,2827 +2020-06-30 08:30,1.12263,1.12277,1.12202,1.12251,3550 +2020-06-30 08:45,1.12251,1.12266,1.12186,1.12188,2807 +2020-06-30 09:00,1.12187,1.12198,1.12092,1.12096,3145 +2020-06-30 09:15,1.12097,1.1212,1.12061,1.12064,2721 +2020-06-30 09:30,1.12063,1.12087,1.12028,1.12028,2307 +2020-06-30 09:45,1.12029,1.12066,1.11998,1.1205,2399 +2020-06-30 10:00,1.1205,1.12058,1.11984,1.11995,2555 +2020-06-30 10:15,1.11996,1.12087,1.11988,1.12083,2770 +2020-06-30 10:30,1.12083,1.12145,1.12042,1.12142,3246 +2020-06-30 10:45,1.12142,1.1219,1.1206,1.12094,3052 +2020-06-30 11:00,1.12092,1.12134,1.12055,1.12132,2093 +2020-06-30 11:15,1.12133,1.12133,1.12078,1.12078,1425 +2020-06-30 11:30,1.1208,1.12124,1.12023,1.12049,2622 +2020-06-30 11:45,1.12051,1.12095,1.1194,1.11944,3296 +2020-06-30 12:00,1.11943,1.11975,1.1191,1.11973,3099 +2020-06-30 12:15,1.11973,1.12052,1.11966,1.11984,2387 +2020-06-30 12:30,1.11983,1.12092,1.11978,1.12068,2833 +2020-06-30 12:45,1.12071,1.12185,1.1206,1.1209,3264 +2020-06-30 13:00,1.12093,1.12172,1.12072,1.12153,3228 +2020-06-30 13:15,1.12154,1.12249,1.12136,1.12239,3097 +2020-06-30 13:30,1.1224,1.12308,1.12186,1.12194,4284 +2020-06-30 13:45,1.12196,1.12238,1.12069,1.1208,3919 +2020-06-30 14:00,1.12081,1.12271,1.12033,1.12238,4892 +2020-06-30 14:15,1.12237,1.12253,1.12072,1.12173,4980 +2020-06-30 14:30,1.12172,1.1226,1.1212,1.1221,6823 +2020-06-30 14:45,1.12209,1.12364,1.12161,1.12326,9055 +2020-06-30 15:00,1.12328,1.12533,1.12296,1.12522,6483 +2020-06-30 15:15,1.12521,1.12619,1.12447,1.12472,6080 +2020-06-30 15:30,1.12473,1.12504,1.12421,1.12425,3774 +2020-06-30 15:45,1.12426,1.12441,1.12329,1.12379,3025 +2020-06-30 16:00,1.12378,1.12484,1.12362,1.12462,2695 +2020-06-30 16:15,1.12463,1.12486,1.12409,1.12425,2110 +2020-06-30 16:30,1.12426,1.12491,1.1239,1.12491,3325 +2020-06-30 16:45,1.12492,1.12497,1.12419,1.12431,2534 +2020-06-30 17:00,1.12431,1.12489,1.12425,1.12475,2001 +2020-06-30 17:15,1.12476,1.12517,1.12459,1.12505,1817 +2020-06-30 17:30,1.12504,1.12505,1.12392,1.12415,2276 +2020-06-30 17:45,1.12415,1.12431,1.12365,1.12375,2393 +2020-06-30 18:00,1.12375,1.12381,1.12329,1.12375,2285 +2020-06-30 18:15,1.12375,1.12382,1.12309,1.12364,2491 +2020-06-30 18:30,1.12364,1.1238,1.12341,1.12372,1826 +2020-06-30 18:45,1.12374,1.1238,1.12326,1.12327,1812 +2020-06-30 19:00,1.12327,1.12356,1.12263,1.12308,2237 +2020-06-30 19:15,1.12308,1.1231,1.12264,1.12301,1248 +2020-06-30 19:30,1.12301,1.12352,1.12277,1.12349,1201 +2020-06-30 19:45,1.12348,1.12387,1.12335,1.12337,2042 +2020-06-30 20:00,1.12336,1.12356,1.1233,1.12332,1261 +2020-06-30 20:15,1.12332,1.12332,1.12305,1.12319,639 +2020-06-30 20:30,1.1232,1.1235,1.1232,1.12337,538 +2020-06-30 20:45,1.12338,1.1235,1.12316,1.12336,753 +2020-06-30 21:00,1.1234,1.12364,1.12322,1.12334,143 +2020-06-30 21:15,1.12336,1.12346,1.12323,1.12338,28 +2020-06-30 21:30,1.12336,1.12337,1.12311,1.12316,326 +2020-06-30 21:45,1.12317,1.12321,1.1231,1.12314,253 +2020-06-30 22:00,1.12316,1.12353,1.12313,1.12347,284 +2020-06-30 22:15,1.1235,1.12362,1.12342,1.12355,430 +2020-06-30 22:30,1.12356,1.12362,1.12345,1.12348,243 +2020-06-30 22:45,1.12348,1.12356,1.12341,1.12349,356 +2020-06-30 23:00,1.12348,1.12355,1.12341,1.12341,391 +2020-06-30 23:15,1.12342,1.12344,1.12328,1.12332,688 +2020-06-30 23:30,1.12332,1.12344,1.12329,1.12339,963 +2020-06-30 23:45,1.12338,1.12346,1.12333,1.12335,510 +2020-07-01 00:00,1.12336,1.12336,1.12283,1.12303,1346 +2020-07-01 00:15,1.12304,1.12313,1.12275,1.1229,716 +2020-07-01 00:30,1.12291,1.12335,1.12284,1.12324,866 +2020-07-01 00:45,1.12324,1.12324,1.12295,1.12306,1222 +2020-07-01 01:00,1.12306,1.12368,1.12288,1.12359,1264 +2020-07-01 01:15,1.12359,1.12394,1.12359,1.12384,1387 +2020-07-01 01:30,1.12385,1.12395,1.12364,1.12379,1471 +2020-07-01 01:45,1.12381,1.12387,1.12358,1.12385,1254 +2020-07-01 02:00,1.12386,1.12406,1.12371,1.12372,1518 +2020-07-01 02:15,1.12374,1.12399,1.12363,1.12395,1084 +2020-07-01 02:30,1.12397,1.124,1.12376,1.12392,794 +2020-07-01 02:45,1.12391,1.124,1.12378,1.12382,735 +2020-07-01 03:00,1.12382,1.12388,1.12358,1.12368,1105 +2020-07-01 03:15,1.12369,1.12376,1.12337,1.12348,749 +2020-07-01 03:30,1.12348,1.12362,1.12308,1.12314,1256 +2020-07-01 03:45,1.12315,1.12317,1.12221,1.12265,1330 +2020-07-01 04:00,1.12265,1.12272,1.12234,1.1224,874 +2020-07-01 04:15,1.12239,1.12256,1.12234,1.1225,891 +2020-07-01 04:30,1.12249,1.12269,1.12228,1.1224,1362 +2020-07-01 04:45,1.12238,1.12239,1.12151,1.12179,1707 +2020-07-01 05:00,1.12179,1.12218,1.12156,1.12182,2019 +2020-07-01 05:15,1.12182,1.12219,1.12167,1.12209,1760 +2020-07-01 05:30,1.1221,1.12238,1.12201,1.12228,1436 +2020-07-01 05:45,1.12228,1.12261,1.12222,1.1224,1476 +2020-07-01 06:00,1.1224,1.12251,1.12202,1.12249,2545 +2020-07-01 06:15,1.1225,1.12273,1.12231,1.12264,1487 +2020-07-01 06:30,1.12264,1.12318,1.12253,1.12318,2053 +2020-07-01 06:45,1.12318,1.12343,1.12294,1.12333,1474 +2020-07-01 07:00,1.12331,1.12331,1.12262,1.12308,1952 +2020-07-01 07:15,1.12308,1.1232,1.12231,1.12249,2070 +2020-07-01 07:30,1.12251,1.12311,1.12235,1.12275,2270 +2020-07-01 07:45,1.12276,1.12328,1.12255,1.12315,2346 +2020-07-01 08:00,1.12315,1.12448,1.1229,1.12417,2919 +2020-07-01 08:15,1.12417,1.12442,1.12376,1.12413,2683 +2020-07-01 08:30,1.12413,1.12428,1.12326,1.1234,2341 +2020-07-01 08:45,1.12337,1.1234,1.12292,1.12311,2096 +2020-07-01 09:00,1.12313,1.12337,1.12283,1.12293,1863 +2020-07-01 09:15,1.12293,1.12293,1.1222,1.12222,2324 +2020-07-01 09:30,1.12221,1.12263,1.12184,1.12231,2634 +2020-07-01 09:45,1.12233,1.12242,1.12076,1.12076,2767 +2020-07-01 10:00,1.12076,1.12106,1.12042,1.1208,3160 +2020-07-01 10:15,1.1208,1.12113,1.12021,1.12088,2843 +2020-07-01 10:30,1.1209,1.12109,1.12015,1.12045,3299 +2020-07-01 10:45,1.12044,1.12058,1.12002,1.1205,2470 +2020-07-01 11:00,1.1205,1.1205,1.1193,1.12007,4556 +2020-07-01 11:15,1.12007,1.12029,1.11953,1.11956,3024 +2020-07-01 11:30,1.11955,1.12008,1.11848,1.11965,3940 +2020-07-01 11:45,1.11963,1.12067,1.11945,1.12036,3218 +2020-07-01 12:00,1.12036,1.12083,1.11992,1.11999,2931 +2020-07-01 12:15,1.11999,1.12081,1.1198,1.12056,3397 +2020-07-01 12:30,1.12054,1.12138,1.1205,1.12122,3369 +2020-07-01 12:45,1.12121,1.12209,1.12117,1.12177,3714 +2020-07-01 13:00,1.12176,1.12225,1.1214,1.12195,2698 +2020-07-01 13:15,1.12193,1.12275,1.12184,1.1225,2676 +2020-07-01 13:30,1.1225,1.12326,1.12229,1.12281,5088 +2020-07-01 13:45,1.12278,1.12398,1.12253,1.12391,3697 +2020-07-01 14:00,1.12391,1.12639,1.12364,1.12612,7235 +2020-07-01 14:15,1.12613,1.12686,1.12568,1.12659,4625 +2020-07-01 14:30,1.12658,1.12751,1.12631,1.12657,4774 +2020-07-01 14:45,1.12659,1.12667,1.12543,1.12605,4232 +2020-07-01 15:00,1.12606,1.12697,1.12598,1.12676,3538 +2020-07-01 15:15,1.12678,1.12697,1.12605,1.12637,3162 +2020-07-01 15:30,1.12636,1.12646,1.12538,1.12595,2787 +2020-07-01 15:45,1.12596,1.1263,1.12564,1.12584,2432 +2020-07-01 16:00,1.12583,1.12585,1.12508,1.12517,2030 +2020-07-01 16:15,1.12517,1.12599,1.1251,1.12597,1762 +2020-07-01 16:30,1.12598,1.12611,1.12575,1.12595,1393 +2020-07-01 16:45,1.12595,1.12647,1.12521,1.12643,2724 +2020-07-01 17:00,1.12642,1.12669,1.12581,1.12591,2194 +2020-07-01 17:15,1.12589,1.126,1.12547,1.12547,1831 +2020-07-01 17:30,1.12549,1.12581,1.12531,1.12532,1905 +2020-07-01 17:45,1.12532,1.12574,1.12522,1.12541,1724 +2020-07-01 18:00,1.12544,1.12603,1.12533,1.12601,2094 +2020-07-01 18:15,1.12601,1.12604,1.12544,1.12548,1606 +2020-07-01 18:30,1.12547,1.1258,1.12503,1.12511,1219 +2020-07-01 18:45,1.1251,1.1251,1.12451,1.12452,1578 +2020-07-01 19:00,1.12451,1.12513,1.12432,1.12511,1386 +2020-07-01 19:15,1.12512,1.12518,1.12485,1.12516,1321 +2020-07-01 19:30,1.12517,1.1257,1.12517,1.12562,1654 +2020-07-01 19:45,1.12563,1.12572,1.12505,1.12507,1304 +2020-07-01 20:00,1.12507,1.12538,1.12493,1.12518,853 +2020-07-01 20:15,1.12518,1.12531,1.12515,1.12518,368 +2020-07-01 20:30,1.12518,1.12543,1.1251,1.12527,371 +2020-07-01 20:45,1.12527,1.12529,1.12502,1.12507,410 +2020-07-01 21:00,1.12507,1.12559,1.12504,1.12521,114 +2020-07-01 21:15,1.12519,1.12566,1.12478,1.12498,1237 +2020-07-01 21:30,1.125,1.12519,1.1249,1.12509,2121 +2020-07-01 21:45,1.12509,1.12514,1.12494,1.12501,201 +2020-07-01 22:00,1.12507,1.12522,1.12505,1.12515,556 +2020-07-01 22:15,1.12516,1.12526,1.12512,1.12519,321 +2020-07-01 22:30,1.12517,1.12525,1.12509,1.12525,175 +2020-07-01 22:45,1.12525,1.12529,1.12511,1.1252,201 +2020-07-01 23:00,1.12521,1.12541,1.1252,1.12531,775 +2020-07-01 23:15,1.12531,1.12537,1.12512,1.12516,529 +2020-07-01 23:30,1.12514,1.12531,1.12512,1.1253,283 +2020-07-01 23:45,1.12531,1.12537,1.12507,1.12511,598 +2020-07-02 00:00,1.12511,1.12542,1.12504,1.12516,1416 +2020-07-02 00:15,1.12515,1.12515,1.12475,1.1248,963 +2020-07-02 00:30,1.12479,1.12504,1.12476,1.125,933 +2020-07-02 00:45,1.12501,1.1252,1.12492,1.12516,910 +2020-07-02 01:00,1.12516,1.12517,1.12489,1.12501,793 +2020-07-02 01:15,1.12503,1.12582,1.12501,1.12564,1204 +2020-07-02 01:30,1.12564,1.12575,1.12544,1.12571,1597 +2020-07-02 01:45,1.12572,1.12585,1.12532,1.12532,1748 +2020-07-02 02:00,1.12532,1.12564,1.12517,1.12563,955 +2020-07-02 02:15,1.12562,1.12576,1.12542,1.12575,1258 +2020-07-02 02:30,1.12575,1.1261,1.12566,1.12602,1260 +2020-07-02 02:45,1.12601,1.1261,1.12581,1.12603,1124 +2020-07-02 03:00,1.12604,1.12606,1.12572,1.12578,872 +2020-07-02 03:15,1.12579,1.12588,1.12557,1.12568,796 +2020-07-02 03:30,1.12569,1.12589,1.12557,1.12572,1027 +2020-07-02 03:45,1.12573,1.1263,1.1257,1.12628,1057 +2020-07-02 04:00,1.12628,1.12646,1.12619,1.12642,691 +2020-07-02 04:15,1.12643,1.12643,1.12628,1.12631,612 +2020-07-02 04:30,1.1263,1.12667,1.1263,1.12657,508 +2020-07-02 04:45,1.12658,1.12667,1.12647,1.12648,728 +2020-07-02 05:00,1.12649,1.12656,1.12629,1.12648,889 +2020-07-02 05:15,1.12648,1.12648,1.12624,1.12633,781 +2020-07-02 05:30,1.12633,1.12649,1.12615,1.12646,587 +2020-07-02 05:45,1.12645,1.1267,1.12634,1.12635,1158 +2020-07-02 06:00,1.12634,1.12728,1.12626,1.12697,1905 +2020-07-02 06:15,1.12696,1.12697,1.1266,1.12679,1080 +2020-07-02 06:30,1.12681,1.12756,1.12678,1.12746,2062 +2020-07-02 06:45,1.12747,1.12758,1.12678,1.1269,1569 +2020-07-02 07:00,1.12691,1.12731,1.12626,1.12634,2921 +2020-07-02 07:15,1.12635,1.12822,1.12619,1.12808,2672 +2020-07-02 07:30,1.12808,1.12857,1.12764,1.12771,3532 +2020-07-02 07:45,1.12771,1.12811,1.12766,1.12807,2610 +2020-07-02 08:00,1.12807,1.1281,1.12753,1.12782,2672 +2020-07-02 08:15,1.12783,1.12937,1.12782,1.12934,3116 +2020-07-02 08:30,1.12935,1.1298,1.12912,1.12931,3142 +2020-07-02 08:45,1.12932,1.13026,1.12927,1.12972,3199 +2020-07-02 09:00,1.12973,1.12985,1.12925,1.12956,2248 +2020-07-02 09:15,1.12956,1.12974,1.12922,1.12936,2441 +2020-07-02 09:30,1.12936,1.12936,1.12871,1.12877,2227 +2020-07-02 09:45,1.12878,1.12878,1.12843,1.12867,1919 +2020-07-02 10:00,1.12867,1.1287,1.12783,1.12795,1896 +2020-07-02 10:15,1.12795,1.12815,1.1278,1.12805,1637 +2020-07-02 10:30,1.12805,1.12862,1.12778,1.12853,2168 +2020-07-02 10:45,1.12854,1.12889,1.12791,1.12793,2825 +2020-07-02 11:00,1.12792,1.12808,1.12748,1.12795,2316 +2020-07-02 11:15,1.12795,1.12859,1.12786,1.12819,1957 +2020-07-02 11:30,1.12818,1.12834,1.12773,1.12785,2001 +2020-07-02 11:45,1.12786,1.12863,1.12761,1.12856,2120 +2020-07-02 12:00,1.12857,1.12886,1.12847,1.12854,1866 +2020-07-02 12:15,1.12855,1.12885,1.12765,1.12797,2680 +2020-07-02 12:30,1.12801,1.12974,1.12801,1.1282,7979 +2020-07-02 12:45,1.12823,1.12889,1.12635,1.12635,5883 +2020-07-02 13:00,1.12636,1.12683,1.12529,1.12549,6277 +2020-07-02 13:15,1.12548,1.1268,1.12507,1.12668,4162 +2020-07-02 13:30,1.12669,1.12695,1.12612,1.12664,4556 +2020-07-02 13:45,1.12663,1.12789,1.12646,1.12739,3870 +2020-07-02 14:00,1.12738,1.12815,1.12633,1.12656,5343 +2020-07-02 14:15,1.12657,1.1267,1.12564,1.12565,4266 +2020-07-02 14:30,1.12566,1.1257,1.12335,1.12407,7009 +2020-07-02 14:45,1.1241,1.12427,1.12257,1.12292,5662 +2020-07-02 15:00,1.12294,1.12369,1.12252,1.12327,4078 +2020-07-02 15:15,1.12327,1.12452,1.12307,1.12407,3242 +2020-07-02 15:30,1.12408,1.12444,1.1238,1.1241,2760 +2020-07-02 15:45,1.12409,1.12414,1.1236,1.12361,2545 +2020-07-02 16:00,1.1236,1.12364,1.12233,1.12248,2971 +2020-07-02 16:15,1.12248,1.12325,1.12245,1.12324,2902 +2020-07-02 16:30,1.12323,1.12341,1.12279,1.12294,2051 +2020-07-02 16:45,1.12293,1.123,1.12248,1.12284,1827 +2020-07-02 17:00,1.12285,1.12345,1.12269,1.12337,1608 +2020-07-02 17:15,1.12336,1.12365,1.1233,1.12354,1144 +2020-07-02 17:30,1.12354,1.12373,1.12342,1.12355,1045 +2020-07-02 17:45,1.12355,1.12362,1.12308,1.12344,1434 +2020-07-02 18:00,1.12346,1.12348,1.12286,1.12326,1427 +2020-07-02 18:15,1.12325,1.12341,1.1231,1.12336,717 +2020-07-02 18:30,1.12335,1.12339,1.1229,1.12293,987 +2020-07-02 18:45,1.12293,1.12342,1.12289,1.1234,1350 +2020-07-02 19:00,1.1234,1.12364,1.12332,1.12358,1027 +2020-07-02 19:15,1.12356,1.12369,1.12354,1.12355,953 +2020-07-02 19:30,1.12357,1.12373,1.12355,1.1236,723 +2020-07-02 19:45,1.12358,1.12388,1.12327,1.12386,1042 +2020-07-02 20:00,1.12386,1.12401,1.12369,1.12382,574 +2020-07-02 20:15,1.12381,1.12414,1.12381,1.12399,391 +2020-07-02 20:30,1.124,1.12406,1.1239,1.12391,303 +2020-07-02 20:45,1.1239,1.124,1.1238,1.12388,338 +2020-07-02 21:00,1.12391,1.12391,1.1234,1.12367,467 +2020-07-02 21:15,1.12367,1.12377,1.1235,1.12367,557 +2020-07-02 21:30,1.12376,1.12379,1.1236,1.12371,1645 +2020-07-02 21:45,1.12368,1.12407,1.1236,1.12384,1247 +2020-07-02 22:00,1.12383,1.12404,1.12382,1.12398,339 +2020-07-02 22:15,1.12396,1.12408,1.12393,1.12401,287 +2020-07-02 22:30,1.12399,1.12415,1.12396,1.12414,347 +2020-07-02 22:45,1.12413,1.12419,1.12408,1.12413,256 +2020-07-02 23:00,1.12415,1.12415,1.12389,1.12397,492 +2020-07-02 23:15,1.12398,1.12398,1.12371,1.12384,218 +2020-07-02 23:30,1.12385,1.12396,1.12385,1.12393,107 +2020-07-02 23:45,1.12393,1.12395,1.12368,1.12372,422 +2020-07-03 00:00,1.12373,1.12399,1.12361,1.12388,782 +2020-07-03 00:15,1.12388,1.12409,1.12367,1.12378,563 +2020-07-03 00:30,1.12379,1.12379,1.12331,1.12344,548 +2020-07-03 00:45,1.12344,1.12404,1.12338,1.12399,813 +2020-07-03 01:00,1.124,1.12426,1.12372,1.12423,753 +2020-07-03 01:15,1.12421,1.12492,1.12418,1.12474,861 +2020-07-03 01:30,1.12474,1.12486,1.12424,1.12436,1044 +2020-07-03 01:45,1.12437,1.12465,1.12418,1.12423,1072 +2020-07-03 02:00,1.12423,1.12438,1.12402,1.12419,1128 +2020-07-03 02:15,1.12419,1.12465,1.12416,1.12457,882 +2020-07-03 02:30,1.12457,1.12465,1.12437,1.12459,838 +2020-07-03 02:45,1.12461,1.12466,1.12429,1.1245,982 +2020-07-03 03:00,1.12449,1.12454,1.12422,1.12434,925 +2020-07-03 03:15,1.12435,1.1247,1.12435,1.12469,680 +2020-07-03 03:30,1.1247,1.12476,1.12452,1.12458,640 +2020-07-03 03:45,1.12457,1.12459,1.12421,1.12446,1011 +2020-07-03 04:00,1.12446,1.1245,1.1236,1.12371,1137 +2020-07-03 04:15,1.1237,1.12377,1.1231,1.1231,951 +2020-07-03 04:30,1.12309,1.1234,1.12305,1.12311,1036 +2020-07-03 04:45,1.12311,1.12327,1.1228,1.12288,821 +2020-07-03 05:00,1.12288,1.12302,1.12275,1.12297,815 +2020-07-03 05:15,1.12299,1.12317,1.12296,1.12297,780 +2020-07-03 05:30,1.12297,1.12359,1.12287,1.12346,1043 +2020-07-03 05:45,1.12347,1.12368,1.1234,1.1236,671 +2020-07-03 06:00,1.1236,1.12377,1.12327,1.12377,1181 +2020-07-03 06:15,1.12378,1.12421,1.1235,1.12361,1950 +2020-07-03 06:30,1.12361,1.12403,1.12355,1.12372,1673 +2020-07-03 06:45,1.12372,1.12402,1.12361,1.124,1510 +2020-07-03 07:00,1.12401,1.12457,1.12373,1.12453,1623 +2020-07-03 07:15,1.12453,1.12468,1.12326,1.12334,2783 +2020-07-03 07:30,1.12332,1.12345,1.12242,1.12335,4204 +2020-07-03 07:45,1.12335,1.12367,1.12303,1.1235,3067 +2020-07-03 08:00,1.12349,1.12356,1.12315,1.12351,1630 +2020-07-03 08:15,1.12352,1.12418,1.12349,1.12397,2211 +2020-07-03 08:30,1.12397,1.12419,1.12337,1.12337,1910 +2020-07-03 08:45,1.12336,1.12388,1.1233,1.12335,1983 +2020-07-03 09:00,1.12335,1.12344,1.12291,1.12303,2411 +2020-07-03 09:15,1.12304,1.12316,1.12263,1.12277,1708 +2020-07-03 09:30,1.12277,1.12303,1.12238,1.12273,1764 +2020-07-03 09:45,1.12272,1.12305,1.12271,1.12293,1983 +2020-07-03 10:00,1.12293,1.12321,1.12192,1.12199,2471 +2020-07-03 10:15,1.12198,1.12317,1.12193,1.12314,1999 +2020-07-03 10:30,1.12313,1.12346,1.12297,1.12307,1846 +2020-07-03 10:45,1.12306,1.12345,1.12281,1.1234,2091 +2020-07-03 11:00,1.1234,1.12344,1.12298,1.12325,1507 +2020-07-03 11:15,1.12327,1.12371,1.12269,1.12281,2389 +2020-07-03 11:30,1.12282,1.12342,1.12259,1.12335,2146 +2020-07-03 11:45,1.12334,1.12338,1.1223,1.12244,2417 +2020-07-03 12:00,1.12244,1.1227,1.12201,1.12236,2189 +2020-07-03 12:15,1.12236,1.12285,1.1221,1.12284,1529 +2020-07-03 12:30,1.12283,1.12304,1.12272,1.12291,1087 +2020-07-03 12:45,1.12292,1.12312,1.12273,1.12292,1114 +2020-07-03 13:00,1.12292,1.12319,1.12257,1.12295,1587 +2020-07-03 13:15,1.12295,1.12333,1.12292,1.12316,1519 +2020-07-03 13:30,1.12315,1.12382,1.1231,1.1238,2087 +2020-07-03 13:45,1.1238,1.12392,1.12335,1.12377,1698 +2020-07-03 14:00,1.12376,1.12428,1.12355,1.12406,1922 +2020-07-03 14:15,1.12407,1.12438,1.12401,1.12416,2222 +2020-07-03 14:30,1.12416,1.12459,1.12357,1.1244,2010 +2020-07-03 14:45,1.1244,1.12481,1.12406,1.12416,2552 +2020-07-03 15:00,1.12416,1.12458,1.12405,1.12436,1325 +2020-07-03 15:15,1.12437,1.12461,1.12405,1.12432,1125 +2020-07-03 15:30,1.12431,1.12452,1.12412,1.12422,997 +2020-07-03 15:45,1.12422,1.12447,1.12421,1.1243,871 +2020-07-03 16:00,1.1243,1.12437,1.12373,1.12374,1236 +2020-07-03 16:15,1.12376,1.12428,1.12357,1.12413,1209 +2020-07-03 16:30,1.12414,1.12436,1.12411,1.12418,706 +2020-07-03 16:45,1.1242,1.12448,1.12409,1.12416,920 +2020-07-03 17:00,1.12416,1.12447,1.12416,1.12434,905 +2020-07-03 17:15,1.12434,1.12437,1.12398,1.12404,1105 +2020-07-03 17:30,1.12403,1.12435,1.12398,1.12429,1165 +2020-07-03 17:45,1.12428,1.12447,1.12414,1.12434,3211 +2020-07-03 18:00,1.12433,1.12459,1.12411,1.12441,2109 +2020-07-03 18:15,1.12441,1.12458,1.12421,1.12433,1833 +2020-07-03 18:30,1.12433,1.12453,1.12407,1.12439,2401 +2020-07-03 18:45,1.12438,1.12462,1.12411,1.12445,3359 +2020-07-03 19:00,1.12445,1.12456,1.12425,1.12435,826 +2020-07-03 19:15,1.12435,1.12449,1.12425,1.12438,985 +2020-07-03 19:30,1.12437,1.1245,1.12432,1.12444,492 +2020-07-03 19:45,1.12444,1.12453,1.12393,1.12445,2294 +2020-07-03 20:00,1.12444,1.1247,1.12436,1.12456,2318 +2020-07-03 20:15,1.12457,1.12468,1.12451,1.12456,1764 +2020-07-03 20:30,1.12456,1.12514,1.12447,1.125,10353 +2020-07-03 20:45,1.12499,1.12518,1.1237,1.12464,4248 +2020-07-05 21:00,1.12433,1.12433,1.1242,1.12426,17 +2020-07-05 21:15,1.12423,1.1245,1.12417,1.1243,21 +2020-07-05 21:30,1.12422,1.12433,1.12411,1.12411,29 +2020-07-05 21:45,1.12413,1.12456,1.12413,1.12451,28 +2020-07-05 22:00,1.1245,1.12466,1.12418,1.12437,632 +2020-07-05 22:15,1.12437,1.12454,1.12437,1.12444,279 +2020-07-05 22:30,1.12448,1.1245,1.12439,1.12439,233 +2020-07-05 22:45,1.12439,1.12455,1.12439,1.12449,140 +2020-07-05 23:00,1.12452,1.12477,1.12445,1.12456,405 +2020-07-05 23:15,1.12459,1.12472,1.12445,1.12472,313 +2020-07-05 23:30,1.12471,1.12476,1.12462,1.12475,149 +2020-07-05 23:45,1.12474,1.12494,1.12464,1.12466,284 +2020-07-06 00:00,1.12467,1.12622,1.12467,1.12589,1512 +2020-07-06 00:15,1.1259,1.12646,1.12585,1.12586,1214 +2020-07-06 00:30,1.12587,1.12658,1.12583,1.12644,869 +2020-07-06 00:45,1.12645,1.12671,1.12596,1.12641,1206 +2020-07-06 01:00,1.12641,1.12653,1.12623,1.12633,898 +2020-07-06 01:15,1.12635,1.12649,1.12611,1.12648,1001 +2020-07-06 01:30,1.12649,1.12715,1.12617,1.12698,1659 +2020-07-06 01:45,1.12701,1.12728,1.12681,1.12682,1008 +2020-07-06 02:00,1.12681,1.12716,1.12681,1.12696,1071 +2020-07-06 02:15,1.12697,1.12716,1.12689,1.12707,720 +2020-07-06 02:30,1.12706,1.12787,1.12691,1.1278,820 +2020-07-06 02:45,1.1278,1.12792,1.12749,1.12772,1181 +2020-07-06 03:00,1.12774,1.1279,1.12764,1.1278,1016 +2020-07-06 03:15,1.12784,1.12796,1.12777,1.12785,659 +2020-07-06 03:30,1.12785,1.12822,1.12782,1.1281,744 +2020-07-06 03:45,1.1281,1.12853,1.1281,1.12826,1025 +2020-07-06 04:00,1.12827,1.12852,1.12826,1.12829,636 +2020-07-06 04:15,1.1283,1.12834,1.12817,1.12819,412 +2020-07-06 04:30,1.1282,1.12833,1.1282,1.12825,385 +2020-07-06 04:45,1.12824,1.12924,1.12824,1.12916,935 +2020-07-06 05:00,1.12915,1.12918,1.12858,1.12868,858 +2020-07-06 05:15,1.12866,1.12902,1.12856,1.12897,725 +2020-07-06 05:30,1.12898,1.12902,1.12851,1.1286,742 +2020-07-06 05:45,1.12859,1.12932,1.12848,1.12921,1219 +2020-07-06 06:00,1.1292,1.12921,1.12878,1.12906,1877 +2020-07-06 06:15,1.12904,1.12919,1.12885,1.12894,1365 +2020-07-06 06:30,1.12893,1.12951,1.12861,1.12947,1064 +2020-07-06 06:45,1.12949,1.13026,1.12911,1.12914,2395 +2020-07-06 07:00,1.12915,1.13003,1.12904,1.12945,3408 +2020-07-06 07:15,1.12944,1.12965,1.12886,1.12921,2643 +2020-07-06 07:30,1.12922,1.12999,1.1291,1.12995,2717 +2020-07-06 07:45,1.12999,1.13,1.12886,1.1297,2639 +2020-07-06 08:00,1.12972,1.12975,1.1281,1.12866,2910 +2020-07-06 08:15,1.12866,1.12895,1.12828,1.12855,1897 +2020-07-06 08:30,1.12857,1.12872,1.12824,1.12834,2108 +2020-07-06 08:45,1.12835,1.12915,1.12835,1.12902,2535 +2020-07-06 09:00,1.12903,1.12906,1.12827,1.12869,2244 +2020-07-06 09:15,1.12871,1.12888,1.12833,1.12853,1956 +2020-07-06 09:30,1.12853,1.1288,1.12835,1.12864,2371 +2020-07-06 09:45,1.12862,1.12948,1.12849,1.1294,1846 +2020-07-06 10:00,1.1294,1.12987,1.12919,1.12987,2544 +2020-07-06 10:15,1.12987,1.13018,1.1296,1.12983,2545 +2020-07-06 10:30,1.12984,1.13004,1.12905,1.12922,1957 +2020-07-06 10:45,1.12922,1.1296,1.12887,1.12959,1660 +2020-07-06 11:00,1.12959,1.13128,1.12936,1.13127,2174 +2020-07-06 11:15,1.13127,1.13166,1.13099,1.13127,3536 +2020-07-06 11:30,1.13126,1.13156,1.13097,1.13116,2427 +2020-07-06 11:45,1.13113,1.13205,1.1311,1.13187,2226 +2020-07-06 12:00,1.13188,1.13257,1.13151,1.13249,2451 +2020-07-06 12:15,1.1325,1.13281,1.13217,1.13234,2312 +2020-07-06 12:30,1.13235,1.13254,1.13189,1.13199,2077 +2020-07-06 12:45,1.13197,1.13297,1.13194,1.13296,1651 +2020-07-06 13:00,1.13296,1.13336,1.13249,1.13279,2436 +2020-07-06 13:15,1.13277,1.13342,1.1327,1.13319,2129 +2020-07-06 13:30,1.1332,1.13426,1.13319,1.13415,3662 +2020-07-06 13:45,1.13415,1.13454,1.13264,1.13264,3392 +2020-07-06 14:00,1.13275,1.13341,1.13114,1.13157,4726 +2020-07-06 14:15,1.13155,1.13196,1.13092,1.13121,3026 +2020-07-06 14:30,1.13122,1.13226,1.13111,1.13212,2525 +2020-07-06 14:45,1.13214,1.13279,1.13157,1.13173,4202 +2020-07-06 15:00,1.13174,1.13182,1.13044,1.13052,2738 +2020-07-06 15:15,1.1305,1.13142,1.13024,1.13141,2365 +2020-07-06 15:30,1.13141,1.13141,1.1306,1.13069,1881 +2020-07-06 15:45,1.13068,1.13096,1.1305,1.1307,1613 +2020-07-06 16:00,1.1307,1.131,1.1306,1.13085,1462 +2020-07-06 16:15,1.13083,1.13124,1.13082,1.13103,1333 +2020-07-06 16:30,1.13105,1.13126,1.13077,1.13093,1062 +2020-07-06 16:45,1.13092,1.13108,1.13049,1.13065,1232 +2020-07-06 17:00,1.13064,1.1313,1.1306,1.13117,1206 +2020-07-06 17:15,1.13115,1.13129,1.13097,1.13114,1195 +2020-07-06 17:30,1.13114,1.1313,1.13092,1.1312,1310 +2020-07-06 17:45,1.1312,1.1319,1.1312,1.13159,1258 +2020-07-06 18:00,1.13158,1.13165,1.13114,1.13114,748 +2020-07-06 18:15,1.13113,1.13152,1.13103,1.13126,794 +2020-07-06 18:30,1.13126,1.13155,1.13116,1.13141,798 +2020-07-06 18:45,1.1314,1.13176,1.13116,1.1315,1261 +2020-07-06 19:00,1.1315,1.13158,1.13102,1.13113,1018 +2020-07-06 19:15,1.13112,1.13116,1.13092,1.13103,872 +2020-07-06 19:30,1.13104,1.13109,1.13055,1.13079,1520 +2020-07-06 19:45,1.13079,1.13103,1.13062,1.13091,909 +2020-07-06 20:00,1.1309,1.13126,1.1309,1.13115,444 +2020-07-06 20:15,1.13114,1.13116,1.13085,1.13085,292 +2020-07-06 20:30,1.13086,1.13086,1.13065,1.13068,224 +2020-07-06 20:45,1.13067,1.1309,1.13059,1.13089,297 +2020-07-06 21:00,1.13087,1.13118,1.13076,1.13083,113 +2020-07-06 21:15,1.13083,1.13083,1.13065,1.13066,719 +2020-07-06 21:30,1.13067,1.131,1.13066,1.13088,1406 +2020-07-06 21:45,1.13092,1.1311,1.13074,1.13104,879 +2020-07-06 22:00,1.13104,1.13107,1.13091,1.13094,227 +2020-07-06 22:15,1.13093,1.13101,1.13085,1.13088,236 +2020-07-06 22:30,1.13087,1.13093,1.13082,1.13083,250 +2020-07-06 22:45,1.13083,1.13113,1.1308,1.13105,294 +2020-07-06 23:00,1.13104,1.13135,1.13102,1.13129,461 +2020-07-06 23:15,1.1313,1.13139,1.13122,1.13127,530 +2020-07-06 23:30,1.1313,1.13142,1.13115,1.13116,335 +2020-07-06 23:45,1.13115,1.1313,1.13108,1.13123,271 +2020-07-07 00:00,1.13123,1.13192,1.13093,1.13186,1126 +2020-07-07 00:15,1.13185,1.13285,1.13181,1.13242,1257 +2020-07-07 00:30,1.13241,1.13325,1.13232,1.13303,1092 +2020-07-07 00:45,1.13301,1.13311,1.1326,1.13263,1033 +2020-07-07 01:00,1.13263,1.1328,1.13223,1.13225,1185 +2020-07-07 01:15,1.13224,1.13241,1.1318,1.13195,1861 +2020-07-07 01:30,1.13195,1.13254,1.13156,1.13156,1541 +2020-07-07 01:45,1.13156,1.13171,1.13126,1.13128,1683 +2020-07-07 02:00,1.13129,1.13165,1.13121,1.13155,1272 +2020-07-07 02:15,1.13155,1.13173,1.13123,1.13142,1359 +2020-07-07 02:30,1.13142,1.13146,1.131,1.13103,1566 +2020-07-07 02:45,1.13104,1.13118,1.13063,1.13074,1271 +2020-07-07 03:00,1.13073,1.13115,1.13073,1.13101,671 +2020-07-07 03:15,1.13101,1.13116,1.13093,1.13112,537 +2020-07-07 03:30,1.13112,1.13126,1.13105,1.13112,541 +2020-07-07 03:45,1.1311,1.13118,1.13083,1.13102,609 +2020-07-07 04:00,1.13101,1.13102,1.13067,1.13076,546 +2020-07-07 04:15,1.13076,1.13109,1.13075,1.13096,419 +2020-07-07 04:30,1.13096,1.13119,1.1308,1.13107,772 +2020-07-07 04:45,1.13104,1.13138,1.13098,1.13115,429 +2020-07-07 05:00,1.13114,1.13157,1.13105,1.13157,729 +2020-07-07 05:15,1.13156,1.13159,1.13114,1.13114,556 +2020-07-07 05:30,1.13112,1.13114,1.13031,1.1305,1085 +2020-07-07 05:45,1.13049,1.13083,1.13023,1.13082,890 +2020-07-07 06:00,1.13081,1.13083,1.1297,1.1301,1821 +2020-07-07 06:15,1.13009,1.13047,1.12983,1.13042,1170 +2020-07-07 06:30,1.13045,1.13086,1.13021,1.13021,1036 +2020-07-07 06:45,1.13021,1.13021,1.12916,1.12937,1786 +2020-07-07 07:00,1.12937,1.12958,1.12892,1.12902,2762 +2020-07-07 07:15,1.12902,1.12945,1.12811,1.1285,3245 +2020-07-07 07:30,1.12849,1.12883,1.12815,1.12865,2592 +2020-07-07 07:45,1.12865,1.12891,1.12837,1.12853,2557 +2020-07-07 08:00,1.12854,1.12898,1.1281,1.12841,2991 +2020-07-07 08:15,1.12841,1.12873,1.12719,1.12733,3245 +2020-07-07 08:30,1.12733,1.12799,1.12733,1.12751,2559 +2020-07-07 08:45,1.1275,1.12766,1.1263,1.12644,3422 +2020-07-07 09:00,1.12643,1.12674,1.12588,1.12661,3248 +2020-07-07 09:15,1.1266,1.12691,1.12639,1.12655,1765 +2020-07-07 09:30,1.12657,1.12674,1.12628,1.12667,1940 +2020-07-07 09:45,1.12667,1.12748,1.12627,1.12736,1918 +2020-07-07 10:00,1.12735,1.12796,1.1271,1.12776,2137 +2020-07-07 10:15,1.12773,1.1282,1.12706,1.12766,2657 +2020-07-07 10:30,1.12765,1.12805,1.12739,1.12771,2388 +2020-07-07 10:45,1.1277,1.12809,1.12752,1.12776,2048 +2020-07-07 11:00,1.12776,1.12863,1.12751,1.12841,1987 +2020-07-07 11:15,1.12839,1.12876,1.12813,1.12855,2718 +2020-07-07 11:30,1.12855,1.12897,1.12843,1.12895,2373 +2020-07-07 11:45,1.12896,1.12944,1.1286,1.12904,2892 +2020-07-07 12:00,1.12905,1.12935,1.12877,1.12901,2044 +2020-07-07 12:15,1.12902,1.12934,1.12871,1.12921,2059 +2020-07-07 12:30,1.12924,1.12938,1.129,1.1292,1549 +2020-07-07 12:45,1.12922,1.13004,1.12915,1.1298,2196 +2020-07-07 13:00,1.12982,1.12991,1.12906,1.12977,2287 +2020-07-07 13:15,1.12977,1.13068,1.12966,1.13043,2414 +2020-07-07 13:30,1.13045,1.13067,1.12934,1.12976,4049 +2020-07-07 13:45,1.12977,1.13031,1.12845,1.12856,3703 +2020-07-07 14:00,1.12855,1.1293,1.12845,1.12906,4107 +2020-07-07 14:15,1.12906,1.12918,1.12792,1.12826,3884 +2020-07-07 14:30,1.12826,1.12833,1.12714,1.12749,3234 +2020-07-07 14:45,1.12751,1.12875,1.12724,1.1284,4093 +2020-07-07 15:00,1.1284,1.12954,1.12831,1.12925,3224 +2020-07-07 15:15,1.12925,1.13,1.12922,1.12945,2775 +2020-07-07 15:30,1.12947,1.12994,1.1294,1.12948,2519 +2020-07-07 15:45,1.12946,1.13036,1.12936,1.12976,1795 +2020-07-07 16:00,1.12976,1.13001,1.12936,1.12936,1662 +2020-07-07 16:15,1.12937,1.12992,1.12911,1.1295,2210 +2020-07-07 16:30,1.12951,1.12976,1.12901,1.12901,1606 +2020-07-07 16:45,1.129,1.12933,1.12855,1.12902,2239 +2020-07-07 17:00,1.12902,1.12902,1.12855,1.12887,1467 +2020-07-07 17:15,1.12888,1.12928,1.12867,1.12923,1613 +2020-07-07 17:30,1.12922,1.12934,1.12905,1.12913,1436 +2020-07-07 17:45,1.12912,1.1296,1.12879,1.12954,1403 +2020-07-07 18:00,1.12953,1.12979,1.12937,1.12974,1053 +2020-07-07 18:15,1.12974,1.12983,1.1293,1.12942,1733 +2020-07-07 18:30,1.12941,1.12941,1.12828,1.12859,1509 +2020-07-07 18:45,1.12857,1.12868,1.12832,1.12858,1286 +2020-07-07 19:00,1.12858,1.12867,1.12823,1.12828,2081 +2020-07-07 19:15,1.12828,1.12839,1.12817,1.12823,1412 +2020-07-07 19:30,1.12822,1.12825,1.12773,1.12788,1795 +2020-07-07 19:45,1.12786,1.12787,1.12713,1.12717,1680 +2020-07-07 20:00,1.12718,1.12729,1.12696,1.12706,934 +2020-07-07 20:15,1.12705,1.12724,1.12685,1.1272,307 +2020-07-07 20:30,1.12719,1.1275,1.12719,1.12738,385 +2020-07-07 20:45,1.12739,1.1275,1.12715,1.12727,382 +2020-07-07 21:00,1.12725,1.12751,1.12699,1.12718,1221 +2020-07-07 21:15,1.12718,1.12753,1.12718,1.12734,1575 +2020-07-07 21:30,1.12739,1.12757,1.12724,1.12747,1116 +2020-07-07 21:45,1.12755,1.12755,1.12741,1.12745,585 +2020-07-07 22:00,1.12745,1.12745,1.12727,1.12741,463 +2020-07-07 22:15,1.12742,1.12755,1.12742,1.12745,388 +2020-07-07 22:30,1.12745,1.12749,1.12724,1.12746,409 +2020-07-07 22:45,1.12747,1.12755,1.12737,1.12739,154 +2020-07-07 23:00,1.12739,1.12744,1.12722,1.12729,432 +2020-07-07 23:15,1.12729,1.12752,1.12724,1.12747,223 +2020-07-07 23:30,1.12748,1.12777,1.12741,1.12776,168 +2020-07-07 23:45,1.12776,1.12776,1.1274,1.12744,546 +2020-07-08 00:00,1.12745,1.12781,1.12714,1.12763,955 +2020-07-08 00:15,1.12764,1.12825,1.1276,1.12784,927 +2020-07-08 00:30,1.12785,1.12789,1.12694,1.127,897 +2020-07-08 00:45,1.12703,1.12705,1.12649,1.12689,1517 +2020-07-08 01:00,1.12689,1.12727,1.12682,1.12724,1204 +2020-07-08 01:15,1.12725,1.1273,1.127,1.12706,973 +2020-07-08 01:30,1.12705,1.12792,1.12703,1.12781,1376 +2020-07-08 01:45,1.12781,1.12785,1.12716,1.12716,1244 +2020-07-08 02:00,1.12719,1.12752,1.12709,1.12742,1120 +2020-07-08 02:15,1.12741,1.12758,1.12721,1.12736,859 +2020-07-08 02:30,1.12734,1.12778,1.12726,1.12776,924 +2020-07-08 02:45,1.12776,1.12796,1.12766,1.12786,692 +2020-07-08 03:00,1.12786,1.12796,1.12758,1.12784,609 +2020-07-08 03:15,1.12785,1.12797,1.12771,1.12787,617 +2020-07-08 03:30,1.12787,1.12802,1.12771,1.12801,683 +2020-07-08 03:45,1.12802,1.12804,1.12771,1.12779,838 +2020-07-08 04:00,1.12779,1.12786,1.12759,1.12777,539 +2020-07-08 04:15,1.12777,1.12777,1.1274,1.12759,568 +2020-07-08 04:30,1.12758,1.12763,1.12736,1.12762,650 +2020-07-08 04:45,1.12762,1.12774,1.12746,1.12763,467 +2020-07-08 05:00,1.12764,1.12806,1.12764,1.12798,797 +2020-07-08 05:15,1.12798,1.12825,1.12766,1.12771,714 +2020-07-08 05:30,1.1277,1.12818,1.1277,1.12804,647 +2020-07-08 05:45,1.12805,1.12805,1.12734,1.12758,1044 +2020-07-08 06:00,1.12759,1.12771,1.12623,1.12655,2089 +2020-07-08 06:15,1.12655,1.12749,1.12647,1.12729,1722 +2020-07-08 06:30,1.12728,1.12767,1.12711,1.12765,2660 +2020-07-08 06:45,1.12764,1.12775,1.12729,1.12761,1633 +2020-07-08 07:00,1.12759,1.12872,1.12724,1.12866,4203 +2020-07-08 07:15,1.12865,1.12925,1.12844,1.1291,2764 +2020-07-08 07:30,1.12911,1.12942,1.12853,1.12883,2524 +2020-07-08 07:45,1.12884,1.12898,1.12852,1.12885,1938 +2020-07-08 08:00,1.12886,1.12894,1.12833,1.12871,2036 +2020-07-08 08:15,1.12872,1.1289,1.12843,1.12871,2066 +2020-07-08 08:30,1.12871,1.12937,1.12836,1.12867,3028 +2020-07-08 08:45,1.12866,1.12886,1.12778,1.12786,2286 +2020-07-08 09:00,1.12787,1.12826,1.12739,1.12745,2701 +2020-07-08 09:15,1.12745,1.12757,1.12687,1.12722,3007 +2020-07-08 09:30,1.12722,1.12722,1.12665,1.12667,2318 +2020-07-08 09:45,1.12667,1.12752,1.12659,1.12751,2368 +2020-07-08 10:00,1.12752,1.12756,1.1272,1.12744,1897 +2020-07-08 10:15,1.12744,1.12757,1.12673,1.1273,1805 +2020-07-08 10:30,1.1273,1.12779,1.12712,1.12769,1609 +2020-07-08 10:45,1.12771,1.12835,1.12768,1.12821,2008 +2020-07-08 11:00,1.12822,1.12849,1.12801,1.12816,1734 +2020-07-08 11:15,1.12816,1.12823,1.1276,1.128,1367 +2020-07-08 11:30,1.12799,1.12891,1.12796,1.12891,1810 +2020-07-08 11:45,1.12892,1.12953,1.12863,1.12889,2911 +2020-07-08 12:00,1.1289,1.12915,1.12839,1.1286,2483 +2020-07-08 12:15,1.1286,1.12918,1.12846,1.12905,2160 +2020-07-08 12:30,1.12905,1.12905,1.1278,1.12786,2826 +2020-07-08 12:45,1.12787,1.12894,1.12782,1.12881,2359 +2020-07-08 13:00,1.12882,1.1298,1.12873,1.12936,2515 +2020-07-08 13:15,1.12937,1.13091,1.12937,1.13061,3288 +2020-07-08 13:30,1.13062,1.13283,1.13062,1.13283,5618 +2020-07-08 13:45,1.13282,1.13337,1.13244,1.13295,4454 +2020-07-08 14:00,1.13295,1.13416,1.13266,1.1341,4324 +2020-07-08 14:15,1.13406,1.1343,1.1333,1.13351,3648 +2020-07-08 14:30,1.13351,1.13426,1.13351,1.13353,3444 +2020-07-08 14:45,1.13354,1.13418,1.13251,1.13277,4529 +2020-07-08 15:00,1.13277,1.13298,1.13225,1.1327,3219 +2020-07-08 15:15,1.13273,1.13296,1.13149,1.1322,3508 +2020-07-08 15:30,1.13219,1.13295,1.13213,1.13232,2614 +2020-07-08 15:45,1.13233,1.13283,1.13189,1.1328,2205 +2020-07-08 16:00,1.1328,1.1341,1.13263,1.13404,2191 +2020-07-08 16:15,1.13406,1.13518,1.13395,1.13447,2981 +2020-07-08 16:30,1.1345,1.13466,1.13377,1.13397,2160 +2020-07-08 16:45,1.13398,1.134,1.1335,1.13359,1764 +2020-07-08 17:00,1.13359,1.13421,1.13357,1.13376,1584 +2020-07-08 17:15,1.13377,1.13386,1.133,1.13327,1634 +2020-07-08 17:30,1.13328,1.13394,1.13328,1.1337,1109 +2020-07-08 17:45,1.13371,1.13391,1.13307,1.13341,1578 +2020-07-08 18:00,1.1334,1.13377,1.13328,1.13357,1922 +2020-07-08 18:15,1.1336,1.13365,1.13337,1.13356,1244 +2020-07-08 18:30,1.13356,1.13359,1.13331,1.13335,1272 +2020-07-08 18:45,1.13335,1.1338,1.13334,1.13355,1495 +2020-07-08 19:00,1.13355,1.13365,1.13297,1.13329,1483 +2020-07-08 19:15,1.1333,1.13357,1.13316,1.13338,1847 +2020-07-08 19:30,1.13339,1.1335,1.13283,1.13292,1415 +2020-07-08 19:45,1.13293,1.13328,1.13277,1.13322,1239 +2020-07-08 20:00,1.13321,1.13338,1.13303,1.13316,711 +2020-07-08 20:15,1.13315,1.13336,1.13304,1.13304,652 +2020-07-08 20:30,1.13305,1.13332,1.13304,1.13313,538 +2020-07-08 20:45,1.13314,1.13321,1.13291,1.13293,368 +2020-07-08 21:00,1.13292,1.13299,1.13263,1.13298,41 +2020-07-08 21:15,1.13306,1.13313,1.13305,1.13309,41 +2020-07-08 21:30,1.13298,1.1331,1.13289,1.13297,406 +2020-07-08 21:45,1.13299,1.13345,1.13294,1.13322,3498 +2020-07-08 22:00,1.1332,1.1333,1.13294,1.13305,525 +2020-07-08 22:15,1.13307,1.13324,1.13307,1.1332,132 +2020-07-08 22:30,1.13319,1.13328,1.13315,1.13328,161 +2020-07-08 22:45,1.13327,1.13336,1.13319,1.13324,209 +2020-07-08 23:00,1.13323,1.13336,1.13317,1.13329,228 +2020-07-08 23:15,1.1333,1.13356,1.1333,1.13352,275 +2020-07-08 23:30,1.13351,1.1338,1.13342,1.13374,294 +2020-07-08 23:45,1.13374,1.13385,1.13367,1.13372,312 +2020-07-09 00:00,1.13372,1.13467,1.13363,1.13456,1128 +2020-07-09 00:15,1.13455,1.13456,1.13383,1.13398,878 +2020-07-09 00:30,1.13398,1.13406,1.13379,1.13381,492 +2020-07-09 00:45,1.13381,1.13385,1.13329,1.13337,898 +2020-07-09 01:00,1.13336,1.13351,1.13297,1.13329,1186 +2020-07-09 01:15,1.1333,1.13343,1.13302,1.13322,1095 +2020-07-09 01:30,1.13322,1.13373,1.13275,1.13362,1589 +2020-07-09 01:45,1.13363,1.13391,1.13332,1.1338,1156 +2020-07-09 02:00,1.1338,1.13403,1.13355,1.13379,1095 +2020-07-09 02:15,1.13379,1.13433,1.13379,1.13427,1155 +2020-07-09 02:30,1.13426,1.13462,1.13406,1.13458,1334 +2020-07-09 02:45,1.13457,1.13473,1.13427,1.13465,1223 +2020-07-09 03:00,1.13464,1.1347,1.13434,1.1347,786 +2020-07-09 03:15,1.13471,1.13482,1.13456,1.13458,542 +2020-07-09 03:30,1.13457,1.13475,1.13456,1.1347,408 +2020-07-09 03:45,1.13471,1.13639,1.1347,1.13622,1945 +2020-07-09 04:00,1.13621,1.137,1.13616,1.13658,1341 +2020-07-09 04:15,1.1366,1.13706,1.13619,1.13639,1392 +2020-07-09 04:30,1.1364,1.13678,1.13635,1.13654,848 +2020-07-09 04:45,1.13654,1.13661,1.13617,1.13649,850 +2020-07-09 05:00,1.1365,1.13652,1.13625,1.13641,829 +2020-07-09 05:15,1.13639,1.13676,1.13625,1.13669,579 +2020-07-09 05:30,1.13669,1.13669,1.13594,1.13594,1196 +2020-07-09 05:45,1.13593,1.13649,1.13584,1.13643,921 +2020-07-09 06:00,1.13644,1.13674,1.13577,1.13594,1705 +2020-07-09 06:15,1.13595,1.13596,1.13545,1.13553,1818 +2020-07-09 06:30,1.13554,1.13585,1.13544,1.13571,1174 +2020-07-09 06:45,1.13574,1.13628,1.13548,1.13555,1721 +2020-07-09 07:00,1.13555,1.13617,1.13482,1.13561,3744 +2020-07-09 07:15,1.13562,1.13575,1.13464,1.13483,2685 +2020-07-09 07:30,1.13482,1.13485,1.13251,1.13332,4071 +2020-07-09 07:45,1.13333,1.13404,1.1331,1.13362,3474 +2020-07-09 08:00,1.13363,1.13423,1.1332,1.13413,2274 +2020-07-09 08:15,1.13413,1.13453,1.13343,1.13366,2270 +2020-07-09 08:30,1.13365,1.13376,1.13287,1.13313,2208 +2020-07-09 08:45,1.13316,1.13361,1.13272,1.13292,3505 +2020-07-09 09:00,1.13292,1.13296,1.13199,1.13243,2870 +2020-07-09 09:15,1.1324,1.13263,1.132,1.13225,1959 +2020-07-09 09:30,1.13224,1.133,1.1321,1.13285,1994 +2020-07-09 09:45,1.13285,1.13344,1.1328,1.1331,2487 +2020-07-09 10:00,1.1331,1.13322,1.13269,1.1327,2003 +2020-07-09 10:15,1.1327,1.13294,1.13248,1.13292,1981 +2020-07-09 10:30,1.13292,1.13302,1.13244,1.13256,2265 +2020-07-09 10:45,1.13256,1.13271,1.13162,1.13222,2523 +2020-07-09 11:00,1.13224,1.13274,1.13211,1.13254,2120 +2020-07-09 11:15,1.13252,1.13288,1.13215,1.13269,1999 +2020-07-09 11:30,1.13269,1.13385,1.13257,1.13385,2503 +2020-07-09 11:45,1.13383,1.13454,1.13338,1.13425,2422 +2020-07-09 12:00,1.13427,1.13474,1.13408,1.13412,2914 +2020-07-09 12:15,1.13412,1.13432,1.13355,1.13372,2027 +2020-07-09 12:30,1.13373,1.13441,1.13334,1.13437,2502 +2020-07-09 12:45,1.13435,1.13486,1.13401,1.13436,2219 +2020-07-09 13:00,1.13434,1.13483,1.13352,1.1343,2454 +2020-07-09 13:15,1.13431,1.13466,1.13408,1.13431,1950 +2020-07-09 13:30,1.13431,1.13437,1.13216,1.13295,6375 +2020-07-09 13:45,1.13296,1.13344,1.13233,1.13264,4335 +2020-07-09 14:00,1.13262,1.13382,1.13242,1.1331,4538 +2020-07-09 14:15,1.13309,1.13317,1.13066,1.13252,6804 +2020-07-09 14:30,1.13251,1.133,1.13028,1.13028,6792 +2020-07-09 14:45,1.13027,1.13043,1.12902,1.12953,8812 +2020-07-09 15:00,1.12953,1.12987,1.12853,1.12986,5979 +2020-07-09 15:15,1.12986,1.13034,1.12891,1.13025,5791 +2020-07-09 15:30,1.13025,1.13025,1.12877,1.12889,4499 +2020-07-09 15:45,1.12889,1.1301,1.1288,1.12977,3368 +2020-07-09 16:00,1.12976,1.13041,1.12955,1.12964,2751 +2020-07-09 16:15,1.12963,1.13024,1.12951,1.12971,3409 +2020-07-09 16:30,1.1297,1.12987,1.12923,1.12932,3346 +2020-07-09 16:45,1.12931,1.12956,1.12886,1.12905,2544 +2020-07-09 17:00,1.12905,1.12926,1.12878,1.12923,9286 +2020-07-09 17:15,1.12922,1.12947,1.1291,1.12929,1575 +2020-07-09 17:30,1.12931,1.12934,1.12902,1.1292,1352 +2020-07-09 17:45,1.12919,1.1293,1.12889,1.12922,1201 +2020-07-09 18:00,1.12921,1.12941,1.12902,1.12939,1123 +2020-07-09 18:15,1.1294,1.12947,1.12907,1.12938,1599 +2020-07-09 18:30,1.12938,1.12949,1.12912,1.12923,963 +2020-07-09 18:45,1.12922,1.12973,1.12922,1.12969,1217 +2020-07-09 19:00,1.12971,1.12971,1.12926,1.12945,1546 +2020-07-09 19:15,1.12949,1.12958,1.12903,1.12904,1136 +2020-07-09 19:30,1.12905,1.1291,1.12842,1.12858,1605 +2020-07-09 19:45,1.12857,1.12901,1.12846,1.12852,1809 +2020-07-09 20:00,1.12852,1.12866,1.12805,1.12818,934 +2020-07-09 20:15,1.12818,1.12833,1.12803,1.12832,578 +2020-07-09 20:30,1.12831,1.12851,1.12805,1.12819,502 +2020-07-09 20:45,1.12819,1.12855,1.12801,1.12846,548 +2020-07-09 21:00,1.12845,1.12852,1.12814,1.12832,62 +2020-07-09 21:15,1.12833,1.1285,1.12831,1.12835,72 +2020-07-09 21:30,1.12835,1.12835,1.12832,1.12832,79 +2020-07-09 21:45,1.12833,1.12847,1.12832,1.12837,159 +2020-07-09 22:00,1.12837,1.12865,1.12837,1.12855,439 +2020-07-09 22:15,1.12855,1.12873,1.12855,1.12872,141 +2020-07-09 22:30,1.12871,1.12881,1.12866,1.12869,170 +2020-07-09 22:45,1.12869,1.12874,1.12864,1.12873,160 +2020-07-09 23:00,1.12873,1.12873,1.12846,1.12853,339 +2020-07-09 23:15,1.12852,1.12879,1.12852,1.12879,221 +2020-07-09 23:30,1.12879,1.12901,1.12878,1.12901,269 +2020-07-09 23:45,1.129,1.12901,1.12874,1.12879,327 +2020-07-10 00:00,1.12881,1.12889,1.12804,1.12818,913 +2020-07-10 00:15,1.12821,1.12842,1.12804,1.12828,786 +2020-07-10 00:30,1.12827,1.12849,1.12812,1.12813,590 +2020-07-10 00:45,1.12814,1.12814,1.12708,1.12752,2182 +2020-07-10 01:00,1.12752,1.12775,1.1272,1.12722,1510 +2020-07-10 01:15,1.12722,1.12752,1.12709,1.12736,2084 +2020-07-10 01:30,1.12736,1.12767,1.1273,1.1275,1470 +2020-07-10 01:45,1.12751,1.12784,1.12742,1.12782,1138 +2020-07-10 02:00,1.12782,1.12782,1.12742,1.12745,1062 +2020-07-10 02:15,1.12745,1.12751,1.12712,1.12712,890 +2020-07-10 02:30,1.12711,1.12724,1.12699,1.127,642 +2020-07-10 02:45,1.127,1.12743,1.12693,1.12725,966 +2020-07-10 03:00,1.12726,1.12748,1.12714,1.12739,682 +2020-07-10 03:15,1.12738,1.12743,1.12712,1.12738,733 +2020-07-10 03:30,1.12738,1.12742,1.12714,1.12726,640 +2020-07-10 03:45,1.12726,1.12746,1.12717,1.12742,737 +2020-07-10 04:00,1.12741,1.12744,1.12718,1.12718,595 +2020-07-10 04:15,1.12719,1.1272,1.12679,1.12703,1057 +2020-07-10 04:30,1.12702,1.1272,1.12693,1.12719,975 +2020-07-10 04:45,1.12719,1.12736,1.12707,1.1271,783 +2020-07-10 05:00,1.1271,1.12737,1.12695,1.12723,1245 +2020-07-10 05:15,1.12724,1.12742,1.12713,1.12732,644 +2020-07-10 05:30,1.12731,1.12732,1.1263,1.12688,1373 +2020-07-10 05:45,1.1269,1.12705,1.12658,1.12692,1299 +2020-07-10 06:00,1.12694,1.12727,1.12641,1.12642,2482 +2020-07-10 06:15,1.12642,1.12667,1.12579,1.12659,2847 +2020-07-10 06:30,1.1266,1.12667,1.12611,1.12651,3143 +2020-07-10 06:45,1.12651,1.12662,1.12594,1.12648,2697 +2020-07-10 07:00,1.12648,1.12656,1.12547,1.126,5069 +2020-07-10 07:15,1.12603,1.12704,1.12601,1.12683,3420 +2020-07-10 07:30,1.12684,1.12778,1.1267,1.12752,3937 +2020-07-10 07:45,1.12753,1.12808,1.12735,1.12789,2541 +2020-07-10 08:00,1.12789,1.12869,1.12779,1.12862,3190 +2020-07-10 08:15,1.12864,1.12911,1.12829,1.12891,3195 +2020-07-10 08:30,1.12891,1.12903,1.12836,1.12856,2918 +2020-07-10 08:45,1.12857,1.12882,1.12811,1.12856,2811 +2020-07-10 09:00,1.12855,1.12936,1.12854,1.12896,3369 +2020-07-10 09:15,1.12896,1.1294,1.12873,1.12883,3582 +2020-07-10 09:30,1.12883,1.12947,1.12872,1.12897,3054 +2020-07-10 09:45,1.12897,1.12916,1.12852,1.12909,2500 +2020-07-10 10:00,1.12909,1.12967,1.12906,1.12953,2105 +2020-07-10 10:15,1.12954,1.12974,1.12923,1.12946,2411 +2020-07-10 10:30,1.12946,1.1297,1.12919,1.12964,1964 +2020-07-10 10:45,1.12964,1.12969,1.12936,1.12937,1619 +2020-07-10 11:00,1.1294,1.13005,1.12922,1.12995,1886 +2020-07-10 11:15,1.12996,1.13003,1.1295,1.12957,1711 +2020-07-10 11:30,1.12958,1.12995,1.1295,1.12963,1388 +2020-07-10 11:45,1.12964,1.12967,1.1285,1.12862,2535 +2020-07-10 12:00,1.12864,1.12875,1.12735,1.12758,2937 +2020-07-10 12:15,1.12758,1.12807,1.12742,1.12784,2084 +2020-07-10 12:30,1.12784,1.12933,1.12783,1.12889,2982 +2020-07-10 12:45,1.12887,1.12939,1.12852,1.12931,2450 +2020-07-10 13:00,1.1293,1.1311,1.1293,1.13062,4507 +2020-07-10 13:15,1.13063,1.13117,1.13029,1.13081,3186 +2020-07-10 13:30,1.13081,1.13146,1.13048,1.13116,6203 +2020-07-10 13:45,1.13117,1.13146,1.13037,1.13071,4817 +2020-07-10 14:00,1.13072,1.13166,1.13013,1.13158,4615 +2020-07-10 14:15,1.13158,1.13186,1.13112,1.13123,4555 +2020-07-10 14:30,1.13124,1.13216,1.13078,1.13208,4618 +2020-07-10 14:45,1.1321,1.13247,1.13155,1.13195,4602 +2020-07-10 15:00,1.13195,1.13199,1.13131,1.1314,3636 +2020-07-10 15:15,1.13141,1.13174,1.13094,1.131,2798 +2020-07-10 15:30,1.131,1.13161,1.13093,1.13161,2853 +2020-07-10 15:45,1.13162,1.1319,1.13138,1.13167,2042 +2020-07-10 16:00,1.13166,1.1317,1.13083,1.13088,2665 +2020-07-10 16:15,1.13088,1.13088,1.13028,1.13031,2356 +2020-07-10 16:30,1.13032,1.13048,1.12969,1.13014,2206 +2020-07-10 16:45,1.13013,1.13029,1.12982,1.12996,1850 +2020-07-10 17:00,1.12996,1.13007,1.12978,1.12996,1433 +2020-07-10 17:15,1.12998,1.13032,1.12951,1.1303,1749 +2020-07-10 17:30,1.1303,1.13052,1.13009,1.13044,1492 +2020-07-10 17:45,1.13042,1.13059,1.13025,1.13056,1112 +2020-07-10 18:00,1.13056,1.13056,1.12997,1.13004,1365 +2020-07-10 18:15,1.13004,1.1302,1.12992,1.13014,1257 +2020-07-10 18:30,1.13013,1.13045,1.1301,1.13043,1011 +2020-07-10 18:45,1.13043,1.13043,1.12981,1.12981,1281 +2020-07-10 19:00,1.12981,1.12996,1.12955,1.12981,1714 +2020-07-10 19:15,1.12981,1.13013,1.12981,1.13012,996 +2020-07-10 19:30,1.13014,1.13027,1.12981,1.12997,1175 +2020-07-10 19:45,1.12998,1.13014,1.12989,1.13004,1345 +2020-07-10 20:00,1.13003,1.13037,1.12995,1.13022,584 +2020-07-10 20:15,1.13023,1.13024,1.12984,1.1299,430 +2020-07-10 20:30,1.12992,1.12999,1.12977,1.12977,409 +2020-07-10 20:45,1.12978,1.12996,1.12949,1.1299,1467 +2020-07-12 21:00,1.13039,1.13045,1.13026,1.13038,27 +2020-07-12 21:15,1.1304,1.1305,1.1303,1.13043,33 +2020-07-12 21:30,1.13044,1.13055,1.13037,1.13042,44 +2020-07-12 21:45,1.13044,1.13054,1.13037,1.13039,47 +2020-07-12 22:00,1.13039,1.13108,1.13039,1.13107,938 +2020-07-12 22:15,1.13106,1.13141,1.13101,1.13122,727 +2020-07-12 22:30,1.13123,1.1314,1.13108,1.13139,430 +2020-07-12 22:45,1.13139,1.13158,1.13132,1.13157,451 +2020-07-12 23:00,1.13157,1.13173,1.13112,1.13118,713 +2020-07-12 23:15,1.13118,1.13135,1.13101,1.13134,952 +2020-07-12 23:30,1.13135,1.13136,1.13102,1.13114,598 +2020-07-12 23:45,1.13114,1.13123,1.13084,1.13085,848 +2020-07-13 00:00,1.13086,1.1309,1.13036,1.13047,1520 +2020-07-13 00:15,1.13046,1.13104,1.13036,1.13102,867 +2020-07-13 00:30,1.13104,1.13115,1.13083,1.13106,1065 +2020-07-13 00:45,1.13106,1.13145,1.131,1.13142,1687 +2020-07-13 01:00,1.13142,1.13217,1.13139,1.13191,1819 +2020-07-13 01:15,1.1319,1.13204,1.13166,1.13194,2089 +2020-07-13 01:30,1.13196,1.13242,1.13172,1.13178,2046 +2020-07-13 01:45,1.13179,1.13211,1.13174,1.13194,1509 +2020-07-13 02:00,1.13193,1.13224,1.13184,1.1322,1031 +2020-07-13 02:15,1.13218,1.13241,1.13213,1.13234,1121 +2020-07-13 02:30,1.13235,1.13261,1.13235,1.13252,1337 +2020-07-13 02:45,1.13251,1.13266,1.13231,1.13243,1143 +2020-07-13 03:00,1.13244,1.1328,1.13236,1.13271,1124 +2020-07-13 03:15,1.13272,1.13303,1.13259,1.13292,1228 +2020-07-13 03:30,1.13293,1.133,1.13275,1.13282,1166 +2020-07-13 03:45,1.13281,1.13296,1.1326,1.13266,568 +2020-07-13 04:00,1.13266,1.13277,1.1326,1.1326,782 +2020-07-13 04:15,1.13263,1.13263,1.13241,1.13249,455 +2020-07-13 04:30,1.13248,1.13249,1.13208,1.13209,819 +2020-07-13 04:45,1.13211,1.13245,1.1321,1.13223,1123 +2020-07-13 05:00,1.13223,1.13299,1.13213,1.13295,1421 +2020-07-13 05:15,1.13295,1.13358,1.1328,1.13356,1346 +2020-07-13 05:30,1.13356,1.1336,1.1333,1.1333,1125 +2020-07-13 05:45,1.1333,1.13348,1.13287,1.13291,1434 +2020-07-13 06:00,1.1329,1.13324,1.13234,1.13239,2205 +2020-07-13 06:15,1.13238,1.1328,1.13235,1.13258,1671 +2020-07-13 06:30,1.13258,1.13344,1.13251,1.1333,2527 +2020-07-13 06:45,1.13331,1.13345,1.13292,1.13307,2033 +2020-07-13 07:00,1.13306,1.13325,1.13207,1.13256,4046 +2020-07-13 07:15,1.13256,1.1332,1.1314,1.13167,4519 +2020-07-13 07:30,1.13166,1.13221,1.13136,1.13182,3497 +2020-07-13 07:45,1.13182,1.13223,1.13171,1.13183,2529 +2020-07-13 08:00,1.13185,1.13189,1.131,1.13166,4648 +2020-07-13 08:15,1.13166,1.13178,1.1307,1.13075,3296 +2020-07-13 08:30,1.13076,1.13096,1.13042,1.1305,2720 +2020-07-13 08:45,1.13052,1.13102,1.13008,1.13085,2842 +2020-07-13 09:00,1.13087,1.13149,1.13085,1.13113,36664 +2020-07-13 09:15,1.13112,1.13122,1.13041,1.13119,2643 +2020-07-13 09:30,1.13118,1.13188,1.13108,1.13131,2397 +2020-07-13 09:45,1.13131,1.13203,1.13128,1.1319,2695 +2020-07-13 10:00,1.1319,1.13269,1.13189,1.13265,2650 +2020-07-13 10:15,1.13265,1.13305,1.13244,1.1329,2367 +2020-07-13 10:30,1.13289,1.13298,1.13229,1.13236,2056 +2020-07-13 10:45,1.13237,1.1335,1.13235,1.13296,2578 +2020-07-13 11:00,1.13295,1.13383,1.13276,1.13376,2726 +2020-07-13 11:15,1.13375,1.13375,1.13292,1.13323,2449 +2020-07-13 11:30,1.13323,1.13327,1.1326,1.13285,2061 +2020-07-13 11:45,1.13285,1.13353,1.13284,1.13342,2980 +2020-07-13 12:00,1.13343,1.13382,1.1328,1.13288,2998 +2020-07-13 12:15,1.13286,1.1331,1.1324,1.13281,3654 +2020-07-13 12:30,1.13282,1.13345,1.13255,1.13305,2499 +2020-07-13 12:45,1.13305,1.13335,1.13255,1.13255,2424 +2020-07-13 13:00,1.13256,1.13374,1.13252,1.13369,2738 +2020-07-13 13:15,1.13369,1.13425,1.13322,1.13412,2422 +2020-07-13 13:30,1.13411,1.13578,1.13411,1.13523,3633 +2020-07-13 13:45,1.13521,1.13571,1.13461,1.13531,4367 +2020-07-13 14:00,1.13532,1.13608,1.13521,1.13595,3696 +2020-07-13 14:15,1.13595,1.1367,1.1358,1.13625,3383 +2020-07-13 14:30,1.13624,1.13685,1.13585,1.13666,3327 +2020-07-13 14:45,1.13666,1.13701,1.1362,1.13675,4571 +2020-07-13 15:00,1.13675,1.13709,1.13623,1.13625,4376 +2020-07-13 15:15,1.13625,1.13671,1.13595,1.13619,3694 +2020-07-13 15:30,1.13619,1.13652,1.13557,1.13647,3554 +2020-07-13 15:45,1.13646,1.13676,1.13615,1.13641,2622 +2020-07-13 16:00,1.13641,1.13657,1.13574,1.13651,2237 +2020-07-13 16:15,1.13652,1.13748,1.13651,1.13728,2324 +2020-07-13 16:30,1.13727,1.13746,1.13692,1.13721,2063 +2020-07-13 16:45,1.13721,1.13745,1.13664,1.13674,2454 +2020-07-13 17:00,1.13674,1.13728,1.1365,1.13724,1808 +2020-07-13 17:15,1.13726,1.13746,1.13688,1.13697,2628 +2020-07-13 17:30,1.13698,1.13715,1.13664,1.13685,2049 +2020-07-13 17:45,1.13687,1.13698,1.13669,1.13695,1230 +2020-07-13 18:00,1.13696,1.13703,1.13595,1.1363,4828 +2020-07-13 18:15,1.13631,1.13652,1.13574,1.13574,3145 +2020-07-13 18:30,1.13573,1.13592,1.13512,1.13571,2462 +2020-07-13 18:45,1.1357,1.13593,1.13525,1.13526,2430 +2020-07-13 19:00,1.13526,1.13572,1.13466,1.13541,3845 +2020-07-13 19:15,1.1354,1.13552,1.13494,1.13496,3649 +2020-07-13 19:30,1.13496,1.13513,1.13428,1.13499,4261 +2020-07-13 19:45,1.13499,1.13504,1.13431,1.13497,5696 +2020-07-13 20:00,1.13498,1.13498,1.13434,1.13451,1423 +2020-07-13 20:15,1.13451,1.13488,1.13441,1.1348,574 +2020-07-13 20:30,1.13479,1.13479,1.13426,1.13436,565 +2020-07-13 20:45,1.13437,1.13452,1.13414,1.13435,676 +2020-07-13 21:00,1.13431,1.13444,1.13417,1.13432,691 +2020-07-13 21:15,1.13431,1.13453,1.13418,1.13441,4170 +2020-07-13 21:30,1.13441,1.13479,1.13424,1.13466,1158 +2020-07-13 21:45,1.13466,1.13486,1.13433,1.13445,2385 +2020-07-13 22:00,1.13447,1.13501,1.13442,1.13467,704 +2020-07-13 22:15,1.13466,1.13481,1.13462,1.13477,479 +2020-07-13 22:30,1.13477,1.13477,1.13445,1.13447,581 +2020-07-13 22:45,1.13448,1.13463,1.13446,1.13447,628 +2020-07-13 23:00,1.13448,1.13464,1.13446,1.13457,603 +2020-07-13 23:15,1.13457,1.13472,1.1345,1.13467,521 +2020-07-13 23:30,1.13467,1.13498,1.13465,1.13493,645 +2020-07-13 23:45,1.13494,1.13502,1.13443,1.13447,667 +2020-07-14 00:00,1.13447,1.13481,1.13439,1.13459,1742 +2020-07-14 00:15,1.13456,1.13458,1.13399,1.13423,1058 +2020-07-14 00:30,1.13422,1.13452,1.13409,1.13447,989 +2020-07-14 00:45,1.13446,1.13482,1.13434,1.13449,918 +2020-07-14 01:00,1.1345,1.13485,1.13418,1.1344,1640 +2020-07-14 01:15,1.13441,1.13463,1.13375,1.1338,1813 +2020-07-14 01:30,1.13381,1.13442,1.13373,1.1343,1427 +2020-07-14 01:45,1.13431,1.1346,1.13414,1.13434,3128 +2020-07-14 02:00,1.13431,1.13464,1.13406,1.13416,1675 +2020-07-14 02:15,1.13415,1.13418,1.13388,1.134,1178 +2020-07-14 02:30,1.13399,1.13399,1.13352,1.13372,1428 +2020-07-14 02:45,1.13371,1.13402,1.13371,1.13387,1104 +2020-07-14 03:00,1.13387,1.13418,1.13387,1.13417,1945 +2020-07-14 03:15,1.13417,1.13418,1.13386,1.13405,928 +2020-07-14 03:30,1.13404,1.13415,1.13384,1.13414,1046 +2020-07-14 03:45,1.13414,1.13424,1.13404,1.1342,1300 +2020-07-14 04:00,1.1342,1.13427,1.13408,1.13409,602 +2020-07-14 04:15,1.1341,1.13433,1.13402,1.13429,679 +2020-07-14 04:30,1.13428,1.13428,1.13404,1.1342,584 +2020-07-14 04:45,1.13421,1.13453,1.13421,1.13448,1180 +2020-07-14 05:00,1.13448,1.13464,1.13423,1.13423,1080 +2020-07-14 05:15,1.13422,1.1344,1.13419,1.13436,974 +2020-07-14 05:30,1.13436,1.13444,1.1342,1.1342,634 +2020-07-14 05:45,1.13421,1.13421,1.13377,1.13382,979 +2020-07-14 06:00,1.13382,1.13469,1.13369,1.13465,2118 +2020-07-14 06:15,1.13466,1.13488,1.13405,1.13449,2299 +2020-07-14 06:30,1.13452,1.13469,1.13432,1.13445,1919 +2020-07-14 06:45,1.13449,1.13463,1.13415,1.13428,1981 +2020-07-14 07:00,1.13431,1.13442,1.13359,1.13404,2842 +2020-07-14 07:15,1.13403,1.13421,1.13311,1.13333,3464 +2020-07-14 07:30,1.13332,1.13336,1.13251,1.13288,3845 +2020-07-14 07:45,1.13291,1.1334,1.13279,1.1331,6535 +2020-07-14 08:00,1.1331,1.13401,1.13304,1.13354,5159 +2020-07-14 08:15,1.13353,1.13396,1.13331,1.13375,3135 +2020-07-14 08:30,1.13377,1.13496,1.13366,1.1349,5055 +2020-07-14 08:45,1.1349,1.13585,1.1349,1.13505,3602 +2020-07-14 09:00,1.13505,1.13555,1.13473,1.13546,4340 +2020-07-14 09:15,1.13547,1.13588,1.13542,1.13577,3772 +2020-07-14 09:30,1.13578,1.13642,1.13571,1.13607,4819 +2020-07-14 09:45,1.13608,1.1366,1.13572,1.13604,3131 +2020-07-14 10:00,1.13603,1.13626,1.13559,1.13572,5887 +2020-07-14 10:15,1.13573,1.13596,1.13519,1.13571,6735 +2020-07-14 10:30,1.13572,1.13677,1.13544,1.1367,2989 +2020-07-14 10:45,1.1367,1.13734,1.13638,1.13705,2947 +2020-07-14 11:00,1.13704,1.13724,1.13646,1.13671,3096 +2020-07-14 11:15,1.1367,1.13769,1.13664,1.13759,2580 +2020-07-14 11:30,1.13759,1.13812,1.13749,1.13766,3159 +2020-07-14 11:45,1.13768,1.13804,1.13737,1.13777,3205 +2020-07-14 12:00,1.13776,1.13803,1.13715,1.13746,3101 +2020-07-14 12:15,1.13747,1.13805,1.1373,1.13743,2262 +2020-07-14 12:30,1.13743,1.13776,1.13632,1.13656,15030 +2020-07-14 12:45,1.13655,1.13768,1.13646,1.13717,4516 +2020-07-14 13:00,1.13717,1.13788,1.13671,1.13678,5742 +2020-07-14 13:15,1.13677,1.13713,1.13642,1.13663,4706 +2020-07-14 13:30,1.13664,1.13856,1.13612,1.13846,8511 +2020-07-14 13:45,1.13847,1.13935,1.13801,1.13896,21950 +2020-07-14 14:00,1.13895,1.13958,1.13849,1.13901,56204 +2020-07-14 14:15,1.13901,1.14018,1.13901,1.14006,6959 +2020-07-14 14:30,1.14007,1.14056,1.13937,1.13951,6501 +2020-07-14 14:45,1.13951,1.14021,1.13931,1.13991,6658 +2020-07-14 15:00,1.13991,1.14038,1.13929,1.13976,11806 +2020-07-14 15:15,1.13979,1.14013,1.1393,1.13945,5579 +2020-07-14 15:30,1.13944,1.14042,1.13939,1.14033,4065 +2020-07-14 15:45,1.14032,1.14068,1.13998,1.14056,3527 +2020-07-14 16:00,1.14055,1.14061,1.14023,1.14036,2385 +2020-07-14 16:15,1.14035,1.14068,1.14011,1.14019,2683 +2020-07-14 16:30,1.14019,1.14086,1.14018,1.14066,2700 +2020-07-14 16:45,1.14067,1.14086,1.14016,1.14031,2638 +2020-07-14 17:00,1.14031,1.14054,1.13997,1.14018,2880 +2020-07-14 17:15,1.1402,1.14023,1.13977,1.1398,2277 +2020-07-14 17:30,1.13981,1.13994,1.13969,1.13972,1509 +2020-07-14 17:45,1.13973,1.13999,1.13923,1.13969,2640 +2020-07-14 18:00,1.1397,1.14018,1.13961,1.13994,8383 +2020-07-14 18:15,1.13996,1.14036,1.13974,1.13999,2424 +2020-07-14 18:30,1.14003,1.14015,1.1395,1.13964,2536 +2020-07-14 18:45,1.13964,1.13985,1.13933,1.13933,3963 +2020-07-14 19:00,1.13934,1.13937,1.13868,1.139,6709 +2020-07-14 19:15,1.139,1.13942,1.13885,1.13928,2069 +2020-07-14 19:30,1.13929,1.1394,1.13903,1.13926,1696 +2020-07-14 19:45,1.13926,1.13948,1.13888,1.13888,7932 +2020-07-14 20:00,1.13889,1.13924,1.13886,1.13917,1045 +2020-07-14 20:15,1.13918,1.13929,1.13911,1.13918,436 +2020-07-14 20:30,1.13917,1.1399,1.13916,1.13987,652 +2020-07-14 20:45,1.13986,1.1401,1.13975,1.13993,439 +2020-07-14 21:00,1.1399,1.14018,1.13955,1.13957,242 +2020-07-14 21:15,1.13951,1.13978,1.13936,1.1396,1889 +2020-07-14 21:30,1.13958,1.14018,1.13943,1.13991,1301 +2020-07-14 21:45,1.13991,1.14022,1.13984,1.1402,1671 +2020-07-14 22:00,1.14021,1.14077,1.14014,1.14069,1083 +2020-07-14 22:15,1.14072,1.14107,1.14061,1.14104,694 +2020-07-14 22:30,1.14105,1.1411,1.14076,1.14108,342 +2020-07-14 22:45,1.14106,1.14123,1.14087,1.14087,508 +2020-07-14 23:00,1.14088,1.1409,1.14073,1.14085,484 +2020-07-14 23:15,1.14086,1.1411,1.14084,1.14095,651 +2020-07-14 23:30,1.14097,1.14101,1.14065,1.14069,731 +2020-07-14 23:45,1.14068,1.14103,1.14048,1.14099,861 +2020-07-15 00:00,1.141,1.1423,1.14091,1.14179,2168 +2020-07-15 00:15,1.1418,1.14194,1.14096,1.14128,1885 +2020-07-15 00:30,1.1413,1.14147,1.14099,1.14145,1442 +2020-07-15 00:45,1.14144,1.1415,1.14096,1.14129,1678 +2020-07-15 01:00,1.14131,1.14135,1.14095,1.1413,1316 +2020-07-15 01:15,1.14129,1.14191,1.14106,1.14185,1676 +2020-07-15 01:30,1.14185,1.1421,1.14104,1.1411,2426 +2020-07-15 01:45,1.14109,1.14137,1.14094,1.14119,1720 +2020-07-15 02:00,1.14118,1.14118,1.14061,1.14082,1445 +2020-07-15 02:15,1.14083,1.14091,1.14054,1.1409,1516 +2020-07-15 02:30,1.14087,1.14097,1.14011,1.14033,1198 +2020-07-15 02:45,1.14032,1.14039,1.14,1.14026,2099 +2020-07-15 03:00,1.14026,1.14044,1.14001,1.14012,1667 +2020-07-15 03:15,1.14013,1.14023,1.13974,1.13979,1654 +2020-07-15 03:30,1.1398,1.13988,1.13952,1.13956,1177 +2020-07-15 03:45,1.13956,1.13978,1.13953,1.13976,1150 +2020-07-15 04:00,1.13976,1.1398,1.13947,1.13948,919 +2020-07-15 04:15,1.13948,1.13989,1.13945,1.13982,1025 +2020-07-15 04:30,1.1398,1.14013,1.1396,1.13961,1254 +2020-07-15 04:45,1.1396,1.13982,1.13939,1.1395,1167 +2020-07-15 05:00,1.13951,1.13955,1.1391,1.13946,1304 +2020-07-15 05:15,1.13945,1.13972,1.1394,1.13946,924 +2020-07-15 05:30,1.13948,1.13974,1.13937,1.13972,940 +2020-07-15 05:45,1.13974,1.13999,1.13971,1.13994,1418 +2020-07-15 06:00,1.13994,1.1404,1.13956,1.14027,3712 +2020-07-15 06:15,1.14026,1.14094,1.14016,1.14068,2415 +2020-07-15 06:30,1.14067,1.14133,1.14066,1.14123,1656 +2020-07-15 06:45,1.14124,1.14138,1.14041,1.14054,2166 +2020-07-15 07:00,1.14055,1.14131,1.13986,1.13989,4656 +2020-07-15 07:15,1.1399,1.14079,1.13985,1.14077,3673 +2020-07-15 07:30,1.14076,1.14349,1.14076,1.14332,5171 +2020-07-15 07:45,1.14332,1.14375,1.14289,1.14325,5251 +2020-07-15 08:00,1.14328,1.14442,1.14328,1.1441,3673 +2020-07-15 08:15,1.1441,1.14445,1.14365,1.14427,3849 +2020-07-15 08:30,1.14427,1.14441,1.14332,1.14365,4199 +2020-07-15 08:45,1.14365,1.14388,1.14304,1.14369,4229 +2020-07-15 09:00,1.14368,1.14373,1.14294,1.143,2996 +2020-07-15 09:15,1.143,1.14325,1.14265,1.14297,3116 +2020-07-15 09:30,1.14296,1.14334,1.14284,1.14286,3544 +2020-07-15 09:45,1.14287,1.1431,1.14255,1.14268,2446 +2020-07-15 10:00,1.14268,1.14374,1.14263,1.14329,3879 +2020-07-15 10:15,1.14331,1.14341,1.14279,1.14319,3021 +2020-07-15 10:30,1.14321,1.14357,1.14304,1.14354,6541 +2020-07-15 10:45,1.14353,1.14476,1.14341,1.14409,3748 +2020-07-15 11:00,1.1441,1.14462,1.14367,1.14376,4290 +2020-07-15 11:15,1.14376,1.14406,1.14335,1.14402,3536 +2020-07-15 11:30,1.14403,1.14438,1.14398,1.14422,3225 +2020-07-15 11:45,1.14421,1.14446,1.14379,1.1438,24050 +2020-07-15 12:00,1.14384,1.14452,1.1437,1.14437,3690 +2020-07-15 12:15,1.14439,1.14456,1.14409,1.14419,2557 +2020-07-15 12:30,1.14418,1.14444,1.14404,1.14405,2513 +2020-07-15 12:45,1.14404,1.14409,1.14348,1.1435,3127 +2020-07-15 13:00,1.14351,1.14431,1.14351,1.14398,9118 +2020-07-15 13:15,1.14398,1.14449,1.14378,1.14434,3129 +2020-07-15 13:30,1.14435,1.1452,1.14336,1.1438,10363 +2020-07-15 13:45,1.1438,1.14386,1.14259,1.14274,6495 +2020-07-15 14:00,1.14274,1.14283,1.14212,1.14221,15985 +2020-07-15 14:15,1.14222,1.14242,1.14102,1.14219,8014 +2020-07-15 14:30,1.1422,1.14277,1.14188,1.14246,8751 +2020-07-15 14:45,1.14247,1.14274,1.14136,1.14176,19001 +2020-07-15 15:00,1.14175,1.14241,1.14151,1.14232,5026 +2020-07-15 15:15,1.14231,1.14241,1.14141,1.14207,4212 +2020-07-15 15:30,1.14208,1.14235,1.14097,1.14129,4065 +2020-07-15 15:45,1.1413,1.14137,1.14056,1.14056,3969 +2020-07-15 16:00,1.14055,1.14087,1.14024,1.14087,2981 +2020-07-15 16:15,1.14087,1.14099,1.1404,1.14065,3051 +2020-07-15 16:30,1.14065,1.14065,1.14019,1.14027,2765 +2020-07-15 16:45,1.14028,1.14073,1.14014,1.14072,2603 +2020-07-15 17:00,1.14071,1.14085,1.14032,1.14061,8298 +2020-07-15 17:15,1.14062,1.14093,1.14051,1.14062,2650 +2020-07-15 17:30,1.14062,1.14101,1.14054,1.14088,1177 +2020-07-15 17:45,1.14089,1.14096,1.14033,1.14056,1963 +2020-07-15 18:00,1.14054,1.14073,1.14034,1.14057,2380 +2020-07-15 18:15,1.14057,1.14068,1.14035,1.14063,2560 +2020-07-15 18:30,1.14063,1.14089,1.14052,1.14073,1699 +2020-07-15 18:45,1.14074,1.14096,1.14057,1.14057,1857 +2020-07-15 19:00,1.14057,1.1407,1.14029,1.14031,3833 +2020-07-15 19:15,1.14032,1.14077,1.14028,1.14073,1820 +2020-07-15 19:30,1.14072,1.1409,1.14064,1.14081,1289 +2020-07-15 19:45,1.1408,1.14117,1.14076,1.14092,1147 +2020-07-15 20:00,1.14093,1.14104,1.14078,1.14102,664 +2020-07-15 20:15,1.14103,1.14129,1.14102,1.1412,471 +2020-07-15 20:30,1.14119,1.14119,1.14095,1.14098,418 +2020-07-15 20:45,1.14098,1.14123,1.14096,1.14113,271 +2020-07-15 21:00,1.14113,1.14113,1.14086,1.14101,348 +2020-07-15 21:15,1.14094,1.14113,1.14092,1.14108,117 +2020-07-15 21:30,1.1411,1.14114,1.14082,1.141,271 +2020-07-15 21:45,1.14099,1.14121,1.14096,1.14121,186 +2020-07-15 22:00,1.14121,1.14138,1.14114,1.14136,678 +2020-07-15 22:15,1.14136,1.14142,1.14125,1.14126,472 +2020-07-15 22:30,1.14125,1.14136,1.14116,1.14122,351 +2020-07-15 22:45,1.14124,1.14129,1.14114,1.14117,274 +2020-07-15 23:00,1.14118,1.1416,1.14118,1.14156,816 +2020-07-15 23:15,1.14153,1.14158,1.14147,1.14151,382 +2020-07-15 23:30,1.14152,1.14174,1.14147,1.14173,600 +2020-07-15 23:45,1.14172,1.1418,1.14167,1.14168,557 +2020-07-16 00:00,1.14168,1.14171,1.14093,1.14139,1830 +2020-07-16 00:15,1.1414,1.14171,1.14128,1.14167,892 +2020-07-16 00:30,1.1417,1.14179,1.14139,1.14178,1338 +2020-07-16 00:45,1.14179,1.14185,1.1414,1.14146,3196 +2020-07-16 01:00,1.14145,1.14148,1.14099,1.14141,4083 +2020-07-16 01:15,1.1414,1.14156,1.14117,1.14132,1617 +2020-07-16 01:30,1.14132,1.14166,1.14092,1.14112,2239 +2020-07-16 01:45,1.14111,1.14165,1.14109,1.14138,1822 +2020-07-16 02:00,1.14139,1.14165,1.14102,1.14104,1665 +2020-07-16 02:15,1.14103,1.14112,1.14025,1.14034,1419 +2020-07-16 02:30,1.14035,1.14047,1.14002,1.14015,2141 +2020-07-16 02:45,1.14016,1.14042,1.14006,1.14031,1375 +2020-07-16 03:00,1.14031,1.14058,1.14023,1.14043,1092 +2020-07-16 03:15,1.14043,1.14056,1.1402,1.14051,1484 +2020-07-16 03:30,1.14051,1.14072,1.14047,1.14063,1021 +2020-07-16 03:45,1.14061,1.14066,1.14038,1.14052,1158 +2020-07-16 04:00,1.14051,1.14055,1.14029,1.14035,992 +2020-07-16 04:15,1.14035,1.14055,1.14031,1.14045,736 +2020-07-16 04:30,1.14045,1.14058,1.14031,1.14058,791 +2020-07-16 04:45,1.14056,1.14072,1.14055,1.14059,825 +2020-07-16 05:00,1.1406,1.14068,1.14038,1.14044,1296 +2020-07-16 05:15,1.14044,1.1405,1.13979,1.13997,1157 +2020-07-16 05:30,1.13997,1.14021,1.13972,1.14019,1665 +2020-07-16 05:45,1.1402,1.14035,1.14001,1.1403,1160 +2020-07-16 06:00,1.1403,1.14071,1.13988,1.13993,2215 +2020-07-16 06:15,1.1399,1.13994,1.13928,1.13955,2416 +2020-07-16 06:30,1.13954,1.13971,1.13935,1.13955,2710 +2020-07-16 06:45,1.13955,1.1403,1.1395,1.13977,2922 +2020-07-16 07:00,1.13979,1.14046,1.13965,1.1401,3745 +2020-07-16 07:15,1.1401,1.14045,1.13971,1.1403,3892 +2020-07-16 07:30,1.14029,1.14107,1.13989,1.14098,4000 +2020-07-16 07:45,1.14098,1.14106,1.1405,1.14077,4067 +2020-07-16 08:00,1.14074,1.14154,1.14056,1.14139,4087 +2020-07-16 08:15,1.14139,1.1414,1.14055,1.14059,3759 +2020-07-16 08:30,1.14058,1.14063,1.13862,1.13878,10088 +2020-07-16 08:45,1.13877,1.13951,1.13856,1.13928,7404 +2020-07-16 09:00,1.13929,1.13957,1.13919,1.13953,3944 +2020-07-16 09:15,1.13953,1.13998,1.13941,1.13946,2337 +2020-07-16 09:30,1.13947,1.13978,1.13886,1.13887,3237 +2020-07-16 09:45,1.13887,1.13932,1.13808,1.13808,4347 +2020-07-16 10:00,1.13808,1.13877,1.13781,1.13859,3900 +2020-07-16 10:15,1.13859,1.13891,1.13835,1.13835,2594 +2020-07-16 10:30,1.13835,1.13931,1.13829,1.1393,3223 +2020-07-16 10:45,1.13929,1.13951,1.13912,1.13949,2569 +2020-07-16 11:00,1.13949,1.13997,1.13941,1.13995,2692 +2020-07-16 11:15,1.13994,1.14053,1.13982,1.14044,2858 +2020-07-16 11:30,1.14043,1.14098,1.13971,1.13974,2910 +2020-07-16 11:45,1.13974,1.14172,1.13972,1.1413,5224 +2020-07-16 12:00,1.1413,1.14147,1.14094,1.14134,3884 +2020-07-16 12:15,1.14135,1.14171,1.14106,1.14133,2996 +2020-07-16 12:30,1.14134,1.14246,1.14055,1.14173,7804 +2020-07-16 12:45,1.14173,1.14215,1.14072,1.14108,4615 +2020-07-16 13:00,1.14105,1.14173,1.14023,1.14092,5270 +2020-07-16 13:15,1.14092,1.14144,1.13995,1.14125,5176 +2020-07-16 13:30,1.14124,1.14254,1.14091,1.1425,7442 +2020-07-16 13:45,1.14251,1.14343,1.14249,1.14288,4951 +2020-07-16 14:00,1.14292,1.14321,1.14253,1.14286,5185 +2020-07-16 14:15,1.14286,1.14404,1.14242,1.14375,4990 +2020-07-16 14:30,1.14376,1.14417,1.14342,1.14349,10712 +2020-07-16 14:45,1.14352,1.14385,1.143,1.14323,5670 +2020-07-16 15:00,1.14324,1.14336,1.14214,1.14252,3641 +2020-07-16 15:15,1.14251,1.14307,1.14243,1.14291,3109 +2020-07-16 15:30,1.14295,1.14326,1.14269,1.14314,2924 +2020-07-16 15:45,1.14314,1.14342,1.14303,1.1432,2513 +2020-07-16 16:00,1.14321,1.14357,1.14282,1.14305,2244 +2020-07-16 16:15,1.14305,1.14309,1.14191,1.14196,2625 +2020-07-16 16:30,1.14197,1.14208,1.14141,1.14167,1911 +2020-07-16 16:45,1.14168,1.14187,1.14085,1.14091,5124 +2020-07-16 17:00,1.14092,1.14101,1.13972,1.13984,3385 +2020-07-16 17:15,1.13982,1.13985,1.13884,1.13914,5095 +2020-07-16 17:30,1.13914,1.13915,1.1377,1.13806,5940 +2020-07-16 17:45,1.13804,1.1387,1.13792,1.13827,3002 +2020-07-16 18:00,1.13827,1.13829,1.13751,1.13819,2743 +2020-07-16 18:15,1.13818,1.13836,1.13794,1.13805,2838 +2020-07-16 18:30,1.13806,1.13831,1.13794,1.13815,2146 +2020-07-16 18:45,1.13814,1.13821,1.13762,1.13788,18042 +2020-07-16 19:00,1.13788,1.13796,1.13704,1.13734,8462 +2020-07-16 19:15,1.13735,1.13837,1.13735,1.13836,2649 +2020-07-16 19:30,1.13836,1.13837,1.13772,1.13789,1964 +2020-07-16 19:45,1.13787,1.13822,1.13766,1.1382,2698 +2020-07-16 20:00,1.1382,1.13826,1.13787,1.13804,919 +2020-07-16 20:15,1.13805,1.13834,1.13801,1.13832,408 +2020-07-16 20:30,1.13832,1.13844,1.13824,1.1384,182 +2020-07-16 20:45,1.13841,1.1385,1.13818,1.13834,299 +2020-07-16 21:00,1.13832,1.13845,1.13801,1.13803,110 +2020-07-16 21:15,1.13801,1.13809,1.13762,1.13786,4184 +2020-07-16 21:30,1.1379,1.13801,1.13756,1.13767,1136 +2020-07-16 21:45,1.13766,1.13845,1.13758,1.13818,646 +2020-07-16 22:00,1.13815,1.13837,1.13799,1.1383,1968 +2020-07-16 22:15,1.13829,1.13839,1.13816,1.1382,723 +2020-07-16 22:30,1.13819,1.13843,1.13819,1.13841,370 +2020-07-16 22:45,1.1384,1.13846,1.13836,1.13846,373 +2020-07-16 23:00,1.13847,1.13855,1.13834,1.13852,749 +2020-07-16 23:15,1.13852,1.13857,1.13841,1.13853,792 +2020-07-16 23:30,1.13853,1.13871,1.1385,1.13869,402 +2020-07-16 23:45,1.13869,1.13887,1.13868,1.13878,505 +2020-07-17 00:00,1.13877,1.13931,1.13844,1.13926,1368 +2020-07-17 00:15,1.13926,1.13926,1.13882,1.13905,1021 +2020-07-17 00:30,1.13905,1.13916,1.13894,1.1391,1786 +2020-07-17 00:45,1.13909,1.13916,1.13824,1.13846,2278 +2020-07-17 01:00,1.13846,1.13851,1.13795,1.13818,2284 +2020-07-17 01:15,1.13818,1.13822,1.13775,1.13801,1921 +2020-07-17 01:30,1.13803,1.13822,1.13779,1.138,2959 +2020-07-17 01:45,1.13801,1.13818,1.13774,1.1381,2000 +2020-07-17 02:00,1.13811,1.13837,1.13797,1.13837,840 +2020-07-17 02:15,1.13836,1.13866,1.13821,1.1385,1414 +2020-07-17 02:30,1.13851,1.13867,1.13837,1.13852,1433 +2020-07-17 02:45,1.13853,1.13864,1.13841,1.1385,1417 +2020-07-17 03:00,1.1385,1.13858,1.13837,1.13846,1463 +2020-07-17 03:15,1.13844,1.13868,1.13839,1.13862,866 +2020-07-17 03:30,1.13863,1.13897,1.13862,1.13894,938 +2020-07-17 03:45,1.13894,1.13924,1.13891,1.13917,1191 +2020-07-17 04:00,1.13916,1.13935,1.13866,1.13872,912 +2020-07-17 04:15,1.13874,1.13893,1.13869,1.13881,406 +2020-07-17 04:30,1.1388,1.13887,1.1386,1.13867,593 +2020-07-17 04:45,1.13866,1.13883,1.13855,1.13872,632 +2020-07-17 05:00,1.13872,1.13875,1.1385,1.13852,1154 +2020-07-17 05:15,1.13852,1.13856,1.13825,1.13835,1340 +2020-07-17 05:30,1.13836,1.13874,1.13824,1.13868,872 +2020-07-17 05:45,1.13869,1.13872,1.13781,1.13797,1602 +2020-07-17 06:00,1.13796,1.13836,1.13779,1.13833,1552 +2020-07-17 06:15,1.13831,1.13852,1.13801,1.13843,1600 +2020-07-17 06:30,1.13844,1.13854,1.13803,1.13828,2464 +2020-07-17 06:45,1.13826,1.13851,1.13812,1.13821,1621 +2020-07-17 07:00,1.13821,1.13901,1.13796,1.13894,2874 +2020-07-17 07:15,1.13894,1.139,1.13864,1.1388,2860 +2020-07-17 07:30,1.13879,1.1396,1.13879,1.13921,1920 +2020-07-17 07:45,1.13921,1.13945,1.13824,1.13903,4446 +2020-07-17 08:00,1.13904,1.13971,1.13878,1.13961,2598 +2020-07-17 08:15,1.13961,1.13992,1.13961,1.13987,2403 +2020-07-17 08:30,1.13987,1.14083,1.13982,1.14081,2589 +2020-07-17 08:45,1.14081,1.14175,1.14068,1.14164,2649 +2020-07-17 09:00,1.14162,1.14178,1.14124,1.14136,2238 +2020-07-17 09:15,1.14135,1.14194,1.14117,1.14175,2400 +2020-07-17 09:30,1.14175,1.14237,1.14171,1.1418,3082 +2020-07-17 09:45,1.1418,1.14181,1.14116,1.14131,3289 +2020-07-17 10:00,1.14129,1.1418,1.14094,1.14138,2387 +2020-07-17 10:15,1.14138,1.14156,1.14102,1.14152,1889 +2020-07-17 10:30,1.14153,1.14244,1.14151,1.14215,2423 +2020-07-17 10:45,1.14216,1.14286,1.14199,1.14283,1991 +2020-07-17 11:00,1.14284,1.14302,1.14231,1.14236,4955 +2020-07-17 11:15,1.14241,1.14274,1.14233,1.14252,1665 +2020-07-17 11:30,1.14252,1.14275,1.14211,1.14226,2217 +2020-07-17 11:45,1.14225,1.14235,1.14205,1.14216,2024 +2020-07-17 12:00,1.14219,1.14277,1.14196,1.14272,1880 +2020-07-17 12:15,1.14276,1.14298,1.14215,1.14235,2024 +2020-07-17 12:30,1.14237,1.14265,1.14205,1.14206,2104 +2020-07-17 12:45,1.14207,1.14222,1.14162,1.14189,2473 +2020-07-17 13:00,1.14191,1.14268,1.14161,1.14223,2664 +2020-07-17 13:15,1.14223,1.14265,1.1419,1.1425,2977 +2020-07-17 13:30,1.1425,1.14301,1.1423,1.1429,4618 +2020-07-17 13:45,1.1429,1.14343,1.1427,1.14306,3445 +2020-07-17 14:00,1.14306,1.14398,1.14301,1.14366,5096 +2020-07-17 14:15,1.14369,1.14371,1.1431,1.14341,3728 +2020-07-17 14:30,1.14342,1.14392,1.14334,1.14385,3341 +2020-07-17 14:45,1.14383,1.14383,1.142,1.14216,4949 +2020-07-17 15:00,1.14216,1.14327,1.14206,1.14306,2756 +2020-07-17 15:15,1.14308,1.1434,1.1426,1.14333,2064 +2020-07-17 15:30,1.14337,1.14339,1.14261,1.14322,2668 +2020-07-17 15:45,1.14321,1.14377,1.14304,1.14369,2102 +2020-07-17 16:00,1.14369,1.14385,1.14339,1.14341,2039 +2020-07-17 16:15,1.14341,1.14367,1.14307,1.14316,1622 +2020-07-17 16:30,1.14317,1.14385,1.14297,1.14378,1471 +2020-07-17 16:45,1.14379,1.14425,1.14352,1.14353,2344 +2020-07-17 17:00,1.14353,1.14421,1.14353,1.14407,1292 +2020-07-17 17:15,1.14406,1.1441,1.14361,1.14394,1685 +2020-07-17 17:30,1.14395,1.14405,1.14357,1.14373,1163 +2020-07-17 17:45,1.14375,1.1441,1.14366,1.14374,1516 +2020-07-17 18:00,1.14373,1.14391,1.14353,1.14379,1312 +2020-07-17 18:15,1.14379,1.14401,1.14375,1.14391,1282 +2020-07-17 18:30,1.1439,1.14436,1.14375,1.14428,1046 +2020-07-17 18:45,1.14428,1.14433,1.14367,1.14368,1030 +2020-07-17 19:00,1.14367,1.14399,1.14342,1.14392,1209 +2020-07-17 19:15,1.14394,1.14409,1.14369,1.14372,891 +2020-07-17 19:30,1.14373,1.14417,1.14358,1.14368,2940 +2020-07-17 19:45,1.14367,1.14398,1.1434,1.14396,1263 +2020-07-17 20:00,1.14396,1.14397,1.14349,1.14354,707 +2020-07-17 20:15,1.14355,1.14365,1.14338,1.14347,262 +2020-07-17 20:30,1.14347,1.1437,1.14339,1.14369,465 +2020-07-17 20:45,1.14369,1.14377,1.14227,1.14269,1741 +2020-07-19 21:00,1.14084,1.14258,1.14084,1.14189,193 +2020-07-19 21:15,1.14195,1.14225,1.14165,1.14187,154 +2020-07-19 21:30,1.14187,1.14221,1.14187,1.14197,65 +2020-07-19 21:45,1.14197,1.14206,1.14165,1.14183,79 +2020-07-19 22:00,1.14195,1.14271,1.14195,1.14252,1058 +2020-07-19 22:15,1.14256,1.1443,1.14256,1.14425,1481 +2020-07-19 22:30,1.14425,1.14429,1.1433,1.14364,1226 +2020-07-19 22:45,1.14364,1.14395,1.1435,1.14354,791 +2020-07-19 23:00,1.14355,1.14392,1.14353,1.14377,569 +2020-07-19 23:15,1.14376,1.14406,1.14373,1.14397,688 +2020-07-19 23:30,1.14398,1.14438,1.14378,1.14427,783 +2020-07-19 23:45,1.14428,1.14456,1.14421,1.14421,599 +2020-07-20 00:00,1.14421,1.14421,1.14321,1.14342,1214 +2020-07-20 00:15,1.14342,1.14368,1.14311,1.14348,683 +2020-07-20 00:30,1.14348,1.14375,1.14298,1.14305,1008 +2020-07-20 00:45,1.14303,1.14304,1.14179,1.14224,2598 +2020-07-20 01:00,1.14224,1.14227,1.14126,1.1414,2535 +2020-07-20 01:15,1.14138,1.1419,1.14131,1.14186,1829 +2020-07-20 01:30,1.14186,1.14188,1.14134,1.14176,1593 +2020-07-20 01:45,1.14174,1.14177,1.14131,1.14166,1600 +2020-07-20 02:00,1.14167,1.14198,1.14136,1.14188,1732 +2020-07-20 02:15,1.14189,1.14211,1.14173,1.14173,1456 +2020-07-20 02:30,1.14172,1.14223,1.14164,1.14222,1206 +2020-07-20 02:45,1.14222,1.14226,1.14167,1.14177,1079 +2020-07-20 03:00,1.14178,1.1419,1.14146,1.14168,1236 +2020-07-20 03:15,1.14167,1.14183,1.14161,1.14167,1050 +2020-07-20 03:30,1.14165,1.14226,1.14153,1.14219,1317 +2020-07-20 03:45,1.14219,1.14252,1.14145,1.14184,1679 +2020-07-20 04:00,1.14187,1.14196,1.14161,1.14183,933 +2020-07-20 04:15,1.14182,1.14309,1.14182,1.1426,1778 +2020-07-20 04:30,1.1426,1.14314,1.14247,1.143,1445 +2020-07-20 04:45,1.143,1.14423,1.14268,1.14423,1377 +2020-07-20 05:00,1.14425,1.14462,1.14358,1.14392,2527 +2020-07-20 05:15,1.14396,1.14444,1.14393,1.14418,1427 +2020-07-20 05:30,1.1442,1.14558,1.1442,1.14527,2656 +2020-07-20 05:45,1.14528,1.1453,1.14446,1.14523,3038 +2020-07-20 06:00,1.14525,1.14669,1.14501,1.14634,3125 +2020-07-20 06:15,1.14632,1.14653,1.14583,1.14621,2447 +2020-07-20 06:30,1.14621,1.14663,1.14594,1.14634,2113 +2020-07-20 06:45,1.14634,1.14642,1.1456,1.14577,3232 +2020-07-20 07:00,1.14578,1.14578,1.14409,1.14454,4966 +2020-07-20 07:15,1.14453,1.14523,1.14416,1.14466,3230 +2020-07-20 07:30,1.14465,1.14506,1.14414,1.14505,4157 +2020-07-20 07:45,1.14506,1.14566,1.14461,1.14556,3951 +2020-07-20 08:00,1.14557,1.14576,1.1443,1.14446,3757 +2020-07-20 08:15,1.14446,1.14556,1.14444,1.14556,2851 +2020-07-20 08:30,1.14557,1.14677,1.14557,1.14661,3972 +2020-07-20 08:45,1.14661,1.14663,1.14562,1.14575,3591 +2020-07-20 09:00,1.14575,1.14601,1.1451,1.14585,3694 +2020-07-20 09:15,1.14583,1.14586,1.14526,1.14559,3222 +2020-07-20 09:30,1.14561,1.14583,1.14521,1.14563,3405 +2020-07-20 09:45,1.14564,1.14571,1.1452,1.14553,3157 +2020-07-20 10:00,1.14553,1.1457,1.14511,1.14536,2881 +2020-07-20 10:15,1.14536,1.14569,1.14479,1.14546,3352 +2020-07-20 10:30,1.14546,1.1461,1.14546,1.1459,3243 +2020-07-20 10:45,1.14591,1.14592,1.14469,1.14522,3901 +2020-07-20 11:00,1.14522,1.14642,1.14522,1.146,3987 +2020-07-20 11:15,1.14601,1.14625,1.14542,1.14556,3668 +2020-07-20 11:30,1.14554,1.14629,1.14529,1.14627,3073 +2020-07-20 11:45,1.14626,1.14634,1.14448,1.14459,14386 +2020-07-20 12:00,1.1446,1.14499,1.14423,1.14481,4199 +2020-07-20 12:15,1.14482,1.14484,1.14404,1.14459,3461 +2020-07-20 12:30,1.1446,1.14496,1.14403,1.14413,6709 +2020-07-20 12:45,1.14417,1.14417,1.14157,1.14183,8246 +2020-07-20 13:00,1.14182,1.14287,1.14182,1.1424,4645 +2020-07-20 13:15,1.14241,1.14291,1.14234,1.14267,3794 +2020-07-20 13:30,1.14267,1.14283,1.14023,1.14062,13854 +2020-07-20 13:45,1.14063,1.14206,1.1405,1.14191,4833 +2020-07-20 14:00,1.14187,1.14201,1.14112,1.14187,9092 +2020-07-20 14:15,1.14185,1.14299,1.14175,1.14298,5804 +2020-07-20 14:30,1.14296,1.14386,1.14278,1.14348,6622 +2020-07-20 14:45,1.14348,1.14442,1.14323,1.14397,4666 +2020-07-20 15:00,1.14397,1.14484,1.14385,1.14443,3709 +2020-07-20 15:15,1.14443,1.14469,1.14393,1.14393,2293 +2020-07-20 15:30,1.14394,1.1443,1.14364,1.14421,2862 +2020-07-20 15:45,1.1442,1.1444,1.14381,1.1443,2146 +2020-07-20 16:00,1.1443,1.14451,1.14398,1.14415,2127 +2020-07-20 16:15,1.14419,1.14444,1.14334,1.14344,31648 +2020-07-20 16:30,1.14343,1.14401,1.14332,1.14389,1718 +2020-07-20 16:45,1.14389,1.14407,1.14336,1.14385,1879 +2020-07-20 17:00,1.14385,1.14404,1.14366,1.14373,5104 +2020-07-20 17:15,1.14372,1.1445,1.14372,1.14393,1694 +2020-07-20 17:30,1.14394,1.14402,1.14336,1.14384,1952 +2020-07-20 17:45,1.14383,1.14387,1.14346,1.14357,1943 +2020-07-20 18:00,1.14358,1.14369,1.14342,1.14356,1430 +2020-07-20 18:15,1.14356,1.14389,1.14347,1.14367,1098 +2020-07-20 18:30,1.14367,1.14411,1.14355,1.14404,1069 +2020-07-20 18:45,1.14404,1.14431,1.14399,1.14406,1232 +2020-07-20 19:00,1.14407,1.14429,1.14394,1.14402,1554 +2020-07-20 19:15,1.14403,1.14444,1.144,1.14425,1482 +2020-07-20 19:30,1.14426,1.14444,1.1442,1.1444,1335 +2020-07-20 19:45,1.1444,1.14482,1.14432,1.1448,1200 +2020-07-20 20:00,1.14478,1.14482,1.14427,1.14467,959 +2020-07-20 20:15,1.14468,1.14481,1.14447,1.14467,408 +2020-07-20 20:30,1.14468,1.14488,1.14467,1.14476,434 +2020-07-20 20:45,1.14477,1.14486,1.14469,1.14472,385 +2020-07-20 21:00,1.14472,1.14473,1.14428,1.1443,109 +2020-07-20 21:15,1.1443,1.14448,1.1443,1.1443,302 +2020-07-20 21:30,1.14431,1.14449,1.1443,1.14446,228 +2020-07-20 21:45,1.14445,1.14447,1.14423,1.14427,139 +2020-07-20 22:00,1.14428,1.14474,1.14427,1.14467,937 +2020-07-20 22:15,1.14466,1.14468,1.14452,1.14459,329 +2020-07-20 22:30,1.1446,1.14471,1.14456,1.14458,297 +2020-07-20 22:45,1.14457,1.14465,1.14451,1.14462,371 +2020-07-20 23:00,1.14463,1.14537,1.14461,1.14536,665 +2020-07-20 23:15,1.14536,1.14542,1.14513,1.1453,357 +2020-07-20 23:30,1.14532,1.14549,1.14516,1.14549,512 +2020-07-20 23:45,1.1455,1.14586,1.1455,1.14557,496 +2020-07-21 00:00,1.14559,1.14603,1.14547,1.14581,1389 +2020-07-21 00:15,1.14582,1.14602,1.14553,1.14573,1260 +2020-07-21 00:30,1.14573,1.14639,1.1456,1.14567,1430 +2020-07-21 00:45,1.14566,1.14598,1.1454,1.14554,1929 +2020-07-21 01:00,1.14556,1.14595,1.14554,1.14558,1369 +2020-07-21 01:15,1.14559,1.14592,1.14558,1.14592,1296 +2020-07-21 01:30,1.14593,1.1462,1.14567,1.14568,6717 +2020-07-21 01:45,1.14566,1.14594,1.14559,1.14591,1935 +2020-07-21 02:00,1.14592,1.14623,1.14573,1.14615,1101 +2020-07-21 02:15,1.14617,1.14624,1.14577,1.14577,1125 +2020-07-21 02:30,1.14579,1.14623,1.14579,1.14608,1056 +2020-07-21 02:45,1.14609,1.1461,1.1459,1.14598,704 +2020-07-21 03:00,1.14599,1.14618,1.14582,1.14602,1002 +2020-07-21 03:15,1.14603,1.14696,1.14591,1.1468,1433 +2020-07-21 03:30,1.14682,1.14687,1.14456,1.14547,5821 +2020-07-21 03:45,1.14546,1.14546,1.14402,1.14453,3695 +2020-07-21 04:00,1.14452,1.14465,1.14338,1.14376,3271 +2020-07-21 04:15,1.14376,1.14381,1.14279,1.14304,2287 +2020-07-21 04:30,1.14303,1.14347,1.14301,1.14344,1405 +2020-07-21 04:45,1.14342,1.14351,1.14228,1.14305,4765 +2020-07-21 05:00,1.14305,1.14329,1.14279,1.14313,1713 +2020-07-21 05:15,1.14312,1.14348,1.143,1.14328,1183 +2020-07-21 05:30,1.14328,1.14384,1.14318,1.14348,1848 +2020-07-21 05:45,1.14348,1.14436,1.14347,1.14434,1629 +2020-07-21 06:00,1.14434,1.14503,1.14426,1.14431,3728 +2020-07-21 06:15,1.14431,1.14472,1.14412,1.14451,3009 +2020-07-21 06:30,1.14452,1.14452,1.14365,1.14433,2615 +2020-07-21 06:45,1.14433,1.14482,1.14423,1.14457,1917 +2020-07-21 07:00,1.14458,1.14667,1.14452,1.14586,4957 +2020-07-21 07:15,1.14591,1.14638,1.14515,1.14549,8325 +2020-07-21 07:30,1.14549,1.14565,1.14383,1.14426,13901 +2020-07-21 07:45,1.14426,1.14442,1.14316,1.14426,4361 +2020-07-21 08:00,1.14428,1.14457,1.14384,1.14445,13417 +2020-07-21 08:15,1.14442,1.14455,1.14289,1.14321,7453 +2020-07-21 08:30,1.14321,1.14482,1.14315,1.14438,3615 +2020-07-21 08:45,1.14439,1.14499,1.14386,1.14431,45297 +2020-07-21 09:00,1.14431,1.1445,1.14362,1.14426,4416 +2020-07-21 09:15,1.14426,1.14448,1.14299,1.14351,3644 +2020-07-21 09:30,1.14351,1.14401,1.14343,1.14392,2635 +2020-07-21 09:45,1.14393,1.14472,1.14386,1.14434,3355 +2020-07-21 10:00,1.14435,1.14529,1.14399,1.14521,2806 +2020-07-21 10:15,1.14519,1.14603,1.14516,1.14546,2896 +2020-07-21 10:30,1.14546,1.1456,1.14477,1.14511,3009 +2020-07-21 10:45,1.14513,1.14554,1.14363,1.14379,3943 +2020-07-21 11:00,1.1438,1.14406,1.14337,1.14373,4066 +2020-07-21 11:15,1.14373,1.14391,1.14315,1.14377,3406 +2020-07-21 11:30,1.14375,1.14444,1.14346,1.14444,3214 +2020-07-21 11:45,1.14443,1.14447,1.14356,1.14372,6082 +2020-07-21 12:00,1.14372,1.14453,1.14361,1.1443,3987 +2020-07-21 12:15,1.14431,1.14498,1.14379,1.14495,3255 +2020-07-21 12:30,1.14495,1.14523,1.14449,1.14469,2773 +2020-07-21 12:45,1.14473,1.14507,1.14364,1.14386,3711 +2020-07-21 13:00,1.14389,1.14467,1.14249,1.14305,4623 +2020-07-21 13:15,1.14303,1.14419,1.143,1.14393,4123 +2020-07-21 13:30,1.14394,1.14452,1.1436,1.14435,9653 +2020-07-21 13:45,1.14436,1.14612,1.1443,1.14592,4667 +2020-07-21 14:00,1.14592,1.14608,1.14512,1.14564,30363 +2020-07-21 14:15,1.14565,1.148,1.14565,1.14677,11365 +2020-07-21 14:30,1.14677,1.14798,1.14676,1.14798,5440 +2020-07-21 14:45,1.14799,1.14889,1.14769,1.14873,8794 +2020-07-21 15:00,1.14874,1.14898,1.14828,1.14894,10589 +2020-07-21 15:15,1.14893,1.14948,1.14866,1.14914,3142 +2020-07-21 15:30,1.14913,1.14951,1.14882,1.14929,14623 +2020-07-21 15:45,1.14929,1.14949,1.14898,1.14936,2170 +2020-07-21 16:00,1.14936,1.14998,1.14913,1.14925,4884 +2020-07-21 16:15,1.14925,1.15138,1.14924,1.15127,4106 +2020-07-21 16:30,1.15128,1.15163,1.15059,1.15112,3037 +2020-07-21 16:45,1.15111,1.15174,1.15106,1.15162,2572 +2020-07-21 17:00,1.15163,1.15184,1.15125,1.15161,1767 +2020-07-21 17:15,1.1516,1.15182,1.15145,1.1518,2139 +2020-07-21 17:30,1.1518,1.15346,1.15176,1.15332,2906 +2020-07-21 17:45,1.15332,1.15394,1.15324,1.15335,2719 +2020-07-21 18:00,1.15339,1.15398,1.1533,1.15389,2266 +2020-07-21 18:15,1.1539,1.15397,1.15274,1.15316,2756 +2020-07-21 18:30,1.15316,1.15352,1.15278,1.15323,1710 +2020-07-21 18:45,1.15326,1.15333,1.15268,1.15307,1640 +2020-07-21 19:00,1.15308,1.15345,1.15228,1.15259,3118 +2020-07-21 19:15,1.15259,1.153,1.15245,1.1529,2327 +2020-07-21 19:30,1.1529,1.15299,1.15215,1.15222,2657 +2020-07-21 19:45,1.15222,1.15267,1.15195,1.15254,2935 +2020-07-21 20:00,1.15253,1.15262,1.15225,1.15225,1306 +2020-07-21 20:15,1.15225,1.15233,1.15204,1.15212,578 +2020-07-21 20:30,1.15213,1.15226,1.15209,1.15217,383 +2020-07-21 20:45,1.15218,1.1529,1.15214,1.15265,738 +2020-07-21 21:00,1.15268,1.15324,1.15236,1.15261,283 +2020-07-21 21:15,1.15262,1.15304,1.15262,1.15292,243 +2020-07-21 21:30,1.15297,1.15311,1.15285,1.15307,122 +2020-07-21 21:45,1.15307,1.15325,1.15307,1.15322,146 +2020-07-21 22:00,1.15324,1.15333,1.15305,1.15328,949 +2020-07-21 22:15,1.15328,1.15343,1.1531,1.15319,808 +2020-07-21 22:30,1.1532,1.15336,1.15315,1.15316,613 +2020-07-21 22:45,1.15315,1.15322,1.15306,1.15321,620 +2020-07-21 23:00,1.15324,1.15337,1.15305,1.15312,1522 +2020-07-21 23:15,1.15314,1.15317,1.15296,1.15301,920 +2020-07-21 23:30,1.15302,1.15369,1.15296,1.15368,636 +2020-07-21 23:45,1.15369,1.15423,1.15334,1.1535,1640 +2020-07-22 00:00,1.1535,1.15377,1.15326,1.15345,1692 +2020-07-22 00:15,1.15346,1.15385,1.15333,1.15333,2208 +2020-07-22 00:30,1.15332,1.15337,1.15296,1.15318,1738 +2020-07-22 00:45,1.15317,1.15339,1.15299,1.1531,2601 +2020-07-22 01:00,1.15309,1.15403,1.15293,1.154,3052 +2020-07-22 01:15,1.154,1.15416,1.15346,1.15364,2396 +2020-07-22 01:30,1.15365,1.15396,1.1532,1.15335,2021 +2020-07-22 01:45,1.15335,1.154,1.15324,1.15396,1806 +2020-07-22 02:00,1.15396,1.15406,1.15343,1.15355,2296 +2020-07-22 02:15,1.15355,1.15399,1.15346,1.15399,1041 +2020-07-22 02:30,1.154,1.15418,1.15378,1.15392,1511 +2020-07-22 02:45,1.15392,1.15457,1.15392,1.15453,1436 +2020-07-22 03:00,1.15453,1.1547,1.15436,1.15448,1638 +2020-07-22 03:15,1.15447,1.15451,1.15395,1.15403,938 +2020-07-22 03:30,1.15404,1.1543,1.15399,1.15405,1454 +2020-07-22 03:45,1.15404,1.1541,1.15395,1.15403,814 +2020-07-22 04:00,1.15404,1.15416,1.15388,1.15404,657 +2020-07-22 04:15,1.15403,1.15404,1.15363,1.1538,1004 +2020-07-22 04:30,1.1538,1.15385,1.1536,1.15385,1236 +2020-07-22 04:45,1.15385,1.15415,1.15363,1.15392,1060 +2020-07-22 05:00,1.15389,1.1539,1.1535,1.15367,1471 +2020-07-22 05:15,1.15367,1.15435,1.1536,1.15411,1243 +2020-07-22 05:30,1.15412,1.1543,1.15352,1.15357,1348 +2020-07-22 05:45,1.15357,1.15394,1.15351,1.15394,1624 +2020-07-22 06:00,1.15392,1.15425,1.15271,1.15284,3082 +2020-07-22 06:15,1.15283,1.15297,1.15191,1.15222,8312 +2020-07-22 06:30,1.15222,1.15302,1.15222,1.1529,2632 +2020-07-22 06:45,1.15291,1.15362,1.15289,1.15316,2854 +2020-07-22 07:00,1.15315,1.15455,1.1531,1.15436,10293 +2020-07-22 07:15,1.15436,1.15439,1.15204,1.15252,14903 +2020-07-22 07:30,1.15257,1.15267,1.15077,1.15187,7105 +2020-07-22 07:45,1.15186,1.15283,1.15109,1.15185,12418 +2020-07-22 08:00,1.15186,1.15319,1.15169,1.1531,9274 +2020-07-22 08:15,1.15309,1.15309,1.15159,1.15168,33862 +2020-07-22 08:30,1.15167,1.1523,1.151,1.15102,14374 +2020-07-22 08:45,1.15102,1.15245,1.15068,1.15221,7792 +2020-07-22 09:00,1.15222,1.15298,1.15167,1.15293,3907 +2020-07-22 09:15,1.15292,1.15358,1.15253,1.15324,9560 +2020-07-22 09:30,1.15325,1.15437,1.15298,1.15426,4544 +2020-07-22 09:45,1.15425,1.15468,1.1536,1.15446,3381 +2020-07-22 10:00,1.15446,1.15719,1.15419,1.15708,14534 +2020-07-22 10:15,1.15707,1.15836,1.15698,1.15758,6920 +2020-07-22 10:30,1.15759,1.15782,1.15669,1.15705,9310 +2020-07-22 10:45,1.15705,1.15734,1.15635,1.15685,3203 +2020-07-22 11:00,1.15686,1.15776,1.15601,1.15613,8766 +2020-07-22 11:15,1.15614,1.15682,1.15562,1.15679,4541 +2020-07-22 11:30,1.15679,1.15774,1.15671,1.15768,3485 +2020-07-22 11:45,1.15769,1.15806,1.15732,1.15783,3719 +2020-07-22 12:00,1.15783,1.15798,1.1571,1.15782,3904 +2020-07-22 12:15,1.15782,1.15918,1.15776,1.15855,4829 +2020-07-22 12:30,1.15853,1.15998,1.15808,1.1591,4566 +2020-07-22 12:45,1.15909,1.16,1.15869,1.15956,4657 +2020-07-22 13:00,1.15956,1.15967,1.15852,1.15898,38265 +2020-07-22 13:15,1.15897,1.15903,1.15779,1.15855,5444 +2020-07-22 13:30,1.15855,1.16013,1.15842,1.15906,7545 +2020-07-22 13:45,1.15908,1.15955,1.15853,1.15905,10581 +2020-07-22 14:00,1.15906,1.15909,1.1572,1.15814,25741 +2020-07-22 14:15,1.15813,1.15871,1.15736,1.15739,36371 +2020-07-22 14:30,1.15739,1.15856,1.15708,1.15829,14194 +2020-07-22 14:45,1.1583,1.15951,1.15786,1.15935,5397 +2020-07-22 15:00,1.15936,1.15936,1.15812,1.15868,4771 +2020-07-22 15:15,1.15869,1.15938,1.1586,1.15911,3948 +2020-07-22 15:30,1.1591,1.15916,1.15782,1.15835,6502 +2020-07-22 15:45,1.15836,1.15886,1.15831,1.15868,1627 +2020-07-22 16:00,1.15868,1.15898,1.158,1.1584,2498 +2020-07-22 16:15,1.15838,1.15846,1.15762,1.15784,4279 +2020-07-22 16:30,1.15785,1.15788,1.15737,1.15776,8501 +2020-07-22 16:45,1.15776,1.1582,1.15756,1.15771,2333 +2020-07-22 17:00,1.15772,1.1582,1.15724,1.15725,2423 +2020-07-22 17:15,1.15725,1.15763,1.15707,1.15753,2056 +2020-07-22 17:30,1.15752,1.15761,1.15686,1.15715,1937 +2020-07-22 17:45,1.15715,1.15725,1.15646,1.15686,2286 +2020-07-22 18:00,1.15685,1.15727,1.15658,1.15672,1991 +2020-07-22 18:15,1.15671,1.15683,1.15656,1.15673,1046 +2020-07-22 18:30,1.15675,1.15681,1.15627,1.15636,1747 +2020-07-22 18:45,1.15637,1.15696,1.15636,1.15689,1505 +2020-07-22 19:00,1.15691,1.15723,1.15682,1.15723,1651 +2020-07-22 19:15,1.15722,1.15722,1.15663,1.15681,1423 +2020-07-22 19:30,1.15682,1.15745,1.1567,1.15739,1565 +2020-07-22 19:45,1.1574,1.1579,1.15737,1.15783,1993 +2020-07-22 20:00,1.15783,1.15783,1.15722,1.15722,766 +2020-07-22 20:15,1.15724,1.15727,1.15673,1.15683,724 +2020-07-22 20:30,1.15682,1.15709,1.1568,1.15687,438 +2020-07-22 20:45,1.15687,1.15709,1.15681,1.15695,609 +2020-07-22 21:00,1.15693,1.15724,1.15668,1.15688,117 +2020-07-22 21:15,1.15688,1.15688,1.15683,1.15683,19 +2020-07-22 21:30,1.15686,1.15703,1.15673,1.15701,147 +2020-07-22 21:45,1.15702,1.15755,1.15682,1.15709,740 +2020-07-22 22:00,1.15726,1.15758,1.15714,1.15724,804 +2020-07-22 22:15,1.15725,1.15753,1.15724,1.15737,534 +2020-07-22 22:30,1.15738,1.15749,1.15717,1.15717,792 +2020-07-22 22:45,1.15719,1.15723,1.15693,1.15697,279 +2020-07-22 23:00,1.15697,1.15723,1.15676,1.15683,1111 +2020-07-22 23:15,1.15686,1.15697,1.15678,1.15684,897 +2020-07-22 23:30,1.15686,1.15698,1.15667,1.15688,888 +2020-07-22 23:45,1.15688,1.15688,1.15642,1.15646,1096 +2020-07-23 00:00,1.15647,1.15752,1.15644,1.15707,3999 +2020-07-23 00:15,1.15709,1.15714,1.15641,1.15664,1389 +2020-07-23 00:30,1.15663,1.15724,1.15661,1.15706,1149 +2020-07-23 00:45,1.15706,1.15713,1.15653,1.15675,1820 +2020-07-23 01:00,1.15674,1.15765,1.15642,1.15729,2648 +2020-07-23 01:15,1.15729,1.15743,1.15686,1.15708,5743 +2020-07-23 01:30,1.1571,1.15763,1.15708,1.15757,2097 +2020-07-23 01:45,1.15758,1.15762,1.1572,1.15741,1469 +2020-07-23 02:00,1.1574,1.15747,1.15707,1.15715,1688 +2020-07-23 02:15,1.15716,1.15748,1.1571,1.15728,1318 +2020-07-23 02:30,1.15728,1.15739,1.15697,1.15698,1436 +2020-07-23 02:45,1.15698,1.15708,1.15656,1.15677,1900 +2020-07-23 03:00,1.15677,1.15694,1.15674,1.15688,1256 +2020-07-23 03:15,1.15688,1.15744,1.15688,1.15738,752 +2020-07-23 03:30,1.15739,1.1575,1.15722,1.15738,910 +2020-07-23 03:45,1.15739,1.15775,1.15736,1.15768,1312 +2020-07-23 04:00,1.15769,1.15781,1.15753,1.15768,784 +2020-07-23 04:15,1.1577,1.15824,1.15752,1.15811,1676 +2020-07-23 04:30,1.15811,1.15838,1.15782,1.1579,1325 +2020-07-23 04:45,1.1579,1.1582,1.15783,1.15803,821 +2020-07-23 05:00,1.15803,1.15836,1.15798,1.15825,703 +2020-07-23 05:15,1.15825,1.1585,1.15821,1.15838,953 +2020-07-23 05:30,1.15839,1.15849,1.15774,1.15799,1378 +2020-07-23 05:45,1.15799,1.15871,1.15799,1.1584,1736 +2020-07-23 06:00,1.1584,1.15914,1.15838,1.15905,2557 +2020-07-23 06:15,1.15906,1.15926,1.15846,1.15894,2068 +2020-07-23 06:30,1.15895,1.15914,1.15843,1.15854,1797 +2020-07-23 06:45,1.15853,1.15936,1.15853,1.15912,2650 +2020-07-23 07:00,1.15911,1.15983,1.15819,1.15846,4405 +2020-07-23 07:15,1.15846,1.15848,1.1575,1.15757,3362 +2020-07-23 07:30,1.15757,1.15782,1.15704,1.1574,3890 +2020-07-23 07:45,1.15742,1.15864,1.1574,1.15859,3733 +2020-07-23 08:00,1.1586,1.15914,1.15834,1.1587,4041 +2020-07-23 08:15,1.15871,1.15914,1.15837,1.15837,4261 +2020-07-23 08:30,1.15838,1.15902,1.15788,1.15883,3820 +2020-07-23 08:45,1.15885,1.15919,1.15866,1.15882,4660 +2020-07-23 09:00,1.15883,1.15936,1.15864,1.15905,2250 +2020-07-23 09:15,1.15906,1.15937,1.15855,1.15886,2594 +2020-07-23 09:30,1.15886,1.1594,1.15865,1.15899,1881 +2020-07-23 09:45,1.15898,1.15922,1.1585,1.15915,2171 +2020-07-23 10:00,1.15916,1.15937,1.15876,1.15895,1939 +2020-07-23 10:15,1.15895,1.15945,1.15833,1.15889,2712 +2020-07-23 10:30,1.15891,1.15921,1.15879,1.15885,2160 +2020-07-23 10:45,1.15884,1.15896,1.15819,1.15869,2160 +2020-07-23 11:00,1.15869,1.15869,1.15783,1.15833,3251 +2020-07-23 11:15,1.15833,1.15901,1.15822,1.15837,4007 +2020-07-23 11:30,1.15838,1.15843,1.1574,1.15745,3144 +2020-07-23 11:45,1.15746,1.15769,1.15688,1.1572,2611 +2020-07-23 12:00,1.15719,1.15747,1.15603,1.15694,3606 +2020-07-23 12:15,1.15694,1.157,1.15606,1.15627,9438 +2020-07-23 12:30,1.15627,1.15663,1.15538,1.15614,7902 +2020-07-23 12:45,1.15614,1.15614,1.15416,1.1542,4245 +2020-07-23 13:00,1.15421,1.15597,1.15403,1.15583,23523 +2020-07-23 13:15,1.15582,1.15595,1.15529,1.15561,3702 +2020-07-23 13:30,1.15562,1.15726,1.1556,1.15725,5320 +2020-07-23 13:45,1.15725,1.15867,1.15711,1.15858,4793 +2020-07-23 14:00,1.15858,1.15862,1.15756,1.15756,4813 +2020-07-23 14:15,1.15756,1.15891,1.15755,1.15891,17563 +2020-07-23 14:30,1.15892,1.15932,1.15872,1.15925,3901 +2020-07-23 14:45,1.15926,1.16091,1.15902,1.15954,4823 +2020-07-23 15:00,1.15953,1.15972,1.15814,1.15886,39044 +2020-07-23 15:15,1.15889,1.15939,1.15836,1.15889,3877 +2020-07-23 15:30,1.15889,1.16177,1.15875,1.16108,4999 +2020-07-23 15:45,1.16106,1.16268,1.16106,1.16221,5695 +2020-07-23 16:00,1.16224,1.16226,1.1611,1.16175,3908 +2020-07-23 16:15,1.16175,1.16193,1.16129,1.16188,3767 +2020-07-23 16:30,1.16188,1.1624,1.16181,1.16192,3266 +2020-07-23 16:45,1.16193,1.16215,1.16157,1.16203,2673 +2020-07-23 17:00,1.16202,1.16244,1.1619,1.16213,3636 +2020-07-23 17:15,1.16214,1.1622,1.16132,1.16198,1927 +2020-07-23 17:30,1.16196,1.16209,1.16127,1.16128,3089 +2020-07-23 17:45,1.16131,1.16144,1.16027,1.1608,18044 +2020-07-23 18:00,1.16078,1.16085,1.15986,1.16008,3652 +2020-07-23 18:15,1.16009,1.1607,1.1598,1.16041,3484 +2020-07-23 18:30,1.16042,1.16107,1.1601,1.16092,9632 +2020-07-23 18:45,1.16093,1.16098,1.16027,1.16086,4545 +2020-07-23 19:00,1.16085,1.16095,1.15999,1.15999,7218 +2020-07-23 19:15,1.15999,1.16004,1.15907,1.15935,11979 +2020-07-23 19:30,1.15933,1.15975,1.15914,1.15944,3907 +2020-07-23 19:45,1.15944,1.15974,1.15887,1.15924,2920 +2020-07-23 20:00,1.15925,1.15965,1.15899,1.15938,1246 +2020-07-23 20:15,1.15939,1.15939,1.15911,1.15913,404 +2020-07-23 20:30,1.15912,1.15928,1.15899,1.15906,695 +2020-07-23 20:45,1.15905,1.15982,1.15905,1.15959,625 +2020-07-23 21:00,1.15959,1.1596,1.1594,1.15957,53 +2020-07-23 21:15,1.15957,1.15957,1.15918,1.15934,217 +2020-07-23 21:30,1.15937,1.15963,1.15915,1.15963,312 +2020-07-23 21:45,1.15963,1.15964,1.15959,1.15959,35 +2020-07-23 22:00,1.15962,1.15994,1.15941,1.1599,692 +2020-07-23 22:15,1.15992,1.16022,1.15985,1.1602,993 +2020-07-23 22:30,1.1602,1.16025,1.16007,1.16007,600 +2020-07-23 22:45,1.16009,1.16024,1.16009,1.16024,437 +2020-07-23 23:00,1.16023,1.16025,1.15977,1.15987,1245 +2020-07-23 23:15,1.15987,1.15993,1.15966,1.15992,989 +2020-07-23 23:30,1.1599,1.16011,1.15977,1.15978,698 +2020-07-23 23:45,1.15979,1.15983,1.15949,1.15952,839 +2020-07-24 00:00,1.15953,1.15954,1.15923,1.15931,903 +2020-07-24 00:15,1.15931,1.16065,1.1593,1.16062,1808 +2020-07-24 00:30,1.16062,1.16085,1.16052,1.16071,1479 +2020-07-24 00:45,1.16071,1.16162,1.1607,1.16139,1404 +2020-07-24 01:00,1.16138,1.16168,1.16136,1.16156,1866 +2020-07-24 01:15,1.16156,1.1621,1.16115,1.16127,1780 +2020-07-24 01:30,1.16126,1.16175,1.16119,1.1613,1957 +2020-07-24 01:45,1.16129,1.16151,1.16081,1.16136,2331 +2020-07-24 02:00,1.16137,1.16144,1.16098,1.16116,1709 +2020-07-24 02:15,1.16117,1.16141,1.16107,1.16122,1197 +2020-07-24 02:30,1.16122,1.16152,1.16105,1.16137,1858 +2020-07-24 02:45,1.16137,1.16156,1.16126,1.16149,1501 +2020-07-24 03:00,1.16149,1.16183,1.16125,1.16136,1616 +2020-07-24 03:15,1.16135,1.16155,1.16103,1.16127,1363 +2020-07-24 03:30,1.16127,1.16127,1.16076,1.16091,2799 +2020-07-24 03:45,1.16092,1.1614,1.16044,1.1613,2413 +2020-07-24 04:00,1.1613,1.16143,1.16048,1.1605,1684 +2020-07-24 04:15,1.1605,1.16079,1.1597,1.15979,2007 +2020-07-24 04:30,1.15978,1.16019,1.15956,1.16009,1939 +2020-07-24 04:45,1.16009,1.16011,1.15949,1.1598,1546 +2020-07-24 05:00,1.1598,1.16002,1.15916,1.15992,2465 +2020-07-24 05:15,1.15993,1.15993,1.15913,1.15914,1245 +2020-07-24 05:30,1.15913,1.15996,1.15901,1.15996,1858 +2020-07-24 05:45,1.15993,1.16026,1.15971,1.16026,1931 +2020-07-24 06:00,1.16027,1.16124,1.16016,1.16098,10389 +2020-07-24 06:15,1.16101,1.16144,1.16063,1.1611,2815 +2020-07-24 06:30,1.1611,1.16143,1.16073,1.16102,8114 +2020-07-24 06:45,1.16102,1.16171,1.16102,1.16142,3042 +2020-07-24 07:00,1.16142,1.16167,1.16033,1.16078,10238 +2020-07-24 07:15,1.16082,1.16148,1.15937,1.16056,6555 +2020-07-24 07:30,1.16058,1.16143,1.15991,1.16132,16356 +2020-07-24 07:45,1.1613,1.16213,1.16081,1.16099,13133 +2020-07-24 08:00,1.16099,1.16141,1.1597,1.16014,5200 +2020-07-24 08:15,1.16015,1.16081,1.15954,1.16074,4314 +2020-07-24 08:30,1.16072,1.16157,1.15989,1.16006,21293 +2020-07-24 08:45,1.16008,1.16024,1.15924,1.16003,19684 +2020-07-24 09:00,1.16002,1.16016,1.15911,1.16006,3298 +2020-07-24 09:15,1.16007,1.16073,1.15999,1.16047,4584 +2020-07-24 09:30,1.16047,1.16118,1.16042,1.16056,4546 +2020-07-24 09:45,1.16055,1.16107,1.15973,1.15974,3546 +2020-07-24 10:00,1.15976,1.16041,1.15946,1.1601,2610 +2020-07-24 10:15,1.1601,1.16027,1.15947,1.15984,3130 +2020-07-24 10:30,1.15983,1.16001,1.15847,1.15886,23846 +2020-07-24 10:45,1.15886,1.159,1.15812,1.15837,3435 +2020-07-24 11:00,1.15836,1.15886,1.15828,1.15832,3258 +2020-07-24 11:15,1.15832,1.15899,1.1583,1.15881,2970 +2020-07-24 11:30,1.15881,1.15946,1.1587,1.15939,3165 +2020-07-24 11:45,1.15938,1.16015,1.15903,1.1601,3017 +2020-07-24 12:00,1.16009,1.16137,1.16009,1.1608,6611 +2020-07-24 12:15,1.16082,1.16122,1.16058,1.16091,3451 +2020-07-24 12:30,1.16089,1.16147,1.16061,1.16093,3692 +2020-07-24 12:45,1.16093,1.16175,1.16064,1.16148,3508 +2020-07-24 13:00,1.16148,1.16218,1.16088,1.1609,11779 +2020-07-24 13:15,1.16088,1.16176,1.16055,1.16137,4361 +2020-07-24 13:30,1.16136,1.16137,1.15978,1.16065,6669 +2020-07-24 13:45,1.16065,1.16205,1.16052,1.1612,5272 +2020-07-24 14:00,1.1612,1.16234,1.16097,1.16173,6037 +2020-07-24 14:15,1.16172,1.16292,1.16161,1.16274,24029 +2020-07-24 14:30,1.16273,1.16385,1.16245,1.16316,12313 +2020-07-24 14:45,1.1632,1.16379,1.16237,1.1625,5085 +2020-07-24 15:00,1.16251,1.16329,1.16212,1.16314,19804 +2020-07-24 15:15,1.16316,1.16378,1.16275,1.16368,5732 +2020-07-24 15:30,1.16368,1.16375,1.16313,1.16355,6468 +2020-07-24 15:45,1.16357,1.16365,1.16316,1.1634,5883 +2020-07-24 16:00,1.16343,1.16377,1.16311,1.16345,2430 +2020-07-24 16:15,1.16344,1.16349,1.16295,1.16318,13493 +2020-07-24 16:30,1.16319,1.16332,1.16287,1.16327,2468 +2020-07-24 16:45,1.16327,1.16375,1.16308,1.16349,3657 +2020-07-24 17:00,1.16348,1.16387,1.16344,1.16364,2128 +2020-07-24 17:15,1.16364,1.16445,1.16364,1.16428,2102 +2020-07-24 17:30,1.16427,1.16427,1.16374,1.16392,1631 +2020-07-24 17:45,1.16391,1.16413,1.16377,1.16406,2030 +2020-07-24 18:00,1.16406,1.16461,1.16394,1.16448,1555 +2020-07-24 18:15,1.16448,1.16475,1.16421,1.16473,5318 +2020-07-24 18:30,1.16473,1.16473,1.16418,1.16429,1460 +2020-07-24 18:45,1.16429,1.16432,1.16361,1.16361,2276 +2020-07-24 19:00,1.1636,1.16407,1.16342,1.16394,2094 +2020-07-24 19:15,1.16396,1.16399,1.16359,1.16364,1757 +2020-07-24 19:30,1.16363,1.16419,1.1635,1.1641,1692 +2020-07-24 19:45,1.1641,1.16422,1.16391,1.16411,1467 +2020-07-24 20:00,1.16411,1.16462,1.16407,1.16443,902 +2020-07-24 20:15,1.16447,1.1658,1.16443,1.16525,1076 +2020-07-24 20:30,1.16523,1.16566,1.16518,1.16551,667 +2020-07-24 20:45,1.1655,1.16564,1.16511,1.16546,1198 +2020-07-26 21:00,1.1643,1.16452,1.16413,1.16423,61 +2020-07-26 21:15,1.16418,1.16441,1.16417,1.1644,16 +2020-07-26 21:30,1.16443,1.16457,1.1644,1.16447,98 +2020-07-26 21:45,1.1645,1.16457,1.16435,1.16445,103 +2020-07-26 22:00,1.16445,1.16498,1.16429,1.16441,1577 +2020-07-26 22:15,1.1644,1.16523,1.16433,1.16516,1480 +2020-07-26 22:30,1.16517,1.16549,1.16517,1.16528,1176 +2020-07-26 22:45,1.16528,1.16538,1.16515,1.16523,809 +2020-07-26 23:00,1.16525,1.16527,1.16421,1.16471,2524 +2020-07-26 23:15,1.1647,1.16506,1.16452,1.16478,3820 +2020-07-26 23:30,1.16479,1.16552,1.16478,1.16531,2345 +2020-07-26 23:45,1.16531,1.16555,1.16495,1.16495,2064 +2020-07-27 00:00,1.16496,1.1664,1.16494,1.16635,2391 +2020-07-27 00:15,1.16635,1.16707,1.16611,1.1668,2389 +2020-07-27 00:30,1.1668,1.16984,1.16664,1.1693,4109 +2020-07-27 00:45,1.16928,1.16933,1.16871,1.16886,2528 +2020-07-27 01:00,1.16885,1.16932,1.16874,1.16889,2403 +2020-07-27 01:15,1.16888,1.16893,1.16852,1.16876,2255 +2020-07-27 01:30,1.16875,1.16985,1.16871,1.16961,3103 +2020-07-27 01:45,1.16959,1.1697,1.16898,1.16922,2934 +2020-07-27 02:00,1.16924,1.16943,1.16895,1.16936,1806 +2020-07-27 02:15,1.16937,1.16942,1.16911,1.1692,3650 +2020-07-27 02:30,1.16921,1.16983,1.1691,1.16977,2340 +2020-07-27 02:45,1.16976,1.17158,1.16975,1.17101,4317 +2020-07-27 03:00,1.17101,1.17147,1.17074,1.17145,2669 +2020-07-27 03:15,1.17145,1.1725,1.17116,1.17149,3591 +2020-07-27 03:30,1.17151,1.17161,1.17095,1.17096,2264 +2020-07-27 03:45,1.17095,1.17161,1.17082,1.17106,1972 +2020-07-27 04:00,1.17106,1.17119,1.17003,1.17016,4859 +2020-07-27 04:15,1.17015,1.17066,1.17,1.17059,2170 +2020-07-27 04:30,1.17058,1.17113,1.1705,1.17066,1653 +2020-07-27 04:45,1.17066,1.17095,1.17046,1.1705,16246 +2020-07-27 05:00,1.17051,1.17051,1.16979,1.16982,2078 +2020-07-27 05:15,1.16984,1.1701,1.16965,1.16979,1425 +2020-07-27 05:30,1.16979,1.17,1.16951,1.1699,1735 +2020-07-27 05:45,1.16991,1.1704,1.16982,1.17014,2434 +2020-07-27 06:00,1.17013,1.1709,1.17008,1.17041,2820 +2020-07-27 06:15,1.17041,1.17128,1.17028,1.17075,2841 +2020-07-27 06:30,1.17074,1.17145,1.1707,1.1714,2978 +2020-07-27 06:45,1.1714,1.17168,1.17069,1.17088,9888 +2020-07-27 07:00,1.17088,1.17123,1.17017,1.17098,4881 +2020-07-27 07:15,1.17098,1.17134,1.17033,1.17064,3603 +2020-07-27 07:30,1.17065,1.17066,1.16895,1.17015,5414 +2020-07-27 07:45,1.17014,1.17048,1.16942,1.1696,4639 +2020-07-27 08:00,1.16959,1.17049,1.16936,1.17011,5258 +2020-07-27 08:15,1.17013,1.1711,1.16991,1.17109,4236 +2020-07-27 08:30,1.17109,1.17117,1.17052,1.17055,3506 +2020-07-27 08:45,1.17054,1.17059,1.16952,1.16953,3292 +2020-07-27 09:00,1.16953,1.16966,1.16852,1.16862,3676 +2020-07-27 09:15,1.16861,1.16951,1.16818,1.16928,4411 +2020-07-27 09:30,1.16929,1.16996,1.16881,1.16977,3253 +2020-07-27 09:45,1.16976,1.17075,1.16951,1.17064,3275 +2020-07-27 10:00,1.17063,1.17122,1.1705,1.17111,3331 +2020-07-27 10:15,1.17111,1.17329,1.17095,1.17311,4293 +2020-07-27 10:30,1.1731,1.1731,1.17219,1.17249,2934 +2020-07-27 10:45,1.17248,1.17306,1.17242,1.17263,2768 +2020-07-27 11:00,1.17263,1.17263,1.17176,1.17181,3281 +2020-07-27 11:15,1.17182,1.17274,1.17181,1.17263,4449 +2020-07-27 11:30,1.17264,1.17295,1.17243,1.17292,15298 +2020-07-27 11:45,1.17293,1.1745,1.17237,1.1744,3666 +2020-07-27 12:00,1.17442,1.17642,1.17395,1.17598,6113 +2020-07-27 12:15,1.17599,1.17602,1.17429,1.17487,4839 +2020-07-27 12:30,1.17487,1.17537,1.17427,1.17436,4559 +2020-07-27 12:45,1.17437,1.17445,1.17356,1.1739,3436 +2020-07-27 13:00,1.1739,1.17482,1.17315,1.17332,23778 +2020-07-27 13:15,1.1733,1.17348,1.1728,1.17347,6486 +2020-07-27 13:30,1.17347,1.17561,1.17329,1.17525,6386 +2020-07-27 13:45,1.17524,1.17601,1.17523,1.17593,6241 +2020-07-27 14:00,1.17592,1.17606,1.1751,1.17548,4853 +2020-07-27 14:15,1.17547,1.17594,1.17471,1.17577,4870 +2020-07-27 14:30,1.17578,1.17771,1.17563,1.17766,4895 +2020-07-27 14:45,1.17768,1.17782,1.17678,1.17772,5150 +2020-07-27 15:00,1.1777,1.17813,1.1772,1.17761,4301 +2020-07-27 15:15,1.1776,1.1778,1.17596,1.17616,3685 +2020-07-27 15:30,1.17616,1.17634,1.17574,1.17574,3487 +2020-07-27 15:45,1.17573,1.17592,1.17494,1.17499,3287 +2020-07-27 16:00,1.17501,1.17542,1.17477,1.17505,3223 +2020-07-27 16:15,1.17507,1.17576,1.17491,1.17566,2714 +2020-07-27 16:30,1.1756,1.17576,1.17523,1.17538,13613 +2020-07-27 16:45,1.17538,1.17549,1.17433,1.17449,2236 +2020-07-27 17:00,1.17448,1.1751,1.17448,1.1749,1937 +2020-07-27 17:15,1.1749,1.17522,1.1749,1.1751,1226 +2020-07-27 17:30,1.1751,1.17549,1.17505,1.17517,1097 +2020-07-27 17:45,1.17517,1.17564,1.17515,1.17555,1782 +2020-07-27 18:00,1.17554,1.17631,1.17554,1.17627,1843 +2020-07-27 18:15,1.17627,1.17646,1.17575,1.17595,1751 +2020-07-27 18:30,1.17595,1.17601,1.17563,1.17577,1284 +2020-07-27 18:45,1.17577,1.1758,1.17502,1.17502,1450 +2020-07-27 19:00,1.17501,1.17517,1.17436,1.17441,1789 +2020-07-27 19:15,1.17446,1.17485,1.17426,1.17467,1699 +2020-07-27 19:30,1.17467,1.17493,1.17423,1.17435,1204 +2020-07-27 19:45,1.17434,1.17477,1.17424,1.17454,1838 +2020-07-27 20:00,1.17453,1.17479,1.17441,1.17474,967 +2020-07-27 20:15,1.17473,1.1749,1.17457,1.1748,473 +2020-07-27 20:30,1.17479,1.17484,1.17448,1.17466,350 +2020-07-27 20:45,1.17467,1.17518,1.17464,1.1751,691 +2020-07-27 21:00,1.17512,1.17542,1.17487,1.17487,226 +2020-07-27 21:15,1.17487,1.1753,1.17468,1.17491,678 +2020-07-27 21:30,1.1749,1.17512,1.17459,1.17482,150 +2020-07-27 21:45,1.17483,1.17503,1.17482,1.17495,1376 +2020-07-27 22:00,1.17501,1.17566,1.17491,1.17563,896 +2020-07-27 22:15,1.17566,1.17588,1.1755,1.17585,863 +2020-07-27 22:30,1.17586,1.17605,1.1758,1.17603,1271 +2020-07-27 22:45,1.17603,1.17641,1.17589,1.17634,1063 +2020-07-27 23:00,1.17633,1.17634,1.17538,1.17557,2084 +2020-07-27 23:15,1.17556,1.17557,1.17513,1.17548,1524 +2020-07-27 23:30,1.17547,1.17629,1.17542,1.17626,1822 +2020-07-27 23:45,1.17626,1.17688,1.17621,1.17682,1910 +2020-07-28 00:00,1.17681,1.1769,1.17615,1.17665,3871 +2020-07-28 00:15,1.17666,1.1768,1.17615,1.17633,3351 +2020-07-28 00:30,1.17634,1.17647,1.17601,1.17642,1437 +2020-07-28 00:45,1.17643,1.17729,1.17634,1.17661,2483 +2020-07-28 01:00,1.1766,1.17694,1.17632,1.1768,2671 +2020-07-28 01:15,1.1768,1.17736,1.1764,1.17653,2955 +2020-07-28 01:30,1.17652,1.1766,1.1757,1.17583,3079 +2020-07-28 01:45,1.17582,1.17594,1.17555,1.17584,1588 +2020-07-28 02:00,1.17583,1.17631,1.17551,1.17563,1877 +2020-07-28 02:15,1.17562,1.17614,1.17562,1.17599,2073 +2020-07-28 02:30,1.17599,1.17602,1.17544,1.17544,2040 +2020-07-28 02:45,1.17543,1.17545,1.17432,1.17446,2654 +2020-07-28 03:00,1.17447,1.17471,1.17304,1.1735,5322 +2020-07-28 03:15,1.1735,1.17387,1.17308,1.17368,3508 +2020-07-28 03:30,1.17367,1.17413,1.17321,1.17334,2711 +2020-07-28 03:45,1.17332,1.17347,1.17141,1.17243,8431 +2020-07-28 04:00,1.17243,1.17274,1.17204,1.17236,3250 +2020-07-28 04:15,1.17236,1.17273,1.17181,1.17255,3447 +2020-07-28 04:30,1.17255,1.17343,1.17246,1.17332,2391 +2020-07-28 04:45,1.17333,1.17353,1.17305,1.17312,1730 +2020-07-28 05:00,1.17311,1.17346,1.17271,1.17322,2065 +2020-07-28 05:15,1.17322,1.17327,1.17256,1.17257,2223 +2020-07-28 05:30,1.17258,1.17298,1.17211,1.1728,2555 +2020-07-28 05:45,1.1728,1.17357,1.17278,1.17352,2537 +2020-07-28 06:00,1.17351,1.17405,1.17304,1.17333,3064 +2020-07-28 06:15,1.17331,1.17373,1.17256,1.17314,2434 +2020-07-28 06:30,1.17315,1.17368,1.17256,1.17281,3106 +2020-07-28 06:45,1.17281,1.17342,1.17243,1.17271,3706 +2020-07-28 07:00,1.17272,1.17356,1.17271,1.17292,4197 +2020-07-28 07:15,1.17293,1.17321,1.17244,1.1728,3237 +2020-07-28 07:30,1.1728,1.17296,1.17113,1.17133,6076 +2020-07-28 07:45,1.17136,1.17188,1.17058,1.17107,4714 +2020-07-28 08:00,1.1711,1.17157,1.16987,1.17077,4909 +2020-07-28 08:15,1.17077,1.17098,1.17014,1.17064,3905 +2020-07-28 08:30,1.17067,1.17157,1.17067,1.17109,3421 +2020-07-28 08:45,1.17111,1.17218,1.17102,1.1721,4094 +2020-07-28 09:00,1.17213,1.17213,1.17112,1.17115,4281 +2020-07-28 09:15,1.17114,1.17226,1.17108,1.17217,3058 +2020-07-28 09:30,1.17218,1.17296,1.17203,1.17287,3490 +2020-07-28 09:45,1.17287,1.17367,1.17276,1.17288,4125 +2020-07-28 10:00,1.17289,1.17352,1.17261,1.17333,4263 +2020-07-28 10:15,1.17332,1.17332,1.17266,1.1729,3677 +2020-07-28 10:30,1.1729,1.17338,1.17254,1.17326,2701 +2020-07-28 10:45,1.17326,1.17402,1.17322,1.17377,3202 +2020-07-28 11:00,1.17378,1.1743,1.17356,1.17401,2673 +2020-07-28 11:15,1.17399,1.17399,1.1735,1.17379,2954 +2020-07-28 11:30,1.1738,1.17386,1.17176,1.17189,5958 +2020-07-28 11:45,1.17189,1.17189,1.17001,1.17045,8057 +2020-07-28 12:00,1.17045,1.17177,1.17041,1.17167,5006 +2020-07-28 12:15,1.17169,1.17251,1.17149,1.17233,3993 +2020-07-28 12:30,1.17232,1.17359,1.17208,1.17309,3320 +2020-07-28 12:45,1.17308,1.17338,1.17271,1.1733,3616 +2020-07-28 13:00,1.17329,1.17359,1.17215,1.17297,4757 +2020-07-28 13:15,1.17294,1.17331,1.17258,1.17298,4739 +2020-07-28 13:30,1.17298,1.17422,1.17235,1.17331,18871 +2020-07-28 13:45,1.17332,1.17411,1.17288,1.17322,9327 +2020-07-28 14:00,1.17321,1.17342,1.17251,1.17331,13253 +2020-07-28 14:15,1.17332,1.17396,1.17159,1.17163,7427 +2020-07-28 14:30,1.17164,1.17181,1.17082,1.17142,11873 +2020-07-28 14:45,1.17146,1.17297,1.17101,1.17289,14960 +2020-07-28 15:00,1.17291,1.17297,1.17152,1.17194,10471 +2020-07-28 15:15,1.17193,1.17211,1.17124,1.17179,4553 +2020-07-28 15:30,1.17178,1.1727,1.17172,1.17247,4719 +2020-07-28 15:45,1.17251,1.17325,1.17231,1.17319,3415 +2020-07-28 16:00,1.17319,1.17344,1.17281,1.1729,5681 +2020-07-28 16:15,1.17289,1.17336,1.17286,1.17308,2649 +2020-07-28 16:30,1.17306,1.17351,1.17296,1.17312,2665 +2020-07-28 16:45,1.17311,1.17372,1.17309,1.17346,2132 +2020-07-28 17:00,1.17347,1.17365,1.17308,1.17354,2300 +2020-07-28 17:15,1.17354,1.17371,1.17277,1.17293,1898 +2020-07-28 17:30,1.17294,1.1734,1.17289,1.17333,1945 +2020-07-28 17:45,1.17333,1.1736,1.17304,1.17306,1546 +2020-07-28 18:00,1.17306,1.1732,1.17235,1.17243,2182 +2020-07-28 18:15,1.17242,1.17261,1.1719,1.17218,2231 +2020-07-28 18:30,1.17219,1.17281,1.17211,1.17261,2704 +2020-07-28 18:45,1.17261,1.17266,1.17224,1.17238,2505 +2020-07-28 19:00,1.17239,1.17242,1.17191,1.17209,1772 +2020-07-28 19:15,1.17208,1.17241,1.17203,1.17214,1903 +2020-07-28 19:30,1.17215,1.17241,1.17177,1.17187,2058 +2020-07-28 19:45,1.17186,1.17216,1.17122,1.1714,2426 +2020-07-28 20:00,1.17139,1.17193,1.17132,1.17181,1159 +2020-07-28 20:15,1.17181,1.17201,1.17167,1.17172,454 +2020-07-28 20:30,1.17172,1.17174,1.17135,1.17142,600 +2020-07-28 20:45,1.17141,1.17181,1.17141,1.1715,611 +2020-07-28 21:00,1.17148,1.17174,1.17118,1.17169,53 +2020-07-28 21:15,1.1717,1.1719,1.1716,1.17182,23 +2020-07-28 21:30,1.17182,1.17208,1.17182,1.17208,353 +2020-07-28 21:45,1.17207,1.17214,1.172,1.17205,87 +2020-07-28 22:00,1.17205,1.17232,1.17203,1.17222,632 +2020-07-28 22:15,1.17221,1.17234,1.17184,1.17188,694 +2020-07-28 22:30,1.17186,1.17217,1.17179,1.172,637 +2020-07-28 22:45,1.172,1.17222,1.17187,1.17199,454 +2020-07-28 23:00,1.17199,1.17209,1.1719,1.17207,805 +2020-07-28 23:15,1.17208,1.17217,1.1718,1.17181,664 +2020-07-28 23:30,1.17183,1.17208,1.17182,1.17198,401 +2020-07-28 23:45,1.17199,1.17215,1.17178,1.17185,465 +2020-07-29 00:00,1.17185,1.17213,1.17169,1.17191,1409 +2020-07-29 00:15,1.17192,1.17256,1.17192,1.17223,1421 +2020-07-29 00:30,1.17224,1.1724,1.17161,1.17161,1333 +2020-07-29 00:45,1.1716,1.17215,1.17139,1.17214,3022 +2020-07-29 01:00,1.17214,1.17225,1.17177,1.17214,2185 +2020-07-29 01:15,1.17214,1.17225,1.17178,1.17203,1835 +2020-07-29 01:30,1.17204,1.17206,1.17151,1.17192,1984 +2020-07-29 01:45,1.1719,1.17242,1.17181,1.1724,1749 +2020-07-29 02:00,1.1724,1.17247,1.17202,1.17213,18403 +2020-07-29 02:15,1.17213,1.17246,1.1721,1.17232,1530 +2020-07-29 02:30,1.17233,1.17278,1.17231,1.17271,1944 +2020-07-29 02:45,1.17271,1.17313,1.17259,1.17283,1880 +2020-07-29 03:00,1.17283,1.17301,1.17266,1.17289,1357 +2020-07-29 03:15,1.17289,1.1732,1.17286,1.17302,1390 +2020-07-29 03:30,1.17302,1.17318,1.17258,1.17285,1572 +2020-07-29 03:45,1.17284,1.17312,1.17247,1.17285,1789 +2020-07-29 04:00,1.17286,1.1733,1.17278,1.17312,1384 +2020-07-29 04:15,1.17312,1.17332,1.17301,1.17331,708 +2020-07-29 04:30,1.1733,1.17338,1.17305,1.17309,968 +2020-07-29 04:45,1.1731,1.17312,1.17249,1.17295,1808 +2020-07-29 05:00,1.17294,1.17294,1.17245,1.17269,1571 +2020-07-29 05:15,1.1727,1.17324,1.1726,1.17296,1983 +2020-07-29 05:30,1.17295,1.17308,1.17274,1.17295,1025 +2020-07-29 05:45,1.17293,1.17346,1.17257,1.17344,1229 +2020-07-29 06:00,1.17342,1.17414,1.1732,1.17407,2419 +2020-07-29 06:15,1.17405,1.17435,1.1738,1.17385,2532 +2020-07-29 06:30,1.17384,1.17499,1.17384,1.17494,2325 +2020-07-29 06:45,1.17493,1.17508,1.17458,1.17474,4634 +2020-07-29 07:00,1.17475,1.17574,1.17459,1.17523,4980 +2020-07-29 07:15,1.17522,1.17529,1.17433,1.17491,4739 +2020-07-29 07:30,1.17492,1.17699,1.17481,1.17685,5117 +2020-07-29 07:45,1.17687,1.17694,1.17583,1.17593,6997 +2020-07-29 08:00,1.17593,1.17599,1.1754,1.17587,4075 +2020-07-29 08:15,1.17587,1.17631,1.17506,1.17535,3139 +2020-07-29 08:30,1.17536,1.17561,1.17484,1.17544,3184 +2020-07-29 08:45,1.17543,1.17556,1.17471,1.17506,3520 +2020-07-29 09:00,1.17507,1.17526,1.17451,1.17517,3813 +2020-07-29 09:15,1.17518,1.17543,1.17471,1.17489,6068 +2020-07-29 09:30,1.17489,1.17508,1.17417,1.1749,3638 +2020-07-29 09:45,1.17489,1.17516,1.17435,1.17471,7535 +2020-07-29 10:00,1.17472,1.17544,1.17472,1.17512,3179 +2020-07-29 10:15,1.17511,1.17517,1.17455,1.17481,2697 +2020-07-29 10:30,1.1748,1.1753,1.17454,1.17454,2752 +2020-07-29 10:45,1.17453,1.17506,1.17424,1.17462,3064 +2020-07-29 11:00,1.17461,1.17465,1.17316,1.1732,3886 +2020-07-29 11:15,1.17319,1.17352,1.17289,1.17337,3875 +2020-07-29 11:30,1.17337,1.17369,1.17283,1.17314,3622 +2020-07-29 11:45,1.17316,1.17328,1.17201,1.17223,3490 +2020-07-29 12:00,1.17221,1.17277,1.17184,1.17249,5476 +2020-07-29 12:15,1.1725,1.1731,1.17208,1.17277,3230 +2020-07-29 12:30,1.17278,1.17324,1.17271,1.17323,19848 +2020-07-29 12:45,1.17323,1.17454,1.17323,1.17435,3656 +2020-07-29 13:00,1.17437,1.17574,1.1742,1.17558,2879 +2020-07-29 13:15,1.17556,1.17563,1.17495,1.17525,14865 +2020-07-29 13:30,1.17525,1.17641,1.17476,1.17514,6562 +2020-07-29 13:45,1.17515,1.17578,1.17487,1.17551,5925 +2020-07-29 14:00,1.1755,1.17643,1.17533,1.17533,10070 +2020-07-29 14:15,1.17531,1.1761,1.17514,1.1757,5089 +2020-07-29 14:30,1.17571,1.17748,1.17521,1.17706,4719 +2020-07-29 14:45,1.17707,1.17783,1.17672,1.17747,5465 +2020-07-29 15:00,1.17749,1.17753,1.1764,1.17662,4842 +2020-07-29 15:15,1.17662,1.17738,1.17658,1.17727,4452 +2020-07-29 15:30,1.17727,1.17767,1.17685,1.17754,3302 +2020-07-29 15:45,1.17754,1.1777,1.17666,1.17692,2754 +2020-07-29 16:00,1.17693,1.17773,1.17665,1.1773,3915 +2020-07-29 16:15,1.17728,1.1773,1.17682,1.17706,1618 +2020-07-29 16:30,1.17704,1.17754,1.17692,1.17741,1638 +2020-07-29 16:45,1.1774,1.17769,1.17731,1.17736,1704 +2020-07-29 17:00,1.17735,1.17763,1.17707,1.17715,2657 +2020-07-29 17:15,1.17713,1.17799,1.177,1.17778,2258 +2020-07-29 17:30,1.17778,1.17883,1.1774,1.17866,2641 +2020-07-29 17:45,1.17866,1.17906,1.17823,1.17869,2807 +2020-07-29 18:00,1.17861,1.17977,1.17728,1.17946,7141 +2020-07-29 18:15,1.17945,1.17955,1.17827,1.17845,6521 +2020-07-29 18:30,1.17848,1.18061,1.17844,1.17974,7049 +2020-07-29 18:45,1.17974,1.18023,1.17579,1.17664,11401 +2020-07-29 19:00,1.17666,1.17763,1.17539,1.17727,10628 +2020-07-29 19:15,1.17729,1.17933,1.17696,1.17832,5257 +2020-07-29 19:30,1.17831,1.17929,1.17796,1.17853,4565 +2020-07-29 19:45,1.17852,1.17868,1.17709,1.17768,3542 +2020-07-29 20:00,1.17768,1.17848,1.17764,1.17841,1327 +2020-07-29 20:15,1.1784,1.17892,1.1784,1.17869,749 +2020-07-29 20:30,1.17868,1.17921,1.17859,1.17918,823 +2020-07-29 20:45,1.17918,1.17971,1.17892,1.17907,1206 +2020-07-29 21:00,1.1791,1.1792,1.17835,1.17835,600 +2020-07-29 21:15,1.1785,1.17919,1.17844,1.17909,955 +2020-07-29 21:30,1.17914,1.17924,1.17871,1.17907,620 +2020-07-29 21:45,1.17907,1.17931,1.17892,1.17924,844 +2020-07-29 22:00,1.17924,1.17928,1.17913,1.17916,534 +2020-07-29 22:15,1.17914,1.17931,1.17914,1.17921,352 +2020-07-29 22:30,1.17921,1.17921,1.17903,1.17908,306 +2020-07-29 22:45,1.17908,1.17908,1.17894,1.17897,419 +2020-07-29 23:00,1.17895,1.17897,1.17862,1.17876,1228 +2020-07-29 23:15,1.17876,1.17882,1.1785,1.1785,948 +2020-07-29 23:30,1.17852,1.17885,1.17848,1.1786,877 +2020-07-29 23:45,1.17861,1.17868,1.17805,1.17806,890 +2020-07-30 00:00,1.17809,1.17845,1.17805,1.17823,1922 +2020-07-30 00:15,1.17823,1.17829,1.17736,1.17768,2468 +2020-07-30 00:30,1.17768,1.17772,1.17722,1.17751,1868 +2020-07-30 00:45,1.1775,1.17806,1.17746,1.17795,1833 +2020-07-30 01:00,1.17796,1.17839,1.17709,1.17712,2445 +2020-07-30 01:15,1.17714,1.17723,1.17695,1.17715,2697 +2020-07-30 01:30,1.17714,1.17777,1.17703,1.17767,2746 +2020-07-30 01:45,1.17767,1.17771,1.17685,1.17702,2021 +2020-07-30 02:00,1.17702,1.17713,1.17656,1.17697,2745 +2020-07-30 02:15,1.17698,1.17726,1.1769,1.17718,1348 +2020-07-30 02:30,1.17719,1.17764,1.17718,1.17755,935 +2020-07-30 02:45,1.17754,1.17774,1.17743,1.1777,1031 +2020-07-30 03:00,1.1777,1.17809,1.17742,1.17791,1677 +2020-07-30 03:15,1.17794,1.1785,1.17786,1.17816,1631 +2020-07-30 03:30,1.17817,1.17821,1.17776,1.17779,1330 +2020-07-30 03:45,1.17778,1.1779,1.17747,1.17762,1226 +2020-07-30 04:00,1.17762,1.17766,1.17716,1.17721,3859 +2020-07-30 04:15,1.1772,1.17738,1.17695,1.17695,1648 +2020-07-30 04:30,1.17696,1.17743,1.17695,1.17733,1324 +2020-07-30 04:45,1.17734,1.17754,1.17664,1.17683,1632 +2020-07-30 05:00,1.17683,1.17692,1.17654,1.17662,1910 +2020-07-30 05:15,1.17662,1.17664,1.17602,1.17622,10867 +2020-07-30 05:30,1.17623,1.1769,1.17609,1.17644,2297 +2020-07-30 05:45,1.17645,1.17653,1.17589,1.17597,2246 +2020-07-30 06:00,1.17598,1.17629,1.17564,1.17565,5000 +2020-07-30 06:15,1.17565,1.17584,1.17511,1.17541,3408 +2020-07-30 06:30,1.17541,1.17569,1.17493,1.17533,3573 +2020-07-30 06:45,1.17531,1.17586,1.17514,1.17564,3396 +2020-07-30 07:00,1.17563,1.17642,1.17499,1.1752,6207 +2020-07-30 07:15,1.17521,1.17603,1.17458,1.17557,6652 +2020-07-30 07:30,1.17557,1.17648,1.17519,1.176,5484 +2020-07-30 07:45,1.17602,1.17639,1.17526,1.17577,5155 +2020-07-30 08:00,1.17578,1.1764,1.17526,1.17569,6143 +2020-07-30 08:15,1.17569,1.17617,1.17487,1.175,5587 +2020-07-30 08:30,1.175,1.17571,1.17422,1.17435,5415 +2020-07-30 08:45,1.17434,1.17499,1.17402,1.17418,3759 +2020-07-30 09:00,1.17421,1.17437,1.17308,1.17363,4921 +2020-07-30 09:15,1.17363,1.1744,1.1732,1.1744,8509 +2020-07-30 09:30,1.17441,1.17562,1.17437,1.17546,3249 +2020-07-30 09:45,1.17546,1.17615,1.17543,1.17574,3872 +2020-07-30 10:00,1.17573,1.17574,1.17503,1.17563,2721 +2020-07-30 10:15,1.17564,1.17586,1.17512,1.17537,2919 +2020-07-30 10:30,1.17537,1.17552,1.17423,1.1748,3041 +2020-07-30 10:45,1.17479,1.17526,1.17431,1.17469,3712 +2020-07-30 11:00,1.1747,1.17511,1.1746,1.17499,2562 +2020-07-30 11:15,1.17498,1.1759,1.17482,1.17587,2282 +2020-07-30 11:30,1.17588,1.176,1.1745,1.1749,4915 +2020-07-30 11:45,1.17491,1.17563,1.17443,1.17487,2974 +2020-07-30 12:00,1.17486,1.17532,1.17423,1.17426,3892 +2020-07-30 12:15,1.17425,1.17557,1.17423,1.17526,3521 +2020-07-30 12:30,1.17523,1.17584,1.1748,1.17584,6673 +2020-07-30 12:45,1.17584,1.17789,1.17535,1.1777,4831 +2020-07-30 13:00,1.17771,1.17963,1.17739,1.17868,8836 +2020-07-30 13:15,1.17869,1.17956,1.17793,1.17919,6360 +2020-07-30 13:30,1.17917,1.18097,1.17899,1.18017,8544 +2020-07-30 13:45,1.18018,1.1805,1.17867,1.17878,6688 +2020-07-30 14:00,1.17878,1.17952,1.17739,1.1794,12155 +2020-07-30 14:15,1.17939,1.17947,1.17807,1.17871,9642 +2020-07-30 14:30,1.17873,1.17909,1.17761,1.17775,6905 +2020-07-30 14:45,1.17775,1.17973,1.1774,1.17951,24123 +2020-07-30 15:00,1.17953,1.17957,1.17784,1.17795,6351 +2020-07-30 15:15,1.17794,1.17836,1.17749,1.17777,4724 +2020-07-30 15:30,1.17777,1.17878,1.17767,1.17866,5564 +2020-07-30 15:45,1.17864,1.17946,1.17857,1.17902,2573 +2020-07-30 16:00,1.17903,1.17981,1.179,1.17981,3257 +2020-07-30 16:15,1.17981,1.18027,1.17941,1.17962,3814 +2020-07-30 16:30,1.17964,1.1806,1.17962,1.18041,2863 +2020-07-30 16:45,1.18043,1.18061,1.18015,1.18036,2164 +2020-07-30 17:00,1.18034,1.18219,1.1802,1.18218,3799 +2020-07-30 17:15,1.18218,1.18272,1.18179,1.1823,4573 +2020-07-30 17:30,1.1823,1.18341,1.18209,1.18305,2718 +2020-07-30 17:45,1.18304,1.18318,1.18261,1.18281,1890 +2020-07-30 18:00,1.18281,1.18303,1.18247,1.18258,1490 +2020-07-30 18:15,1.1826,1.18306,1.1826,1.18303,2333 +2020-07-30 18:30,1.18303,1.18348,1.18298,1.1834,2129 +2020-07-30 18:45,1.18341,1.18385,1.18303,1.18385,2333 +2020-07-30 19:00,1.18386,1.18443,1.1837,1.18403,3463 +2020-07-30 19:15,1.18402,1.18414,1.18382,1.18386,1700 +2020-07-30 19:30,1.18386,1.18418,1.18371,1.18417,1547 +2020-07-30 19:45,1.18416,1.18447,1.18405,1.18447,2110 +2020-07-30 20:00,1.18445,1.18456,1.1843,1.18442,1202 +2020-07-30 20:15,1.18442,1.18479,1.18435,1.18443,536 +2020-07-30 20:30,1.18443,1.18477,1.18441,1.18476,904 +2020-07-30 20:45,1.18475,1.18482,1.18463,1.18467,516 +2020-07-30 21:00,1.18465,1.1847,1.18453,1.18461,106 +2020-07-30 21:15,1.18461,1.18461,1.18365,1.18402,367 +2020-07-30 21:30,1.18401,1.1841,1.18388,1.1841,78 +2020-07-30 21:45,1.18409,1.18418,1.1837,1.18412,363 +2020-07-30 22:00,1.18414,1.18451,1.18401,1.18417,1427 +2020-07-30 22:15,1.18418,1.18469,1.18407,1.18449,822 +2020-07-30 22:30,1.1845,1.18454,1.18427,1.18448,673 +2020-07-30 22:45,1.18448,1.18486,1.18441,1.18479,1097 +2020-07-30 23:00,1.18481,1.18488,1.1843,1.18484,1438 +2020-07-30 23:15,1.18481,1.18762,1.18477,1.18682,15828 +2020-07-30 23:30,1.18683,1.18734,1.18632,1.18664,3608 +2020-07-30 23:45,1.18664,1.18754,1.18653,1.18719,1156 +2020-07-31 00:00,1.18718,1.18882,1.18665,1.1874,11247 +2020-07-31 00:15,1.1874,1.18885,1.18657,1.18662,5030 +2020-07-31 00:30,1.18663,1.18731,1.1863,1.18701,3287 +2020-07-31 00:45,1.187,1.18709,1.1862,1.18659,8913 +2020-07-31 01:00,1.18662,1.18701,1.18618,1.18698,2896 +2020-07-31 01:15,1.18699,1.18755,1.18685,1.18748,2846 +2020-07-31 01:30,1.18749,1.18825,1.18723,1.1879,3105 +2020-07-31 01:45,1.1879,1.18846,1.18787,1.18832,3423 +2020-07-31 02:00,1.18832,1.18941,1.18825,1.18841,4168 +2020-07-31 02:15,1.18841,1.18898,1.1882,1.18875,2451 +2020-07-31 02:30,1.18876,1.19047,1.1882,1.18961,4287 +2020-07-31 02:45,1.18961,1.18968,1.18887,1.18904,3089 +2020-07-31 03:00,1.18904,1.18932,1.1884,1.18892,2865 +2020-07-31 03:15,1.18891,1.18892,1.18826,1.18858,2628 +2020-07-31 03:30,1.18857,1.189,1.18833,1.18894,2539 +2020-07-31 03:45,1.18895,1.18928,1.18889,1.18918,1171 +2020-07-31 04:00,1.18918,1.18962,1.18894,1.18919,2198 +2020-07-31 04:15,1.18918,1.18953,1.18889,1.18892,1589 +2020-07-31 04:30,1.18894,1.18923,1.18851,1.18879,3802 +2020-07-31 04:45,1.1888,1.18976,1.1887,1.18976,5875 +2020-07-31 05:00,1.18974,1.18978,1.18914,1.18956,3113 +2020-07-31 05:15,1.18956,1.18958,1.18904,1.18957,2087 +2020-07-31 05:30,1.1896,1.18966,1.18873,1.1891,7678 +2020-07-31 05:45,1.18911,1.18926,1.18859,1.1888,2973 +2020-07-31 06:00,1.1888,1.18901,1.18822,1.18826,4188 +2020-07-31 06:15,1.18826,1.1886,1.18769,1.1886,8960 +2020-07-31 06:30,1.1886,1.19006,1.18829,1.18985,4066 +2020-07-31 06:45,1.18985,1.19087,1.18949,1.19014,3491 +2020-07-31 07:00,1.19013,1.19036,1.1887,1.18922,5723 +2020-07-31 07:15,1.18922,1.18946,1.18845,1.18934,66125 +2020-07-31 07:30,1.18932,1.19006,1.18845,1.18859,5294 +2020-07-31 07:45,1.1886,1.18896,1.1874,1.18755,5400 +2020-07-31 08:00,1.18756,1.18859,1.18744,1.18844,4354 +2020-07-31 08:15,1.18846,1.18846,1.18673,1.18679,7809 +2020-07-31 08:30,1.1868,1.18694,1.18606,1.18609,4472 +2020-07-31 08:45,1.18609,1.18614,1.18521,1.18577,5429 +2020-07-31 09:00,1.18577,1.18582,1.18383,1.18442,5280 +2020-07-31 09:15,1.18443,1.18475,1.1839,1.18462,4241 +2020-07-31 09:30,1.18463,1.18518,1.18423,1.18475,4414 +2020-07-31 09:45,1.18476,1.18573,1.18466,1.18571,4360 +2020-07-31 10:00,1.18569,1.18613,1.18553,1.18577,3506 +2020-07-31 10:15,1.18578,1.18623,1.18547,1.18616,3463 +2020-07-31 10:30,1.18616,1.18616,1.18514,1.18554,3499 +2020-07-31 10:45,1.18554,1.18566,1.18461,1.18497,3258 +2020-07-31 11:00,1.18498,1.18503,1.18317,1.18319,4688 +2020-07-31 11:15,1.18319,1.18349,1.18279,1.18325,5572 +2020-07-31 11:30,1.18326,1.18341,1.18273,1.18324,3892 +2020-07-31 11:45,1.18324,1.18414,1.18318,1.18397,4466 +2020-07-31 12:00,1.18397,1.18491,1.18367,1.18481,3668 +2020-07-31 12:15,1.1848,1.18523,1.18402,1.18474,2952 +2020-07-31 12:30,1.18478,1.18487,1.1837,1.18411,4654 +2020-07-31 12:45,1.18411,1.1848,1.184,1.18436,5051 +2020-07-31 13:00,1.18438,1.18455,1.18285,1.18422,11858 +2020-07-31 13:15,1.18426,1.18429,1.18169,1.18228,25419 +2020-07-31 13:30,1.18228,1.18257,1.18018,1.18189,21192 +2020-07-31 13:45,1.1819,1.18271,1.18087,1.18244,5469 +2020-07-31 14:00,1.18243,1.18412,1.182,1.18405,6433 +2020-07-31 14:15,1.18405,1.18511,1.18332,1.18354,6556 +2020-07-31 14:30,1.18356,1.18447,1.18315,1.1843,47973 +2020-07-31 14:45,1.1843,1.18463,1.18203,1.1831,17678 +2020-07-31 15:00,1.18308,1.18339,1.18184,1.18316,19682 +2020-07-31 15:15,1.18314,1.18395,1.18195,1.18213,7256 +2020-07-31 15:30,1.18212,1.18265,1.18119,1.18222,12189 +2020-07-31 15:45,1.18222,1.1829,1.1816,1.18218,5177 +2020-07-31 16:00,1.18217,1.18218,1.1786,1.17898,7114 +2020-07-31 16:15,1.179,1.1795,1.17864,1.17928,5523 +2020-07-31 16:30,1.17927,1.17938,1.17617,1.17818,14311 +2020-07-31 16:45,1.17819,1.1793,1.17817,1.17911,4202 +2020-07-31 17:00,1.17911,1.18009,1.17901,1.17966,4119 +2020-07-31 17:15,1.1797,1.18047,1.17968,1.18008,3179 +2020-07-31 17:30,1.18008,1.18053,1.17855,1.17993,4813 +2020-07-31 17:45,1.17992,1.18004,1.17882,1.17896,2875 +2020-07-31 18:00,1.17899,1.17947,1.17853,1.17894,14403 +2020-07-31 18:15,1.17894,1.17936,1.17847,1.17865,1384 +2020-07-31 18:30,1.17865,1.17876,1.17781,1.17856,2079 +2020-07-31 18:45,1.17857,1.17895,1.17803,1.17885,2677 +2020-07-31 19:00,1.17885,1.17927,1.17826,1.17901,2728 +2020-07-31 19:15,1.17901,1.17916,1.17833,1.1788,1939 +2020-07-31 19:30,1.1788,1.17887,1.17811,1.17814,1790 +2020-07-31 19:45,1.17813,1.17837,1.17746,1.17787,2603 +2020-07-31 20:00,1.17787,1.17834,1.17748,1.17754,1515 +2020-07-31 20:15,1.17753,1.17781,1.17748,1.17768,559 +2020-07-31 20:30,1.17768,1.17781,1.1772,1.17732,787 +2020-07-31 20:45,1.17734,1.17796,1.17693,1.17753,2523 +2020-08-02 21:00,1.17725,1.17768,1.17717,1.17736,64 +2020-08-02 21:15,1.17751,1.17766,1.1773,1.17761,32 +2020-08-02 21:30,1.17761,1.17781,1.17758,1.17758,71 +2020-08-02 21:45,1.17758,1.17764,1.17729,1.17747,63 +2020-08-02 22:00,1.17747,1.1783,1.17725,1.17829,1196 +2020-08-02 22:15,1.17831,1.17882,1.17824,1.17873,619 +2020-08-02 22:30,1.17872,1.17928,1.17825,1.17916,775 +2020-08-02 22:45,1.17916,1.17963,1.17912,1.17942,689 +2020-08-02 23:00,1.17943,1.17966,1.17875,1.17884,737 +2020-08-02 23:15,1.17885,1.17885,1.17834,1.17859,1117 +2020-08-02 23:30,1.17858,1.17869,1.17779,1.17804,1227 +2020-08-02 23:45,1.17802,1.17822,1.17772,1.1781,1114 +2020-08-03 00:00,1.17809,1.17887,1.17631,1.17649,5827 +2020-08-03 00:15,1.1765,1.177,1.17405,1.17497,3830 +2020-08-03 00:30,1.17497,1.17551,1.17451,1.17534,2827 +2020-08-03 00:45,1.17533,1.17595,1.17518,1.17532,2270 +2020-08-03 01:00,1.17533,1.17628,1.17448,1.17604,3843 +2020-08-03 01:15,1.17605,1.17639,1.17541,1.17541,3420 +2020-08-03 01:30,1.17541,1.17651,1.17517,1.17622,2023 +2020-08-03 01:45,1.17623,1.17722,1.17565,1.17712,4812 +2020-08-03 02:00,1.17712,1.17726,1.17646,1.17666,2324 +2020-08-03 02:15,1.17666,1.17675,1.17626,1.17656,1830 +2020-08-03 02:30,1.17657,1.17731,1.17657,1.17681,2264 +2020-08-03 02:45,1.17683,1.17713,1.17665,1.17677,1328 +2020-08-03 03:00,1.17681,1.17744,1.17681,1.17701,2798 +2020-08-03 03:15,1.17701,1.17718,1.17662,1.17677,1684 +2020-08-03 03:30,1.17677,1.17736,1.17677,1.17731,1229 +2020-08-03 03:45,1.1773,1.17757,1.17714,1.17728,1377 +2020-08-03 04:00,1.17727,1.17753,1.17711,1.17746,1035 +2020-08-03 04:15,1.17747,1.17782,1.17747,1.17771,1236 +2020-08-03 04:30,1.17771,1.17821,1.17749,1.17811,1562 +2020-08-03 04:45,1.1781,1.17811,1.17754,1.17756,1694 +2020-08-03 05:00,1.17755,1.17788,1.17725,1.17746,1482 +2020-08-03 05:15,1.17746,1.17747,1.1767,1.17673,1930 +2020-08-03 05:30,1.17672,1.17742,1.1767,1.17697,1433 +2020-08-03 05:45,1.17695,1.1775,1.17691,1.17738,1568 +2020-08-03 06:00,1.17741,1.17752,1.17591,1.17618,3052 +2020-08-03 06:15,1.17619,1.17619,1.17525,1.17542,2697 +2020-08-03 06:30,1.17543,1.17576,1.17488,1.17536,3495 +2020-08-03 06:45,1.17537,1.17543,1.17496,1.175,2420 +2020-08-03 07:00,1.175,1.1762,1.17498,1.17615,5234 +2020-08-03 07:15,1.17615,1.1768,1.17579,1.17588,4263 +2020-08-03 07:30,1.17588,1.17652,1.17577,1.17599,3715 +2020-08-03 07:45,1.17601,1.17658,1.17507,1.17621,4586 +2020-08-03 08:00,1.17624,1.1772,1.17591,1.1766,24692 +2020-08-03 08:15,1.1766,1.17753,1.17655,1.17716,8052 +2020-08-03 08:30,1.17715,1.17849,1.17687,1.17778,4539 +2020-08-03 08:45,1.17777,1.1783,1.1775,1.1779,4217 +2020-08-03 09:00,1.1779,1.17796,1.17624,1.17639,4063 +2020-08-03 09:15,1.17639,1.1766,1.17532,1.17568,3024 +2020-08-03 09:30,1.17567,1.17571,1.17505,1.17569,3441 +2020-08-03 09:45,1.17569,1.17577,1.17422,1.17444,2872 +2020-08-03 10:00,1.17444,1.1745,1.17349,1.17402,3061 +2020-08-03 10:15,1.17403,1.17418,1.17139,1.17199,35672 +2020-08-03 10:30,1.17198,1.17282,1.17171,1.17252,4423 +2020-08-03 10:45,1.17253,1.1728,1.17181,1.17248,3796 +2020-08-03 11:00,1.17248,1.17346,1.17246,1.17318,3351 +2020-08-03 11:15,1.17318,1.17329,1.17273,1.1731,2385 +2020-08-03 11:30,1.17311,1.17326,1.17261,1.17289,2686 +2020-08-03 11:45,1.17289,1.17327,1.17251,1.17252,3044 +2020-08-03 12:00,1.17251,1.17321,1.1724,1.17257,2229 +2020-08-03 12:15,1.17256,1.17293,1.17189,1.17244,3569 +2020-08-03 12:30,1.17246,1.17342,1.17244,1.17275,4588 +2020-08-03 12:45,1.17275,1.17278,1.1706,1.17074,4920 +2020-08-03 13:00,1.17074,1.17104,1.16959,1.17037,6135 +2020-08-03 13:15,1.1704,1.17116,1.1702,1.17105,4178 +2020-08-03 13:30,1.17106,1.17106,1.16999,1.17074,6371 +2020-08-03 13:45,1.17074,1.17243,1.17059,1.1723,5887 +2020-08-03 14:00,1.1723,1.17421,1.17216,1.174,6578 +2020-08-03 14:15,1.17401,1.17414,1.17301,1.1733,4875 +2020-08-03 14:30,1.17331,1.17377,1.17232,1.17299,4993 +2020-08-03 14:45,1.17299,1.17432,1.17272,1.17379,8164 +2020-08-03 15:00,1.17379,1.17432,1.17335,1.17388,4219 +2020-08-03 15:15,1.17388,1.1747,1.17387,1.17417,3839 +2020-08-03 15:30,1.17415,1.17426,1.17358,1.17419,3196 +2020-08-03 15:45,1.17418,1.17507,1.17401,1.17496,3083 +2020-08-03 16:00,1.17497,1.17519,1.17483,1.1749,2512 +2020-08-03 16:15,1.1749,1.17516,1.17466,1.17477,2042 +2020-08-03 16:30,1.17476,1.17492,1.17381,1.17411,2629 +2020-08-03 16:45,1.1741,1.17502,1.1741,1.17491,1535 +2020-08-03 17:00,1.17491,1.17557,1.1747,1.1752,2198 +2020-08-03 17:15,1.1752,1.17562,1.17512,1.17556,2077 +2020-08-03 17:30,1.17556,1.17571,1.17513,1.17554,2424 +2020-08-03 17:45,1.17553,1.17585,1.1751,1.17518,1624 +2020-08-03 18:00,1.17522,1.17567,1.17507,1.17548,1721 +2020-08-03 18:15,1.17547,1.17569,1.17514,1.17514,1271 +2020-08-03 18:30,1.17514,1.17631,1.17512,1.17608,2172 +2020-08-03 18:45,1.17608,1.17622,1.17552,1.1759,1634 +2020-08-03 19:00,1.17589,1.17639,1.1758,1.17616,1178 +2020-08-03 19:15,1.17617,1.17656,1.17608,1.17621,1039 +2020-08-03 19:30,1.1762,1.17639,1.17585,1.17622,1504 +2020-08-03 19:45,1.17621,1.17651,1.17601,1.1764,1797 +2020-08-03 20:00,1.17639,1.17676,1.17622,1.17643,827 +2020-08-03 20:15,1.17642,1.17675,1.17642,1.17672,518 +2020-08-03 20:30,1.17671,1.17678,1.1765,1.17671,524 +2020-08-03 20:45,1.1767,1.1767,1.17617,1.17617,362 +2020-08-03 21:00,1.17633,1.17653,1.17573,1.17612,212 +2020-08-03 21:15,1.17612,1.17628,1.17567,1.17615,394 +2020-08-03 21:30,1.17616,1.17644,1.17597,1.17604,121 +2020-08-03 21:45,1.17606,1.17612,1.17586,1.17596,69 +2020-08-03 22:00,1.17607,1.17658,1.17594,1.17632,1139 +2020-08-03 22:15,1.17631,1.17636,1.17606,1.17612,556 +2020-08-03 22:30,1.17611,1.1762,1.17601,1.17605,444 +2020-08-03 22:45,1.17611,1.17612,1.17593,1.17603,337 +2020-08-03 23:00,1.17603,1.17609,1.17575,1.17579,735 +2020-08-03 23:15,1.17578,1.17578,1.1756,1.17568,556 +2020-08-03 23:30,1.17569,1.17602,1.17569,1.17587,557 +2020-08-03 23:45,1.17587,1.17606,1.17582,1.17603,830 +2020-08-04 00:00,1.17603,1.17614,1.17529,1.17531,1726 +2020-08-04 00:15,1.17532,1.17599,1.17525,1.17572,1027 +2020-08-04 00:30,1.17572,1.17604,1.17524,1.17524,927 +2020-08-04 00:45,1.17527,1.17565,1.17521,1.17535,1410 +2020-08-04 01:00,1.17537,1.1758,1.17535,1.17552,1960 +2020-08-04 01:15,1.17553,1.17592,1.17544,1.17565,1237 +2020-08-04 01:30,1.17564,1.17592,1.17533,1.17565,1879 +2020-08-04 01:45,1.17566,1.1759,1.17552,1.17583,1254 +2020-08-04 02:00,1.17583,1.17646,1.17569,1.17646,1540 +2020-08-04 02:15,1.17646,1.17651,1.1762,1.17646,1260 +2020-08-04 02:30,1.17646,1.17733,1.17646,1.17712,2177 +2020-08-04 02:45,1.17711,1.17731,1.17689,1.17721,1456 +2020-08-04 03:00,1.1772,1.17738,1.17677,1.17688,1064 +2020-08-04 03:15,1.17687,1.17687,1.17639,1.17643,916 +2020-08-04 03:30,1.17641,1.17671,1.17639,1.17648,1087 +2020-08-04 03:45,1.17649,1.17676,1.17635,1.17676,1106 +2020-08-04 04:00,1.17676,1.17692,1.17669,1.17686,915 +2020-08-04 04:15,1.17688,1.17703,1.17676,1.17676,1088 +2020-08-04 04:30,1.17677,1.17724,1.17675,1.17718,1927 +2020-08-04 04:45,1.17718,1.17745,1.17715,1.17738,883 +2020-08-04 05:00,1.17737,1.1777,1.17675,1.17679,1303 +2020-08-04 05:15,1.17679,1.17697,1.17665,1.17681,1067 +2020-08-04 05:30,1.1768,1.17689,1.1764,1.17648,972 +2020-08-04 05:45,1.17647,1.17732,1.17647,1.17665,1421 +2020-08-04 06:00,1.17666,1.17709,1.17639,1.17701,2225 +2020-08-04 06:15,1.177,1.17743,1.17679,1.17737,2342 +2020-08-04 06:30,1.17738,1.17781,1.17711,1.17728,2670 +2020-08-04 06:45,1.17728,1.178,1.17656,1.17768,3510 +2020-08-04 07:00,1.17767,1.17839,1.17715,1.17796,5638 +2020-08-04 07:15,1.17797,1.17955,1.1778,1.17943,4859 +2020-08-04 07:30,1.17941,1.18026,1.17919,1.18011,4800 +2020-08-04 07:45,1.1801,1.18021,1.17828,1.17865,6717 +2020-08-04 08:00,1.17865,1.1793,1.17837,1.17901,10656 +2020-08-04 08:15,1.17901,1.17924,1.17809,1.17826,15150 +2020-08-04 08:30,1.17825,1.17836,1.17727,1.17817,7540 +2020-08-04 08:45,1.17818,1.17949,1.17813,1.17924,3444 +2020-08-04 09:00,1.17924,1.1798,1.1792,1.17956,3727 +2020-08-04 09:15,1.17955,1.18037,1.17946,1.17983,3081 +2020-08-04 09:30,1.17984,1.18059,1.17959,1.17988,3392 +2020-08-04 09:45,1.17988,1.18007,1.17931,1.17947,6380 +2020-08-04 10:00,1.17945,1.17951,1.17854,1.17863,3902 +2020-08-04 10:15,1.17862,1.17905,1.17815,1.17875,3031 +2020-08-04 10:30,1.17877,1.17877,1.17753,1.17756,4438 +2020-08-04 10:45,1.17759,1.17788,1.1768,1.17699,3578 +2020-08-04 11:00,1.177,1.17728,1.1765,1.1771,3924 +2020-08-04 11:15,1.1771,1.17732,1.17629,1.17695,3153 +2020-08-04 11:30,1.17695,1.177,1.1756,1.17576,6468 +2020-08-04 11:45,1.17576,1.17634,1.17543,1.17609,3924 +2020-08-04 12:00,1.17609,1.1766,1.17545,1.17651,3993 +2020-08-04 12:15,1.17653,1.17712,1.17581,1.17589,4249 +2020-08-04 12:30,1.17588,1.17617,1.17409,1.17456,5168 +2020-08-04 12:45,1.17455,1.17471,1.1722,1.17282,7340 +2020-08-04 13:00,1.17283,1.17345,1.17259,1.17334,5481 +2020-08-04 13:15,1.17337,1.17347,1.17237,1.17273,3857 +2020-08-04 13:30,1.17274,1.17381,1.1726,1.17342,6417 +2020-08-04 13:45,1.17343,1.1737,1.17211,1.17242,8048 +2020-08-04 14:00,1.17241,1.17413,1.17238,1.17343,6164 +2020-08-04 14:15,1.17346,1.17447,1.17319,1.17425,5968 +2020-08-04 14:30,1.17424,1.17597,1.17365,1.17576,6260 +2020-08-04 14:45,1.17574,1.17643,1.1752,1.17565,13847 +2020-08-04 15:00,1.17566,1.17636,1.17506,1.17629,18339 +2020-08-04 15:15,1.17628,1.17736,1.1762,1.17693,15174 +2020-08-04 15:30,1.17691,1.17715,1.17641,1.17685,14030 +2020-08-04 15:45,1.17685,1.17694,1.17641,1.17652,10467 +2020-08-04 16:00,1.17652,1.17715,1.17644,1.17707,11447 +2020-08-04 16:15,1.17708,1.17762,1.17686,1.17721,10662 +2020-08-04 16:30,1.17721,1.17741,1.17695,1.17717,8867 +2020-08-04 16:45,1.17716,1.17777,1.17695,1.17777,8023 +2020-08-04 17:00,1.17777,1.17827,1.17757,1.17819,9726 +2020-08-04 17:15,1.17818,1.17836,1.17765,1.17802,8964 +2020-08-04 17:30,1.17802,1.17852,1.17796,1.17836,7924 +2020-08-04 17:45,1.17837,1.17841,1.17799,1.17828,5728 +2020-08-04 18:00,1.17828,1.17913,1.17821,1.17862,7130 +2020-08-04 18:15,1.17861,1.17862,1.17799,1.17806,5561 +2020-08-04 18:30,1.17807,1.17807,1.17746,1.17784,6389 +2020-08-04 18:45,1.17786,1.17844,1.17783,1.17823,8518 +2020-08-04 19:00,1.1782,1.17977,1.17819,1.17961,10512 +2020-08-04 19:15,1.17961,1.17974,1.17932,1.17951,6681 +2020-08-04 19:30,1.17954,1.1801,1.17954,1.18,7941 +2020-08-04 19:45,1.17998,1.1803,1.1799,1.18026,5414 +2020-08-04 20:00,1.18027,1.18028,1.17977,1.17989,3325 +2020-08-04 20:15,1.17988,1.17996,1.17958,1.17969,1830 +2020-08-04 20:30,1.17969,1.17969,1.17945,1.1796,2854 +2020-08-04 20:45,1.17961,1.18028,1.17955,1.18028,1920 +2020-08-04 21:00,1.18026,1.18026,1.17985,1.18008,1271 +2020-08-04 21:15,1.18007,1.18008,1.17975,1.18001,351 +2020-08-04 21:30,1.17999,1.18003,1.17975,1.17975,3606 +2020-08-04 21:45,1.17975,1.17975,1.1796,1.17967,119 +2020-08-04 22:00,1.17964,1.18002,1.17941,1.17947,1627 +2020-08-04 22:15,1.17947,1.17973,1.17944,1.17966,919 +2020-08-04 22:30,1.17965,1.17967,1.17929,1.1794,1171 +2020-08-04 22:45,1.17939,1.17985,1.17936,1.17979,1547 +2020-08-04 23:00,1.17981,1.17994,1.17943,1.1795,2612 +2020-08-04 23:15,1.17951,1.17976,1.17945,1.17972,2534 +2020-08-04 23:30,1.17971,1.18017,1.17971,1.18012,3618 +2020-08-04 23:45,1.18011,1.18148,1.18011,1.18136,5911 +2020-08-05 00:00,1.18135,1.1815,1.18078,1.18081,7889 +2020-08-05 00:15,1.18082,1.18107,1.18052,1.18057,3707 +2020-08-05 00:30,1.18057,1.18057,1.18009,1.18042,5580 +2020-08-05 00:45,1.18041,1.18107,1.1804,1.18091,7338 +2020-08-05 01:00,1.18091,1.18122,1.18049,1.18066,8831 +2020-08-05 01:15,1.18067,1.18127,1.18061,1.18116,6152 +2020-08-05 01:30,1.18117,1.18135,1.18082,1.18134,6084 +2020-08-05 01:45,1.18134,1.18135,1.181,1.181,3976 +2020-08-05 02:00,1.18098,1.18108,1.18062,1.18092,6714 +2020-08-05 02:15,1.18092,1.18125,1.18075,1.18123,4548 +2020-08-05 02:30,1.18123,1.18214,1.1812,1.18173,4643 +2020-08-05 02:45,1.18172,1.18211,1.18163,1.18196,6051 +2020-08-05 03:00,1.18197,1.182,1.18145,1.18145,5027 +2020-08-05 03:15,1.18146,1.18153,1.1812,1.18126,4510 +2020-08-05 03:30,1.18127,1.18154,1.18126,1.18148,3602 +2020-08-05 03:45,1.18146,1.18157,1.18126,1.18151,3330 +2020-08-05 04:00,1.18152,1.18171,1.18142,1.18167,3003 +2020-08-05 04:15,1.18166,1.18171,1.18138,1.18142,3826 +2020-08-05 04:30,1.18144,1.18159,1.18131,1.18159,2696 +2020-08-05 04:45,1.18159,1.18182,1.18153,1.18168,3004 +2020-08-05 05:00,1.18168,1.18178,1.18149,1.18157,3899 +2020-08-05 05:15,1.18157,1.18168,1.18114,1.18116,4603 +2020-08-05 05:30,1.18115,1.18129,1.18097,1.181,3692 +2020-08-05 05:45,1.18101,1.18123,1.18029,1.18031,5279 +2020-08-05 06:00,1.18029,1.18076,1.1802,1.18073,7241 +2020-08-05 06:15,1.18071,1.18136,1.17992,1.18126,13027 +2020-08-05 06:30,1.18127,1.18187,1.18114,1.18183,12590 +2020-08-05 06:45,1.18184,1.18259,1.18157,1.18243,15025 +2020-08-05 07:00,1.18242,1.18242,1.18149,1.18165,16569 +2020-08-05 07:15,1.18164,1.18287,1.18149,1.18216,16260 +2020-08-05 07:30,1.18217,1.18297,1.18164,1.18265,15505 +2020-08-05 07:45,1.18267,1.18299,1.18201,1.18202,14974 +2020-08-05 08:00,1.18202,1.18256,1.18137,1.18185,14617 +2020-08-05 08:15,1.18186,1.18198,1.18067,1.18082,14046 +2020-08-05 08:30,1.18082,1.18187,1.18073,1.18171,13939 +2020-08-05 08:45,1.1817,1.18414,1.1817,1.18402,16575 +2020-08-05 09:00,1.18405,1.18437,1.18339,1.18415,17201 +2020-08-05 09:15,1.18416,1.18446,1.18355,1.18396,28477 +2020-08-05 09:30,1.18398,1.18513,1.1839,1.18508,19143 +2020-08-05 09:45,1.18509,1.18615,1.18505,1.18564,20299 +2020-08-05 10:00,1.18564,1.18616,1.18531,1.18531,19144 +2020-08-05 10:15,1.18533,1.18556,1.18478,1.18531,17597 +2020-08-05 10:30,1.18531,1.18548,1.18426,1.18463,13997 +2020-08-05 10:45,1.18462,1.18477,1.18317,1.18336,15978 +2020-08-05 11:00,1.18337,1.18418,1.18327,1.18378,15854 +2020-08-05 11:15,1.18381,1.18511,1.18373,1.18498,15368 +2020-08-05 11:30,1.18498,1.18564,1.18487,1.18504,17008 +2020-08-05 11:45,1.18503,1.18559,1.18472,1.18549,18164 +2020-08-05 12:00,1.1855,1.18554,1.18475,1.18531,13365 +2020-08-05 12:15,1.18529,1.18809,1.18529,1.18775,23661 +2020-08-05 12:30,1.18774,1.18775,1.18623,1.18676,16119 +2020-08-05 12:45,1.1868,1.18787,1.18639,1.18777,18473 +2020-08-05 13:00,1.18779,1.18796,1.18628,1.18696,24716 +2020-08-05 13:15,1.18695,1.18827,1.18671,1.18748,13782 +2020-08-05 13:30,1.1875,1.18946,1.18735,1.18859,22610 +2020-08-05 13:45,1.18858,1.19,1.18858,1.18917,17242 +2020-08-05 14:00,1.18912,1.18966,1.1883,1.18928,18979 +2020-08-05 14:15,1.18928,1.19002,1.18813,1.18855,14411 +2020-08-05 14:30,1.18853,1.18976,1.18846,1.18923,24233 +2020-08-05 14:45,1.18923,1.18932,1.18711,1.18816,33365 +2020-08-05 15:00,1.18815,1.1896,1.18809,1.18935,42810 +2020-08-05 15:15,1.18935,1.19048,1.18929,1.19006,25143 +2020-08-05 15:30,1.19006,1.19019,1.18941,1.18972,14863 +2020-08-05 15:45,1.18974,1.18998,1.18908,1.18967,13859 +2020-08-05 16:00,1.18967,1.18982,1.18901,1.1895,9076 +2020-08-05 16:15,1.1895,1.18951,1.18855,1.18856,10063 +2020-08-05 16:30,1.18857,1.18857,1.18709,1.18738,13623 +2020-08-05 16:45,1.18737,1.18758,1.18671,1.18731,12527 +2020-08-05 17:00,1.18731,1.18783,1.18719,1.18773,12041 +2020-08-05 17:15,1.18773,1.18787,1.18737,1.18741,9294 +2020-08-05 17:30,1.18742,1.18742,1.18677,1.18702,11477 +2020-08-05 17:45,1.18701,1.18701,1.18625,1.18656,10995 +2020-08-05 18:00,1.18655,1.18678,1.18636,1.18643,7840 +2020-08-05 18:15,1.18645,1.18665,1.1861,1.18616,6879 +2020-08-05 18:30,1.18617,1.18622,1.18544,1.18555,7902 +2020-08-05 18:45,1.18556,1.18619,1.18554,1.18599,11330 +2020-08-05 19:00,1.186,1.1863,1.18582,1.18616,9657 +2020-08-05 19:15,1.18617,1.18658,1.18605,1.18643,7963 +2020-08-05 19:30,1.18644,1.1866,1.18615,1.18615,7404 +2020-08-05 19:45,1.18615,1.18652,1.18587,1.18591,11896 +2020-08-05 20:00,1.18591,1.18593,1.18556,1.18568,7083 +2020-08-05 20:15,1.18568,1.18609,1.18563,1.18592,3559 +2020-08-05 20:30,1.18593,1.18652,1.18591,1.18648,3222 +2020-08-05 20:45,1.18648,1.18648,1.1862,1.18629,5222 +2020-08-05 21:00,1.18627,1.1865,1.18614,1.18636,194 +2020-08-05 21:15,1.18637,1.18658,1.18632,1.18655,59 +2020-08-05 21:30,1.18659,1.18663,1.18652,1.18656,1071 +2020-08-05 21:45,1.18657,1.18664,1.18641,1.1865,192 +2020-08-05 22:00,1.1865,1.18713,1.18647,1.18698,819 +2020-08-05 22:15,1.18697,1.18759,1.18697,1.18755,2362 +2020-08-05 22:30,1.18755,1.18755,1.18724,1.18732,1465 +2020-08-05 22:45,1.18731,1.1874,1.18721,1.18724,1306 +2020-08-05 23:00,1.18724,1.18732,1.187,1.18711,2289 +2020-08-05 23:15,1.18712,1.18742,1.18703,1.18742,2551 +2020-08-05 23:30,1.18741,1.18753,1.18728,1.18739,1755 +2020-08-05 23:45,1.18738,1.1874,1.18709,1.1872,2599 +2020-08-06 00:00,1.18721,1.18833,1.18709,1.18831,9120 +2020-08-06 00:15,1.1883,1.18851,1.18785,1.18804,8972 +2020-08-06 00:30,1.18803,1.18811,1.18758,1.18808,6169 +2020-08-06 00:45,1.18807,1.18859,1.18778,1.18784,13913 +2020-08-06 01:00,1.18784,1.1882,1.18749,1.1877,10456 +2020-08-06 01:15,1.18769,1.18838,1.18766,1.188,8016 +2020-08-06 01:30,1.188,1.188,1.18747,1.18748,5873 +2020-08-06 01:45,1.18749,1.18755,1.18685,1.18718,7058 +2020-08-06 02:00,1.18719,1.18719,1.18627,1.18663,11202 +2020-08-06 02:15,1.18663,1.18708,1.18659,1.18693,9396 +2020-08-06 02:30,1.18693,1.18729,1.1867,1.18687,11845 +2020-08-06 02:45,1.18686,1.1869,1.18628,1.18634,9212 +2020-08-06 03:00,1.18635,1.18701,1.1863,1.18691,8236 +2020-08-06 03:15,1.18692,1.18745,1.18692,1.1873,9269 +2020-08-06 03:30,1.18729,1.18746,1.18699,1.18746,8625 +2020-08-06 03:45,1.18746,1.18756,1.18716,1.18725,7552 +2020-08-06 04:00,1.18725,1.18761,1.18725,1.1875,5709 +2020-08-06 04:15,1.1875,1.18759,1.18727,1.18753,6886 +2020-08-06 04:30,1.18752,1.18766,1.18735,1.18753,6432 +2020-08-06 04:45,1.18753,1.18802,1.1875,1.18791,8093 +2020-08-06 05:00,1.1879,1.18817,1.18782,1.18805,8166 +2020-08-06 05:15,1.18804,1.18843,1.1878,1.18842,5726 +2020-08-06 05:30,1.18841,1.18856,1.18784,1.1882,6889 +2020-08-06 05:45,1.18821,1.18852,1.18781,1.18813,10337 +2020-08-06 06:00,1.18816,1.1916,1.18804,1.18983,21089 +2020-08-06 06:15,1.18982,1.19031,1.18922,1.18934,19526 +2020-08-06 06:30,1.18939,1.18985,1.18736,1.18768,23371 +2020-08-06 06:45,1.18768,1.18837,1.1872,1.18803,23874 +2020-08-06 07:00,1.18802,1.18802,1.18658,1.18734,35307 +2020-08-06 07:15,1.18733,1.18789,1.18562,1.18572,32087 +2020-08-06 07:30,1.18573,1.18649,1.18553,1.18617,57938 +2020-08-06 07:45,1.18618,1.1866,1.18381,1.18424,54392 +2020-08-06 08:00,1.18424,1.18486,1.1839,1.18474,25790 +2020-08-06 08:15,1.18474,1.18562,1.18395,1.18558,20549 +2020-08-06 08:30,1.18557,1.18588,1.18396,1.18435,27477 +2020-08-06 08:45,1.18435,1.18515,1.18393,1.18423,19513 +2020-08-06 09:00,1.18423,1.18496,1.1838,1.18444,23260 +2020-08-06 09:15,1.18444,1.18549,1.18444,1.18541,20057 +2020-08-06 09:30,1.18541,1.18589,1.18496,1.18587,23729 +2020-08-06 09:45,1.18588,1.18703,1.18587,1.18606,21046 +2020-08-06 10:00,1.18606,1.18631,1.18522,1.1861,21612 +2020-08-06 10:15,1.18609,1.18646,1.1847,1.1848,22300 +2020-08-06 10:30,1.1848,1.18491,1.18411,1.18461,23234 +2020-08-06 10:45,1.18461,1.18506,1.1841,1.18426,22504 +2020-08-06 11:00,1.18428,1.18438,1.1832,1.18386,25270 +2020-08-06 11:15,1.18386,1.18501,1.1835,1.1846,20571 +2020-08-06 11:30,1.1846,1.18492,1.18408,1.18446,20079 +2020-08-06 11:45,1.18449,1.18496,1.1842,1.18472,25174 +2020-08-06 12:00,1.18473,1.18493,1.18366,1.1842,28945 +2020-08-06 12:15,1.18418,1.18524,1.184,1.18461,20572 +2020-08-06 12:30,1.18461,1.18638,1.18449,1.18592,26957 +2020-08-06 12:45,1.18591,1.18591,1.18471,1.18488,55636 +2020-08-06 13:00,1.18488,1.18535,1.1841,1.18446,16607 +2020-08-06 13:15,1.18446,1.18455,1.1832,1.18439,16836 +2020-08-06 13:30,1.18438,1.18548,1.18418,1.1854,25494 +2020-08-06 13:45,1.18541,1.18664,1.1853,1.18564,28758 +2020-08-06 14:00,1.18563,1.18585,1.18224,1.18353,26137 +2020-08-06 14:15,1.18354,1.18422,1.18255,1.1826,23924 +2020-08-06 14:30,1.18261,1.18309,1.18179,1.18243,26680 +2020-08-06 14:45,1.18244,1.18452,1.18202,1.18436,27138 +2020-08-06 15:00,1.18438,1.18547,1.18386,1.18481,27015 +2020-08-06 15:15,1.18482,1.18514,1.18425,1.18471,18828 +2020-08-06 15:30,1.1847,1.18486,1.18383,1.18427,11136 +2020-08-06 15:45,1.18426,1.18552,1.18406,1.18542,3530 +2020-08-06 16:00,1.18545,1.18904,1.18542,1.18861,13043 +2020-08-06 16:15,1.18864,1.18869,1.18727,1.18743,3714 +2020-08-06 16:30,1.18745,1.18758,1.187,1.18744,2769 +2020-08-06 16:45,1.18744,1.18799,1.1869,1.18799,3764 +2020-08-06 17:00,1.18801,1.18838,1.18726,1.18744,3639 +2020-08-06 17:15,1.18742,1.18749,1.18669,1.18723,4582 +2020-08-06 17:30,1.18722,1.18818,1.18713,1.18818,1522 +2020-08-06 17:45,1.18817,1.18935,1.18774,1.18786,3442 +2020-08-06 18:00,1.18787,1.1879,1.1871,1.18722,2992 +2020-08-06 18:15,1.18721,1.18756,1.18675,1.18686,2570 +2020-08-06 18:30,1.18685,1.18747,1.18671,1.18744,2239 +2020-08-06 18:45,1.18744,1.18774,1.18713,1.1874,2324 +2020-08-06 19:00,1.1874,1.18796,1.18633,1.18752,3174 +2020-08-06 19:15,1.18751,1.18793,1.18708,1.18727,1973 +2020-08-06 19:30,1.18726,1.18756,1.18683,1.18686,2675 +2020-08-06 19:45,1.18687,1.18748,1.18651,1.18746,2353 +2020-08-06 20:00,1.18747,1.18789,1.18723,1.18784,665 +2020-08-06 20:15,1.18782,1.18799,1.18776,1.1879,365 +2020-08-06 20:30,1.18786,1.18793,1.18741,1.18759,672 +2020-08-06 20:45,1.18761,1.18781,1.18751,1.18763,427 +2020-08-06 21:00,1.18763,1.18771,1.18706,1.18738,178 +2020-08-06 21:15,1.18738,1.18757,1.1872,1.18743,197 +2020-08-06 21:30,1.18746,1.18773,1.18743,1.18763,99 +2020-08-06 21:45,1.18771,1.18787,1.18761,1.18761,132 +2020-08-06 22:00,1.18762,1.18799,1.18762,1.18778,443 +2020-08-06 22:15,1.18779,1.18816,1.1877,1.18814,591 +2020-08-06 22:30,1.18813,1.18813,1.18789,1.18798,308 +2020-08-06 22:45,1.18797,1.18828,1.18793,1.18812,200 +2020-08-06 23:00,1.18812,1.18814,1.18752,1.18755,458 +2020-08-06 23:15,1.18756,1.18757,1.18734,1.18751,529 +2020-08-06 23:30,1.18751,1.18763,1.18732,1.18745,543 +2020-08-06 23:45,1.18745,1.18761,1.18728,1.18752,606 +2020-08-07 00:00,1.18753,1.18782,1.18718,1.18754,1228 +2020-08-07 00:15,1.18756,1.18786,1.18752,1.18777,1005 +2020-08-07 00:30,1.18777,1.18818,1.18745,1.18746,1198 +2020-08-07 00:45,1.18745,1.18767,1.18713,1.1874,1152 +2020-08-07 01:00,1.18739,1.18744,1.18696,1.18726,7647 +2020-08-07 01:15,1.18725,1.18733,1.18664,1.18686,2061 +2020-08-07 01:30,1.18686,1.18719,1.18631,1.18645,2064 +2020-08-07 01:45,1.18646,1.18698,1.18641,1.18686,1417 +2020-08-07 02:00,1.18685,1.18691,1.18638,1.18652,1286 +2020-08-07 02:15,1.18652,1.18654,1.18458,1.18466,14338 +2020-08-07 02:30,1.18469,1.18511,1.18457,1.18491,2111 +2020-08-07 02:45,1.18493,1.18493,1.1832,1.18385,14730 +2020-08-07 03:00,1.18385,1.18407,1.18323,1.18366,11232 +2020-08-07 03:15,1.18365,1.18383,1.18266,1.1828,8970 +2020-08-07 03:30,1.18279,1.18338,1.18241,1.18257,18217 +2020-08-07 03:45,1.18258,1.18304,1.1823,1.18261,1559 +2020-08-07 04:00,1.18264,1.18352,1.18195,1.18312,2494 +2020-08-07 04:15,1.18312,1.18347,1.18297,1.18305,1255 +2020-08-07 04:30,1.18304,1.18365,1.18304,1.18354,1219 +2020-08-07 04:45,1.18357,1.18376,1.18348,1.18352,1127 +2020-08-07 05:00,1.18352,1.18362,1.183,1.18334,1182 +2020-08-07 05:15,1.18335,1.1838,1.18329,1.18373,1215 +2020-08-07 05:30,1.18373,1.18426,1.1836,1.18426,1094 +2020-08-07 05:45,1.18427,1.18448,1.18412,1.18426,1058 +2020-08-07 06:00,1.18427,1.18471,1.18387,1.18396,13794 +2020-08-07 06:15,1.18396,1.18477,1.18391,1.18463,2652 +2020-08-07 06:30,1.18463,1.18468,1.18391,1.1841,2559 +2020-08-07 06:45,1.18412,1.18435,1.18299,1.18312,3517 +2020-08-07 07:00,1.18311,1.18462,1.18311,1.18462,5816 +2020-08-07 07:15,1.18462,1.18506,1.18371,1.18387,4303 +2020-08-07 07:30,1.18387,1.18445,1.18351,1.1841,4989 +2020-08-07 07:45,1.18408,1.18415,1.18337,1.18404,14534 +2020-08-07 08:00,1.18403,1.18403,1.1821,1.18276,7781 +2020-08-07 08:15,1.18277,1.18338,1.1827,1.18297,3980 +2020-08-07 08:30,1.18297,1.1832,1.18224,1.18285,4505 +2020-08-07 08:45,1.18284,1.18327,1.18273,1.18326,3344 +2020-08-07 09:00,1.18327,1.18361,1.18137,1.18236,8972 +2020-08-07 09:15,1.18237,1.18279,1.18211,1.18249,4430 +2020-08-07 09:30,1.18248,1.18248,1.18092,1.18135,5165 +2020-08-07 09:45,1.18138,1.18174,1.1811,1.1817,3131 +2020-08-07 10:00,1.18169,1.182,1.18125,1.18161,5044 +2020-08-07 10:15,1.18164,1.18238,1.18124,1.18145,3525 +2020-08-07 10:30,1.18143,1.18217,1.18132,1.18206,3012 +2020-08-07 10:45,1.18205,1.18228,1.18174,1.18228,3798 +2020-08-07 11:00,1.18226,1.18241,1.18173,1.18216,3326 +2020-08-07 11:15,1.18217,1.18241,1.18146,1.1817,3320 +2020-08-07 11:30,1.1817,1.18216,1.181,1.18135,5458 +2020-08-07 11:45,1.18135,1.18191,1.18109,1.18177,3362 +2020-08-07 12:00,1.18176,1.18203,1.18124,1.18166,3912 +2020-08-07 12:15,1.18165,1.18256,1.18109,1.18215,3599 +2020-08-07 12:30,1.18213,1.18455,1.18021,1.18408,38525 +2020-08-07 12:45,1.18409,1.18444,1.18305,1.1831,27850 +2020-08-07 13:00,1.18309,1.18331,1.17956,1.18045,10552 +2020-08-07 13:15,1.18045,1.18072,1.17682,1.17704,9940 +2020-08-07 13:30,1.17702,1.17794,1.17675,1.17704,9850 +2020-08-07 13:45,1.17707,1.17735,1.17643,1.17726,8527 +2020-08-07 14:00,1.17727,1.17733,1.17552,1.17637,9025 +2020-08-07 14:15,1.17638,1.17647,1.17551,1.1763,6333 +2020-08-07 14:30,1.17629,1.17796,1.17625,1.17779,8330 +2020-08-07 14:45,1.1778,1.17906,1.17759,1.17883,11001 +2020-08-07 15:00,1.17884,1.17968,1.17832,1.17864,5494 +2020-08-07 15:15,1.17865,1.17925,1.17855,1.17897,4431 +2020-08-07 15:30,1.17899,1.17913,1.17847,1.17883,4839 +2020-08-07 15:45,1.17884,1.17892,1.17736,1.17751,5167 +2020-08-07 16:00,1.17751,1.17815,1.1775,1.1779,3333 +2020-08-07 16:15,1.1779,1.17806,1.17726,1.17767,2398 +2020-08-07 16:30,1.17769,1.17793,1.17721,1.17721,3065 +2020-08-07 16:45,1.17725,1.17752,1.17679,1.1769,2983 +2020-08-07 17:00,1.17689,1.17737,1.17664,1.17721,2567 +2020-08-07 17:15,1.17718,1.17753,1.17698,1.17733,2008 +2020-08-07 17:30,1.17731,1.17769,1.17716,1.17753,2292 +2020-08-07 17:45,1.17757,1.1782,1.17747,1.17811,1916 +2020-08-07 18:00,1.1781,1.17841,1.17802,1.17823,2903 +2020-08-07 18:15,1.17825,1.17838,1.17782,1.17829,2605 +2020-08-07 18:30,1.17827,1.17858,1.17817,1.17832,2535 +2020-08-07 18:45,1.17834,1.17838,1.17807,1.17807,1895 +2020-08-07 19:00,1.17806,1.17846,1.17803,1.17825,1766 +2020-08-07 19:15,1.17827,1.17846,1.1781,1.17827,944 +2020-08-07 19:30,1.17827,1.17843,1.178,1.17828,1521 +2020-08-07 19:45,1.17828,1.17887,1.17817,1.17886,1057 +2020-08-07 20:00,1.17884,1.17887,1.17842,1.17843,795 +2020-08-07 20:15,1.17844,1.17866,1.1784,1.17841,384 +2020-08-07 20:30,1.17842,1.17868,1.17842,1.17851,401 +2020-08-07 20:45,1.17851,1.17865,1.17842,1.17862,444 +2020-08-09 21:00,1.17886,1.17896,1.17861,1.17871,68 +2020-08-09 21:15,1.17878,1.17892,1.17854,1.17865,24 +2020-08-09 21:30,1.17868,1.1787,1.1785,1.17853,26 +2020-08-09 21:45,1.17859,1.17859,1.17838,1.1785,42 +2020-08-09 22:00,1.17853,1.17879,1.17851,1.1787,696 +2020-08-09 22:15,1.17871,1.17884,1.17732,1.17746,1122 +2020-08-09 22:30,1.17745,1.1782,1.17739,1.17797,1423 +2020-08-09 22:45,1.17798,1.17812,1.17754,1.17758,985 +2020-08-09 23:00,1.17758,1.17828,1.17758,1.17809,1040 +2020-08-09 23:15,1.1781,1.17817,1.1779,1.17793,659 +2020-08-09 23:30,1.17792,1.17834,1.17789,1.17816,536 +2020-08-09 23:45,1.17817,1.17827,1.17809,1.1781,396 +2020-08-10 00:00,1.1781,1.17897,1.1781,1.17885,828 +2020-08-10 00:15,1.17887,1.17922,1.17887,1.17905,931 +2020-08-10 00:30,1.17904,1.17926,1.17899,1.17902,818 +2020-08-10 00:45,1.17901,1.17953,1.179,1.17938,910 +2020-08-10 01:00,1.17937,1.17946,1.17898,1.17941,1224 +2020-08-10 01:15,1.17944,1.17969,1.17899,1.17912,1162 +2020-08-10 01:30,1.17916,1.17958,1.17913,1.1795,1290 +2020-08-10 01:45,1.17951,1.17953,1.17911,1.17931,8393 +2020-08-10 02:00,1.17932,1.17965,1.17914,1.17961,700 +2020-08-10 02:15,1.17963,1.17981,1.17952,1.17963,726 +2020-08-10 02:30,1.17962,1.17982,1.1796,1.1797,697 +2020-08-10 02:45,1.1797,1.17982,1.17923,1.17927,880 +2020-08-10 03:00,1.17928,1.17928,1.17898,1.17905,1312 +2020-08-10 03:15,1.17906,1.17947,1.17906,1.17941,514 +2020-08-10 03:30,1.17943,1.17945,1.1792,1.17926,529 +2020-08-10 03:45,1.17925,1.17951,1.17919,1.1795,389 +2020-08-10 04:00,1.1795,1.17962,1.1794,1.17956,501 +2020-08-10 04:15,1.17956,1.17956,1.17937,1.1794,519 +2020-08-10 04:30,1.1794,1.17947,1.17934,1.17939,420 +2020-08-10 04:45,1.17938,1.17938,1.17903,1.17908,549 +2020-08-10 05:00,1.17908,1.17938,1.17895,1.17937,421 +2020-08-10 05:15,1.17937,1.17941,1.17911,1.17911,447 +2020-08-10 05:30,1.17911,1.17937,1.1791,1.17928,474 +2020-08-10 05:45,1.17928,1.17941,1.17907,1.17939,759 +2020-08-10 06:00,1.17939,1.18006,1.17919,1.17968,2092 +2020-08-10 06:15,1.17971,1.17998,1.179,1.17901,1255 +2020-08-10 06:30,1.17904,1.17908,1.1779,1.17803,3532 +2020-08-10 06:45,1.17802,1.17806,1.1765,1.17659,4664 +2020-08-10 07:00,1.1766,1.17744,1.17656,1.17715,3768 +2020-08-10 07:15,1.17715,1.1772,1.17595,1.17686,4829 +2020-08-10 07:30,1.17687,1.17756,1.17655,1.1775,3686 +2020-08-10 07:45,1.17751,1.17755,1.17629,1.1766,3629 +2020-08-10 08:00,1.1766,1.17732,1.17615,1.17716,5120 +2020-08-10 08:15,1.17716,1.17756,1.17667,1.17672,3075 +2020-08-10 08:30,1.17672,1.17672,1.17522,1.17556,4852 +2020-08-10 08:45,1.17556,1.17737,1.17556,1.17722,5224 +2020-08-10 09:00,1.17726,1.17753,1.17687,1.17711,3094 +2020-08-10 09:15,1.17712,1.17754,1.17691,1.17699,3647 +2020-08-10 09:30,1.17699,1.17707,1.17592,1.17596,3106 +2020-08-10 09:45,1.17597,1.17607,1.17576,1.17597,3407 +2020-08-10 10:00,1.17601,1.17662,1.17597,1.17627,2029 +2020-08-10 10:15,1.17628,1.17643,1.17548,1.17594,12009 +2020-08-10 10:30,1.17595,1.17634,1.17519,1.17542,9281 +2020-08-10 10:45,1.17542,1.17552,1.1745,1.1746,4870 +2020-08-10 11:00,1.1746,1.17509,1.17452,1.17483,3564 +2020-08-10 11:15,1.17483,1.17514,1.17406,1.17434,3133 +2020-08-10 11:30,1.17434,1.17539,1.17434,1.17524,3361 +2020-08-10 11:45,1.17523,1.17564,1.17501,1.17535,3219 +2020-08-10 12:00,1.17537,1.17624,1.17515,1.17624,2918 +2020-08-10 12:15,1.17625,1.1767,1.17599,1.17609,3659 +2020-08-10 12:30,1.17609,1.17665,1.17567,1.17655,2810 +2020-08-10 12:45,1.17655,1.17713,1.17635,1.17675,3601 +2020-08-10 13:00,1.17675,1.17714,1.17631,1.17639,4670 +2020-08-10 13:15,1.17639,1.17684,1.17596,1.17665,3681 +2020-08-10 13:30,1.17661,1.17763,1.1765,1.17702,5626 +2020-08-10 13:45,1.17704,1.17917,1.17699,1.17874,35806 +2020-08-10 14:00,1.17873,1.17874,1.17779,1.17797,16617 +2020-08-10 14:15,1.17795,1.17804,1.17684,1.17699,8660 +2020-08-10 14:30,1.177,1.17784,1.17662,1.1772,5383 +2020-08-10 14:45,1.17719,1.17719,1.17618,1.17657,11839 +2020-08-10 15:00,1.17655,1.17718,1.17633,1.17695,4552 +2020-08-10 15:15,1.17693,1.17693,1.17602,1.17623,4225 +2020-08-10 15:30,1.17624,1.17642,1.1751,1.17525,3700 +2020-08-10 15:45,1.17525,1.17567,1.17514,1.17557,6432 +2020-08-10 16:00,1.17557,1.1759,1.17538,1.17559,2659 +2020-08-10 16:15,1.17558,1.17562,1.17465,1.17477,4447 +2020-08-10 16:30,1.17477,1.17521,1.17466,1.17513,3164 +2020-08-10 16:45,1.17513,1.17547,1.17486,1.17532,2188 +2020-08-10 17:00,1.17533,1.17536,1.17496,1.17534,2143 +2020-08-10 17:15,1.17535,1.17548,1.17518,1.17529,1568 +2020-08-10 17:30,1.17529,1.17538,1.17488,1.17532,1574 +2020-08-10 17:45,1.17533,1.17565,1.17508,1.17519,1904 +2020-08-10 18:00,1.17518,1.17523,1.17489,1.17493,2566 +2020-08-10 18:15,1.17493,1.17513,1.17437,1.1748,2255 +2020-08-10 18:30,1.17479,1.17498,1.17453,1.17469,1637 +2020-08-10 18:45,1.17469,1.17476,1.17432,1.17438,1792 +2020-08-10 19:00,1.17438,1.17441,1.17364,1.17388,4316 +2020-08-10 19:15,1.17389,1.17434,1.17361,1.1743,6240 +2020-08-10 19:30,1.17431,1.17436,1.1739,1.17392,1597 +2020-08-10 19:45,1.17393,1.17439,1.17389,1.17436,1701 +2020-08-10 20:00,1.17435,1.17448,1.17406,1.17407,1783 +2020-08-10 20:15,1.17407,1.17424,1.174,1.17403,277 +2020-08-10 20:30,1.17403,1.17403,1.17388,1.17391,239 +2020-08-10 20:45,1.17392,1.17397,1.17359,1.17371,439 +2020-08-10 21:00,1.17373,1.17409,1.1736,1.17409,205 +2020-08-10 21:15,1.17408,1.17417,1.17385,1.17386,385 +2020-08-10 21:30,1.17385,1.174,1.17381,1.17392,213 +2020-08-10 21:45,1.17393,1.17404,1.17373,1.17392,502 +2020-08-10 22:00,1.17392,1.17408,1.17359,1.1736,560 +2020-08-10 22:15,1.17361,1.17391,1.17361,1.17387,298 +2020-08-10 22:30,1.17388,1.17423,1.17387,1.17419,358 +2020-08-10 22:45,1.17419,1.17419,1.17388,1.17414,350 +2020-08-10 23:00,1.17414,1.17415,1.17396,1.17412,459 +2020-08-10 23:15,1.17411,1.17415,1.17395,1.17406,363 +2020-08-10 23:30,1.17407,1.17421,1.17385,1.17419,283 +2020-08-10 23:45,1.1742,1.17429,1.17357,1.1736,593 +2020-08-11 00:00,1.1736,1.17375,1.17307,1.17346,1244 +2020-08-11 00:15,1.17346,1.17372,1.17261,1.17281,1937 +2020-08-11 00:30,1.17282,1.17319,1.17258,1.17264,917 +2020-08-11 00:45,1.17264,1.17278,1.17219,1.17246,1307 +2020-08-11 01:00,1.17246,1.17299,1.17233,1.17252,1062 +2020-08-11 01:15,1.17253,1.17318,1.17253,1.17302,825 +2020-08-11 01:30,1.17301,1.17401,1.17301,1.17366,1597 +2020-08-11 01:45,1.17367,1.17473,1.17361,1.17436,13042 +2020-08-11 02:00,1.17436,1.17477,1.17428,1.17477,993 +2020-08-11 02:15,1.17476,1.17503,1.17471,1.17497,1097 +2020-08-11 02:30,1.17496,1.17496,1.17438,1.17438,737 +2020-08-11 02:45,1.17437,1.17463,1.17431,1.17446,878 +2020-08-11 03:00,1.17446,1.17455,1.17422,1.17427,761 +2020-08-11 03:15,1.17428,1.17454,1.17424,1.17437,714 +2020-08-11 03:30,1.17437,1.17471,1.1743,1.17467,628 +2020-08-11 03:45,1.17468,1.17497,1.17464,1.17486,678 +2020-08-11 04:00,1.17486,1.17508,1.17478,1.17502,946 +2020-08-11 04:15,1.17502,1.17548,1.17499,1.17539,725 +2020-08-11 04:30,1.17539,1.17546,1.17499,1.17533,648 +2020-08-11 04:45,1.17534,1.17534,1.17504,1.17521,704 +2020-08-11 05:00,1.1752,1.17522,1.17472,1.17514,852 +2020-08-11 05:15,1.17515,1.17549,1.17509,1.17528,873 +2020-08-11 05:30,1.17527,1.17527,1.17461,1.17469,1057 +2020-08-11 05:45,1.17469,1.17547,1.17447,1.17491,1382 +2020-08-11 06:00,1.17491,1.17564,1.17415,1.17436,4109 +2020-08-11 06:15,1.17436,1.17441,1.173,1.17336,6837 +2020-08-11 06:30,1.17336,1.17386,1.17322,1.17328,3026 +2020-08-11 06:45,1.17328,1.17335,1.17229,1.17334,4327 +2020-08-11 07:00,1.17334,1.17387,1.17301,1.17333,9698 +2020-08-11 07:15,1.17333,1.17437,1.17319,1.17389,4479 +2020-08-11 07:30,1.17391,1.17447,1.17338,1.17375,6937 +2020-08-11 07:45,1.17374,1.1748,1.17353,1.17458,3743 +2020-08-11 08:00,1.17459,1.17691,1.17446,1.17663,6569 +2020-08-11 08:15,1.17663,1.17743,1.17618,1.17713,6577 +2020-08-11 08:30,1.17713,1.17717,1.17619,1.17662,6424 +2020-08-11 08:45,1.1766,1.17744,1.17625,1.17722,5751 +2020-08-11 09:00,1.17722,1.17838,1.17711,1.17801,5297 +2020-08-11 09:15,1.178,1.17846,1.17763,1.17811,4564 +2020-08-11 09:30,1.17812,1.17861,1.17797,1.17849,16876 +2020-08-11 09:45,1.17848,1.17873,1.17792,1.17873,3352 +2020-08-11 10:00,1.17878,1.18003,1.17874,1.17973,4182 +2020-08-11 10:15,1.17974,1.17975,1.17912,1.17959,3333 +2020-08-11 10:30,1.1796,1.1808,1.17937,1.17963,3825 +2020-08-11 10:45,1.17965,1.17998,1.17892,1.17908,4231 +2020-08-11 11:00,1.1791,1.17912,1.17822,1.17886,6387 +2020-08-11 11:15,1.17886,1.17928,1.17854,1.17915,3539 +2020-08-11 11:30,1.17914,1.18022,1.17914,1.18001,4046 +2020-08-11 11:45,1.18002,1.18043,1.17785,1.17802,6229 +2020-08-11 12:00,1.17806,1.17883,1.1777,1.17833,4564 +2020-08-11 12:15,1.17832,1.17995,1.17823,1.17934,3669 +2020-08-11 12:30,1.17933,1.18032,1.17877,1.17997,5167 +2020-08-11 12:45,1.17997,1.1807,1.17837,1.17973,7465 +2020-08-11 13:00,1.17971,1.17974,1.17624,1.17634,11309 +2020-08-11 13:15,1.17634,1.17736,1.17627,1.1767,25709 +2020-08-11 13:30,1.1767,1.17764,1.17568,1.1774,50658 +2020-08-11 13:45,1.1774,1.17914,1.17737,1.17823,9522 +2020-08-11 14:00,1.17823,1.17845,1.17675,1.1769,15014 +2020-08-11 14:15,1.17692,1.17797,1.17654,1.17709,5564 +2020-08-11 14:30,1.17709,1.17771,1.17674,1.17751,4519 +2020-08-11 14:45,1.17751,1.17798,1.17639,1.17653,128396 +2020-08-11 15:00,1.17653,1.17882,1.17626,1.17878,5680 +2020-08-11 15:15,1.17877,1.17884,1.17682,1.17704,5053 +2020-08-11 15:30,1.17703,1.17825,1.1768,1.17739,5853 +2020-08-11 15:45,1.17741,1.17745,1.17618,1.1763,4478 +2020-08-11 16:00,1.17632,1.17671,1.17618,1.17657,2679 +2020-08-11 16:15,1.17655,1.17741,1.17636,1.17736,3125 +2020-08-11 16:30,1.17736,1.17753,1.17705,1.17722,5594 +2020-08-11 16:45,1.17723,1.17745,1.17686,1.17711,2993 +2020-08-11 17:00,1.17712,1.17716,1.17605,1.17624,2880 +2020-08-11 17:15,1.17624,1.1765,1.17605,1.1762,5491 +2020-08-11 17:30,1.1762,1.17624,1.17547,1.1762,2504 +2020-08-11 17:45,1.17619,1.17637,1.17576,1.1763,2057 +2020-08-11 18:00,1.17631,1.17637,1.17582,1.17616,1774 +2020-08-11 18:15,1.17616,1.17653,1.17558,1.17559,2817 +2020-08-11 18:30,1.17558,1.17566,1.17435,1.1745,3404 +2020-08-11 18:45,1.17452,1.17473,1.17415,1.17451,3144 +2020-08-11 19:00,1.17451,1.17466,1.17337,1.1734,30585 +2020-08-11 19:15,1.17339,1.17369,1.17321,1.17354,41533 +2020-08-11 19:30,1.17354,1.17365,1.17293,1.173,3108 +2020-08-11 19:45,1.17299,1.17357,1.17281,1.17357,3316 +2020-08-11 20:00,1.17355,1.17355,1.1729,1.17342,1315 +2020-08-11 20:15,1.17341,1.17351,1.17303,1.17348,569 +2020-08-11 20:30,1.17349,1.17391,1.17342,1.1739,389 +2020-08-11 20:45,1.1739,1.17401,1.17386,1.17395,344 +2020-08-11 21:00,1.17395,1.17428,1.17389,1.17401,157 +2020-08-11 21:15,1.174,1.1745,1.17396,1.17409,636 +2020-08-11 21:30,1.17411,1.17456,1.17402,1.17423,382 +2020-08-11 21:45,1.17422,1.17438,1.17412,1.17412,45 +2020-08-11 22:00,1.17408,1.17442,1.17401,1.17433,937 +2020-08-11 22:15,1.17433,1.17443,1.17422,1.17428,409 +2020-08-11 22:30,1.17429,1.17446,1.17429,1.17444,542 +2020-08-11 22:45,1.17443,1.17445,1.1743,1.17433,281 +2020-08-11 23:00,1.17433,1.17436,1.17358,1.17358,676 +2020-08-11 23:15,1.17359,1.17375,1.17335,1.17355,605 +2020-08-11 23:30,1.17354,1.17395,1.17354,1.17395,437 +2020-08-11 23:45,1.17395,1.17397,1.17346,1.17347,611 +2020-08-12 00:00,1.17348,1.17427,1.17348,1.17406,1125 +2020-08-12 00:15,1.17407,1.17428,1.17337,1.17338,864 +2020-08-12 00:30,1.17338,1.17349,1.1726,1.173,2333 +2020-08-12 00:45,1.173,1.1737,1.17289,1.17338,1751 +2020-08-12 01:00,1.17339,1.17411,1.1733,1.17385,1363 +2020-08-12 01:15,1.17385,1.17406,1.17359,1.17392,3943 +2020-08-12 01:30,1.17397,1.17406,1.17313,1.17317,1462 +2020-08-12 01:45,1.17316,1.17316,1.17247,1.17292,29531 +2020-08-12 02:00,1.17292,1.17293,1.17161,1.17245,26871 +2020-08-12 02:15,1.17244,1.1727,1.17159,1.17252,14797 +2020-08-12 02:30,1.17253,1.1732,1.17235,1.17297,15387 +2020-08-12 02:45,1.17296,1.17304,1.17188,1.17202,5327 +2020-08-12 03:00,1.17201,1.17236,1.17162,1.17188,1843 +2020-08-12 03:15,1.17188,1.17216,1.17162,1.17211,1270 +2020-08-12 03:30,1.17212,1.17247,1.172,1.172,938 +2020-08-12 03:45,1.172,1.17241,1.17185,1.17211,1018 +2020-08-12 04:00,1.17211,1.17211,1.17173,1.17184,1183 +2020-08-12 04:15,1.17183,1.17205,1.17118,1.17127,1038 +2020-08-12 04:30,1.17127,1.17185,1.1711,1.1716,1176 +2020-08-12 04:45,1.17161,1.1718,1.17125,1.17141,2634 +2020-08-12 05:00,1.17141,1.17151,1.17121,1.17144,1036 +2020-08-12 05:15,1.17144,1.17208,1.17133,1.17175,913 +2020-08-12 05:30,1.17176,1.17236,1.17172,1.17235,795 +2020-08-12 05:45,1.17235,1.17249,1.17212,1.1723,866 +2020-08-12 06:00,1.17231,1.17331,1.17206,1.17294,5580 +2020-08-12 06:15,1.17296,1.17342,1.1727,1.17285,3858 +2020-08-12 06:30,1.17285,1.17385,1.17263,1.1734,2861 +2020-08-12 06:45,1.1734,1.17359,1.17239,1.17256,4676 +2020-08-12 07:00,1.17256,1.17341,1.17251,1.17321,12534 +2020-08-12 07:15,1.1732,1.17378,1.1728,1.17344,3877 +2020-08-12 07:30,1.17344,1.17457,1.17329,1.17374,8486 +2020-08-12 07:45,1.17373,1.17501,1.17371,1.17484,4631 +2020-08-12 08:00,1.17485,1.17525,1.17411,1.17468,4272 +2020-08-12 08:15,1.17468,1.17587,1.17439,1.17576,4531 +2020-08-12 08:30,1.17576,1.17605,1.17499,1.17501,3603 +2020-08-12 08:45,1.17502,1.17526,1.17461,1.17475,3163 +2020-08-12 09:00,1.17475,1.17572,1.17444,1.17566,3032 +2020-08-12 09:15,1.17565,1.17676,1.17565,1.17643,3438 +2020-08-12 09:30,1.17643,1.17752,1.17627,1.17681,3797 +2020-08-12 09:45,1.17681,1.17715,1.17649,1.17675,3339 +2020-08-12 10:00,1.17678,1.17745,1.1764,1.17732,4038 +2020-08-12 10:15,1.17732,1.17743,1.17639,1.17706,3269 +2020-08-12 10:30,1.17706,1.17748,1.17672,1.17678,2923 +2020-08-12 10:45,1.17678,1.1779,1.17662,1.1778,2556 +2020-08-12 11:00,1.1778,1.17787,1.17687,1.17743,3564 +2020-08-12 11:15,1.17744,1.17771,1.17622,1.17629,4026 +2020-08-12 11:30,1.17627,1.17659,1.17595,1.17617,3206 +2020-08-12 11:45,1.17619,1.17656,1.17558,1.17649,3682 +2020-08-12 12:00,1.17667,1.1775,1.17651,1.17706,6332 +2020-08-12 12:15,1.17711,1.17746,1.17672,1.17688,7985 +2020-08-12 12:30,1.17686,1.17906,1.17614,1.17866,6076 +2020-08-12 12:45,1.17867,1.17957,1.1782,1.17905,4790 +2020-08-12 13:00,1.17905,1.18012,1.17901,1.17964,5616 +2020-08-12 13:15,1.17964,1.17974,1.17865,1.17955,4183 +2020-08-12 13:30,1.17952,1.18003,1.17871,1.17905,7902 +2020-08-12 13:45,1.17905,1.17968,1.178,1.17812,61361 +2020-08-12 14:00,1.17811,1.17833,1.1772,1.1783,4941 +2020-08-12 14:15,1.17829,1.17969,1.17811,1.17951,84304 +2020-08-12 14:30,1.17954,1.17982,1.17904,1.17954,22642 +2020-08-12 14:45,1.17955,1.1817,1.17885,1.18051,43407 +2020-08-12 15:00,1.18053,1.18057,1.17911,1.17916,19851 +2020-08-12 15:15,1.17915,1.17988,1.17901,1.17944,4062 +2020-08-12 15:30,1.17942,1.17967,1.17903,1.17955,65159 +2020-08-12 15:45,1.17953,1.17979,1.17906,1.17953,3285 +2020-08-12 16:00,1.17953,1.17957,1.17906,1.17939,2049 +2020-08-12 16:15,1.17937,1.17976,1.1787,1.1797,3300 +2020-08-12 16:30,1.17971,1.18001,1.17943,1.17981,2077 +2020-08-12 16:45,1.1798,1.18001,1.17896,1.17914,2639 +2020-08-12 17:00,1.17913,1.1797,1.179,1.179,2634 +2020-08-12 17:15,1.17901,1.17931,1.1784,1.17899,5577 +2020-08-12 17:30,1.17898,1.17919,1.17869,1.17912,1917 +2020-08-12 17:45,1.1791,1.17923,1.1788,1.17912,1567 +2020-08-12 18:00,1.1791,1.17968,1.1789,1.17961,1939 +2020-08-12 18:15,1.17961,1.1797,1.17907,1.17914,2204 +2020-08-12 18:30,1.17915,1.17935,1.17897,1.17899,1329 +2020-08-12 18:45,1.179,1.1791,1.17836,1.17838,2337 +2020-08-12 19:00,1.17837,1.17892,1.17826,1.17884,2200 +2020-08-12 19:15,1.17882,1.17892,1.17829,1.17852,1658 +2020-08-12 19:30,1.17851,1.17879,1.17828,1.17867,1852 +2020-08-12 19:45,1.17868,1.17895,1.17846,1.1787,1451 +2020-08-12 20:00,1.17869,1.17893,1.17859,1.17893,739 +2020-08-12 20:15,1.17893,1.17901,1.17885,1.17889,289 +2020-08-12 20:30,1.1789,1.17893,1.1786,1.17872,303 +2020-08-12 20:45,1.17872,1.17884,1.17835,1.17835,635 +2020-08-12 21:00,1.17835,1.17866,1.17796,1.17858,357 +2020-08-12 21:15,1.17858,1.17862,1.17835,1.17835,27 +2020-08-12 21:30,1.17835,1.17837,1.17835,1.17835,113 +2020-08-12 21:45,1.17835,1.17864,1.17818,1.17829,505 +2020-08-12 22:00,1.17836,1.17873,1.17836,1.17868,472 +2020-08-12 22:15,1.1787,1.17875,1.17838,1.17854,172 +2020-08-12 22:30,1.17859,1.17876,1.17848,1.17874,273 +2020-08-12 22:45,1.17875,1.17904,1.17874,1.17875,274 +2020-08-12 23:00,1.17875,1.1789,1.17854,1.17866,590 +2020-08-12 23:15,1.17867,1.17933,1.17866,1.17925,506 +2020-08-12 23:30,1.17926,1.17946,1.17921,1.17939,337 +2020-08-12 23:45,1.17942,1.17961,1.17929,1.17939,516 +2020-08-13 00:00,1.17939,1.18047,1.17937,1.18045,1218 +2020-08-13 00:15,1.18046,1.18107,1.18026,1.18074,1452 +2020-08-13 00:30,1.18075,1.18078,1.18047,1.18077,764 +2020-08-13 00:45,1.18077,1.18104,1.18056,1.18065,1254 +2020-08-13 01:00,1.18064,1.18171,1.18043,1.18117,2875 +2020-08-13 01:15,1.18117,1.1813,1.18081,1.18108,1609 +2020-08-13 01:30,1.18108,1.18152,1.18098,1.18098,18025 +2020-08-13 01:45,1.18096,1.18112,1.18068,1.1808,21340 +2020-08-13 02:00,1.1808,1.18095,1.18048,1.18072,1320 +2020-08-13 02:15,1.18072,1.18103,1.18051,1.18079,1191 +2020-08-13 02:30,1.18078,1.18107,1.18071,1.18082,1237 +2020-08-13 02:45,1.18081,1.181,1.18055,1.18099,1027 +2020-08-13 03:00,1.181,1.18146,1.181,1.18144,1132 +2020-08-13 03:15,1.18144,1.18146,1.18106,1.18124,953 +2020-08-13 03:30,1.18124,1.18126,1.18093,1.18101,657 +2020-08-13 03:45,1.18103,1.18114,1.18068,1.18074,935 +2020-08-13 04:00,1.18075,1.18095,1.18059,1.18063,959 +2020-08-13 04:15,1.18061,1.18081,1.18049,1.18064,633 +2020-08-13 04:30,1.18065,1.18071,1.18037,1.18039,544 +2020-08-13 04:45,1.18039,1.18045,1.18007,1.18011,939 +2020-08-13 05:00,1.18008,1.18043,1.18004,1.18041,849 +2020-08-13 05:15,1.18043,1.18146,1.18041,1.18142,932 +2020-08-13 05:30,1.18141,1.18152,1.18076,1.18089,1585 +2020-08-13 05:45,1.18089,1.18146,1.18084,1.1814,1222 +2020-08-13 06:00,1.18143,1.1828,1.18136,1.18227,3895 +2020-08-13 06:15,1.18226,1.18379,1.18213,1.18336,12677 +2020-08-13 06:30,1.18336,1.18355,1.1826,1.18266,10587 +2020-08-13 06:45,1.18264,1.18319,1.18238,1.18249,1970 +2020-08-13 07:00,1.18248,1.183,1.18203,1.18204,4287 +2020-08-13 07:15,1.18204,1.18244,1.18178,1.18223,3470 +2020-08-13 07:30,1.18223,1.18335,1.18215,1.18309,37607 +2020-08-13 07:45,1.18308,1.18346,1.18219,1.18273,5987 +2020-08-13 08:00,1.18275,1.18302,1.18154,1.18249,4826 +2020-08-13 08:15,1.1825,1.18303,1.18231,1.18268,20385 +2020-08-13 08:30,1.18268,1.18395,1.18239,1.18377,10156 +2020-08-13 08:45,1.18381,1.18412,1.18358,1.18381,8146 +2020-08-13 09:00,1.18385,1.18388,1.18282,1.18298,4557 +2020-08-13 09:15,1.18297,1.18354,1.18279,1.18279,3879 +2020-08-13 09:30,1.18279,1.18412,1.18265,1.18387,4194 +2020-08-13 09:45,1.1839,1.18412,1.18313,1.18337,4111 +2020-08-13 10:00,1.18336,1.18437,1.18319,1.18406,3704 +2020-08-13 10:15,1.18405,1.18532,1.18391,1.18484,3842 +2020-08-13 10:30,1.18484,1.18522,1.18451,1.18451,3717 +2020-08-13 10:45,1.18453,1.185,1.18417,1.18426,4831 +2020-08-13 11:00,1.18426,1.18529,1.18411,1.18481,3942 +2020-08-13 11:15,1.1848,1.18523,1.18403,1.18409,3371 +2020-08-13 11:30,1.18409,1.18432,1.18334,1.1834,3335 +2020-08-13 11:45,1.1834,1.18405,1.1833,1.18367,2796 +2020-08-13 12:00,1.18366,1.18377,1.18305,1.18341,8846 +2020-08-13 12:15,1.1834,1.1834,1.1823,1.18276,3827 +2020-08-13 12:30,1.18275,1.18407,1.18235,1.18386,4752 +2020-08-13 12:45,1.18385,1.18501,1.18348,1.18488,22424 +2020-08-13 13:00,1.18489,1.18489,1.18282,1.1833,4980 +2020-08-13 13:15,1.18331,1.18424,1.18313,1.18358,4509 +2020-08-13 13:30,1.18359,1.18474,1.18349,1.18465,13868 +2020-08-13 13:45,1.18467,1.18614,1.18454,1.18556,60710 +2020-08-13 14:00,1.18554,1.18626,1.18492,1.18596,4915 +2020-08-13 14:15,1.18595,1.18641,1.18556,1.18578,4114 +2020-08-13 14:30,1.18579,1.1858,1.18333,1.18341,5158 +2020-08-13 14:45,1.18342,1.18409,1.1833,1.18395,6165 +2020-08-13 15:00,1.18395,1.18398,1.18264,1.18313,5764 +2020-08-13 15:15,1.18313,1.18316,1.18254,1.18287,4064 +2020-08-13 15:30,1.18287,1.18293,1.18179,1.18204,3539 +2020-08-13 15:45,1.18206,1.18215,1.18131,1.18178,2921 +2020-08-13 16:00,1.18177,1.18218,1.18172,1.18196,1906 +2020-08-13 16:15,1.18196,1.18196,1.18159,1.18176,1865 +2020-08-13 16:30,1.18177,1.18217,1.18174,1.18211,1711 +2020-08-13 16:45,1.18211,1.18217,1.1815,1.18171,2165 +2020-08-13 17:00,1.18171,1.1821,1.18166,1.18181,3141 +2020-08-13 17:15,1.1818,1.18187,1.18146,1.1816,2073 +2020-08-13 17:30,1.18161,1.18161,1.1811,1.18152,2221 +2020-08-13 17:45,1.18153,1.18181,1.18138,1.18166,1691 +2020-08-13 18:00,1.18167,1.18185,1.18122,1.18148,2175 +2020-08-13 18:15,1.18147,1.18147,1.17971,1.17989,3756 +2020-08-13 18:30,1.17988,1.18015,1.17934,1.17969,5182 +2020-08-13 18:45,1.17973,1.18047,1.17973,1.17981,9129 +2020-08-13 19:00,1.1798,1.18016,1.17968,1.17995,4068 +2020-08-13 19:15,1.17995,1.18041,1.17979,1.18035,901 +2020-08-13 19:30,1.18038,1.18047,1.18014,1.18044,1554 +2020-08-13 19:45,1.18042,1.1808,1.18031,1.1808,7348 +2020-08-13 20:00,1.18082,1.1813,1.18075,1.18124,675 +2020-08-13 20:15,1.18126,1.18132,1.18101,1.18121,455 +2020-08-13 20:30,1.18122,1.18163,1.18103,1.18156,405 +2020-08-13 20:45,1.18156,1.18164,1.18131,1.18131,379 +2020-08-13 21:00,1.18126,1.18151,1.18123,1.18147,56 +2020-08-13 21:15,1.18151,1.18162,1.18147,1.18157,75 +2020-08-13 21:30,1.18157,1.18159,1.18156,1.18156,192 +2020-08-13 21:45,1.18156,1.18157,1.18145,1.18148,133 +2020-08-13 22:00,1.18148,1.18161,1.18146,1.18149,382 +2020-08-13 22:15,1.18151,1.18151,1.18112,1.18119,375 +2020-08-13 22:30,1.1812,1.18162,1.1812,1.18159,384 +2020-08-13 22:45,1.18161,1.18175,1.18149,1.18172,489 +2020-08-13 23:00,1.18172,1.18182,1.18158,1.1818,973 +2020-08-13 23:15,1.18181,1.18185,1.18156,1.18174,712 +2020-08-13 23:30,1.18173,1.18207,1.18172,1.18196,419 +2020-08-13 23:45,1.18197,1.18202,1.18151,1.18155,595 +2020-08-14 00:00,1.18153,1.18159,1.18089,1.18135,1231 +2020-08-14 00:15,1.18136,1.18138,1.18088,1.18127,932 +2020-08-14 00:30,1.18127,1.18142,1.18114,1.18125,1311 +2020-08-14 00:45,1.18124,1.18128,1.18071,1.18093,1793 +2020-08-14 01:00,1.18094,1.181,1.18058,1.18082,1956 +2020-08-14 01:15,1.18081,1.18087,1.18015,1.18053,2187 +2020-08-14 01:30,1.18053,1.18097,1.18043,1.18096,1738 +2020-08-14 01:45,1.18098,1.18123,1.18072,1.18121,2157 +2020-08-14 02:00,1.18123,1.18123,1.1807,1.18093,2064 +2020-08-14 02:15,1.18094,1.18122,1.18084,1.18115,1037 +2020-08-14 02:30,1.18115,1.18131,1.18099,1.18102,1192 +2020-08-14 02:45,1.18104,1.18107,1.18053,1.18092,1680 +2020-08-14 03:00,1.18091,1.18093,1.18023,1.1807,1292 +2020-08-14 03:15,1.1807,1.18102,1.18057,1.1809,994 +2020-08-14 03:30,1.1809,1.1813,1.18086,1.18115,1044 +2020-08-14 03:45,1.18116,1.18138,1.1807,1.18103,1067 +2020-08-14 04:00,1.18104,1.18157,1.18079,1.18141,1282 +2020-08-14 04:15,1.18143,1.18167,1.18127,1.18166,755 +2020-08-14 04:30,1.18167,1.18185,1.18146,1.18167,1078 +2020-08-14 04:45,1.18165,1.18174,1.18126,1.18131,662 +2020-08-14 05:00,1.18131,1.18135,1.18112,1.18124,928 +2020-08-14 05:15,1.18125,1.18189,1.18124,1.18183,1023 +2020-08-14 05:30,1.18183,1.18192,1.18154,1.18175,1356 +2020-08-14 05:45,1.18174,1.18217,1.18152,1.18198,1155 +2020-08-14 06:00,1.18197,1.18244,1.18152,1.18222,2616 +2020-08-14 06:15,1.18222,1.18266,1.18161,1.18192,2823 +2020-08-14 06:30,1.18193,1.18195,1.18098,1.18107,2649 +2020-08-14 06:45,1.18107,1.18138,1.1807,1.18083,3264 +2020-08-14 07:00,1.18083,1.18115,1.1804,1.18114,4981 +2020-08-14 07:15,1.18113,1.1814,1.1792,1.17932,10560 +2020-08-14 07:30,1.17936,1.17984,1.17906,1.17976,3731 +2020-08-14 07:45,1.17977,1.18025,1.17972,1.18012,4111 +2020-08-14 08:00,1.18014,1.18077,1.17986,1.18016,8876 +2020-08-14 08:15,1.18017,1.18064,1.1795,1.18064,3443 +2020-08-14 08:30,1.18063,1.18129,1.18023,1.18103,3890 +2020-08-14 08:45,1.18102,1.18173,1.18097,1.18161,4261 +2020-08-14 09:00,1.18159,1.1818,1.18093,1.18105,3205 +2020-08-14 09:15,1.18104,1.18104,1.17858,1.17864,5353 +2020-08-14 09:30,1.17864,1.17911,1.17817,1.17871,3631 +2020-08-14 09:45,1.17871,1.17944,1.17841,1.17911,4366 +2020-08-14 10:00,1.17912,1.18043,1.17912,1.18016,4949 +2020-08-14 10:15,1.1802,1.18103,1.18008,1.18083,14908 +2020-08-14 10:30,1.1808,1.18102,1.1802,1.1806,2457 +2020-08-14 10:45,1.18061,1.18096,1.18014,1.18088,3057 +2020-08-14 11:00,1.18087,1.18139,1.18085,1.18105,3461 +2020-08-14 11:15,1.18105,1.18164,1.18062,1.18131,2592 +2020-08-14 11:30,1.18132,1.18176,1.1811,1.18157,2237 +2020-08-14 11:45,1.18156,1.18175,1.1807,1.18082,7907 +2020-08-14 12:00,1.18083,1.18155,1.18064,1.18125,2612 +2020-08-14 12:15,1.18127,1.18175,1.18118,1.18129,7762 +2020-08-14 12:30,1.1813,1.183,1.18105,1.1823,20541 +2020-08-14 12:45,1.1823,1.18251,1.18132,1.18184,43411 +2020-08-14 13:00,1.18182,1.18351,1.18146,1.18337,5198 +2020-08-14 13:15,1.18341,1.18344,1.18229,1.18244,15849 +2020-08-14 13:30,1.18246,1.18287,1.18204,1.18277,4472 +2020-08-14 13:45,1.18276,1.18363,1.18235,1.18349,4878 +2020-08-14 14:00,1.18348,1.18375,1.182,1.18208,5182 +2020-08-14 14:15,1.18209,1.18254,1.18103,1.1823,6645 +2020-08-14 14:30,1.18231,1.1834,1.18224,1.18306,4116 +2020-08-14 14:45,1.18307,1.18363,1.18282,1.18287,4616 +2020-08-14 15:00,1.18288,1.18336,1.18254,1.18271,3895 +2020-08-14 15:15,1.18268,1.18328,1.18243,1.18311,3320 +2020-08-14 15:30,1.18311,1.1832,1.18284,1.183,2321 +2020-08-14 15:45,1.18302,1.1833,1.18299,1.18325,1812 +2020-08-14 16:00,1.18325,1.18349,1.18293,1.1834,1930 +2020-08-14 16:15,1.1834,1.1835,1.183,1.18329,2291 +2020-08-14 16:30,1.18332,1.18467,1.18325,1.18443,2364 +2020-08-14 16:45,1.18444,1.18487,1.18415,1.18452,18416 +2020-08-14 17:00,1.18451,1.18503,1.18445,1.18489,5937 +2020-08-14 17:15,1.18488,1.18488,1.18434,1.18446,1090 +2020-08-14 17:30,1.18446,1.1845,1.18371,1.18381,1748 +2020-08-14 17:45,1.18381,1.18413,1.18368,1.1839,1580 +2020-08-14 18:00,1.18392,1.18394,1.1835,1.18376,1406 +2020-08-14 18:15,1.18376,1.18391,1.18356,1.1839,1178 +2020-08-14 18:30,1.1839,1.18426,1.18388,1.18412,1147 +2020-08-14 18:45,1.18411,1.18415,1.1835,1.18381,1840 +2020-08-14 19:00,1.18381,1.18387,1.18351,1.18366,1222 +2020-08-14 19:15,1.18366,1.18393,1.18364,1.18387,924 +2020-08-14 19:30,1.18388,1.18388,1.18339,1.18363,1328 +2020-08-14 19:45,1.18363,1.18372,1.18341,1.18359,889 +2020-08-14 20:00,1.18358,1.18393,1.18357,1.18363,640 +2020-08-14 20:15,1.18363,1.18389,1.18361,1.1838,396 +2020-08-14 20:30,1.1838,1.184,1.18379,1.18386,418 +2020-08-14 20:45,1.18386,1.1843,1.18376,1.18414,1022 +2020-08-16 21:00,1.18389,1.18412,1.18386,1.18397,18 +2020-08-16 21:15,1.18397,1.18425,1.18349,1.18423,33 +2020-08-16 21:30,1.18427,1.18437,1.18324,1.18331,85 +2020-08-16 21:45,1.18333,1.1843,1.18327,1.1843,80 +2020-08-16 22:00,1.1843,1.18447,1.18417,1.18433,487 +2020-08-16 22:15,1.18434,1.18454,1.18422,1.18428,274 +2020-08-16 22:30,1.18428,1.18432,1.18414,1.18415,259 +2020-08-16 22:45,1.18416,1.18424,1.18412,1.18415,246 +2020-08-16 23:00,1.18416,1.18468,1.18414,1.18446,583 +2020-08-16 23:15,1.18446,1.18489,1.18446,1.18482,649 +2020-08-16 23:30,1.18482,1.18507,1.18477,1.18501,448 +2020-08-16 23:45,1.185,1.18528,1.18484,1.18518,650 +2020-08-17 00:00,1.18518,1.18518,1.18427,1.1846,859 +2020-08-17 00:15,1.18461,1.18472,1.18413,1.18437,572 +2020-08-17 00:30,1.18436,1.18467,1.18416,1.18416,746 +2020-08-17 00:45,1.18415,1.18475,1.18412,1.18473,1132 +2020-08-17 01:00,1.18473,1.18489,1.18432,1.18435,866 +2020-08-17 01:15,1.18436,1.18465,1.18432,1.18464,814 +2020-08-17 01:30,1.18465,1.18473,1.18442,1.18448,808 +2020-08-17 01:45,1.18448,1.18483,1.18436,1.18461,834 +2020-08-17 02:00,1.18462,1.18527,1.18459,1.18519,999 +2020-08-17 02:15,1.1852,1.18599,1.18509,1.18596,1079 +2020-08-17 02:30,1.18597,1.18675,1.18591,1.18591,1226 +2020-08-17 02:45,1.18591,1.18603,1.18578,1.18578,586 +2020-08-17 03:00,1.18574,1.18577,1.18555,1.18563,1044 +2020-08-17 03:15,1.18563,1.18594,1.18557,1.18594,608 +2020-08-17 03:30,1.18594,1.1861,1.18587,1.1861,385 +2020-08-17 03:45,1.1861,1.18611,1.1859,1.18599,606 +2020-08-17 04:00,1.18599,1.18599,1.1855,1.18563,424 +2020-08-17 04:15,1.18561,1.18566,1.18539,1.18559,473 +2020-08-17 04:30,1.18558,1.18558,1.18531,1.18539,614 +2020-08-17 04:45,1.18538,1.18564,1.18531,1.18564,522 +2020-08-17 05:00,1.18563,1.18578,1.18534,1.18554,525 +2020-08-17 05:15,1.18554,1.18579,1.18551,1.18564,656 +2020-08-17 05:30,1.18565,1.18565,1.18519,1.18565,731 +2020-08-17 05:45,1.18564,1.18625,1.1855,1.18608,871 +2020-08-17 06:00,1.18611,1.18678,1.18611,1.18645,2356 +2020-08-17 06:15,1.18644,1.18678,1.18622,1.18644,2200 +2020-08-17 06:30,1.18644,1.18671,1.18574,1.18651,2782 +2020-08-17 06:45,1.18649,1.18655,1.18604,1.1862,1910 +2020-08-17 07:00,1.18621,1.18662,1.18532,1.1856,6012 +2020-08-17 07:15,1.18559,1.18576,1.18487,1.1855,8150 +2020-08-17 07:30,1.18548,1.1855,1.18437,1.1849,21015 +2020-08-17 07:45,1.1849,1.18533,1.18444,1.1853,3507 +2020-08-17 08:00,1.18531,1.18539,1.18376,1.18391,4807 +2020-08-17 08:15,1.18392,1.18406,1.18316,1.18344,48228 +2020-08-17 08:30,1.18344,1.18367,1.18286,1.18355,3731 +2020-08-17 08:45,1.18353,1.1839,1.18325,1.18382,2857 +2020-08-17 09:00,1.18381,1.18506,1.18367,1.18492,3117 +2020-08-17 09:15,1.18493,1.18516,1.18462,1.18477,2622 +2020-08-17 09:30,1.18477,1.18542,1.18433,1.18535,3021 +2020-08-17 09:45,1.18535,1.18563,1.18493,1.18553,6511 +2020-08-17 10:00,1.18552,1.18553,1.18488,1.18499,2926 +2020-08-17 10:15,1.185,1.18566,1.18476,1.18522,2976 +2020-08-17 10:30,1.18522,1.1853,1.18432,1.18502,2753 +2020-08-17 10:45,1.18502,1.1857,1.18478,1.18505,4058 +2020-08-17 11:00,1.18509,1.18524,1.18411,1.18421,3241 +2020-08-17 11:15,1.18423,1.18437,1.18339,1.18427,3994 +2020-08-17 11:30,1.18426,1.1853,1.18405,1.18502,3424 +2020-08-17 11:45,1.18504,1.18575,1.18475,1.18562,3180 +2020-08-17 12:00,1.18562,1.18573,1.18485,1.18524,3613 +2020-08-17 12:15,1.18525,1.18584,1.18521,1.18556,3123 +2020-08-17 12:30,1.18555,1.18637,1.18546,1.18628,2916 +2020-08-17 12:45,1.1863,1.18632,1.18533,1.18568,3414 +2020-08-17 13:00,1.18571,1.18572,1.18513,1.18528,3142 +2020-08-17 13:15,1.18528,1.18589,1.18524,1.18572,3533 +2020-08-17 13:30,1.18573,1.18765,1.18551,1.18764,6369 +2020-08-17 13:45,1.18765,1.18809,1.1872,1.18731,4132 +2020-08-17 14:00,1.18731,1.18785,1.1872,1.18737,3982 +2020-08-17 14:15,1.18736,1.18769,1.18703,1.18732,37331 +2020-08-17 14:30,1.18732,1.18807,1.18715,1.18729,6393 +2020-08-17 14:45,1.18729,1.1876,1.18622,1.18676,8513 +2020-08-17 15:00,1.18674,1.18695,1.18618,1.18664,3628 +2020-08-17 15:15,1.18663,1.187,1.18642,1.18662,3276 +2020-08-17 15:30,1.18662,1.18693,1.18634,1.18679,2781 +2020-08-17 15:45,1.1868,1.18699,1.18656,1.18686,2200 +2020-08-17 16:00,1.18687,1.18692,1.18639,1.1865,1731 +2020-08-17 16:15,1.18649,1.1865,1.18568,1.18578,8793 +2020-08-17 16:30,1.1858,1.1862,1.18571,1.18619,1749 +2020-08-17 16:45,1.18618,1.1869,1.18618,1.18677,1438 +2020-08-17 17:00,1.18678,1.18695,1.18649,1.18671,1536 +2020-08-17 17:15,1.18672,1.18706,1.18669,1.18705,1505 +2020-08-17 17:30,1.18703,1.18713,1.18666,1.18689,1907 +2020-08-17 17:45,1.18688,1.18689,1.18638,1.18638,1284 +2020-08-17 18:00,1.18638,1.18656,1.18621,1.18647,1485 +2020-08-17 18:15,1.18646,1.18647,1.18602,1.18626,1698 +2020-08-17 18:30,1.18627,1.18663,1.18621,1.18657,954 +2020-08-17 18:45,1.18657,1.18669,1.18632,1.18658,1270 +2020-08-17 19:00,1.18657,1.18696,1.18645,1.18696,1757 +2020-08-17 19:15,1.18696,1.18696,1.18679,1.18681,1018 +2020-08-17 19:30,1.18679,1.18688,1.18636,1.18681,1185 +2020-08-17 19:45,1.18682,1.18721,1.18681,1.1871,1072 +2020-08-17 20:00,1.18715,1.18727,1.18697,1.18705,732 +2020-08-17 20:15,1.18705,1.18733,1.18698,1.18726,466 +2020-08-17 20:30,1.18726,1.18739,1.18718,1.18736,358 +2020-08-17 20:45,1.18736,1.18739,1.18695,1.18698,432 +2020-08-17 21:00,1.18698,1.18748,1.18658,1.1868,223 +2020-08-17 21:15,1.18681,1.18759,1.18681,1.1872,380 +2020-08-17 21:30,1.18728,1.18732,1.1872,1.18721,166 +2020-08-17 21:45,1.18722,1.18757,1.18705,1.18738,165 +2020-08-17 22:00,1.18737,1.18737,1.18696,1.18698,479 +2020-08-17 22:15,1.18698,1.18716,1.18685,1.18715,370 +2020-08-17 22:30,1.18715,1.18727,1.18705,1.18705,237 +2020-08-17 22:45,1.18703,1.18734,1.18698,1.18726,327 +2020-08-17 23:00,1.18726,1.18752,1.18711,1.18746,656 +2020-08-17 23:15,1.18747,1.18751,1.1874,1.18745,698 +2020-08-17 23:30,1.18745,1.1875,1.18739,1.1875,717 +2020-08-17 23:45,1.18751,1.18753,1.18742,1.18745,421 +2020-08-18 00:00,1.18745,1.18809,1.18742,1.18783,1343 +2020-08-18 00:15,1.18783,1.18804,1.18747,1.18791,1635 +2020-08-18 00:30,1.1879,1.18827,1.18747,1.18819,1923 +2020-08-18 00:45,1.1882,1.18917,1.18817,1.18905,2445 +2020-08-18 01:00,1.18905,1.18958,1.18874,1.18952,2348 +2020-08-18 01:15,1.18953,1.18965,1.1888,1.18886,2296 +2020-08-18 01:30,1.18886,1.1891,1.1883,1.18857,2559 +2020-08-18 01:45,1.18857,1.18931,1.18854,1.18896,2337 +2020-08-18 02:00,1.18896,1.18913,1.18864,1.18901,2006 +2020-08-18 02:15,1.18901,1.18947,1.18895,1.18934,1534 +2020-08-18 02:30,1.18935,1.18935,1.18899,1.18917,1335 +2020-08-18 02:45,1.18916,1.18916,1.18862,1.18889,1772 +2020-08-18 03:00,1.18892,1.18921,1.18871,1.18902,1347 +2020-08-18 03:15,1.18901,1.18922,1.18874,1.18882,1120 +2020-08-18 03:30,1.18883,1.18888,1.18856,1.1886,1601 +2020-08-18 03:45,1.18859,1.18882,1.18854,1.18857,1196 +2020-08-18 04:00,1.18858,1.18897,1.18858,1.1889,891 +2020-08-18 04:15,1.18888,1.1895,1.18886,1.18927,1222 +2020-08-18 04:30,1.18929,1.18942,1.18916,1.18935,1342 +2020-08-18 04:45,1.18936,1.18945,1.18903,1.18917,1571 +2020-08-18 05:00,1.18923,1.18934,1.18886,1.18907,1142 +2020-08-18 05:15,1.18906,1.18942,1.18897,1.1893,1027 +2020-08-18 05:30,1.1893,1.18948,1.18923,1.18925,1012 +2020-08-18 05:45,1.18924,1.18955,1.18913,1.1892,1154 +2020-08-18 06:00,1.18923,1.18973,1.18884,1.18902,2456 +2020-08-18 06:15,1.18903,1.18966,1.18899,1.18948,9012 +2020-08-18 06:30,1.18947,1.1904,1.18903,1.18938,16409 +2020-08-18 06:45,1.18939,1.18967,1.18834,1.18855,3246 +2020-08-18 07:00,1.18854,1.19057,1.18824,1.18996,5490 +2020-08-18 07:15,1.18997,1.19036,1.18864,1.18934,5408 +2020-08-18 07:30,1.18933,1.19033,1.18894,1.19012,4094 +2020-08-18 07:45,1.19012,1.19026,1.1888,1.18931,4705 +2020-08-18 08:00,1.1893,1.18947,1.18874,1.18926,3996 +2020-08-18 08:15,1.18926,1.18975,1.18859,1.18926,4559 +2020-08-18 08:30,1.18927,1.19034,1.18914,1.19028,5588 +2020-08-18 08:45,1.19028,1.19151,1.18997,1.19103,6290 +2020-08-18 09:00,1.19102,1.19124,1.19051,1.19084,17422 +2020-08-18 09:15,1.19085,1.1912,1.19021,1.19053,4603 +2020-08-18 09:30,1.19053,1.19096,1.19025,1.19035,3560 +2020-08-18 09:45,1.19035,1.1907,1.19009,1.1903,3145 +2020-08-18 10:00,1.1903,1.19042,1.18976,1.18987,3101 +2020-08-18 10:15,1.18986,1.19095,1.18971,1.19091,2881 +2020-08-18 10:30,1.19092,1.19096,1.1903,1.1906,2731 +2020-08-18 10:45,1.19059,1.19061,1.18982,1.19008,2423 +2020-08-18 11:00,1.19006,1.19048,1.18982,1.1899,5530 +2020-08-18 11:15,1.18993,1.19016,1.18977,1.18995,3596 +2020-08-18 11:30,1.18996,1.19058,1.18982,1.1901,3734 +2020-08-18 11:45,1.19012,1.19077,1.18991,1.19064,3343 +2020-08-18 12:00,1.19065,1.19073,1.19039,1.19065,2289 +2020-08-18 12:15,1.19065,1.19414,1.19057,1.19387,5959 +2020-08-18 12:30,1.19391,1.19446,1.19335,1.19385,5204 +2020-08-18 12:45,1.19388,1.19446,1.1935,1.19361,3529 +2020-08-18 13:00,1.19364,1.19441,1.19353,1.19386,17792 +2020-08-18 13:15,1.19385,1.19625,1.1937,1.19571,5193 +2020-08-18 13:30,1.1957,1.19652,1.19545,1.1962,6915 +2020-08-18 13:45,1.19622,1.19656,1.19561,1.19578,7292 +2020-08-18 14:00,1.19579,1.19608,1.19377,1.19415,8361 +2020-08-18 14:15,1.19414,1.19423,1.19233,1.19253,8149 +2020-08-18 14:30,1.19254,1.19384,1.1925,1.19325,6726 +2020-08-18 14:45,1.19326,1.19381,1.19189,1.19205,8869 +2020-08-18 15:00,1.19205,1.19315,1.19179,1.19314,7036 +2020-08-18 15:15,1.19315,1.19318,1.19187,1.19238,3526 +2020-08-18 15:30,1.19237,1.19297,1.1922,1.1928,3446 +2020-08-18 15:45,1.1928,1.19324,1.19264,1.19278,2675 +2020-08-18 16:00,1.19278,1.19338,1.19219,1.19334,19219 +2020-08-18 16:15,1.19333,1.19354,1.19289,1.19341,2622 +2020-08-18 16:30,1.1934,1.19382,1.19333,1.19356,2360 +2020-08-18 16:45,1.19355,1.19377,1.19334,1.19358,2772 +2020-08-18 17:00,1.19359,1.19361,1.19296,1.19309,2477 +2020-08-18 17:15,1.1931,1.19371,1.19298,1.19362,2973 +2020-08-18 17:30,1.19361,1.19382,1.19324,1.19329,2031 +2020-08-18 17:45,1.19329,1.1935,1.19314,1.19316,2427 +2020-08-18 18:00,1.19316,1.19332,1.19305,1.19315,1986 +2020-08-18 18:15,1.19316,1.19323,1.19282,1.19304,1378 +2020-08-18 18:30,1.19305,1.19362,1.19296,1.19343,1555 +2020-08-18 18:45,1.19346,1.19386,1.19329,1.19379,1364 +2020-08-18 19:00,1.19378,1.19383,1.19305,1.1933,1273 +2020-08-18 19:15,1.19332,1.19336,1.19302,1.19319,1251 +2020-08-18 19:30,1.1932,1.19366,1.19309,1.19361,1305 +2020-08-18 19:45,1.1936,1.19371,1.19311,1.1933,1306 +2020-08-18 20:00,1.19331,1.19358,1.19324,1.19354,603 +2020-08-18 20:15,1.19353,1.19372,1.19345,1.19365,324 +2020-08-18 20:30,1.19365,1.19381,1.19344,1.19349,330 +2020-08-18 20:45,1.19349,1.19349,1.1929,1.19305,571 +2020-08-18 21:00,1.19306,1.1932,1.19296,1.19308,112 +2020-08-18 21:15,1.19308,1.19336,1.19303,1.19322,73 +2020-08-18 21:30,1.19322,1.19329,1.1932,1.19329,157 +2020-08-18 21:45,1.19329,1.1933,1.193,1.19317,224 +2020-08-18 22:00,1.19315,1.19336,1.19277,1.19318,2825 +2020-08-18 22:15,1.19319,1.1935,1.19305,1.19334,895 +2020-08-18 22:30,1.19335,1.1936,1.19322,1.1936,554 +2020-08-18 22:45,1.1936,1.19398,1.1936,1.19394,483 +2020-08-18 23:00,1.19395,1.19398,1.19357,1.19367,645 +2020-08-18 23:15,1.19368,1.19412,1.19367,1.19409,228 +2020-08-18 23:30,1.19409,1.19455,1.19409,1.19453,813 +2020-08-18 23:45,1.19454,1.19509,1.19448,1.19464,1094 +2020-08-19 00:00,1.19463,1.19517,1.19458,1.19471,1088 +2020-08-19 00:15,1.19474,1.19476,1.19405,1.19441,1574 +2020-08-19 00:30,1.1944,1.19453,1.19404,1.19414,895 +2020-08-19 00:45,1.19415,1.19486,1.19395,1.19475,5536 +2020-08-19 01:00,1.19475,1.19526,1.19459,1.19507,2176 +2020-08-19 01:15,1.19508,1.19517,1.19439,1.19453,1840 +2020-08-19 01:30,1.19452,1.19455,1.19383,1.19438,3227 +2020-08-19 01:45,1.1944,1.19472,1.1938,1.19402,1558 +2020-08-19 02:00,1.19401,1.19403,1.19345,1.19369,2013 +2020-08-19 02:15,1.19368,1.19399,1.1934,1.19341,1749 +2020-08-19 02:30,1.19343,1.19368,1.19328,1.19331,1280 +2020-08-19 02:45,1.1933,1.19386,1.19321,1.19368,1473 +2020-08-19 03:00,1.19368,1.1939,1.19348,1.19367,1538 +2020-08-19 03:15,1.19368,1.19404,1.19358,1.19403,1001 +2020-08-19 03:30,1.19401,1.19408,1.19352,1.19354,853 +2020-08-19 03:45,1.19354,1.19363,1.19277,1.19296,1271 +2020-08-19 04:00,1.19296,1.19351,1.19296,1.19321,1301 +2020-08-19 04:15,1.1932,1.19328,1.19292,1.19292,737 +2020-08-19 04:30,1.19292,1.19345,1.19287,1.19343,1331 +2020-08-19 04:45,1.19343,1.19343,1.19292,1.19309,1099 +2020-08-19 05:00,1.19309,1.19312,1.19278,1.19298,732 +2020-08-19 05:15,1.19298,1.19394,1.19294,1.19391,1539 +2020-08-19 05:30,1.19392,1.1942,1.19351,1.19377,2096 +2020-08-19 05:45,1.19377,1.19402,1.1936,1.19372,1805 +2020-08-19 06:00,1.19372,1.19474,1.19347,1.19413,6868 +2020-08-19 06:15,1.19412,1.19463,1.19387,1.19392,2435 +2020-08-19 06:30,1.19392,1.19454,1.19374,1.19397,2226 +2020-08-19 06:45,1.194,1.19421,1.1935,1.19352,22715 +2020-08-19 07:00,1.19351,1.19386,1.19259,1.19284,8396 +2020-08-19 07:15,1.19285,1.19326,1.19221,1.1927,5785 +2020-08-19 07:30,1.1927,1.19338,1.19252,1.19313,6922 +2020-08-19 07:45,1.19314,1.19386,1.19297,1.19372,4426 +2020-08-19 08:00,1.19372,1.19433,1.19346,1.19416,3340 +2020-08-19 08:15,1.19415,1.19458,1.1934,1.19357,6776 +2020-08-19 08:30,1.19358,1.19448,1.19358,1.19431,3721 +2020-08-19 08:45,1.1943,1.19442,1.19367,1.19403,4698 +2020-08-19 09:00,1.19404,1.19438,1.19375,1.19431,3026 +2020-08-19 09:15,1.19435,1.19507,1.19432,1.19451,3296 +2020-08-19 09:30,1.1945,1.19457,1.19403,1.1943,3126 +2020-08-19 09:45,1.1943,1.1943,1.19324,1.19365,3909 +2020-08-19 10:00,1.19365,1.19432,1.19365,1.19389,3866 +2020-08-19 10:15,1.1939,1.19415,1.1935,1.1937,3099 +2020-08-19 10:30,1.19369,1.19378,1.1933,1.19364,2909 +2020-08-19 10:45,1.19365,1.19383,1.19336,1.19372,2428 +2020-08-19 11:00,1.19373,1.19418,1.19325,1.19327,2815 +2020-08-19 11:15,1.19325,1.19355,1.19319,1.19336,6239 +2020-08-19 11:30,1.19336,1.19355,1.19275,1.19284,3207 +2020-08-19 11:45,1.19284,1.19348,1.19254,1.19345,3962 +2020-08-19 12:00,1.19346,1.19354,1.19281,1.19328,3691 +2020-08-19 12:15,1.19327,1.19388,1.19326,1.19358,2703 +2020-08-19 12:30,1.19357,1.19368,1.19287,1.1929,13418 +2020-08-19 12:45,1.19292,1.19343,1.19273,1.19307,2951 +2020-08-19 13:00,1.19304,1.19356,1.19252,1.19308,3905 +2020-08-19 13:15,1.19309,1.19417,1.19308,1.19416,17662 +2020-08-19 13:30,1.19416,1.19486,1.19415,1.19461,11044 +2020-08-19 13:45,1.19463,1.19479,1.19361,1.19434,5143 +2020-08-19 14:00,1.19433,1.19462,1.19373,1.19422,30462 +2020-08-19 14:15,1.19421,1.19422,1.19268,1.19299,4288 +2020-08-19 14:30,1.19299,1.19336,1.19013,1.19056,8977 +2020-08-19 14:45,1.19057,1.19102,1.18962,1.19002,26643 +2020-08-19 15:00,1.19003,1.19038,1.18903,1.18986,5873 +2020-08-19 15:15,1.18984,1.19006,1.18935,1.18962,3676 +2020-08-19 15:30,1.18963,1.19069,1.18946,1.19066,4488 +2020-08-19 15:45,1.19067,1.1909,1.18973,1.18979,10481 +2020-08-19 16:00,1.18979,1.1898,1.18829,1.18843,4279 +2020-08-19 16:15,1.18844,1.18865,1.18656,1.18775,5233 +2020-08-19 16:30,1.18777,1.18808,1.18754,1.18776,3555 +2020-08-19 16:45,1.18777,1.1882,1.18752,1.18775,8519 +2020-08-19 17:00,1.18776,1.18796,1.18685,1.18693,2965 +2020-08-19 17:15,1.18692,1.18798,1.1869,1.18796,2297 +2020-08-19 17:30,1.18796,1.18802,1.18747,1.18771,2451 +2020-08-19 17:45,1.18771,1.18832,1.18771,1.18821,2389 +2020-08-19 18:00,1.18817,1.18939,1.18313,1.18328,14304 +2020-08-19 18:15,1.18327,1.18553,1.18302,1.18544,22823 +2020-08-19 18:30,1.18544,1.18555,1.18389,1.18493,114834 +2020-08-19 18:45,1.18494,1.18596,1.18478,1.18558,5796 +2020-08-19 19:00,1.18556,1.18599,1.18506,1.18581,3891 +2020-08-19 19:15,1.18581,1.18581,1.18506,1.18553,2691 +2020-08-19 19:30,1.18553,1.18575,1.18457,1.18497,3202 +2020-08-19 19:45,1.18498,1.18513,1.18369,1.18456,4201 +2020-08-19 20:00,1.18455,1.1847,1.18421,1.1844,1010 +2020-08-19 20:15,1.18439,1.18471,1.18425,1.18425,725 +2020-08-19 20:30,1.18426,1.18426,1.18368,1.18383,655 +2020-08-19 20:45,1.18383,1.18433,1.18365,1.18385,548 +2020-08-19 21:00,1.18396,1.18415,1.18375,1.18403,98 +2020-08-19 21:15,1.18403,1.1843,1.18396,1.18417,491 +2020-08-19 21:30,1.18415,1.18422,1.18396,1.18412,182 +2020-08-19 21:45,1.18407,1.18443,1.18396,1.18427,280 +2020-08-19 22:00,1.18427,1.18436,1.18388,1.18432,919 +2020-08-19 22:15,1.18431,1.18463,1.18431,1.18453,626 +2020-08-19 22:30,1.18451,1.18511,1.18451,1.1851,852 +2020-08-19 22:45,1.18509,1.1853,1.18492,1.18512,699 +2020-08-19 23:00,1.18513,1.18515,1.18467,1.18495,802 +2020-08-19 23:15,1.18495,1.18495,1.18457,1.18469,1149 +2020-08-19 23:30,1.18468,1.18495,1.18451,1.18482,1368 +2020-08-19 23:45,1.18481,1.18482,1.18426,1.18437,1184 +2020-08-20 00:00,1.1844,1.18455,1.18386,1.18406,1776 +2020-08-20 00:15,1.18407,1.18433,1.1839,1.18428,1144 +2020-08-20 00:30,1.18428,1.18497,1.18421,1.18497,1374 +2020-08-20 00:45,1.18496,1.185,1.18433,1.18445,1912 +2020-08-20 01:00,1.18446,1.18478,1.18434,1.18464,2059 +2020-08-20 01:15,1.18464,1.18465,1.18312,1.18341,4182 +2020-08-20 01:30,1.18341,1.18398,1.18322,1.18392,2608 +2020-08-20 01:45,1.18393,1.18444,1.18365,1.18439,3575 +2020-08-20 02:00,1.18439,1.18443,1.18413,1.18415,2381 +2020-08-20 02:15,1.18414,1.1842,1.18377,1.18383,1430 +2020-08-20 02:30,1.18384,1.1843,1.18367,1.18376,1579 +2020-08-20 02:45,1.18375,1.18443,1.18353,1.18443,1720 +2020-08-20 03:00,1.18443,1.18477,1.18419,1.18472,1870 +2020-08-20 03:15,1.18472,1.18533,1.18453,1.1852,2285 +2020-08-20 03:30,1.18519,1.1852,1.18454,1.18459,1804 +2020-08-20 03:45,1.18459,1.18491,1.1845,1.18472,1291 +2020-08-20 04:00,1.18471,1.18509,1.18464,1.18491,1031 +2020-08-20 04:15,1.18492,1.18497,1.18468,1.18492,887 +2020-08-20 04:30,1.18492,1.18501,1.18478,1.18485,753 +2020-08-20 04:45,1.18487,1.18516,1.18455,1.18477,1374 +2020-08-20 05:00,1.18477,1.18477,1.18401,1.18427,1031 +2020-08-20 05:15,1.18428,1.18428,1.18341,1.18365,1692 +2020-08-20 05:30,1.18365,1.18398,1.18335,1.18354,2393 +2020-08-20 05:45,1.18354,1.18421,1.18329,1.18415,2088 +2020-08-20 06:00,1.18414,1.18434,1.18336,1.18347,2853 +2020-08-20 06:15,1.18349,1.18455,1.18326,1.18444,3391 +2020-08-20 06:30,1.18445,1.18468,1.18383,1.18432,3785 +2020-08-20 06:45,1.1843,1.18442,1.1836,1.18389,4292 +2020-08-20 07:00,1.18388,1.18583,1.18378,1.18547,5754 +2020-08-20 07:15,1.18548,1.18674,1.18522,1.1866,4990 +2020-08-20 07:30,1.18659,1.18686,1.18601,1.18611,4663 +2020-08-20 07:45,1.1861,1.1861,1.18472,1.18527,4408 +2020-08-20 08:00,1.18527,1.18561,1.1841,1.18416,5398 +2020-08-20 08:15,1.18416,1.18425,1.18128,1.1814,15284 +2020-08-20 08:30,1.18143,1.18316,1.1812,1.18295,6215 +2020-08-20 08:45,1.18296,1.18386,1.18224,1.18367,5472 +2020-08-20 09:00,1.18363,1.18446,1.18345,1.18367,5190 +2020-08-20 09:15,1.18369,1.1837,1.18231,1.18269,4661 +2020-08-20 09:30,1.18271,1.18398,1.18212,1.18391,7588 +2020-08-20 09:45,1.18392,1.18404,1.1831,1.18338,3959 +2020-08-20 10:00,1.18338,1.1842,1.18311,1.18337,4311 +2020-08-20 10:15,1.18337,1.18391,1.18275,1.18377,3472 +2020-08-20 10:30,1.18376,1.18412,1.18315,1.18321,2869 +2020-08-20 10:45,1.18322,1.18449,1.1831,1.18398,4103 +2020-08-20 11:00,1.18398,1.18398,1.18305,1.18383,4374 +2020-08-20 11:15,1.18383,1.18427,1.18371,1.18415,8550 +2020-08-20 11:30,1.18414,1.1849,1.18347,1.18468,2751 +2020-08-20 11:45,1.18467,1.18502,1.18421,1.18495,3482 +2020-08-20 12:00,1.18493,1.18523,1.18431,1.18503,3851 +2020-08-20 12:15,1.185,1.18506,1.18418,1.18442,3579 +2020-08-20 12:30,1.18442,1.1856,1.18419,1.18504,4937 +2020-08-20 12:45,1.18503,1.18522,1.18262,1.18305,5151 +2020-08-20 13:00,1.18308,1.18329,1.18068,1.1807,6713 +2020-08-20 13:15,1.18071,1.18193,1.18019,1.18112,6252 +2020-08-20 13:30,1.18112,1.1822,1.18088,1.18195,6899 +2020-08-20 13:45,1.18195,1.18375,1.18175,1.183,6590 +2020-08-20 14:00,1.18301,1.18373,1.18229,1.18336,7266 +2020-08-20 14:15,1.18335,1.18391,1.18314,1.18327,6919 +2020-08-20 14:30,1.18326,1.18419,1.18325,1.18328,5797 +2020-08-20 14:45,1.1833,1.18482,1.18324,1.18413,84991 +2020-08-20 15:00,1.18412,1.18473,1.18385,1.18455,3767 +2020-08-20 15:15,1.18456,1.18501,1.18441,1.18486,40558 +2020-08-20 15:30,1.18486,1.18615,1.18475,1.18554,4658 +2020-08-20 15:45,1.18557,1.18617,1.18546,1.18593,7645 +2020-08-20 16:00,1.18598,1.18653,1.18573,1.18588,4024 +2020-08-20 16:15,1.18587,1.18606,1.18557,1.18565,6054 +2020-08-20 16:30,1.18564,1.18564,1.18527,1.18532,2358 +2020-08-20 16:45,1.18533,1.18589,1.18526,1.18541,2779 +2020-08-20 17:00,1.18539,1.18586,1.18513,1.18527,6047 +2020-08-20 17:15,1.18526,1.18542,1.18502,1.1851,1550 +2020-08-20 17:30,1.18512,1.1855,1.18487,1.18527,1853 +2020-08-20 17:45,1.18527,1.18571,1.185,1.18507,2343 +2020-08-20 18:00,1.18508,1.18527,1.18497,1.18518,1908 +2020-08-20 18:15,1.18519,1.18596,1.18508,1.18584,2056 +2020-08-20 18:30,1.18584,1.18584,1.1852,1.18531,4740 +2020-08-20 18:45,1.18534,1.18572,1.18517,1.1852,2662 +2020-08-20 19:00,1.18519,1.18616,1.18508,1.18574,2891 +2020-08-20 19:15,1.18576,1.18586,1.18516,1.1854,2283 +2020-08-20 19:30,1.18541,1.18586,1.18495,1.18578,1575 +2020-08-20 19:45,1.18577,1.1862,1.18555,1.18615,2417 +2020-08-20 20:00,1.18615,1.18632,1.18607,1.1861,628 +2020-08-20 20:15,1.18611,1.18627,1.18607,1.18618,298 +2020-08-20 20:30,1.18618,1.18626,1.18608,1.18615,174 +2020-08-20 20:45,1.18617,1.18621,1.18596,1.18599,209 +2020-08-20 21:00,1.18599,1.18616,1.18548,1.18614,160 +2020-08-20 21:15,1.18615,1.18621,1.18612,1.18613,149 +2020-08-20 21:30,1.18613,1.18619,1.18611,1.18612,99 +2020-08-20 21:45,1.18612,1.18613,1.1861,1.1861,37 +2020-08-20 22:00,1.18608,1.18642,1.18606,1.18632,738 +2020-08-20 22:15,1.18632,1.18652,1.18632,1.18636,696 +2020-08-20 22:30,1.18637,1.18652,1.18635,1.18652,674 +2020-08-20 22:45,1.18652,1.18656,1.1864,1.18651,439 +2020-08-20 23:00,1.18651,1.18674,1.18647,1.18647,972 +2020-08-20 23:15,1.18649,1.18666,1.18647,1.18666,422 +2020-08-20 23:30,1.18667,1.18673,1.18647,1.18659,352 +2020-08-20 23:45,1.18659,1.18711,1.18654,1.18695,944 +2020-08-21 00:00,1.18694,1.18767,1.18673,1.18723,1881 +2020-08-21 00:15,1.18724,1.18742,1.18693,1.1871,1307 +2020-08-21 00:30,1.1871,1.18725,1.18689,1.18691,804 +2020-08-21 00:45,1.18692,1.18752,1.18692,1.18742,1267 +2020-08-21 01:00,1.18742,1.18754,1.18681,1.18697,1937 +2020-08-21 01:15,1.18698,1.18729,1.18644,1.18647,4016 +2020-08-21 01:30,1.18648,1.18725,1.18645,1.18698,11046 +2020-08-21 01:45,1.18698,1.18719,1.18659,1.1867,1370 +2020-08-21 02:00,1.18669,1.18676,1.18644,1.18644,1798 +2020-08-21 02:15,1.18644,1.18652,1.18628,1.18643,1224 +2020-08-21 02:30,1.18643,1.18687,1.18631,1.1868,1392 +2020-08-21 02:45,1.18679,1.18724,1.18676,1.18714,895 +2020-08-21 03:00,1.18717,1.18742,1.18714,1.18735,917 +2020-08-21 03:15,1.18734,1.18754,1.18731,1.18737,862 +2020-08-21 03:30,1.18735,1.18741,1.18708,1.18724,933 +2020-08-21 03:45,1.18724,1.18738,1.18711,1.18731,534 +2020-08-21 04:00,1.18731,1.18752,1.18727,1.1875,847 +2020-08-21 04:15,1.18751,1.18781,1.18721,1.18744,862 +2020-08-21 04:30,1.18743,1.1875,1.18727,1.1874,959 +2020-08-21 04:45,1.1874,1.18777,1.1874,1.18768,905 +2020-08-21 05:00,1.18767,1.18795,1.18761,1.18789,841 +2020-08-21 05:15,1.18789,1.18828,1.18756,1.18767,1444 +2020-08-21 05:30,1.18768,1.18778,1.18747,1.1877,1131 +2020-08-21 05:45,1.18769,1.18819,1.18768,1.1881,1604 +2020-08-21 06:00,1.18811,1.18825,1.18727,1.18763,8977 +2020-08-21 06:15,1.18762,1.18784,1.18719,1.18728,2085 +2020-08-21 06:30,1.18727,1.18739,1.18652,1.18674,36568 +2020-08-21 06:45,1.18674,1.18715,1.18657,1.18703,4705 +2020-08-21 07:00,1.18703,1.18732,1.18612,1.18641,15901 +2020-08-21 07:15,1.18635,1.18636,1.18392,1.18427,7219 +2020-08-21 07:30,1.18433,1.18494,1.18326,1.18393,7120 +2020-08-21 07:45,1.18394,1.18447,1.18374,1.18405,4165 +2020-08-21 08:00,1.18405,1.18405,1.18202,1.18227,19889 +2020-08-21 08:15,1.18228,1.18284,1.18121,1.18164,6675 +2020-08-21 08:30,1.18163,1.18185,1.18057,1.18099,23394 +2020-08-21 08:45,1.18099,1.1815,1.1799,1.18126,6466 +2020-08-21 09:00,1.18126,1.18156,1.18101,1.18121,4122 +2020-08-21 09:15,1.18121,1.18171,1.18049,1.18171,3264 +2020-08-21 09:30,1.1817,1.18183,1.18079,1.1811,5665 +2020-08-21 09:45,1.1811,1.18167,1.18101,1.18136,3641 +2020-08-21 10:00,1.18137,1.18172,1.18068,1.1815,3541 +2020-08-21 10:15,1.1815,1.18158,1.17874,1.17898,5775 +2020-08-21 10:30,1.179,1.17918,1.17833,1.17898,5118 +2020-08-21 10:45,1.17898,1.18042,1.17887,1.18026,3525 +2020-08-21 11:00,1.18026,1.18026,1.17874,1.1788,15355 +2020-08-21 11:15,1.17879,1.17954,1.17858,1.17868,3738 +2020-08-21 11:30,1.17867,1.17879,1.17797,1.17843,4316 +2020-08-21 11:45,1.17844,1.17846,1.1772,1.17745,4879 +2020-08-21 12:00,1.17744,1.17753,1.17602,1.17683,5877 +2020-08-21 12:15,1.17682,1.17728,1.17656,1.17689,9368 +2020-08-21 12:30,1.17687,1.17774,1.17667,1.17752,4970 +2020-08-21 12:45,1.17751,1.17897,1.1773,1.17849,3814 +2020-08-21 13:00,1.17849,1.17867,1.17709,1.17828,4549 +2020-08-21 13:15,1.17827,1.17874,1.17782,1.17783,3865 +2020-08-21 13:30,1.17784,1.17838,1.1769,1.17773,5643 +2020-08-21 13:45,1.17773,1.17773,1.17548,1.17612,7501 +2020-08-21 14:00,1.17612,1.17636,1.17541,1.17626,5095 +2020-08-21 14:15,1.17625,1.17795,1.17611,1.17765,4695 +2020-08-21 14:30,1.17765,1.17822,1.17714,1.17767,3753 +2020-08-21 14:45,1.17764,1.17873,1.17735,1.17795,5616 +2020-08-21 15:00,1.17795,1.17818,1.17696,1.17806,4683 +2020-08-21 15:15,1.17805,1.17853,1.17766,1.17843,2665 +2020-08-21 15:30,1.17844,1.17844,1.1778,1.17791,3206 +2020-08-21 15:45,1.17793,1.17794,1.17724,1.17741,3143 +2020-08-21 16:00,1.17742,1.17742,1.17659,1.17672,6512 +2020-08-21 16:15,1.1767,1.17685,1.17637,1.17683,1650 +2020-08-21 16:30,1.17683,1.17692,1.17616,1.17667,2289 +2020-08-21 16:45,1.17666,1.17741,1.17659,1.17722,10028 +2020-08-21 17:00,1.17721,1.1777,1.17694,1.17758,2323 +2020-08-21 17:15,1.1776,1.17786,1.17756,1.17778,1814 +2020-08-21 17:30,1.17777,1.17794,1.17752,1.1777,17651 +2020-08-21 17:45,1.17769,1.17858,1.17757,1.17847,2123 +2020-08-21 18:00,1.17846,1.17859,1.17805,1.17821,1416 +2020-08-21 18:15,1.17821,1.17883,1.17821,1.17868,1119 +2020-08-21 18:30,1.17866,1.17875,1.17837,1.17837,983 +2020-08-21 18:45,1.17838,1.17888,1.17834,1.17881,1641 +2020-08-21 19:00,1.17881,1.17925,1.17855,1.17917,1584 +2020-08-21 19:15,1.17918,1.17932,1.1788,1.17885,866 +2020-08-21 19:30,1.17884,1.17911,1.17878,1.17907,822 +2020-08-21 19:45,1.17906,1.17953,1.17896,1.17942,1540 +2020-08-21 20:00,1.17942,1.17975,1.17939,1.17964,768 +2020-08-21 20:15,1.17964,1.17984,1.17949,1.17961,587 +2020-08-21 20:30,1.1796,1.1797,1.17943,1.17952,423 +2020-08-21 20:45,1.17951,1.17977,1.17942,1.17949,1235 +2020-08-23 21:00,1.17911,1.17983,1.17911,1.1795,55 +2020-08-23 21:15,1.1795,1.17981,1.17922,1.17947,33 +2020-08-23 21:30,1.17962,1.17978,1.17957,1.17967,121 +2020-08-23 21:45,1.17969,1.17971,1.17949,1.17949,67 +2020-08-23 22:00,1.17949,1.18018,1.17949,1.17955,865 +2020-08-23 22:15,1.17954,1.18001,1.17954,1.18001,538 +2020-08-23 22:30,1.18001,1.18008,1.17964,1.17983,976 +2020-08-23 22:45,1.17986,1.18015,1.1796,1.18008,772 +2020-08-23 23:00,1.18015,1.18021,1.18,1.18019,786 +2020-08-23 23:15,1.1802,1.18065,1.18017,1.18058,1190 +2020-08-23 23:30,1.18057,1.18057,1.18027,1.1803,445 +2020-08-23 23:45,1.1803,1.1803,1.17965,1.17981,496 +2020-08-24 00:00,1.17981,1.17993,1.17907,1.17958,1342 +2020-08-24 00:15,1.17957,1.18001,1.17955,1.17976,938 +2020-08-24 00:30,1.17976,1.17987,1.17935,1.17981,795 +2020-08-24 00:45,1.17982,1.17991,1.17944,1.17947,1057 +2020-08-24 01:00,1.17947,1.17994,1.17933,1.17989,1187 +2020-08-24 01:15,1.17988,1.18064,1.17988,1.18036,1303 +2020-08-24 01:30,1.18036,1.18059,1.18016,1.18016,1487 +2020-08-24 01:45,1.18019,1.1803,1.17995,1.18022,1071 +2020-08-24 02:00,1.18021,1.18045,1.18004,1.18042,716 +2020-08-24 02:15,1.18042,1.18042,1.18009,1.18018,414 +2020-08-24 02:30,1.18021,1.18028,1.17976,1.1799,510 +2020-08-24 02:45,1.1799,1.17991,1.17905,1.17912,1157 +2020-08-24 03:00,1.17911,1.17952,1.1791,1.17939,968 +2020-08-24 03:15,1.1794,1.17952,1.1792,1.17925,648 +2020-08-24 03:30,1.17926,1.17927,1.17846,1.17849,950 +2020-08-24 03:45,1.17847,1.17898,1.17845,1.17877,884 +2020-08-24 04:00,1.17876,1.17919,1.17871,1.17905,697 +2020-08-24 04:15,1.17904,1.17923,1.17899,1.17918,536 +2020-08-24 04:30,1.1792,1.17946,1.17917,1.17934,795 +2020-08-24 04:45,1.17934,1.17943,1.17909,1.17943,720 +2020-08-24 05:00,1.17944,1.17953,1.1791,1.17916,665 +2020-08-24 05:15,1.17917,1.17942,1.1791,1.17942,416 +2020-08-24 05:30,1.17942,1.17993,1.17942,1.17982,741 +2020-08-24 05:45,1.17983,1.18037,1.17972,1.18037,916 +2020-08-24 06:00,1.18036,1.18051,1.17993,1.17993,1950 +2020-08-24 06:15,1.17992,1.18028,1.17946,1.18021,2103 +2020-08-24 06:30,1.18021,1.18037,1.17962,1.18022,2302 +2020-08-24 06:45,1.18022,1.18087,1.18014,1.18059,2218 +2020-08-24 07:00,1.1806,1.18142,1.18059,1.18123,4289 +2020-08-24 07:15,1.18124,1.18133,1.18036,1.18048,3553 +2020-08-24 07:30,1.18051,1.18153,1.1803,1.18083,3557 +2020-08-24 07:45,1.18082,1.18151,1.1807,1.1814,3329 +2020-08-24 08:00,1.1814,1.18175,1.18109,1.18121,2721 +2020-08-24 08:15,1.18121,1.18177,1.18086,1.18146,2463 +2020-08-24 08:30,1.18145,1.18194,1.18114,1.18156,3297 +2020-08-24 08:45,1.18155,1.18249,1.18153,1.18219,3628 +2020-08-24 09:00,1.18218,1.1825,1.18215,1.18216,2486 +2020-08-24 09:15,1.18217,1.18313,1.18216,1.18299,3445 +2020-08-24 09:30,1.18298,1.18397,1.1827,1.18374,2830 +2020-08-24 09:45,1.18374,1.18386,1.18329,1.18334,2044 +2020-08-24 10:00,1.18333,1.18373,1.1832,1.18334,1564 +2020-08-24 10:15,1.18334,1.18381,1.18324,1.18376,1247 +2020-08-24 10:30,1.18378,1.18442,1.18289,1.18303,2343 +2020-08-24 10:45,1.18304,1.18351,1.18277,1.18321,1886 +2020-08-24 11:00,1.18322,1.18407,1.18281,1.18399,2501 +2020-08-24 11:15,1.18399,1.18428,1.18381,1.18401,2324 +2020-08-24 11:30,1.18402,1.18423,1.18363,1.1837,2223 +2020-08-24 11:45,1.1837,1.1846,1.18365,1.1843,2541 +2020-08-24 12:00,1.18432,1.18495,1.18421,1.18459,8342 +2020-08-24 12:15,1.18461,1.18487,1.18406,1.18423,3002 +2020-08-24 12:30,1.18422,1.18428,1.18328,1.18363,2607 +2020-08-24 12:45,1.18363,1.18446,1.18344,1.1842,3514 +2020-08-24 13:00,1.1842,1.18449,1.18359,1.18369,4066 +2020-08-24 13:15,1.18371,1.18429,1.18368,1.18387,2245 +2020-08-24 13:30,1.18388,1.18389,1.18278,1.18302,11807 +2020-08-24 13:45,1.18303,1.1838,1.18253,1.18257,9008 +2020-08-24 14:00,1.18258,1.18281,1.18214,1.1826,7478 +2020-08-24 14:15,1.18261,1.18261,1.18195,1.18202,3688 +2020-08-24 14:30,1.18203,1.18246,1.1815,1.18189,4463 +2020-08-24 14:45,1.1819,1.18269,1.18107,1.18132,6922 +2020-08-24 15:00,1.18132,1.18143,1.18002,1.18011,13356 +2020-08-24 15:15,1.18011,1.18053,1.17925,1.17975,4403 +2020-08-24 15:30,1.17976,1.18033,1.1797,1.18021,3172 +2020-08-24 15:45,1.1802,1.18037,1.17993,1.18028,2557 +2020-08-24 16:00,1.18026,1.18066,1.17958,1.18056,2651 +2020-08-24 16:15,1.18057,1.18063,1.18,1.18021,1983 +2020-08-24 16:30,1.18021,1.18023,1.17915,1.17945,7408 +2020-08-24 16:45,1.17946,1.17997,1.17938,1.17994,1641 +2020-08-24 17:00,1.17993,1.18054,1.17992,1.18009,2080 +2020-08-24 17:15,1.18009,1.18019,1.17951,1.18018,1853 +2020-08-24 17:30,1.18018,1.18018,1.17959,1.1796,3376 +2020-08-24 17:45,1.1796,1.17985,1.17934,1.17975,2248 +2020-08-24 18:00,1.17974,1.17994,1.17953,1.17976,1588 +2020-08-24 18:15,1.17977,1.17987,1.17941,1.1797,3302 +2020-08-24 18:30,1.17968,1.17989,1.17941,1.17967,1175 +2020-08-24 18:45,1.17968,1.17972,1.17916,1.1792,982 +2020-08-24 19:00,1.1792,1.17927,1.17878,1.17879,1067 +2020-08-24 19:15,1.17879,1.17916,1.17859,1.17908,1243 +2020-08-24 19:30,1.17907,1.17928,1.17849,1.17849,1365 +2020-08-24 19:45,1.1785,1.17921,1.17841,1.17918,1766 +2020-08-24 20:00,1.17917,1.17917,1.17863,1.17863,608 +2020-08-24 20:15,1.17863,1.1788,1.17857,1.17871,270 +2020-08-24 20:30,1.17871,1.17879,1.1785,1.1786,238 +2020-08-24 20:45,1.1786,1.17877,1.17856,1.17873,244 +2020-08-24 21:00,1.17871,1.1792,1.17857,1.17896,158 +2020-08-24 21:15,1.17906,1.17928,1.17872,1.17894,182 +2020-08-24 21:30,1.17895,1.17917,1.17889,1.17903,193 +2020-08-24 21:45,1.17909,1.17911,1.17888,1.17911,201 +2020-08-24 22:00,1.17893,1.17918,1.17893,1.17918,368 +2020-08-24 22:15,1.17918,1.17951,1.17909,1.17932,503 +2020-08-24 22:30,1.17931,1.17944,1.17927,1.17937,235 +2020-08-24 22:45,1.17936,1.17938,1.17924,1.17936,179 +2020-08-24 23:00,1.17938,1.17943,1.17923,1.17925,297 +2020-08-24 23:15,1.17927,1.17929,1.17909,1.17912,208 +2020-08-24 23:30,1.17912,1.17932,1.17912,1.17926,345 +2020-08-24 23:45,1.17925,1.17951,1.17922,1.17934,452 +2020-08-25 00:00,1.17934,1.17953,1.17867,1.17897,1207 +2020-08-25 00:15,1.17895,1.17915,1.17841,1.179,914 +2020-08-25 00:30,1.179,1.1798,1.17897,1.17975,1357 +2020-08-25 00:45,1.17975,1.18004,1.17934,1.17985,1457 +2020-08-25 01:00,1.17984,1.18017,1.17962,1.17999,1575 +2020-08-25 01:15,1.18,1.18018,1.17971,1.17973,1141 +2020-08-25 01:30,1.17973,1.18028,1.17972,1.18023,1144 +2020-08-25 01:45,1.18025,1.18071,1.18004,1.18062,1413 +2020-08-25 02:00,1.18063,1.18083,1.17995,1.18005,1067 +2020-08-25 02:15,1.18004,1.18033,1.17995,1.18008,1282 +2020-08-25 02:30,1.18008,1.18064,1.18003,1.18057,1008 +2020-08-25 02:45,1.18057,1.18073,1.18032,1.18048,1122 +2020-08-25 03:00,1.18046,1.18058,1.18033,1.18038,829 +2020-08-25 03:15,1.18038,1.18038,1.18018,1.18028,472 +2020-08-25 03:30,1.18028,1.18071,1.18022,1.18052,764 +2020-08-25 03:45,1.18053,1.18079,1.18052,1.18058,621 +2020-08-25 04:00,1.1806,1.18142,1.1806,1.18122,1055 +2020-08-25 04:15,1.1812,1.1812,1.18097,1.18101,555 +2020-08-25 04:30,1.18099,1.18141,1.18097,1.1814,585 +2020-08-25 04:45,1.1814,1.18147,1.18101,1.18104,674 +2020-08-25 05:00,1.18104,1.18114,1.18053,1.18073,725 +2020-08-25 05:15,1.18075,1.18094,1.18058,1.18069,632 +2020-08-25 05:30,1.18068,1.18084,1.18053,1.18074,783 +2020-08-25 05:45,1.18074,1.18103,1.18061,1.18098,759 +2020-08-25 06:00,1.18097,1.18151,1.1807,1.18085,2227 +2020-08-25 06:15,1.18085,1.18135,1.18075,1.1812,1845 +2020-08-25 06:30,1.18124,1.18132,1.18012,1.18034,2403 +2020-08-25 06:45,1.18034,1.18059,1.17987,1.17998,3003 +2020-08-25 07:00,1.17999,1.18176,1.17979,1.18155,4634 +2020-08-25 07:15,1.18155,1.18173,1.18116,1.1813,17672 +2020-08-25 07:30,1.18129,1.18231,1.18128,1.18214,3589 +2020-08-25 07:45,1.18214,1.18295,1.18184,1.18267,4334 +2020-08-25 08:00,1.18267,1.18348,1.18251,1.18252,5859 +2020-08-25 08:15,1.18253,1.18271,1.1819,1.18194,3372 +2020-08-25 08:30,1.18194,1.18199,1.18114,1.18114,3757 +2020-08-25 08:45,1.18113,1.18235,1.18109,1.18235,3674 +2020-08-25 09:00,1.18236,1.183,1.18208,1.18294,3263 +2020-08-25 09:15,1.18293,1.18424,1.18293,1.18359,4575 +2020-08-25 09:30,1.1836,1.18397,1.18291,1.18314,3676 +2020-08-25 09:45,1.18314,1.18325,1.1827,1.18281,2755 +2020-08-25 10:00,1.18282,1.18362,1.18277,1.18285,2717 +2020-08-25 10:15,1.18287,1.18382,1.18282,1.18336,3311 +2020-08-25 10:30,1.18337,1.18358,1.18291,1.18347,2823 +2020-08-25 10:45,1.18346,1.1836,1.18241,1.18258,2956 +2020-08-25 11:00,1.18257,1.18297,1.18229,1.18266,2745 +2020-08-25 11:15,1.18268,1.1831,1.18267,1.18271,2541 +2020-08-25 11:30,1.18271,1.18296,1.18154,1.18165,2261 +2020-08-25 11:45,1.18165,1.1817,1.181,1.18131,3821 +2020-08-25 12:00,1.18131,1.18215,1.1812,1.18143,9171 +2020-08-25 12:15,1.18142,1.18147,1.18059,1.18136,3054 +2020-08-25 12:30,1.18137,1.18171,1.18055,1.18058,16295 +2020-08-25 12:45,1.1806,1.18187,1.18037,1.18163,3355 +2020-08-25 13:00,1.18163,1.18355,1.1815,1.18354,35733 +2020-08-25 13:15,1.18353,1.18396,1.1832,1.18362,4079 +2020-08-25 13:30,1.18361,1.18435,1.18302,1.18336,4948 +2020-08-25 13:45,1.18335,1.18404,1.18251,1.18303,4539 +2020-08-25 14:00,1.18303,1.18369,1.18218,1.18292,6814 +2020-08-25 14:15,1.18294,1.18344,1.18265,1.1833,5136 +2020-08-25 14:30,1.18331,1.18353,1.18214,1.18227,4785 +2020-08-25 14:45,1.18226,1.18256,1.18116,1.18227,131723 +2020-08-25 15:00,1.1823,1.18265,1.18183,1.18216,5159 +2020-08-25 15:15,1.18215,1.18311,1.1813,1.18177,4853 +2020-08-25 15:30,1.18177,1.18197,1.18092,1.1812,13912 +2020-08-25 15:45,1.18119,1.18191,1.18103,1.18175,3369 +2020-08-25 16:00,1.18176,1.18198,1.1813,1.1814,2620 +2020-08-25 16:15,1.18141,1.18157,1.18066,1.18071,1974 +2020-08-25 16:30,1.18071,1.18117,1.1805,1.18099,3055 +2020-08-25 16:45,1.18101,1.1814,1.18088,1.18117,2208 +2020-08-25 17:00,1.18118,1.1817,1.18112,1.18141,1560 +2020-08-25 17:15,1.18141,1.18164,1.18138,1.18156,1136 +2020-08-25 17:30,1.18157,1.18185,1.18147,1.18176,1614 +2020-08-25 17:45,1.18175,1.18209,1.18151,1.18208,1169 +2020-08-25 18:00,1.18208,1.18261,1.18186,1.18248,17641 +2020-08-25 18:15,1.18247,1.18305,1.18216,1.18288,1523 +2020-08-25 18:30,1.1829,1.1834,1.18277,1.183,998 +2020-08-25 18:45,1.183,1.18348,1.183,1.18343,723 +2020-08-25 19:00,1.18342,1.18356,1.18321,1.1834,1333 +2020-08-25 19:15,1.1834,1.18368,1.18338,1.18357,1595 +2020-08-25 19:30,1.18357,1.18373,1.18323,1.18328,1477 +2020-08-25 19:45,1.18328,1.18333,1.18306,1.18306,915 +2020-08-25 20:00,1.18306,1.18348,1.18305,1.1834,540 +2020-08-25 20:15,1.1834,1.1835,1.18332,1.18341,487 +2020-08-25 20:30,1.1834,1.18351,1.18332,1.18348,278 +2020-08-25 20:45,1.18348,1.18357,1.18332,1.18343,300 +2020-08-25 21:00,1.1834,1.18366,1.18335,1.18356,57 +2020-08-25 21:15,1.18347,1.18351,1.18337,1.18344,68 +2020-08-25 21:30,1.18343,1.18349,1.1833,1.18336,326 +2020-08-25 21:45,1.18336,1.18343,1.18331,1.18333,144 +2020-08-25 22:00,1.18334,1.18355,1.18333,1.18347,361 +2020-08-25 22:15,1.18347,1.18367,1.18347,1.18362,405 +2020-08-25 22:30,1.18362,1.18362,1.18343,1.18343,276 +2020-08-25 22:45,1.18344,1.18348,1.18323,1.18333,425 +2020-08-25 23:00,1.18333,1.1834,1.18322,1.18322,435 +2020-08-25 23:15,1.18321,1.18326,1.18314,1.18324,597 +2020-08-25 23:30,1.18326,1.1838,1.18326,1.18367,732 +2020-08-25 23:45,1.18368,1.18385,1.18334,1.18339,1023 +2020-08-26 00:00,1.1834,1.1839,1.18302,1.18348,1694 +2020-08-26 00:15,1.18349,1.18355,1.1833,1.18349,1309 +2020-08-26 00:30,1.1835,1.18352,1.18275,1.18292,2161 +2020-08-26 00:45,1.18292,1.18308,1.18276,1.18287,936 +2020-08-26 01:00,1.18289,1.18303,1.18274,1.18301,1650 +2020-08-26 01:15,1.18301,1.1831,1.18275,1.18283,1040 +2020-08-26 01:30,1.18287,1.18315,1.18283,1.18296,1696 +2020-08-26 01:45,1.18295,1.18348,1.18291,1.18323,1633 +2020-08-26 02:00,1.18325,1.18325,1.18232,1.18234,1833 +2020-08-26 02:15,1.18234,1.18249,1.1823,1.18236,1169 +2020-08-26 02:30,1.18237,1.1825,1.18194,1.18194,1384 +2020-08-26 02:45,1.18194,1.18201,1.18176,1.18194,1218 +2020-08-26 03:00,1.18194,1.18199,1.18165,1.18197,1086 +2020-08-26 03:15,1.18196,1.18198,1.18183,1.18187,502 +2020-08-26 03:30,1.18188,1.18209,1.18186,1.18186,904 +2020-08-26 03:45,1.18186,1.18199,1.18185,1.18185,631 +2020-08-26 04:00,1.18185,1.18204,1.18185,1.18202,588 +2020-08-26 04:15,1.18202,1.1821,1.18169,1.1817,1059 +2020-08-26 04:30,1.18171,1.18172,1.18135,1.18141,1055 +2020-08-26 04:45,1.18141,1.18147,1.181,1.18118,1288 +2020-08-26 05:00,1.18119,1.18132,1.18076,1.18076,1198 +2020-08-26 05:15,1.18076,1.18135,1.18069,1.18135,1471 +2020-08-26 05:30,1.18134,1.18141,1.18074,1.18089,2334 +2020-08-26 05:45,1.18088,1.1813,1.18084,1.18126,1329 +2020-08-26 06:00,1.18126,1.18185,1.18116,1.18149,1537 +2020-08-26 06:15,1.18148,1.18178,1.1812,1.18156,1868 +2020-08-26 06:30,1.18156,1.18187,1.18132,1.18181,2141 +2020-08-26 06:45,1.18181,1.18196,1.18103,1.18118,7184 +2020-08-26 07:00,1.18119,1.18125,1.18005,1.18092,32304 +2020-08-26 07:15,1.18092,1.18181,1.18047,1.18168,5123 +2020-08-26 07:30,1.18168,1.18245,1.18168,1.18205,3913 +2020-08-26 07:45,1.18206,1.18251,1.1807,1.18075,8657 +2020-08-26 08:00,1.18075,1.18156,1.18041,1.1812,3874 +2020-08-26 08:15,1.18123,1.18176,1.181,1.18141,3723 +2020-08-26 08:30,1.18142,1.18232,1.18112,1.18171,5562 +2020-08-26 08:45,1.18171,1.18182,1.18112,1.18142,3559 +2020-08-26 09:00,1.18142,1.18158,1.18071,1.18088,3769 +2020-08-26 09:15,1.18092,1.18128,1.18039,1.18087,3407 +2020-08-26 09:30,1.18087,1.18164,1.18085,1.18119,2158 +2020-08-26 09:45,1.18117,1.18204,1.18081,1.18165,3059 +2020-08-26 10:00,1.18167,1.18206,1.18138,1.18167,2516 +2020-08-26 10:15,1.18168,1.18255,1.18116,1.18127,3694 +2020-08-26 10:30,1.18127,1.18141,1.181,1.18121,3255 +2020-08-26 10:45,1.18119,1.18174,1.18094,1.1813,2415 +2020-08-26 11:00,1.18131,1.18179,1.18114,1.18161,2726 +2020-08-26 11:15,1.1816,1.1816,1.18091,1.18094,2220 +2020-08-26 11:30,1.18095,1.18116,1.18074,1.18097,2953 +2020-08-26 11:45,1.18097,1.18097,1.17953,1.17956,4567 +2020-08-26 12:00,1.17956,1.17978,1.17876,1.1789,18794 +2020-08-26 12:15,1.17889,1.17914,1.17801,1.17871,4813 +2020-08-26 12:30,1.17874,1.17882,1.17721,1.17763,6167 +2020-08-26 12:45,1.17762,1.17911,1.17747,1.17884,3811 +2020-08-26 13:00,1.17883,1.17896,1.17811,1.17889,9741 +2020-08-26 13:15,1.1789,1.18003,1.17872,1.17965,4144 +2020-08-26 13:30,1.17966,1.1819,1.17946,1.1815,5985 +2020-08-26 13:45,1.18151,1.18188,1.1809,1.18151,5342 +2020-08-26 14:00,1.18151,1.18178,1.18087,1.18125,4073 +2020-08-26 14:15,1.18127,1.18247,1.18125,1.18238,4270 +2020-08-26 14:30,1.18237,1.18276,1.18175,1.1819,5436 +2020-08-26 14:45,1.18191,1.18242,1.18121,1.18176,5032 +2020-08-26 15:00,1.18175,1.18194,1.18123,1.1816,3256 +2020-08-26 15:15,1.18163,1.18212,1.18155,1.18188,3304 +2020-08-26 15:30,1.18186,1.18269,1.18172,1.18266,3056 +2020-08-26 15:45,1.18266,1.18268,1.18104,1.18127,2800 +2020-08-26 16:00,1.18127,1.1818,1.1812,1.1818,2754 +2020-08-26 16:15,1.18181,1.18299,1.18171,1.18274,2594 +2020-08-26 16:30,1.18274,1.18355,1.18273,1.18325,1961 +2020-08-26 16:45,1.18325,1.18343,1.18273,1.18323,2177 +2020-08-26 17:00,1.18322,1.18367,1.18322,1.18359,1976 +2020-08-26 17:15,1.18358,1.18391,1.18253,1.18254,2236 +2020-08-26 17:30,1.18256,1.18296,1.18242,1.18277,1790 +2020-08-26 17:45,1.18278,1.18291,1.1823,1.18231,1623 +2020-08-26 18:00,1.1823,1.18249,1.18214,1.18222,1672 +2020-08-26 18:15,1.18222,1.18239,1.1821,1.18231,933 +2020-08-26 18:30,1.1823,1.18248,1.1817,1.18171,1921 +2020-08-26 18:45,1.1817,1.18188,1.18148,1.18152,2835 +2020-08-26 19:00,1.18153,1.18187,1.1815,1.18185,1799 +2020-08-26 19:15,1.18183,1.18216,1.18163,1.18215,1852 +2020-08-26 19:30,1.18215,1.18241,1.1821,1.18217,1272 +2020-08-26 19:45,1.18216,1.18286,1.18216,1.18283,1440 +2020-08-26 20:00,1.1828,1.18307,1.1826,1.1826,934 +2020-08-26 20:15,1.1826,1.18309,1.18255,1.18309,504 +2020-08-26 20:30,1.18308,1.18324,1.18289,1.18302,525 +2020-08-26 20:45,1.18304,1.18321,1.18294,1.18298,272 +2020-08-26 21:00,1.18297,1.1832,1.18287,1.18312,35 +2020-08-26 21:15,1.18311,1.18319,1.18311,1.18318,32 +2020-08-26 21:30,1.18318,1.18329,1.18302,1.18305,157 +2020-08-26 21:45,1.18304,1.18318,1.18284,1.18306,109 +2020-08-26 22:00,1.18307,1.18327,1.18302,1.18315,319 +2020-08-26 22:15,1.18317,1.18341,1.18304,1.18331,416 +2020-08-26 22:30,1.1833,1.18368,1.18317,1.18368,681 +2020-08-26 22:45,1.18369,1.18381,1.18349,1.18365,796 +2020-08-26 23:00,1.18367,1.1839,1.18359,1.1836,261 +2020-08-26 23:15,1.18359,1.18373,1.18346,1.18373,381 +2020-08-26 23:30,1.18372,1.18385,1.18365,1.18378,364 +2020-08-26 23:45,1.18379,1.18406,1.18374,1.184,337 +2020-08-27 00:00,1.18403,1.18438,1.18396,1.18428,881 +2020-08-27 00:15,1.18427,1.18449,1.18384,1.18391,818 +2020-08-27 00:30,1.18391,1.18398,1.18369,1.18375,458 +2020-08-27 00:45,1.18376,1.18399,1.18363,1.18393,9142 +2020-08-27 01:00,1.18394,1.18497,1.18386,1.18391,1788 +2020-08-27 01:15,1.18392,1.18393,1.18326,1.18329,1815 +2020-08-27 01:30,1.1833,1.1838,1.18304,1.18311,3192 +2020-08-27 01:45,1.18311,1.18334,1.18282,1.1829,3182 +2020-08-27 02:00,1.18291,1.18323,1.18282,1.1832,2718 +2020-08-27 02:15,1.18321,1.18328,1.18283,1.18297,760 +2020-08-27 02:30,1.18298,1.18309,1.18276,1.18293,883 +2020-08-27 02:45,1.18294,1.18296,1.18256,1.18277,454 +2020-08-27 03:00,1.18276,1.18278,1.18242,1.1827,577 +2020-08-27 03:15,1.1827,1.18304,1.1827,1.18299,505 +2020-08-27 03:30,1.18298,1.18329,1.18288,1.18326,513 +2020-08-27 03:45,1.18326,1.18342,1.18322,1.18336,415 +2020-08-27 04:00,1.18337,1.18341,1.1831,1.18329,302 +2020-08-27 04:15,1.18329,1.1834,1.1832,1.18335,347 +2020-08-27 04:30,1.18336,1.18358,1.18335,1.18344,935 +2020-08-27 04:45,1.18343,1.18354,1.18323,1.18327,671 +2020-08-27 05:00,1.18326,1.18328,1.18276,1.18286,1023 +2020-08-27 05:15,1.18285,1.18329,1.18277,1.18314,1095 +2020-08-27 05:30,1.18313,1.18313,1.18256,1.18266,1339 +2020-08-27 05:45,1.18265,1.18311,1.18241,1.18309,1719 +2020-08-27 06:00,1.1831,1.18325,1.18265,1.1828,2457 +2020-08-27 06:15,1.1828,1.1831,1.18247,1.18292,1889 +2020-08-27 06:30,1.18291,1.18326,1.1824,1.1829,3295 +2020-08-27 06:45,1.1829,1.18395,1.18273,1.18307,2891 +2020-08-27 07:00,1.18308,1.18374,1.1821,1.18274,49553 +2020-08-27 07:15,1.18275,1.18289,1.18165,1.18229,4637 +2020-08-27 07:30,1.18228,1.18342,1.18199,1.18314,10398 +2020-08-27 07:45,1.18313,1.18401,1.183,1.18342,4493 +2020-08-27 08:00,1.18345,1.18362,1.18282,1.18331,3797 +2020-08-27 08:15,1.18331,1.18381,1.18278,1.18374,3682 +2020-08-27 08:30,1.18374,1.18386,1.18319,1.18353,3234 +2020-08-27 08:45,1.18357,1.1839,1.18325,1.18338,5046 +2020-08-27 09:00,1.18341,1.18404,1.18326,1.18367,3093 +2020-08-27 09:15,1.18366,1.18367,1.18279,1.18318,2991 +2020-08-27 09:30,1.18318,1.18329,1.18276,1.18283,2993 +2020-08-27 09:45,1.18283,1.18283,1.18215,1.18249,2750 +2020-08-27 10:00,1.18249,1.1825,1.18201,1.18246,2308 +2020-08-27 10:15,1.18246,1.18258,1.18214,1.18233,2170 +2020-08-27 10:30,1.18233,1.1824,1.18063,1.18064,31027 +2020-08-27 10:45,1.18063,1.18075,1.18017,1.18057,8733 +2020-08-27 11:00,1.18055,1.18055,1.17941,1.18038,12157 +2020-08-27 11:15,1.18038,1.18083,1.17956,1.18082,12590 +2020-08-27 11:30,1.18081,1.18142,1.18065,1.18126,3175 +2020-08-27 11:45,1.18126,1.18186,1.1811,1.18128,2767 +2020-08-27 12:00,1.1813,1.18156,1.18024,1.18051,3948 +2020-08-27 12:15,1.18051,1.18098,1.17991,1.18093,3718 +2020-08-27 12:30,1.18095,1.18135,1.18049,1.18124,13307 +2020-08-27 12:45,1.18124,1.1839,1.18119,1.18325,8301 +2020-08-27 13:00,1.18325,1.18754,1.18266,1.1865,15837 +2020-08-27 13:15,1.1865,1.19018,1.18646,1.18744,15647 +2020-08-27 13:30,1.18746,1.18804,1.18026,1.18154,26514 +2020-08-27 13:45,1.18155,1.18163,1.1787,1.1804,15158 +2020-08-27 14:00,1.18038,1.18038,1.17623,1.17708,24436 +2020-08-27 14:15,1.17705,1.18096,1.17641,1.17968,12276 +2020-08-27 14:30,1.17966,1.18046,1.17862,1.17925,7972 +2020-08-27 14:45,1.17924,1.17929,1.17718,1.17888,8604 +2020-08-27 15:00,1.17887,1.17972,1.17839,1.17849,6336 +2020-08-27 15:15,1.17852,1.18022,1.17795,1.17982,9545 +2020-08-27 15:30,1.17981,1.18256,1.17949,1.18254,6440 +2020-08-27 15:45,1.18253,1.18297,1.18201,1.18229,5178 +2020-08-27 16:00,1.18232,1.18325,1.18182,1.18251,4641 +2020-08-27 16:15,1.18255,1.18322,1.18182,1.18186,4834 +2020-08-27 16:30,1.18185,1.18239,1.18122,1.18135,4863 +2020-08-27 16:45,1.18135,1.18155,1.17955,1.17973,6258 +2020-08-27 17:00,1.17973,1.18101,1.17929,1.18087,4881 +2020-08-27 17:15,1.18086,1.18128,1.18074,1.18104,7456 +2020-08-27 17:30,1.18107,1.18195,1.18103,1.18173,2304 +2020-08-27 17:45,1.18173,1.18276,1.18125,1.18224,3265 +2020-08-27 18:00,1.18229,1.18349,1.18217,1.18278,3551 +2020-08-27 18:15,1.18277,1.18278,1.18237,1.18272,2704 +2020-08-27 18:30,1.18272,1.18292,1.18233,1.18234,2227 +2020-08-27 18:45,1.18237,1.18256,1.18223,1.18223,2577 +2020-08-27 19:00,1.18224,1.18275,1.1821,1.18241,2667 +2020-08-27 19:15,1.18241,1.18259,1.18218,1.18225,2037 +2020-08-27 19:30,1.18227,1.18257,1.18212,1.18221,2176 +2020-08-27 19:45,1.18222,1.18247,1.1818,1.1819,2543 +2020-08-27 20:00,1.1819,1.18232,1.18181,1.18225,693 +2020-08-27 20:15,1.18225,1.18237,1.18211,1.18217,367 +2020-08-27 20:30,1.18216,1.18231,1.18214,1.18226,405 +2020-08-27 20:45,1.18226,1.1823,1.18201,1.18215,376 +2020-08-27 21:00,1.18215,1.18215,1.18195,1.18196,34 +2020-08-27 21:15,1.18199,1.18205,1.18197,1.182,16 +2020-08-27 21:30,1.182,1.182,1.18195,1.18197,265 +2020-08-27 21:45,1.18197,1.18208,1.18197,1.18198,118 +2020-08-27 22:00,1.18197,1.18247,1.18197,1.18243,1192 +2020-08-27 22:15,1.18242,1.18243,1.1822,1.1823,350 +2020-08-27 22:30,1.18232,1.18233,1.18193,1.18193,655 +2020-08-27 22:45,1.18195,1.18201,1.18183,1.18184,485 +2020-08-27 23:00,1.18185,1.18202,1.18173,1.18199,415 +2020-08-27 23:15,1.18202,1.18205,1.18149,1.18151,813 +2020-08-27 23:30,1.18152,1.18219,1.18152,1.18212,855 +2020-08-27 23:45,1.18211,1.18215,1.18174,1.18205,565 +2020-08-28 00:00,1.18205,1.18209,1.1811,1.18149,1727 +2020-08-28 00:15,1.1815,1.18191,1.18136,1.18142,1300 +2020-08-28 00:30,1.18141,1.18177,1.18109,1.18114,1225 +2020-08-28 00:45,1.18114,1.18192,1.18114,1.18171,1421 +2020-08-28 01:00,1.18171,1.18198,1.18146,1.18196,1202 +2020-08-28 01:15,1.18197,1.18212,1.18156,1.1817,1672 +2020-08-28 01:30,1.18171,1.18244,1.18162,1.18238,1759 +2020-08-28 01:45,1.18238,1.18287,1.18215,1.18285,2699 +2020-08-28 02:00,1.18285,1.18336,1.18262,1.18331,2320 +2020-08-28 02:15,1.18334,1.18352,1.18314,1.18334,1630 +2020-08-28 02:30,1.18334,1.18336,1.18287,1.18302,1672 +2020-08-28 02:45,1.18303,1.18361,1.18303,1.18354,1800 +2020-08-28 03:00,1.18355,1.18449,1.1835,1.18397,2691 +2020-08-28 03:15,1.18398,1.18459,1.18389,1.18453,1432 +2020-08-28 03:30,1.18454,1.18517,1.1843,1.18463,1887 +2020-08-28 03:45,1.18464,1.18595,1.18457,1.1859,1988 +2020-08-28 04:00,1.18589,1.18635,1.18557,1.18563,1510 +2020-08-28 04:15,1.18565,1.18585,1.18547,1.18547,1642 +2020-08-28 04:30,1.18546,1.18649,1.18526,1.18636,1354 +2020-08-28 04:45,1.18633,1.18743,1.18609,1.18736,1844 +2020-08-28 05:00,1.18738,1.18794,1.1871,1.18729,15065 +2020-08-28 05:15,1.1873,1.18794,1.18692,1.18697,4804 +2020-08-28 05:30,1.18697,1.18752,1.1863,1.18734,4965 +2020-08-28 05:45,1.18735,1.18781,1.1865,1.18732,2679 +2020-08-28 06:00,1.18732,1.18775,1.18678,1.18681,4881 +2020-08-28 06:15,1.1868,1.18731,1.18652,1.18683,7981 +2020-08-28 06:30,1.18681,1.18735,1.18653,1.1869,7920 +2020-08-28 06:45,1.18689,1.18696,1.18609,1.1867,14365 +2020-08-28 07:00,1.18669,1.18905,1.18666,1.18872,14195 +2020-08-28 07:15,1.18873,1.18973,1.18825,1.18858,119666 +2020-08-28 07:30,1.18859,1.18998,1.18859,1.18941,5456 +2020-08-28 07:45,1.18943,1.18949,1.18853,1.18913,4096 +2020-08-28 08:00,1.18914,1.18946,1.18857,1.18946,5191 +2020-08-28 08:15,1.18948,1.191,1.18947,1.19091,6553 +2020-08-28 08:30,1.1909,1.19178,1.19056,1.19094,69451 +2020-08-28 08:45,1.19094,1.19138,1.19056,1.19091,3727 +2020-08-28 09:00,1.1909,1.19197,1.19084,1.19162,4228 +2020-08-28 09:15,1.19162,1.19187,1.19029,1.19063,8106 +2020-08-28 09:30,1.19064,1.19101,1.19027,1.19042,4173 +2020-08-28 09:45,1.19043,1.19051,1.18864,1.18891,11742 +2020-08-28 10:00,1.18892,1.18944,1.18854,1.18938,7381 +2020-08-28 10:15,1.18937,1.18946,1.18857,1.18932,3165 +2020-08-28 10:30,1.18932,1.18989,1.18916,1.18972,2917 +2020-08-28 10:45,1.18973,1.19057,1.1897,1.19046,3721 +2020-08-28 11:00,1.19047,1.19102,1.19002,1.19081,4218 +2020-08-28 11:15,1.1908,1.19109,1.19041,1.19103,3038 +2020-08-28 11:30,1.19104,1.19188,1.19093,1.19097,4296 +2020-08-28 11:45,1.19097,1.19132,1.19074,1.19112,3344 +2020-08-28 12:00,1.19114,1.19174,1.19113,1.19144,3154 +2020-08-28 12:15,1.19145,1.19189,1.19108,1.19114,3544 +2020-08-28 12:30,1.19113,1.19163,1.18894,1.18995,7709 +2020-08-28 12:45,1.18992,1.1901,1.18746,1.18858,6009 +2020-08-28 13:00,1.18858,1.18922,1.18751,1.18808,21601 +2020-08-28 13:15,1.18812,1.18939,1.18809,1.18916,7451 +2020-08-28 13:30,1.18917,1.18973,1.1877,1.1887,10560 +2020-08-28 13:45,1.1887,1.18909,1.18768,1.18787,6158 +2020-08-28 14:00,1.1879,1.18878,1.18673,1.18716,13924 +2020-08-28 14:15,1.18718,1.1895,1.18695,1.1893,27096 +2020-08-28 14:30,1.18928,1.18989,1.18833,1.18943,8711 +2020-08-28 14:45,1.18944,1.1911,1.18925,1.18961,11369 +2020-08-28 15:00,1.18962,1.19051,1.1895,1.19008,5429 +2020-08-28 15:15,1.19009,1.19038,1.18873,1.1899,4788 +2020-08-28 15:30,1.1899,1.19068,1.18987,1.19059,3689 +2020-08-28 15:45,1.19062,1.19066,1.18998,1.19003,3665 +2020-08-28 16:00,1.19001,1.19057,1.18996,1.19039,2148 +2020-08-28 16:15,1.19039,1.1905,1.18981,1.18998,1444 +2020-08-28 16:30,1.18999,1.19031,1.18941,1.18942,1949 +2020-08-28 16:45,1.18944,1.1896,1.18878,1.18884,2803 +2020-08-28 17:00,1.18885,1.18909,1.18855,1.1887,2357 +2020-08-28 17:15,1.1887,1.18926,1.18857,1.18877,2578 +2020-08-28 17:30,1.18876,1.18911,1.18867,1.18893,6754 +2020-08-28 17:45,1.18893,1.18896,1.18843,1.18865,2017 +2020-08-28 18:00,1.18865,1.18886,1.1885,1.18873,2208 +2020-08-28 18:15,1.18873,1.18929,1.18862,1.18923,1650 +2020-08-28 18:30,1.18924,1.18938,1.18839,1.18849,1209 +2020-08-28 18:45,1.18852,1.18909,1.18839,1.18904,1585 +2020-08-28 19:00,1.18904,1.18905,1.18836,1.18849,1869 +2020-08-28 19:15,1.18848,1.18939,1.18838,1.18928,1428 +2020-08-28 19:30,1.18929,1.18989,1.1892,1.18954,1254 +2020-08-28 19:45,1.18954,1.18982,1.18934,1.18981,882 +2020-08-28 20:00,1.1898,1.18999,1.18971,1.18997,654 +2020-08-28 20:15,1.18996,1.19035,1.18974,1.1903,402 +2020-08-28 20:30,1.19029,1.19029,1.19006,1.19025,334 +2020-08-28 20:45,1.19025,1.19064,1.18993,1.19018,624 +2020-08-30 21:00,1.18998,1.19053,1.18996,1.19008,49 +2020-08-30 21:15,1.19008,1.19092,1.19003,1.19071,108 +2020-08-30 21:30,1.19069,1.19096,1.19058,1.19068,52 +2020-08-30 21:45,1.19068,1.19097,1.1906,1.19077,41 +2020-08-30 22:00,1.19074,1.19133,1.19022,1.19024,990 +2020-08-30 22:15,1.19024,1.19062,1.19016,1.19027,2213 +2020-08-30 22:30,1.19029,1.19119,1.19017,1.19116,825 +2020-08-30 22:45,1.19116,1.19121,1.19075,1.19084,651 +2020-08-30 23:00,1.19085,1.19096,1.19062,1.19068,708 +2020-08-30 23:15,1.19068,1.19113,1.19051,1.19108,705 +2020-08-30 23:30,1.19106,1.19126,1.19077,1.19121,724 +2020-08-30 23:45,1.19121,1.19202,1.19117,1.19171,1271 +2020-08-31 00:00,1.1917,1.19295,1.19144,1.19149,2928 +2020-08-31 00:15,1.19149,1.19181,1.19107,1.1911,2275 +2020-08-31 00:30,1.19111,1.19157,1.19087,1.19106,2550 +2020-08-31 00:45,1.19107,1.19121,1.19066,1.19078,2876 +2020-08-31 01:00,1.19078,1.19081,1.19016,1.19023,11010 +2020-08-31 01:15,1.19023,1.19039,1.18966,1.1899,14982 +2020-08-31 01:30,1.18991,1.19025,1.18987,1.19001,2127 +2020-08-31 01:45,1.19,1.19087,1.1899,1.19081,2146 +2020-08-31 02:00,1.19082,1.19088,1.19048,1.19053,1466 +2020-08-31 02:15,1.19053,1.19075,1.19035,1.19075,1116 +2020-08-31 02:30,1.19074,1.19117,1.19072,1.19088,1238 +2020-08-31 02:45,1.19086,1.19145,1.19081,1.19142,1025 +2020-08-31 03:00,1.19142,1.19172,1.19111,1.19147,937 +2020-08-31 03:15,1.19147,1.1915,1.19103,1.19111,1189 +2020-08-31 03:30,1.19111,1.19144,1.19105,1.19121,1142 +2020-08-31 03:45,1.19122,1.19122,1.19085,1.19112,931 +2020-08-31 04:00,1.1911,1.19112,1.19074,1.19086,1505 +2020-08-31 04:15,1.19084,1.19091,1.19053,1.19073,1363 +2020-08-31 04:30,1.19071,1.19082,1.19031,1.19054,1162 +2020-08-31 04:45,1.19056,1.19056,1.19,1.1901,1311 +2020-08-31 05:00,1.1901,1.19036,1.19,1.19004,1295 +2020-08-31 05:15,1.19004,1.19033,1.19002,1.19015,1246 +2020-08-31 05:30,1.19015,1.19061,1.19006,1.19052,1165 +2020-08-31 05:45,1.19052,1.19059,1.1901,1.1904,997 +2020-08-31 06:00,1.19041,1.19084,1.18977,1.18985,1918 +2020-08-31 06:15,1.18983,1.18997,1.18945,1.18974,1053 +2020-08-31 06:30,1.18974,1.19027,1.18961,1.18998,2049 +2020-08-31 06:45,1.18998,1.19084,1.18937,1.19063,2940 +2020-08-31 07:00,1.19064,1.19119,1.18998,1.19035,4766 +2020-08-31 07:15,1.19034,1.19071,1.18964,1.19022,11070 +2020-08-31 07:30,1.19022,1.19028,1.18949,1.18983,24458 +2020-08-31 07:45,1.18984,1.18994,1.18921,1.18924,3678 +2020-08-31 08:00,1.18927,1.18973,1.18914,1.18969,4081 +2020-08-31 08:15,1.18968,1.18979,1.18859,1.18867,3797 +2020-08-31 08:30,1.18868,1.18969,1.1884,1.18966,4650 +2020-08-31 08:45,1.18965,1.19088,1.1896,1.1908,4425 +2020-08-31 09:00,1.19077,1.19132,1.19076,1.19081,3615 +2020-08-31 09:15,1.19079,1.19174,1.19076,1.19135,3712 +2020-08-31 09:30,1.19135,1.19163,1.191,1.19111,3227 +2020-08-31 09:45,1.19111,1.19176,1.19102,1.19171,4269 +2020-08-31 10:00,1.1917,1.19171,1.19091,1.19099,2176 +2020-08-31 10:15,1.19098,1.19218,1.19098,1.19184,2286 +2020-08-31 10:30,1.19183,1.19217,1.1916,1.19187,2754 +2020-08-31 10:45,1.1919,1.19264,1.19176,1.19191,3435 +2020-08-31 11:00,1.19192,1.19341,1.19184,1.19324,3899 +2020-08-31 11:15,1.19326,1.19358,1.19302,1.19348,2427 +2020-08-31 11:30,1.19347,1.19379,1.19312,1.19376,3392 +2020-08-31 11:45,1.19378,1.194,1.19357,1.19392,2382 +2020-08-31 12:00,1.19393,1.19397,1.19334,1.19395,3487 +2020-08-31 12:15,1.19398,1.19404,1.19332,1.19333,2774 +2020-08-31 12:30,1.19333,1.1935,1.1929,1.19298,2731 +2020-08-31 12:45,1.19296,1.19376,1.19291,1.1934,2939 +2020-08-31 13:00,1.19344,1.19438,1.19286,1.19433,3685 +2020-08-31 13:15,1.19433,1.19486,1.19351,1.19385,3803 +2020-08-31 13:30,1.19384,1.19387,1.19312,1.19337,4033 +2020-08-31 13:45,1.19338,1.19364,1.1921,1.19244,7153 +2020-08-31 14:00,1.19242,1.19429,1.19234,1.19417,4257 +2020-08-31 14:15,1.19418,1.1948,1.19341,1.19462,10391 +2020-08-31 14:30,1.19462,1.19501,1.19411,1.19484,13685 +2020-08-31 14:45,1.19484,1.1966,1.19449,1.19605,23431 +2020-08-31 15:00,1.19605,1.19606,1.19452,1.19542,283916 +2020-08-31 15:15,1.19543,1.19596,1.1946,1.19463,359384 +2020-08-31 15:30,1.19461,1.19487,1.19422,1.19447,39350 +2020-08-31 15:45,1.19446,1.19598,1.19446,1.19505,6230 +2020-08-31 16:00,1.19508,1.19517,1.19416,1.19417,5518 +2020-08-31 16:15,1.1942,1.19477,1.19415,1.19456,3092 +2020-08-31 16:30,1.19457,1.1948,1.19434,1.19443,12437 +2020-08-31 16:45,1.19445,1.19463,1.19399,1.19441,2221 +2020-08-31 17:00,1.19442,1.19495,1.19435,1.19448,2890 +2020-08-31 17:15,1.19447,1.19501,1.19447,1.19453,1722 +2020-08-31 17:30,1.19453,1.19461,1.19427,1.19435,1367 +2020-08-31 17:45,1.19436,1.1947,1.19424,1.19434,931 +2020-08-31 18:00,1.19432,1.19434,1.19386,1.19404,2052 +2020-08-31 18:15,1.19402,1.19414,1.19334,1.19374,2304 +2020-08-31 18:30,1.19374,1.19401,1.19366,1.19383,1614 +2020-08-31 18:45,1.19384,1.19409,1.1934,1.19346,3321 +2020-08-31 19:00,1.19344,1.19372,1.19322,1.19336,2677 +2020-08-31 19:15,1.19336,1.19339,1.19273,1.19305,2835 +2020-08-31 19:30,1.19305,1.1932,1.19256,1.193,2197 +2020-08-31 19:45,1.19299,1.19346,1.19293,1.1933,2442 +2020-08-31 20:00,1.19331,1.19387,1.19282,1.19288,1215 +2020-08-31 20:15,1.19292,1.19351,1.1929,1.19343,404 +2020-08-31 20:30,1.19342,1.19369,1.19321,1.19352,517 +2020-08-31 20:45,1.19353,1.19386,1.19335,1.19361,584 +2020-08-31 21:00,1.19358,1.19399,1.1932,1.19361,156 +2020-08-31 21:15,1.19358,1.19367,1.19351,1.19353,124 +2020-08-31 21:30,1.19352,1.19373,1.19351,1.19368,370 +2020-08-31 21:45,1.19378,1.19398,1.19378,1.1939,130 +2020-08-31 22:00,1.19391,1.194,1.19374,1.19391,495 +2020-08-31 22:15,1.19392,1.19398,1.19371,1.19371,683 +2020-08-31 22:30,1.1937,1.1939,1.19363,1.1939,531 +2020-08-31 22:45,1.19393,1.19393,1.1937,1.19371,528 +2020-08-31 23:00,1.19369,1.19386,1.19357,1.1936,1026 +2020-08-31 23:15,1.19361,1.19375,1.19361,1.19372,495 +2020-08-31 23:30,1.19373,1.19411,1.19366,1.1939,674 +2020-08-31 23:45,1.19389,1.19398,1.1936,1.19367,568 +2020-09-01 00:00,1.19368,1.19475,1.19368,1.19471,2039 +2020-09-01 00:15,1.19474,1.19481,1.1942,1.19435,1697 +2020-09-01 00:30,1.19435,1.19439,1.1939,1.19391,1053 +2020-09-01 00:45,1.1939,1.19432,1.19361,1.1941,1813 +2020-09-01 01:00,1.19411,1.19517,1.19411,1.1946,3689 +2020-09-01 01:15,1.1946,1.19511,1.1946,1.19495,2510 +2020-09-01 01:30,1.19495,1.19593,1.19493,1.19549,2529 +2020-09-01 01:45,1.19552,1.19738,1.19549,1.19705,2854 +2020-09-01 02:00,1.19706,1.19757,1.19654,1.19685,2724 +2020-09-01 02:15,1.19686,1.1972,1.19665,1.19707,2109 +2020-09-01 02:30,1.19706,1.19945,1.19694,1.19927,3573 +2020-09-01 02:45,1.19926,1.19944,1.19859,1.19911,2258 +2020-09-01 03:00,1.19912,1.19918,1.19853,1.19894,1557 +2020-09-01 03:15,1.19894,1.19972,1.19883,1.19941,2101 +2020-09-01 03:30,1.1994,1.19957,1.19872,1.19875,1415 +2020-09-01 03:45,1.19876,1.19921,1.19872,1.19895,978 +2020-09-01 04:00,1.19894,1.19947,1.19875,1.19936,1477 +2020-09-01 04:15,1.19937,1.19938,1.19909,1.19909,928 +2020-09-01 04:30,1.19909,1.1995,1.19902,1.1991,1670 +2020-09-01 04:45,1.19909,1.19911,1.1987,1.19873,1084 +2020-09-01 05:00,1.19874,1.1993,1.19874,1.19889,1411 +2020-09-01 05:15,1.19891,1.1994,1.19843,1.19859,3712 +2020-09-01 05:30,1.19859,1.19907,1.19834,1.19866,1805 +2020-09-01 05:45,1.19871,1.19947,1.19871,1.19935,9707 +2020-09-01 06:00,1.19935,1.19935,1.1984,1.19883,4944 +2020-09-01 06:15,1.19884,1.19884,1.1978,1.1978,3939 +2020-09-01 06:30,1.19783,1.19907,1.19779,1.19883,3284 +2020-09-01 06:45,1.19886,1.19893,1.1975,1.19765,16309 +2020-09-01 07:00,1.19765,1.19826,1.19659,1.19687,5741 +2020-09-01 07:15,1.19687,1.19741,1.19647,1.19696,4613 +2020-09-01 07:30,1.19697,1.19807,1.19652,1.19791,6014 +2020-09-01 07:45,1.19792,1.19968,1.19777,1.19908,15972 +2020-09-01 08:00,1.19905,1.19912,1.19829,1.1988,5662 +2020-09-01 08:15,1.19877,1.19882,1.19758,1.19784,8847 +2020-09-01 08:30,1.19784,1.19791,1.19615,1.19671,5621 +2020-09-01 08:45,1.19675,1.19775,1.1965,1.1973,4825 +2020-09-01 09:00,1.1973,1.19743,1.19652,1.19705,4970 +2020-09-01 09:15,1.19707,1.19728,1.1964,1.19656,4562 +2020-09-01 09:30,1.19656,1.19796,1.19635,1.19796,3933 +2020-09-01 09:45,1.19798,1.19823,1.19779,1.19806,2395 +2020-09-01 10:00,1.19806,1.19814,1.19699,1.19762,4539 +2020-09-01 10:15,1.1976,1.19893,1.19698,1.19871,5114 +2020-09-01 10:30,1.19871,1.19895,1.198,1.19844,3973 +2020-09-01 10:45,1.19843,1.19947,1.1981,1.19873,4031 +2020-09-01 11:00,1.19874,1.19952,1.19827,1.19835,5013 +2020-09-01 11:15,1.19835,1.19875,1.19791,1.1986,3882 +2020-09-01 11:30,1.19859,1.19932,1.19858,1.19907,4122 +2020-09-01 11:45,1.19905,1.19915,1.1982,1.19875,6243 +2020-09-01 12:00,1.19874,1.19882,1.198,1.19864,3496 +2020-09-01 12:15,1.19864,1.19864,1.19772,1.19775,3628 +2020-09-01 12:30,1.19775,1.1985,1.19769,1.19846,6008 +2020-09-01 12:45,1.19847,1.19903,1.19778,1.19887,16331 +2020-09-01 13:00,1.19885,1.19994,1.19854,1.19982,12977 +2020-09-01 13:15,1.19982,1.20113,1.19831,1.19939,7279 +2020-09-01 13:30,1.19938,1.19938,1.1969,1.19714,13854 +2020-09-01 13:45,1.19714,1.19762,1.1964,1.1975,6601 +2020-09-01 14:00,1.19752,1.19755,1.1936,1.19541,9012 +2020-09-01 14:15,1.19543,1.19557,1.19446,1.1945,7958 +2020-09-01 14:30,1.19448,1.19478,1.19379,1.19402,5493 +2020-09-01 14:45,1.194,1.19653,1.19376,1.19633,8538 +2020-09-01 15:00,1.19633,1.19656,1.1953,1.19615,5225 +2020-09-01 15:15,1.19616,1.19662,1.1948,1.19487,4542 +2020-09-01 15:30,1.19487,1.19545,1.19469,1.195,3576 +2020-09-01 15:45,1.19499,1.19509,1.19449,1.19486,3171 +2020-09-01 16:00,1.19486,1.19507,1.19442,1.195,5422 +2020-09-01 16:15,1.195,1.19503,1.19439,1.19455,2228 +2020-09-01 16:30,1.19455,1.19455,1.19372,1.19383,3360 +2020-09-01 16:45,1.19383,1.19409,1.19318,1.1934,3859 +2020-09-01 17:00,1.19339,1.19339,1.19055,1.19096,8556 +2020-09-01 17:15,1.19096,1.19201,1.19065,1.19188,4118 +2020-09-01 17:30,1.19187,1.19217,1.1916,1.1918,3385 +2020-09-01 17:45,1.1918,1.1919,1.19058,1.19156,3557 +2020-09-01 18:00,1.19156,1.19191,1.19114,1.19159,2380 +2020-09-01 18:15,1.19159,1.19192,1.19148,1.19165,3799 +2020-09-01 18:30,1.19164,1.19168,1.19078,1.19079,2853 +2020-09-01 18:45,1.1908,1.19112,1.19041,1.19099,2799 +2020-09-01 19:00,1.191,1.191,1.19013,1.19029,2177 +2020-09-01 19:15,1.1903,1.1909,1.19028,1.19038,3320 +2020-09-01 19:30,1.19038,1.19086,1.19013,1.1908,1708 +2020-09-01 19:45,1.1908,1.19123,1.19077,1.19123,1672 +2020-09-01 20:00,1.19126,1.19133,1.19088,1.19115,639 +2020-09-01 20:15,1.19118,1.19146,1.19116,1.19139,390 +2020-09-01 20:30,1.19138,1.19147,1.19129,1.19134,284 +2020-09-01 20:45,1.19134,1.19138,1.19105,1.19113,432 +2020-09-01 21:00,1.19112,1.19165,1.19108,1.19163,98 +2020-09-01 21:15,1.19163,1.19164,1.19157,1.19163,79 +2020-09-01 21:30,1.19163,1.19172,1.19149,1.19153,173 +2020-09-01 21:45,1.19152,1.19158,1.19151,1.19157,46 +2020-09-01 22:00,1.19158,1.19158,1.19142,1.19152,252 +2020-09-01 22:15,1.19153,1.19187,1.19153,1.19183,375 +2020-09-01 22:30,1.19183,1.19197,1.19178,1.19197,653 +2020-09-01 22:45,1.19197,1.19213,1.19178,1.19178,840 +2020-09-01 23:00,1.19179,1.19206,1.19168,1.19181,1350 +2020-09-01 23:15,1.19181,1.19213,1.19176,1.19198,704 +2020-09-01 23:30,1.19199,1.19276,1.19196,1.19265,704 +2020-09-01 23:45,1.19265,1.19287,1.19216,1.19226,1069 +2020-09-02 00:00,1.19224,1.19239,1.19172,1.19207,1456 +2020-09-02 00:15,1.19206,1.19206,1.19134,1.19135,1954 +2020-09-02 00:30,1.19135,1.1918,1.19135,1.19168,1396 +2020-09-02 00:45,1.19167,1.19167,1.19062,1.19073,2495 +2020-09-02 01:00,1.19075,1.1909,1.18918,1.18988,9463 +2020-09-02 01:15,1.18988,1.19066,1.18966,1.19046,1730 +2020-09-02 01:30,1.19045,1.19045,1.18946,1.18989,2901 +2020-09-02 01:45,1.1899,1.19023,1.18934,1.19015,4110 +2020-09-02 02:00,1.19014,1.19034,1.18981,1.19032,1414 +2020-09-02 02:15,1.19032,1.19079,1.19028,1.19077,1551 +2020-09-02 02:30,1.19078,1.19078,1.19041,1.19041,908 +2020-09-02 02:45,1.1904,1.19065,1.19036,1.19056,560 +2020-09-02 03:00,1.19055,1.19068,1.19036,1.1905,872 +2020-09-02 03:15,1.1905,1.19054,1.18989,1.19028,753 +2020-09-02 03:30,1.19027,1.19027,1.18986,1.18988,674 +2020-09-02 03:45,1.18988,1.19039,1.18987,1.19029,913 +2020-09-02 04:00,1.19031,1.19051,1.19007,1.19043,977 +2020-09-02 04:15,1.19043,1.19078,1.19038,1.19063,807 +2020-09-02 04:30,1.19063,1.19092,1.19053,1.19063,931 +2020-09-02 04:45,1.19063,1.19071,1.19032,1.19051,640 +2020-09-02 05:00,1.1905,1.1906,1.19011,1.19045,845 +2020-09-02 05:15,1.19045,1.19056,1.19016,1.19024,1606 +2020-09-02 05:30,1.19021,1.19028,1.18986,1.18996,854 +2020-09-02 05:45,1.18994,1.19087,1.18974,1.19075,1740 +2020-09-02 06:00,1.19073,1.19134,1.19024,1.19039,2898 +2020-09-02 06:15,1.1904,1.19064,1.18949,1.18965,2609 +2020-09-02 06:30,1.18966,1.18994,1.18907,1.18989,11956 +2020-09-02 06:45,1.18991,1.19058,1.18952,1.19032,3966 +2020-09-02 07:00,1.19032,1.19079,1.18802,1.18839,7016 +2020-09-02 07:15,1.18839,1.18849,1.18721,1.18731,10047 +2020-09-02 07:30,1.18731,1.18766,1.18639,1.18756,6159 +2020-09-02 07:45,1.18754,1.18798,1.18723,1.1874,4549 +2020-09-02 08:00,1.18743,1.18758,1.18662,1.18665,3769 +2020-09-02 08:15,1.18665,1.18734,1.18639,1.18641,4763 +2020-09-02 08:30,1.18642,1.18672,1.18582,1.1864,3758 +2020-09-02 08:45,1.18642,1.18666,1.18522,1.18574,3003 +2020-09-02 09:00,1.18573,1.1866,1.18544,1.18637,5460 +2020-09-02 09:15,1.18635,1.18685,1.18611,1.18652,8168 +2020-09-02 09:30,1.18652,1.18705,1.18619,1.18686,12726 +2020-09-02 09:45,1.18687,1.1872,1.18632,1.18711,13548 +2020-09-02 10:00,1.1871,1.18775,1.187,1.18724,11925 +2020-09-02 10:15,1.18725,1.18734,1.18571,1.18589,11711 +2020-09-02 10:30,1.18589,1.18697,1.18577,1.18588,12354 +2020-09-02 10:45,1.18586,1.1865,1.18566,1.18612,11611 +2020-09-02 11:00,1.18614,1.18642,1.18588,1.18632,11278 +2020-09-02 11:15,1.18634,1.18641,1.185,1.18502,15975 +2020-09-02 11:30,1.18501,1.18539,1.18452,1.18519,22564 +2020-09-02 11:45,1.18519,1.18563,1.18454,1.18561,19240 +2020-09-02 12:00,1.18561,1.18627,1.18519,1.18604,10997 +2020-09-02 12:15,1.18606,1.18764,1.18604,1.18672,17525 +2020-09-02 12:30,1.18673,1.18677,1.18544,1.18585,14535 +2020-09-02 12:45,1.18586,1.18616,1.18531,1.18589,17989 +2020-09-02 13:00,1.1859,1.18603,1.18512,1.18546,16279 +2020-09-02 13:15,1.18546,1.18546,1.18332,1.18353,18603 +2020-09-02 13:30,1.18352,1.184,1.1827,1.18386,16862 +2020-09-02 13:45,1.18387,1.18412,1.18238,1.18349,17200 +2020-09-02 14:00,1.18347,1.18372,1.18221,1.18269,20267 +2020-09-02 14:15,1.18268,1.18394,1.18245,1.18376,15223 +2020-09-02 14:30,1.18377,1.18471,1.18354,1.18359,17809 +2020-09-02 14:45,1.18359,1.18429,1.18331,1.18403,19381 +2020-09-02 15:00,1.18402,1.18431,1.18323,1.18338,14864 +2020-09-02 15:15,1.18339,1.18351,1.18269,1.1829,13792 +2020-09-02 15:30,1.1829,1.18377,1.18274,1.1828,16020 +2020-09-02 15:45,1.18279,1.18396,1.18275,1.18393,12733 +2020-09-02 16:00,1.18395,1.18409,1.18271,1.18308,13982 +2020-09-02 16:15,1.18307,1.18372,1.18296,1.1832,11817 +2020-09-02 16:30,1.1832,1.18405,1.1832,1.18398,9262 +2020-09-02 16:45,1.18398,1.18494,1.18392,1.18477,10295 +2020-09-02 17:00,1.18478,1.18478,1.1838,1.18439,13386 +2020-09-02 17:15,1.18437,1.18439,1.18379,1.18408,13569 +2020-09-02 17:30,1.18408,1.1842,1.18336,1.18394,27081 +2020-09-02 17:45,1.18392,1.18393,1.18296,1.18335,12929 +2020-09-02 18:00,1.18335,1.1834,1.18275,1.1829,13195 +2020-09-02 18:15,1.1829,1.18314,1.18263,1.18291,8735 +2020-09-02 18:30,1.18292,1.18307,1.18236,1.18242,10253 +2020-09-02 18:45,1.18241,1.18272,1.18232,1.18245,7851 +2020-09-02 19:00,1.18245,1.18266,1.18238,1.18262,4536 +2020-09-02 19:15,1.18261,1.18399,1.1826,1.18388,10496 +2020-09-02 19:30,1.18388,1.18424,1.18344,1.18423,11688 +2020-09-02 19:45,1.18425,1.1847,1.18401,1.18465,7200 +2020-09-02 20:00,1.18462,1.18504,1.1843,1.18503,3118 +2020-09-02 20:15,1.18504,1.18555,1.18496,1.18553,3167 +2020-09-02 20:30,1.18554,1.18576,1.1853,1.18531,2833 +2020-09-02 20:45,1.1853,1.1857,1.18512,1.18547,2570 +2020-09-02 21:00,1.18506,1.18553,1.18506,1.18545,300 +2020-09-02 21:15,1.18545,1.18545,1.18519,1.18539,1549 +2020-09-02 21:30,1.18539,1.18544,1.18533,1.18539,172 +2020-09-02 21:45,1.1854,1.1855,1.18537,1.18548,40 +2020-09-02 22:00,1.18548,1.18549,1.18513,1.18521,968 +2020-09-02 22:15,1.18521,1.18528,1.18507,1.18523,912 +2020-09-02 22:30,1.18526,1.18527,1.18506,1.18514,747 +2020-09-02 22:45,1.18513,1.18546,1.18512,1.18535,723 +2020-09-02 23:00,1.18536,1.18546,1.18505,1.18523,1935 +2020-09-02 23:15,1.18523,1.18545,1.18512,1.18526,3541 +2020-09-02 23:30,1.18527,1.18535,1.18507,1.18529,1738 +2020-09-02 23:45,1.18528,1.18529,1.18455,1.18457,5803 +2020-09-03 00:00,1.18458,1.18467,1.18384,1.18413,8541 +2020-09-03 00:15,1.18412,1.18439,1.18397,1.18421,4304 +2020-09-03 00:30,1.18423,1.18443,1.18356,1.18367,5476 +2020-09-03 00:45,1.18366,1.18372,1.18298,1.18311,6767 +2020-09-03 01:00,1.18311,1.18363,1.18311,1.18315,9115 +2020-09-03 01:15,1.18314,1.18351,1.1828,1.18308,7233 +2020-09-03 01:30,1.18307,1.1832,1.18243,1.18268,7473 +2020-09-03 01:45,1.18268,1.18313,1.18263,1.18306,5208 +2020-09-03 02:00,1.18309,1.18358,1.18271,1.18353,4823 +2020-09-03 02:15,1.18351,1.18356,1.18326,1.18342,3784 +2020-09-03 02:30,1.18343,1.18344,1.18275,1.18285,14729 +2020-09-03 02:45,1.18283,1.18284,1.18217,1.18272,6565 +2020-09-03 03:00,1.1827,1.18277,1.18231,1.18255,4869 +2020-09-03 03:15,1.18255,1.18271,1.18211,1.18222,6013 +2020-09-03 03:30,1.18222,1.18251,1.18217,1.18225,3991 +2020-09-03 03:45,1.18225,1.18233,1.18201,1.18208,3380 +2020-09-03 04:00,1.18208,1.18253,1.18137,1.18147,3821 +2020-09-03 04:15,1.18144,1.18165,1.18101,1.18107,6741 +2020-09-03 04:30,1.18107,1.18144,1.18079,1.1809,5631 +2020-09-03 04:45,1.18088,1.18115,1.18045,1.18101,6412 +2020-09-03 05:00,1.18102,1.18108,1.18044,1.18092,7203 +2020-09-03 05:15,1.18091,1.18122,1.18051,1.18054,4121 +2020-09-03 05:30,1.18052,1.18068,1.17965,1.17973,7914 +2020-09-03 05:45,1.17972,1.18048,1.1797,1.1802,9362 +2020-09-03 06:00,1.1802,1.18066,1.17944,1.18053,11108 +2020-09-03 06:15,1.18053,1.18078,1.18026,1.18055,8839 +2020-09-03 06:30,1.18055,1.18068,1.17966,1.1797,10072 +2020-09-03 06:45,1.1797,1.18022,1.17893,1.1798,16509 +2020-09-03 07:00,1.17979,1.18095,1.17889,1.18076,18828 +2020-09-03 07:15,1.18076,1.18157,1.18044,1.18102,13360 +2020-09-03 07:30,1.18103,1.18187,1.18098,1.1818,14173 +2020-09-03 07:45,1.1818,1.18205,1.18109,1.18175,11986 +2020-09-03 08:00,1.18175,1.1829,1.18172,1.18188,12154 +2020-09-03 08:15,1.18189,1.18247,1.18151,1.18213,9435 +2020-09-03 08:30,1.18212,1.18361,1.18195,1.18336,10781 +2020-09-03 08:45,1.18338,1.18359,1.18294,1.18325,9128 +2020-09-03 09:00,1.18323,1.18347,1.18216,1.18243,10941 +2020-09-03 09:15,1.18242,1.18332,1.18193,1.18268,11752 +2020-09-03 09:30,1.18269,1.18354,1.18244,1.18313,11469 +2020-09-03 09:45,1.18313,1.18359,1.18213,1.1823,9300 +2020-09-03 10:00,1.1823,1.18238,1.18162,1.18217,9276 +2020-09-03 10:15,1.18216,1.18288,1.18136,1.18241,8945 +2020-09-03 10:30,1.1824,1.18253,1.18146,1.18169,9963 +2020-09-03 10:45,1.18168,1.1817,1.18112,1.18123,9831 +2020-09-03 11:00,1.18122,1.18132,1.18016,1.18082,10774 +2020-09-03 11:15,1.18082,1.18133,1.18046,1.18074,7718 +2020-09-03 11:30,1.18074,1.18132,1.1806,1.1806,6814 +2020-09-03 11:45,1.18061,1.18136,1.18021,1.18133,11375 +2020-09-03 12:00,1.18133,1.18186,1.18067,1.18129,12904 +2020-09-03 12:15,1.18128,1.18229,1.18095,1.18186,13492 +2020-09-03 12:30,1.18186,1.18412,1.1818,1.18335,12719 +2020-09-03 12:45,1.18335,1.18339,1.18265,1.18323,9682 +2020-09-03 13:00,1.18323,1.18348,1.18272,1.18342,10305 +2020-09-03 13:15,1.18342,1.18466,1.1834,1.18464,10823 +2020-09-03 13:30,1.18462,1.18489,1.18356,1.18381,12337 +2020-09-03 13:45,1.18379,1.18479,1.1836,1.18438,11525 +2020-09-03 14:00,1.18439,1.18487,1.18372,1.18393,13212 +2020-09-03 14:15,1.18391,1.18398,1.18242,1.18366,17344 +2020-09-03 14:30,1.18367,1.18468,1.18351,1.18446,14963 +2020-09-03 14:45,1.18445,1.18473,1.18291,1.18374,32786 +2020-09-03 15:00,1.18373,1.184,1.1828,1.18308,21424 +2020-09-03 15:15,1.18309,1.18312,1.18109,1.18227,43147 +2020-09-03 15:30,1.18229,1.18278,1.18207,1.18239,14890 +2020-09-03 15:45,1.18241,1.18318,1.182,1.18298,24322 +2020-09-03 16:00,1.18296,1.18406,1.18258,1.18399,13900 +2020-09-03 16:15,1.18398,1.18436,1.18354,1.18412,15378 +2020-09-03 16:30,1.18413,1.18441,1.18372,1.18397,11435 +2020-09-03 16:45,1.18398,1.18403,1.18323,1.18332,12425 +2020-09-03 17:00,1.18333,1.18378,1.18319,1.18371,12477 +2020-09-03 17:15,1.1837,1.1845,1.18337,1.1843,10216 +2020-09-03 17:30,1.18428,1.18447,1.18382,1.18392,12038 +2020-09-03 17:45,1.18393,1.18476,1.18393,1.18474,10511 +2020-09-03 18:00,1.18473,1.18561,1.18465,1.18517,9774 +2020-09-03 18:15,1.18516,1.18553,1.18505,1.18528,5766 +2020-09-03 18:30,1.18528,1.18594,1.18523,1.18531,6489 +2020-09-03 18:45,1.18531,1.1859,1.18531,1.18566,8176 +2020-09-03 19:00,1.18566,1.18646,1.18551,1.18565,9899 +2020-09-03 19:15,1.18566,1.18566,1.18491,1.18491,10006 +2020-09-03 19:30,1.18491,1.18546,1.18475,1.18546,11190 +2020-09-03 19:45,1.18545,1.18577,1.18503,1.18563,9309 +2020-09-03 20:00,1.18562,1.1859,1.18541,1.18541,2992 +2020-09-03 20:15,1.18542,1.18569,1.18534,1.18559,1624 +2020-09-03 20:30,1.18558,1.18564,1.18517,1.18523,1761 +2020-09-03 20:45,1.18523,1.18526,1.18505,1.18512,620 +2020-09-03 21:00,1.18513,1.18513,1.18497,1.18499,112 +2020-09-03 21:15,1.18497,1.18511,1.18497,1.18504,142 +2020-09-03 21:30,1.18506,1.18513,1.18475,1.18512,194 +2020-09-03 21:45,1.18512,1.18513,1.18483,1.185,299 +2020-09-03 22:00,1.18499,1.18511,1.18475,1.18476,1447 +2020-09-03 22:15,1.18475,1.18478,1.18456,1.18463,2391 +2020-09-03 22:30,1.18465,1.18483,1.18442,1.18451,3135 +2020-09-03 22:45,1.1845,1.18463,1.18448,1.18461,2338 +2020-09-03 23:00,1.18462,1.18506,1.18444,1.18444,3114 +2020-09-03 23:15,1.18445,1.18458,1.1841,1.18441,3651 +2020-09-03 23:30,1.18441,1.18443,1.18411,1.18423,3579 +2020-09-03 23:45,1.18423,1.18424,1.18388,1.18412,2225 +2020-09-04 00:00,1.18413,1.18486,1.18413,1.18476,6096 +2020-09-04 00:15,1.18475,1.18502,1.18465,1.18472,7261 +2020-09-04 00:30,1.18473,1.18538,1.18468,1.18538,8026 +2020-09-04 00:45,1.18537,1.18578,1.18524,1.18526,8736 +2020-09-04 01:00,1.18527,1.1858,1.1851,1.1852,8147 +2020-09-04 01:15,1.18522,1.1854,1.18485,1.18516,8004 +2020-09-04 01:30,1.18517,1.18529,1.18459,1.18507,7597 +2020-09-04 01:45,1.18509,1.1854,1.185,1.18523,4741 +2020-09-04 02:00,1.18523,1.18556,1.18492,1.18552,9415 +2020-09-04 02:15,1.18554,1.1857,1.18516,1.18531,9294 +2020-09-04 02:30,1.18531,1.18537,1.18485,1.18495,5835 +2020-09-04 02:45,1.18497,1.18501,1.18408,1.18411,6933 +2020-09-04 03:00,1.18411,1.18466,1.18406,1.18462,5627 +2020-09-04 03:15,1.18461,1.18499,1.1845,1.18473,6042 +2020-09-04 03:30,1.18473,1.18476,1.18442,1.18456,4184 +2020-09-04 03:45,1.18457,1.18484,1.18454,1.18477,3903 +2020-09-04 04:00,1.18477,1.18492,1.18447,1.18491,3421 +2020-09-04 04:15,1.1849,1.18522,1.1848,1.18514,4121 +2020-09-04 04:30,1.18514,1.18533,1.18484,1.18484,3988 +2020-09-04 04:45,1.18486,1.18521,1.18482,1.18516,6158 +2020-09-04 05:00,1.18515,1.18517,1.1848,1.18506,4984 +2020-09-04 05:15,1.18505,1.18508,1.18464,1.18466,4966 +2020-09-04 05:30,1.18466,1.18496,1.18442,1.18483,5853 +2020-09-04 05:45,1.18484,1.18523,1.18466,1.18518,4997 +2020-09-04 06:00,1.18515,1.18528,1.18462,1.18474,9497 +2020-09-04 06:15,1.18475,1.18482,1.18402,1.18428,9901 +2020-09-04 06:30,1.1843,1.18437,1.18375,1.18406,11944 +2020-09-04 06:45,1.18404,1.18425,1.18347,1.18366,11015 +2020-09-04 07:00,1.18366,1.18424,1.18333,1.18403,13417 +2020-09-04 07:15,1.18404,1.18473,1.18399,1.1842,14209 +2020-09-04 07:30,1.1842,1.1854,1.18367,1.1838,13237 +2020-09-04 07:45,1.1838,1.18482,1.1838,1.184,12684 +2020-09-04 08:00,1.18399,1.18448,1.18387,1.18446,7415 +2020-09-04 08:15,1.18447,1.18503,1.18411,1.18428,9243 +2020-09-04 08:30,1.18429,1.18538,1.18391,1.18534,11834 +2020-09-04 08:45,1.18534,1.18654,1.1853,1.18591,10907 +2020-09-04 09:00,1.18592,1.18628,1.1856,1.1857,13020 +2020-09-04 09:15,1.1857,1.18597,1.18504,1.18534,14502 +2020-09-04 09:30,1.18535,1.1854,1.18445,1.18473,7012 +2020-09-04 09:45,1.18473,1.18532,1.18465,1.18526,7514 +2020-09-04 10:00,1.18525,1.1859,1.18471,1.18559,9889 +2020-09-04 10:15,1.18559,1.18562,1.18468,1.18491,9349 +2020-09-04 10:30,1.18491,1.18499,1.18442,1.18452,7736 +2020-09-04 10:45,1.18453,1.18503,1.18422,1.18471,8630 +2020-09-04 11:00,1.18471,1.1853,1.18442,1.18466,10305 +2020-09-04 11:15,1.18466,1.18549,1.18462,1.18506,11017 +2020-09-04 11:30,1.18506,1.1851,1.18397,1.18426,10826 +2020-09-04 11:45,1.18424,1.18528,1.18407,1.18431,13906 +2020-09-04 12:00,1.18432,1.18455,1.18399,1.18415,19452 +2020-09-04 12:15,1.18415,1.18533,1.18382,1.18456,14449 +2020-09-04 12:30,1.18458,1.18547,1.18139,1.18337,35788 +2020-09-04 12:45,1.18336,1.18388,1.18018,1.18114,21769 +2020-09-04 13:00,1.18112,1.18141,1.18016,1.18093,20769 +2020-09-04 13:15,1.18093,1.18115,1.18005,1.18023,14674 +2020-09-04 13:30,1.18024,1.18137,1.17965,1.18027,20341 +2020-09-04 13:45,1.18027,1.18049,1.17903,1.17988,18090 +2020-09-04 14:00,1.17987,1.17996,1.1786,1.17912,20841 +2020-09-04 14:15,1.17911,1.18066,1.17878,1.17979,34780 +2020-09-04 14:30,1.17982,1.18051,1.17912,1.17938,35748 +2020-09-04 14:45,1.17937,1.18025,1.17931,1.17972,27359 +2020-09-04 15:00,1.17971,1.17999,1.17809,1.1792,17424 +2020-09-04 15:15,1.17919,1.17975,1.17908,1.17947,20040 +2020-09-04 15:30,1.17948,1.18142,1.1793,1.18092,17428 +2020-09-04 15:45,1.18092,1.18213,1.18064,1.182,13502 +2020-09-04 16:00,1.182,1.18241,1.1816,1.18195,11988 +2020-09-04 16:15,1.18196,1.18341,1.18173,1.18302,12197 +2020-09-04 16:30,1.183,1.18346,1.18284,1.18317,10250 +2020-09-04 16:45,1.18317,1.18363,1.1827,1.1835,7059 +2020-09-04 17:00,1.18349,1.18406,1.18321,1.18371,7556 +2020-09-04 17:15,1.18372,1.18442,1.18364,1.18403,9935 +2020-09-04 17:30,1.18403,1.18476,1.18395,1.1846,25022 +2020-09-04 17:45,1.18459,1.18468,1.1843,1.1844,6925 +2020-09-04 18:00,1.18439,1.18471,1.18428,1.18442,8889 +2020-09-04 18:15,1.18445,1.1849,1.18401,1.18458,11871 +2020-09-04 18:30,1.1846,1.1852,1.18448,1.18501,9665 +2020-09-04 18:45,1.18501,1.18548,1.18488,1.18513,8120 +2020-09-04 19:00,1.18516,1.18528,1.1845,1.18467,9307 +2020-09-04 19:15,1.18466,1.18514,1.18455,1.18455,6974 +2020-09-04 19:30,1.18456,1.1848,1.18423,1.18467,14237 +2020-09-04 19:45,1.18468,1.18491,1.18422,1.18428,8534 +2020-09-04 20:00,1.18427,1.18436,1.18386,1.18388,6798 +2020-09-04 20:15,1.18388,1.18403,1.1837,1.18376,4174 +2020-09-04 20:30,1.18376,1.18389,1.18365,1.18378,6519 +2020-09-04 20:45,1.18376,1.18408,1.18368,1.18371,6632 +2020-09-06 21:00,1.18432,1.18469,1.18432,1.18447,439 +2020-09-06 21:15,1.18448,1.18458,1.18437,1.18447,261 +2020-09-06 21:30,1.18446,1.18452,1.18319,1.18393,627 +2020-09-06 21:45,1.18392,1.18402,1.18324,1.18394,296 +2020-09-06 22:00,1.18393,1.18408,1.18361,1.18389,790 +2020-09-06 22:15,1.18388,1.18403,1.1836,1.18403,1366 +2020-09-06 22:30,1.18404,1.18416,1.18396,1.18408,973 +2020-09-06 22:45,1.18408,1.18429,1.18399,1.18404,1428 +2020-09-06 23:00,1.18404,1.18435,1.18403,1.18419,734 +2020-09-06 23:15,1.18419,1.18419,1.18381,1.18385,3273 +2020-09-06 23:30,1.18386,1.18411,1.18385,1.18385,2052 +2020-09-06 23:45,1.18385,1.18393,1.18334,1.18342,3311 +2020-09-07 00:00,1.18342,1.1837,1.1833,1.18335,3922 +2020-09-07 00:15,1.18334,1.18376,1.18334,1.18344,5476 +2020-09-07 00:30,1.18344,1.18395,1.18343,1.18383,4614 +2020-09-07 00:45,1.18384,1.18427,1.18347,1.1836,6218 +2020-09-07 01:00,1.18359,1.18399,1.18349,1.18385,8292 +2020-09-07 01:15,1.18385,1.18401,1.18354,1.18363,6877 +2020-09-07 01:30,1.18362,1.1841,1.18362,1.18397,6766 +2020-09-07 01:45,1.18398,1.18407,1.1836,1.18362,4473 +2020-09-07 02:00,1.18363,1.18369,1.18314,1.18324,5713 +2020-09-07 02:15,1.18325,1.1835,1.18319,1.18334,5467 +2020-09-07 02:30,1.18333,1.18336,1.18298,1.18317,3634 +2020-09-07 02:45,1.18317,1.18355,1.18305,1.18348,3545 +2020-09-07 03:00,1.18348,1.18349,1.18317,1.1834,5134 +2020-09-07 03:15,1.1834,1.1835,1.18327,1.18341,3526 +2020-09-07 03:30,1.1834,1.1834,1.18316,1.18331,1818 +2020-09-07 03:45,1.18333,1.18384,1.18332,1.18364,2830 +2020-09-07 04:00,1.18366,1.18368,1.1833,1.18337,5202 +2020-09-07 04:15,1.18337,1.18347,1.18321,1.18345,2469 +2020-09-07 04:30,1.18345,1.18372,1.18345,1.1836,1167 +2020-09-07 04:45,1.1836,1.18362,1.18331,1.1834,1736 +2020-09-07 05:00,1.1834,1.18343,1.18323,1.18329,1931 +2020-09-07 05:15,1.18329,1.18352,1.18325,1.18344,4493 +2020-09-07 05:30,1.18344,1.1836,1.18324,1.18345,5568 +2020-09-07 05:45,1.18345,1.18346,1.18268,1.18297,7664 +2020-09-07 06:00,1.18297,1.1833,1.18273,1.18293,14286 +2020-09-07 06:15,1.18294,1.18315,1.18248,1.1825,10224 +2020-09-07 06:30,1.18252,1.18317,1.18244,1.18281,7595 +2020-09-07 06:45,1.18282,1.18316,1.1827,1.18282,7963 +2020-09-07 07:00,1.18282,1.18319,1.18244,1.18306,14781 +2020-09-07 07:15,1.18306,1.18399,1.18257,1.18389,12975 +2020-09-07 07:30,1.18389,1.18457,1.18363,1.18413,17131 +2020-09-07 07:45,1.18412,1.18437,1.18369,1.18378,12505 +2020-09-07 08:00,1.18379,1.18472,1.18368,1.18455,12891 +2020-09-07 08:15,1.18455,1.18472,1.18408,1.18435,8417 +2020-09-07 08:30,1.18436,1.18486,1.18415,1.18448,7646 +2020-09-07 08:45,1.18449,1.1845,1.18319,1.18324,8888 +2020-09-07 09:00,1.18325,1.18364,1.18259,1.18282,7866 +2020-09-07 09:15,1.18283,1.18372,1.18281,1.18326,10155 +2020-09-07 09:30,1.18326,1.18331,1.18266,1.18318,9901 +2020-09-07 09:45,1.18318,1.18336,1.18249,1.18284,6965 +2020-09-07 10:00,1.18285,1.18294,1.1821,1.18217,8867 +2020-09-07 10:15,1.18217,1.18221,1.18128,1.18129,10680 +2020-09-07 10:30,1.18129,1.18207,1.18126,1.18199,10561 +2020-09-07 10:45,1.18198,1.18215,1.18172,1.1819,7714 +2020-09-07 11:00,1.18191,1.18239,1.18167,1.18238,6133 +2020-09-07 11:15,1.18238,1.1824,1.18199,1.1823,5622 +2020-09-07 11:30,1.18231,1.18267,1.1821,1.18267,5035 +2020-09-07 11:45,1.18267,1.18275,1.18158,1.18205,6811 +2020-09-07 12:00,1.18206,1.18255,1.18205,1.18242,5944 +2020-09-07 12:15,1.18241,1.18246,1.18204,1.1822,3648 +2020-09-07 12:30,1.1822,1.18231,1.18186,1.18209,4974 +2020-09-07 12:45,1.18209,1.18248,1.18194,1.18223,5322 +2020-09-07 13:00,1.18224,1.18238,1.1815,1.18213,6943 +2020-09-07 13:15,1.18214,1.18231,1.18177,1.18187,4885 +2020-09-07 13:30,1.18186,1.1823,1.18184,1.18226,7347 +2020-09-07 13:45,1.18228,1.18254,1.18199,1.182,5321 +2020-09-07 14:00,1.182,1.18235,1.18175,1.18218,12155 +2020-09-07 14:15,1.18219,1.18257,1.18195,1.18245,6979 +2020-09-07 14:30,1.18245,1.18282,1.18241,1.18276,5464 +2020-09-07 14:45,1.18276,1.18324,1.18252,1.1826,6410 +2020-09-07 15:00,1.18261,1.18284,1.1822,1.18236,3283 +2020-09-07 15:15,1.18236,1.18236,1.18199,1.18208,2207 +2020-09-07 15:30,1.18208,1.18225,1.18167,1.1818,2355 +2020-09-07 15:45,1.18181,1.18187,1.1815,1.18185,2652 +2020-09-07 16:00,1.18185,1.18185,1.18152,1.18181,4227 +2020-09-07 16:15,1.1818,1.18192,1.18148,1.1816,3163 +2020-09-07 16:30,1.18159,1.18176,1.18159,1.18168,1938 +2020-09-07 16:45,1.18168,1.18184,1.18156,1.1816,2123 +2020-09-07 17:00,1.1816,1.18189,1.18157,1.18185,1366 +2020-09-07 17:15,1.18183,1.18194,1.1817,1.18178,3376 +2020-09-07 17:30,1.18179,1.18195,1.18162,1.18165,2530 +2020-09-07 17:45,1.18165,1.18168,1.18149,1.18157,3635 +2020-09-07 18:00,1.18157,1.18161,1.18147,1.18153,569 +2020-09-07 18:15,1.18152,1.18158,1.18141,1.18145,764 +2020-09-07 18:30,1.18145,1.18149,1.18133,1.18137,692 +2020-09-07 18:45,1.18136,1.18137,1.18124,1.18132,571 +2020-09-07 19:00,1.18129,1.18145,1.18122,1.1813,1086 +2020-09-07 19:15,1.18129,1.18155,1.18129,1.18132,872 +2020-09-07 19:30,1.18132,1.18156,1.1812,1.18141,1312 +2020-09-07 19:45,1.18141,1.18145,1.18125,1.18137,1372 +2020-09-07 20:00,1.1814,1.18143,1.18119,1.1813,1198 +2020-09-07 20:15,1.1813,1.18131,1.18123,1.18129,149 +2020-09-07 20:30,1.18129,1.18138,1.18117,1.18132,219 +2020-09-07 20:45,1.1813,1.18135,1.18119,1.18133,366 +2020-09-07 21:00,1.18133,1.18156,1.18133,1.18133,163 +2020-09-07 21:15,1.18126,1.18133,1.18116,1.18128,92 +2020-09-07 21:30,1.1813,1.1817,1.18127,1.18137,183 +2020-09-07 21:45,1.18141,1.18148,1.18134,1.18144,237 +2020-09-07 22:00,1.18144,1.18171,1.18144,1.18152,2640 +2020-09-07 22:15,1.1815,1.18202,1.1815,1.182,946 +2020-09-07 22:30,1.18199,1.18202,1.18164,1.18168,2043 +2020-09-07 22:45,1.1817,1.18173,1.18154,1.1816,1295 +2020-09-07 23:00,1.18158,1.18184,1.18155,1.1817,1471 +2020-09-07 23:15,1.18171,1.18188,1.18166,1.18177,1335 +2020-09-07 23:30,1.18178,1.18184,1.18163,1.18166,1164 +2020-09-07 23:45,1.18166,1.18198,1.18163,1.18188,2309 +2020-09-08 00:00,1.18187,1.18215,1.18178,1.18184,2602 +2020-09-08 00:15,1.18182,1.18185,1.18128,1.18132,2649 +2020-09-08 00:30,1.18132,1.18147,1.18057,1.18063,5372 +2020-09-08 00:45,1.18062,1.18092,1.1805,1.18069,4067 +2020-09-08 01:00,1.18068,1.18089,1.17996,1.18015,5338 +2020-09-08 01:15,1.18015,1.18037,1.18004,1.18028,13085 +2020-09-08 01:30,1.18028,1.18035,1.17992,1.17992,3961 +2020-09-08 01:45,1.17991,1.18017,1.1795,1.17969,5678 +2020-09-08 02:00,1.17969,1.18055,1.17964,1.18049,3723 +2020-09-08 02:15,1.18049,1.18067,1.18033,1.18033,2424 +2020-09-08 02:30,1.18034,1.18069,1.1803,1.18066,2534 +2020-09-08 02:45,1.18068,1.18076,1.18049,1.1805,2869 +2020-09-08 03:00,1.1805,1.18079,1.18044,1.18074,3227 +2020-09-08 03:15,1.18074,1.18086,1.1807,1.18081,2917 +2020-09-08 03:30,1.18081,1.18112,1.18077,1.18105,4557 +2020-09-08 03:45,1.18105,1.18105,1.18069,1.18082,2278 +2020-09-08 04:00,1.18082,1.18085,1.18064,1.18073,2385 +2020-09-08 04:15,1.18074,1.18086,1.1807,1.18084,984 +2020-09-08 04:30,1.18084,1.18106,1.18075,1.181,2470 +2020-09-08 04:45,1.18101,1.18112,1.18083,1.18111,2583 +2020-09-08 05:00,1.18112,1.18115,1.18035,1.18049,5118 +2020-09-08 05:15,1.18049,1.18075,1.18046,1.18056,4672 +2020-09-08 05:30,1.18058,1.1806,1.17977,1.17983,4592 +2020-09-08 05:45,1.17983,1.18121,1.17982,1.18109,7027 +2020-09-08 06:00,1.18111,1.18273,1.1809,1.18178,13652 +2020-09-08 06:15,1.1818,1.18221,1.18157,1.18203,10654 +2020-09-08 06:30,1.18205,1.18205,1.18125,1.18156,12915 +2020-09-08 06:45,1.18158,1.18209,1.18146,1.18165,8496 +2020-09-08 07:00,1.18164,1.18213,1.18035,1.18074,23869 +2020-09-08 07:15,1.18075,1.18095,1.1803,1.18061,12662 +2020-09-08 07:30,1.1806,1.1815,1.18051,1.18148,9945 +2020-09-08 07:45,1.18149,1.18211,1.18124,1.18169,12122 +2020-09-08 08:00,1.18168,1.18201,1.18104,1.18157,8926 +2020-09-08 08:15,1.18157,1.18206,1.18121,1.18166,12856 +2020-09-08 08:30,1.18166,1.18203,1.18121,1.18124,12026 +2020-09-08 08:45,1.18127,1.18177,1.18049,1.18082,11150 +2020-09-08 09:00,1.18085,1.18134,1.1806,1.18106,10917 +2020-09-08 09:15,1.18108,1.18149,1.18053,1.18133,11603 +2020-09-08 09:30,1.18133,1.18151,1.18013,1.18022,12676 +2020-09-08 09:45,1.18023,1.18051,1.17907,1.17934,23762 +2020-09-08 10:00,1.17934,1.17973,1.1786,1.17909,20025 +2020-09-08 10:15,1.17909,1.17915,1.17833,1.17865,13765 +2020-09-08 10:30,1.17867,1.17937,1.17777,1.17921,22859 +2020-09-08 10:45,1.17922,1.18062,1.17898,1.18005,16109 +2020-09-08 11:00,1.18006,1.18053,1.17938,1.18005,15146 +2020-09-08 11:15,1.18006,1.18032,1.17985,1.18027,13977 +2020-09-08 11:30,1.18027,1.1804,1.17933,1.17936,10071 +2020-09-08 11:45,1.17936,1.18017,1.17879,1.17947,11160 +2020-09-08 12:00,1.17947,1.17962,1.17813,1.17842,14365 +2020-09-08 12:15,1.17844,1.18015,1.1784,1.17974,12778 +2020-09-08 12:30,1.17974,1.18052,1.17934,1.17993,16958 +2020-09-08 12:45,1.17994,1.18062,1.17947,1.18005,14298 +2020-09-08 13:00,1.18005,1.18022,1.17931,1.17953,17798 +2020-09-08 13:15,1.17954,1.17973,1.17806,1.17829,15728 +2020-09-08 13:30,1.17829,1.17924,1.17739,1.1775,16891 +2020-09-08 13:45,1.17746,1.17832,1.17654,1.17772,22567 +2020-09-08 14:00,1.17773,1.18006,1.17727,1.17944,45709 +2020-09-08 14:15,1.17943,1.17992,1.17863,1.17937,19420 +2020-09-08 14:30,1.17936,1.17969,1.17835,1.17884,28198 +2020-09-08 14:45,1.17883,1.17966,1.1783,1.17933,17773 +2020-09-08 15:00,1.17933,1.18017,1.1787,1.17974,18571 +2020-09-08 15:15,1.17974,1.17995,1.1791,1.17949,11659 +2020-09-08 15:30,1.17949,1.17985,1.17804,1.1783,15256 +2020-09-08 15:45,1.1783,1.17906,1.1781,1.17878,11235 +2020-09-08 16:00,1.17879,1.17971,1.17875,1.17965,12709 +2020-09-08 16:15,1.17964,1.1806,1.17953,1.17968,13380 +2020-09-08 16:30,1.17968,1.18032,1.17946,1.17948,8605 +2020-09-08 16:45,1.17949,1.17976,1.17937,1.17959,12120 +2020-09-08 17:00,1.17958,1.1797,1.17889,1.17956,6897 +2020-09-08 17:15,1.17956,1.17985,1.17917,1.1794,8504 +2020-09-08 17:30,1.1794,1.17967,1.1789,1.17919,8547 +2020-09-08 17:45,1.17919,1.17936,1.17879,1.1793,8457 +2020-09-08 18:00,1.1793,1.17931,1.17858,1.1787,6386 +2020-09-08 18:15,1.1787,1.17879,1.17809,1.1786,7585 +2020-09-08 18:30,1.1786,1.17861,1.17786,1.17795,8487 +2020-09-08 18:45,1.17796,1.17823,1.17774,1.17817,11051 +2020-09-08 19:00,1.17817,1.17834,1.17742,1.17803,12117 +2020-09-08 19:15,1.17804,1.17811,1.17767,1.1781,13200 +2020-09-08 19:30,1.1781,1.17855,1.17805,1.17839,10421 +2020-09-08 19:45,1.1784,1.17842,1.17778,1.17788,7315 +2020-09-08 20:00,1.17788,1.17825,1.17779,1.17794,2903 +2020-09-08 20:15,1.17797,1.17824,1.17782,1.17824,826 +2020-09-08 20:30,1.17822,1.17822,1.1775,1.17774,1873 +2020-09-08 20:45,1.17773,1.17779,1.1773,1.17737,1787 +2020-09-08 21:00,1.17749,1.17787,1.17733,1.1776,60 +2020-09-08 21:15,1.17774,1.1779,1.17753,1.17763,157 +2020-09-08 21:30,1.17763,1.17767,1.17725,1.17742,326 +2020-09-08 21:45,1.17741,1.17763,1.17708,1.17738,595 +2020-09-08 22:00,1.17737,1.17753,1.1757,1.17618,1578 +2020-09-08 22:15,1.17618,1.177,1.17605,1.17642,1849 +2020-09-08 22:30,1.17643,1.17676,1.1762,1.17665,1375 +2020-09-08 22:45,1.17665,1.17672,1.1764,1.17667,1416 +2020-09-08 23:00,1.1767,1.17672,1.1761,1.17616,2863 +2020-09-08 23:15,1.17616,1.17644,1.17589,1.1763,3085 +2020-09-08 23:30,1.17628,1.17686,1.17619,1.17686,3122 +2020-09-08 23:45,1.17686,1.17689,1.17662,1.17667,1202 +2020-09-09 00:00,1.17667,1.17709,1.17657,1.17701,5010 +2020-09-09 00:15,1.177,1.17751,1.17687,1.17729,6560 +2020-09-09 00:30,1.17728,1.1775,1.17702,1.17739,7287 +2020-09-09 00:45,1.1774,1.17764,1.17722,1.17756,5707 +2020-09-09 01:00,1.17754,1.17755,1.17671,1.17707,7652 +2020-09-09 01:15,1.17707,1.17733,1.17681,1.17726,5543 +2020-09-09 01:30,1.17726,1.17797,1.17716,1.17767,7251 +2020-09-09 01:45,1.17767,1.17781,1.17739,1.17761,6115 +2020-09-09 02:00,1.17762,1.17783,1.17726,1.17782,6391 +2020-09-09 02:15,1.17783,1.17785,1.17739,1.17752,4476 +2020-09-09 02:30,1.17753,1.1776,1.17735,1.17756,3413 +2020-09-09 02:45,1.17756,1.17757,1.17731,1.17746,3229 +2020-09-09 03:00,1.17748,1.17788,1.17738,1.17787,5638 +2020-09-09 03:15,1.17786,1.17803,1.17775,1.17779,5179 +2020-09-09 03:30,1.1778,1.178,1.17765,1.17782,4003 +2020-09-09 03:45,1.17783,1.17811,1.17773,1.17802,4895 +2020-09-09 04:00,1.17801,1.17802,1.17776,1.17784,2730 +2020-09-09 04:15,1.17784,1.17827,1.1778,1.1782,3228 +2020-09-09 04:30,1.17821,1.17826,1.17784,1.1779,3214 +2020-09-09 04:45,1.17791,1.17795,1.17765,1.17785,3283 +2020-09-09 05:00,1.17783,1.1781,1.17777,1.17797,4219 +2020-09-09 05:15,1.17798,1.17824,1.17787,1.17798,3821 +2020-09-09 05:30,1.178,1.17823,1.17788,1.17791,3735 +2020-09-09 05:45,1.17791,1.17805,1.17789,1.17801,4440 +2020-09-09 06:00,1.17801,1.17808,1.17704,1.1771,9477 +2020-09-09 06:15,1.1771,1.17723,1.17634,1.17678,10560 +2020-09-09 06:30,1.1768,1.17696,1.17609,1.17616,12504 +2020-09-09 06:45,1.17618,1.17672,1.17608,1.17663,10466 +2020-09-09 07:00,1.17666,1.17747,1.17629,1.17733,18587 +2020-09-09 07:15,1.17732,1.17777,1.17714,1.17731,13572 +2020-09-09 07:30,1.1773,1.17791,1.17706,1.17728,9895 +2020-09-09 07:45,1.17728,1.17752,1.17703,1.17746,9538 +2020-09-09 08:00,1.17745,1.17873,1.1771,1.17768,11056 +2020-09-09 08:15,1.1777,1.17797,1.17685,1.17759,9103 +2020-09-09 08:30,1.17762,1.17765,1.17658,1.17679,13509 +2020-09-09 08:45,1.1768,1.17716,1.17631,1.17633,14549 +2020-09-09 09:00,1.17632,1.17673,1.17581,1.17656,14376 +2020-09-09 09:15,1.1766,1.17691,1.17602,1.17691,13496 +2020-09-09 09:30,1.1769,1.17718,1.17637,1.17706,15613 +2020-09-09 09:45,1.17707,1.17755,1.1767,1.1767,11813 +2020-09-09 10:00,1.17668,1.17671,1.17608,1.17634,14767 +2020-09-09 10:15,1.17633,1.17637,1.1757,1.17576,9911 +2020-09-09 10:30,1.17577,1.17614,1.17536,1.17556,15890 +2020-09-09 10:45,1.17553,1.17596,1.17544,1.17551,13478 +2020-09-09 11:00,1.1755,1.17618,1.17527,1.17576,17482 +2020-09-09 11:15,1.17575,1.17695,1.1756,1.17627,17691 +2020-09-09 11:30,1.17628,1.17664,1.17545,1.17626,16841 +2020-09-09 11:45,1.17625,1.17683,1.17556,1.17671,20444 +2020-09-09 12:00,1.17673,1.17792,1.17655,1.17722,17225 +2020-09-09 12:15,1.17722,1.1776,1.1765,1.17757,14227 +2020-09-09 12:30,1.17755,1.17847,1.17749,1.17831,21393 +2020-09-09 12:45,1.17831,1.18196,1.17794,1.17984,28179 +2020-09-09 13:00,1.17984,1.18167,1.17918,1.18114,23555 +2020-09-09 13:15,1.18115,1.18248,1.18103,1.18198,23145 +2020-09-09 13:30,1.18198,1.18222,1.18109,1.1814,18540 +2020-09-09 13:45,1.18142,1.18243,1.18115,1.18158,18922 +2020-09-09 14:00,1.1816,1.18242,1.18094,1.18183,19635 +2020-09-09 14:15,1.18181,1.18278,1.18126,1.18253,16274 +2020-09-09 14:30,1.18255,1.18298,1.18215,1.18291,12175 +2020-09-09 14:45,1.18292,1.18339,1.1806,1.18074,13254 +2020-09-09 15:00,1.18074,1.18175,1.1805,1.18168,11446 +2020-09-09 15:15,1.18169,1.18218,1.18132,1.18181,7675 +2020-09-09 15:30,1.18183,1.18214,1.18152,1.1817,8665 +2020-09-09 15:45,1.18171,1.18183,1.18074,1.18093,6222 +2020-09-09 16:00,1.18093,1.18121,1.18061,1.18092,6306 +2020-09-09 16:15,1.18093,1.18111,1.18027,1.18049,6876 +2020-09-09 16:30,1.18048,1.18058,1.18027,1.18055,6955 +2020-09-09 16:45,1.18057,1.18073,1.18019,1.18033,6819 +2020-09-09 17:00,1.18033,1.18096,1.18021,1.18074,7235 +2020-09-09 17:15,1.18073,1.18082,1.1802,1.1805,11265 +2020-09-09 17:30,1.1805,1.18055,1.17988,1.18015,12080 +2020-09-09 17:45,1.18013,1.18053,1.18001,1.18036,11433 +2020-09-09 18:00,1.18036,1.18047,1.17996,1.18002,6789 +2020-09-09 18:15,1.18003,1.18033,1.1799,1.18025,5976 +2020-09-09 18:30,1.18026,1.18057,1.18025,1.18049,4558 +2020-09-09 18:45,1.18049,1.18088,1.18037,1.1808,7416 +2020-09-09 19:00,1.18081,1.18091,1.18048,1.18048,6956 +2020-09-09 19:15,1.18047,1.18063,1.18042,1.18062,4608 +2020-09-09 19:30,1.18063,1.18109,1.18062,1.18094,5320 +2020-09-09 19:45,1.18093,1.18108,1.18037,1.18037,6916 +2020-09-09 20:00,1.18037,1.18071,1.18037,1.18069,3161 +2020-09-09 20:15,1.18069,1.18072,1.18037,1.18067,2905 +2020-09-09 20:30,1.18069,1.18083,1.1805,1.1806,2901 +2020-09-09 20:45,1.18059,1.18062,1.18025,1.18025,896 +2020-09-09 21:00,1.18026,1.18045,1.18011,1.18018,82 +2020-09-09 21:15,1.18019,1.18036,1.18015,1.18024,103 +2020-09-09 21:30,1.18025,1.18027,1.18023,1.18023,6 +2020-09-09 21:45,1.18026,1.18035,1.18012,1.18033,121 +2020-09-09 22:00,1.18034,1.18059,1.18033,1.18049,640 +2020-09-09 22:15,1.18048,1.18073,1.18028,1.18053,1847 +2020-09-09 22:30,1.18052,1.18069,1.1803,1.18069,3643 +2020-09-09 22:45,1.18067,1.18092,1.18055,1.18087,1400 +2020-09-09 23:00,1.1809,1.18101,1.18064,1.18069,2845 +2020-09-09 23:15,1.18068,1.18072,1.18054,1.18064,1006 +2020-09-09 23:30,1.18062,1.18063,1.18049,1.1805,525 +2020-09-09 23:45,1.18052,1.18055,1.1803,1.18037,1131 +2020-09-10 00:00,1.18035,1.18114,1.18004,1.181,4558 +2020-09-10 00:15,1.18102,1.18146,1.18095,1.18109,3153 +2020-09-10 00:30,1.18109,1.18126,1.18058,1.1811,5124 +2020-09-10 00:45,1.18111,1.18111,1.1806,1.18103,3763 +2020-09-10 01:00,1.18102,1.18141,1.18091,1.18097,3893 +2020-09-10 01:15,1.18099,1.1813,1.18069,1.18121,4745 +2020-09-10 01:30,1.1812,1.18153,1.18101,1.18132,4834 +2020-09-10 01:45,1.18133,1.18208,1.18109,1.18205,4774 +2020-09-10 02:00,1.18206,1.18207,1.1815,1.18167,44325 +2020-09-10 02:15,1.18167,1.18196,1.18157,1.18191,3711 +2020-09-10 02:30,1.18192,1.18215,1.18187,1.18201,3688 +2020-09-10 02:45,1.18204,1.1824,1.18203,1.18221,4000 +2020-09-10 03:00,1.18221,1.18236,1.18216,1.18234,3647 +2020-09-10 03:15,1.18234,1.18244,1.18214,1.1823,2587 +2020-09-10 03:30,1.18232,1.18232,1.18213,1.18225,3009 +2020-09-10 03:45,1.18225,1.18226,1.18206,1.18219,3608 +2020-09-10 04:00,1.18218,1.18225,1.18204,1.18204,3985 +2020-09-10 04:15,1.18205,1.18224,1.18202,1.18218,2520 +2020-09-10 04:30,1.18218,1.1822,1.18193,1.18198,2609 +2020-09-10 04:45,1.18199,1.18206,1.18189,1.18192,2708 +2020-09-10 05:00,1.18192,1.1821,1.18187,1.18207,2292 +2020-09-10 05:15,1.18207,1.18272,1.18206,1.18266,3737 +2020-09-10 05:30,1.18266,1.18281,1.18224,1.18276,6649 +2020-09-10 05:45,1.18275,1.18289,1.1826,1.1827,5171 +2020-09-10 06:00,1.18269,1.18368,1.1825,1.18309,9227 +2020-09-10 06:15,1.18309,1.18345,1.18251,1.18311,7170 +2020-09-10 06:30,1.1831,1.1834,1.18282,1.18315,6835 +2020-09-10 06:45,1.18313,1.1832,1.18261,1.18262,7963 +2020-09-10 07:00,1.18262,1.18271,1.18196,1.18253,16682 +2020-09-10 07:15,1.18254,1.18291,1.1823,1.18272,10252 +2020-09-10 07:30,1.18271,1.18288,1.18192,1.18224,11784 +2020-09-10 07:45,1.18225,1.18276,1.18159,1.18189,12392 +2020-09-10 08:00,1.18187,1.1826,1.18172,1.18216,11271 +2020-09-10 08:15,1.18217,1.1832,1.18217,1.18317,8345 +2020-09-10 08:30,1.18318,1.18395,1.18304,1.18376,10980 +2020-09-10 08:45,1.18376,1.184,1.18321,1.18341,7790 +2020-09-10 09:00,1.18341,1.1836,1.18305,1.18314,11058 +2020-09-10 09:15,1.18314,1.18363,1.18289,1.18304,9829 +2020-09-10 09:30,1.18304,1.18385,1.183,1.1834,12996 +2020-09-10 09:45,1.1834,1.18403,1.18335,1.18385,10261 +2020-09-10 10:00,1.18385,1.18444,1.18373,1.18375,10650 +2020-09-10 10:15,1.18376,1.18381,1.18319,1.18321,8593 +2020-09-10 10:30,1.1832,1.18369,1.1831,1.18361,8669 +2020-09-10 10:45,1.18359,1.18407,1.18338,1.18376,6394 +2020-09-10 11:00,1.18377,1.18412,1.18332,1.18338,7467 +2020-09-10 11:15,1.18337,1.18428,1.18337,1.18413,6330 +2020-09-10 11:30,1.18413,1.18435,1.18342,1.18352,6400 +2020-09-10 11:45,1.18349,1.18504,1.18311,1.18463,8615 +2020-09-10 12:00,1.18465,1.18549,1.18423,1.1849,10757 +2020-09-10 12:15,1.18491,1.18525,1.18417,1.18439,16936 +2020-09-10 12:30,1.18439,1.18943,1.18396,1.18753,30107 +2020-09-10 12:45,1.18753,1.19025,1.18712,1.18877,26527 +2020-09-10 13:00,1.18876,1.1906,1.18837,1.18995,16412 +2020-09-10 13:15,1.18997,1.19068,1.18912,1.19024,10456 +2020-09-10 13:30,1.19026,1.19057,1.18915,1.1902,15323 +2020-09-10 13:45,1.19023,1.19175,1.18975,1.18984,15433 +2020-09-10 14:00,1.18984,1.19086,1.18975,1.18979,14617 +2020-09-10 14:15,1.18979,1.19073,1.18893,1.18913,14320 +2020-09-10 14:30,1.18913,1.19062,1.18899,1.18958,20763 +2020-09-10 14:45,1.18959,1.18987,1.18674,1.18733,24669 +2020-09-10 15:00,1.18734,1.18863,1.1865,1.18787,21585 +2020-09-10 15:15,1.18787,1.18847,1.18732,1.18756,19048 +2020-09-10 15:30,1.18756,1.18856,1.18745,1.18837,21381 +2020-09-10 15:45,1.18837,1.18874,1.1875,1.18791,18806 +2020-09-10 16:00,1.18791,1.1885,1.18726,1.18749,19759 +2020-09-10 16:15,1.18748,1.18786,1.1866,1.18675,47902 +2020-09-10 16:30,1.18674,1.18738,1.18593,1.18603,35121 +2020-09-10 16:45,1.18603,1.18612,1.18479,1.18573,27663 +2020-09-10 17:00,1.18574,1.18639,1.18539,1.18606,27155 +2020-09-10 17:15,1.18606,1.18642,1.18549,1.18571,20125 +2020-09-10 17:30,1.18575,1.18623,1.18569,1.18606,13551 +2020-09-10 17:45,1.18607,1.1861,1.18535,1.18546,14158 +2020-09-10 18:00,1.18547,1.18576,1.18472,1.18487,12391 +2020-09-10 18:15,1.18488,1.185,1.18179,1.18223,24551 +2020-09-10 18:30,1.18222,1.18327,1.18222,1.18268,26437 +2020-09-10 18:45,1.18268,1.18312,1.18239,1.18248,24956 +2020-09-10 19:00,1.1825,1.18267,1.1819,1.1823,41281 +2020-09-10 19:15,1.18232,1.18244,1.181,1.18175,29239 +2020-09-10 19:30,1.18174,1.18208,1.18141,1.18198,17886 +2020-09-10 19:45,1.18198,1.18225,1.18147,1.18174,16655 +2020-09-10 20:00,1.18174,1.18195,1.18137,1.18139,3529 +2020-09-10 20:15,1.18139,1.18149,1.181,1.18119,2229 +2020-09-10 20:30,1.18121,1.18171,1.18117,1.18161,2768 +2020-09-10 20:45,1.1816,1.18161,1.1813,1.18146,998 +2020-09-10 21:00,1.18145,1.18148,1.1813,1.18144,287 +2020-09-10 21:15,1.18141,1.18216,1.1813,1.18189,956 +2020-09-10 21:30,1.18188,1.18211,1.18184,1.182,274 +2020-09-10 21:45,1.182,1.18217,1.18197,1.18212,78 +2020-09-10 22:00,1.18211,1.18235,1.1819,1.18224,1046 +2020-09-10 22:15,1.18224,1.18236,1.18214,1.18236,706 +2020-09-10 22:30,1.18238,1.18274,1.18238,1.18273,2805 +2020-09-10 22:45,1.18272,1.18286,1.18264,1.18269,2554 +2020-09-10 23:00,1.1827,1.18287,1.18243,1.18264,2461 +2020-09-10 23:15,1.18265,1.18273,1.18243,1.18253,2131 +2020-09-10 23:30,1.18253,1.18274,1.18241,1.18249,1368 +2020-09-10 23:45,1.18249,1.18266,1.18221,1.18234,2142 +2020-09-11 00:00,1.18237,1.18309,1.18237,1.18272,6487 +2020-09-11 00:15,1.18272,1.18335,1.18272,1.18308,5683 +2020-09-11 00:30,1.18309,1.18344,1.18303,1.18334,5766 +2020-09-11 00:45,1.18334,1.18368,1.18316,1.18348,6112 +2020-09-11 01:00,1.18348,1.18401,1.18341,1.18348,10001 +2020-09-11 01:15,1.18348,1.18386,1.18341,1.1838,4153 +2020-09-11 01:30,1.1838,1.18381,1.18334,1.18335,5585 +2020-09-11 01:45,1.18337,1.18347,1.18311,1.18332,7999 +2020-09-11 02:00,1.18332,1.18376,1.1833,1.18375,5279 +2020-09-11 02:15,1.18374,1.18382,1.18365,1.18369,5454 +2020-09-11 02:30,1.1837,1.18376,1.18345,1.18352,3834 +2020-09-11 02:45,1.18351,1.18352,1.18312,1.18333,3719 +2020-09-11 03:00,1.18333,1.18357,1.1832,1.18338,4880 +2020-09-11 03:15,1.18338,1.18346,1.18314,1.18316,3906 +2020-09-11 03:30,1.18315,1.18361,1.18301,1.18344,5391 +2020-09-11 03:45,1.18343,1.18358,1.18325,1.18338,3052 +2020-09-11 04:00,1.18337,1.18356,1.18317,1.18329,4652 +2020-09-11 04:15,1.18329,1.18352,1.18325,1.18341,3167 +2020-09-11 04:30,1.18339,1.1835,1.18324,1.18348,4044 +2020-09-11 04:45,1.18346,1.18373,1.18344,1.18353,1878 +2020-09-11 05:00,1.18352,1.18361,1.18335,1.18337,4386 +2020-09-11 05:15,1.18334,1.18351,1.18321,1.18348,3965 +2020-09-11 05:30,1.18348,1.18387,1.18345,1.18375,4640 +2020-09-11 05:45,1.18376,1.18415,1.18359,1.18374,5427 +2020-09-11 06:00,1.18374,1.18398,1.18284,1.18334,9838 +2020-09-11 06:15,1.18333,1.18384,1.18323,1.18356,10100 +2020-09-11 06:30,1.18357,1.18378,1.18313,1.18363,9157 +2020-09-11 06:45,1.18363,1.18397,1.18355,1.18359,8547 +2020-09-11 07:00,1.18359,1.18405,1.18317,1.18375,11694 +2020-09-11 07:15,1.18374,1.18492,1.18364,1.1842,11413 +2020-09-11 07:30,1.1842,1.1847,1.1837,1.18421,12979 +2020-09-11 07:45,1.1842,1.18434,1.1831,1.18343,11138 +2020-09-11 08:00,1.18343,1.18458,1.18335,1.18423,9255 +2020-09-11 08:15,1.18423,1.18458,1.18382,1.18409,8055 +2020-09-11 08:30,1.18408,1.18592,1.18401,1.18569,14022 +2020-09-11 08:45,1.18566,1.18598,1.18539,1.18566,11400 +2020-09-11 09:00,1.18566,1.1867,1.18554,1.18645,10975 +2020-09-11 09:15,1.18645,1.18658,1.18545,1.1861,11479 +2020-09-11 09:30,1.1861,1.18693,1.18607,1.18675,12282 +2020-09-11 09:45,1.18675,1.18741,1.18663,1.18729,7913 +2020-09-11 10:00,1.18726,1.18736,1.18638,1.18638,9280 +2020-09-11 10:15,1.18638,1.18672,1.18599,1.18635,7458 +2020-09-11 10:30,1.18636,1.18678,1.18589,1.18636,10140 +2020-09-11 10:45,1.18637,1.18638,1.18548,1.1859,9143 +2020-09-11 11:00,1.18591,1.18649,1.18587,1.18605,6782 +2020-09-11 11:15,1.18603,1.18606,1.18519,1.18526,7722 +2020-09-11 11:30,1.18527,1.1854,1.18492,1.18494,8264 +2020-09-11 11:45,1.18494,1.18515,1.18478,1.18503,6169 +2020-09-11 12:00,1.18505,1.18544,1.18465,1.18538,17111 +2020-09-11 12:15,1.18538,1.18567,1.18499,1.18511,14320 +2020-09-11 12:30,1.18511,1.18518,1.1839,1.18402,15465 +2020-09-11 12:45,1.184,1.18472,1.18347,1.18463,16504 +2020-09-11 13:00,1.18464,1.18574,1.1842,1.18563,23275 +2020-09-11 13:15,1.18564,1.18571,1.18475,1.18505,12837 +2020-09-11 13:30,1.18505,1.18508,1.18401,1.18487,29374 +2020-09-11 13:45,1.18488,1.18544,1.18397,1.184,27717 +2020-09-11 14:00,1.18402,1.18465,1.18389,1.18431,25869 +2020-09-11 14:15,1.1843,1.18506,1.18412,1.18492,21216 +2020-09-11 14:30,1.18488,1.18495,1.18391,1.18391,8675 +2020-09-11 14:45,1.18391,1.18391,1.18277,1.18288,12880 +2020-09-11 15:00,1.18288,1.18389,1.18285,1.18369,17804 +2020-09-11 15:15,1.18367,1.18392,1.1834,1.18363,15498 +2020-09-11 15:30,1.18363,1.18365,1.18293,1.18306,18280 +2020-09-11 15:45,1.18307,1.18365,1.18291,1.1831,17135 +2020-09-11 16:00,1.18309,1.18398,1.18292,1.18381,13236 +2020-09-11 16:15,1.18382,1.18396,1.18363,1.18377,12122 +2020-09-11 16:30,1.18376,1.18393,1.18337,1.18348,18566 +2020-09-11 16:45,1.1835,1.1841,1.18343,1.18372,16266 +2020-09-11 17:00,1.18373,1.18384,1.18271,1.18307,21143 +2020-09-11 17:15,1.18307,1.18367,1.18302,1.18308,21510 +2020-09-11 17:30,1.18308,1.18338,1.1829,1.18305,18720 +2020-09-11 17:45,1.18306,1.18314,1.18265,1.18276,12831 +2020-09-11 18:00,1.18277,1.18379,1.18262,1.18372,10568 +2020-09-11 18:15,1.18373,1.18383,1.18317,1.18319,10062 +2020-09-11 18:30,1.18319,1.18369,1.18319,1.18348,13546 +2020-09-11 18:45,1.18348,1.18359,1.18305,1.18305,12234 +2020-09-11 19:00,1.18306,1.18314,1.18271,1.1831,14319 +2020-09-11 19:15,1.18309,1.18438,1.18306,1.18403,9903 +2020-09-11 19:30,1.18404,1.18437,1.18381,1.18405,8366 +2020-09-11 19:45,1.18406,1.18453,1.18399,1.18415,14229 +2020-09-11 20:00,1.18415,1.18423,1.18386,1.18419,8260 +2020-09-11 20:15,1.1842,1.18428,1.18406,1.18406,9090 +2020-09-11 20:30,1.18406,1.18439,1.18398,1.18438,4902 +2020-09-11 20:45,1.18439,1.1848,1.18432,1.18453,6567 +2020-09-13 21:00,1.18348,1.18382,1.18347,1.18369,207 +2020-09-13 21:15,1.18367,1.18385,1.18364,1.18369,76 +2020-09-13 21:30,1.18373,1.18373,1.18357,1.18357,52 +2020-09-13 21:45,1.18361,1.18383,1.18351,1.18369,29 +2020-09-13 22:00,1.18391,1.18432,1.18366,1.18404,2098 +2020-09-13 22:15,1.18405,1.18433,1.18404,1.18423,1171 +2020-09-13 22:30,1.18424,1.18462,1.18422,1.18452,797 +2020-09-13 22:45,1.18451,1.18473,1.1845,1.18453,1797 +2020-09-13 23:00,1.18454,1.18464,1.18427,1.18428,3228 +2020-09-13 23:15,1.18428,1.18431,1.18389,1.18394,2702 +2020-09-13 23:30,1.18393,1.18409,1.18384,1.18388,3464 +2020-09-13 23:45,1.18388,1.18413,1.18387,1.18404,4991 +2020-09-14 00:00,1.18404,1.18432,1.18365,1.18372,7168 +2020-09-14 00:15,1.18371,1.18382,1.18331,1.18336,6410 +2020-09-14 00:30,1.18336,1.18347,1.18319,1.18338,5581 +2020-09-14 00:45,1.18337,1.18372,1.18329,1.18343,6026 +2020-09-14 01:00,1.18345,1.18411,1.18337,1.18398,5093 +2020-09-14 01:15,1.184,1.1844,1.18399,1.18437,5676 +2020-09-14 01:30,1.18438,1.18447,1.18419,1.18427,7837 +2020-09-14 01:45,1.18427,1.18446,1.1841,1.18434,5548 +2020-09-14 02:00,1.18434,1.18471,1.18424,1.18464,7951 +2020-09-14 02:15,1.18462,1.185,1.18454,1.1849,8304 +2020-09-14 02:30,1.1849,1.18505,1.18479,1.18501,7111 +2020-09-14 02:45,1.18499,1.185,1.1848,1.18492,5933 +2020-09-14 03:00,1.1849,1.18504,1.18483,1.18503,4649 +2020-09-14 03:15,1.18503,1.18511,1.18477,1.18485,7282 +2020-09-14 03:30,1.18486,1.185,1.18462,1.18463,4247 +2020-09-14 03:45,1.18464,1.18475,1.18459,1.18473,1956 +2020-09-14 04:00,1.18473,1.18475,1.18452,1.18472,4467 +2020-09-14 04:15,1.18473,1.18483,1.18467,1.18477,4499 +2020-09-14 04:30,1.18479,1.18501,1.18471,1.18492,4998 +2020-09-14 04:45,1.18492,1.18492,1.18471,1.18472,5300 +2020-09-14 05:00,1.18474,1.18479,1.1845,1.18459,5257 +2020-09-14 05:15,1.18459,1.18494,1.18451,1.18467,5714 +2020-09-14 05:30,1.18469,1.1851,1.18453,1.18504,6953 +2020-09-14 05:45,1.18503,1.18545,1.18499,1.18541,8406 +2020-09-14 06:00,1.18541,1.18541,1.18477,1.18489,13416 +2020-09-14 06:15,1.18489,1.18489,1.18426,1.18436,13892 +2020-09-14 06:30,1.18436,1.18485,1.18429,1.18479,10893 +2020-09-14 06:45,1.1848,1.18495,1.18434,1.18437,16022 +2020-09-14 07:00,1.18438,1.18554,1.18437,1.18513,17046 +2020-09-14 07:15,1.18513,1.18574,1.18496,1.18567,17706 +2020-09-14 07:30,1.18567,1.18608,1.18549,1.18574,20821 +2020-09-14 07:45,1.18575,1.18643,1.18558,1.18636,18423 +2020-09-14 08:00,1.18637,1.18684,1.18617,1.18682,18233 +2020-09-14 08:15,1.18681,1.18686,1.18613,1.18625,14899 +2020-09-14 08:30,1.18625,1.18678,1.18586,1.18598,16954 +2020-09-14 08:45,1.18597,1.18634,1.18563,1.18564,16982 +2020-09-14 09:00,1.18563,1.18616,1.18557,1.18586,15253 +2020-09-14 09:15,1.18584,1.18661,1.18555,1.18557,18642 +2020-09-14 09:30,1.18559,1.18582,1.18519,1.18528,10007 +2020-09-14 09:45,1.18527,1.18569,1.18493,1.18546,18421 +2020-09-14 10:00,1.18547,1.1867,1.18537,1.18635,17826 +2020-09-14 10:15,1.18636,1.18684,1.18602,1.18669,16342 +2020-09-14 10:30,1.18667,1.18751,1.18658,1.18717,14943 +2020-09-14 10:45,1.18718,1.18759,1.18714,1.18729,16623 +2020-09-14 11:00,1.1873,1.18751,1.18697,1.18727,13963 +2020-09-14 11:15,1.18727,1.18787,1.18726,1.1878,12150 +2020-09-14 11:30,1.18778,1.1878,1.18644,1.18671,13194 +2020-09-14 11:45,1.18672,1.18717,1.18636,1.18665,12978 +2020-09-14 12:00,1.18665,1.18759,1.18644,1.18756,14468 +2020-09-14 12:15,1.18756,1.18772,1.18723,1.18734,14765 +2020-09-14 12:30,1.18735,1.18756,1.18692,1.18755,15655 +2020-09-14 12:45,1.18756,1.18841,1.1875,1.18776,17114 +2020-09-14 13:00,1.18777,1.18869,1.18775,1.18837,21111 +2020-09-14 13:15,1.18837,1.18872,1.18742,1.18774,16127 +2020-09-14 13:30,1.18776,1.18846,1.18758,1.18834,19161 +2020-09-14 13:45,1.18835,1.1888,1.18766,1.18786,17766 +2020-09-14 14:00,1.18788,1.18863,1.18775,1.18811,14040 +2020-09-14 14:15,1.18812,1.18846,1.18773,1.18791,15257 +2020-09-14 14:30,1.18791,1.18802,1.18701,1.18748,13731 +2020-09-14 14:45,1.18747,1.18774,1.18688,1.18712,17512 +2020-09-14 15:00,1.18712,1.18762,1.18698,1.18759,14206 +2020-09-14 15:15,1.18758,1.18799,1.18719,1.18784,7952 +2020-09-14 15:30,1.18785,1.18843,1.18782,1.18833,10094 +2020-09-14 15:45,1.18834,1.18834,1.18725,1.18732,4889 +2020-09-14 16:00,1.18731,1.1875,1.18704,1.18724,5316 +2020-09-14 16:15,1.18725,1.18743,1.18709,1.18717,8044 +2020-09-14 16:30,1.18718,1.18722,1.18675,1.18676,5350 +2020-09-14 16:45,1.18677,1.18689,1.18645,1.18667,6528 +2020-09-14 17:00,1.18667,1.18678,1.18614,1.18643,8886 +2020-09-14 17:15,1.18644,1.18647,1.18597,1.18617,7326 +2020-09-14 17:30,1.18618,1.1862,1.18596,1.18602,8983 +2020-09-14 17:45,1.18602,1.18621,1.18598,1.18619,6117 +2020-09-14 18:00,1.18618,1.18619,1.18593,1.1861,6283 +2020-09-14 18:15,1.18611,1.18641,1.18611,1.18626,8664 +2020-09-14 18:30,1.18625,1.1864,1.18619,1.18627,9385 +2020-09-14 18:45,1.18627,1.18662,1.18624,1.18646,9720 +2020-09-14 19:00,1.18646,1.18675,1.18643,1.18667,11950 +2020-09-14 19:15,1.18666,1.18685,1.18656,1.18674,10293 +2020-09-14 19:30,1.18674,1.18702,1.18664,1.18695,6205 +2020-09-14 19:45,1.18695,1.18696,1.18621,1.18622,6621 +2020-09-14 20:00,1.18623,1.18655,1.18623,1.18629,4011 +2020-09-14 20:15,1.18627,1.18633,1.1862,1.18629,2927 +2020-09-14 20:30,1.18629,1.18632,1.1861,1.18624,2367 +2020-09-14 20:45,1.18624,1.18645,1.18607,1.18643,1211 +2020-09-14 21:00,1.18648,1.18655,1.18626,1.18655,87 +2020-09-14 21:15,1.18643,1.18663,1.18642,1.18657,75 +2020-09-14 21:30,1.18655,1.18665,1.18631,1.18662,193 +2020-09-14 21:45,1.18661,1.18665,1.18649,1.18649,254 +2020-09-14 22:00,1.18648,1.18675,1.18641,1.18661,1666 +2020-09-14 22:15,1.18661,1.18676,1.18659,1.18667,1537 +2020-09-14 22:30,1.18666,1.18681,1.18661,1.18665,1143 +2020-09-14 22:45,1.18667,1.18686,1.18661,1.18676,2964 +2020-09-14 23:00,1.18678,1.18682,1.18661,1.18663,1722 +2020-09-14 23:15,1.18664,1.18667,1.18649,1.18663,776 +2020-09-14 23:30,1.18662,1.18677,1.1866,1.18671,810 +2020-09-14 23:45,1.18672,1.18678,1.18662,1.18671,1541 +2020-09-15 00:00,1.1867,1.18701,1.18626,1.18636,6273 +2020-09-15 00:15,1.18637,1.18637,1.18587,1.18612,8972 +2020-09-15 00:30,1.18614,1.18663,1.18613,1.18649,5610 +2020-09-15 00:45,1.18652,1.18688,1.18633,1.18685,5957 +2020-09-15 01:00,1.18685,1.18694,1.18639,1.18657,7826 +2020-09-15 01:15,1.18657,1.18731,1.18649,1.18695,7099 +2020-09-15 01:30,1.18696,1.18733,1.18685,1.18709,8857 +2020-09-15 01:45,1.18709,1.18761,1.18706,1.18737,9437 +2020-09-15 02:00,1.18736,1.18804,1.18735,1.18793,7323 +2020-09-15 02:15,1.18792,1.1882,1.18772,1.18802,7611 +2020-09-15 02:30,1.18803,1.18813,1.18779,1.18796,5614 +2020-09-15 02:45,1.18795,1.18805,1.18776,1.18802,5082 +2020-09-15 03:00,1.18804,1.18869,1.18803,1.18866,10264 +2020-09-15 03:15,1.18867,1.18905,1.18848,1.1889,7132 +2020-09-15 03:30,1.18889,1.18903,1.18873,1.18903,7188 +2020-09-15 03:45,1.18906,1.18906,1.18882,1.18887,5925 +2020-09-15 04:00,1.18888,1.18912,1.18874,1.1891,5327 +2020-09-15 04:15,1.1891,1.18943,1.18896,1.18932,6545 +2020-09-15 04:30,1.18933,1.18944,1.18916,1.18941,4762 +2020-09-15 04:45,1.18939,1.18946,1.18925,1.18936,4691 +2020-09-15 05:00,1.18937,1.18992,1.18936,1.18956,6934 +2020-09-15 05:15,1.18956,1.18986,1.18936,1.18976,6331 +2020-09-15 05:30,1.18977,1.18985,1.18926,1.18938,5834 +2020-09-15 05:45,1.18938,1.18983,1.18931,1.18963,5524 +2020-09-15 06:00,1.18963,1.18966,1.18885,1.18914,7952 +2020-09-15 06:15,1.18916,1.18998,1.18907,1.18926,11378 +2020-09-15 06:30,1.18927,1.18927,1.18877,1.18887,9567 +2020-09-15 06:45,1.18887,1.18895,1.1884,1.18879,12085 +2020-09-15 07:00,1.1888,1.18934,1.18829,1.18849,14564 +2020-09-15 07:15,1.18848,1.18946,1.18831,1.18906,13719 +2020-09-15 07:30,1.18906,1.18931,1.18801,1.18813,16256 +2020-09-15 07:45,1.18814,1.18825,1.18759,1.18811,12817 +2020-09-15 08:00,1.1881,1.18865,1.18807,1.18819,16609 +2020-09-15 08:15,1.18818,1.18866,1.18781,1.18849,13964 +2020-09-15 08:30,1.18851,1.18873,1.18805,1.1887,15495 +2020-09-15 08:45,1.18869,1.1887,1.18813,1.18815,9446 +2020-09-15 09:00,1.18813,1.18895,1.18809,1.1887,15331 +2020-09-15 09:15,1.18869,1.18889,1.18838,1.18881,10343 +2020-09-15 09:30,1.1888,1.1888,1.18823,1.18859,10451 +2020-09-15 09:45,1.18858,1.18858,1.18807,1.18812,9511 +2020-09-15 10:00,1.18811,1.18844,1.188,1.18839,11422 +2020-09-15 10:15,1.18838,1.18923,1.18801,1.189,13413 +2020-09-15 10:30,1.18899,1.18936,1.18887,1.18908,9513 +2020-09-15 10:45,1.18908,1.18992,1.18906,1.18991,10640 +2020-09-15 11:00,1.1899,1.19005,1.18927,1.18933,15017 +2020-09-15 11:15,1.18934,1.18992,1.18929,1.18956,13847 +2020-09-15 11:30,1.18959,1.18988,1.1892,1.18922,11225 +2020-09-15 11:45,1.18921,1.18948,1.18865,1.18912,16372 +2020-09-15 12:00,1.18913,1.1896,1.18897,1.18917,12668 +2020-09-15 12:15,1.18919,1.18938,1.18839,1.18857,11802 +2020-09-15 12:30,1.18858,1.18901,1.18792,1.18836,12435 +2020-09-15 12:45,1.18838,1.18856,1.18684,1.18748,17477 +2020-09-15 13:00,1.18748,1.18789,1.18737,1.18765,10880 +2020-09-15 13:15,1.18768,1.18815,1.18725,1.18731,12016 +2020-09-15 13:30,1.18732,1.18791,1.1873,1.18776,16622 +2020-09-15 13:45,1.18775,1.18777,1.1856,1.18638,26062 +2020-09-15 14:00,1.18637,1.18637,1.18395,1.18439,24246 +2020-09-15 14:15,1.18438,1.18485,1.18409,1.18461,20548 +2020-09-15 14:30,1.1846,1.18518,1.18395,1.18437,22919 +2020-09-15 14:45,1.18439,1.18585,1.18411,1.18507,25735 +2020-09-15 15:00,1.18507,1.18528,1.18448,1.18496,13567 +2020-09-15 15:15,1.18495,1.18498,1.1845,1.18478,17289 +2020-09-15 15:30,1.18478,1.18506,1.1846,1.18494,6898 +2020-09-15 15:45,1.18495,1.18529,1.18446,1.18451,12003 +2020-09-15 16:00,1.18451,1.18517,1.18451,1.18508,13269 +2020-09-15 16:15,1.18507,1.1851,1.1846,1.18464,9654 +2020-09-15 16:30,1.18466,1.18512,1.18461,1.18505,8755 +2020-09-15 16:45,1.18506,1.18536,1.18501,1.18527,8900 +2020-09-15 17:00,1.18526,1.18538,1.18496,1.18531,10852 +2020-09-15 17:15,1.18531,1.18548,1.18496,1.18511,8773 +2020-09-15 17:30,1.1851,1.18511,1.18463,1.1849,6343 +2020-09-15 17:45,1.18492,1.18522,1.18461,1.18464,8901 +2020-09-15 18:00,1.18466,1.18482,1.18449,1.18467,8905 +2020-09-15 18:15,1.18466,1.18486,1.18457,1.18481,7546 +2020-09-15 18:30,1.18482,1.18515,1.18457,1.1849,5571 +2020-09-15 18:45,1.1849,1.18539,1.18489,1.18539,4677 +2020-09-15 19:00,1.18542,1.18542,1.18461,1.18471,12881 +2020-09-15 19:15,1.1847,1.18492,1.18464,1.18492,5931 +2020-09-15 19:30,1.1849,1.18493,1.1845,1.18455,6091 +2020-09-15 19:45,1.18455,1.18494,1.18454,1.18464,8270 +2020-09-15 20:00,1.18462,1.18496,1.18449,1.18485,6161 +2020-09-15 20:15,1.18484,1.18484,1.18458,1.18464,4893 +2020-09-15 20:30,1.18463,1.18468,1.18452,1.18453,2831 +2020-09-15 20:45,1.18451,1.18468,1.18447,1.18462,1357 +2020-09-15 21:00,1.18465,1.18534,1.18465,1.18483,158 +2020-09-15 21:15,1.18486,1.18498,1.18486,1.18496,7 +2020-09-15 21:30,1.18493,1.18494,1.18478,1.18478,27 +2020-09-15 21:45,1.18478,1.18487,1.18478,1.18479,31 +2020-09-15 22:00,1.18482,1.18494,1.18479,1.18488,506 +2020-09-15 22:15,1.18489,1.18504,1.18485,1.18503,933 +2020-09-15 22:30,1.18502,1.18504,1.1849,1.18495,1508 +2020-09-15 22:45,1.18495,1.18496,1.18475,1.18478,1385 +2020-09-15 23:00,1.18478,1.18489,1.18477,1.18481,2479 +2020-09-15 23:15,1.18482,1.18485,1.1846,1.18466,2937 +2020-09-15 23:30,1.18466,1.1847,1.18407,1.18421,3619 +2020-09-15 23:45,1.1842,1.18443,1.18415,1.18419,2758 +2020-09-16 00:00,1.1842,1.18456,1.183,1.18324,11006 +2020-09-16 00:15,1.18321,1.18346,1.18289,1.18334,9105 +2020-09-16 00:30,1.18333,1.18366,1.18319,1.18319,8966 +2020-09-16 00:45,1.18319,1.18356,1.18316,1.18342,8602 +2020-09-16 01:00,1.18342,1.18352,1.18286,1.18314,10250 +2020-09-16 01:15,1.18315,1.18378,1.1831,1.18368,9051 +2020-09-16 01:30,1.18367,1.18416,1.18366,1.18412,8003 +2020-09-16 01:45,1.18412,1.18445,1.18386,1.18441,6223 +2020-09-16 02:00,1.18443,1.18475,1.18432,1.18465,8785 +2020-09-16 02:15,1.18466,1.18472,1.18441,1.18465,7807 +2020-09-16 02:30,1.18466,1.18488,1.18452,1.1846,4756 +2020-09-16 02:45,1.18459,1.18467,1.18424,1.18453,6083 +2020-09-16 03:00,1.18455,1.18484,1.18453,1.18478,8548 +2020-09-16 03:15,1.18478,1.18488,1.18466,1.18481,7418 +2020-09-16 03:30,1.18482,1.18487,1.18467,1.18474,7196 +2020-09-16 03:45,1.18476,1.1848,1.18461,1.18467,6499 +2020-09-16 04:00,1.18467,1.18489,1.18461,1.18481,5076 +2020-09-16 04:15,1.18481,1.18485,1.18472,1.18481,4423 +2020-09-16 04:30,1.18481,1.18489,1.18456,1.18458,4588 +2020-09-16 04:45,1.18457,1.18483,1.18446,1.18477,5021 +2020-09-16 05:00,1.18477,1.18509,1.18467,1.18493,5606 +2020-09-16 05:15,1.18492,1.18513,1.1849,1.18496,5947 +2020-09-16 05:30,1.185,1.18507,1.18432,1.18432,5036 +2020-09-16 05:45,1.18431,1.18461,1.18414,1.18461,7794 +2020-09-16 06:00,1.18462,1.18476,1.1841,1.18428,7283 +2020-09-16 06:15,1.18427,1.18499,1.1842,1.18476,9458 +2020-09-16 06:30,1.18477,1.18528,1.18469,1.18524,7788 +2020-09-16 06:45,1.18525,1.18547,1.18496,1.18496,11781 +2020-09-16 07:00,1.18497,1.18543,1.18469,1.18477,13717 +2020-09-16 07:15,1.18477,1.18533,1.18465,1.18523,13272 +2020-09-16 07:30,1.18525,1.18617,1.18525,1.18616,13322 +2020-09-16 07:45,1.18615,1.1862,1.18548,1.18611,11428 +2020-09-16 08:00,1.18613,1.18684,1.18594,1.18678,9991 +2020-09-16 08:15,1.18676,1.18726,1.18664,1.18678,15796 +2020-09-16 08:30,1.18677,1.18695,1.18653,1.18693,9521 +2020-09-16 08:45,1.18694,1.18695,1.18626,1.18656,9479 +2020-09-16 09:00,1.18656,1.18724,1.18652,1.18696,10211 +2020-09-16 09:15,1.18696,1.18784,1.18658,1.18777,11550 +2020-09-16 09:30,1.18778,1.18806,1.18745,1.18769,9707 +2020-09-16 09:45,1.18771,1.18825,1.1875,1.18766,14121 +2020-09-16 10:00,1.18769,1.18795,1.18737,1.18754,8504 +2020-09-16 10:15,1.18759,1.188,1.1874,1.18763,9904 +2020-09-16 10:30,1.18765,1.18768,1.18636,1.18649,17267 +2020-09-16 10:45,1.18649,1.18761,1.18617,1.18689,14490 +2020-09-16 11:00,1.18691,1.18714,1.18659,1.18699,11582 +2020-09-16 11:15,1.18699,1.18714,1.18643,1.18648,9340 +2020-09-16 11:30,1.18651,1.18689,1.18619,1.18684,8120 +2020-09-16 11:45,1.18686,1.18704,1.18632,1.18674,10500 +2020-09-16 12:00,1.18676,1.18764,1.18657,1.18683,13487 +2020-09-16 12:15,1.18683,1.18745,1.18674,1.18727,8659 +2020-09-16 12:30,1.18729,1.18765,1.18546,1.18608,14707 +2020-09-16 12:45,1.18608,1.18615,1.18458,1.18578,18005 +2020-09-16 13:00,1.18579,1.18688,1.18555,1.18617,17924 +2020-09-16 13:15,1.18618,1.18647,1.18563,1.18575,10779 +2020-09-16 13:30,1.18575,1.18591,1.18464,1.1847,17348 +2020-09-16 13:45,1.18471,1.18535,1.18421,1.18451,20041 +2020-09-16 14:00,1.18449,1.18495,1.1838,1.18436,24315 +2020-09-16 14:15,1.18436,1.18445,1.18105,1.18115,33913 +2020-09-16 14:30,1.18119,1.18274,1.18091,1.18263,26155 +2020-09-16 14:45,1.18259,1.18308,1.18226,1.18303,22717 +2020-09-16 15:00,1.18303,1.18433,1.18273,1.18432,22681 +2020-09-16 15:15,1.18432,1.18471,1.18395,1.18421,15580 +2020-09-16 15:30,1.1842,1.18445,1.18347,1.18355,15574 +2020-09-16 15:45,1.18358,1.18372,1.18324,1.18345,13049 +2020-09-16 16:00,1.18346,1.18388,1.18325,1.18329,10244 +2020-09-16 16:15,1.18329,1.18389,1.18324,1.18371,6719 +2020-09-16 16:30,1.18372,1.18391,1.18349,1.1836,8409 +2020-09-16 16:45,1.18358,1.1836,1.1831,1.1833,9957 +2020-09-16 17:00,1.18329,1.18368,1.18318,1.18336,5702 +2020-09-16 17:15,1.18336,1.18348,1.18238,1.18251,10221 +2020-09-16 17:30,1.1825,1.18283,1.18221,1.18247,18035 +2020-09-16 17:45,1.18246,1.18278,1.18212,1.18278,11781 +2020-09-16 18:00,1.18274,1.1855,1.18073,1.18264,22142 +2020-09-16 18:15,1.18264,1.18384,1.18206,1.18218,15872 +2020-09-16 18:30,1.18221,1.18392,1.1804,1.18114,22533 +2020-09-16 18:45,1.18112,1.18142,1.17876,1.17996,29213 +2020-09-16 19:00,1.17997,1.18154,1.17934,1.1802,21427 +2020-09-16 19:15,1.18018,1.18068,1.17945,1.17988,16467 +2020-09-16 19:30,1.17986,1.18012,1.179,1.1796,14192 +2020-09-16 19:45,1.17961,1.18011,1.1795,1.17994,8496 +2020-09-16 20:00,1.17993,1.18053,1.17986,1.1804,4774 +2020-09-16 20:15,1.18041,1.18066,1.18001,1.18008,4793 +2020-09-16 20:30,1.1801,1.18157,1.18005,1.18154,4871 +2020-09-16 20:45,1.18151,1.18176,1.18141,1.18155,2279 +2020-09-16 21:00,1.18156,1.18175,1.18143,1.18165,114 +2020-09-16 21:15,1.18165,1.18176,1.18154,1.18163,75 +2020-09-16 21:30,1.18164,1.18168,1.181,1.18134,423 +2020-09-16 21:45,1.18136,1.18154,1.18123,1.18152,94 +2020-09-16 22:00,1.18153,1.18171,1.18148,1.18148,1134 +2020-09-16 22:15,1.18149,1.18192,1.18149,1.18188,1124 +2020-09-16 22:30,1.18188,1.18189,1.18157,1.18169,839 +2020-09-16 22:45,1.1817,1.1817,1.18128,1.18158,1069 +2020-09-16 23:00,1.18157,1.18165,1.18103,1.1811,2238 +2020-09-16 23:15,1.18108,1.18115,1.18083,1.18085,2199 +2020-09-16 23:30,1.18088,1.18093,1.18065,1.18078,2028 +2020-09-16 23:45,1.18077,1.18082,1.18024,1.18045,3790 +2020-09-17 00:00,1.18043,1.18043,1.17924,1.17924,9679 +2020-09-17 00:15,1.17925,1.17925,1.17749,1.17777,12136 +2020-09-17 00:30,1.17777,1.17791,1.17686,1.1777,13674 +2020-09-17 00:45,1.1777,1.17795,1.1774,1.17771,7716 +2020-09-17 01:00,1.17771,1.17847,1.17766,1.17829,10030 +2020-09-17 01:15,1.17829,1.17876,1.17815,1.17856,13931 +2020-09-17 01:30,1.17856,1.17906,1.17771,1.17778,16115 +2020-09-17 01:45,1.17779,1.17779,1.17599,1.1762,19512 +2020-09-17 02:00,1.17619,1.17691,1.17599,1.17668,18127 +2020-09-17 02:15,1.17668,1.17698,1.17633,1.17652,16787 +2020-09-17 02:30,1.17653,1.17697,1.17645,1.17691,7446 +2020-09-17 02:45,1.1769,1.17692,1.17636,1.17677,8591 +2020-09-17 03:00,1.17677,1.17677,1.17615,1.17623,9038 +2020-09-17 03:15,1.17624,1.17629,1.17373,1.1749,16851 +2020-09-17 03:30,1.17489,1.17524,1.17432,1.17524,15245 +2020-09-17 03:45,1.17524,1.17573,1.17518,1.17533,11324 +2020-09-17 04:00,1.17533,1.17547,1.17495,1.17517,9827 +2020-09-17 04:15,1.17517,1.1755,1.17514,1.17544,7797 +2020-09-17 04:30,1.17545,1.17554,1.17537,1.17548,6336 +2020-09-17 04:45,1.17549,1.17597,1.17547,1.17587,9319 +2020-09-17 05:00,1.17587,1.17653,1.17566,1.17649,11114 +2020-09-17 05:15,1.1765,1.1769,1.17632,1.17688,9593 +2020-09-17 05:30,1.1769,1.17694,1.17634,1.17687,13119 +2020-09-17 05:45,1.17687,1.17712,1.17663,1.17693,13292 +2020-09-17 06:00,1.17693,1.17729,1.1758,1.17584,23117 +2020-09-17 06:15,1.17583,1.17686,1.17555,1.17656,23489 +2020-09-17 06:30,1.17656,1.17729,1.17606,1.17704,21318 +2020-09-17 06:45,1.17703,1.17789,1.17695,1.17743,20579 +2020-09-17 07:00,1.17744,1.17844,1.17704,1.17756,28649 +2020-09-17 07:15,1.17757,1.17835,1.17704,1.17797,25577 +2020-09-17 07:30,1.17796,1.17888,1.17795,1.17859,23414 +2020-09-17 07:45,1.17859,1.17949,1.17822,1.17939,23959 +2020-09-17 08:00,1.1794,1.18038,1.1791,1.17982,20948 +2020-09-17 08:15,1.17983,1.18092,1.17983,1.18075,18167 +2020-09-17 08:30,1.18077,1.18121,1.1803,1.18037,14459 +2020-09-17 08:45,1.18036,1.18075,1.18013,1.18035,12784 +2020-09-17 09:00,1.18034,1.1808,1.17901,1.17923,17982 +2020-09-17 09:15,1.17922,1.17925,1.17833,1.17835,21425 +2020-09-17 09:30,1.17837,1.17946,1.1783,1.17945,22643 +2020-09-17 09:45,1.17944,1.18011,1.17915,1.17992,16276 +2020-09-17 10:00,1.17992,1.18016,1.17918,1.17944,20737 +2020-09-17 10:15,1.17944,1.17962,1.1791,1.17934,17514 +2020-09-17 10:30,1.17935,1.17964,1.17913,1.17927,15108 +2020-09-17 10:45,1.17927,1.18048,1.17885,1.17982,22159 +2020-09-17 11:00,1.17981,1.18026,1.17891,1.18016,21057 +2020-09-17 11:15,1.18016,1.18051,1.17977,1.18033,21900 +2020-09-17 11:30,1.18029,1.18051,1.17976,1.17989,17432 +2020-09-17 11:45,1.17988,1.18079,1.17985,1.18054,19238 +2020-09-17 12:00,1.18054,1.18056,1.17912,1.17963,20226 +2020-09-17 12:15,1.17963,1.18047,1.17953,1.17976,15562 +2020-09-17 12:30,1.17979,1.18061,1.17937,1.18046,14713 +2020-09-17 12:45,1.18046,1.18127,1.1802,1.18081,21184 +2020-09-17 13:00,1.18081,1.18097,1.17959,1.17996,23898 +2020-09-17 13:15,1.17997,1.18073,1.17943,1.1803,21004 +2020-09-17 13:30,1.1803,1.18035,1.17937,1.17978,26984 +2020-09-17 13:45,1.1798,1.18168,1.1798,1.18088,32480 +2020-09-17 14:00,1.18088,1.18127,1.18037,1.18055,34232 +2020-09-17 14:15,1.18055,1.18134,1.18014,1.18025,28160 +2020-09-17 14:30,1.18025,1.18177,1.18015,1.1814,34048 +2020-09-17 14:45,1.1814,1.18154,1.18049,1.18077,36331 +2020-09-17 15:00,1.18077,1.18193,1.18065,1.18189,25553 +2020-09-17 15:15,1.18191,1.18237,1.18185,1.18227,19600 +2020-09-17 15:30,1.18227,1.18266,1.18212,1.18257,16348 +2020-09-17 15:45,1.18258,1.18277,1.18216,1.18228,14553 +2020-09-17 16:00,1.18227,1.18258,1.18212,1.18217,12837 +2020-09-17 16:15,1.1822,1.1824,1.18187,1.18232,17795 +2020-09-17 16:30,1.18231,1.18265,1.18202,1.18222,12418 +2020-09-17 16:45,1.18222,1.18243,1.18207,1.18221,12076 +2020-09-17 17:00,1.18221,1.18241,1.18212,1.18232,10137 +2020-09-17 17:15,1.18233,1.18262,1.1823,1.1824,11892 +2020-09-17 17:30,1.18241,1.18255,1.18231,1.1825,8189 +2020-09-17 17:45,1.18251,1.18339,1.18251,1.18317,15720 +2020-09-17 18:00,1.18318,1.18421,1.18305,1.18407,13977 +2020-09-17 18:15,1.18406,1.18443,1.18391,1.18397,14117 +2020-09-17 18:30,1.18396,1.18422,1.18384,1.18392,15122 +2020-09-17 18:45,1.18393,1.18425,1.18375,1.18387,14050 +2020-09-17 19:00,1.18387,1.18436,1.18345,1.1843,15534 +2020-09-17 19:15,1.18432,1.18477,1.18421,1.18466,13546 +2020-09-17 19:30,1.18466,1.18513,1.18465,1.1848,10245 +2020-09-17 19:45,1.18484,1.18508,1.18466,1.18505,4524 +2020-09-17 20:00,1.18504,1.18506,1.18452,1.18478,6876 +2020-09-17 20:15,1.18477,1.18479,1.18443,1.18462,4889 +2020-09-17 20:30,1.18462,1.18524,1.18462,1.18489,4878 +2020-09-17 20:45,1.1849,1.18505,1.18448,1.18477,1583 +2020-09-17 21:00,1.18476,1.18493,1.18445,1.1845,168 +2020-09-17 21:15,1.18458,1.1846,1.18437,1.18444,75 +2020-09-17 21:30,1.18444,1.1846,1.18438,1.18443,878 +2020-09-17 21:45,1.18448,1.18454,1.18432,1.18445,68 +2020-09-17 22:00,1.18448,1.18517,1.18446,1.18515,971 +2020-09-17 22:15,1.18513,1.18528,1.18509,1.18512,2047 +2020-09-17 22:30,1.18513,1.18544,1.18512,1.18541,1061 +2020-09-17 22:45,1.1854,1.18544,1.18522,1.18522,923 +2020-09-17 23:00,1.18522,1.1854,1.18512,1.18534,2318 +2020-09-17 23:15,1.18535,1.18545,1.18524,1.18543,3108 +2020-09-17 23:30,1.18543,1.18561,1.18507,1.18508,3366 +2020-09-17 23:45,1.18509,1.18527,1.18461,1.18468,4979 +2020-09-18 00:00,1.18468,1.18618,1.18468,1.18601,9445 +2020-09-18 00:15,1.18599,1.18599,1.18521,1.18528,9730 +2020-09-18 00:30,1.18528,1.18561,1.18505,1.18522,8786 +2020-09-18 00:45,1.18522,1.18544,1.18486,1.18539,12196 +2020-09-18 01:00,1.18539,1.18614,1.18535,1.18558,13707 +2020-09-18 01:15,1.18557,1.18563,1.18505,1.18516,13559 +2020-09-18 01:30,1.18516,1.18551,1.18457,1.18539,13193 +2020-09-18 01:45,1.18539,1.18544,1.18479,1.18487,14370 +2020-09-18 02:00,1.18489,1.18497,1.18445,1.18457,13999 +2020-09-18 02:15,1.18457,1.18464,1.18432,1.18463,13044 +2020-09-18 02:30,1.18463,1.18498,1.18447,1.18463,11272 +2020-09-18 02:45,1.18463,1.18472,1.1843,1.1846,9490 +2020-09-18 03:00,1.18459,1.1851,1.18453,1.18503,8346 +2020-09-18 03:15,1.18503,1.18515,1.18488,1.18507,7372 +2020-09-18 03:30,1.18508,1.18522,1.185,1.18512,8441 +2020-09-18 03:45,1.18511,1.18523,1.18501,1.18503,7944 +2020-09-18 04:00,1.18504,1.18506,1.18464,1.18474,7346 +2020-09-18 04:15,1.18475,1.18494,1.18467,1.18484,8348 +2020-09-18 04:30,1.18485,1.18519,1.18485,1.18494,7953 +2020-09-18 04:45,1.18494,1.1851,1.18472,1.18485,7575 +2020-09-18 05:00,1.18486,1.185,1.18477,1.18482,6945 +2020-09-18 05:15,1.18484,1.18533,1.18462,1.1853,9455 +2020-09-18 05:30,1.1853,1.18546,1.18493,1.18517,9277 +2020-09-18 05:45,1.18519,1.18554,1.18495,1.18554,10123 +2020-09-18 06:00,1.18554,1.18567,1.18513,1.18549,10464 +2020-09-18 06:15,1.18549,1.18551,1.18473,1.18515,13418 +2020-09-18 06:30,1.18513,1.18625,1.18502,1.18599,14377 +2020-09-18 06:45,1.18599,1.18663,1.18565,1.18652,15116 +2020-09-18 07:00,1.18653,1.1869,1.18594,1.18599,18757 +2020-09-18 07:15,1.18601,1.18636,1.18554,1.18577,14448 +2020-09-18 07:30,1.18576,1.18586,1.18522,1.18545,11022 +2020-09-18 07:45,1.18544,1.18546,1.18479,1.18486,11570 +2020-09-18 08:00,1.18488,1.18488,1.18401,1.18464,12092 +2020-09-18 08:15,1.18462,1.18557,1.18461,1.18552,14622 +2020-09-18 08:30,1.18551,1.1856,1.18523,1.18542,15382 +2020-09-18 08:45,1.18542,1.18614,1.1854,1.18591,12127 +2020-09-18 09:00,1.18591,1.18637,1.18545,1.18578,13087 +2020-09-18 09:15,1.18578,1.18639,1.18575,1.18619,10303 +2020-09-18 09:30,1.18618,1.18637,1.18562,1.18581,10645 +2020-09-18 09:45,1.1858,1.18604,1.18516,1.18538,18700 +2020-09-18 10:00,1.18538,1.18538,1.18432,1.18452,14532 +2020-09-18 10:15,1.1845,1.18472,1.18411,1.18439,17397 +2020-09-18 10:30,1.18439,1.1849,1.18379,1.18424,15582 +2020-09-18 10:45,1.18423,1.18425,1.18369,1.18411,15369 +2020-09-18 11:00,1.18409,1.18449,1.18377,1.1838,9905 +2020-09-18 11:15,1.1838,1.1844,1.1837,1.18418,11899 +2020-09-18 11:30,1.18419,1.18425,1.18373,1.18385,11667 +2020-09-18 11:45,1.18386,1.18438,1.18304,1.18418,14093 +2020-09-18 12:00,1.18419,1.18434,1.18312,1.18333,11644 +2020-09-18 12:15,1.18333,1.18386,1.18304,1.18384,13323 +2020-09-18 12:30,1.18384,1.18458,1.18354,1.18427,18270 +2020-09-18 12:45,1.18427,1.18443,1.18384,1.18441,16467 +2020-09-18 13:00,1.18442,1.18516,1.1842,1.18424,18517 +2020-09-18 13:15,1.18423,1.1848,1.18422,1.18445,19110 +2020-09-18 13:30,1.18445,1.18452,1.18317,1.18379,26428 +2020-09-18 13:45,1.18381,1.18389,1.18312,1.18319,19928 +2020-09-18 14:00,1.18318,1.1838,1.1826,1.18363,21988 +2020-09-18 14:15,1.18362,1.18512,1.18358,1.18495,18994 +2020-09-18 14:30,1.18497,1.18592,1.18475,1.18585,19018 +2020-09-18 14:45,1.18588,1.18705,1.18549,1.186,23509 +2020-09-18 15:00,1.18602,1.18645,1.1855,1.18634,24140 +2020-09-18 15:15,1.18632,1.18663,1.18586,1.18644,21288 +2020-09-18 15:30,1.18644,1.18649,1.18551,1.18559,17301 +2020-09-18 15:45,1.18559,1.18609,1.18559,1.1856,16449 +2020-09-18 16:00,1.18559,1.18593,1.18531,1.18545,15070 +2020-09-18 16:15,1.18546,1.1858,1.18508,1.18575,13204 +2020-09-18 16:30,1.18576,1.1863,1.18574,1.18619,11249 +2020-09-18 16:45,1.1862,1.18656,1.186,1.18656,13021 +2020-09-18 17:00,1.18655,1.18675,1.18623,1.1866,11416 +2020-09-18 17:15,1.18661,1.18661,1.18526,1.18535,7678 +2020-09-18 17:30,1.18536,1.18583,1.1851,1.18546,12687 +2020-09-18 17:45,1.18546,1.18606,1.18535,1.18573,14302 +2020-09-18 18:00,1.18574,1.18579,1.18539,1.18571,10906 +2020-09-18 18:15,1.1857,1.18602,1.1854,1.18585,8280 +2020-09-18 18:30,1.18586,1.18605,1.18568,1.18568,8808 +2020-09-18 18:45,1.18569,1.18573,1.18508,1.18533,13719 +2020-09-18 19:00,1.18532,1.18538,1.185,1.18507,9201 +2020-09-18 19:15,1.18508,1.18513,1.18453,1.18466,6941 +2020-09-18 19:30,1.18465,1.1849,1.18464,1.18481,9993 +2020-09-18 19:45,1.1848,1.18516,1.18469,1.18496,6538 +2020-09-18 20:00,1.18495,1.18514,1.18464,1.18464,4539 +2020-09-18 20:15,1.18465,1.18465,1.18436,1.18446,9148 +2020-09-18 20:30,1.18446,1.18464,1.18437,1.1844,8452 +2020-09-18 20:45,1.18441,1.18443,1.18365,1.18385,8615 +2020-09-20 21:00,1.18369,1.18489,1.18369,1.1843,647 +2020-09-20 21:15,1.18434,1.18473,1.18425,1.18468,433 +2020-09-20 21:30,1.18457,1.18468,1.18451,1.18468,31 +2020-09-20 21:45,1.18468,1.18468,1.18399,1.18415,66 +2020-09-20 22:00,1.18414,1.18471,1.184,1.18445,2943 +2020-09-20 22:15,1.18442,1.18479,1.18429,1.18473,1827 +2020-09-20 22:30,1.18473,1.18476,1.18456,1.18465,1514 +2020-09-20 22:45,1.18465,1.18484,1.18458,1.18484,2311 +2020-09-20 23:00,1.18484,1.18488,1.18452,1.18456,4557 +2020-09-20 23:15,1.18456,1.18495,1.18444,1.1849,4457 +2020-09-20 23:30,1.18489,1.18498,1.18469,1.18475,6800 +2020-09-20 23:45,1.18474,1.18491,1.18449,1.18456,3504 +2020-09-21 00:00,1.18455,1.18492,1.18428,1.18464,5640 +2020-09-21 00:15,1.18463,1.18556,1.18462,1.1855,7785 +2020-09-21 00:30,1.1855,1.18563,1.18528,1.18562,6489 +2020-09-21 00:45,1.18561,1.18606,1.18553,1.18593,2455 +2020-09-21 01:00,1.18592,1.18612,1.18551,1.18565,8552 +2020-09-21 01:15,1.18565,1.18616,1.18565,1.18592,10380 +2020-09-21 01:30,1.18595,1.18605,1.18565,1.18578,8567 +2020-09-21 01:45,1.18579,1.18584,1.18545,1.1856,7387 +2020-09-21 02:00,1.18561,1.18611,1.18559,1.1859,9633 +2020-09-21 02:15,1.18591,1.1861,1.18579,1.186,10620 +2020-09-21 02:30,1.186,1.18622,1.18575,1.18603,8097 +2020-09-21 02:45,1.18605,1.18623,1.18585,1.18585,8940 +2020-09-21 03:00,1.18587,1.1861,1.18566,1.18605,7753 +2020-09-21 03:15,1.18605,1.18646,1.18595,1.1864,7863 +2020-09-21 03:30,1.1864,1.18672,1.18637,1.18649,6431 +2020-09-21 03:45,1.18649,1.18673,1.18645,1.18672,5548 +2020-09-21 04:00,1.18671,1.18717,1.18671,1.18706,5317 +2020-09-21 04:15,1.18708,1.18714,1.18669,1.18669,5588 +2020-09-21 04:30,1.18669,1.18692,1.18664,1.1868,4902 +2020-09-21 04:45,1.18681,1.18689,1.18658,1.18664,3607 +2020-09-21 05:00,1.18666,1.18698,1.18657,1.18679,5067 +2020-09-21 05:15,1.18678,1.18681,1.18648,1.18654,4916 +2020-09-21 05:30,1.18654,1.1869,1.18628,1.18673,6587 +2020-09-21 05:45,1.18675,1.187,1.18614,1.1863,7142 +2020-09-21 06:00,1.1863,1.18647,1.18591,1.18599,8561 +2020-09-21 06:15,1.18597,1.18606,1.18547,1.18589,14400 +2020-09-21 06:30,1.1859,1.18638,1.18581,1.18625,15170 +2020-09-21 06:45,1.18625,1.18632,1.18552,1.18581,14422 +2020-09-21 07:00,1.18581,1.18682,1.1858,1.18616,19784 +2020-09-21 07:15,1.18615,1.18622,1.18489,1.18503,22212 +2020-09-21 07:30,1.18503,1.18503,1.18311,1.18358,23768 +2020-09-21 07:45,1.18359,1.18369,1.18318,1.18334,21571 +2020-09-21 08:00,1.18334,1.18334,1.18214,1.18287,21905 +2020-09-21 08:15,1.18287,1.18287,1.18128,1.18157,22988 +2020-09-21 08:30,1.18157,1.18159,1.17948,1.17979,29678 +2020-09-21 08:45,1.17979,1.18028,1.17912,1.18012,24188 +2020-09-21 09:00,1.18011,1.18011,1.17934,1.1797,23140 +2020-09-21 09:15,1.17969,1.17987,1.17909,1.17928,20160 +2020-09-21 09:30,1.17929,1.17943,1.17802,1.17825,21265 +2020-09-21 09:45,1.17824,1.17892,1.17805,1.17844,20218 +2020-09-21 10:00,1.17845,1.17908,1.17811,1.17814,20688 +2020-09-21 10:15,1.17815,1.17835,1.17753,1.17831,20653 +2020-09-21 10:30,1.1783,1.17858,1.17799,1.17809,18811 +2020-09-21 10:45,1.1781,1.17924,1.17799,1.1787,19960 +2020-09-21 11:00,1.1787,1.17916,1.17799,1.17903,21903 +2020-09-21 11:15,1.17902,1.17922,1.17842,1.17915,21769 +2020-09-21 11:30,1.17914,1.17928,1.17863,1.17914,15732 +2020-09-21 11:45,1.17915,1.17972,1.17909,1.17953,15494 +2020-09-21 12:00,1.17953,1.17958,1.17857,1.17873,14947 +2020-09-21 12:15,1.17871,1.17904,1.17698,1.17735,23499 +2020-09-21 12:30,1.17734,1.17757,1.17658,1.17667,23715 +2020-09-21 12:45,1.17668,1.17729,1.17631,1.17698,22545 +2020-09-21 13:00,1.17698,1.17799,1.17612,1.17712,25108 +2020-09-21 13:15,1.17712,1.17763,1.17599,1.17704,25119 +2020-09-21 13:30,1.17704,1.17745,1.17553,1.17595,33378 +2020-09-21 13:45,1.17596,1.1765,1.17499,1.175,31194 +2020-09-21 14:00,1.17499,1.17599,1.17499,1.17562,30858 +2020-09-21 14:15,1.1756,1.17566,1.1744,1.17456,27019 +2020-09-21 14:30,1.17457,1.17461,1.17317,1.17372,32060 +2020-09-21 14:45,1.17371,1.17483,1.17363,1.17407,28500 +2020-09-21 15:00,1.17408,1.1751,1.17362,1.1738,26180 +2020-09-21 15:15,1.1738,1.17417,1.17319,1.17376,22808 +2020-09-21 15:30,1.17377,1.17396,1.17317,1.17369,20540 +2020-09-21 15:45,1.17368,1.17421,1.17359,1.17377,19168 +2020-09-21 16:00,1.17377,1.17425,1.17362,1.17382,17209 +2020-09-21 16:15,1.1738,1.17418,1.17359,1.17365,14275 +2020-09-21 16:30,1.17365,1.17372,1.17335,1.17368,15441 +2020-09-21 16:45,1.17369,1.17416,1.17337,1.17406,13851 +2020-09-21 17:00,1.17405,1.17437,1.17362,1.17435,17451 +2020-09-21 17:15,1.17436,1.17545,1.17435,1.17541,18848 +2020-09-21 17:30,1.1754,1.17562,1.17528,1.1755,15914 +2020-09-21 17:45,1.17548,1.17572,1.17517,1.17533,12357 +2020-09-21 18:00,1.17533,1.17547,1.175,1.17516,14424 +2020-09-21 18:15,1.17516,1.17558,1.17496,1.17554,13363 +2020-09-21 18:30,1.17552,1.17557,1.17523,1.17544,8445 +2020-09-21 18:45,1.17543,1.17578,1.17535,1.1754,10463 +2020-09-21 19:00,1.1754,1.17748,1.17535,1.17699,19138 +2020-09-21 19:15,1.17699,1.17713,1.17669,1.17697,15816 +2020-09-21 19:30,1.17698,1.17701,1.17644,1.17681,14205 +2020-09-21 19:45,1.17681,1.17688,1.17638,1.17642,14248 +2020-09-21 20:00,1.1764,1.17673,1.17624,1.17667,4720 +2020-09-21 20:15,1.17667,1.17691,1.17649,1.17656,1899 +2020-09-21 20:30,1.17655,1.17718,1.17655,1.17712,3009 +2020-09-21 20:45,1.17711,1.17732,1.17704,1.17707,2388 +2020-09-21 21:00,1.17707,1.17735,1.17683,1.17728,295 +2020-09-21 21:15,1.17727,1.17735,1.177,1.17704,183 +2020-09-21 21:30,1.17705,1.17706,1.17683,1.17693,153 +2020-09-21 21:45,1.17695,1.17725,1.1766,1.17678,188 +2020-09-21 22:00,1.17667,1.17725,1.17656,1.17674,2645 +2020-09-21 22:15,1.17673,1.17685,1.17647,1.17647,2422 +2020-09-21 22:30,1.17647,1.17655,1.17637,1.17648,1369 +2020-09-21 22:45,1.17649,1.17667,1.17646,1.17646,1528 +2020-09-21 23:00,1.17645,1.17664,1.17637,1.17659,2014 +2020-09-21 23:15,1.1766,1.17666,1.17652,1.17653,1356 +2020-09-21 23:30,1.17652,1.17668,1.17643,1.17664,944 +2020-09-21 23:45,1.17664,1.17665,1.17626,1.17626,2099 +2020-09-22 00:00,1.17627,1.177,1.17589,1.17699,10407 +2020-09-22 00:15,1.177,1.17708,1.17642,1.17682,9025 +2020-09-22 00:30,1.17682,1.17686,1.17558,1.17655,14591 +2020-09-22 00:45,1.17655,1.17697,1.17639,1.1768,5509 +2020-09-22 01:00,1.17681,1.17701,1.17624,1.17625,6797 +2020-09-22 01:15,1.17626,1.17628,1.17527,1.17605,11588 +2020-09-22 01:30,1.17603,1.17676,1.17582,1.17627,5749 +2020-09-22 01:45,1.1763,1.17658,1.17589,1.17653,7258 +2020-09-22 02:00,1.17652,1.17674,1.1761,1.17611,6219 +2020-09-22 02:15,1.17612,1.1764,1.17598,1.17613,3515 +2020-09-22 02:30,1.17613,1.17634,1.17597,1.17629,3807 +2020-09-22 02:45,1.17628,1.17634,1.17602,1.17633,5069 +2020-09-22 03:00,1.17632,1.17657,1.17615,1.17635,5847 +2020-09-22 03:15,1.17634,1.17715,1.17634,1.17697,6804 +2020-09-22 03:30,1.17698,1.17709,1.17679,1.17683,4600 +2020-09-22 03:45,1.17682,1.17683,1.17659,1.17678,3492 +2020-09-22 04:00,1.17679,1.17686,1.17659,1.1768,3079 +2020-09-22 04:15,1.17681,1.17682,1.17638,1.17651,4777 +2020-09-22 04:30,1.1765,1.17686,1.1765,1.1768,4848 +2020-09-22 04:45,1.17681,1.17687,1.17653,1.17686,3622 +2020-09-22 05:00,1.17688,1.1769,1.17604,1.1761,3533 +2020-09-22 05:15,1.17611,1.17611,1.17571,1.17595,6084 +2020-09-22 05:30,1.17595,1.17606,1.17551,1.17559,7591 +2020-09-22 05:45,1.17559,1.17573,1.17522,1.17522,8500 +2020-09-22 06:00,1.17525,1.17583,1.17521,1.17544,10826 +2020-09-22 06:15,1.17545,1.17545,1.17424,1.17427,21006 +2020-09-22 06:30,1.17427,1.17434,1.17338,1.17418,17487 +2020-09-22 06:45,1.17419,1.17473,1.1741,1.1747,13802 +2020-09-22 07:00,1.1747,1.17511,1.1736,1.17389,24655 +2020-09-22 07:15,1.17388,1.17394,1.1731,1.17352,18060 +2020-09-22 07:30,1.17354,1.17367,1.17201,1.1723,20478 +2020-09-22 07:45,1.1723,1.17326,1.17215,1.17235,19674 +2020-09-22 08:00,1.17235,1.17332,1.17233,1.17315,22094 +2020-09-22 08:15,1.17318,1.17432,1.1728,1.17419,16592 +2020-09-22 08:30,1.17419,1.17495,1.17387,1.17463,18272 +2020-09-22 08:45,1.17463,1.17472,1.1736,1.17445,13863 +2020-09-22 09:00,1.17445,1.17464,1.17374,1.17404,14757 +2020-09-22 09:15,1.17403,1.1743,1.17346,1.17361,11097 +2020-09-22 09:30,1.17362,1.17431,1.17346,1.17402,9201 +2020-09-22 09:45,1.17401,1.17408,1.17332,1.17371,7616 +2020-09-22 10:00,1.1737,1.17432,1.17368,1.17386,10324 +2020-09-22 10:15,1.17386,1.17546,1.17384,1.17534,13029 +2020-09-22 10:30,1.17531,1.17641,1.17527,1.17627,19435 +2020-09-22 10:45,1.17625,1.17672,1.17592,1.17614,15130 +2020-09-22 11:00,1.17613,1.17616,1.17539,1.17578,10447 +2020-09-22 11:15,1.17578,1.17616,1.17568,1.17577,9618 +2020-09-22 11:30,1.17577,1.17606,1.17548,1.1757,10248 +2020-09-22 11:45,1.17571,1.17573,1.17455,1.17521,14498 +2020-09-22 12:00,1.17523,1.17533,1.17379,1.17399,18027 +2020-09-22 12:15,1.174,1.17422,1.17345,1.17397,13456 +2020-09-22 12:30,1.17396,1.17559,1.17392,1.17507,15760 +2020-09-22 12:45,1.17509,1.17539,1.17412,1.17505,14826 +2020-09-22 13:00,1.17506,1.17607,1.17471,1.17548,16095 +2020-09-22 13:15,1.17547,1.17596,1.17525,1.17547,14711 +2020-09-22 13:30,1.17548,1.17601,1.17428,1.17444,22557 +2020-09-22 13:45,1.17442,1.17457,1.17264,1.17286,23902 +2020-09-22 14:00,1.17286,1.17333,1.17249,1.17291,19808 +2020-09-22 14:15,1.1729,1.17353,1.17277,1.17346,22227 +2020-09-22 14:30,1.17347,1.17374,1.17111,1.17115,21732 +2020-09-22 14:45,1.17116,1.17172,1.1703,1.17036,23274 +2020-09-22 15:00,1.17038,1.17095,1.16916,1.17076,25251 +2020-09-22 15:15,1.17075,1.1717,1.17046,1.17118,19335 +2020-09-22 15:30,1.17117,1.17121,1.16984,1.17022,22303 +2020-09-22 15:45,1.17022,1.17058,1.16953,1.17025,17273 +2020-09-22 16:00,1.17024,1.17104,1.16995,1.17066,12730 +2020-09-22 16:15,1.17065,1.17166,1.17014,1.17086,6691 +2020-09-22 16:30,1.17087,1.17094,1.17027,1.17049,14712 +2020-09-22 16:45,1.17048,1.17051,1.16999,1.1704,13132 +2020-09-22 17:00,1.17039,1.17113,1.17024,1.17101,12429 +2020-09-22 17:15,1.17101,1.17155,1.17078,1.17139,13503 +2020-09-22 17:30,1.17139,1.17165,1.1712,1.17126,10275 +2020-09-22 17:45,1.17126,1.17148,1.17076,1.17102,11547 +2020-09-22 18:00,1.17102,1.17135,1.17065,1.17121,13136 +2020-09-22 18:15,1.17125,1.17161,1.17119,1.17157,10994 +2020-09-22 18:30,1.17157,1.17157,1.17112,1.17113,9387 +2020-09-22 18:45,1.17111,1.17117,1.17047,1.17049,11878 +2020-09-22 19:00,1.17048,1.17071,1.17032,1.17038,11862 +2020-09-22 19:15,1.17038,1.17079,1.17031,1.17079,7151 +2020-09-22 19:30,1.17078,1.17092,1.17057,1.17082,11738 +2020-09-22 19:45,1.17081,1.17117,1.17071,1.1711,7598 +2020-09-22 20:00,1.17109,1.17133,1.17089,1.17097,2161 +2020-09-22 20:15,1.17098,1.17116,1.17091,1.17095,1796 +2020-09-22 20:30,1.17095,1.17111,1.17089,1.17105,1477 +2020-09-22 20:45,1.17106,1.17112,1.17047,1.17077,743 +2020-09-22 21:00,1.17074,1.17093,1.17056,1.17085,127 +2020-09-22 21:15,1.17085,1.17093,1.1708,1.17082,34 +2020-09-22 21:30,1.17081,1.17083,1.17057,1.17065,170 +2020-09-22 21:45,1.17071,1.17071,1.17057,1.1707,94 +2020-09-22 22:00,1.1707,1.17083,1.17066,1.17078,1595 +2020-09-22 22:15,1.17077,1.17079,1.17043,1.17043,2338 +2020-09-22 22:30,1.17047,1.1707,1.17047,1.17063,1734 +2020-09-22 22:45,1.17064,1.17074,1.17045,1.17068,495 +2020-09-22 23:00,1.1707,1.17085,1.17052,1.17063,2469 +2020-09-22 23:15,1.17064,1.17071,1.17043,1.17071,2494 +2020-09-22 23:30,1.17072,1.17079,1.17062,1.17064,2632 +2020-09-22 23:45,1.17065,1.17105,1.17059,1.17059,3039 +2020-09-23 00:00,1.1706,1.1709,1.1703,1.17042,9927 +2020-09-23 00:15,1.17043,1.1706,1.16965,1.16968,6212 +2020-09-23 00:30,1.16969,1.16988,1.1693,1.16988,11146 +2020-09-23 00:45,1.16988,1.16993,1.16779,1.16803,12793 +2020-09-23 01:00,1.16805,1.16878,1.16778,1.16817,15015 +2020-09-23 01:15,1.1682,1.16853,1.16752,1.16817,13402 +2020-09-23 01:30,1.16817,1.16881,1.16811,1.16842,10309 +2020-09-23 01:45,1.16843,1.16906,1.16839,1.1688,10493 +2020-09-23 02:00,1.16881,1.16922,1.16803,1.16814,9414 +2020-09-23 02:15,1.16814,1.16851,1.168,1.16814,12005 +2020-09-23 02:30,1.16814,1.16828,1.16765,1.16769,10206 +2020-09-23 02:45,1.16768,1.16834,1.16761,1.16808,9518 +2020-09-23 03:00,1.1681,1.16829,1.16763,1.16819,12186 +2020-09-23 03:15,1.16819,1.16861,1.16811,1.16845,5808 +2020-09-23 03:30,1.16848,1.16866,1.16824,1.16836,5519 +2020-09-23 03:45,1.16837,1.16843,1.16788,1.16816,6106 +2020-09-23 04:00,1.16817,1.16817,1.16761,1.16782,6063 +2020-09-23 04:15,1.16782,1.16783,1.16746,1.16773,9049 +2020-09-23 04:30,1.16773,1.16808,1.16767,1.16772,6832 +2020-09-23 04:45,1.16772,1.16803,1.1677,1.16783,5695 +2020-09-23 05:00,1.16784,1.16844,1.16784,1.16826,4732 +2020-09-23 05:15,1.16825,1.16864,1.16809,1.16827,8865 +2020-09-23 05:30,1.16826,1.16869,1.16812,1.16861,8541 +2020-09-23 05:45,1.16861,1.169,1.16853,1.1688,7669 +2020-09-23 06:00,1.16878,1.16883,1.16787,1.1679,15523 +2020-09-23 06:15,1.16789,1.1683,1.16721,1.16823,14497 +2020-09-23 06:30,1.16825,1.16892,1.16798,1.16889,12766 +2020-09-23 06:45,1.16889,1.16941,1.16864,1.16914,9568 +2020-09-23 07:00,1.16912,1.16948,1.16836,1.16912,21396 +2020-09-23 07:15,1.16913,1.16932,1.16747,1.16864,17147 +2020-09-23 07:30,1.16866,1.17001,1.16828,1.16959,17559 +2020-09-23 07:45,1.16959,1.16977,1.16897,1.16941,12874 +2020-09-23 08:00,1.16943,1.16977,1.16846,1.16932,18130 +2020-09-23 08:15,1.16933,1.16969,1.16825,1.16834,12181 +2020-09-23 08:30,1.16834,1.16967,1.16819,1.16942,15004 +2020-09-23 08:45,1.16943,1.17049,1.16923,1.17041,12341 +2020-09-23 09:00,1.17042,1.17144,1.17011,1.17111,15672 +2020-09-23 09:15,1.17112,1.17188,1.17108,1.17187,12529 +2020-09-23 09:30,1.17185,1.17187,1.17069,1.17104,10447 +2020-09-23 09:45,1.17105,1.17164,1.17099,1.17143,11028 +2020-09-23 10:00,1.17142,1.17152,1.1706,1.17117,10376 +2020-09-23 10:15,1.17117,1.17173,1.171,1.1716,9539 +2020-09-23 10:30,1.17161,1.17162,1.17081,1.17097,8288 +2020-09-23 10:45,1.17097,1.17136,1.17066,1.17081,9004 +2020-09-23 11:00,1.17083,1.17115,1.17058,1.17101,11763 +2020-09-23 11:15,1.171,1.17114,1.17023,1.17062,8501 +2020-09-23 11:30,1.17057,1.17075,1.17001,1.17004,10211 +2020-09-23 11:45,1.16999,1.1702,1.16894,1.16895,14911 +2020-09-23 12:00,1.16897,1.16936,1.16853,1.16915,17061 +2020-09-23 12:15,1.16913,1.16949,1.1688,1.16944,15881 +2020-09-23 12:30,1.16944,1.16963,1.16861,1.16872,15830 +2020-09-23 12:45,1.16873,1.16937,1.16854,1.16914,18358 +2020-09-23 13:00,1.16916,1.16966,1.16868,1.16893,16850 +2020-09-23 13:15,1.16892,1.16906,1.16795,1.16859,16299 +2020-09-23 13:30,1.16859,1.17045,1.16834,1.16918,23237 +2020-09-23 13:45,1.16917,1.16949,1.16791,1.16835,18265 +2020-09-23 14:00,1.16834,1.16836,1.1675,1.16771,13657 +2020-09-23 14:15,1.16772,1.16786,1.16645,1.16704,20984 +2020-09-23 14:30,1.16704,1.16726,1.16641,1.16698,17952 +2020-09-23 14:45,1.16697,1.16746,1.16643,1.16744,27180 +2020-09-23 15:00,1.16743,1.1685,1.16716,1.16801,23618 +2020-09-23 15:15,1.16801,1.16883,1.1677,1.16779,17836 +2020-09-23 15:30,1.1678,1.16797,1.16703,1.16754,16348 +2020-09-23 15:45,1.16753,1.16786,1.16676,1.16779,15175 +2020-09-23 16:00,1.16777,1.16819,1.16725,1.16776,14266 +2020-09-23 16:15,1.16775,1.16824,1.16768,1.16813,12789 +2020-09-23 16:30,1.16813,1.16899,1.16782,1.16892,18490 +2020-09-23 16:45,1.16891,1.16893,1.168,1.16812,9110 +2020-09-23 17:00,1.16811,1.16832,1.16792,1.16803,14168 +2020-09-23 17:15,1.16804,1.16809,1.1676,1.16767,7750 +2020-09-23 17:30,1.16768,1.16814,1.16762,1.16804,10484 +2020-09-23 17:45,1.16805,1.1685,1.16786,1.16808,14749 +2020-09-23 18:00,1.16807,1.16817,1.16769,1.16782,11454 +2020-09-23 18:15,1.16781,1.16781,1.16706,1.16716,17936 +2020-09-23 18:30,1.16715,1.1674,1.16697,1.16713,16021 +2020-09-23 18:45,1.16713,1.16717,1.16568,1.16573,17723 +2020-09-23 19:00,1.16574,1.1661,1.16513,1.16579,19511 +2020-09-23 19:15,1.16579,1.16607,1.1655,1.16559,16011 +2020-09-23 19:30,1.16561,1.16592,1.1655,1.16585,15054 +2020-09-23 19:45,1.16585,1.16641,1.16566,1.16631,12799 +2020-09-23 20:00,1.1663,1.16633,1.16567,1.16569,4260 +2020-09-23 20:15,1.16569,1.16587,1.16548,1.16572,3715 +2020-09-23 20:30,1.16572,1.16598,1.16553,1.16581,3135 +2020-09-23 20:45,1.16582,1.16615,1.16573,1.16595,1823 +2020-09-23 21:00,1.1659,1.16652,1.1659,1.16605,177 +2020-09-23 21:15,1.16603,1.16644,1.16589,1.16601,331 +2020-09-23 21:30,1.16598,1.16618,1.16592,1.1661,374 +2020-09-23 21:45,1.16612,1.16612,1.16576,1.16589,928 +2020-09-23 22:00,1.16594,1.16641,1.16594,1.16626,692 +2020-09-23 22:15,1.16625,1.16628,1.16608,1.16626,2830 +2020-09-23 22:30,1.16629,1.16647,1.16596,1.166,1307 +2020-09-23 22:45,1.166,1.1662,1.16576,1.1662,1121 +2020-09-23 23:00,1.1662,1.16625,1.16585,1.16594,4024 +2020-09-23 23:15,1.16594,1.16599,1.16544,1.1655,6489 +2020-09-23 23:30,1.16553,1.16562,1.16519,1.16554,4101 +2020-09-23 23:45,1.16556,1.16591,1.16555,1.16568,2597 +2020-09-24 00:00,1.16567,1.16666,1.16565,1.16666,9653 +2020-09-24 00:15,1.16671,1.16705,1.16659,1.16696,13116 +2020-09-24 00:30,1.16694,1.1673,1.16684,1.16727,7835 +2020-09-24 00:45,1.16726,1.16731,1.16685,1.1673,7429 +2020-09-24 01:00,1.16729,1.16759,1.16689,1.16719,11824 +2020-09-24 01:15,1.1672,1.16795,1.16719,1.16775,8982 +2020-09-24 01:30,1.16775,1.16797,1.16727,1.16731,8215 +2020-09-24 01:45,1.1673,1.16731,1.16611,1.16615,11443 +2020-09-24 02:00,1.16615,1.16643,1.166,1.16609,10228 +2020-09-24 02:15,1.16609,1.16655,1.16604,1.16624,9744 +2020-09-24 02:30,1.16624,1.16641,1.16582,1.16628,9666 +2020-09-24 02:45,1.16629,1.1664,1.16579,1.16616,7393 +2020-09-24 03:00,1.16615,1.16648,1.16583,1.16641,7747 +2020-09-24 03:15,1.1664,1.16653,1.16599,1.16603,5224 +2020-09-24 03:30,1.16602,1.16621,1.16598,1.16604,6644 +2020-09-24 03:45,1.16604,1.1662,1.16558,1.1656,4876 +2020-09-24 04:00,1.16559,1.16583,1.16557,1.16576,3841 +2020-09-24 04:15,1.16576,1.16577,1.16553,1.16562,3704 +2020-09-24 04:30,1.16561,1.16568,1.16526,1.16535,6421 +2020-09-24 04:45,1.16535,1.16564,1.16524,1.16527,5891 +2020-09-24 05:00,1.16527,1.16558,1.16443,1.16555,8356 +2020-09-24 05:15,1.16555,1.16592,1.16549,1.16558,7012 +2020-09-24 05:30,1.16559,1.16565,1.16527,1.16533,8421 +2020-09-24 05:45,1.16535,1.16599,1.16528,1.16586,7135 +2020-09-24 06:00,1.16585,1.16617,1.1655,1.16574,11116 +2020-09-24 06:15,1.16575,1.16578,1.16506,1.16519,12012 +2020-09-24 06:30,1.16519,1.16546,1.16479,1.1654,12523 +2020-09-24 06:45,1.1654,1.16559,1.16481,1.16527,10552 +2020-09-24 07:00,1.16525,1.16646,1.16504,1.16616,16127 +2020-09-24 07:15,1.16615,1.16616,1.16498,1.16506,13574 +2020-09-24 07:30,1.16506,1.16726,1.16498,1.16709,14887 +2020-09-24 07:45,1.16711,1.16736,1.16659,1.1667,11435 +2020-09-24 08:00,1.16669,1.16682,1.16529,1.16535,11948 +2020-09-24 08:15,1.16535,1.16616,1.16498,1.16612,12227 +2020-09-24 08:30,1.16612,1.16613,1.16504,1.1652,11280 +2020-09-24 08:45,1.16519,1.16583,1.16517,1.16568,11185 +2020-09-24 09:00,1.16569,1.16597,1.16525,1.16557,10521 +2020-09-24 09:15,1.16558,1.16576,1.16471,1.16476,9704 +2020-09-24 09:30,1.16478,1.16504,1.16361,1.16405,11344 +2020-09-24 09:45,1.16404,1.16417,1.1633,1.16416,11644 +2020-09-24 10:00,1.16416,1.16485,1.16416,1.16463,11965 +2020-09-24 10:15,1.16464,1.16483,1.16422,1.16479,9577 +2020-09-24 10:30,1.16479,1.16484,1.16385,1.16391,8944 +2020-09-24 10:45,1.16394,1.16506,1.16385,1.16431,14622 +2020-09-24 11:00,1.16431,1.16543,1.1643,1.16488,11240 +2020-09-24 11:15,1.16488,1.16489,1.16405,1.16453,10467 +2020-09-24 11:30,1.16452,1.16479,1.16361,1.16366,12631 +2020-09-24 11:45,1.16366,1.16431,1.16359,1.16386,16703 +2020-09-24 12:00,1.16386,1.16464,1.16349,1.16443,13016 +2020-09-24 12:15,1.16444,1.16496,1.16433,1.16434,12947 +2020-09-24 12:30,1.16435,1.16452,1.16265,1.16271,15866 +2020-09-24 12:45,1.16271,1.16419,1.16265,1.16394,16272 +2020-09-24 13:00,1.16393,1.16476,1.16338,1.16411,18374 +2020-09-24 13:15,1.16411,1.16496,1.16383,1.16462,22092 +2020-09-24 13:30,1.16463,1.16523,1.16308,1.16332,32159 +2020-09-24 13:45,1.16332,1.16447,1.16312,1.16394,23446 +2020-09-24 14:00,1.16393,1.16568,1.16351,1.16491,27691 +2020-09-24 14:15,1.1649,1.1655,1.16411,1.16468,19457 +2020-09-24 14:30,1.16467,1.16468,1.16361,1.16404,24370 +2020-09-24 14:45,1.16407,1.16447,1.16351,1.16396,24244 +2020-09-24 15:00,1.16398,1.16484,1.16359,1.16481,16092 +2020-09-24 15:15,1.16485,1.16512,1.16428,1.16507,19820 +2020-09-24 15:30,1.16507,1.16591,1.16493,1.16562,21091 +2020-09-24 15:45,1.16563,1.16665,1.16547,1.16651,17482 +2020-09-24 16:00,1.16651,1.16692,1.16625,1.16652,15863 +2020-09-24 16:15,1.16651,1.16676,1.16621,1.16626,15326 +2020-09-24 16:30,1.16627,1.1666,1.16585,1.16638,14433 +2020-09-24 16:45,1.16639,1.16681,1.16617,1.16623,15049 +2020-09-24 17:00,1.16623,1.16706,1.16612,1.16704,12749 +2020-09-24 17:15,1.16707,1.16775,1.16707,1.16755,18427 +2020-09-24 17:30,1.16756,1.16851,1.16691,1.16849,14821 +2020-09-24 17:45,1.16848,1.16869,1.16791,1.16796,17697 +2020-09-24 18:00,1.16795,1.16815,1.16748,1.16757,12367 +2020-09-24 18:15,1.16758,1.16778,1.16727,1.1675,12585 +2020-09-24 18:30,1.1675,1.16799,1.16739,1.16785,10456 +2020-09-24 18:45,1.16784,1.16787,1.16656,1.16663,18584 +2020-09-24 19:00,1.16663,1.16712,1.16636,1.16701,20044 +2020-09-24 19:15,1.167,1.1673,1.16636,1.16659,18309 +2020-09-24 19:30,1.16659,1.16729,1.16648,1.167,17287 +2020-09-24 19:45,1.16699,1.16745,1.16683,1.16688,14389 +2020-09-24 20:00,1.16688,1.16744,1.16677,1.16722,3551 +2020-09-24 20:15,1.16722,1.1674,1.16696,1.16728,2088 +2020-09-24 20:30,1.16729,1.16733,1.16657,1.16676,2206 +2020-09-24 20:45,1.16675,1.16722,1.16658,1.16708,841 +2020-09-24 21:00,1.16706,1.16766,1.16672,1.16707,181 +2020-09-24 21:15,1.16704,1.1673,1.16689,1.16715,124 +2020-09-24 21:30,1.16715,1.16715,1.16694,1.16711,96 +2020-09-24 21:45,1.16711,1.16725,1.1669,1.1669,26 +2020-09-24 22:00,1.16687,1.16736,1.16687,1.16714,1689 +2020-09-24 22:15,1.16715,1.16726,1.16698,1.16725,2639 +2020-09-24 22:30,1.16725,1.16744,1.16721,1.16723,2652 +2020-09-24 22:45,1.16722,1.16742,1.16717,1.16723,1324 +2020-09-24 23:00,1.16724,1.16735,1.16699,1.16725,2772 +2020-09-24 23:15,1.16724,1.16759,1.16719,1.16748,2839 +2020-09-24 23:30,1.1675,1.16771,1.16746,1.16751,3694 +2020-09-24 23:45,1.1675,1.16757,1.16725,1.16735,2206 +2020-09-25 00:00,1.16735,1.16747,1.16665,1.16704,6649 +2020-09-25 00:15,1.16703,1.16727,1.16663,1.1667,6031 +2020-09-25 00:30,1.16672,1.16688,1.16663,1.16674,4117 +2020-09-25 00:45,1.16674,1.16688,1.16642,1.16678,7022 +2020-09-25 01:00,1.16677,1.16693,1.16626,1.16669,7649 +2020-09-25 01:15,1.16669,1.16743,1.16665,1.1672,8371 +2020-09-25 01:30,1.16719,1.1673,1.1668,1.16707,9343 +2020-09-25 01:45,1.16709,1.16731,1.16666,1.16674,6532 +2020-09-25 02:00,1.16674,1.16701,1.16649,1.16685,6266 +2020-09-25 02:15,1.16684,1.16721,1.16674,1.16699,5301 +2020-09-25 02:30,1.16699,1.16699,1.16643,1.1666,5971 +2020-09-25 02:45,1.16662,1.16689,1.16656,1.16667,5024 +2020-09-25 03:00,1.16667,1.16682,1.16652,1.1667,6094 +2020-09-25 03:15,1.16671,1.16692,1.16669,1.16691,7873 +2020-09-25 03:30,1.16689,1.16694,1.16659,1.16664,5543 +2020-09-25 03:45,1.16664,1.16665,1.16628,1.16649,6122 +2020-09-25 04:00,1.16648,1.16649,1.16619,1.16631,7847 +2020-09-25 04:15,1.16632,1.16654,1.1663,1.1664,6243 +2020-09-25 04:30,1.16641,1.16667,1.16628,1.16634,5657 +2020-09-25 04:45,1.16634,1.16684,1.16632,1.16677,4609 +2020-09-25 05:00,1.16677,1.16696,1.16654,1.16687,4210 +2020-09-25 05:15,1.16688,1.16718,1.16667,1.16709,4078 +2020-09-25 05:30,1.16708,1.16718,1.16696,1.16712,6235 +2020-09-25 05:45,1.16711,1.16716,1.16664,1.16682,6745 +2020-09-25 06:00,1.16682,1.16713,1.16662,1.16682,8627 +2020-09-25 06:15,1.16682,1.1675,1.16643,1.16748,9453 +2020-09-25 06:30,1.16748,1.16765,1.16716,1.16738,7976 +2020-09-25 06:45,1.16739,1.16791,1.16736,1.16763,13483 +2020-09-25 07:00,1.16761,1.16761,1.16639,1.1674,22660 +2020-09-25 07:15,1.16741,1.16845,1.16721,1.16841,21718 +2020-09-25 07:30,1.16841,1.1685,1.16747,1.16759,18377 +2020-09-25 07:45,1.16759,1.16784,1.16701,1.16768,15788 +2020-09-25 08:00,1.16768,1.16791,1.16629,1.16651,12709 +2020-09-25 08:15,1.16651,1.16673,1.16533,1.16553,12085 +2020-09-25 08:30,1.16551,1.16578,1.16514,1.16542,14218 +2020-09-25 08:45,1.16541,1.16606,1.1653,1.16558,11445 +2020-09-25 09:00,1.16556,1.16558,1.16479,1.16526,12324 +2020-09-25 09:15,1.16525,1.16556,1.16453,1.16509,14576 +2020-09-25 09:30,1.1651,1.1654,1.16389,1.16442,10685 +2020-09-25 09:45,1.16443,1.16452,1.16384,1.16438,15858 +2020-09-25 10:00,1.16435,1.16467,1.16392,1.16439,13863 +2020-09-25 10:15,1.16438,1.16461,1.16407,1.16436,10392 +2020-09-25 10:30,1.16435,1.16526,1.16419,1.16438,9984 +2020-09-25 10:45,1.16437,1.1651,1.16422,1.16438,12317 +2020-09-25 11:00,1.16439,1.1645,1.16311,1.16373,18987 +2020-09-25 11:15,1.16372,1.16388,1.16316,1.16374,15700 +2020-09-25 11:30,1.16373,1.16423,1.16328,1.16417,15799 +2020-09-25 11:45,1.16417,1.16423,1.16275,1.1631,15507 +2020-09-25 12:00,1.16311,1.1637,1.16299,1.16339,12894 +2020-09-25 12:15,1.1634,1.16368,1.16286,1.16305,10094 +2020-09-25 12:30,1.16305,1.16408,1.16302,1.16393,9150 +2020-09-25 12:45,1.16393,1.1644,1.16336,1.16367,11237 +2020-09-25 13:00,1.16368,1.16377,1.16279,1.16321,11611 +2020-09-25 13:15,1.1632,1.16357,1.16257,1.16333,12087 +2020-09-25 13:30,1.16333,1.16394,1.16271,1.1636,20223 +2020-09-25 13:45,1.16361,1.16375,1.16284,1.16342,18135 +2020-09-25 14:00,1.16342,1.16354,1.16145,1.1617,21120 +2020-09-25 14:15,1.1617,1.16303,1.16158,1.16265,23573 +2020-09-25 14:30,1.16265,1.16331,1.16216,1.1633,22859 +2020-09-25 14:45,1.1633,1.1633,1.16154,1.16186,21568 +2020-09-25 15:00,1.16188,1.16233,1.16121,1.16139,25347 +2020-09-25 15:15,1.16138,1.16222,1.1613,1.16166,15819 +2020-09-25 15:30,1.16166,1.16203,1.16124,1.16156,20484 +2020-09-25 15:45,1.16157,1.16234,1.16152,1.16174,16631 +2020-09-25 16:00,1.16175,1.16251,1.16172,1.162,18952 +2020-09-25 16:15,1.162,1.16201,1.16149,1.16161,12513 +2020-09-25 16:30,1.1616,1.16235,1.1615,1.16224,18157 +2020-09-25 16:45,1.16225,1.16262,1.1619,1.16192,15615 +2020-09-25 17:00,1.16192,1.16236,1.16154,1.16218,12586 +2020-09-25 17:15,1.16217,1.16247,1.16205,1.16219,13144 +2020-09-25 17:30,1.16221,1.16266,1.16213,1.16259,9725 +2020-09-25 17:45,1.16261,1.16277,1.16242,1.16261,9999 +2020-09-25 18:00,1.16259,1.16291,1.16251,1.16267,13919 +2020-09-25 18:15,1.16268,1.16294,1.16267,1.16288,8631 +2020-09-25 18:30,1.16286,1.16295,1.16236,1.16246,10366 +2020-09-25 18:45,1.16247,1.16271,1.16216,1.16221,8036 +2020-09-25 19:00,1.16221,1.16299,1.1622,1.16292,9312 +2020-09-25 19:15,1.16293,1.16352,1.16289,1.16347,11084 +2020-09-25 19:30,1.16347,1.16348,1.16278,1.16288,7980 +2020-09-25 19:45,1.16287,1.16322,1.16254,1.1626,10115 +2020-09-25 20:00,1.16259,1.16288,1.16242,1.16282,9531 +2020-09-25 20:15,1.16281,1.16296,1.16265,1.16273,12099 +2020-09-25 20:30,1.16274,1.16327,1.1627,1.16302,3177 +2020-09-25 20:45,1.16307,1.16325,1.16277,1.16277,1295 +2020-09-27 21:00,1.16271,1.16271,1.16206,1.16223,490 +2020-09-27 21:15,1.16224,1.16267,1.16223,1.16234,207 +2020-09-27 21:30,1.16234,1.16276,1.16231,1.1627,109 +2020-09-27 21:45,1.16258,1.16265,1.1622,1.16265,40 +2020-09-27 22:00,1.16265,1.16375,1.16264,1.16364,1503 +2020-09-27 22:15,1.16365,1.16377,1.16347,1.16361,447 +2020-09-27 22:30,1.16361,1.16363,1.16327,1.16355,1086 +2020-09-27 22:45,1.16355,1.16359,1.1632,1.16326,495 +2020-09-27 23:00,1.16326,1.16338,1.16302,1.16333,1169 +2020-09-27 23:15,1.16332,1.16355,1.16324,1.16344,2699 +2020-09-27 23:30,1.16343,1.16357,1.16321,1.16343,3554 +2020-09-27 23:45,1.16344,1.1636,1.16326,1.16341,2568 +2020-09-28 00:00,1.16341,1.16352,1.16251,1.16286,7741 +2020-09-28 00:15,1.16285,1.16353,1.16272,1.16335,7890 +2020-09-28 00:30,1.16333,1.16342,1.16296,1.16307,5028 +2020-09-28 00:45,1.16306,1.16312,1.1615,1.16162,8353 +2020-09-28 01:00,1.16162,1.16236,1.16162,1.1622,8485 +2020-09-28 01:15,1.16221,1.16258,1.16221,1.16254,9101 +2020-09-28 01:30,1.16254,1.16266,1.16224,1.16252,9357 +2020-09-28 01:45,1.16253,1.16313,1.16252,1.16299,10154 +2020-09-28 02:00,1.16298,1.16331,1.16284,1.16329,11234 +2020-09-28 02:15,1.16331,1.16348,1.16322,1.16333,7928 +2020-09-28 02:30,1.16334,1.16371,1.16324,1.16333,8191 +2020-09-28 02:45,1.16333,1.16376,1.16331,1.16346,5973 +2020-09-28 03:00,1.16345,1.16357,1.16334,1.16354,5670 +2020-09-28 03:15,1.16355,1.16377,1.16348,1.16365,5291 +2020-09-28 03:30,1.16365,1.16366,1.16339,1.16353,5041 +2020-09-28 03:45,1.16354,1.16362,1.16341,1.16355,4958 +2020-09-28 04:00,1.16356,1.16374,1.16355,1.1636,3483 +2020-09-28 04:15,1.1636,1.16404,1.16354,1.16398,5230 +2020-09-28 04:30,1.16398,1.16399,1.16371,1.16386,7618 +2020-09-28 04:45,1.16385,1.16396,1.16313,1.16313,11085 +2020-09-28 05:00,1.16314,1.16348,1.16312,1.16335,5528 +2020-09-28 05:15,1.16335,1.16351,1.16325,1.16348,4203 +2020-09-28 05:30,1.16347,1.1637,1.16339,1.16346,5823 +2020-09-28 05:45,1.16347,1.16352,1.16259,1.16289,7726 +2020-09-28 06:00,1.16288,1.16295,1.16251,1.16277,12250 +2020-09-28 06:15,1.16276,1.16369,1.16271,1.16356,10754 +2020-09-28 06:30,1.16356,1.16358,1.16296,1.16297,7844 +2020-09-28 06:45,1.16297,1.1636,1.16261,1.16267,11263 +2020-09-28 07:00,1.16265,1.16311,1.16238,1.16265,18088 +2020-09-28 07:15,1.16264,1.16346,1.16255,1.16291,13343 +2020-09-28 07:30,1.16292,1.16317,1.1624,1.16275,13911 +2020-09-28 07:45,1.16277,1.16306,1.16225,1.16293,11841 +2020-09-28 08:00,1.16292,1.16335,1.16255,1.16276,16073 +2020-09-28 08:15,1.16276,1.16382,1.16265,1.16373,17596 +2020-09-28 08:30,1.16372,1.16456,1.16353,1.16447,21881 +2020-09-28 08:45,1.16447,1.1645,1.16386,1.16409,16360 +2020-09-28 09:00,1.16408,1.16471,1.16375,1.16432,18496 +2020-09-28 09:15,1.16432,1.16493,1.1641,1.16485,17013 +2020-09-28 09:30,1.16485,1.1649,1.1643,1.16461,13110 +2020-09-28 09:45,1.16461,1.16495,1.16426,1.16459,12808 +2020-09-28 10:00,1.1646,1.16577,1.16441,1.16575,17559 +2020-09-28 10:15,1.16574,1.16651,1.16572,1.16648,18798 +2020-09-28 10:30,1.16647,1.16656,1.16581,1.16609,14457 +2020-09-28 10:45,1.16608,1.16621,1.16573,1.16597,13318 +2020-09-28 11:00,1.16597,1.16639,1.16585,1.16613,12896 +2020-09-28 11:15,1.16613,1.16614,1.1654,1.1659,11671 +2020-09-28 11:30,1.16589,1.16699,1.16589,1.16675,14351 +2020-09-28 11:45,1.16676,1.16765,1.16659,1.1675,13620 +2020-09-28 12:00,1.1675,1.16768,1.16638,1.16704,12154 +2020-09-28 12:15,1.16706,1.16752,1.16649,1.16713,19857 +2020-09-28 12:30,1.16716,1.16778,1.167,1.16753,16562 +2020-09-28 12:45,1.16751,1.16754,1.16626,1.1663,14041 +2020-09-28 13:00,1.16632,1.16728,1.16622,1.16727,14169 +2020-09-28 13:15,1.16726,1.16737,1.16666,1.16697,14043 +2020-09-28 13:30,1.16696,1.16799,1.16672,1.16695,22327 +2020-09-28 13:45,1.16696,1.16755,1.16631,1.16701,21617 +2020-09-28 14:00,1.16701,1.16724,1.16603,1.16691,18388 +2020-09-28 14:15,1.16692,1.16717,1.16643,1.16681,19656 +2020-09-28 14:30,1.16681,1.16697,1.16536,1.16581,21050 +2020-09-28 14:45,1.16581,1.16588,1.16426,1.16432,28826 +2020-09-28 15:00,1.16434,1.16556,1.16423,1.16545,21895 +2020-09-28 15:15,1.16546,1.16576,1.16484,1.16546,15634 +2020-09-28 15:30,1.16547,1.16596,1.16525,1.16579,10684 +2020-09-28 15:45,1.16583,1.16612,1.16548,1.16601,16214 +2020-09-28 16:00,1.16601,1.16603,1.16522,1.166,14735 +2020-09-28 16:15,1.16601,1.16603,1.16527,1.16544,14616 +2020-09-28 16:30,1.16548,1.16569,1.16514,1.16565,10998 +2020-09-28 16:45,1.16564,1.16577,1.16553,1.16558,5650 +2020-09-28 17:00,1.16558,1.16567,1.16538,1.1655,8176 +2020-09-28 17:15,1.16551,1.16581,1.16537,1.16581,11218 +2020-09-28 17:30,1.1658,1.16628,1.16575,1.16616,10100 +2020-09-28 17:45,1.16615,1.16662,1.1661,1.16641,8952 +2020-09-28 18:00,1.16641,1.16671,1.16613,1.16647,10309 +2020-09-28 18:15,1.16646,1.16655,1.16623,1.16636,5979 +2020-09-28 18:30,1.16636,1.16679,1.16629,1.16678,11322 +2020-09-28 18:45,1.16677,1.16687,1.16634,1.16637,15634 +2020-09-28 19:00,1.16638,1.16672,1.16621,1.16629,16801 +2020-09-28 19:15,1.1663,1.16667,1.16621,1.16656,14029 +2020-09-28 19:30,1.16657,1.16657,1.1661,1.16644,12448 +2020-09-28 19:45,1.16645,1.16701,1.16631,1.16698,11213 +2020-09-28 20:00,1.16696,1.16713,1.16657,1.16658,8934 +2020-09-28 20:15,1.16659,1.16663,1.16628,1.1663,4637 +2020-09-28 20:30,1.1663,1.16661,1.16608,1.16657,3574 +2020-09-28 20:45,1.16657,1.16674,1.16649,1.1665,1532 +2020-09-28 21:00,1.1665,1.16665,1.16619,1.16629,80 +2020-09-28 21:15,1.16631,1.16654,1.16631,1.1664,34 +2020-09-28 21:30,1.16637,1.1665,1.16614,1.16635,184 +2020-09-28 21:45,1.16637,1.16642,1.16635,1.16638,58 +2020-09-28 22:00,1.16641,1.16653,1.16626,1.16632,1423 +2020-09-28 22:15,1.16632,1.1666,1.1663,1.16659,894 +2020-09-28 22:30,1.16659,1.16676,1.16654,1.16673,2485 +2020-09-28 22:45,1.16673,1.16691,1.16669,1.16689,1286 +2020-09-28 23:00,1.1669,1.16705,1.16677,1.16683,3424 +2020-09-28 23:15,1.16683,1.16709,1.16673,1.16708,2164 +2020-09-28 23:30,1.1671,1.16721,1.16673,1.16702,1833 +2020-09-28 23:45,1.16703,1.16793,1.16703,1.16768,6890 +2020-09-29 00:00,1.16768,1.16823,1.1675,1.16819,12183 +2020-09-29 00:15,1.16819,1.16837,1.16773,1.16792,8334 +2020-09-29 00:30,1.16793,1.16803,1.16761,1.1678,5695 +2020-09-29 00:45,1.1678,1.168,1.16755,1.16767,7490 +2020-09-29 01:00,1.16766,1.16788,1.16697,1.16701,10667 +2020-09-29 01:15,1.16701,1.16736,1.16676,1.16718,6650 +2020-09-29 01:30,1.16719,1.16723,1.16675,1.16684,9466 +2020-09-29 01:45,1.16685,1.167,1.16668,1.16683,6617 +2020-09-29 02:00,1.16684,1.16747,1.16675,1.16738,5938 +2020-09-29 02:15,1.16738,1.16739,1.16695,1.1672,8174 +2020-09-29 02:30,1.16721,1.16722,1.1669,1.16701,8856 +2020-09-29 02:45,1.16702,1.16711,1.16687,1.16706,5217 +2020-09-29 03:00,1.16706,1.1674,1.16705,1.16738,4263 +2020-09-29 03:15,1.16738,1.16766,1.16728,1.16757,6649 +2020-09-29 03:30,1.16757,1.16763,1.1675,1.16763,5521 +2020-09-29 03:45,1.16763,1.16764,1.16735,1.16746,6767 +2020-09-29 04:00,1.16747,1.16762,1.16732,1.16749,4744 +2020-09-29 04:15,1.16751,1.16755,1.16732,1.16733,3961 +2020-09-29 04:30,1.16733,1.16748,1.16713,1.16721,5903 +2020-09-29 04:45,1.16722,1.16761,1.16722,1.1676,3853 +2020-09-29 05:00,1.16761,1.1679,1.16742,1.16743,6599 +2020-09-29 05:15,1.16743,1.16744,1.16699,1.16707,8170 +2020-09-29 05:30,1.16705,1.16718,1.1669,1.16711,6530 +2020-09-29 05:45,1.16711,1.16741,1.16706,1.16713,5991 +2020-09-29 06:00,1.16712,1.16748,1.1667,1.16687,8992 +2020-09-29 06:15,1.16685,1.16726,1.16652,1.16719,6760 +2020-09-29 06:30,1.16718,1.16748,1.1668,1.1672,13645 +2020-09-29 06:45,1.16721,1.16823,1.1671,1.168,19592 +2020-09-29 07:00,1.16799,1.1684,1.16667,1.16704,25043 +2020-09-29 07:15,1.16705,1.16812,1.1669,1.16755,14823 +2020-09-29 07:30,1.16754,1.16812,1.16725,1.16791,12001 +2020-09-29 07:45,1.1679,1.16833,1.16751,1.16811,18026 +2020-09-29 08:00,1.16811,1.16815,1.16656,1.16716,20964 +2020-09-29 08:15,1.16716,1.16791,1.16712,1.16791,15164 +2020-09-29 08:30,1.16794,1.16817,1.16765,1.16816,19915 +2020-09-29 08:45,1.16818,1.16863,1.16775,1.16832,17841 +2020-09-29 09:00,1.16831,1.16946,1.1681,1.169,22310 +2020-09-29 09:15,1.16899,1.16941,1.1687,1.16934,16610 +2020-09-29 09:30,1.16935,1.1697,1.16898,1.1696,17778 +2020-09-29 09:45,1.16961,1.16976,1.16927,1.1693,16473 +2020-09-29 10:00,1.1693,1.16931,1.16871,1.1691,15634 +2020-09-29 10:15,1.16912,1.16937,1.16868,1.16915,14295 +2020-09-29 10:30,1.16915,1.16916,1.16816,1.16817,15000 +2020-09-29 10:45,1.16817,1.16984,1.16816,1.16982,14423 +2020-09-29 11:00,1.16983,1.17144,1.16956,1.17097,21447 +2020-09-29 11:15,1.17097,1.17126,1.17025,1.17034,16583 +2020-09-29 11:30,1.17033,1.17086,1.17006,1.17069,15926 +2020-09-29 11:45,1.17072,1.17079,1.17016,1.17078,12929 +2020-09-29 12:00,1.17079,1.17085,1.17005,1.1702,17623 +2020-09-29 12:15,1.17021,1.17102,1.17006,1.17073,12689 +2020-09-29 12:30,1.17074,1.17089,1.16931,1.17031,17672 +2020-09-29 12:45,1.17032,1.17065,1.16997,1.1703,11157 +2020-09-29 13:00,1.17031,1.17036,1.16949,1.1696,10217 +2020-09-29 13:15,1.16961,1.17074,1.16957,1.17064,12686 +2020-09-29 13:30,1.17064,1.1726,1.17055,1.17218,19486 +2020-09-29 13:45,1.17219,1.17274,1.17219,1.17242,11583 +2020-09-29 14:00,1.17242,1.17345,1.17219,1.17272,16499 +2020-09-29 14:15,1.17271,1.17437,1.17262,1.17381,19860 +2020-09-29 14:30,1.17381,1.17398,1.17279,1.17314,14317 +2020-09-29 14:45,1.17314,1.17353,1.17277,1.1731,12851 +2020-09-29 15:00,1.17309,1.17414,1.17275,1.1735,15106 +2020-09-29 15:15,1.17349,1.1742,1.17336,1.17372,8386 +2020-09-29 15:30,1.17374,1.174,1.17196,1.17196,10719 +2020-09-29 15:45,1.17198,1.17225,1.1716,1.17162,11695 +2020-09-29 16:00,1.17163,1.17192,1.17096,1.17129,17195 +2020-09-29 16:15,1.1713,1.17237,1.17128,1.17236,16605 +2020-09-29 16:30,1.17237,1.17342,1.17232,1.1729,12018 +2020-09-29 16:45,1.1729,1.17421,1.17289,1.17375,12054 +2020-09-29 17:00,1.17375,1.17397,1.17325,1.17332,9372 +2020-09-29 17:15,1.1733,1.17368,1.17318,1.17366,9981 +2020-09-29 17:30,1.17368,1.17384,1.1735,1.1735,7324 +2020-09-29 17:45,1.17351,1.17427,1.1735,1.17412,12763 +2020-09-29 18:00,1.17412,1.17454,1.1741,1.17419,10412 +2020-09-29 18:15,1.17419,1.17455,1.17412,1.1744,9357 +2020-09-29 18:30,1.1744,1.17445,1.17385,1.1739,5447 +2020-09-29 18:45,1.1739,1.17404,1.17365,1.17367,6920 +2020-09-29 19:00,1.17365,1.17399,1.17356,1.17371,11891 +2020-09-29 19:15,1.17373,1.17411,1.17366,1.17401,9353 +2020-09-29 19:30,1.17402,1.1742,1.17393,1.17409,7860 +2020-09-29 19:45,1.17409,1.17443,1.17377,1.17397,7994 +2020-09-29 20:00,1.17398,1.17407,1.17361,1.17405,6746 +2020-09-29 20:15,1.17407,1.17408,1.17399,1.17406,2980 +2020-09-29 20:30,1.17408,1.17446,1.17406,1.17432,2649 +2020-09-29 20:45,1.17433,1.17443,1.17421,1.17426,2026 +2020-09-29 21:00,1.1743,1.17438,1.1739,1.17394,232 +2020-09-29 21:15,1.17403,1.17422,1.17383,1.17397,123 +2020-09-29 21:30,1.17398,1.17399,1.17383,1.17395,62 +2020-09-29 21:45,1.17396,1.17415,1.17396,1.174,41 +2020-09-29 22:00,1.17402,1.17436,1.17395,1.17423,1017 +2020-09-29 22:15,1.17423,1.17434,1.17414,1.17432,1270 +2020-09-29 22:30,1.17432,1.17443,1.17427,1.17442,787 +2020-09-29 22:45,1.17442,1.17447,1.17431,1.17442,2335 +2020-09-29 23:00,1.17445,1.1745,1.1743,1.17439,2868 +2020-09-29 23:15,1.17439,1.17457,1.17438,1.17451,2048 +2020-09-29 23:30,1.1745,1.1745,1.17414,1.1742,2978 +2020-09-29 23:45,1.1742,1.1743,1.17407,1.17414,4504 +2020-09-30 00:00,1.17414,1.17483,1.17412,1.17454,6722 +2020-09-30 00:15,1.17455,1.17484,1.17448,1.17475,9766 +2020-09-30 00:30,1.17477,1.17481,1.17446,1.17447,6121 +2020-09-30 00:45,1.17445,1.17446,1.1736,1.17379,9469 +2020-09-30 01:00,1.17378,1.17429,1.17362,1.17414,8722 +2020-09-30 01:15,1.17413,1.17486,1.17413,1.17483,10414 +2020-09-30 01:30,1.17483,1.17491,1.17453,1.17474,9694 +2020-09-30 01:45,1.17475,1.17499,1.17448,1.17453,11016 +2020-09-30 02:00,1.17454,1.17484,1.17412,1.17479,9399 +2020-09-30 02:15,1.17479,1.17518,1.17466,1.17482,6289 +2020-09-30 02:30,1.17482,1.17548,1.1748,1.17495,8092 +2020-09-30 02:45,1.17496,1.17509,1.17447,1.17459,8048 +2020-09-30 03:00,1.17457,1.17462,1.17296,1.17302,11351 +2020-09-30 03:15,1.17303,1.17363,1.17302,1.17352,12915 +2020-09-30 03:30,1.17354,1.17369,1.17277,1.17299,9728 +2020-09-30 03:45,1.17299,1.17326,1.17283,1.17291,6565 +2020-09-30 04:00,1.1729,1.17333,1.17286,1.17323,6537 +2020-09-30 04:15,1.17324,1.17334,1.17299,1.17332,8469 +2020-09-30 04:30,1.17331,1.17369,1.17323,1.17356,8034 +2020-09-30 04:45,1.17356,1.17369,1.17334,1.17343,5092 +2020-09-30 05:00,1.17342,1.1738,1.17305,1.17363,9070 +2020-09-30 05:15,1.17363,1.17373,1.1734,1.17356,8599 +2020-09-30 05:30,1.17356,1.17356,1.17305,1.17318,7751 +2020-09-30 05:45,1.17318,1.17334,1.17288,1.1732,7328 +2020-09-30 06:00,1.17319,1.17332,1.17231,1.17268,14575 +2020-09-30 06:15,1.17267,1.17294,1.17227,1.17258,15395 +2020-09-30 06:30,1.1726,1.17319,1.1726,1.17297,15859 +2020-09-30 06:45,1.17297,1.1736,1.17259,1.17341,19287 +2020-09-30 07:00,1.17342,1.17428,1.17329,1.1738,21953 +2020-09-30 07:15,1.17379,1.17383,1.17203,1.17233,17607 +2020-09-30 07:30,1.17234,1.17311,1.17224,1.17265,22362 +2020-09-30 07:45,1.17264,1.17336,1.17217,1.17327,12517 +2020-09-30 08:00,1.1733,1.17375,1.1727,1.17274,13670 +2020-09-30 08:15,1.17274,1.17289,1.17222,1.17249,14902 +2020-09-30 08:30,1.17252,1.17303,1.17165,1.17165,19009 +2020-09-30 08:45,1.17166,1.17174,1.17061,1.17097,17688 +2020-09-30 09:00,1.17096,1.17109,1.17005,1.17005,17432 +2020-09-30 09:15,1.17008,1.17042,1.16938,1.16967,14601 +2020-09-30 09:30,1.16969,1.17036,1.16967,1.17022,18403 +2020-09-30 09:45,1.1702,1.17093,1.17,1.17085,13797 +2020-09-30 10:00,1.17086,1.17086,1.16956,1.17072,16469 +2020-09-30 10:15,1.17069,1.1712,1.17053,1.17061,16646 +2020-09-30 10:30,1.1706,1.17173,1.17043,1.17139,20357 +2020-09-30 10:45,1.17138,1.17189,1.17092,1.17103,18051 +2020-09-30 11:00,1.17101,1.17137,1.17079,1.17094,16046 +2020-09-30 11:15,1.17094,1.17116,1.1705,1.17094,16448 +2020-09-30 11:30,1.17093,1.17109,1.1706,1.17101,13680 +2020-09-30 11:45,1.171,1.17137,1.17063,1.17071,16203 +2020-09-30 12:00,1.1707,1.17081,1.16987,1.17073,17322 +2020-09-30 12:15,1.17073,1.17174,1.17065,1.17154,19900 +2020-09-30 12:30,1.1715,1.17163,1.17066,1.17131,16974 +2020-09-30 12:45,1.17131,1.17186,1.1708,1.17096,12136 +2020-09-30 13:00,1.17096,1.17127,1.17017,1.17123,16600 +2020-09-30 13:15,1.17123,1.17156,1.17051,1.17078,18015 +2020-09-30 13:30,1.17078,1.1709,1.16884,1.16884,21855 +2020-09-30 13:45,1.16887,1.16985,1.16847,1.16958,24636 +2020-09-30 14:00,1.1696,1.17176,1.16946,1.17142,25672 +2020-09-30 14:15,1.17144,1.17322,1.17122,1.17273,25994 +2020-09-30 14:30,1.17271,1.17323,1.17213,1.17263,31527 +2020-09-30 14:45,1.17263,1.17408,1.17176,1.17284,32172 +2020-09-30 15:00,1.17282,1.17504,1.17219,1.17473,32296 +2020-09-30 15:15,1.17471,1.17516,1.17394,1.17436,22642 +2020-09-30 15:30,1.17435,1.17456,1.17225,1.17277,23446 +2020-09-30 15:45,1.17276,1.17364,1.17215,1.1722,19019 +2020-09-30 16:00,1.1722,1.17249,1.17057,1.17157,23715 +2020-09-30 16:15,1.17156,1.17198,1.17115,1.17171,19081 +2020-09-30 16:30,1.17171,1.17192,1.17119,1.1713,23770 +2020-09-30 16:45,1.1713,1.17221,1.17102,1.17216,21484 +2020-09-30 17:00,1.17215,1.17217,1.17125,1.17136,23419 +2020-09-30 17:15,1.17138,1.17145,1.17099,1.17101,16515 +2020-09-30 17:30,1.171,1.1726,1.171,1.17255,18406 +2020-09-30 17:45,1.17254,1.17282,1.17216,1.1724,15941 +2020-09-30 18:00,1.17239,1.17242,1.17192,1.17221,11306 +2020-09-30 18:15,1.17221,1.17271,1.17193,1.17247,22245 +2020-09-30 18:30,1.17246,1.17252,1.17147,1.17169,24234 +2020-09-30 18:45,1.17169,1.17224,1.17129,1.17165,24120 +2020-09-30 19:00,1.17168,1.17213,1.17136,1.17174,26380 +2020-09-30 19:15,1.17173,1.17193,1.1711,1.17181,23229 +2020-09-30 19:30,1.1718,1.17244,1.17161,1.17233,18612 +2020-09-30 19:45,1.17233,1.17273,1.17202,1.17227,15541 +2020-09-30 20:00,1.17228,1.17255,1.17196,1.17213,10847 +2020-09-30 20:15,1.17212,1.17269,1.17207,1.17236,7525 +2020-09-30 20:30,1.17236,1.17273,1.17229,1.1725,3407 +2020-09-30 20:45,1.17249,1.17255,1.17201,1.1721,4825 +2020-09-30 21:00,1.1721,1.17236,1.1721,1.17232,247 +2020-09-30 21:15,1.17219,1.17259,1.17213,1.17223,316 +2020-09-30 21:30,1.17223,1.17228,1.17197,1.17219,74 +2020-09-30 21:45,1.17212,1.17262,1.1721,1.17232,98 +2020-09-30 22:00,1.17233,1.17291,1.17224,1.17281,2186 +2020-09-30 22:15,1.17283,1.17307,1.17268,1.173,2111 +2020-09-30 22:30,1.173,1.17309,1.17288,1.1729,1267 +2020-09-30 22:45,1.17289,1.17312,1.17287,1.17301,1282 +2020-09-30 23:00,1.17303,1.17304,1.17267,1.17284,3861 +2020-09-30 23:15,1.17284,1.17318,1.17282,1.17293,2101 +2020-09-30 23:30,1.17294,1.17296,1.17242,1.17242,1454 +2020-09-30 23:45,1.17244,1.17247,1.17228,1.17232,4381 +2020-10-01 00:00,1.17234,1.17279,1.17222,1.17262,11053 +2020-10-01 00:15,1.17262,1.17271,1.17236,1.17237,6887 +2020-10-01 00:30,1.17237,1.17265,1.17225,1.17248,7810 +2020-10-01 00:45,1.17246,1.17247,1.17171,1.17182,12665 +2020-10-01 01:00,1.17182,1.17244,1.17177,1.17241,8902 +2020-10-01 01:15,1.17243,1.17274,1.17214,1.17268,10325 +2020-10-01 01:30,1.17271,1.17435,1.17271,1.17396,14834 +2020-10-01 01:45,1.17396,1.174,1.17327,1.17339,6316 +2020-10-01 02:00,1.1734,1.17368,1.17335,1.17352,5189 +2020-10-01 02:15,1.17352,1.17373,1.1733,1.17368,7461 +2020-10-01 02:30,1.17368,1.17387,1.17351,1.17358,4767 +2020-10-01 02:45,1.17356,1.17423,1.17355,1.17408,5082 +2020-10-01 03:00,1.17408,1.17462,1.17403,1.17461,4202 +2020-10-01 03:15,1.1746,1.17474,1.17417,1.17422,4436 +2020-10-01 03:30,1.17421,1.17442,1.17421,1.17437,1946 +2020-10-01 03:45,1.17438,1.1744,1.17386,1.17435,5258 +2020-10-01 04:00,1.17436,1.17436,1.17408,1.17422,2996 +2020-10-01 04:15,1.17422,1.17442,1.17401,1.17414,3143 +2020-10-01 04:30,1.17414,1.17452,1.17412,1.17447,4498 +2020-10-01 04:45,1.17447,1.17484,1.17447,1.17472,4126 +2020-10-01 05:00,1.1747,1.17474,1.17426,1.17442,4860 +2020-10-01 05:15,1.17441,1.17444,1.17423,1.17438,4343 +2020-10-01 05:30,1.17439,1.17476,1.17429,1.17476,7060 +2020-10-01 05:45,1.17475,1.17511,1.17451,1.17474,12396 +2020-10-01 06:00,1.17474,1.17535,1.17456,1.17478,15120 +2020-10-01 06:15,1.17478,1.1753,1.17478,1.17502,10645 +2020-10-01 06:30,1.175,1.17519,1.17457,1.17457,8967 +2020-10-01 06:45,1.17461,1.17576,1.1744,1.17531,14989 +2020-10-01 07:00,1.17534,1.17573,1.17394,1.17426,19647 +2020-10-01 07:15,1.17425,1.1749,1.17403,1.17411,15672 +2020-10-01 07:30,1.17411,1.1742,1.17231,1.1725,30141 +2020-10-01 07:45,1.1725,1.17377,1.17231,1.17363,20682 +2020-10-01 08:00,1.17361,1.17427,1.17318,1.17393,21359 +2020-10-01 08:15,1.17393,1.17398,1.17333,1.17333,24606 +2020-10-01 08:30,1.17335,1.17337,1.17221,1.17303,35946 +2020-10-01 08:45,1.17305,1.17323,1.17239,1.17243,19023 +2020-10-01 09:00,1.17244,1.17306,1.17236,1.17306,28581 +2020-10-01 09:15,1.17306,1.17346,1.17261,1.17298,21199 +2020-10-01 09:30,1.17303,1.17425,1.17285,1.17389,18592 +2020-10-01 09:45,1.17388,1.17492,1.17356,1.17477,14054 +2020-10-01 10:00,1.17478,1.17508,1.17452,1.17457,15663 +2020-10-01 10:15,1.17457,1.17497,1.17441,1.17446,16879 +2020-10-01 10:30,1.17446,1.17447,1.17393,1.17434,13317 +2020-10-01 10:45,1.17432,1.17467,1.17372,1.17432,18413 +2020-10-01 11:00,1.17432,1.17578,1.17412,1.17539,22311 +2020-10-01 11:15,1.17538,1.17651,1.17474,1.17545,31762 +2020-10-01 11:30,1.17546,1.17696,1.17542,1.17602,26944 +2020-10-01 11:45,1.17603,1.17657,1.17598,1.17628,21668 +2020-10-01 12:00,1.17628,1.17667,1.1751,1.17515,17737 +2020-10-01 12:15,1.17515,1.17644,1.17511,1.17641,15192 +2020-10-01 12:30,1.17639,1.17675,1.1759,1.17617,24879 +2020-10-01 12:45,1.17617,1.17643,1.17532,1.17546,17307 +2020-10-01 13:00,1.17546,1.17591,1.17455,1.17487,33522 +2020-10-01 13:15,1.17486,1.17489,1.17349,1.17379,26102 +2020-10-01 13:30,1.17379,1.17499,1.17377,1.17446,26989 +2020-10-01 13:45,1.17448,1.17464,1.17312,1.1738,26595 +2020-10-01 14:00,1.17386,1.17454,1.173,1.1742,29279 +2020-10-01 14:15,1.17419,1.17453,1.17212,1.17236,27252 +2020-10-01 14:30,1.17236,1.17411,1.17232,1.17376,29689 +2020-10-01 14:45,1.17378,1.1746,1.17325,1.17363,26752 +2020-10-01 15:00,1.17363,1.17449,1.17338,1.17429,36214 +2020-10-01 15:15,1.17428,1.17483,1.17362,1.17473,22931 +2020-10-01 15:30,1.17473,1.1754,1.17439,1.17532,22538 +2020-10-01 15:45,1.17534,1.17558,1.17494,1.17515,21296 +2020-10-01 16:00,1.17513,1.17528,1.17388,1.17413,24237 +2020-10-01 16:15,1.17413,1.1749,1.17381,1.17485,24774 +2020-10-01 16:30,1.17487,1.17499,1.17432,1.17445,12381 +2020-10-01 16:45,1.17446,1.17458,1.17413,1.17445,13046 +2020-10-01 17:00,1.17446,1.17459,1.17415,1.1743,9333 +2020-10-01 17:15,1.17431,1.17456,1.17417,1.1744,13488 +2020-10-01 17:30,1.1744,1.17458,1.17413,1.17423,10064 +2020-10-01 17:45,1.17423,1.17436,1.17385,1.17409,13410 +2020-10-01 18:00,1.17409,1.17435,1.17348,1.17375,28153 +2020-10-01 18:15,1.17375,1.17431,1.17364,1.17418,16285 +2020-10-01 18:30,1.17418,1.17441,1.17399,1.17441,10081 +2020-10-01 18:45,1.17439,1.1747,1.17427,1.1746,11255 +2020-10-01 19:00,1.1746,1.17486,1.17427,1.17447,12293 +2020-10-01 19:15,1.17447,1.17462,1.17431,1.17445,8930 +2020-10-01 19:30,1.17445,1.17451,1.17415,1.17428,13280 +2020-10-01 19:45,1.17427,1.175,1.17416,1.17495,13065 +2020-10-01 20:00,1.17493,1.17506,1.17472,1.17476,8435 +2020-10-01 20:15,1.17476,1.17485,1.17446,1.1745,3853 +2020-10-01 20:30,1.17449,1.17463,1.17441,1.17462,2431 +2020-10-01 20:45,1.17461,1.17484,1.17435,1.1746,2415 +2020-10-01 21:00,1.17489,1.17489,1.1745,1.17451,104 +2020-10-01 21:15,1.17451,1.17463,1.1745,1.1745,55 +2020-10-01 21:30,1.1745,1.1745,1.17445,1.17445,322 +2020-10-01 21:45,1.17445,1.17454,1.17424,1.17445,482 +2020-10-01 22:00,1.17445,1.17476,1.17445,1.17458,1783 +2020-10-01 22:15,1.1746,1.17478,1.17444,1.1745,2033 +2020-10-01 22:30,1.17449,1.17464,1.1743,1.17442,2999 +2020-10-01 22:45,1.1744,1.17451,1.17433,1.17446,1928 +2020-10-01 23:00,1.17446,1.1745,1.17433,1.17444,2644 +2020-10-01 23:15,1.17444,1.17448,1.17434,1.17437,1731 +2020-10-01 23:30,1.17439,1.17446,1.17429,1.17439,1804 +2020-10-01 23:45,1.17437,1.17446,1.17434,1.17439,1931 +2020-10-02 00:00,1.17439,1.17445,1.17368,1.17379,8700 +2020-10-02 00:15,1.17379,1.174,1.17371,1.17396,3410 +2020-10-02 00:30,1.17394,1.17395,1.17335,1.17345,7772 +2020-10-02 00:45,1.17344,1.1737,1.17335,1.17347,10667 +2020-10-02 01:00,1.17346,1.1737,1.17306,1.1734,8028 +2020-10-02 01:15,1.17341,1.17363,1.17324,1.17344,10074 +2020-10-02 01:30,1.17345,1.17359,1.17324,1.17326,8592 +2020-10-02 01:45,1.17326,1.1733,1.173,1.17314,14568 +2020-10-02 02:00,1.17316,1.17316,1.17273,1.17296,10296 +2020-10-02 02:15,1.17297,1.17316,1.17289,1.17313,6395 +2020-10-02 02:30,1.17312,1.1733,1.17262,1.17275,8715 +2020-10-02 02:45,1.17277,1.17285,1.1714,1.17196,16619 +2020-10-02 03:00,1.17196,1.17215,1.17165,1.17173,14119 +2020-10-02 03:15,1.17172,1.17198,1.17164,1.17193,10566 +2020-10-02 03:30,1.17193,1.17203,1.17167,1.17171,12924 +2020-10-02 03:45,1.1717,1.172,1.1716,1.17161,7269 +2020-10-02 04:00,1.1716,1.17175,1.17136,1.17143,8913 +2020-10-02 04:15,1.17144,1.1716,1.17136,1.17147,9829 +2020-10-02 04:30,1.17147,1.17179,1.17142,1.1716,8998 +2020-10-02 04:45,1.17161,1.17166,1.1703,1.17059,15623 +2020-10-02 05:00,1.17059,1.17097,1.16956,1.17087,28483 +2020-10-02 05:15,1.17086,1.17189,1.17084,1.17166,24925 +2020-10-02 05:30,1.17166,1.1732,1.17117,1.17299,25146 +2020-10-02 05:45,1.17297,1.17313,1.1718,1.17221,27765 +2020-10-02 06:00,1.17223,1.17305,1.17196,1.17275,30412 +2020-10-02 06:15,1.17274,1.17373,1.17219,1.17354,26777 +2020-10-02 06:30,1.17354,1.17378,1.17291,1.17314,23685 +2020-10-02 06:45,1.17315,1.17386,1.17305,1.17371,21803 +2020-10-02 07:00,1.17373,1.17416,1.17325,1.17371,21852 +2020-10-02 07:15,1.1737,1.17384,1.17199,1.17209,26860 +2020-10-02 07:30,1.17208,1.17317,1.17158,1.17183,29368 +2020-10-02 07:45,1.17183,1.1725,1.1716,1.17231,26623 +2020-10-02 08:00,1.17229,1.17245,1.17161,1.17216,19359 +2020-10-02 08:15,1.17218,1.17304,1.17194,1.17249,20749 +2020-10-02 08:30,1.17248,1.17315,1.17172,1.1722,25461 +2020-10-02 08:45,1.17219,1.17241,1.17114,1.17135,21728 +2020-10-02 09:00,1.17136,1.17194,1.17101,1.17157,19028 +2020-10-02 09:15,1.17158,1.1716,1.17098,1.17102,12517 +2020-10-02 09:30,1.17105,1.17194,1.17086,1.17191,14643 +2020-10-02 09:45,1.1719,1.17258,1.17175,1.17189,8296 +2020-10-02 10:00,1.1719,1.17241,1.17158,1.17195,10987 +2020-10-02 10:15,1.17196,1.17215,1.17102,1.17196,17213 +2020-10-02 10:30,1.17196,1.17232,1.17159,1.17219,18637 +2020-10-02 10:45,1.17218,1.17234,1.17126,1.17126,18112 +2020-10-02 11:00,1.17128,1.17151,1.17023,1.17117,18651 +2020-10-02 11:15,1.17117,1.17177,1.171,1.17176,15922 +2020-10-02 11:30,1.17175,1.17231,1.17151,1.17172,17095 +2020-10-02 11:45,1.17173,1.17247,1.17168,1.17239,20651 +2020-10-02 12:00,1.17239,1.17309,1.17223,1.17302,16223 +2020-10-02 12:15,1.17303,1.1731,1.1724,1.17264,13652 +2020-10-02 12:30,1.17267,1.17337,1.17089,1.17106,16845 +2020-10-02 12:45,1.17106,1.17139,1.16986,1.17082,17523 +2020-10-02 13:00,1.17082,1.1709,1.16996,1.17032,25162 +2020-10-02 13:15,1.17031,1.1712,1.17019,1.17084,19518 +2020-10-02 13:30,1.17085,1.17215,1.17043,1.17197,24793 +2020-10-02 13:45,1.17198,1.17207,1.17113,1.17123,22698 +2020-10-02 14:00,1.17123,1.17247,1.17123,1.17181,22085 +2020-10-02 14:15,1.1718,1.17211,1.17046,1.17102,19386 +2020-10-02 14:30,1.17104,1.17186,1.17051,1.17157,21632 +2020-10-02 14:45,1.17155,1.17193,1.17102,1.1714,23653 +2020-10-02 15:00,1.1714,1.17211,1.17117,1.17143,21772 +2020-10-02 15:15,1.17143,1.17197,1.17105,1.17183,16303 +2020-10-02 15:30,1.17182,1.17189,1.1709,1.17096,19373 +2020-10-02 15:45,1.17095,1.17117,1.17051,1.17056,15207 +2020-10-02 16:00,1.17055,1.17124,1.17016,1.17103,21719 +2020-10-02 16:15,1.17102,1.17171,1.17096,1.17161,23502 +2020-10-02 16:30,1.17161,1.17208,1.17134,1.17206,20501 +2020-10-02 16:45,1.17207,1.1722,1.17171,1.17176,15250 +2020-10-02 17:00,1.17175,1.17199,1.1717,1.17186,12939 +2020-10-02 17:15,1.17187,1.17214,1.17161,1.17208,11872 +2020-10-02 17:30,1.17209,1.17211,1.17145,1.17161,16561 +2020-10-02 17:45,1.17162,1.17165,1.17132,1.17139,15532 +2020-10-02 18:00,1.17141,1.1718,1.17138,1.17166,15522 +2020-10-02 18:15,1.17167,1.17193,1.17162,1.17172,16722 +2020-10-02 18:30,1.17171,1.17189,1.17151,1.17157,14661 +2020-10-02 18:45,1.17158,1.17169,1.17117,1.17122,13612 +2020-10-02 19:00,1.17122,1.17145,1.17106,1.1713,17452 +2020-10-02 19:15,1.17132,1.17151,1.17111,1.1715,9338 +2020-10-02 19:30,1.17151,1.17162,1.17139,1.17146,8705 +2020-10-02 19:45,1.17146,1.17163,1.17095,1.17116,10432 +2020-10-02 20:00,1.17119,1.17142,1.17104,1.17141,8598 +2020-10-02 20:15,1.17141,1.17152,1.17125,1.17138,4610 +2020-10-02 20:30,1.17138,1.17164,1.17138,1.17162,5601 +2020-10-02 20:45,1.17163,1.17171,1.1715,1.17157,8820 +2020-10-04 21:00,1.1711,1.17146,1.17099,1.17138,311 +2020-10-04 21:15,1.17142,1.17143,1.17137,1.17139,47 +2020-10-04 21:30,1.17137,1.17153,1.17137,1.17148,101 +2020-10-04 21:45,1.17149,1.17154,1.17053,1.17122,219 +2020-10-04 22:00,1.17121,1.17172,1.17118,1.17128,4788 +2020-10-04 22:15,1.17128,1.17138,1.17114,1.17126,2599 +2020-10-04 22:30,1.17125,1.17132,1.17087,1.17093,962 +2020-10-04 22:45,1.17092,1.17158,1.17092,1.17147,1938 +2020-10-04 23:00,1.17149,1.17175,1.17148,1.17166,4080 +2020-10-04 23:15,1.17166,1.17176,1.17151,1.17166,5305 +2020-10-04 23:30,1.17165,1.1719,1.17152,1.17153,8217 +2020-10-04 23:45,1.17154,1.17201,1.17129,1.17195,5971 +2020-10-05 00:00,1.17195,1.17242,1.17176,1.17198,10499 +2020-10-05 00:15,1.17199,1.17241,1.17189,1.17203,6668 +2020-10-05 00:30,1.17204,1.17288,1.17193,1.17269,9567 +2020-10-05 00:45,1.17269,1.17274,1.17246,1.17251,7142 +2020-10-05 01:00,1.17251,1.17267,1.17214,1.17247,9954 +2020-10-05 01:15,1.17248,1.1729,1.17235,1.17284,11842 +2020-10-05 01:30,1.17284,1.17357,1.17279,1.17334,10541 +2020-10-05 01:45,1.17335,1.1735,1.17315,1.1734,9060 +2020-10-05 02:00,1.17339,1.17345,1.17307,1.17313,9770 +2020-10-05 02:15,1.17312,1.17351,1.17312,1.17334,8126 +2020-10-05 02:30,1.17333,1.17335,1.17298,1.17303,6593 +2020-10-05 02:45,1.17303,1.17342,1.173,1.17319,5883 +2020-10-05 03:00,1.1732,1.17324,1.17303,1.17313,5921 +2020-10-05 03:15,1.17313,1.1734,1.1731,1.17324,4607 +2020-10-05 03:30,1.17323,1.17325,1.17295,1.17296,5760 +2020-10-05 03:45,1.17295,1.17301,1.17272,1.17281,8879 +2020-10-05 04:00,1.17281,1.17295,1.17266,1.17288,6091 +2020-10-05 04:15,1.17288,1.17305,1.17276,1.17302,6756 +2020-10-05 04:30,1.17303,1.17324,1.173,1.17324,6879 +2020-10-05 04:45,1.17323,1.17335,1.17319,1.17321,6273 +2020-10-05 05:00,1.17321,1.17327,1.173,1.17319,8295 +2020-10-05 05:15,1.1732,1.17333,1.17307,1.17327,4619 +2020-10-05 05:30,1.17328,1.17356,1.17325,1.17334,7690 +2020-10-05 05:45,1.17334,1.1735,1.17332,1.17343,5873 +2020-10-05 06:00,1.17346,1.17346,1.17245,1.17269,18109 +2020-10-05 06:15,1.17268,1.17288,1.17249,1.17264,12485 +2020-10-05 06:30,1.17264,1.173,1.17235,1.17245,15492 +2020-10-05 06:45,1.17244,1.17255,1.17208,1.17243,11389 +2020-10-05 07:00,1.17242,1.17294,1.17198,1.17229,21171 +2020-10-05 07:15,1.1723,1.17313,1.17228,1.17266,19339 +2020-10-05 07:30,1.17266,1.17315,1.17238,1.17299,19851 +2020-10-05 07:45,1.17299,1.17381,1.17297,1.17323,19230 +2020-10-05 08:00,1.17323,1.17412,1.17319,1.17405,19381 +2020-10-05 08:15,1.17405,1.17455,1.17383,1.1742,19405 +2020-10-05 08:30,1.1742,1.17438,1.17372,1.17391,16737 +2020-10-05 08:45,1.17393,1.17497,1.17389,1.1749,16002 +2020-10-05 09:00,1.1749,1.17536,1.17467,1.17499,19209 +2020-10-05 09:15,1.17502,1.17522,1.1747,1.17516,17521 +2020-10-05 09:30,1.17513,1.17555,1.17509,1.17521,19085 +2020-10-05 09:45,1.17521,1.17594,1.17519,1.17569,15895 +2020-10-05 10:00,1.1757,1.17578,1.17504,1.17511,14968 +2020-10-05 10:15,1.1751,1.1751,1.17475,1.17497,12310 +2020-10-05 10:30,1.17498,1.17521,1.17476,1.17497,15254 +2020-10-05 10:45,1.17498,1.17578,1.17496,1.17525,16546 +2020-10-05 11:00,1.17525,1.17564,1.17461,1.17556,13746 +2020-10-05 11:15,1.17557,1.17573,1.17514,1.17525,13219 +2020-10-05 11:30,1.17526,1.17643,1.17513,1.17621,13792 +2020-10-05 11:45,1.1762,1.17694,1.17619,1.17649,20292 +2020-10-05 12:00,1.17649,1.17689,1.17647,1.17678,7379 +2020-10-05 12:15,1.17679,1.17686,1.17603,1.17603,10072 +2020-10-05 12:30,1.17604,1.17635,1.17568,1.17584,14075 +2020-10-05 12:45,1.17585,1.17646,1.17582,1.17639,12752 +2020-10-05 13:00,1.17639,1.17705,1.17639,1.17687,12213 +2020-10-05 13:15,1.17689,1.17705,1.17668,1.17697,12755 +2020-10-05 13:30,1.17698,1.1786,1.17679,1.17818,23268 +2020-10-05 13:45,1.17818,1.17915,1.17803,1.17864,20372 +2020-10-05 14:00,1.17864,1.17975,1.17822,1.1788,21027 +2020-10-05 14:15,1.17881,1.17928,1.17821,1.17855,21016 +2020-10-05 14:30,1.17859,1.17897,1.17789,1.1785,16954 +2020-10-05 14:45,1.17851,1.17936,1.17818,1.17897,20245 +2020-10-05 15:00,1.17896,1.17923,1.17859,1.17883,15245 +2020-10-05 15:15,1.17885,1.17907,1.17823,1.1784,15816 +2020-10-05 15:30,1.17841,1.17886,1.17824,1.17869,13723 +2020-10-05 15:45,1.17868,1.17878,1.17819,1.17843,10662 +2020-10-05 16:00,1.17843,1.17888,1.17838,1.17869,10308 +2020-10-05 16:15,1.17869,1.17879,1.17823,1.17862,9931 +2020-10-05 16:30,1.1786,1.17886,1.17855,1.17878,7673 +2020-10-05 16:45,1.1788,1.17892,1.17842,1.17864,10168 +2020-10-05 17:00,1.17865,1.17866,1.17818,1.17831,9822 +2020-10-05 17:15,1.17831,1.17841,1.17801,1.17818,12481 +2020-10-05 17:30,1.1782,1.17837,1.17812,1.17815,8258 +2020-10-05 17:45,1.17818,1.17819,1.17758,1.17769,9267 +2020-10-05 18:00,1.17768,1.17787,1.1775,1.1776,13645 +2020-10-05 18:15,1.17761,1.17771,1.17738,1.17739,9821 +2020-10-05 18:30,1.1774,1.17751,1.17715,1.17728,8585 +2020-10-05 18:45,1.17728,1.17762,1.17724,1.1775,10765 +2020-10-05 19:00,1.17748,1.17771,1.17747,1.1776,11359 +2020-10-05 19:15,1.1776,1.17801,1.1776,1.17785,9085 +2020-10-05 19:30,1.17785,1.17818,1.17777,1.17813,9593 +2020-10-05 19:45,1.17812,1.17844,1.17798,1.17836,9676 +2020-10-05 20:00,1.17838,1.17868,1.17815,1.17861,6365 +2020-10-05 20:15,1.1786,1.17877,1.17844,1.1785,4815 +2020-10-05 20:30,1.17849,1.17852,1.17825,1.17837,2894 +2020-10-05 20:45,1.17838,1.17857,1.17807,1.17825,2749 +2020-10-05 21:00,1.17825,1.17831,1.17787,1.17788,142 +2020-10-05 21:15,1.17791,1.17844,1.17789,1.17822,117 +2020-10-05 21:30,1.1782,1.1783,1.17811,1.17815,497 +2020-10-05 21:45,1.17812,1.17812,1.17794,1.17808,77 +2020-10-05 22:00,1.17808,1.17869,1.17806,1.17863,1401 +2020-10-05 22:15,1.17863,1.17877,1.17859,1.17867,2777 +2020-10-05 22:30,1.17866,1.17873,1.17854,1.17869,2510 +2020-10-05 22:45,1.17869,1.17882,1.17862,1.17873,2036 +2020-10-05 23:00,1.17878,1.17881,1.17835,1.17865,5242 +2020-10-05 23:15,1.17866,1.1788,1.17863,1.1787,3134 +2020-10-05 23:30,1.1787,1.17899,1.17867,1.17879,3682 +2020-10-05 23:45,1.17879,1.17901,1.17872,1.17891,4995 +2020-10-06 00:00,1.17889,1.17919,1.17868,1.17909,6457 +2020-10-06 00:15,1.17908,1.17929,1.17902,1.17909,6097 +2020-10-06 00:30,1.17909,1.17916,1.17862,1.17894,8581 +2020-10-06 00:45,1.17895,1.17916,1.17868,1.17906,8129 +2020-10-06 01:00,1.17907,1.17929,1.17879,1.17903,7328 +2020-10-06 01:15,1.17902,1.17903,1.17868,1.1788,7222 +2020-10-06 01:30,1.17881,1.1789,1.17867,1.17869,7598 +2020-10-06 01:45,1.1787,1.17884,1.1786,1.17864,7374 +2020-10-06 02:00,1.17864,1.17882,1.17859,1.17869,4950 +2020-10-06 02:15,1.1787,1.17902,1.17869,1.17902,7972 +2020-10-06 02:30,1.179,1.17905,1.17888,1.1789,6302 +2020-10-06 02:45,1.1789,1.17911,1.17887,1.1791,7055 +2020-10-06 03:00,1.1791,1.1791,1.17887,1.17901,7942 +2020-10-06 03:15,1.179,1.17916,1.17899,1.17905,5660 +2020-10-06 03:30,1.17904,1.17987,1.179,1.17924,17013 +2020-10-06 03:45,1.17924,1.17931,1.17892,1.17922,10307 +2020-10-06 04:00,1.17923,1.17926,1.17889,1.17897,4059 +2020-10-06 04:15,1.17898,1.17925,1.17891,1.17921,5176 +2020-10-06 04:30,1.1792,1.17941,1.17918,1.1792,6236 +2020-10-06 04:45,1.17921,1.17926,1.17881,1.17885,6006 +2020-10-06 05:00,1.17885,1.17913,1.17878,1.1788,7334 +2020-10-06 05:15,1.17879,1.17923,1.17875,1.17892,7801 +2020-10-06 05:30,1.17891,1.17905,1.1788,1.17881,6414 +2020-10-06 05:45,1.17881,1.17893,1.17858,1.17859,7081 +2020-10-06 06:00,1.1786,1.17897,1.17809,1.17835,11511 +2020-10-06 06:15,1.17832,1.17872,1.17805,1.17825,8754 +2020-10-06 06:30,1.17826,1.17843,1.17774,1.17786,10603 +2020-10-06 06:45,1.17788,1.17856,1.17787,1.1785,13937 +2020-10-06 07:00,1.17848,1.18001,1.17801,1.17923,26719 +2020-10-06 07:15,1.17922,1.17927,1.17836,1.17837,20588 +2020-10-06 07:30,1.17839,1.17881,1.1775,1.17771,17745 +2020-10-06 07:45,1.17771,1.17815,1.17744,1.17766,17944 +2020-10-06 08:00,1.17765,1.17782,1.17684,1.17735,16537 +2020-10-06 08:15,1.17735,1.17749,1.17692,1.177,18032 +2020-10-06 08:30,1.17699,1.17745,1.17669,1.17681,14701 +2020-10-06 08:45,1.17681,1.17793,1.17654,1.17776,19757 +2020-10-06 09:00,1.17775,1.17801,1.17729,1.1778,12811 +2020-10-06 09:15,1.1778,1.17818,1.17775,1.17801,12920 +2020-10-06 09:30,1.17802,1.17863,1.178,1.17814,8118 +2020-10-06 09:45,1.17814,1.17842,1.17786,1.17796,9703 +2020-10-06 10:00,1.17799,1.17838,1.17762,1.17837,13407 +2020-10-06 10:15,1.17836,1.17842,1.1777,1.17826,12023 +2020-10-06 10:30,1.17825,1.17882,1.17821,1.17871,14097 +2020-10-06 10:45,1.1787,1.17888,1.17754,1.17781,15482 +2020-10-06 11:00,1.17781,1.17825,1.17749,1.17791,13679 +2020-10-06 11:15,1.17791,1.17903,1.17789,1.17896,14895 +2020-10-06 11:30,1.17896,1.17979,1.17884,1.17969,17998 +2020-10-06 11:45,1.1797,1.17975,1.17925,1.17958,13304 +2020-10-06 12:00,1.17957,1.17976,1.17926,1.17951,14140 +2020-10-06 12:15,1.17953,1.18077,1.17942,1.18035,15746 +2020-10-06 12:30,1.18035,1.1804,1.17886,1.17901,15399 +2020-10-06 12:45,1.17901,1.17944,1.17874,1.17913,15022 +2020-10-06 13:00,1.17913,1.18006,1.179,1.17998,12989 +2020-10-06 13:15,1.17998,1.18027,1.17939,1.1798,22990 +2020-10-06 13:30,1.1798,1.18022,1.17925,1.17954,22486 +2020-10-06 13:45,1.17954,1.17963,1.17781,1.178,21972 +2020-10-06 14:00,1.17799,1.17896,1.17795,1.17863,21049 +2020-10-06 14:15,1.17864,1.17895,1.17832,1.17891,20389 +2020-10-06 14:30,1.17892,1.17899,1.17804,1.17804,16840 +2020-10-06 14:45,1.17803,1.17949,1.17796,1.1791,22350 +2020-10-06 15:00,1.17911,1.17941,1.17888,1.17904,18346 +2020-10-06 15:15,1.17903,1.17937,1.17842,1.17856,13932 +2020-10-06 15:30,1.17857,1.17888,1.17824,1.17861,15781 +2020-10-06 15:45,1.17861,1.17863,1.17761,1.17777,16273 +2020-10-06 16:00,1.17777,1.17811,1.17733,1.1781,17962 +2020-10-06 16:15,1.17811,1.17815,1.17761,1.17763,11539 +2020-10-06 16:30,1.17764,1.178,1.17727,1.1779,10436 +2020-10-06 16:45,1.1779,1.17826,1.17788,1.17809,7730 +2020-10-06 17:00,1.17808,1.17809,1.17767,1.17805,8443 +2020-10-06 17:15,1.17806,1.17815,1.17761,1.17776,10188 +2020-10-06 17:30,1.17775,1.17777,1.17722,1.17739,14276 +2020-10-06 17:45,1.17739,1.17807,1.17735,1.17786,13776 +2020-10-06 18:00,1.17786,1.17814,1.17782,1.17813,11031 +2020-10-06 18:15,1.17812,1.17865,1.17803,1.1786,6822 +2020-10-06 18:30,1.17861,1.17898,1.17857,1.17889,11256 +2020-10-06 18:45,1.17889,1.17902,1.17355,1.17556,30774 +2020-10-06 19:00,1.17555,1.17555,1.17357,1.17512,58611 +2020-10-06 19:15,1.1751,1.17603,1.17454,1.17593,39582 +2020-10-06 19:30,1.17595,1.17604,1.17524,1.17553,36473 +2020-10-06 19:45,1.17557,1.17566,1.17457,1.17502,37169 +2020-10-06 20:00,1.17503,1.17529,1.17436,1.17442,13487 +2020-10-06 20:15,1.17442,1.17479,1.17417,1.17479,6763 +2020-10-06 20:30,1.17478,1.17479,1.17375,1.17375,7297 +2020-10-06 20:45,1.17376,1.17379,1.17317,1.17334,4835 +2020-10-06 21:00,1.17335,1.17359,1.17327,1.17341,401 +2020-10-06 21:15,1.17339,1.17351,1.17333,1.17344,628 +2020-10-06 21:30,1.17345,1.17351,1.17316,1.1732,398 +2020-10-06 21:45,1.1732,1.17331,1.17313,1.1733,68 +2020-10-06 22:00,1.1733,1.17345,1.17302,1.17336,2685 +2020-10-06 22:15,1.17335,1.17378,1.17332,1.17371,3373 +2020-10-06 22:30,1.17371,1.17377,1.1734,1.17366,3275 +2020-10-06 22:45,1.17365,1.17369,1.17312,1.17338,8401 +2020-10-06 23:00,1.17337,1.17359,1.17324,1.1734,2852 +2020-10-06 23:15,1.17339,1.17368,1.17327,1.17357,4747 +2020-10-06 23:30,1.17357,1.17362,1.17336,1.17355,6700 +2020-10-06 23:45,1.17354,1.17373,1.17351,1.17371,7132 +2020-10-07 00:00,1.1737,1.17376,1.17349,1.17373,9033 +2020-10-07 00:15,1.17374,1.17405,1.1736,1.17402,8259 +2020-10-07 00:30,1.17401,1.17402,1.1735,1.17363,8706 +2020-10-07 00:45,1.17361,1.17376,1.17306,1.17353,11332 +2020-10-07 01:00,1.17353,1.17353,1.173,1.17306,10680 +2020-10-07 01:15,1.17308,1.17329,1.17261,1.17271,9371 +2020-10-07 01:30,1.1727,1.17271,1.1725,1.17257,9442 +2020-10-07 01:45,1.17256,1.1733,1.17252,1.17283,13308 +2020-10-07 02:00,1.17282,1.17334,1.17249,1.1732,12923 +2020-10-07 02:15,1.17318,1.17342,1.17308,1.17333,9960 +2020-10-07 02:30,1.17334,1.17336,1.17309,1.17313,5867 +2020-10-07 02:45,1.17312,1.17333,1.17309,1.17312,6728 +2020-10-07 03:00,1.17313,1.17314,1.17271,1.17288,5310 +2020-10-07 03:15,1.17288,1.17299,1.17273,1.17283,6108 +2020-10-07 03:30,1.17283,1.17309,1.17279,1.17299,7026 +2020-10-07 03:45,1.17298,1.17317,1.17283,1.17284,5776 +2020-10-07 04:00,1.17281,1.17325,1.17278,1.17317,4586 +2020-10-07 04:15,1.17314,1.17348,1.17312,1.17344,5573 +2020-10-07 04:30,1.17346,1.17347,1.17318,1.1733,5563 +2020-10-07 04:45,1.1733,1.17347,1.17326,1.17336,4216 +2020-10-07 05:00,1.17336,1.1734,1.17297,1.17334,8299 +2020-10-07 05:15,1.17335,1.17353,1.17299,1.17302,5756 +2020-10-07 05:30,1.17302,1.17387,1.17298,1.17377,10907 +2020-10-07 05:45,1.17377,1.1741,1.1735,1.17383,9644 +2020-10-07 06:00,1.17382,1.17388,1.17349,1.17365,11658 +2020-10-07 06:15,1.17364,1.1743,1.17349,1.17414,17644 +2020-10-07 06:30,1.17414,1.17537,1.17387,1.17517,20771 +2020-10-07 06:45,1.17516,1.1755,1.17495,1.17546,15509 +2020-10-07 07:00,1.17548,1.17606,1.17519,1.17551,26203 +2020-10-07 07:15,1.1755,1.17601,1.17549,1.17585,19824 +2020-10-07 07:30,1.17584,1.17613,1.17527,1.17586,21245 +2020-10-07 07:45,1.17586,1.1767,1.17573,1.17666,17234 +2020-10-07 08:00,1.17664,1.17671,1.17527,1.17532,22080 +2020-10-07 08:15,1.17532,1.17599,1.17497,1.17582,19736 +2020-10-07 08:30,1.17582,1.17632,1.17568,1.17574,19277 +2020-10-07 08:45,1.17577,1.17618,1.17562,1.17578,14438 +2020-10-07 09:00,1.17577,1.1762,1.17567,1.17589,15851 +2020-10-07 09:15,1.17588,1.17603,1.17517,1.17525,15386 +2020-10-07 09:30,1.17526,1.1765,1.1752,1.17628,20623 +2020-10-07 09:45,1.17629,1.17632,1.17557,1.17599,18416 +2020-10-07 10:00,1.17597,1.17634,1.17556,1.17562,18426 +2020-10-07 10:15,1.17562,1.17568,1.17525,1.1753,11860 +2020-10-07 10:30,1.17529,1.17539,1.17492,1.17527,17121 +2020-10-07 10:45,1.17526,1.17615,1.17507,1.17587,19892 +2020-10-07 11:00,1.17587,1.17649,1.17586,1.17608,21452 +2020-10-07 11:15,1.17608,1.17743,1.17595,1.17737,18889 +2020-10-07 11:30,1.17737,1.17737,1.17659,1.17722,16838 +2020-10-07 11:45,1.17722,1.17769,1.17685,1.1774,18827 +2020-10-07 12:00,1.17737,1.17754,1.17685,1.17694,14128 +2020-10-07 12:15,1.17696,1.17727,1.17645,1.17667,15599 +2020-10-07 12:30,1.17666,1.178,1.17661,1.17797,18227 +2020-10-07 12:45,1.17797,1.17818,1.17746,1.17784,19548 +2020-10-07 13:00,1.17784,1.17788,1.1771,1.17731,19137 +2020-10-07 13:15,1.17731,1.17788,1.17682,1.17714,19192 +2020-10-07 13:30,1.17715,1.17777,1.17661,1.17689,20324 +2020-10-07 13:45,1.17688,1.17739,1.17612,1.17614,22047 +2020-10-07 14:00,1.17615,1.17673,1.17611,1.17638,23525 +2020-10-07 14:15,1.17638,1.17696,1.17609,1.17639,23030 +2020-10-07 14:30,1.17639,1.17681,1.17587,1.17604,22810 +2020-10-07 14:45,1.17605,1.17654,1.17579,1.17614,19300 +2020-10-07 15:00,1.17613,1.17732,1.17598,1.17687,20529 +2020-10-07 15:15,1.17687,1.17704,1.17646,1.17656,20915 +2020-10-07 15:30,1.17655,1.17704,1.17636,1.17693,19535 +2020-10-07 15:45,1.17692,1.17707,1.17648,1.17666,16488 +2020-10-07 16:00,1.17666,1.17671,1.17638,1.17656,12565 +2020-10-07 16:15,1.17656,1.17699,1.1764,1.17687,16118 +2020-10-07 16:30,1.17687,1.1771,1.17674,1.17685,17387 +2020-10-07 16:45,1.17686,1.17737,1.17679,1.17716,11209 +2020-10-07 17:00,1.17715,1.17751,1.17713,1.17735,14954 +2020-10-07 17:15,1.17736,1.17745,1.17717,1.1774,10520 +2020-10-07 17:30,1.1774,1.1774,1.17694,1.17716,6001 +2020-10-07 17:45,1.17716,1.17726,1.17662,1.17665,11562 +2020-10-07 18:00,1.17666,1.17702,1.17641,1.17698,13057 +2020-10-07 18:15,1.17699,1.17737,1.17636,1.17649,13884 +2020-10-07 18:30,1.17649,1.17658,1.17615,1.17639,11625 +2020-10-07 18:45,1.17639,1.17687,1.17639,1.17672,13729 +2020-10-07 19:00,1.17672,1.17693,1.1766,1.17678,13567 +2020-10-07 19:15,1.17678,1.17692,1.17636,1.17647,9565 +2020-10-07 19:30,1.17646,1.17662,1.17619,1.1762,8813 +2020-10-07 19:45,1.17622,1.1765,1.17602,1.17603,9255 +2020-10-07 20:00,1.17603,1.17643,1.17603,1.17643,4375 +2020-10-07 20:15,1.17642,1.17655,1.17629,1.17639,3107 +2020-10-07 20:30,1.17638,1.17655,1.17635,1.17646,2894 +2020-10-07 20:45,1.17647,1.17659,1.17602,1.17604,3191 +2020-10-07 21:00,1.176,1.17652,1.17599,1.17641,51 +2020-10-07 21:15,1.17626,1.17652,1.17626,1.17651,63 +2020-10-07 21:30,1.17651,1.17653,1.17625,1.17637,108 +2020-10-07 21:45,1.17636,1.17652,1.17623,1.17627,736 +2020-10-07 22:00,1.17644,1.17695,1.17644,1.17686,1357 +2020-10-07 22:15,1.17685,1.17704,1.1768,1.17703,2071 +2020-10-07 22:30,1.17703,1.17703,1.17687,1.17693,2013 +2020-10-07 22:45,1.17693,1.17697,1.17682,1.17682,1943 +2020-10-07 23:00,1.17682,1.17694,1.17664,1.17665,1275 +2020-10-07 23:15,1.17666,1.17677,1.1766,1.17662,3490 +2020-10-07 23:30,1.17662,1.17679,1.17655,1.17655,5377 +2020-10-07 23:45,1.17655,1.17665,1.17651,1.17657,2602 +2020-10-08 00:00,1.17657,1.17657,1.17612,1.17639,10492 +2020-10-08 00:15,1.17638,1.17669,1.17627,1.17666,12984 +2020-10-08 00:30,1.17666,1.17668,1.17639,1.17661,8657 +2020-10-08 00:45,1.1766,1.17686,1.17648,1.17649,10426 +2020-10-08 01:00,1.17648,1.17661,1.17634,1.17643,9499 +2020-10-08 01:15,1.17643,1.17646,1.17604,1.17614,13959 +2020-10-08 01:30,1.17615,1.17661,1.17594,1.17641,13253 +2020-10-08 01:45,1.1764,1.1769,1.17629,1.17662,14122 +2020-10-08 02:00,1.17661,1.1767,1.17614,1.17622,11498 +2020-10-08 02:15,1.17621,1.17646,1.17618,1.17635,7527 +2020-10-08 02:30,1.17637,1.17657,1.17634,1.17645,8863 +2020-10-08 02:45,1.17645,1.17717,1.17644,1.17707,8472 +2020-10-08 03:00,1.17707,1.17718,1.17691,1.17695,8033 +2020-10-08 03:15,1.17697,1.17705,1.17685,1.17687,5145 +2020-10-08 03:30,1.17688,1.17698,1.17675,1.17689,6549 +2020-10-08 03:45,1.17689,1.17715,1.17682,1.177,6141 +2020-10-08 04:00,1.17701,1.17706,1.1768,1.17683,4265 +2020-10-08 04:15,1.17684,1.1769,1.17672,1.17687,3742 +2020-10-08 04:30,1.17686,1.17695,1.17683,1.17684,3950 +2020-10-08 04:45,1.17685,1.17706,1.17684,1.17685,4381 +2020-10-08 05:00,1.17686,1.17708,1.17681,1.17704,6497 +2020-10-08 05:15,1.17705,1.17748,1.1769,1.17735,8380 +2020-10-08 05:30,1.17736,1.17759,1.17735,1.17742,5101 +2020-10-08 05:45,1.17741,1.17761,1.1773,1.17745,7409 +2020-10-08 06:00,1.17746,1.178,1.17719,1.17724,16286 +2020-10-08 06:15,1.17724,1.17767,1.17703,1.17757,12056 +2020-10-08 06:30,1.17757,1.17792,1.17743,1.17782,17784 +2020-10-08 06:45,1.17781,1.17816,1.17745,1.17784,17331 +2020-10-08 07:00,1.17783,1.17791,1.1768,1.17684,27862 +2020-10-08 07:15,1.17683,1.17744,1.1768,1.17691,23391 +2020-10-08 07:30,1.1769,1.17734,1.17638,1.17655,21304 +2020-10-08 07:45,1.17655,1.17678,1.17624,1.17662,18239 +2020-10-08 08:00,1.17663,1.17674,1.17574,1.17651,22004 +2020-10-08 08:15,1.17651,1.17676,1.17599,1.17616,21634 +2020-10-08 08:30,1.17617,1.1766,1.17588,1.17604,18373 +2020-10-08 08:45,1.17603,1.17613,1.17557,1.17608,20221 +2020-10-08 09:00,1.17604,1.17673,1.17599,1.17656,18658 +2020-10-08 09:15,1.17655,1.17676,1.17616,1.17616,14030 +2020-10-08 09:30,1.17613,1.1762,1.17531,1.17544,20257 +2020-10-08 09:45,1.17543,1.17598,1.17529,1.17587,16190 +2020-10-08 10:00,1.17587,1.17655,1.17568,1.17613,14167 +2020-10-08 10:15,1.17613,1.17648,1.17598,1.17632,12261 +2020-10-08 10:30,1.17633,1.17658,1.17621,1.17648,13826 +2020-10-08 10:45,1.17648,1.17664,1.17595,1.17601,19050 +2020-10-08 11:00,1.17601,1.17629,1.17529,1.17551,18005 +2020-10-08 11:15,1.1755,1.17565,1.17527,1.17546,15116 +2020-10-08 11:30,1.17547,1.17569,1.1752,1.17542,12938 +2020-10-08 11:45,1.17543,1.176,1.17535,1.17599,13555 +2020-10-08 12:00,1.17599,1.17677,1.17559,1.17647,15375 +2020-10-08 12:15,1.17647,1.17689,1.17628,1.17645,14496 +2020-10-08 12:30,1.17648,1.17663,1.17565,1.17591,19052 +2020-10-08 12:45,1.17593,1.17625,1.17542,1.17551,16392 +2020-10-08 13:00,1.17553,1.17562,1.17326,1.17388,28294 +2020-10-08 13:15,1.17388,1.17447,1.17377,1.17442,21323 +2020-10-08 13:30,1.17444,1.17446,1.17364,1.17407,20293 +2020-10-08 13:45,1.17408,1.17471,1.17386,1.17446,23214 +2020-10-08 14:00,1.17444,1.17462,1.17382,1.17383,21826 +2020-10-08 14:15,1.17383,1.17452,1.17352,1.17353,21968 +2020-10-08 14:30,1.17353,1.17456,1.17341,1.17401,19294 +2020-10-08 14:45,1.17401,1.17516,1.17395,1.17474,22235 +2020-10-08 15:00,1.17473,1.17542,1.17446,1.17516,19924 +2020-10-08 15:15,1.17516,1.1752,1.17471,1.17517,15711 +2020-10-08 15:30,1.17518,1.17552,1.17491,1.17545,17133 +2020-10-08 15:45,1.17544,1.17579,1.17516,1.17519,10946 +2020-10-08 16:00,1.17519,1.1757,1.17519,1.17537,12934 +2020-10-08 16:15,1.17537,1.17561,1.17522,1.17523,10988 +2020-10-08 16:30,1.17524,1.17575,1.1752,1.17537,10545 +2020-10-08 16:45,1.17539,1.17557,1.1752,1.17546,11991 +2020-10-08 17:00,1.17544,1.17549,1.17515,1.17532,11068 +2020-10-08 17:15,1.17533,1.17545,1.17524,1.1754,12630 +2020-10-08 17:30,1.17539,1.17567,1.17532,1.17564,8293 +2020-10-08 17:45,1.17565,1.17597,1.17557,1.17582,7754 +2020-10-08 18:00,1.17583,1.17597,1.17576,1.17579,7749 +2020-10-08 18:15,1.17579,1.17587,1.17556,1.17571,6854 +2020-10-08 18:30,1.17572,1.17577,1.17546,1.17567,5398 +2020-10-08 18:45,1.17566,1.17593,1.17559,1.17575,9485 +2020-10-08 19:00,1.17574,1.17605,1.17574,1.17581,10561 +2020-10-08 19:15,1.17581,1.17583,1.17556,1.17557,4312 +2020-10-08 19:30,1.17557,1.17563,1.17544,1.17552,6521 +2020-10-08 19:45,1.17552,1.17593,1.17537,1.17592,8059 +2020-10-08 20:00,1.17591,1.17616,1.17585,1.17599,6267 +2020-10-08 20:15,1.17596,1.176,1.17582,1.1759,2430 +2020-10-08 20:30,1.17591,1.17591,1.17567,1.17577,3649 +2020-10-08 20:45,1.17574,1.17611,1.1757,1.17582,2269 +2020-10-08 21:00,1.17587,1.17596,1.17568,1.17593,370 +2020-10-08 21:15,1.17594,1.1761,1.17575,1.17603,212 +2020-10-08 21:30,1.17598,1.176,1.17584,1.17597,42 +2020-10-08 21:45,1.17596,1.17598,1.17576,1.17598,64 +2020-10-08 22:00,1.17587,1.17647,1.17587,1.1764,1158 +2020-10-08 22:15,1.17639,1.17648,1.17626,1.17635,2175 +2020-10-08 22:30,1.17637,1.17638,1.17624,1.17629,3306 +2020-10-08 22:45,1.1763,1.17642,1.17621,1.1764,1593 +2020-10-08 23:00,1.17639,1.17648,1.17632,1.17641,2466 +2020-10-08 23:15,1.1764,1.17645,1.17635,1.17639,2503 +2020-10-08 23:30,1.17641,1.17647,1.17635,1.17646,5079 +2020-10-08 23:45,1.17648,1.17669,1.17645,1.17668,2788 +2020-10-09 00:00,1.17667,1.17672,1.17614,1.17618,7469 +2020-10-09 00:15,1.17618,1.1762,1.17576,1.17576,6694 +2020-10-09 00:30,1.17576,1.17613,1.17576,1.1758,6821 +2020-10-09 00:45,1.17581,1.17621,1.1758,1.17608,6672 +2020-10-09 01:00,1.1761,1.17629,1.176,1.17612,9752 +2020-10-09 01:15,1.17613,1.17726,1.17612,1.17681,12262 +2020-10-09 01:30,1.17682,1.17726,1.17672,1.17715,16601 +2020-10-09 01:45,1.17715,1.1774,1.17698,1.17721,9609 +2020-10-09 02:00,1.1772,1.17731,1.177,1.17722,10041 +2020-10-09 02:15,1.17724,1.17746,1.17718,1.1773,5878 +2020-10-09 02:30,1.17731,1.17772,1.17727,1.17768,7884 +2020-10-09 02:45,1.17769,1.17789,1.17754,1.17782,7328 +2020-10-09 03:00,1.17782,1.17806,1.1778,1.17806,8585 +2020-10-09 03:15,1.17805,1.17807,1.17775,1.17782,8830 +2020-10-09 03:30,1.17782,1.17807,1.17778,1.17793,8612 +2020-10-09 03:45,1.17793,1.17793,1.17767,1.1777,5424 +2020-10-09 04:00,1.1777,1.17777,1.17759,1.17762,5551 +2020-10-09 04:15,1.17762,1.17763,1.17735,1.17736,4573 +2020-10-09 04:30,1.17736,1.17767,1.17735,1.17745,4959 +2020-10-09 04:45,1.17745,1.17757,1.17739,1.17752,3180 +2020-10-09 05:00,1.17753,1.17777,1.17751,1.17752,6528 +2020-10-09 05:15,1.17752,1.17774,1.17752,1.17765,3706 +2020-10-09 05:30,1.17766,1.17774,1.17735,1.17746,6835 +2020-10-09 05:45,1.17746,1.1775,1.17716,1.17721,11525 +2020-10-09 06:00,1.17721,1.17741,1.177,1.17715,11493 +2020-10-09 06:15,1.17715,1.17762,1.17713,1.17747,10150 +2020-10-09 06:30,1.17748,1.17766,1.17685,1.17695,14012 +2020-10-09 06:45,1.17696,1.17739,1.17666,1.17738,12268 +2020-10-09 07:00,1.17738,1.17785,1.17735,1.17754,16496 +2020-10-09 07:15,1.17753,1.1776,1.17706,1.17745,14406 +2020-10-09 07:30,1.17745,1.17749,1.17713,1.17742,13066 +2020-10-09 07:45,1.17744,1.17772,1.17706,1.17768,13006 +2020-10-09 08:00,1.17769,1.17968,1.17769,1.17888,24318 +2020-10-09 08:15,1.17887,1.17931,1.17861,1.17928,21192 +2020-10-09 08:30,1.17928,1.17972,1.1791,1.17939,17520 +2020-10-09 08:45,1.17941,1.18038,1.17939,1.18016,20361 +2020-10-09 09:00,1.18017,1.18032,1.17965,1.17975,19093 +2020-10-09 09:15,1.17974,1.17985,1.17936,1.1797,19314 +2020-10-09 09:30,1.17969,1.17994,1.17913,1.17936,18063 +2020-10-09 09:45,1.17936,1.17968,1.17925,1.17965,13687 +2020-10-09 10:00,1.17964,1.1803,1.17924,1.18024,15316 +2020-10-09 10:15,1.18026,1.18026,1.17975,1.17991,15709 +2020-10-09 10:30,1.1799,1.18027,1.17981,1.18017,14412 +2020-10-09 10:45,1.18018,1.18086,1.18003,1.18027,14955 +2020-10-09 11:00,1.18028,1.18051,1.1797,1.17996,15206 +2020-10-09 11:15,1.17997,1.18058,1.17987,1.18017,12740 +2020-10-09 11:30,1.18016,1.18072,1.1801,1.18021,13283 +2020-10-09 11:45,1.18023,1.18032,1.17978,1.1799,14365 +2020-10-09 12:00,1.17988,1.18015,1.17932,1.17947,15144 +2020-10-09 12:15,1.17947,1.18002,1.17941,1.17967,15198 +2020-10-09 12:30,1.17968,1.18038,1.17968,1.18038,12872 +2020-10-09 12:45,1.18039,1.18099,1.18028,1.18091,20701 +2020-10-09 13:00,1.18089,1.18181,1.18085,1.1816,17104 +2020-10-09 13:15,1.18159,1.18159,1.18101,1.18135,13579 +2020-10-09 13:30,1.18137,1.18171,1.18115,1.18115,14922 +2020-10-09 13:45,1.18114,1.18117,1.18009,1.18066,17145 +2020-10-09 14:00,1.18066,1.1814,1.18048,1.18107,17887 +2020-10-09 14:15,1.18106,1.18147,1.1806,1.18136,16131 +2020-10-09 14:30,1.18138,1.18208,1.18111,1.18187,19185 +2020-10-09 14:45,1.18187,1.18235,1.18132,1.18149,20517 +2020-10-09 15:00,1.18148,1.1819,1.18109,1.18109,16131 +2020-10-09 15:15,1.1811,1.18192,1.18078,1.18188,14385 +2020-10-09 15:30,1.18187,1.18249,1.18168,1.18191,16849 +2020-10-09 15:45,1.18191,1.1822,1.18178,1.18186,20566 +2020-10-09 16:00,1.18186,1.18212,1.18144,1.18211,13972 +2020-10-09 16:15,1.1821,1.18265,1.18196,1.18222,17149 +2020-10-09 16:30,1.18222,1.18281,1.18218,1.18257,12825 +2020-10-09 16:45,1.18258,1.18264,1.18219,1.18232,12514 +2020-10-09 17:00,1.18233,1.18256,1.1822,1.18238,10511 +2020-10-09 17:15,1.18237,1.18241,1.18182,1.18182,8057 +2020-10-09 17:30,1.18184,1.18244,1.1818,1.18237,8412 +2020-10-09 17:45,1.18238,1.18278,1.1822,1.1823,10187 +2020-10-09 18:00,1.18231,1.18251,1.18197,1.18243,12728 +2020-10-09 18:15,1.18243,1.18279,1.18239,1.18271,5519 +2020-10-09 18:30,1.18273,1.18276,1.18246,1.18269,8404 +2020-10-09 18:45,1.1827,1.18276,1.18236,1.18248,9316 +2020-10-09 19:00,1.1825,1.18266,1.18229,1.1824,14737 +2020-10-09 19:15,1.18241,1.1826,1.18232,1.18259,7995 +2020-10-09 19:30,1.1826,1.18262,1.18235,1.18245,9798 +2020-10-09 19:45,1.18244,1.18265,1.18229,1.18256,8679 +2020-10-09 20:00,1.18255,1.18259,1.18225,1.18239,9299 +2020-10-09 20:15,1.18238,1.18279,1.18237,1.18276,3744 +2020-10-09 20:30,1.18277,1.18289,1.18275,1.18278,7276 +2020-10-09 20:45,1.18279,1.1831,1.18243,1.18248,13430 +2020-10-11 21:00,1.18103,1.182,1.18102,1.18174,291 +2020-10-11 21:15,1.18184,1.18226,1.18166,1.18176,133 +2020-10-11 21:30,1.18176,1.18184,1.18133,1.18138,99 +2020-10-11 21:45,1.18139,1.18146,1.18126,1.1813,49 +2020-10-11 22:00,1.18142,1.18195,1.18111,1.18118,2058 +2020-10-11 22:15,1.18114,1.18159,1.18113,1.18149,1624 +2020-10-11 22:30,1.18148,1.18181,1.18139,1.18176,2080 +2020-10-11 22:45,1.18176,1.18184,1.18146,1.18164,3642 +2020-10-11 23:00,1.18166,1.1819,1.18159,1.18182,4957 +2020-10-11 23:15,1.18183,1.18216,1.18174,1.18186,3705 +2020-10-11 23:30,1.18186,1.18204,1.18147,1.18197,6288 +2020-10-11 23:45,1.18197,1.18204,1.18151,1.18157,3811 +2020-10-12 00:00,1.18156,1.18158,1.18102,1.1812,11436 +2020-10-12 00:15,1.1812,1.18166,1.18103,1.18157,9966 +2020-10-12 00:30,1.18159,1.18185,1.18154,1.18166,7532 +2020-10-12 00:45,1.18165,1.18166,1.18105,1.18128,8934 +2020-10-12 01:00,1.18127,1.18134,1.1811,1.18116,10619 +2020-10-12 01:15,1.18117,1.18217,1.18084,1.18158,14328 +2020-10-12 01:30,1.18157,1.18216,1.1815,1.18193,13271 +2020-10-12 01:45,1.18193,1.18207,1.18168,1.18175,5921 +2020-10-12 02:00,1.18175,1.18194,1.18157,1.1816,7709 +2020-10-12 02:15,1.18162,1.18166,1.18148,1.18149,4886 +2020-10-12 02:30,1.18147,1.18166,1.1814,1.18166,5119 +2020-10-12 02:45,1.18162,1.18176,1.18143,1.18176,6684 +2020-10-12 03:00,1.18174,1.18188,1.18148,1.18185,4416 +2020-10-12 03:15,1.18183,1.18214,1.18183,1.18204,7232 +2020-10-12 03:30,1.18204,1.18205,1.18173,1.18178,7201 +2020-10-12 03:45,1.18177,1.18185,1.18157,1.18168,5467 +2020-10-12 04:00,1.18169,1.18189,1.1816,1.1818,3718 +2020-10-12 04:15,1.18179,1.18208,1.18179,1.18193,5309 +2020-10-12 04:30,1.18195,1.18205,1.18189,1.18193,3630 +2020-10-12 04:45,1.18193,1.18203,1.18177,1.18184,4252 +2020-10-12 05:00,1.18185,1.18206,1.18168,1.182,6464 +2020-10-12 05:15,1.18199,1.18221,1.18188,1.18215,5113 +2020-10-12 05:30,1.18215,1.18248,1.18209,1.18245,5113 +2020-10-12 05:45,1.18246,1.18266,1.18203,1.18209,6364 +2020-10-12 06:00,1.18209,1.18227,1.18165,1.18183,11146 +2020-10-12 06:15,1.18183,1.18185,1.18106,1.1813,8441 +2020-10-12 06:30,1.1813,1.18152,1.18121,1.18134,9639 +2020-10-12 06:45,1.18133,1.18172,1.18117,1.18156,13750 +2020-10-12 07:00,1.18157,1.18225,1.1812,1.18156,22923 +2020-10-12 07:15,1.18157,1.18176,1.18057,1.18083,22260 +2020-10-12 07:30,1.18085,1.18232,1.18066,1.18221,15039 +2020-10-12 07:45,1.1822,1.18221,1.18144,1.182,16812 +2020-10-12 08:00,1.18199,1.18199,1.18137,1.1816,15964 +2020-10-12 08:15,1.18161,1.18181,1.18102,1.18111,15550 +2020-10-12 08:30,1.1811,1.18143,1.18057,1.18089,16123 +2020-10-12 08:45,1.1809,1.18111,1.18069,1.18111,10105 +2020-10-12 09:00,1.18111,1.18139,1.18094,1.18126,11210 +2020-10-12 09:15,1.18125,1.18127,1.17983,1.17988,11082 +2020-10-12 09:30,1.17992,1.18,1.1795,1.17973,15507 +2020-10-12 09:45,1.17972,1.18032,1.17961,1.18024,14171 +2020-10-12 10:00,1.18025,1.18074,1.18022,1.18068,11388 +2020-10-12 10:15,1.18068,1.1809,1.18031,1.1804,13355 +2020-10-12 10:30,1.18042,1.18048,1.18009,1.18019,10408 +2020-10-12 10:45,1.18019,1.18038,1.17963,1.17965,11882 +2020-10-12 11:00,1.17966,1.17971,1.17918,1.17928,14050 +2020-10-12 11:15,1.17928,1.17964,1.1791,1.17948,11943 +2020-10-12 11:30,1.17947,1.17947,1.17899,1.17927,10018 +2020-10-12 11:45,1.17927,1.17951,1.17867,1.17941,15274 +2020-10-12 12:00,1.17937,1.17998,1.17937,1.17985,15966 +2020-10-12 12:15,1.17986,1.18039,1.17973,1.18031,15712 +2020-10-12 12:30,1.18031,1.18055,1.18012,1.18054,13472 +2020-10-12 12:45,1.18054,1.18134,1.18053,1.18097,21718 +2020-10-12 13:00,1.18096,1.18103,1.1805,1.18062,18793 +2020-10-12 13:15,1.18063,1.18081,1.18048,1.18059,11255 +2020-10-12 13:30,1.18059,1.18121,1.18035,1.18115,20571 +2020-10-12 13:45,1.18115,1.18155,1.18091,1.18151,15978 +2020-10-12 14:00,1.18151,1.18166,1.18091,1.18097,15970 +2020-10-12 14:15,1.18098,1.18115,1.18067,1.18113,17999 +2020-10-12 14:30,1.18114,1.1813,1.18058,1.18129,19160 +2020-10-12 14:45,1.1813,1.18148,1.18099,1.18137,18133 +2020-10-12 15:00,1.18139,1.18151,1.18107,1.18113,13315 +2020-10-12 15:15,1.18113,1.18117,1.18076,1.1808,10785 +2020-10-12 15:30,1.18083,1.18087,1.18055,1.1806,11676 +2020-10-12 15:45,1.1806,1.18082,1.1802,1.18041,13531 +2020-10-12 16:00,1.18041,1.18084,1.18023,1.18038,12706 +2020-10-12 16:15,1.1804,1.18102,1.18024,1.181,13491 +2020-10-12 16:30,1.181,1.18128,1.18096,1.18122,13020 +2020-10-12 16:45,1.18121,1.18142,1.1809,1.18107,10497 +2020-10-12 17:00,1.18107,1.18111,1.18066,1.18087,8398 +2020-10-12 17:15,1.18089,1.18107,1.18066,1.18072,11659 +2020-10-12 17:30,1.18071,1.18085,1.18047,1.18049,9145 +2020-10-12 17:45,1.1805,1.18099,1.18046,1.18095,8597 +2020-10-12 18:00,1.18095,1.18108,1.1808,1.18091,6872 +2020-10-12 18:15,1.18092,1.18104,1.18076,1.18096,8711 +2020-10-12 18:30,1.18095,1.18107,1.18077,1.18102,10925 +2020-10-12 18:45,1.18103,1.18105,1.18079,1.181,10969 +2020-10-12 19:00,1.181,1.18119,1.18097,1.18112,11601 +2020-10-12 19:15,1.18112,1.1812,1.18106,1.1811,8745 +2020-10-12 19:30,1.18111,1.18133,1.18105,1.18122,5849 +2020-10-12 19:45,1.18121,1.18136,1.18103,1.18127,8951 +2020-10-12 20:00,1.18126,1.18136,1.1811,1.18135,5057 +2020-10-12 20:15,1.18135,1.18137,1.18119,1.1813,3991 +2020-10-12 20:30,1.1813,1.18138,1.1812,1.18138,3740 +2020-10-12 20:45,1.18136,1.18151,1.1812,1.1812,5155 +2020-10-12 21:00,1.1812,1.18155,1.18109,1.18148,497 +2020-10-12 21:15,1.18145,1.18151,1.18068,1.18127,160 +2020-10-12 21:30,1.18139,1.18139,1.181,1.18105,57 +2020-10-12 21:45,1.18105,1.18138,1.18105,1.18135,80 +2020-10-12 22:00,1.18135,1.18146,1.18124,1.18124,324 +2020-10-12 22:15,1.18125,1.1814,1.1812,1.18135,3927 +2020-10-12 22:30,1.18136,1.18153,1.18129,1.18151,1407 +2020-10-12 22:45,1.18149,1.18154,1.18138,1.18139,1328 +2020-10-12 23:00,1.18139,1.18148,1.18133,1.18143,2953 +2020-10-12 23:15,1.18144,1.18145,1.18132,1.18137,3040 +2020-10-12 23:30,1.18137,1.18139,1.18127,1.18129,3519 +2020-10-12 23:45,1.18128,1.18135,1.1812,1.18129,2393 +2020-10-13 00:00,1.18127,1.18139,1.18009,1.18016,16109 +2020-10-13 00:15,1.18017,1.18045,1.1797,1.17995,16113 +2020-10-13 00:30,1.17996,1.18003,1.17943,1.17947,12099 +2020-10-13 00:45,1.17948,1.18004,1.17941,1.17999,13495 +2020-10-13 01:00,1.17999,1.18007,1.17973,1.17974,17762 +2020-10-13 01:15,1.17974,1.18028,1.17974,1.1802,13584 +2020-10-13 01:30,1.18019,1.18054,1.18003,1.18003,13458 +2020-10-13 01:45,1.18003,1.18003,1.17953,1.17959,12322 +2020-10-13 02:00,1.17959,1.1796,1.17926,1.17952,13231 +2020-10-13 02:15,1.17953,1.17953,1.17905,1.17917,9928 +2020-10-13 02:30,1.17917,1.17964,1.17916,1.17945,11032 +2020-10-13 02:45,1.17946,1.17969,1.17936,1.17964,6337 +2020-10-13 03:00,1.17964,1.17972,1.17918,1.1795,10509 +2020-10-13 03:15,1.1795,1.17956,1.17937,1.17941,8417 +2020-10-13 03:30,1.17939,1.17961,1.17939,1.17948,7637 +2020-10-13 03:45,1.17948,1.17955,1.17937,1.17951,5040 +2020-10-13 04:00,1.1795,1.1795,1.17921,1.17936,9224 +2020-10-13 04:15,1.17934,1.1796,1.17922,1.17948,7161 +2020-10-13 04:30,1.17948,1.17967,1.17944,1.1796,5758 +2020-10-13 04:45,1.17961,1.17987,1.17957,1.17983,7939 +2020-10-13 05:00,1.17982,1.18,1.17975,1.17985,10917 +2020-10-13 05:15,1.17988,1.18017,1.1798,1.1801,13708 +2020-10-13 05:30,1.18011,1.18031,1.17986,1.18025,12586 +2020-10-13 05:45,1.18027,1.18027,1.17922,1.1794,19126 +2020-10-13 06:00,1.17943,1.17971,1.17907,1.17951,14293 +2020-10-13 06:15,1.17951,1.17976,1.1793,1.17944,6982 +2020-10-13 06:30,1.17944,1.17997,1.17934,1.17946,19156 +2020-10-13 06:45,1.17947,1.17952,1.17869,1.1787,15528 +2020-10-13 07:00,1.17869,1.17891,1.17823,1.1784,24454 +2020-10-13 07:15,1.1784,1.17858,1.17781,1.17853,19419 +2020-10-13 07:30,1.17852,1.17883,1.17825,1.17865,16568 +2020-10-13 07:45,1.17866,1.17872,1.17803,1.17804,12726 +2020-10-13 08:00,1.17804,1.1788,1.17793,1.17846,17021 +2020-10-13 08:15,1.17846,1.17903,1.1782,1.179,17955 +2020-10-13 08:30,1.17902,1.17986,1.17897,1.17972,18667 +2020-10-13 08:45,1.17971,1.17991,1.17918,1.17933,12596 +2020-10-13 09:00,1.17932,1.17956,1.17854,1.17947,18048 +2020-10-13 09:15,1.17948,1.17966,1.17904,1.17922,14519 +2020-10-13 09:30,1.17923,1.17942,1.17876,1.17912,14610 +2020-10-13 09:45,1.1791,1.1791,1.17862,1.17881,11998 +2020-10-13 10:00,1.1788,1.17917,1.17857,1.17892,12872 +2020-10-13 10:15,1.17891,1.17903,1.17855,1.17893,9480 +2020-10-13 10:30,1.17893,1.17918,1.17867,1.17872,10721 +2020-10-13 10:45,1.17872,1.17916,1.17866,1.17909,10374 +2020-10-13 11:00,1.1791,1.17948,1.1789,1.17947,14945 +2020-10-13 11:15,1.17948,1.17962,1.17899,1.17901,16282 +2020-10-13 11:30,1.179,1.17931,1.17832,1.17847,12437 +2020-10-13 11:45,1.17847,1.17894,1.17833,1.17882,15598 +2020-10-13 12:00,1.17883,1.17904,1.17861,1.17867,15004 +2020-10-13 12:15,1.17868,1.17955,1.1786,1.17935,12782 +2020-10-13 12:30,1.17934,1.17987,1.17921,1.17934,17259 +2020-10-13 12:45,1.17934,1.1795,1.17892,1.17909,14684 +2020-10-13 13:00,1.1791,1.1791,1.17784,1.17823,18362 +2020-10-13 13:15,1.17824,1.17826,1.17646,1.17672,26556 +2020-10-13 13:30,1.17672,1.17687,1.17477,1.17547,24752 +2020-10-13 13:45,1.17546,1.17576,1.17494,1.17542,27122 +2020-10-13 14:00,1.17541,1.17563,1.17414,1.17434,26437 +2020-10-13 14:15,1.17434,1.17538,1.1741,1.17534,27421 +2020-10-13 14:30,1.17534,1.17534,1.17437,1.17451,23926 +2020-10-13 14:45,1.17452,1.17453,1.17373,1.17442,25972 +2020-10-13 15:00,1.17443,1.17464,1.17386,1.17429,22475 +2020-10-13 15:15,1.1743,1.17443,1.17384,1.17405,20064 +2020-10-13 15:30,1.17404,1.17482,1.174,1.17429,17213 +2020-10-13 15:45,1.17428,1.17433,1.17351,1.17387,19785 +2020-10-13 16:00,1.17388,1.17388,1.17313,1.1735,19990 +2020-10-13 16:15,1.1735,1.17369,1.17304,1.17354,14340 +2020-10-13 16:30,1.17355,1.17369,1.17321,1.17355,14751 +2020-10-13 16:45,1.17355,1.17381,1.17332,1.17345,13069 +2020-10-13 17:00,1.17345,1.17347,1.17308,1.17345,12929 +2020-10-13 17:15,1.17346,1.17376,1.17343,1.17359,12979 +2020-10-13 17:30,1.17359,1.17376,1.17338,1.17368,11144 +2020-10-13 17:45,1.17366,1.17394,1.17361,1.17379,10503 +2020-10-13 18:00,1.17379,1.17397,1.17347,1.17395,10416 +2020-10-13 18:15,1.17396,1.17436,1.17383,1.17418,9546 +2020-10-13 18:30,1.17419,1.17446,1.1739,1.17438,11385 +2020-10-13 18:45,1.17438,1.1747,1.17435,1.17447,11246 +2020-10-13 19:00,1.17447,1.17478,1.17441,1.1745,8650 +2020-10-13 19:15,1.1745,1.17489,1.1745,1.17468,9567 +2020-10-13 19:30,1.17468,1.17493,1.17467,1.17478,6296 +2020-10-13 19:45,1.1748,1.17493,1.17476,1.17478,6800 +2020-10-13 20:00,1.17477,1.17493,1.17435,1.17436,4781 +2020-10-13 20:15,1.17436,1.17475,1.17433,1.17471,3635 +2020-10-13 20:30,1.17472,1.17477,1.17454,1.17466,3438 +2020-10-13 20:45,1.17466,1.17471,1.17432,1.1744,5579 +2020-10-13 21:00,1.17452,1.17466,1.17441,1.17454,56 +2020-10-13 21:15,1.17453,1.1747,1.17435,1.17437,210 +2020-10-13 21:30,1.17438,1.17464,1.17431,1.17459,218 +2020-10-13 21:45,1.17458,1.17464,1.17436,1.1745,673 +2020-10-13 22:00,1.17446,1.17454,1.17433,1.17444,1537 +2020-10-13 22:15,1.17443,1.17453,1.17433,1.17438,2575 +2020-10-13 22:30,1.17438,1.17452,1.17432,1.1745,4213 +2020-10-13 22:45,1.17449,1.17459,1.17436,1.17436,3554 +2020-10-13 23:00,1.17435,1.17444,1.17424,1.17428,4264 +2020-10-13 23:15,1.1743,1.17439,1.17419,1.1743,4611 +2020-10-13 23:30,1.1743,1.17432,1.17419,1.17424,3969 +2020-10-13 23:45,1.17425,1.17428,1.17413,1.1742,4168 +2020-10-14 00:00,1.17419,1.1745,1.17379,1.17436,9993 +2020-10-14 00:15,1.17436,1.17457,1.17434,1.17453,4906 +2020-10-14 00:30,1.17453,1.175,1.17448,1.17494,7366 +2020-10-14 00:45,1.17495,1.17509,1.17442,1.17453,12551 +2020-10-14 01:00,1.17453,1.17466,1.17428,1.1744,13576 +2020-10-14 01:15,1.1744,1.17446,1.17351,1.174,18932 +2020-10-14 01:30,1.174,1.17443,1.17372,1.17428,16027 +2020-10-14 01:45,1.17428,1.17446,1.17414,1.17428,17044 +2020-10-14 02:00,1.17429,1.1743,1.17389,1.17418,10900 +2020-10-14 02:15,1.17417,1.17438,1.17407,1.17415,10484 +2020-10-14 02:30,1.17416,1.17445,1.17408,1.1741,11962 +2020-10-14 02:45,1.1741,1.17445,1.1741,1.17431,9326 +2020-10-14 03:00,1.1743,1.17449,1.17422,1.17434,7618 +2020-10-14 03:15,1.17434,1.17453,1.1743,1.17447,8613 +2020-10-14 03:30,1.17448,1.17473,1.17438,1.17448,6666 +2020-10-14 03:45,1.1745,1.17462,1.17438,1.17439,5654 +2020-10-14 04:00,1.17438,1.17455,1.17428,1.17455,6217 +2020-10-14 04:15,1.17454,1.1747,1.17453,1.17459,6990 +2020-10-14 04:30,1.17458,1.17463,1.17446,1.17453,5853 +2020-10-14 04:45,1.17453,1.17456,1.17399,1.17425,5914 +2020-10-14 05:00,1.17426,1.17435,1.17396,1.1741,6260 +2020-10-14 05:15,1.1741,1.17429,1.17401,1.17424,10331 +2020-10-14 05:30,1.17425,1.17447,1.1741,1.17446,9314 +2020-10-14 05:45,1.17446,1.1747,1.17436,1.17453,10393 +2020-10-14 06:00,1.17455,1.17456,1.17401,1.17441,12162 +2020-10-14 06:15,1.1744,1.17467,1.17428,1.17451,14002 +2020-10-14 06:30,1.1745,1.17455,1.17417,1.17447,12562 +2020-10-14 06:45,1.17447,1.17456,1.17415,1.17441,15167 +2020-10-14 07:00,1.17439,1.17462,1.17324,1.1733,21257 +2020-10-14 07:15,1.17329,1.17372,1.17286,1.17362,19826 +2020-10-14 07:30,1.17361,1.17382,1.17296,1.17349,19819 +2020-10-14 07:45,1.1735,1.17416,1.17341,1.17416,19310 +2020-10-14 08:00,1.17416,1.17446,1.17368,1.17376,20660 +2020-10-14 08:15,1.17375,1.17453,1.17375,1.17453,19066 +2020-10-14 08:30,1.17454,1.17536,1.17444,1.17458,21911 +2020-10-14 08:45,1.17459,1.17484,1.17381,1.17404,20185 +2020-10-14 09:00,1.17403,1.17458,1.17245,1.17281,29877 +2020-10-14 09:15,1.17282,1.17319,1.1727,1.17281,24372 +2020-10-14 09:30,1.17282,1.17307,1.172,1.17208,20404 +2020-10-14 09:45,1.17208,1.17313,1.17199,1.17297,19349 +2020-10-14 10:00,1.17298,1.17346,1.17272,1.17288,19222 +2020-10-14 10:15,1.17286,1.17366,1.1728,1.17366,16702 +2020-10-14 10:30,1.17366,1.17367,1.17325,1.17344,19014 +2020-10-14 10:45,1.17343,1.17393,1.17336,1.17341,18646 +2020-10-14 11:00,1.17344,1.17427,1.1734,1.17425,13969 +2020-10-14 11:15,1.17426,1.1744,1.17389,1.17431,17247 +2020-10-14 11:30,1.1743,1.17447,1.17397,1.17427,16200 +2020-10-14 11:45,1.17428,1.17491,1.17418,1.17485,15473 +2020-10-14 12:00,1.17486,1.17506,1.17448,1.17498,16552 +2020-10-14 12:15,1.17498,1.17592,1.17487,1.17584,16277 +2020-10-14 12:30,1.17583,1.17669,1.17565,1.17669,21383 +2020-10-14 12:45,1.17669,1.1769,1.17609,1.17612,16504 +2020-10-14 13:00,1.17612,1.17639,1.17552,1.17578,13695 +2020-10-14 13:15,1.1758,1.17629,1.17574,1.17606,12559 +2020-10-14 13:30,1.17606,1.17616,1.17527,1.17615,15665 +2020-10-14 13:45,1.17615,1.17647,1.17602,1.17612,12752 +2020-10-14 14:00,1.17613,1.17647,1.17595,1.17627,13735 +2020-10-14 14:15,1.17627,1.17651,1.17571,1.17578,15031 +2020-10-14 14:30,1.17578,1.17675,1.17564,1.17675,18263 +2020-10-14 14:45,1.17674,1.1771,1.17579,1.17583,24675 +2020-10-14 15:00,1.17585,1.17677,1.17576,1.17655,17156 +2020-10-14 15:15,1.17653,1.17665,1.17597,1.17608,10306 +2020-10-14 15:30,1.17608,1.17629,1.17576,1.1761,14397 +2020-10-14 15:45,1.17609,1.1762,1.17531,1.1754,15815 +2020-10-14 16:00,1.17539,1.17595,1.17537,1.1757,11526 +2020-10-14 16:15,1.17569,1.17571,1.17454,1.17485,13145 +2020-10-14 16:30,1.17486,1.17521,1.17477,1.17506,11797 +2020-10-14 16:45,1.17506,1.17513,1.1747,1.17513,7552 +2020-10-14 17:00,1.17515,1.17571,1.17508,1.1756,10202 +2020-10-14 17:15,1.1756,1.17561,1.1752,1.17527,9211 +2020-10-14 17:30,1.17528,1.17534,1.17497,1.17513,7010 +2020-10-14 17:45,1.17513,1.17561,1.17508,1.17541,10615 +2020-10-14 18:00,1.1754,1.17543,1.175,1.17502,9109 +2020-10-14 18:15,1.17502,1.17513,1.17477,1.17498,7633 +2020-10-14 18:30,1.17498,1.17499,1.17438,1.1747,9621 +2020-10-14 18:45,1.17472,1.17521,1.17464,1.17505,11600 +2020-10-14 19:00,1.17503,1.17539,1.175,1.17531,13734 +2020-10-14 19:15,1.1753,1.17554,1.17512,1.17525,9212 +2020-10-14 19:30,1.17525,1.17537,1.17512,1.17527,9855 +2020-10-14 19:45,1.17527,1.17549,1.17513,1.17515,10512 +2020-10-14 20:00,1.17515,1.1753,1.17488,1.17492,6693 +2020-10-14 20:15,1.17491,1.175,1.17468,1.17478,5555 +2020-10-14 20:30,1.17479,1.1748,1.17443,1.17444,4963 +2020-10-14 20:45,1.17445,1.17469,1.17444,1.17452,3123 +2020-10-14 21:00,1.17452,1.17501,1.17452,1.17491,95 +2020-10-14 21:15,1.1749,1.17497,1.17472,1.17482,126 +2020-10-14 21:30,1.17483,1.17488,1.17453,1.17465,243 +2020-10-14 21:45,1.17472,1.17481,1.17467,1.17472,279 +2020-10-14 22:00,1.17472,1.17496,1.17472,1.17489,763 +2020-10-14 22:15,1.1749,1.17506,1.17474,1.17475,2865 +2020-10-14 22:30,1.17475,1.17479,1.17406,1.17411,2583 +2020-10-14 22:45,1.17411,1.17444,1.17411,1.17425,1602 +2020-10-14 23:00,1.17427,1.17456,1.17426,1.17439,6238 +2020-10-14 23:15,1.17439,1.17447,1.17429,1.17441,2939 +2020-10-14 23:30,1.17442,1.17448,1.17419,1.17423,3430 +2020-10-14 23:45,1.17424,1.17448,1.17421,1.17447,4264 +2020-10-15 00:00,1.17444,1.17507,1.17444,1.17503,6239 +2020-10-15 00:15,1.17505,1.17506,1.17463,1.17477,7027 +2020-10-15 00:30,1.17477,1.17515,1.1746,1.17481,6686 +2020-10-15 00:45,1.17481,1.17507,1.17458,1.17478,10383 +2020-10-15 01:00,1.17479,1.17529,1.17452,1.17523,10768 +2020-10-15 01:15,1.17523,1.1756,1.17502,1.17518,12922 +2020-10-15 01:30,1.17518,1.1752,1.17454,1.1748,9744 +2020-10-15 01:45,1.17479,1.17535,1.17463,1.17535,11392 +2020-10-15 02:00,1.17533,1.1754,1.175,1.17519,8246 +2020-10-15 02:15,1.17519,1.17521,1.17499,1.17501,6950 +2020-10-15 02:30,1.175,1.17535,1.17493,1.17523,5423 +2020-10-15 02:45,1.17521,1.17534,1.17429,1.17437,12557 +2020-10-15 03:00,1.17436,1.17494,1.17432,1.17491,6870 +2020-10-15 03:15,1.17492,1.17505,1.17482,1.17497,7649 +2020-10-15 03:30,1.17497,1.17503,1.17472,1.17483,5238 +2020-10-15 03:45,1.17486,1.17496,1.1748,1.17494,5670 +2020-10-15 04:00,1.17494,1.17499,1.17472,1.17477,6066 +2020-10-15 04:15,1.17477,1.17497,1.1747,1.17489,5698 +2020-10-15 04:30,1.17489,1.17513,1.17488,1.1751,5717 +2020-10-15 04:45,1.1751,1.17536,1.17505,1.17522,4913 +2020-10-15 05:00,1.17522,1.17545,1.17513,1.17536,9781 +2020-10-15 05:15,1.17537,1.17548,1.17528,1.17544,6370 +2020-10-15 05:30,1.17544,1.17559,1.17533,1.17555,5247 +2020-10-15 05:45,1.17555,1.17578,1.1754,1.17547,6135 +2020-10-15 06:00,1.17547,1.17547,1.17501,1.17509,14743 +2020-10-15 06:15,1.17508,1.17514,1.17466,1.17483,16128 +2020-10-15 06:30,1.17482,1.1749,1.17412,1.17438,13950 +2020-10-15 06:45,1.17438,1.17438,1.17352,1.17367,16702 +2020-10-15 07:00,1.17368,1.17425,1.17352,1.17425,20675 +2020-10-15 07:15,1.17423,1.17426,1.17314,1.17367,20484 +2020-10-15 07:30,1.17367,1.17412,1.17323,1.17393,18229 +2020-10-15 07:45,1.17393,1.17427,1.17343,1.17376,16156 +2020-10-15 08:00,1.17375,1.17375,1.17231,1.1729,16449 +2020-10-15 08:15,1.1729,1.17293,1.1714,1.17159,22353 +2020-10-15 08:30,1.1716,1.17165,1.17071,1.17095,21913 +2020-10-15 08:45,1.17097,1.17106,1.17032,1.17065,18511 +2020-10-15 09:00,1.17064,1.17092,1.17038,1.17092,19937 +2020-10-15 09:15,1.17091,1.17126,1.1705,1.17075,18006 +2020-10-15 09:30,1.17073,1.17117,1.17044,1.17115,15983 +2020-10-15 09:45,1.17114,1.17122,1.17065,1.17121,14663 +2020-10-15 10:00,1.17121,1.17122,1.17072,1.17094,12626 +2020-10-15 10:15,1.17094,1.17176,1.17059,1.17169,14304 +2020-10-15 10:30,1.17169,1.17253,1.17157,1.17221,13737 +2020-10-15 10:45,1.17223,1.17253,1.1717,1.17178,21222 +2020-10-15 11:00,1.17177,1.17221,1.1712,1.17121,16118 +2020-10-15 11:15,1.1712,1.17159,1.17101,1.17132,11968 +2020-10-15 11:30,1.17133,1.17177,1.17122,1.17137,13437 +2020-10-15 11:45,1.17136,1.17147,1.17065,1.17082,14216 +2020-10-15 12:00,1.17081,1.17083,1.16922,1.1698,16332 +2020-10-15 12:15,1.1698,1.17091,1.1694,1.17084,16679 +2020-10-15 12:30,1.17082,1.17118,1.17019,1.17071,17837 +2020-10-15 12:45,1.17072,1.17092,1.1698,1.16991,17071 +2020-10-15 13:00,1.16991,1.16994,1.16885,1.1692,15084 +2020-10-15 13:15,1.16919,1.16947,1.16891,1.16942,15411 +2020-10-15 13:30,1.16941,1.16984,1.16915,1.16947,24843 +2020-10-15 13:45,1.16946,1.1706,1.16946,1.16985,17034 +2020-10-15 14:00,1.16982,1.17044,1.16933,1.17014,20649 +2020-10-15 14:15,1.17014,1.1707,1.16949,1.16961,18603 +2020-10-15 14:30,1.16961,1.1697,1.16919,1.16927,22497 +2020-10-15 14:45,1.16926,1.17024,1.16884,1.16995,22250 +2020-10-15 15:00,1.16996,1.17006,1.16923,1.16956,19286 +2020-10-15 15:15,1.16957,1.17027,1.16955,1.17026,16977 +2020-10-15 15:30,1.17026,1.17061,1.16981,1.16994,14482 +2020-10-15 15:45,1.16995,1.17058,1.16992,1.16997,13670 +2020-10-15 16:00,1.16995,1.1705,1.16963,1.16966,14360 +2020-10-15 16:15,1.16967,1.16988,1.16943,1.16943,10299 +2020-10-15 16:30,1.16944,1.1697,1.16906,1.16964,10191 +2020-10-15 16:45,1.16965,1.16979,1.16949,1.16972,11958 +2020-10-15 17:00,1.16972,1.17027,1.1697,1.17027,10605 +2020-10-15 17:15,1.17027,1.17063,1.1702,1.1705,8766 +2020-10-15 17:30,1.17051,1.17051,1.16987,1.17,9376 +2020-10-15 17:45,1.17001,1.17013,1.16948,1.16952,10425 +2020-10-15 18:00,1.16954,1.16981,1.16926,1.1698,9454 +2020-10-15 18:15,1.1698,1.16999,1.16979,1.16999,6828 +2020-10-15 18:30,1.16998,1.17005,1.1697,1.16973,6346 +2020-10-15 18:45,1.16972,1.16981,1.16962,1.1697,4912 +2020-10-15 19:00,1.16969,1.16993,1.16963,1.16986,7253 +2020-10-15 19:15,1.16986,1.17051,1.1698,1.17042,6230 +2020-10-15 19:30,1.17041,1.17058,1.17033,1.17036,6158 +2020-10-15 19:45,1.17035,1.17057,1.17028,1.17048,5600 +2020-10-15 20:00,1.17048,1.17052,1.17024,1.17035,3434 +2020-10-15 20:15,1.17035,1.17087,1.17032,1.1708,3497 +2020-10-15 20:30,1.1708,1.17099,1.17074,1.1709,4427 +2020-10-15 20:45,1.17089,1.17093,1.17057,1.17073,1622 +2020-10-15 21:00,1.17073,1.171,1.17073,1.17083,527 +2020-10-15 21:15,1.17087,1.17088,1.17065,1.17079,91 +2020-10-15 21:30,1.17079,1.17089,1.17065,1.17084,186 +2020-10-15 21:45,1.17083,1.17102,1.17082,1.17098,169 +2020-10-15 22:00,1.17098,1.17107,1.17074,1.17076,1321 +2020-10-15 22:15,1.17076,1.17077,1.17069,1.17073,638 +2020-10-15 22:30,1.17073,1.17076,1.17053,1.17063,1137 +2020-10-15 22:45,1.17063,1.17068,1.17052,1.17056,1030 +2020-10-15 23:00,1.17058,1.17062,1.1705,1.17057,4312 +2020-10-15 23:15,1.17057,1.17086,1.17054,1.17077,5008 +2020-10-15 23:30,1.17078,1.17087,1.17064,1.17078,5091 +2020-10-15 23:45,1.17078,1.17078,1.17055,1.17064,3892 +2020-10-16 00:00,1.17065,1.17078,1.17012,1.17069,8549 +2020-10-16 00:15,1.1707,1.17073,1.17004,1.17024,7851 +2020-10-16 00:30,1.17024,1.17083,1.17017,1.17071,6995 +2020-10-16 00:45,1.17072,1.17124,1.17071,1.17119,7569 +2020-10-16 01:00,1.17119,1.17156,1.17106,1.17108,7558 +2020-10-16 01:15,1.17108,1.17141,1.17095,1.17118,7331 +2020-10-16 01:30,1.17118,1.17135,1.17077,1.17079,12839 +2020-10-16 01:45,1.17079,1.171,1.17072,1.1709,8865 +2020-10-16 02:00,1.17089,1.17089,1.17058,1.17078,7391 +2020-10-16 02:15,1.17079,1.17081,1.17031,1.17041,6978 +2020-10-16 02:30,1.17041,1.17045,1.17026,1.17041,6115 +2020-10-16 02:45,1.17042,1.17053,1.1702,1.17033,5990 +2020-10-16 03:00,1.17034,1.17055,1.17033,1.17036,6858 +2020-10-16 03:15,1.17037,1.17045,1.17019,1.17034,9203 +2020-10-16 03:30,1.17034,1.17058,1.1702,1.17054,6792 +2020-10-16 03:45,1.17055,1.17056,1.17021,1.17024,8059 +2020-10-16 04:00,1.17024,1.17042,1.1702,1.17034,7369 +2020-10-16 04:15,1.17033,1.17052,1.1703,1.17042,7304 +2020-10-16 04:30,1.17041,1.1705,1.17027,1.17041,7421 +2020-10-16 04:45,1.17041,1.17048,1.17024,1.17027,4363 +2020-10-16 05:00,1.17029,1.17061,1.17028,1.17056,4321 +2020-10-16 05:15,1.17057,1.17081,1.17049,1.17064,6229 +2020-10-16 05:30,1.17063,1.17074,1.17052,1.17062,7704 +2020-10-16 05:45,1.17062,1.17089,1.17045,1.17085,6517 +2020-10-16 06:00,1.17084,1.17095,1.17044,1.17048,7711 +2020-10-16 06:15,1.17048,1.17059,1.16956,1.16985,13644 +2020-10-16 06:30,1.16986,1.16993,1.16961,1.16972,8299 +2020-10-16 06:45,1.1697,1.17046,1.16939,1.17037,15370 +2020-10-16 07:00,1.17037,1.17101,1.17002,1.17082,21960 +2020-10-16 07:15,1.17081,1.17138,1.17051,1.17126,16198 +2020-10-16 07:30,1.17127,1.17152,1.17076,1.17123,12285 +2020-10-16 07:45,1.17122,1.17201,1.17111,1.17159,14470 +2020-10-16 08:00,1.17157,1.17184,1.17107,1.17111,14489 +2020-10-16 08:15,1.17111,1.17173,1.171,1.17138,12889 +2020-10-16 08:30,1.17139,1.17164,1.17091,1.17097,12519 +2020-10-16 08:45,1.17098,1.17117,1.17042,1.17046,12307 +2020-10-16 09:00,1.17045,1.17086,1.17025,1.17045,12626 +2020-10-16 09:15,1.17045,1.17125,1.17033,1.1711,10498 +2020-10-16 09:30,1.17111,1.17146,1.17109,1.17132,9708 +2020-10-16 09:45,1.17131,1.17134,1.17076,1.17102,9699 +2020-10-16 10:00,1.17102,1.17183,1.17079,1.17176,13753 +2020-10-16 10:15,1.17178,1.17225,1.17149,1.17214,13714 +2020-10-16 10:30,1.17214,1.17227,1.17183,1.17222,10235 +2020-10-16 10:45,1.17224,1.17237,1.17066,1.17179,23152 +2020-10-16 11:00,1.17178,1.17278,1.17134,1.17212,22872 +2020-10-16 11:15,1.17213,1.17332,1.17203,1.17298,19087 +2020-10-16 11:30,1.17298,1.17395,1.17298,1.17333,15448 +2020-10-16 11:45,1.17334,1.17366,1.17309,1.17313,9299 +2020-10-16 12:00,1.17316,1.17407,1.17316,1.17404,16504 +2020-10-16 12:15,1.17405,1.17462,1.17377,1.17408,17028 +2020-10-16 12:30,1.17409,1.17447,1.17378,1.17378,17176 +2020-10-16 12:45,1.17378,1.17382,1.17318,1.17327,14523 +2020-10-16 13:00,1.17326,1.17339,1.17253,1.17279,17560 +2020-10-16 13:15,1.17279,1.17384,1.17268,1.17355,17246 +2020-10-16 13:30,1.17356,1.17395,1.17269,1.173,17429 +2020-10-16 13:45,1.17302,1.17351,1.17279,1.173,12746 +2020-10-16 14:00,1.17301,1.17324,1.17246,1.17292,17146 +2020-10-16 14:15,1.17291,1.17359,1.17232,1.17262,20442 +2020-10-16 14:30,1.17262,1.17272,1.17134,1.17167,21521 +2020-10-16 14:45,1.17168,1.17222,1.1714,1.17203,22150 +2020-10-16 15:00,1.17201,1.17222,1.17168,1.17208,15435 +2020-10-16 15:15,1.17208,1.1721,1.17138,1.17164,10564 +2020-10-16 15:30,1.17163,1.17174,1.17147,1.17165,10686 +2020-10-16 15:45,1.17164,1.17195,1.17152,1.17161,8202 +2020-10-16 16:00,1.17159,1.17205,1.17146,1.17204,9122 +2020-10-16 16:15,1.17203,1.17248,1.17176,1.17237,9242 +2020-10-16 16:30,1.17234,1.17242,1.17156,1.17165,9425 +2020-10-16 16:45,1.17164,1.17217,1.17161,1.17189,10485 +2020-10-16 17:00,1.17187,1.17226,1.17186,1.17222,7326 +2020-10-16 17:15,1.17222,1.17227,1.17191,1.17201,6067 +2020-10-16 17:30,1.17201,1.17202,1.17176,1.17176,7274 +2020-10-16 17:45,1.17178,1.17188,1.17162,1.17167,5636 +2020-10-16 18:00,1.17167,1.17187,1.17153,1.17184,8398 +2020-10-16 18:15,1.17183,1.17222,1.17177,1.17213,8587 +2020-10-16 18:30,1.17213,1.17213,1.17188,1.17201,6510 +2020-10-16 18:45,1.17201,1.17222,1.1718,1.17187,6866 +2020-10-16 19:00,1.17187,1.17196,1.17162,1.17163,8500 +2020-10-16 19:15,1.17164,1.1718,1.1716,1.17173,6093 +2020-10-16 19:30,1.17172,1.17172,1.17148,1.17162,8845 +2020-10-16 19:45,1.17161,1.17191,1.17131,1.17188,11393 +2020-10-16 20:00,1.17186,1.17186,1.17139,1.17143,11109 +2020-10-16 20:15,1.17143,1.17155,1.17137,1.17141,7318 +2020-10-16 20:30,1.17142,1.17169,1.17138,1.1716,6969 +2020-10-16 20:45,1.17161,1.17179,1.1713,1.17132,9606 +2020-10-18 21:00,1.17181,1.17208,1.17176,1.17198,156 +2020-10-18 21:15,1.17195,1.17209,1.17176,1.17196,44 +2020-10-18 21:30,1.17197,1.17197,1.17181,1.17196,16 +2020-10-18 21:45,1.17196,1.172,1.17157,1.17181,96 +2020-10-18 22:00,1.17181,1.17198,1.17143,1.17147,560 +2020-10-18 22:15,1.17146,1.17177,1.17143,1.17166,373 +2020-10-18 22:30,1.17167,1.17179,1.17132,1.17143,1022 +2020-10-18 22:45,1.17143,1.17144,1.17122,1.17126,589 +2020-10-18 23:00,1.17129,1.17136,1.17117,1.17123,2058 +2020-10-18 23:15,1.17122,1.17145,1.17112,1.17139,2273 +2020-10-18 23:30,1.17139,1.17155,1.17133,1.1715,1095 +2020-10-18 23:45,1.1715,1.17158,1.17145,1.17156,502 +2020-10-19 00:00,1.17154,1.17226,1.17149,1.17191,4689 +2020-10-19 00:15,1.17193,1.17198,1.17179,1.17195,2964 +2020-10-19 00:30,1.17195,1.17201,1.17174,1.1718,3335 +2020-10-19 00:45,1.17179,1.17234,1.17176,1.17234,5536 +2020-10-19 01:00,1.17235,1.17249,1.17154,1.17183,9435 +2020-10-19 01:15,1.17184,1.17195,1.17154,1.1717,7833 +2020-10-19 01:30,1.1717,1.17197,1.17162,1.17169,8355 +2020-10-19 01:45,1.1717,1.17192,1.17143,1.17152,8096 +2020-10-19 02:00,1.17153,1.17153,1.17085,1.17141,8523 +2020-10-19 02:15,1.1714,1.17147,1.17114,1.17129,7710 +2020-10-19 02:30,1.1713,1.17138,1.17114,1.17125,6279 +2020-10-19 02:45,1.17126,1.17146,1.17111,1.17145,4822 +2020-10-19 03:00,1.17146,1.17146,1.17115,1.17117,4409 +2020-10-19 03:15,1.17116,1.1712,1.17071,1.17086,6016 +2020-10-19 03:30,1.17085,1.17085,1.17064,1.17072,5149 +2020-10-19 03:45,1.17072,1.17079,1.17057,1.17064,4916 +2020-10-19 04:00,1.17065,1.17073,1.17057,1.17068,2767 +2020-10-19 04:15,1.1707,1.1707,1.1705,1.17055,3158 +2020-10-19 04:30,1.17054,1.17066,1.17039,1.17063,3181 +2020-10-19 04:45,1.17061,1.17063,1.1705,1.17056,3105 +2020-10-19 05:00,1.17055,1.17081,1.17046,1.17071,4127 +2020-10-19 05:15,1.17071,1.17093,1.17067,1.17081,2931 +2020-10-19 05:30,1.1708,1.1712,1.17079,1.17117,4729 +2020-10-19 05:45,1.17116,1.1714,1.17106,1.17124,4278 +2020-10-19 06:00,1.17126,1.17126,1.17089,1.17093,7646 +2020-10-19 06:15,1.17095,1.17124,1.17083,1.17102,6194 +2020-10-19 06:30,1.17098,1.17107,1.17064,1.1709,7907 +2020-10-19 06:45,1.1709,1.17092,1.17031,1.17046,10344 +2020-10-19 07:00,1.17045,1.17154,1.17043,1.17096,11864 +2020-10-19 07:15,1.17097,1.1717,1.1709,1.17126,9403 +2020-10-19 07:30,1.17126,1.17201,1.1708,1.17189,9829 +2020-10-19 07:45,1.17188,1.17248,1.17184,1.1722,10907 +2020-10-19 08:00,1.17219,1.17282,1.17208,1.17274,6981 +2020-10-19 08:15,1.17273,1.17349,1.17273,1.17342,8369 +2020-10-19 08:30,1.17344,1.17375,1.17312,1.17361,7465 +2020-10-19 08:45,1.17362,1.1742,1.17348,1.17376,9670 +2020-10-19 09:00,1.17375,1.17425,1.17373,1.17394,8194 +2020-10-19 09:15,1.17396,1.17537,1.17395,1.17526,9012 +2020-10-19 09:30,1.17527,1.1762,1.17525,1.17604,12129 +2020-10-19 09:45,1.17609,1.17629,1.17552,1.17561,9439 +2020-10-19 10:00,1.17562,1.17589,1.17536,1.17537,9363 +2020-10-19 10:15,1.17539,1.17593,1.17526,1.17589,8906 +2020-10-19 10:30,1.17588,1.17614,1.17549,1.17573,9886 +2020-10-19 10:45,1.17574,1.17671,1.17558,1.17667,12101 +2020-10-19 11:00,1.17668,1.17683,1.17645,1.17664,8863 +2020-10-19 11:15,1.17665,1.17686,1.17656,1.17675,7078 +2020-10-19 11:30,1.17674,1.17874,1.17674,1.17856,12985 +2020-10-19 11:45,1.17859,1.17888,1.17809,1.17864,10158 +2020-10-19 12:00,1.17864,1.17878,1.1783,1.17843,10728 +2020-10-19 12:15,1.17844,1.17866,1.1781,1.17829,7977 +2020-10-19 12:30,1.1783,1.17842,1.17801,1.17816,6667 +2020-10-19 12:45,1.17815,1.17826,1.17743,1.17772,6591 +2020-10-19 13:00,1.17772,1.17838,1.17765,1.17781,8330 +2020-10-19 13:15,1.17782,1.17806,1.17768,1.17791,6463 +2020-10-19 13:30,1.17791,1.17851,1.17781,1.17826,16337 +2020-10-19 13:45,1.17827,1.1786,1.17812,1.17828,13052 +2020-10-19 14:00,1.1783,1.17833,1.17728,1.17813,15158 +2020-10-19 14:15,1.17812,1.17936,1.17798,1.17913,13004 +2020-10-19 14:30,1.17913,1.17932,1.178,1.17801,15684 +2020-10-19 14:45,1.178,1.17848,1.17764,1.17822,14369 +2020-10-19 15:00,1.17819,1.17859,1.17797,1.17837,13782 +2020-10-19 15:15,1.17838,1.1786,1.17795,1.17806,11973 +2020-10-19 15:30,1.17806,1.17862,1.17773,1.17853,11475 +2020-10-19 15:45,1.17852,1.17906,1.17846,1.17877,7848 +2020-10-19 16:00,1.17881,1.17903,1.17841,1.17846,8125 +2020-10-19 16:15,1.17848,1.17851,1.17802,1.17836,6902 +2020-10-19 16:30,1.17836,1.17863,1.17823,1.17844,7133 +2020-10-19 16:45,1.17843,1.17864,1.17817,1.17817,6199 +2020-10-19 17:00,1.17817,1.17853,1.17817,1.17834,7981 +2020-10-19 17:15,1.17834,1.17846,1.17816,1.17839,5915 +2020-10-19 17:30,1.1784,1.17841,1.17809,1.17814,8041 +2020-10-19 17:45,1.17813,1.17815,1.17784,1.17803,8160 +2020-10-19 18:00,1.17802,1.17811,1.17764,1.17805,7945 +2020-10-19 18:15,1.17805,1.17825,1.17791,1.17797,4815 +2020-10-19 18:30,1.17798,1.17799,1.17715,1.17715,8640 +2020-10-19 18:45,1.17715,1.17722,1.17669,1.17669,13899 +2020-10-19 19:00,1.17669,1.177,1.17643,1.177,14185 +2020-10-19 19:15,1.17698,1.17706,1.17682,1.17701,9103 +2020-10-19 19:30,1.17701,1.17722,1.17689,1.17712,6950 +2020-10-19 19:45,1.17712,1.17726,1.17674,1.17699,6429 +2020-10-19 20:00,1.17699,1.17702,1.17659,1.17688,5833 +2020-10-19 20:15,1.17689,1.17697,1.1768,1.17689,2886 +2020-10-19 20:30,1.17689,1.17727,1.17688,1.1772,1983 +2020-10-19 20:45,1.1772,1.17735,1.17695,1.17695,1928 +2020-10-19 21:00,1.17695,1.17725,1.17639,1.17705,139 +2020-10-19 21:15,1.17704,1.17704,1.17661,1.17661,177 +2020-10-19 21:30,1.17661,1.1767,1.17653,1.17661,81 +2020-10-19 21:45,1.17664,1.17676,1.1766,1.17667,874 +2020-10-19 22:00,1.17668,1.17707,1.17664,1.17697,509 +2020-10-19 22:15,1.17697,1.17709,1.1769,1.17705,353 +2020-10-19 22:30,1.17704,1.17704,1.17686,1.17687,826 +2020-10-19 22:45,1.17687,1.17691,1.1768,1.17682,248 +2020-10-19 23:00,1.17682,1.17691,1.17673,1.17689,1122 +2020-10-19 23:15,1.17688,1.17696,1.17668,1.17677,3052 +2020-10-19 23:30,1.17678,1.17698,1.17648,1.17694,4775 +2020-10-19 23:45,1.17695,1.17698,1.17675,1.17683,3993 +2020-10-20 00:00,1.17683,1.17743,1.17674,1.17732,8115 +2020-10-20 00:15,1.17733,1.17743,1.17712,1.17714,6541 +2020-10-20 00:30,1.17715,1.17734,1.177,1.17734,5865 +2020-10-20 00:45,1.17734,1.1776,1.17723,1.17749,9047 +2020-10-20 01:00,1.17748,1.17756,1.17702,1.17725,10048 +2020-10-20 01:15,1.17725,1.17754,1.17705,1.17714,8477 +2020-10-20 01:30,1.17714,1.17719,1.17683,1.17698,9275 +2020-10-20 01:45,1.17698,1.17698,1.17648,1.17666,10228 +2020-10-20 02:00,1.17666,1.17673,1.1764,1.17667,10123 +2020-10-20 02:15,1.17667,1.17686,1.17659,1.17678,5992 +2020-10-20 02:30,1.17679,1.17687,1.17659,1.17684,5094 +2020-10-20 02:45,1.17684,1.17694,1.17665,1.17687,5978 +2020-10-20 03:00,1.17687,1.17718,1.17677,1.17716,6124 +2020-10-20 03:15,1.17716,1.17716,1.17703,1.17713,4333 +2020-10-20 03:30,1.17714,1.17742,1.17707,1.17736,5186 +2020-10-20 03:45,1.17736,1.17767,1.17733,1.17761,4956 +2020-10-20 04:00,1.17761,1.17776,1.17731,1.17775,5348 +2020-10-20 04:15,1.17776,1.17779,1.17755,1.17768,3318 +2020-10-20 04:30,1.17768,1.17769,1.17755,1.17768,2816 +2020-10-20 04:45,1.17767,1.17776,1.17762,1.17771,2296 +2020-10-20 05:00,1.17771,1.17805,1.17767,1.17798,4771 +2020-10-20 05:15,1.17797,1.17805,1.17759,1.17762,5526 +2020-10-20 05:30,1.17762,1.17763,1.17733,1.17754,6699 +2020-10-20 05:45,1.17754,1.17794,1.17749,1.17774,6801 +2020-10-20 06:00,1.17776,1.17784,1.17701,1.17717,10658 +2020-10-20 06:15,1.17717,1.17771,1.17717,1.17748,11264 +2020-10-20 06:30,1.17748,1.17785,1.17723,1.17728,9671 +2020-10-20 06:45,1.17727,1.17745,1.17666,1.17671,7423 +2020-10-20 07:00,1.17671,1.17743,1.17633,1.17633,14561 +2020-10-20 07:15,1.17632,1.17659,1.17598,1.17643,15742 +2020-10-20 07:30,1.17645,1.17727,1.1763,1.17719,14974 +2020-10-20 07:45,1.17718,1.17785,1.17672,1.17767,13128 +2020-10-20 08:00,1.17767,1.17837,1.17703,1.17827,12309 +2020-10-20 08:15,1.17826,1.1786,1.17793,1.17833,13466 +2020-10-20 08:30,1.17834,1.17876,1.17764,1.17868,10274 +2020-10-20 08:45,1.17867,1.17934,1.17819,1.17819,12190 +2020-10-20 09:00,1.17818,1.17911,1.17809,1.17888,12137 +2020-10-20 09:15,1.17889,1.1797,1.17885,1.17969,13111 +2020-10-20 09:30,1.17968,1.1809,1.17968,1.18043,12965 +2020-10-20 09:45,1.18045,1.18077,1.18008,1.18063,8185 +2020-10-20 10:00,1.18063,1.18086,1.18037,1.18084,10607 +2020-10-20 10:15,1.18083,1.18178,1.18083,1.18146,11035 +2020-10-20 10:30,1.18147,1.18171,1.18092,1.18161,9376 +2020-10-20 10:45,1.18161,1.18173,1.18098,1.18135,9522 +2020-10-20 11:00,1.18136,1.18154,1.18095,1.18095,7595 +2020-10-20 11:15,1.18097,1.18126,1.18092,1.18126,7750 +2020-10-20 11:30,1.18126,1.18128,1.18009,1.18009,11456 +2020-10-20 11:45,1.18009,1.18088,1.18005,1.18056,13211 +2020-10-20 12:00,1.18057,1.18107,1.18024,1.18101,12527 +2020-10-20 12:15,1.181,1.18115,1.1805,1.18094,11705 +2020-10-20 12:30,1.18095,1.18161,1.18066,1.18154,13294 +2020-10-20 12:45,1.18154,1.18168,1.18083,1.18088,13209 +2020-10-20 13:00,1.18087,1.18156,1.18075,1.18119,12610 +2020-10-20 13:15,1.18119,1.18167,1.18101,1.18153,12227 +2020-10-20 13:30,1.18152,1.18202,1.18109,1.18178,21034 +2020-10-20 13:45,1.18179,1.18232,1.1814,1.18195,16733 +2020-10-20 14:00,1.18195,1.18298,1.18153,1.18297,15060 +2020-10-20 14:15,1.18298,1.18375,1.18281,1.18326,11191 +2020-10-20 14:30,1.18326,1.18407,1.18323,1.18377,9916 +2020-10-20 14:45,1.18375,1.18407,1.18302,1.18305,12375 +2020-10-20 15:00,1.18305,1.18329,1.18215,1.18265,11935 +2020-10-20 15:15,1.18262,1.18294,1.18221,1.18241,10564 +2020-10-20 15:30,1.18241,1.18271,1.18219,1.18264,9775 +2020-10-20 15:45,1.18263,1.18284,1.18228,1.18232,8644 +2020-10-20 16:00,1.18232,1.18281,1.18194,1.18271,9711 +2020-10-20 16:15,1.18271,1.18288,1.18228,1.18228,7371 +2020-10-20 16:30,1.18228,1.18316,1.18226,1.18316,9595 +2020-10-20 16:45,1.18316,1.18319,1.18261,1.18265,7240 +2020-10-20 17:00,1.18266,1.18327,1.18265,1.18319,9939 +2020-10-20 17:15,1.18319,1.18361,1.1831,1.18356,5965 +2020-10-20 17:30,1.18355,1.18357,1.18323,1.18336,7042 +2020-10-20 17:45,1.18335,1.18343,1.18309,1.18317,9210 +2020-10-20 18:00,1.18317,1.18347,1.18302,1.18346,7404 +2020-10-20 18:15,1.18346,1.18347,1.183,1.18302,8109 +2020-10-20 18:30,1.18302,1.18309,1.18283,1.18294,5679 +2020-10-20 18:45,1.18294,1.18299,1.18261,1.18272,7378 +2020-10-20 19:00,1.18272,1.18299,1.18257,1.18288,11766 +2020-10-20 19:15,1.18287,1.18287,1.18245,1.18249,12190 +2020-10-20 19:30,1.18248,1.18269,1.18221,1.18251,9542 +2020-10-20 19:45,1.1825,1.18262,1.1823,1.18242,8643 +2020-10-20 20:00,1.18244,1.18268,1.1824,1.18267,4826 +2020-10-20 20:15,1.18266,1.18267,1.18226,1.18236,3122 +2020-10-20 20:30,1.18236,1.18247,1.18216,1.18233,6801 +2020-10-20 20:45,1.18233,1.18243,1.18192,1.18211,3578 +2020-10-20 21:00,1.18214,1.18225,1.18209,1.1822,51 +2020-10-20 21:15,1.18221,1.18254,1.1822,1.18234,105 +2020-10-20 21:30,1.18235,1.18243,1.18215,1.18234,171 +2020-10-20 21:45,1.18234,1.18249,1.18216,1.18242,218 +2020-10-20 22:00,1.18229,1.18273,1.18222,1.18267,1393 +2020-10-20 22:15,1.18268,1.18282,1.18263,1.18264,3681 +2020-10-20 22:30,1.18263,1.18278,1.18255,1.18277,1611 +2020-10-20 22:45,1.18279,1.18289,1.18261,1.18279,1898 +2020-10-20 23:00,1.18279,1.18317,1.18274,1.183,3648 +2020-10-20 23:15,1.18302,1.18319,1.18294,1.18309,4577 +2020-10-20 23:30,1.1831,1.18314,1.18264,1.18268,4969 +2020-10-20 23:45,1.18269,1.18304,1.1826,1.1829,5459 +2020-10-21 00:00,1.18289,1.1832,1.1828,1.18318,8790 +2020-10-21 00:15,1.18319,1.18339,1.18311,1.18325,9947 +2020-10-21 00:30,1.18325,1.18349,1.18322,1.18335,9354 +2020-10-21 00:45,1.18333,1.18345,1.18311,1.18336,9931 +2020-10-21 01:00,1.18335,1.18341,1.18315,1.18329,10572 +2020-10-21 01:15,1.18331,1.1835,1.18301,1.18321,7569 +2020-10-21 01:30,1.1832,1.18389,1.1832,1.1838,7449 +2020-10-21 01:45,1.1838,1.18435,1.18354,1.18354,8386 +2020-10-21 02:00,1.18353,1.1842,1.1835,1.18418,7718 +2020-10-21 02:15,1.18418,1.18435,1.18404,1.18414,7755 +2020-10-21 02:30,1.18414,1.18417,1.18368,1.18385,7234 +2020-10-21 02:45,1.18385,1.18423,1.1837,1.18379,9439 +2020-10-21 03:00,1.18379,1.1843,1.18371,1.18422,8801 +2020-10-21 03:15,1.18421,1.18453,1.18415,1.18445,6057 +2020-10-21 03:30,1.18445,1.18482,1.18432,1.18467,7308 +2020-10-21 03:45,1.18468,1.18477,1.1845,1.18468,7682 +2020-10-21 04:00,1.18467,1.18473,1.18448,1.18452,6666 +2020-10-21 04:15,1.18453,1.18475,1.18443,1.18468,4358 +2020-10-21 04:30,1.18467,1.18481,1.18452,1.18472,8327 +2020-10-21 04:45,1.18474,1.18495,1.18471,1.18475,4063 +2020-10-21 05:00,1.18475,1.1849,1.1846,1.18474,7427 +2020-10-21 05:15,1.18474,1.18478,1.18427,1.18439,8148 +2020-10-21 05:30,1.18438,1.18475,1.18431,1.18473,8343 +2020-10-21 05:45,1.18472,1.18498,1.18454,1.18457,5278 +2020-10-21 06:00,1.18459,1.18543,1.18433,1.18526,11910 +2020-10-21 06:15,1.18527,1.18625,1.18512,1.18616,13429 +2020-10-21 06:30,1.18617,1.18627,1.18559,1.18602,14554 +2020-10-21 06:45,1.18603,1.18611,1.18543,1.18551,14202 +2020-10-21 07:00,1.1855,1.18625,1.18527,1.18594,19007 +2020-10-21 07:15,1.18595,1.18619,1.18488,1.18517,17134 +2020-10-21 07:30,1.18517,1.18584,1.18472,1.18548,17964 +2020-10-21 07:45,1.18549,1.18704,1.18506,1.18673,17672 +2020-10-21 08:00,1.18673,1.18673,1.18612,1.18667,16649 +2020-10-21 08:15,1.18666,1.18673,1.1855,1.18552,17770 +2020-10-21 08:30,1.18552,1.18601,1.18514,1.18593,13363 +2020-10-21 08:45,1.18595,1.18609,1.18492,1.18506,13955 +2020-10-21 09:00,1.18504,1.18563,1.18481,1.18486,16158 +2020-10-21 09:15,1.18485,1.18514,1.18441,1.18458,14108 +2020-10-21 09:30,1.18459,1.18484,1.18435,1.18451,15211 +2020-10-21 09:45,1.18451,1.18492,1.18439,1.18448,14171 +2020-10-21 10:00,1.1845,1.18516,1.18428,1.18495,11395 +2020-10-21 10:15,1.18496,1.18523,1.18475,1.18501,11904 +2020-10-21 10:30,1.18501,1.18562,1.18492,1.1856,12465 +2020-10-21 10:45,1.1856,1.18597,1.18552,1.18589,12123 +2020-10-21 11:00,1.18589,1.18609,1.18559,1.18588,13081 +2020-10-21 11:15,1.18587,1.186,1.18553,1.18565,10314 +2020-10-21 11:30,1.18565,1.18571,1.18509,1.18511,10124 +2020-10-21 11:45,1.1851,1.1852,1.18415,1.18504,16680 +2020-10-21 12:00,1.18505,1.18524,1.18464,1.18518,13568 +2020-10-21 12:15,1.18518,1.18611,1.18518,1.18594,14627 +2020-10-21 12:30,1.18595,1.1866,1.18591,1.18641,13432 +2020-10-21 12:45,1.1864,1.18652,1.1859,1.18625,12644 +2020-10-21 13:00,1.18626,1.1863,1.18514,1.18541,11169 +2020-10-21 13:15,1.18539,1.18543,1.18441,1.18452,15249 +2020-10-21 13:30,1.18453,1.18588,1.18442,1.18561,18067 +2020-10-21 13:45,1.1856,1.18623,1.18539,1.18606,16017 +2020-10-21 14:00,1.18606,1.18693,1.18577,1.18673,17344 +2020-10-21 14:15,1.18673,1.18754,1.18644,1.18712,17257 +2020-10-21 14:30,1.18712,1.18807,1.18702,1.18773,15349 +2020-10-21 14:45,1.18773,1.18799,1.18708,1.18737,16511 +2020-10-21 15:00,1.18737,1.18779,1.18695,1.18704,13464 +2020-10-21 15:15,1.18705,1.18713,1.18655,1.18675,14774 +2020-10-21 15:30,1.18674,1.18738,1.18665,1.18728,14365 +2020-10-21 15:45,1.18727,1.18735,1.18678,1.1869,9168 +2020-10-21 16:00,1.18691,1.18776,1.18691,1.18728,12547 +2020-10-21 16:15,1.18729,1.18793,1.18692,1.18786,13526 +2020-10-21 16:30,1.18785,1.18798,1.1873,1.18756,12687 +2020-10-21 16:45,1.18755,1.18771,1.18704,1.18733,13654 +2020-10-21 17:00,1.18733,1.18768,1.18713,1.1873,11041 +2020-10-21 17:15,1.18729,1.1873,1.18663,1.18707,9059 +2020-10-21 17:30,1.18707,1.18717,1.18661,1.1867,8832 +2020-10-21 17:45,1.18671,1.18695,1.18668,1.18669,7191 +2020-10-21 18:00,1.1867,1.18693,1.18664,1.18686,8092 +2020-10-21 18:15,1.18685,1.18691,1.18663,1.18676,7903 +2020-10-21 18:30,1.18675,1.18696,1.18656,1.18668,5158 +2020-10-21 18:45,1.18668,1.18668,1.18611,1.18612,5188 +2020-10-21 19:00,1.18611,1.18632,1.1861,1.18626,6363 +2020-10-21 19:15,1.18625,1.18628,1.18604,1.18624,5700 +2020-10-21 19:30,1.18623,1.1863,1.18567,1.18575,8230 +2020-10-21 19:45,1.18575,1.18605,1.18575,1.1859,8599 +2020-10-21 20:00,1.18591,1.18615,1.18559,1.18563,3208 +2020-10-21 20:15,1.18565,1.18571,1.1854,1.18559,2711 +2020-10-21 20:30,1.18559,1.18586,1.18557,1.18578,3348 +2020-10-21 20:45,1.18578,1.18619,1.18569,1.18598,3277 +2020-10-21 21:00,1.18569,1.18617,1.18539,1.18584,169 +2020-10-21 21:15,1.1859,1.1863,1.18572,1.18618,746 +2020-10-21 21:30,1.18618,1.18625,1.18557,1.18581,588 +2020-10-21 21:45,1.18581,1.18618,1.1858,1.18617,335 +2020-10-21 22:00,1.18616,1.18648,1.18601,1.18629,571 +2020-10-21 22:15,1.18629,1.18632,1.18624,1.18626,1211 +2020-10-21 22:30,1.18625,1.18632,1.18606,1.18616,1497 +2020-10-21 22:45,1.18618,1.18626,1.18591,1.18593,1368 +2020-10-21 23:00,1.18594,1.1861,1.1858,1.18585,2904 +2020-10-21 23:15,1.18586,1.18592,1.18563,1.18569,1965 +2020-10-21 23:30,1.1857,1.18578,1.18511,1.18523,7820 +2020-10-21 23:45,1.18523,1.18535,1.18504,1.18516,7783 +2020-10-22 00:00,1.18516,1.18524,1.18459,1.18471,9506 +2020-10-22 00:15,1.18472,1.18482,1.18441,1.18447,8454 +2020-10-22 00:30,1.18446,1.18473,1.18426,1.18457,7629 +2020-10-22 00:45,1.18455,1.18481,1.18426,1.18457,7607 +2020-10-22 01:00,1.18457,1.18503,1.18455,1.18497,8459 +2020-10-22 01:15,1.18497,1.18503,1.18452,1.18463,7970 +2020-10-22 01:30,1.18463,1.18509,1.18459,1.18471,10796 +2020-10-22 01:45,1.18472,1.18495,1.18447,1.18449,7961 +2020-10-22 02:00,1.1845,1.18451,1.18407,1.18423,10116 +2020-10-22 02:15,1.18423,1.18429,1.18382,1.18422,8200 +2020-10-22 02:30,1.18422,1.18445,1.18419,1.18429,7232 +2020-10-22 02:45,1.18428,1.18435,1.18413,1.18422,7453 +2020-10-22 03:00,1.18424,1.18428,1.18398,1.18412,3923 +2020-10-22 03:15,1.18413,1.1843,1.18398,1.18405,5212 +2020-10-22 03:30,1.18404,1.18425,1.18399,1.18422,4073 +2020-10-22 03:45,1.18422,1.18428,1.1841,1.18419,3229 +2020-10-22 04:00,1.18421,1.1843,1.1841,1.18425,5044 +2020-10-22 04:15,1.18423,1.18429,1.18412,1.18427,2297 +2020-10-22 04:30,1.18426,1.18446,1.18421,1.18441,3511 +2020-10-22 04:45,1.18441,1.18452,1.18437,1.18448,4831 +2020-10-22 05:00,1.18447,1.1846,1.18426,1.18454,5586 +2020-10-22 05:15,1.18453,1.1849,1.18448,1.18485,5886 +2020-10-22 05:30,1.18485,1.185,1.1848,1.18485,5115 +2020-10-22 05:45,1.18483,1.18489,1.18464,1.18482,6807 +2020-10-22 06:00,1.1848,1.18534,1.1848,1.18524,10188 +2020-10-22 06:15,1.18523,1.18568,1.1852,1.18546,8533 +2020-10-22 06:30,1.18546,1.18595,1.18546,1.18558,10583 +2020-10-22 06:45,1.18559,1.18573,1.18476,1.18483,9926 +2020-10-22 07:00,1.18482,1.18516,1.18402,1.18494,18927 +2020-10-22 07:15,1.18493,1.18628,1.18464,1.18606,16461 +2020-10-22 07:30,1.18604,1.18668,1.18571,1.18618,14202 +2020-10-22 07:45,1.18619,1.18668,1.18594,1.18614,13356 +2020-10-22 08:00,1.18612,1.18612,1.18494,1.18498,14726 +2020-10-22 08:15,1.185,1.18526,1.18451,1.18512,15606 +2020-10-22 08:30,1.18511,1.18538,1.18467,1.18489,9493 +2020-10-22 08:45,1.1849,1.18507,1.1842,1.18443,10811 +2020-10-22 09:00,1.18443,1.18456,1.18352,1.18371,14798 +2020-10-22 09:15,1.18372,1.18433,1.18367,1.18426,15004 +2020-10-22 09:30,1.18427,1.18427,1.18272,1.18295,14699 +2020-10-22 09:45,1.18295,1.18344,1.18272,1.18328,12430 +2020-10-22 10:00,1.18328,1.1833,1.18248,1.18267,13955 +2020-10-22 10:15,1.18266,1.18378,1.18261,1.1836,15092 +2020-10-22 10:30,1.18359,1.18408,1.18352,1.18363,11337 +2020-10-22 10:45,1.18363,1.18366,1.18289,1.18289,10402 +2020-10-22 11:00,1.18291,1.18296,1.18214,1.18232,10567 +2020-10-22 11:15,1.18232,1.18277,1.1821,1.18215,9646 +2020-10-22 11:30,1.18217,1.18271,1.18159,1.18257,15309 +2020-10-22 11:45,1.18259,1.18259,1.18177,1.18241,14243 +2020-10-22 12:00,1.18242,1.18276,1.18204,1.18205,14307 +2020-10-22 12:15,1.18205,1.18232,1.1818,1.18208,12761 +2020-10-22 12:30,1.18208,1.18249,1.18114,1.18247,18581 +2020-10-22 12:45,1.18245,1.1829,1.18208,1.18261,15967 +2020-10-22 13:00,1.18261,1.18338,1.1824,1.18282,15495 +2020-10-22 13:15,1.18281,1.18367,1.18261,1.18346,15749 +2020-10-22 13:30,1.18345,1.18347,1.18255,1.1826,22441 +2020-10-22 13:45,1.18262,1.18286,1.18216,1.18228,20573 +2020-10-22 14:00,1.18228,1.18255,1.1818,1.18255,22046 +2020-10-22 14:15,1.18255,1.18274,1.1819,1.18237,19556 +2020-10-22 14:30,1.18237,1.18248,1.18153,1.18159,23871 +2020-10-22 14:45,1.18159,1.18312,1.18157,1.18284,28647 +2020-10-22 15:00,1.18286,1.18293,1.18203,1.18277,20859 +2020-10-22 15:15,1.18277,1.18333,1.18211,1.1832,16350 +2020-10-22 15:30,1.18321,1.18331,1.18287,1.18294,14366 +2020-10-22 15:45,1.18294,1.18314,1.18225,1.1823,14787 +2020-10-22 16:00,1.18231,1.18246,1.18201,1.18216,11076 +2020-10-22 16:15,1.18216,1.18237,1.182,1.18236,6292 +2020-10-22 16:30,1.18235,1.18238,1.18196,1.18216,11075 +2020-10-22 16:45,1.18215,1.1825,1.18211,1.18221,10163 +2020-10-22 17:00,1.18221,1.18241,1.182,1.18236,11219 +2020-10-22 17:15,1.18236,1.18258,1.18233,1.18244,7100 +2020-10-22 17:30,1.18244,1.18261,1.1822,1.1822,6303 +2020-10-22 17:45,1.18222,1.18227,1.18186,1.18195,9189 +2020-10-22 18:00,1.18195,1.18216,1.18188,1.18192,7389 +2020-10-22 18:15,1.18193,1.18205,1.18183,1.18197,6782 +2020-10-22 18:30,1.18198,1.18215,1.18184,1.18188,7412 +2020-10-22 18:45,1.18186,1.18198,1.18163,1.18188,6649 +2020-10-22 19:00,1.18188,1.18189,1.18163,1.18173,7601 +2020-10-22 19:15,1.18174,1.1818,1.18157,1.18173,6175 +2020-10-22 19:30,1.18174,1.18201,1.18172,1.18196,5943 +2020-10-22 19:45,1.18195,1.18207,1.1818,1.18184,7413 +2020-10-22 20:00,1.18186,1.18209,1.1818,1.182,4266 +2020-10-22 20:15,1.18202,1.18205,1.18192,1.18198,3303 +2020-10-22 20:30,1.18198,1.18198,1.18178,1.18178,3317 +2020-10-22 20:45,1.18179,1.18195,1.18175,1.18177,3650 +2020-10-22 21:00,1.18177,1.1819,1.18174,1.1819,104 +2020-10-22 21:15,1.18199,1.18222,1.18184,1.18203,358 +2020-10-22 21:30,1.18199,1.18235,1.18191,1.18227,990 +2020-10-22 21:45,1.1823,1.1823,1.18184,1.18208,99 +2020-10-22 22:00,1.18209,1.18221,1.18203,1.18215,509 +2020-10-22 22:15,1.18217,1.18224,1.18213,1.18222,217 +2020-10-22 22:30,1.18221,1.18222,1.18193,1.18202,2784 +2020-10-22 22:45,1.18202,1.18232,1.18188,1.18227,2063 +2020-10-22 23:00,1.18226,1.18233,1.18193,1.18202,4645 +2020-10-22 23:15,1.18202,1.18215,1.18195,1.18205,4109 +2020-10-22 23:30,1.18205,1.18213,1.18192,1.18193,3132 +2020-10-22 23:45,1.18193,1.18193,1.1813,1.18146,7379 +2020-10-23 00:00,1.18143,1.18144,1.17916,1.17993,13811 +2020-10-23 00:15,1.17991,1.18003,1.17927,1.17965,10193 +2020-10-23 00:30,1.17965,1.17966,1.17866,1.17887,9965 +2020-10-23 00:45,1.17888,1.18012,1.17871,1.17998,13431 +2020-10-23 01:00,1.17997,1.18002,1.17949,1.17987,7975 +2020-10-23 01:15,1.17988,1.18038,1.17981,1.18025,9130 +2020-10-23 01:30,1.18024,1.18029,1.17997,1.18009,8446 +2020-10-23 01:45,1.18009,1.18044,1.17963,1.18039,8757 +2020-10-23 02:00,1.18041,1.18041,1.17976,1.18006,8174 +2020-10-23 02:15,1.18007,1.1804,1.18003,1.18018,10690 +2020-10-23 02:30,1.18018,1.18031,1.18007,1.18023,7493 +2020-10-23 02:45,1.18022,1.18037,1.17996,1.18037,7873 +2020-10-23 03:00,1.18036,1.18046,1.17996,1.17999,4899 +2020-10-23 03:15,1.17999,1.18013,1.17993,1.17999,7210 +2020-10-23 03:30,1.17998,1.18026,1.17995,1.18022,2382 +2020-10-23 03:45,1.18023,1.18023,1.17983,1.18004,6007 +2020-10-23 04:00,1.18003,1.18003,1.17955,1.1797,5452 +2020-10-23 04:15,1.17971,1.17986,1.1796,1.17976,4350 +2020-10-23 04:30,1.17977,1.18,1.17969,1.17977,5247 +2020-10-23 04:45,1.17979,1.1802,1.17978,1.18019,6078 +2020-10-23 05:00,1.18019,1.1803,1.18007,1.18026,6024 +2020-10-23 05:15,1.18026,1.18026,1.17988,1.17994,5673 +2020-10-23 05:30,1.17996,1.18007,1.17977,1.18005,4488 +2020-10-23 05:45,1.18004,1.18038,1.17997,1.18038,5264 +2020-10-23 06:00,1.18037,1.18038,1.17924,1.17937,13516 +2020-10-23 06:15,1.17938,1.17952,1.17915,1.17928,9770 +2020-10-23 06:30,1.17927,1.1798,1.17916,1.17967,8748 +2020-10-23 06:45,1.17969,1.18,1.17965,1.17987,10340 +2020-10-23 07:00,1.17988,1.18071,1.17968,1.17992,15631 +2020-10-23 07:15,1.17994,1.18077,1.17992,1.18041,17216 +2020-10-23 07:30,1.1806,1.18273,1.1806,1.18224,18772 +2020-10-23 07:45,1.18223,1.18308,1.18213,1.18283,13116 +2020-10-23 08:00,1.18285,1.1839,1.18277,1.18369,16965 +2020-10-23 08:15,1.18369,1.18465,1.18349,1.18428,17036 +2020-10-23 08:30,1.18427,1.18451,1.1837,1.18412,13058 +2020-10-23 08:45,1.18413,1.18422,1.18373,1.18385,11267 +2020-10-23 09:00,1.18385,1.18405,1.18342,1.18382,10825 +2020-10-23 09:15,1.18384,1.18527,1.18382,1.18486,13646 +2020-10-23 09:30,1.18484,1.18537,1.1847,1.18479,9627 +2020-10-23 09:45,1.18479,1.18492,1.18442,1.18463,11029 +2020-10-23 10:00,1.18463,1.18507,1.18451,1.18487,12499 +2020-10-23 10:15,1.18486,1.18488,1.18426,1.18428,9517 +2020-10-23 10:30,1.18429,1.18459,1.18412,1.18438,12029 +2020-10-23 10:45,1.18439,1.18481,1.18418,1.18477,10481 +2020-10-23 11:00,1.18476,1.18482,1.18424,1.18451,13578 +2020-10-23 11:15,1.18451,1.18489,1.18435,1.18457,12538 +2020-10-23 11:30,1.18458,1.18532,1.18457,1.18522,13016 +2020-10-23 11:45,1.18522,1.18525,1.18439,1.18449,12307 +2020-10-23 12:00,1.18449,1.18592,1.18446,1.18556,14726 +2020-10-23 12:15,1.18557,1.18599,1.18513,1.18587,19290 +2020-10-23 12:30,1.18585,1.18594,1.18499,1.1851,17560 +2020-10-23 12:45,1.18511,1.18533,1.18499,1.1853,14365 +2020-10-23 13:00,1.1853,1.18546,1.18468,1.18482,12866 +2020-10-23 13:15,1.18482,1.18513,1.18458,1.18503,11505 +2020-10-23 13:30,1.18503,1.18503,1.18397,1.18407,19717 +2020-10-23 13:45,1.18406,1.18433,1.18369,1.18389,19220 +2020-10-23 14:00,1.1839,1.18391,1.18251,1.18312,23823 +2020-10-23 14:15,1.18312,1.18324,1.18266,1.18276,18817 +2020-10-23 14:30,1.18276,1.18328,1.18258,1.18304,18791 +2020-10-23 14:45,1.18301,1.18356,1.18273,1.18353,19954 +2020-10-23 15:00,1.18354,1.18414,1.1833,1.18414,18436 +2020-10-23 15:15,1.18413,1.18426,1.18358,1.18421,15670 +2020-10-23 15:30,1.18418,1.18448,1.18386,1.18412,11649 +2020-10-23 15:45,1.18412,1.18429,1.18379,1.18429,11187 +2020-10-23 16:00,1.18428,1.18434,1.18376,1.18378,11200 +2020-10-23 16:15,1.18377,1.18397,1.18337,1.18393,8943 +2020-10-23 16:30,1.18396,1.18422,1.18379,1.18413,6734 +2020-10-23 16:45,1.18412,1.18443,1.18408,1.18432,5586 +2020-10-23 17:00,1.18433,1.18497,1.18423,1.18484,6514 +2020-10-23 17:15,1.18483,1.18573,1.18483,1.18556,7327 +2020-10-23 17:30,1.18555,1.18561,1.18535,1.18541,5125 +2020-10-23 17:45,1.18541,1.18564,1.18532,1.18554,3680 +2020-10-23 18:00,1.18553,1.18591,1.18548,1.18552,4501 +2020-10-23 18:15,1.18553,1.18606,1.18548,1.18603,5549 +2020-10-23 18:30,1.18604,1.18616,1.18597,1.18603,3847 +2020-10-23 18:45,1.18605,1.18615,1.1858,1.18586,5737 +2020-10-23 19:00,1.18585,1.18614,1.18583,1.18608,5875 +2020-10-23 19:15,1.18607,1.18609,1.18566,1.18581,4882 +2020-10-23 19:30,1.1858,1.18609,1.18569,1.18603,4947 +2020-10-23 19:45,1.18603,1.18627,1.18592,1.18624,3775 +2020-10-23 20:00,1.18626,1.18648,1.18605,1.18607,5898 +2020-10-23 20:15,1.18603,1.18613,1.18583,1.1861,8373 +2020-10-23 20:30,1.18612,1.18634,1.18606,1.18611,6012 +2020-10-23 20:45,1.1861,1.1862,1.1856,1.18572,10439 +2020-10-25 21:00,1.18546,1.18568,1.18529,1.18558,344 +2020-10-25 21:15,1.18558,1.18561,1.18532,1.18545,125 +2020-10-25 21:30,1.18545,1.18549,1.18515,1.18535,181 +2020-10-25 21:45,1.18535,1.1856,1.18529,1.18558,312 +2020-10-25 22:00,1.18569,1.18605,1.18491,1.18496,1506 +2020-10-25 22:15,1.18496,1.18497,1.18408,1.18463,2128 +2020-10-25 22:30,1.18464,1.18477,1.18435,1.18443,2152 +2020-10-25 22:45,1.18442,1.18472,1.18417,1.18417,2386 +2020-10-25 23:00,1.18419,1.18463,1.18419,1.18454,2360 +2020-10-25 23:15,1.18454,1.18455,1.18421,1.18438,3751 +2020-10-25 23:30,1.18439,1.18442,1.18392,1.18413,3567 +2020-10-25 23:45,1.18414,1.18486,1.18406,1.18479,2984 +2020-10-26 00:00,1.18479,1.18496,1.18467,1.18481,7758 +2020-10-26 00:15,1.18481,1.18504,1.18468,1.18468,7819 +2020-10-26 00:30,1.18467,1.18476,1.18447,1.18462,6322 +2020-10-26 00:45,1.18463,1.18483,1.18436,1.18443,7607 +2020-10-26 01:00,1.18444,1.18493,1.18441,1.18486,6618 +2020-10-26 01:15,1.18486,1.18488,1.18427,1.18432,7298 +2020-10-26 01:30,1.18432,1.18432,1.18338,1.18348,11312 +2020-10-26 01:45,1.18347,1.18411,1.18337,1.18397,6566 +2020-10-26 02:00,1.18395,1.18435,1.1839,1.18413,10821 +2020-10-26 02:15,1.18414,1.18432,1.1839,1.18427,7861 +2020-10-26 02:30,1.18428,1.18444,1.18403,1.18404,6171 +2020-10-26 02:45,1.18405,1.18416,1.18362,1.18363,8236 +2020-10-26 03:00,1.18363,1.18379,1.18362,1.18367,5552 +2020-10-26 03:15,1.18366,1.18366,1.18328,1.1833,8291 +2020-10-26 03:30,1.18333,1.18355,1.18329,1.18344,5003 +2020-10-26 03:45,1.18343,1.1835,1.18326,1.18336,4570 +2020-10-26 04:00,1.18336,1.18343,1.18322,1.1834,4996 +2020-10-26 04:15,1.1834,1.18369,1.18333,1.18366,4099 +2020-10-26 04:30,1.18366,1.18367,1.18352,1.18365,4446 +2020-10-26 04:45,1.18366,1.1837,1.18325,1.18329,5857 +2020-10-26 05:00,1.18327,1.18366,1.18326,1.18351,5381 +2020-10-26 05:15,1.18352,1.18361,1.18336,1.18354,5206 +2020-10-26 05:30,1.18354,1.18357,1.1831,1.18311,7746 +2020-10-26 05:45,1.18311,1.18331,1.1829,1.18312,5229 +2020-10-26 06:00,1.18313,1.18349,1.18304,1.18339,7952 +2020-10-26 06:15,1.1834,1.18368,1.18334,1.18365,6800 +2020-10-26 06:30,1.18364,1.18365,1.18317,1.18338,7419 +2020-10-26 06:45,1.18337,1.18359,1.18334,1.1834,8480 +2020-10-26 07:00,1.18342,1.18345,1.1828,1.183,10963 +2020-10-26 07:15,1.18303,1.18356,1.18279,1.18316,11847 +2020-10-26 07:30,1.18315,1.18442,1.18315,1.18409,15891 +2020-10-26 07:45,1.18409,1.18474,1.18324,1.18331,17059 +2020-10-26 08:00,1.1833,1.18361,1.18217,1.18314,22358 +2020-10-26 08:15,1.18312,1.18312,1.18159,1.18191,21442 +2020-10-26 08:30,1.18194,1.18252,1.18161,1.18187,17763 +2020-10-26 08:45,1.18186,1.18244,1.1813,1.18182,16272 +2020-10-26 09:00,1.18182,1.18205,1.18105,1.18151,17955 +2020-10-26 09:15,1.1815,1.18176,1.18065,1.18121,15901 +2020-10-26 09:30,1.18121,1.18121,1.18055,1.18078,13108 +2020-10-26 09:45,1.18078,1.18126,1.18056,1.181,17393 +2020-10-26 10:00,1.181,1.18104,1.18032,1.18059,12196 +2020-10-26 10:15,1.1806,1.18138,1.1805,1.18137,12892 +2020-10-26 10:30,1.18136,1.18195,1.18126,1.18186,11305 +2020-10-26 10:45,1.18186,1.18238,1.18178,1.18233,10362 +2020-10-26 11:00,1.18234,1.1827,1.18219,1.18234,11789 +2020-10-26 11:15,1.18233,1.1824,1.18192,1.18236,10206 +2020-10-26 11:30,1.18236,1.18278,1.18213,1.18251,11015 +2020-10-26 11:45,1.18251,1.18255,1.18199,1.18214,10145 +2020-10-26 12:00,1.18214,1.18234,1.18164,1.1818,13126 +2020-10-26 12:15,1.18179,1.18198,1.18149,1.18188,9278 +2020-10-26 12:30,1.18188,1.18206,1.18121,1.18133,9641 +2020-10-26 12:45,1.18132,1.1814,1.18056,1.18133,14273 +2020-10-26 13:00,1.18134,1.18197,1.18106,1.18185,13400 +2020-10-26 13:15,1.18185,1.18214,1.18149,1.18202,8566 +2020-10-26 13:30,1.182,1.18248,1.18149,1.18197,14714 +2020-10-26 13:45,1.18196,1.18228,1.18168,1.1817,12371 +2020-10-26 14:00,1.1817,1.18207,1.18147,1.18163,9866 +2020-10-26 14:15,1.18162,1.18196,1.1812,1.18122,11017 +2020-10-26 14:30,1.18125,1.18188,1.18111,1.18166,12232 +2020-10-26 14:45,1.18165,1.18171,1.18095,1.18125,16016 +2020-10-26 15:00,1.18125,1.18146,1.18085,1.18137,13715 +2020-10-26 15:15,1.18136,1.18137,1.18077,1.18112,11459 +2020-10-26 15:30,1.18113,1.18167,1.18082,1.18164,16856 +2020-10-26 15:45,1.18164,1.18226,1.18151,1.18154,15000 +2020-10-26 16:00,1.18154,1.18238,1.18151,1.18223,9855 +2020-10-26 16:15,1.18223,1.1823,1.18167,1.18197,8545 +2020-10-26 16:30,1.18196,1.18198,1.18163,1.18184,5546 +2020-10-26 16:45,1.18183,1.18241,1.18173,1.1824,6690 +2020-10-26 17:00,1.18239,1.18264,1.18205,1.18257,8570 +2020-10-26 17:15,1.18256,1.18256,1.18192,1.18203,8160 +2020-10-26 17:30,1.18202,1.18203,1.18142,1.18147,7375 +2020-10-26 17:45,1.18146,1.18171,1.18132,1.18158,6800 +2020-10-26 18:00,1.18158,1.18166,1.18133,1.18164,7548 +2020-10-26 18:15,1.18163,1.18181,1.18137,1.18148,6916 +2020-10-26 18:30,1.18148,1.18149,1.18108,1.1814,8024 +2020-10-26 18:45,1.1814,1.18143,1.18112,1.18129,9206 +2020-10-26 19:00,1.18129,1.18155,1.18111,1.18148,5397 +2020-10-26 19:15,1.18149,1.18157,1.1811,1.18116,7176 +2020-10-26 19:30,1.18115,1.18129,1.18098,1.18122,6440 +2020-10-26 19:45,1.18123,1.18132,1.18061,1.1807,6896 +2020-10-26 20:00,1.18069,1.18103,1.18062,1.18088,5715 +2020-10-26 20:15,1.18087,1.18088,1.18073,1.18077,5790 +2020-10-26 20:30,1.18078,1.18098,1.18065,1.18097,3695 +2020-10-26 20:45,1.18098,1.18102,1.18086,1.18086,2709 +2020-10-26 21:00,1.1809,1.18124,1.18079,1.18095,394 +2020-10-26 21:15,1.18092,1.18105,1.18084,1.18094,186 +2020-10-26 21:30,1.18097,1.18097,1.1809,1.18094,29 +2020-10-26 21:45,1.18094,1.18101,1.1809,1.18091,26 +2020-10-26 22:00,1.1808,1.18098,1.1808,1.18092,989 +2020-10-26 22:15,1.18091,1.18096,1.18087,1.18091,2211 +2020-10-26 22:30,1.18091,1.18103,1.18091,1.181,3786 +2020-10-26 22:45,1.18099,1.18101,1.18063,1.18072,4761 +2020-10-26 23:00,1.18072,1.18104,1.18069,1.18095,3373 +2020-10-26 23:15,1.18095,1.18099,1.1808,1.18096,4372 +2020-10-26 23:30,1.18096,1.1811,1.18091,1.18096,2694 +2020-10-26 23:45,1.18096,1.18101,1.18068,1.18091,5078 +2020-10-27 00:00,1.18092,1.18137,1.18077,1.18134,13700 +2020-10-27 00:15,1.18134,1.18155,1.18122,1.18143,9308 +2020-10-27 00:30,1.18141,1.18169,1.18135,1.18158,8421 +2020-10-27 00:45,1.18159,1.1821,1.18157,1.18207,11056 +2020-10-27 01:00,1.18208,1.18228,1.182,1.1821,6979 +2020-10-27 01:15,1.18209,1.18219,1.18188,1.18218,7083 +2020-10-27 01:30,1.18219,1.1822,1.18154,1.18209,15895 +2020-10-27 01:45,1.18209,1.1821,1.18179,1.18182,12651 +2020-10-27 02:00,1.18183,1.18241,1.18183,1.18239,10301 +2020-10-27 02:15,1.18238,1.18246,1.18218,1.18236,8903 +2020-10-27 02:30,1.18236,1.18248,1.18221,1.18237,6666 +2020-10-27 02:45,1.18236,1.18251,1.18225,1.18228,7435 +2020-10-27 03:00,1.18226,1.18226,1.18192,1.18193,7560 +2020-10-27 03:15,1.18194,1.18195,1.18172,1.18185,6383 +2020-10-27 03:30,1.18186,1.18205,1.18181,1.18199,6064 +2020-10-27 03:45,1.182,1.1821,1.18189,1.18206,7109 +2020-10-27 04:00,1.18205,1.18235,1.18205,1.18229,4425 +2020-10-27 04:15,1.18231,1.18245,1.18228,1.18235,5861 +2020-10-27 04:30,1.18237,1.18252,1.18223,1.18249,5764 +2020-10-27 04:45,1.1825,1.1825,1.18227,1.18245,6085 +2020-10-27 05:00,1.18245,1.18289,1.18244,1.18285,10235 +2020-10-27 05:15,1.18285,1.18291,1.18283,1.18288,6981 +2020-10-27 05:30,1.18288,1.18316,1.18284,1.18305,10431 +2020-10-27 05:45,1.18306,1.18347,1.18301,1.18335,12517 +2020-10-27 06:00,1.18334,1.18358,1.18327,1.18349,11906 +2020-10-27 06:15,1.18349,1.18356,1.18315,1.18323,9718 +2020-10-27 06:30,1.18322,1.18352,1.18315,1.1833,8366 +2020-10-27 06:45,1.1833,1.18331,1.18296,1.18318,6560 +2020-10-27 07:00,1.18317,1.18319,1.1824,1.1824,11398 +2020-10-27 07:15,1.18242,1.18256,1.1816,1.18164,11492 +2020-10-27 07:30,1.18164,1.18217,1.18154,1.18191,9621 +2020-10-27 07:45,1.18192,1.1824,1.1818,1.18183,12123 +2020-10-27 08:00,1.18184,1.18232,1.18013,1.18026,19670 +2020-10-27 08:15,1.18026,1.18076,1.17963,1.18032,18868 +2020-10-27 08:30,1.18032,1.18141,1.18013,1.18131,15662 +2020-10-27 08:45,1.18132,1.18132,1.18064,1.18093,11277 +2020-10-27 09:00,1.18092,1.18092,1.18007,1.18087,10533 +2020-10-27 09:15,1.18087,1.18139,1.18037,1.18126,11635 +2020-10-27 09:30,1.18126,1.1817,1.18073,1.18073,9429 +2020-10-27 09:45,1.18075,1.18135,1.18044,1.18087,9715 +2020-10-27 10:00,1.18086,1.18101,1.1805,1.18081,9932 +2020-10-27 10:15,1.1808,1.18116,1.18044,1.18101,9495 +2020-10-27 10:30,1.18101,1.18148,1.18073,1.18147,9658 +2020-10-27 10:45,1.18147,1.18163,1.18082,1.18144,9168 +2020-10-27 11:00,1.18143,1.18181,1.18138,1.18144,7588 +2020-10-27 11:15,1.18145,1.18207,1.18136,1.18185,6786 +2020-10-27 11:30,1.18184,1.18216,1.18171,1.18213,7853 +2020-10-27 11:45,1.18213,1.18269,1.18213,1.18238,9210 +2020-10-27 12:00,1.18238,1.18332,1.18238,1.18276,10303 +2020-10-27 12:15,1.18277,1.18316,1.18274,1.18303,10035 +2020-10-27 12:30,1.18307,1.1831,1.18249,1.18261,7688 +2020-10-27 12:45,1.18261,1.1828,1.18251,1.18273,7490 +2020-10-27 13:00,1.18271,1.18379,1.1826,1.18319,8551 +2020-10-27 13:15,1.18321,1.18342,1.18298,1.18299,9171 +2020-10-27 13:30,1.18299,1.18352,1.18242,1.18337,15147 +2020-10-27 13:45,1.18338,1.18365,1.18289,1.18346,14362 +2020-10-27 14:00,1.18347,1.18387,1.18321,1.18327,13170 +2020-10-27 14:15,1.18329,1.1833,1.18227,1.18229,14107 +2020-10-27 14:30,1.1823,1.18269,1.18199,1.1821,12930 +2020-10-27 14:45,1.18211,1.18273,1.18211,1.18241,12905 +2020-10-27 15:00,1.18241,1.18272,1.18206,1.18265,10449 +2020-10-27 15:15,1.18268,1.18273,1.18209,1.18243,10630 +2020-10-27 15:30,1.18243,1.18349,1.1824,1.18298,13273 +2020-10-27 15:45,1.18301,1.18337,1.1827,1.18336,14130 +2020-10-27 16:00,1.18336,1.18369,1.1831,1.18334,8878 +2020-10-27 16:15,1.18334,1.18357,1.18323,1.18325,10442 +2020-10-27 16:30,1.18327,1.18327,1.18236,1.18239,5331 +2020-10-27 16:45,1.18239,1.18292,1.18233,1.18291,7498 +2020-10-27 17:00,1.1829,1.18304,1.18278,1.18288,8163 +2020-10-27 17:15,1.18288,1.18298,1.18271,1.18296,6556 +2020-10-27 17:30,1.18296,1.183,1.18273,1.18277,6011 +2020-10-27 17:45,1.18276,1.18285,1.18244,1.18252,6052 +2020-10-27 18:00,1.18252,1.18277,1.18249,1.18273,3430 +2020-10-27 18:15,1.18274,1.18277,1.18254,1.18265,3309 +2020-10-27 18:30,1.18264,1.18265,1.1822,1.18229,4816 +2020-10-27 18:45,1.18227,1.1823,1.18119,1.1812,7636 +2020-10-27 19:00,1.18119,1.18138,1.18105,1.1813,5854 +2020-10-27 19:15,1.1813,1.18139,1.18126,1.18137,3772 +2020-10-27 19:30,1.18137,1.18159,1.18133,1.18145,3000 +2020-10-27 19:45,1.18146,1.18149,1.1808,1.18089,6212 +2020-10-27 20:00,1.1809,1.18099,1.18084,1.18097,4161 +2020-10-27 20:15,1.18097,1.18112,1.18097,1.18102,1917 +2020-10-27 20:30,1.18101,1.18157,1.18049,1.18054,3545 +2020-10-27 20:45,1.18054,1.18054,1.17927,1.1795,3060 +2020-10-27 21:00,1.17949,1.17978,1.17829,1.17842,2006 +2020-10-27 21:15,1.17845,1.17898,1.17834,1.17838,1647 +2020-10-27 21:30,1.17836,1.17901,1.17829,1.17886,819 +2020-10-27 21:45,1.17886,1.17888,1.17856,1.17871,1381 +2020-10-27 22:00,1.17871,1.17875,1.1777,1.17781,3820 +2020-10-27 22:15,1.17782,1.17787,1.17705,1.17712,7553 +2020-10-27 22:30,1.17712,1.17802,1.17695,1.17773,10264 +2020-10-27 22:45,1.17773,1.17821,1.17733,1.178,2943 +2020-10-27 23:00,1.17801,1.17803,1.17774,1.178,6710 +2020-10-27 23:15,1.178,1.17805,1.17783,1.1779,4100 +2020-10-27 23:30,1.17789,1.178,1.17783,1.17794,6406 +2020-10-27 23:45,1.17794,1.17821,1.17784,1.17815,6891 +2020-10-28 00:00,1.17818,1.17824,1.17726,1.17736,12718 +2020-10-28 00:15,1.17735,1.17813,1.17731,1.17813,6655 +2020-10-28 00:30,1.17812,1.17822,1.17737,1.17743,9710 +2020-10-28 00:45,1.17745,1.17823,1.17729,1.1779,12988 +2020-10-28 01:00,1.1779,1.17814,1.17772,1.17805,11123 +2020-10-28 01:15,1.17806,1.17875,1.17805,1.17864,10578 +2020-10-28 01:30,1.17864,1.17879,1.17818,1.17833,10668 +2020-10-28 01:45,1.17833,1.17836,1.17787,1.17799,9606 +2020-10-28 02:00,1.17799,1.17803,1.17771,1.178,10551 +2020-10-28 02:15,1.17799,1.17815,1.17787,1.178,6024 +2020-10-28 02:30,1.178,1.1782,1.17775,1.17795,8175 +2020-10-28 02:45,1.17795,1.17801,1.17777,1.1778,6973 +2020-10-28 03:00,1.17778,1.17779,1.17761,1.17764,5568 +2020-10-28 03:15,1.17765,1.17811,1.17764,1.17807,5305 +2020-10-28 03:30,1.17806,1.17807,1.17778,1.17783,5346 +2020-10-28 03:45,1.17784,1.17801,1.17763,1.17768,4712 +2020-10-28 04:00,1.17769,1.1778,1.17744,1.17774,5885 +2020-10-28 04:15,1.17774,1.17789,1.17771,1.17786,3457 +2020-10-28 04:30,1.17786,1.1781,1.17786,1.17801,4795 +2020-10-28 04:45,1.17799,1.17801,1.17784,1.17794,2349 +2020-10-28 05:00,1.17793,1.17798,1.17771,1.17782,6542 +2020-10-28 05:15,1.17781,1.17787,1.17759,1.17759,5948 +2020-10-28 05:30,1.17761,1.17817,1.17759,1.17815,5840 +2020-10-28 05:45,1.17816,1.17847,1.17804,1.17839,10548 +2020-10-28 06:00,1.1784,1.17844,1.17797,1.1783,9546 +2020-10-28 06:15,1.17831,1.17851,1.17819,1.17835,8677 +2020-10-28 06:30,1.17835,1.17845,1.17809,1.17834,6983 +2020-10-28 06:45,1.17833,1.17841,1.17647,1.17678,14190 +2020-10-28 07:00,1.17677,1.17781,1.17675,1.17744,16118 +2020-10-28 07:15,1.17743,1.17768,1.17691,1.1775,13213 +2020-10-28 07:30,1.1775,1.17758,1.17682,1.17715,12749 +2020-10-28 07:45,1.17716,1.17748,1.17693,1.17706,12430 +2020-10-28 08:00,1.17706,1.17707,1.1756,1.17595,19204 +2020-10-28 08:15,1.17593,1.17593,1.17498,1.17531,21712 +2020-10-28 08:30,1.1753,1.17627,1.17499,1.17609,23646 +2020-10-28 08:45,1.17608,1.17669,1.17559,1.17647,19300 +2020-10-28 09:00,1.17645,1.17649,1.1755,1.17563,17793 +2020-10-28 09:15,1.17564,1.17567,1.17459,1.17474,21737 +2020-10-28 09:30,1.17475,1.17532,1.17431,1.17461,19905 +2020-10-28 09:45,1.17461,1.1754,1.17455,1.17484,19382 +2020-10-28 10:00,1.17485,1.17487,1.17432,1.17467,19713 +2020-10-28 10:15,1.17468,1.17488,1.17415,1.17486,17617 +2020-10-28 10:30,1.17485,1.17529,1.17435,1.17451,14916 +2020-10-28 10:45,1.17451,1.17465,1.17374,1.17381,15635 +2020-10-28 11:00,1.1738,1.17398,1.17335,1.17375,20776 +2020-10-28 11:15,1.17375,1.17465,1.17352,1.17457,15193 +2020-10-28 11:30,1.17454,1.17464,1.17327,1.17327,16299 +2020-10-28 11:45,1.17328,1.17384,1.17298,1.17364,16401 +2020-10-28 12:00,1.17364,1.17366,1.17265,1.1728,13847 +2020-10-28 12:15,1.17279,1.173,1.17231,1.1724,15663 +2020-10-28 12:30,1.17241,1.17253,1.17192,1.17193,20553 +2020-10-28 12:45,1.17194,1.17284,1.17178,1.17266,16417 +2020-10-28 13:00,1.17267,1.17302,1.17223,1.17265,17702 +2020-10-28 13:15,1.17265,1.17333,1.17215,1.17321,16270 +2020-10-28 13:30,1.17321,1.17406,1.17307,1.17367,18028 +2020-10-28 13:45,1.17366,1.17386,1.17291,1.17342,19123 +2020-10-28 14:00,1.17342,1.17417,1.17307,1.17308,20312 +2020-10-28 14:15,1.17308,1.17324,1.17206,1.17267,19781 +2020-10-28 14:30,1.17267,1.17367,1.17244,1.1733,19818 +2020-10-28 14:45,1.17331,1.17337,1.17211,1.17326,18190 +2020-10-28 15:00,1.17325,1.17439,1.17311,1.17398,18875 +2020-10-28 15:15,1.17399,1.1742,1.17335,1.17348,11785 +2020-10-28 15:30,1.17348,1.17398,1.17307,1.17366,13884 +2020-10-28 15:45,1.17365,1.17515,1.1736,1.17506,17090 +2020-10-28 16:00,1.17508,1.17595,1.17478,1.17555,16769 +2020-10-28 16:15,1.17556,1.17603,1.17539,1.17588,8837 +2020-10-28 16:30,1.17587,1.17597,1.1747,1.17493,9882 +2020-10-28 16:45,1.17492,1.17525,1.17458,1.1751,9242 +2020-10-28 17:00,1.1751,1.17523,1.1747,1.17489,6521 +2020-10-28 17:15,1.17488,1.17516,1.17465,1.17479,8797 +2020-10-28 17:30,1.17478,1.17483,1.17456,1.17477,7590 +2020-10-28 17:45,1.17476,1.17506,1.17467,1.17504,8818 +2020-10-28 18:00,1.17505,1.17523,1.17484,1.17519,7977 +2020-10-28 18:15,1.17519,1.17562,1.17504,1.17555,5760 +2020-10-28 18:30,1.17554,1.17565,1.17528,1.17558,6262 +2020-10-28 18:45,1.17558,1.17581,1.17501,1.17507,13491 +2020-10-28 19:00,1.1751,1.17538,1.175,1.17506,11084 +2020-10-28 19:15,1.17505,1.17547,1.17492,1.1752,9388 +2020-10-28 19:30,1.1752,1.17557,1.175,1.17543,5809 +2020-10-28 19:45,1.17543,1.17543,1.17445,1.17467,8250 +2020-10-28 20:00,1.17466,1.17504,1.17447,1.17501,6158 +2020-10-28 20:15,1.17501,1.17509,1.17495,1.17495,3823 +2020-10-28 20:30,1.17494,1.17504,1.17481,1.17481,1663 +2020-10-28 20:45,1.1748,1.1748,1.17453,1.17457,2206 +2020-10-28 21:00,1.17457,1.17476,1.17434,1.17462,252 +2020-10-28 21:15,1.17462,1.17467,1.17459,1.17459,53 +2020-10-28 21:30,1.17463,1.17463,1.17454,1.17457,600 +2020-10-28 21:45,1.17458,1.1746,1.17452,1.17455,42 +2020-10-28 22:00,1.17451,1.175,1.17447,1.17492,1728 +2020-10-28 22:15,1.17494,1.17513,1.17491,1.17513,1947 +2020-10-28 22:30,1.17513,1.17535,1.17491,1.17491,1147 +2020-10-28 22:45,1.17492,1.175,1.17481,1.17482,1687 +2020-10-28 23:00,1.17483,1.17485,1.17446,1.17457,3013 +2020-10-28 23:15,1.17456,1.1746,1.1744,1.17453,1902 +2020-10-28 23:30,1.17454,1.17483,1.17449,1.17478,2589 +2020-10-28 23:45,1.17478,1.1749,1.17475,1.17482,3080 +2020-10-29 00:00,1.17482,1.17524,1.17437,1.17522,8905 +2020-10-29 00:15,1.17524,1.1756,1.17506,1.17537,5441 +2020-10-29 00:30,1.17538,1.17546,1.17508,1.17526,6615 +2020-10-29 00:45,1.17527,1.17563,1.17488,1.17514,6667 +2020-10-29 01:00,1.17515,1.17536,1.17494,1.17532,6718 +2020-10-29 01:15,1.17532,1.17538,1.17476,1.17477,7102 +2020-10-29 01:30,1.17479,1.17534,1.17479,1.17517,7218 +2020-10-29 01:45,1.17517,1.17587,1.17512,1.17569,6642 +2020-10-29 02:00,1.1757,1.17582,1.17527,1.17528,4134 +2020-10-29 02:15,1.17528,1.17555,1.17523,1.17554,3853 +2020-10-29 02:30,1.17554,1.17571,1.17549,1.17559,2567 +2020-10-29 02:45,1.17557,1.17557,1.17474,1.17476,3501 +2020-10-29 03:00,1.17479,1.17482,1.1744,1.17441,5193 +2020-10-29 03:15,1.17443,1.17523,1.1744,1.17517,3768 +2020-10-29 03:30,1.17517,1.17529,1.17502,1.17509,5328 +2020-10-29 03:45,1.17509,1.17523,1.17481,1.17522,4952 +2020-10-29 04:00,1.17523,1.17549,1.17522,1.17538,3239 +2020-10-29 04:15,1.17537,1.17549,1.17511,1.17544,3915 +2020-10-29 04:30,1.17543,1.1755,1.1751,1.17518,3966 +2020-10-29 04:45,1.17518,1.17549,1.17518,1.17527,4608 +2020-10-29 05:00,1.17528,1.17542,1.17501,1.17536,5761 +2020-10-29 05:15,1.17535,1.17535,1.17491,1.17501,5834 +2020-10-29 05:30,1.17501,1.17538,1.17491,1.17515,5982 +2020-10-29 05:45,1.17515,1.17548,1.17511,1.17547,4914 +2020-10-29 06:00,1.17547,1.17551,1.17507,1.17533,4042 +2020-10-29 06:15,1.17532,1.17569,1.17528,1.17561,7813 +2020-10-29 06:30,1.17561,1.17573,1.17537,1.17538,6834 +2020-10-29 06:45,1.17537,1.17568,1.17537,1.17547,5313 +2020-10-29 07:00,1.17546,1.17546,1.17422,1.17468,11825 +2020-10-29 07:15,1.17467,1.1753,1.17467,1.17519,11589 +2020-10-29 07:30,1.17518,1.17553,1.17456,1.17512,11800 +2020-10-29 07:45,1.17511,1.17525,1.17351,1.1736,13396 +2020-10-29 08:00,1.17361,1.17401,1.17266,1.17266,16772 +2020-10-29 08:15,1.17266,1.17333,1.17248,1.17322,21626 +2020-10-29 08:30,1.17322,1.17345,1.17275,1.17288,18914 +2020-10-29 08:45,1.17287,1.17343,1.1728,1.17292,13851 +2020-10-29 09:00,1.17291,1.17385,1.17289,1.17348,13247 +2020-10-29 09:15,1.17347,1.17371,1.1732,1.17323,13033 +2020-10-29 09:30,1.17323,1.17346,1.17281,1.17305,14257 +2020-10-29 09:45,1.17305,1.17318,1.17236,1.17257,11548 +2020-10-29 10:00,1.17258,1.17281,1.1721,1.17248,14797 +2020-10-29 10:15,1.17248,1.17279,1.1721,1.17272,11262 +2020-10-29 10:30,1.1727,1.17271,1.17207,1.17212,12700 +2020-10-29 10:45,1.17212,1.17242,1.17149,1.17173,11098 +2020-10-29 11:00,1.17172,1.17209,1.17131,1.17162,14169 +2020-10-29 11:15,1.17159,1.172,1.17105,1.17111,10952 +2020-10-29 11:30,1.1711,1.17115,1.17022,1.17078,11329 +2020-10-29 11:45,1.17079,1.17112,1.17018,1.17039,15294 +2020-10-29 12:00,1.17038,1.17064,1.17001,1.17035,10963 +2020-10-29 12:15,1.17034,1.1704,1.16951,1.17022,9270 +2020-10-29 12:30,1.17022,1.17141,1.16988,1.17029,11258 +2020-10-29 12:45,1.17033,1.17172,1.16973,1.17041,11594 +2020-10-29 13:00,1.17041,1.17057,1.16907,1.17041,11205 +2020-10-29 13:15,1.1704,1.17109,1.17028,1.17088,12562 +2020-10-29 13:30,1.17088,1.17144,1.16882,1.17,28922 +2020-10-29 13:45,1.17001,1.17054,1.16798,1.16916,24453 +2020-10-29 14:00,1.16918,1.17002,1.1683,1.16855,15345 +2020-10-29 14:15,1.16855,1.16859,1.16745,1.16849,13246 +2020-10-29 14:30,1.1685,1.16948,1.168,1.16935,14184 +2020-10-29 14:45,1.16936,1.16944,1.16753,1.16838,14880 +2020-10-29 15:00,1.16839,1.16845,1.16662,1.16701,12003 +2020-10-29 15:15,1.16702,1.16722,1.16602,1.16647,10180 +2020-10-29 15:30,1.16647,1.1665,1.16569,1.16586,10626 +2020-10-29 15:45,1.16587,1.16628,1.16548,1.1657,13945 +2020-10-29 16:00,1.16571,1.16641,1.16563,1.16636,13333 +2020-10-29 16:15,1.16635,1.16656,1.16579,1.16584,10754 +2020-10-29 16:30,1.16585,1.16637,1.16569,1.16594,6969 +2020-10-29 16:45,1.16594,1.16647,1.16588,1.16606,7099 +2020-10-29 17:00,1.16605,1.16615,1.1652,1.1656,6694 +2020-10-29 17:15,1.16561,1.16598,1.16554,1.16559,6094 +2020-10-29 17:30,1.16559,1.1656,1.16501,1.16528,5116 +2020-10-29 17:45,1.16528,1.16583,1.16512,1.16579,6326 +2020-10-29 18:00,1.1658,1.16603,1.16576,1.16593,5978 +2020-10-29 18:15,1.16592,1.16703,1.16592,1.16698,5263 +2020-10-29 18:30,1.16696,1.16742,1.16692,1.16724,4821 +2020-10-29 18:45,1.16723,1.16737,1.16697,1.16702,3764 +2020-10-29 19:00,1.16701,1.16755,1.16701,1.16728,6553 +2020-10-29 19:15,1.16727,1.16738,1.16712,1.16733,4112 +2020-10-29 19:30,1.16733,1.16759,1.16731,1.16745,5010 +2020-10-29 19:45,1.16748,1.16783,1.16737,1.16742,4587 +2020-10-29 20:00,1.16742,1.16768,1.16732,1.16744,4230 +2020-10-29 20:15,1.16744,1.16751,1.16726,1.16747,2050 +2020-10-29 20:30,1.16748,1.16754,1.16707,1.16732,2483 +2020-10-29 20:45,1.16732,1.16741,1.16709,1.16731,2157 +2020-10-29 21:00,1.16743,1.1675,1.16684,1.16729,291 +2020-10-29 21:15,1.16729,1.16742,1.16705,1.16721,135 +2020-10-29 21:30,1.1672,1.16744,1.1672,1.16726,1145 +2020-10-29 21:45,1.16726,1.16752,1.16716,1.16741,337 +2020-10-29 22:00,1.1674,1.16742,1.16704,1.16704,1177 +2020-10-29 22:15,1.16704,1.1671,1.1668,1.16685,1166 +2020-10-29 22:30,1.16685,1.16699,1.16684,1.16694,1217 +2020-10-29 22:45,1.16695,1.16702,1.1669,1.16696,1455 +2020-10-29 23:00,1.16697,1.16739,1.1669,1.16732,5237 +2020-10-29 23:15,1.16732,1.16756,1.16727,1.16747,1112 +2020-10-29 23:30,1.16747,1.16772,1.16743,1.16771,1138 +2020-10-29 23:45,1.16771,1.16789,1.16743,1.16783,2986 +2020-10-30 00:00,1.16782,1.16782,1.16686,1.16716,7941 +2020-10-30 00:15,1.16716,1.16747,1.1671,1.16725,7295 +2020-10-30 00:30,1.16726,1.16742,1.16705,1.1672,5168 +2020-10-30 00:45,1.16721,1.1677,1.16715,1.16741,8656 +2020-10-30 01:00,1.16741,1.16775,1.16725,1.16744,8659 +2020-10-30 01:15,1.16744,1.16768,1.16724,1.1675,7640 +2020-10-30 01:30,1.16751,1.16826,1.16747,1.16818,10958 +2020-10-30 01:45,1.16818,1.16849,1.1681,1.16841,9847 +2020-10-30 02:00,1.16841,1.16882,1.16812,1.16871,7082 +2020-10-30 02:15,1.16873,1.16899,1.16861,1.16888,6040 +2020-10-30 02:30,1.16888,1.16898,1.1687,1.1687,3565 +2020-10-30 02:45,1.1687,1.1687,1.16838,1.16856,5603 +2020-10-30 03:00,1.16858,1.16897,1.1685,1.16888,5025 +2020-10-30 03:15,1.16888,1.16927,1.16871,1.16911,5030 +2020-10-30 03:30,1.16911,1.16945,1.16905,1.16913,6139 +2020-10-30 03:45,1.16911,1.1692,1.169,1.16903,4444 +2020-10-30 04:00,1.16904,1.16913,1.1688,1.16882,3418 +2020-10-30 04:15,1.16884,1.16896,1.16874,1.16879,3460 +2020-10-30 04:30,1.16878,1.16881,1.16848,1.16848,4560 +2020-10-30 04:45,1.16851,1.16851,1.16811,1.16814,4895 +2020-10-30 05:00,1.16815,1.16832,1.16781,1.16791,6864 +2020-10-30 05:15,1.16791,1.16817,1.16749,1.16782,8360 +2020-10-30 05:30,1.16783,1.16811,1.16756,1.16778,12533 +2020-10-30 05:45,1.16778,1.16833,1.16778,1.16807,11007 +2020-10-30 06:00,1.16806,1.16843,1.1676,1.16842,11906 +2020-10-30 06:15,1.16842,1.16842,1.16797,1.16828,6591 +2020-10-30 06:30,1.16828,1.16842,1.16793,1.16807,5253 +2020-10-30 06:45,1.16808,1.16818,1.16755,1.16781,6495 +2020-10-30 07:00,1.16781,1.16783,1.16673,1.16682,11103 +2020-10-30 07:15,1.16683,1.16755,1.16649,1.16724,10048 +2020-10-30 07:30,1.16721,1.16835,1.1672,1.16781,12001 +2020-10-30 07:45,1.1678,1.16807,1.16717,1.16765,9578 +2020-10-30 08:00,1.16765,1.16837,1.16762,1.16821,16101 +2020-10-30 08:15,1.16821,1.16834,1.16665,1.16691,18487 +2020-10-30 08:30,1.1669,1.16747,1.16656,1.16696,14473 +2020-10-30 08:45,1.16696,1.16734,1.16604,1.16686,13912 +2020-10-30 09:00,1.16688,1.16778,1.16688,1.16734,14767 +2020-10-30 09:15,1.16734,1.16769,1.16702,1.16718,16092 +2020-10-30 09:30,1.16717,1.16827,1.16717,1.16824,15086 +2020-10-30 09:45,1.16823,1.16825,1.16726,1.16731,10280 +2020-10-30 10:00,1.16733,1.16756,1.16663,1.16669,14009 +2020-10-30 10:15,1.1667,1.16737,1.16645,1.16715,12322 +2020-10-30 10:30,1.16716,1.16747,1.16674,1.16679,11033 +2020-10-30 10:45,1.1668,1.16751,1.16666,1.16728,16410 +2020-10-30 11:00,1.16728,1.16774,1.16679,1.16704,15984 +2020-10-30 11:15,1.16703,1.16732,1.16647,1.16718,14980 +2020-10-30 11:30,1.16719,1.16728,1.16671,1.16696,12412 +2020-10-30 11:45,1.16696,1.16738,1.16666,1.16723,13037 +2020-10-30 12:00,1.16723,1.1676,1.16703,1.16743,10077 +2020-10-30 12:15,1.16744,1.16754,1.16707,1.16748,9629 +2020-10-30 12:30,1.16748,1.16818,1.16736,1.16809,12327 +2020-10-30 12:45,1.16809,1.17042,1.1678,1.16992,18225 +2020-10-30 13:00,1.16992,1.17027,1.1695,1.16982,15081 +2020-10-30 13:15,1.16981,1.16981,1.16844,1.16856,13216 +2020-10-30 13:30,1.16855,1.16894,1.16771,1.16818,15466 +2020-10-30 13:45,1.16819,1.16898,1.16804,1.16867,15150 +2020-10-30 14:00,1.16868,1.16895,1.1678,1.16799,16954 +2020-10-30 14:15,1.16799,1.16824,1.1676,1.16776,14082 +2020-10-30 14:30,1.16778,1.16814,1.16754,1.16804,15304 +2020-10-30 14:45,1.16804,1.16808,1.1676,1.16778,16789 +2020-10-30 15:00,1.16777,1.1688,1.16762,1.16847,21579 +2020-10-30 15:15,1.16846,1.16851,1.16787,1.16796,15536 +2020-10-30 15:30,1.16796,1.16798,1.16596,1.16605,23125 +2020-10-30 15:45,1.16606,1.16648,1.1642,1.16467,24640 +2020-10-30 16:00,1.16467,1.16566,1.16443,1.16471,19124 +2020-10-30 16:15,1.1647,1.16541,1.16465,1.16521,13669 +2020-10-30 16:30,1.16521,1.16537,1.1647,1.16516,9784 +2020-10-30 16:45,1.16517,1.16536,1.16491,1.16509,9850 +2020-10-30 17:00,1.16508,1.16512,1.16421,1.16451,8500 +2020-10-30 17:15,1.1645,1.16468,1.16426,1.16457,6901 +2020-10-30 17:30,1.16456,1.16456,1.164,1.16417,7829 +2020-10-30 17:45,1.16417,1.16462,1.16417,1.16457,8553 +2020-10-30 18:00,1.16456,1.16467,1.16426,1.16442,6750 +2020-10-30 18:15,1.16441,1.16459,1.16422,1.16436,5894 +2020-10-30 18:30,1.16434,1.1647,1.1643,1.1645,8345 +2020-10-30 18:45,1.16451,1.16479,1.16433,1.1644,8152 +2020-10-30 19:00,1.1644,1.16488,1.16439,1.16484,9524 +2020-10-30 19:15,1.16483,1.16501,1.16474,1.16486,7553 +2020-10-30 19:30,1.16487,1.16505,1.16464,1.16498,7269 +2020-10-30 19:45,1.16498,1.16508,1.16449,1.16463,7035 +2020-10-30 20:00,1.16463,1.16486,1.16434,1.16481,11888 +2020-10-30 20:15,1.16482,1.16482,1.16455,1.16476,5886 +2020-10-30 20:30,1.16476,1.16482,1.16455,1.16459,6080 +2020-10-30 20:45,1.16458,1.16478,1.16417,1.16431,8232 +2020-11-01 22:00,1.16498,1.16503,1.16476,1.16488,97 +2020-11-01 22:15,1.16487,1.16493,1.16457,1.16458,76 +2020-11-01 22:30,1.16459,1.16468,1.16443,1.16457,75 +2020-11-01 22:45,1.16456,1.1646,1.16434,1.16439,128 +2020-11-01 23:00,1.16439,1.16455,1.16403,1.16421,2291 +2020-11-01 23:15,1.16422,1.16454,1.16415,1.16454,1850 +2020-11-01 23:30,1.16455,1.16459,1.16398,1.164,2951 +2020-11-01 23:45,1.164,1.16416,1.16386,1.16416,3504 +2020-11-02 00:00,1.16415,1.16466,1.16409,1.16421,10698 +2020-11-02 00:15,1.16422,1.16446,1.16396,1.16408,6891 +2020-11-02 00:30,1.16407,1.16417,1.16385,1.16386,7326 +2020-11-02 00:45,1.16385,1.16432,1.16377,1.16416,5797 +2020-11-02 01:00,1.16416,1.1648,1.16398,1.16477,8065 +2020-11-02 01:15,1.16477,1.16487,1.16424,1.16424,7054 +2020-11-02 01:30,1.16425,1.1645,1.16415,1.16421,6786 +2020-11-02 01:45,1.16421,1.16466,1.16416,1.16417,7417 +2020-11-02 02:00,1.16418,1.16432,1.16413,1.16423,5621 +2020-11-02 02:15,1.16424,1.16429,1.1639,1.16415,6424 +2020-11-02 02:30,1.16414,1.16452,1.16413,1.1643,7415 +2020-11-02 02:45,1.16431,1.16471,1.16429,1.16439,5326 +2020-11-02 03:00,1.16438,1.16442,1.16408,1.16419,5495 +2020-11-02 03:15,1.16419,1.16431,1.16409,1.16417,2104 +2020-11-02 03:30,1.16418,1.16419,1.16395,1.16406,2037 +2020-11-02 03:45,1.16405,1.16409,1.16392,1.16405,4694 +2020-11-02 04:00,1.16404,1.16404,1.16361,1.16362,4577 +2020-11-02 04:15,1.16363,1.16368,1.16345,1.16352,5438 +2020-11-02 04:30,1.1635,1.16362,1.1631,1.16318,5614 +2020-11-02 04:45,1.16318,1.16342,1.163,1.1631,7200 +2020-11-02 05:00,1.16309,1.16346,1.16307,1.16337,6911 +2020-11-02 05:15,1.16339,1.16352,1.16332,1.16342,5474 +2020-11-02 05:30,1.16342,1.16363,1.1633,1.1633,4513 +2020-11-02 05:45,1.16329,1.16393,1.16325,1.16371,8120 +2020-11-02 06:00,1.16372,1.16392,1.16354,1.1636,9080 +2020-11-02 06:15,1.16359,1.16379,1.16347,1.16352,7012 +2020-11-02 06:30,1.16353,1.16401,1.16335,1.1636,7540 +2020-11-02 06:45,1.16361,1.1643,1.16352,1.16429,10112 +2020-11-02 07:00,1.16429,1.16436,1.16382,1.16396,11647 +2020-11-02 07:15,1.16395,1.16421,1.1637,1.16389,10531 +2020-11-02 07:30,1.1639,1.1639,1.16303,1.1632,13597 +2020-11-02 07:45,1.16321,1.16398,1.16269,1.16301,12202 +2020-11-02 08:00,1.16299,1.16356,1.16251,1.16347,16974 +2020-11-02 08:15,1.16347,1.16361,1.16276,1.16305,14798 +2020-11-02 08:30,1.16304,1.16304,1.16221,1.16255,12977 +2020-11-02 08:45,1.16257,1.16351,1.16233,1.16332,14377 +2020-11-02 09:00,1.16331,1.16437,1.1632,1.1643,13801 +2020-11-02 09:15,1.16431,1.16445,1.1638,1.16432,11053 +2020-11-02 09:30,1.16432,1.16492,1.16409,1.16436,14071 +2020-11-02 09:45,1.16435,1.16453,1.16376,1.16402,15445 +2020-11-02 10:00,1.16402,1.16477,1.16385,1.16435,14774 +2020-11-02 10:15,1.16436,1.16465,1.16384,1.16387,13488 +2020-11-02 10:30,1.16387,1.16432,1.16381,1.16386,9149 +2020-11-02 10:45,1.16386,1.16509,1.16381,1.16478,11279 +2020-11-02 11:00,1.16476,1.16488,1.16451,1.16456,12251 +2020-11-02 11:15,1.16454,1.16528,1.16446,1.16505,10938 +2020-11-02 11:30,1.16503,1.16544,1.16484,1.16533,14726 +2020-11-02 11:45,1.16533,1.16557,1.16508,1.1651,13725 +2020-11-02 12:00,1.16511,1.16543,1.16476,1.16528,13716 +2020-11-02 12:15,1.16527,1.16534,1.1649,1.16505,12886 +2020-11-02 12:30,1.16502,1.16514,1.16447,1.16457,10461 +2020-11-02 12:45,1.16458,1.16489,1.16426,1.16458,11484 +2020-11-02 13:00,1.16458,1.16524,1.16457,1.16522,11053 +2020-11-02 13:15,1.16521,1.16524,1.16458,1.16462,11892 +2020-11-02 13:30,1.16463,1.1647,1.16395,1.16396,11721 +2020-11-02 13:45,1.16396,1.16438,1.16361,1.16371,11918 +2020-11-02 14:00,1.1637,1.16386,1.1632,1.16363,14246 +2020-11-02 14:15,1.16362,1.16363,1.16292,1.16322,12940 +2020-11-02 14:30,1.16322,1.16376,1.16303,1.16318,15749 +2020-11-02 14:45,1.16318,1.16346,1.16306,1.1632,10978 +2020-11-02 15:00,1.16319,1.16375,1.16298,1.16333,13513 +2020-11-02 15:15,1.16334,1.16378,1.16301,1.16319,15034 +2020-11-02 15:30,1.16319,1.16319,1.16259,1.16297,12408 +2020-11-02 15:45,1.16297,1.16382,1.1625,1.16357,17012 +2020-11-02 16:00,1.16358,1.16406,1.16312,1.16397,13692 +2020-11-02 16:15,1.16397,1.16398,1.16318,1.16339,11580 +2020-11-02 16:30,1.16338,1.16338,1.16282,1.16331,12121 +2020-11-02 16:45,1.16331,1.16357,1.16313,1.16332,9847 +2020-11-02 17:00,1.16333,1.16343,1.16291,1.163,9432 +2020-11-02 17:15,1.163,1.16329,1.163,1.16315,8257 +2020-11-02 17:30,1.16316,1.16321,1.16258,1.16277,8121 +2020-11-02 17:45,1.16276,1.16282,1.16238,1.16277,8115 +2020-11-02 18:00,1.16277,1.16277,1.16248,1.16265,8002 +2020-11-02 18:15,1.16263,1.16285,1.16254,1.16268,6148 +2020-11-02 18:30,1.16268,1.16269,1.16228,1.16251,5073 +2020-11-02 18:45,1.16249,1.1625,1.16232,1.16245,4398 +2020-11-02 19:00,1.16244,1.16271,1.16238,1.1626,5351 +2020-11-02 19:15,1.16261,1.16301,1.16258,1.16299,3131 +2020-11-02 19:30,1.163,1.16318,1.16293,1.16314,5963 +2020-11-02 19:45,1.16314,1.16326,1.16293,1.16308,7927 +2020-11-02 20:00,1.16309,1.16343,1.16303,1.16328,9185 +2020-11-02 20:15,1.1633,1.16359,1.16328,1.16358,5370 +2020-11-02 20:30,1.16357,1.16364,1.16323,1.1635,5236 +2020-11-02 20:45,1.16349,1.16409,1.16348,1.16377,7924 +2020-11-02 21:00,1.16377,1.16399,1.16369,1.16388,3330 +2020-11-02 21:15,1.16389,1.16406,1.16389,1.16401,2317 +2020-11-02 21:30,1.16401,1.16401,1.16368,1.16384,2416 +2020-11-02 21:45,1.16383,1.16411,1.16374,1.16404,1541 +2020-11-02 22:00,1.16404,1.16413,1.16318,1.16387,489 +2020-11-02 22:15,1.16388,1.16408,1.16383,1.16384,41 +2020-11-02 22:30,1.16385,1.16405,1.16375,1.16405,86 +2020-11-02 22:45,1.16404,1.16406,1.164,1.16404,42 +2020-11-02 23:00,1.16404,1.16424,1.16399,1.16415,1892 +2020-11-02 23:15,1.16415,1.16418,1.16393,1.16394,4566 +2020-11-02 23:30,1.16393,1.16415,1.16393,1.16401,2423 +2020-11-02 23:45,1.16401,1.16421,1.16397,1.16404,3893 +2020-11-03 00:00,1.16405,1.16417,1.16372,1.16384,6676 +2020-11-03 00:15,1.16386,1.16455,1.16381,1.16442,5963 +2020-11-03 00:30,1.16443,1.16444,1.16403,1.16421,4554 +2020-11-03 00:45,1.16421,1.16435,1.1641,1.16422,5155 +2020-11-03 01:00,1.16422,1.16456,1.16408,1.16429,7170 +2020-11-03 01:15,1.16428,1.16479,1.16426,1.16471,7134 +2020-11-03 01:30,1.16469,1.16483,1.16448,1.16458,9215 +2020-11-03 01:45,1.16458,1.16511,1.16448,1.16499,6594 +2020-11-03 02:00,1.16499,1.1652,1.16482,1.16499,8653 +2020-11-03 02:15,1.165,1.16516,1.16483,1.16483,6800 +2020-11-03 02:30,1.16482,1.165,1.16477,1.165,4501 +2020-11-03 02:45,1.16501,1.1652,1.16486,1.16509,5440 +2020-11-03 03:00,1.1651,1.1651,1.16472,1.16479,5289 +2020-11-03 03:15,1.16478,1.16526,1.16473,1.16522,2279 +2020-11-03 03:30,1.16521,1.16545,1.16497,1.16503,6633 +2020-11-03 03:45,1.16503,1.16524,1.16483,1.16514,4061 +2020-11-03 04:00,1.16515,1.16543,1.16514,1.16535,3190 +2020-11-03 04:15,1.16535,1.16535,1.16497,1.16512,3569 +2020-11-03 04:30,1.16512,1.16527,1.16509,1.16519,2402 +2020-11-03 04:45,1.16518,1.16523,1.1649,1.16495,2315 +2020-11-03 05:00,1.16494,1.16541,1.16492,1.16538,5062 +2020-11-03 05:15,1.16539,1.16577,1.16519,1.16569,4505 +2020-11-03 05:30,1.16569,1.16596,1.16553,1.16567,4074 +2020-11-03 05:45,1.16567,1.16586,1.1654,1.16548,5153 +2020-11-03 06:00,1.16547,1.16568,1.16533,1.16549,3983 +2020-11-03 06:15,1.1655,1.16555,1.16532,1.16552,4061 +2020-11-03 06:30,1.16553,1.16594,1.16548,1.16592,4132 +2020-11-03 06:45,1.16592,1.16659,1.16591,1.16604,8491 +2020-11-03 07:00,1.16605,1.16625,1.16583,1.16594,11568 +2020-11-03 07:15,1.16593,1.16628,1.16582,1.16616,7740 +2020-11-03 07:30,1.16616,1.1667,1.16589,1.16661,7843 +2020-11-03 07:45,1.16661,1.16726,1.16648,1.16714,10336 +2020-11-03 08:00,1.16713,1.16742,1.16665,1.16703,11347 +2020-11-03 08:15,1.16702,1.16886,1.16698,1.16867,13637 +2020-11-03 08:30,1.16865,1.16875,1.16803,1.16835,11565 +2020-11-03 08:45,1.16836,1.16857,1.16803,1.16837,10441 +2020-11-03 09:00,1.16838,1.16868,1.16785,1.16853,11652 +2020-11-03 09:15,1.16854,1.16943,1.1684,1.16903,11204 +2020-11-03 09:30,1.16903,1.16946,1.1689,1.16934,12316 +2020-11-03 09:45,1.16933,1.16976,1.16924,1.16966,12158 +2020-11-03 10:00,1.16965,1.16976,1.16917,1.16937,10542 +2020-11-03 10:15,1.16936,1.16982,1.1693,1.16953,8976 +2020-11-03 10:30,1.16952,1.16984,1.16933,1.16941,8902 +2020-11-03 10:45,1.16941,1.16984,1.1694,1.16974,9498 +2020-11-03 11:00,1.16973,1.17025,1.16956,1.16999,11864 +2020-11-03 11:15,1.16999,1.17056,1.16979,1.17041,9755 +2020-11-03 11:30,1.17042,1.1718,1.1704,1.17134,11806 +2020-11-03 11:45,1.17133,1.17133,1.17057,1.17068,9118 +2020-11-03 12:00,1.17069,1.17102,1.17056,1.17056,10985 +2020-11-03 12:15,1.17055,1.17117,1.17023,1.17066,10400 +2020-11-03 12:30,1.17066,1.17066,1.17011,1.17033,8721 +2020-11-03 12:45,1.17035,1.17058,1.16986,1.16992,8509 +2020-11-03 13:00,1.16992,1.17052,1.16992,1.17021,9694 +2020-11-03 13:15,1.17023,1.17092,1.17007,1.17082,9434 +2020-11-03 13:30,1.17083,1.17134,1.17042,1.17046,10874 +2020-11-03 13:45,1.17045,1.17076,1.17022,1.17045,8964 +2020-11-03 14:00,1.17044,1.17092,1.17025,1.17049,7850 +2020-11-03 14:15,1.17048,1.17182,1.17026,1.1718,8050 +2020-11-03 14:30,1.1718,1.1722,1.1715,1.17174,11939 +2020-11-03 14:45,1.17174,1.17175,1.17113,1.17114,8441 +2020-11-03 15:00,1.17115,1.17237,1.17113,1.17206,9839 +2020-11-03 15:15,1.17207,1.17247,1.17165,1.17181,11121 +2020-11-03 15:30,1.17182,1.17249,1.17182,1.17211,7875 +2020-11-03 15:45,1.1721,1.17353,1.17201,1.17296,11261 +2020-11-03 16:00,1.17295,1.17357,1.17265,1.17339,7454 +2020-11-03 16:15,1.17338,1.17397,1.17288,1.1729,6245 +2020-11-03 16:30,1.17289,1.17301,1.17229,1.17233,5929 +2020-11-03 16:45,1.17233,1.17248,1.17213,1.17235,6920 +2020-11-03 17:00,1.17236,1.17285,1.1723,1.17255,7012 +2020-11-03 17:15,1.17254,1.17291,1.17246,1.1728,4328 +2020-11-03 17:30,1.1728,1.17281,1.17206,1.17208,4818 +2020-11-03 17:45,1.17208,1.1721,1.17082,1.17094,7794 +2020-11-03 18:00,1.17096,1.17128,1.1707,1.17079,5204 +2020-11-03 18:15,1.1708,1.17091,1.1702,1.17044,5788 +2020-11-03 18:30,1.17044,1.17067,1.17037,1.17049,4502 +2020-11-03 18:45,1.1705,1.17052,1.16996,1.16996,6735 +2020-11-03 19:00,1.16997,1.17028,1.16987,1.17001,3924 +2020-11-03 19:15,1.17,1.17036,1.16989,1.17036,3127 +2020-11-03 19:30,1.17037,1.17043,1.17016,1.17033,5209 +2020-11-03 19:45,1.17035,1.17058,1.17007,1.17049,5890 +2020-11-03 20:00,1.17049,1.17057,1.17021,1.17022,4227 +2020-11-03 20:15,1.17021,1.17023,1.16957,1.16997,4814 +2020-11-03 20:30,1.16999,1.17021,1.16986,1.17008,5973 +2020-11-03 20:45,1.17008,1.17027,1.17001,1.17023,7483 +2020-11-03 21:00,1.17022,1.17151,1.17009,1.17116,4260 +2020-11-03 21:15,1.17115,1.17167,1.17115,1.17164,3333 +2020-11-03 21:30,1.17165,1.17206,1.17158,1.17198,3363 +2020-11-03 21:45,1.17198,1.17225,1.17141,1.1715,1694 +2020-11-03 22:00,1.1715,1.17181,1.17136,1.17179,50 +2020-11-03 22:15,1.1718,1.17217,1.1717,1.17199,93 +2020-11-03 22:30,1.17199,1.17236,1.17162,1.17212,349 +2020-11-03 22:45,1.17202,1.17279,1.17197,1.17279,182 +2020-11-03 23:00,1.1728,1.17423,1.17246,1.17422,3228 +2020-11-03 23:15,1.17422,1.17497,1.17414,1.17493,6361 +2020-11-03 23:30,1.17492,1.17639,1.1749,1.17532,7511 +2020-11-03 23:45,1.17531,1.17617,1.17502,1.17616,3698 +2020-11-04 00:00,1.17617,1.17704,1.1734,1.17663,12628 +2020-11-04 00:15,1.17662,1.17685,1.17396,1.17458,19226 +2020-11-04 00:30,1.17457,1.17486,1.17112,1.17152,17458 +2020-11-04 00:45,1.17153,1.17253,1.16884,1.16893,19825 +2020-11-04 01:00,1.16892,1.17264,1.1685,1.17117,14760 +2020-11-04 01:15,1.17117,1.17162,1.1676,1.16834,22963 +2020-11-04 01:30,1.1683,1.16957,1.16744,1.16903,25425 +2020-11-04 01:45,1.16902,1.17035,1.16802,1.16836,19959 +2020-11-04 02:00,1.16837,1.16858,1.16775,1.16849,17969 +2020-11-04 02:15,1.16849,1.16851,1.16338,1.16405,24678 +2020-11-04 02:30,1.16407,1.16433,1.16026,1.1615,19372 +2020-11-04 02:45,1.16151,1.16407,1.16099,1.16192,15612 +2020-11-04 03:00,1.16189,1.16407,1.16155,1.16374,18569 +2020-11-04 03:15,1.16375,1.1665,1.16375,1.16507,20914 +2020-11-04 03:30,1.16508,1.1659,1.16368,1.16468,17960 +2020-11-04 03:45,1.16468,1.16475,1.16328,1.16446,17037 +2020-11-04 04:00,1.16445,1.16477,1.16383,1.16458,13217 +2020-11-04 04:15,1.16458,1.16605,1.16311,1.16569,17387 +2020-11-04 04:30,1.16567,1.16762,1.16529,1.16566,16175 +2020-11-04 04:45,1.16565,1.16647,1.16483,1.16542,11949 +2020-11-04 05:00,1.16541,1.16818,1.16483,1.16732,19628 +2020-11-04 05:15,1.16734,1.16756,1.16614,1.16678,14543 +2020-11-04 05:30,1.16678,1.16695,1.1658,1.16597,18073 +2020-11-04 05:45,1.16599,1.16641,1.16498,1.16587,24775 +2020-11-04 06:00,1.16589,1.16657,1.16494,1.16577,27053 +2020-11-04 06:15,1.1658,1.1659,1.16496,1.16558,24911 +2020-11-04 06:30,1.16559,1.16577,1.16424,1.1645,23399 +2020-11-04 06:45,1.1645,1.1648,1.16358,1.16442,26095 +2020-11-04 07:00,1.16443,1.16481,1.16358,1.16383,26671 +2020-11-04 07:15,1.16383,1.16425,1.16282,1.16302,20982 +2020-11-04 07:30,1.16301,1.16437,1.16297,1.16432,22194 +2020-11-04 07:45,1.16433,1.16615,1.16311,1.16611,24406 +2020-11-04 08:00,1.16611,1.16643,1.16542,1.16566,19520 +2020-11-04 08:15,1.16565,1.16786,1.16542,1.16754,12390 +2020-11-04 08:30,1.16756,1.16953,1.16707,1.16833,13515 +2020-11-04 08:45,1.16832,1.16866,1.16664,1.16679,13223 +2020-11-04 09:00,1.16678,1.16789,1.16631,1.16702,16106 +2020-11-04 09:15,1.16702,1.16737,1.1665,1.167,13909 +2020-11-04 09:30,1.167,1.16773,1.1665,1.16764,16103 +2020-11-04 09:45,1.16765,1.16896,1.16724,1.16755,20196 +2020-11-04 10:00,1.16756,1.16803,1.16721,1.16774,17940 +2020-11-04 10:15,1.16773,1.16903,1.16764,1.16892,15570 +2020-11-04 10:30,1.16893,1.16896,1.16815,1.16829,16318 +2020-11-04 10:45,1.1683,1.16973,1.16829,1.1693,14287 +2020-11-04 11:00,1.1693,1.17051,1.16882,1.17033,13147 +2020-11-04 11:15,1.17036,1.17099,1.16927,1.16957,14437 +2020-11-04 11:30,1.16955,1.17054,1.16953,1.17028,16181 +2020-11-04 11:45,1.17028,1.17091,1.17015,1.17071,17298 +2020-11-04 12:00,1.1707,1.17218,1.1697,1.172,14170 +2020-11-04 12:15,1.17199,1.17424,1.17152,1.1738,16829 +2020-11-04 12:30,1.1738,1.17455,1.17135,1.17275,12216 +2020-11-04 12:45,1.17277,1.17399,1.17177,1.17186,13318 +2020-11-04 13:00,1.17186,1.17256,1.17115,1.17193,8604 +2020-11-04 13:15,1.1719,1.17285,1.17182,1.17269,10292 +2020-11-04 13:30,1.17269,1.17269,1.17013,1.17125,7429 +2020-11-04 13:45,1.17126,1.17187,1.17074,1.17102,9835 +2020-11-04 14:00,1.17103,1.17166,1.17042,1.17086,9470 +2020-11-04 14:15,1.17088,1.17113,1.16908,1.16918,13706 +2020-11-04 14:30,1.16917,1.16991,1.16803,1.16854,17998 +2020-11-04 14:45,1.16858,1.17099,1.16833,1.17085,15642 +2020-11-04 15:00,1.17085,1.17196,1.17035,1.17133,12280 +2020-11-04 15:15,1.17135,1.17184,1.17092,1.1712,11780 +2020-11-04 15:30,1.17119,1.17193,1.1705,1.17138,13469 +2020-11-04 15:45,1.1714,1.17163,1.17019,1.17082,13231 +2020-11-04 16:00,1.17078,1.17121,1.16984,1.17025,12787 +2020-11-04 16:15,1.17026,1.17138,1.16974,1.1712,13770 +2020-11-04 16:30,1.1712,1.17162,1.1706,1.17115,10267 +2020-11-04 16:45,1.17118,1.17341,1.17102,1.17294,11213 +2020-11-04 17:00,1.17293,1.17293,1.17123,1.17149,11407 +2020-11-04 17:15,1.1715,1.17222,1.17147,1.17158,11158 +2020-11-04 17:30,1.1716,1.17238,1.17139,1.17163,9471 +2020-11-04 17:45,1.17164,1.172,1.17117,1.1715,7065 +2020-11-04 18:00,1.1715,1.17157,1.171,1.1714,7929 +2020-11-04 18:15,1.17139,1.17193,1.17122,1.17192,4537 +2020-11-04 18:30,1.17194,1.17201,1.17138,1.17154,9372 +2020-11-04 18:45,1.17158,1.17216,1.17149,1.17187,10631 +2020-11-04 19:00,1.17188,1.17193,1.17146,1.1715,7946 +2020-11-04 19:15,1.17154,1.17176,1.17149,1.17155,3826 +2020-11-04 19:30,1.17157,1.1716,1.17129,1.17131,4974 +2020-11-04 19:45,1.17132,1.17259,1.17131,1.1725,9885 +2020-11-04 20:00,1.17249,1.17255,1.17201,1.17237,9424 +2020-11-04 20:15,1.17236,1.17238,1.17189,1.17192,4708 +2020-11-04 20:30,1.17192,1.17274,1.1717,1.17266,9167 +2020-11-04 20:45,1.17266,1.17285,1.17155,1.17155,12845 +2020-11-04 21:00,1.17155,1.1721,1.17154,1.17192,6682 +2020-11-04 21:15,1.17192,1.17237,1.17189,1.17237,2534 +2020-11-04 21:30,1.17235,1.17266,1.17234,1.17257,2080 +2020-11-04 21:45,1.17257,1.17266,1.17203,1.17244,2739 +2020-11-04 22:00,1.17251,1.17269,1.17207,1.17266,135 +2020-11-04 22:15,1.17269,1.17311,1.17208,1.17208,137 +2020-11-04 22:30,1.17206,1.17275,1.17206,1.17226,315 +2020-11-04 22:45,1.17223,1.17261,1.17164,1.1721,659 +2020-11-04 23:00,1.17211,1.17291,1.17211,1.17288,920 +2020-11-04 23:15,1.17287,1.17376,1.17286,1.1734,4259 +2020-11-04 23:30,1.17341,1.1735,1.17303,1.17315,3569 +2020-11-04 23:45,1.17316,1.17348,1.17315,1.17321,2597 +2020-11-05 00:00,1.17321,1.17389,1.17288,1.17372,8968 +2020-11-05 00:15,1.17373,1.1739,1.17343,1.17381,10336 +2020-11-05 00:30,1.17383,1.1739,1.17328,1.17347,7533 +2020-11-05 00:45,1.17348,1.17349,1.17286,1.1729,8339 +2020-11-05 01:00,1.17293,1.1732,1.17181,1.17186,14260 +2020-11-05 01:15,1.17186,1.17267,1.17184,1.17257,11301 +2020-11-05 01:30,1.17256,1.1726,1.17194,1.17227,16167 +2020-11-05 01:45,1.17228,1.17245,1.17211,1.17214,7635 +2020-11-05 02:00,1.17214,1.17228,1.1716,1.17164,12079 +2020-11-05 02:15,1.17166,1.17186,1.17107,1.17182,11836 +2020-11-05 02:30,1.17182,1.17304,1.17178,1.17297,11135 +2020-11-05 02:45,1.17297,1.17341,1.17263,1.1733,9946 +2020-11-05 03:00,1.17331,1.17339,1.17274,1.17287,7766 +2020-11-05 03:15,1.1729,1.17395,1.17285,1.1736,7651 +2020-11-05 03:30,1.17359,1.17368,1.17323,1.1734,8092 +2020-11-05 03:45,1.1734,1.17363,1.17331,1.17351,6728 +2020-11-05 04:00,1.17351,1.17384,1.17344,1.17379,6219 +2020-11-05 04:15,1.1738,1.17394,1.1736,1.1737,5972 +2020-11-05 04:30,1.17369,1.17419,1.17362,1.17385,6581 +2020-11-05 04:45,1.17384,1.17397,1.17371,1.17379,6384 +2020-11-05 05:00,1.1738,1.17392,1.17335,1.17349,8489 +2020-11-05 05:15,1.1735,1.17402,1.17346,1.17397,7335 +2020-11-05 05:30,1.17396,1.17425,1.17379,1.17423,6355 +2020-11-05 05:45,1.17422,1.17441,1.17357,1.1736,8328 +2020-11-05 06:00,1.17361,1.17407,1.17358,1.17388,8915 +2020-11-05 06:15,1.17384,1.17426,1.17364,1.1742,6725 +2020-11-05 06:30,1.17419,1.17423,1.17375,1.1738,6699 +2020-11-05 06:45,1.17378,1.17389,1.17343,1.17351,6487 +2020-11-05 07:00,1.17351,1.17414,1.17274,1.1733,14812 +2020-11-05 07:15,1.17329,1.17487,1.17318,1.17478,18064 +2020-11-05 07:30,1.17479,1.17486,1.17379,1.17379,15739 +2020-11-05 07:45,1.17378,1.17465,1.17367,1.17457,12333 +2020-11-05 08:00,1.17455,1.17519,1.17402,1.17499,18451 +2020-11-05 08:15,1.17499,1.17699,1.17489,1.17605,16000 +2020-11-05 08:30,1.17605,1.17625,1.17517,1.17553,12608 +2020-11-05 08:45,1.17554,1.1764,1.17552,1.17629,12318 +2020-11-05 09:00,1.17628,1.17672,1.17551,1.17668,11586 +2020-11-05 09:15,1.17667,1.17774,1.17618,1.17763,11547 +2020-11-05 09:30,1.17763,1.17924,1.17736,1.1791,11707 +2020-11-05 09:45,1.17911,1.18023,1.17878,1.17943,13788 +2020-11-05 10:00,1.17942,1.17965,1.17887,1.17943,11088 +2020-11-05 10:15,1.17942,1.1809,1.1791,1.18021,12737 +2020-11-05 10:30,1.1802,1.1807,1.1796,1.18023,10401 +2020-11-05 10:45,1.18023,1.18114,1.17981,1.18113,14716 +2020-11-05 11:00,1.18114,1.18121,1.18,1.18056,13485 +2020-11-05 11:15,1.18056,1.18112,1.18031,1.18082,13838 +2020-11-05 11:30,1.18082,1.18145,1.18075,1.18112,9334 +2020-11-05 11:45,1.1811,1.18143,1.18087,1.18102,9363 +2020-11-05 12:00,1.18101,1.1813,1.18054,1.18125,12189 +2020-11-05 12:15,1.18124,1.18285,1.18124,1.18282,13185 +2020-11-05 12:30,1.18281,1.18379,1.18273,1.18377,15269 +2020-11-05 12:45,1.18378,1.18467,1.1832,1.1845,16010 +2020-11-05 13:00,1.18451,1.18596,1.18412,1.18538,14841 +2020-11-05 13:15,1.18541,1.18554,1.18351,1.18353,13108 +2020-11-05 13:30,1.18353,1.18422,1.1831,1.18383,12211 +2020-11-05 13:45,1.18382,1.18468,1.18335,1.18391,10843 +2020-11-05 14:00,1.18391,1.18398,1.18255,1.18296,15101 +2020-11-05 14:15,1.18295,1.18302,1.18184,1.18294,11070 +2020-11-05 14:30,1.18295,1.18369,1.18268,1.18361,14803 +2020-11-05 14:45,1.18361,1.18384,1.18242,1.18277,15027 +2020-11-05 15:00,1.1828,1.1833,1.18198,1.18218,15364 +2020-11-05 15:15,1.18217,1.18261,1.1801,1.18053,15198 +2020-11-05 15:30,1.18053,1.1817,1.18027,1.18169,17947 +2020-11-05 15:45,1.1817,1.18277,1.18131,1.18247,17693 +2020-11-05 16:00,1.18248,1.18274,1.18149,1.18166,15201 +2020-11-05 16:15,1.18166,1.18318,1.18161,1.18206,11589 +2020-11-05 16:30,1.18208,1.18215,1.1812,1.18127,11041 +2020-11-05 16:45,1.18128,1.18183,1.18049,1.18082,11621 +2020-11-05 17:00,1.18081,1.18096,1.18014,1.18018,8565 +2020-11-05 17:15,1.18019,1.18059,1.17913,1.17927,12594 +2020-11-05 17:30,1.1793,1.18031,1.17928,1.18022,12097 +2020-11-05 17:45,1.18021,1.1807,1.18004,1.18032,10735 +2020-11-05 18:00,1.18033,1.18117,1.18015,1.18017,9015 +2020-11-05 18:15,1.18017,1.18021,1.17951,1.17995,8687 +2020-11-05 18:30,1.17996,1.1812,1.17996,1.18106,8567 +2020-11-05 18:45,1.18106,1.18159,1.18104,1.18112,6183 +2020-11-05 19:00,1.18109,1.18231,1.18071,1.18181,9839 +2020-11-05 19:15,1.18182,1.18298,1.18157,1.18272,8037 +2020-11-05 19:30,1.18271,1.18376,1.18243,1.18371,8115 +2020-11-05 19:45,1.18371,1.18394,1.18245,1.18384,13335 +2020-11-05 20:00,1.18386,1.18441,1.18246,1.18247,10243 +2020-11-05 20:15,1.1825,1.18305,1.18236,1.18274,4712 +2020-11-05 20:30,1.18275,1.18281,1.18103,1.18181,7971 +2020-11-05 20:45,1.18182,1.18309,1.18178,1.18261,7843 +2020-11-05 21:00,1.1826,1.18307,1.1826,1.18294,2225 +2020-11-05 21:15,1.18295,1.18297,1.18257,1.18265,1649 +2020-11-05 21:30,1.18263,1.18311,1.1826,1.183,1607 +2020-11-05 21:45,1.18302,1.18345,1.18252,1.18268,1670 +2020-11-05 22:00,1.18268,1.18329,1.1822,1.18325,120 +2020-11-05 22:15,1.18318,1.18356,1.18299,1.18326,355 +2020-11-05 22:30,1.18326,1.18332,1.18241,1.18275,236 +2020-11-05 22:45,1.18266,1.18278,1.18221,1.18221,186 +2020-11-05 23:00,1.18222,1.18259,1.18202,1.18228,1320 +2020-11-05 23:15,1.18227,1.18248,1.18216,1.18234,919 +2020-11-05 23:30,1.18235,1.18244,1.18156,1.18181,2200 +2020-11-05 23:45,1.18181,1.18466,1.18082,1.18167,8021 +2020-11-06 00:00,1.18169,1.18317,1.18123,1.18291,4356 +2020-11-06 00:15,1.18292,1.18293,1.18189,1.18201,3971 +2020-11-06 00:30,1.182,1.18212,1.18103,1.1812,1948 +2020-11-06 00:45,1.1812,1.1814,1.1804,1.18046,4043 +2020-11-06 01:00,1.18047,1.1806,1.17952,1.17999,6632 +2020-11-06 01:15,1.17999,1.18062,1.1797,1.1806,8114 +2020-11-06 01:30,1.1806,1.1806,1.17984,1.1804,7065 +2020-11-06 01:45,1.1804,1.18141,1.18016,1.18118,7603 +2020-11-06 02:00,1.18119,1.18136,1.18076,1.18128,7797 +2020-11-06 02:15,1.18129,1.18267,1.18122,1.18197,5941 +2020-11-06 02:30,1.18197,1.18249,1.18182,1.18213,5993 +2020-11-06 02:45,1.18212,1.18264,1.18204,1.18241,5161 +2020-11-06 03:00,1.18241,1.18244,1.18199,1.18204,3356 +2020-11-06 03:15,1.18205,1.18335,1.18203,1.1828,6406 +2020-11-06 03:30,1.18281,1.18299,1.18236,1.18244,3251 +2020-11-06 03:45,1.18243,1.18269,1.1823,1.18241,4640 +2020-11-06 04:00,1.18241,1.18264,1.18186,1.18211,4656 +2020-11-06 04:15,1.18211,1.18254,1.18211,1.18254,2303 +2020-11-06 04:30,1.18257,1.18267,1.18229,1.18241,2230 +2020-11-06 04:45,1.18242,1.18254,1.18189,1.18189,2714 +2020-11-06 05:00,1.18189,1.1826,1.18184,1.18254,4211 +2020-11-06 05:15,1.18254,1.1827,1.18217,1.18219,2572 +2020-11-06 05:30,1.18219,1.1823,1.1816,1.1819,3338 +2020-11-06 05:45,1.18188,1.18188,1.18139,1.18143,4069 +2020-11-06 06:00,1.18143,1.18196,1.18129,1.1819,3411 +2020-11-06 06:15,1.1819,1.18238,1.18162,1.18189,5050 +2020-11-06 06:30,1.1819,1.18296,1.18186,1.18287,4136 +2020-11-06 06:45,1.18288,1.18313,1.18262,1.18293,3815 +2020-11-06 07:00,1.18294,1.18341,1.18273,1.1829,6627 +2020-11-06 07:15,1.18289,1.18357,1.18282,1.18345,6213 +2020-11-06 07:30,1.18344,1.18396,1.18325,1.18371,6781 +2020-11-06 07:45,1.1837,1.18407,1.18344,1.18401,7430 +2020-11-06 08:00,1.18403,1.185,1.18362,1.18378,10508 +2020-11-06 08:15,1.18377,1.18435,1.18329,1.18397,5836 +2020-11-06 08:30,1.18396,1.18532,1.18385,1.18457,6332 +2020-11-06 08:45,1.18458,1.18488,1.18424,1.1843,5398 +2020-11-06 09:00,1.18431,1.18432,1.18256,1.18301,6957 +2020-11-06 09:15,1.18301,1.18494,1.18283,1.18458,7326 +2020-11-06 09:30,1.18459,1.1852,1.18415,1.18505,7286 +2020-11-06 09:45,1.18504,1.18535,1.18453,1.18531,7586 +2020-11-06 10:00,1.1853,1.18587,1.18464,1.1857,8009 +2020-11-06 10:15,1.1857,1.18601,1.1852,1.18568,6745 +2020-11-06 10:30,1.18567,1.18649,1.1856,1.18647,7097 +2020-11-06 10:45,1.18647,1.1875,1.18641,1.18656,8282 +2020-11-06 11:00,1.18659,1.18753,1.18659,1.18708,8566 +2020-11-06 11:15,1.18707,1.18776,1.18666,1.18701,8822 +2020-11-06 11:30,1.18701,1.18776,1.18681,1.18775,5951 +2020-11-06 11:45,1.18775,1.18804,1.18761,1.18774,4699 +2020-11-06 12:00,1.18774,1.18843,1.18728,1.1873,6980 +2020-11-06 12:15,1.18732,1.1874,1.18672,1.18729,5864 +2020-11-06 12:30,1.18729,1.18763,1.18619,1.18688,6903 +2020-11-06 12:45,1.18689,1.18784,1.18675,1.18749,5958 +2020-11-06 13:00,1.18748,1.18773,1.18693,1.18695,7178 +2020-11-06 13:15,1.18696,1.18825,1.18682,1.18786,7119 +2020-11-06 13:30,1.18785,1.18857,1.18658,1.1874,12547 +2020-11-06 13:45,1.18741,1.18902,1.1871,1.18891,11419 +2020-11-06 14:00,1.1889,1.18908,1.1876,1.1887,8792 +2020-11-06 14:15,1.18868,1.18899,1.18579,1.1877,10727 +2020-11-06 14:30,1.18768,1.18791,1.18531,1.18564,9986 +2020-11-06 14:45,1.18562,1.18639,1.18511,1.18611,8130 +2020-11-06 15:00,1.18611,1.18715,1.18589,1.18668,7165 +2020-11-06 15:15,1.18667,1.18802,1.18658,1.1879,7823 +2020-11-06 15:30,1.18788,1.18802,1.18726,1.18779,6380 +2020-11-06 15:45,1.18777,1.18848,1.18698,1.18725,8211 +2020-11-06 16:00,1.18724,1.18808,1.18706,1.18761,8335 +2020-11-06 16:15,1.18762,1.18897,1.18755,1.18883,9620 +2020-11-06 16:30,1.1888,1.18903,1.18848,1.1886,5255 +2020-11-06 16:45,1.18861,1.18889,1.18817,1.18852,7156 +2020-11-06 17:00,1.18853,1.18902,1.18825,1.18839,6622 +2020-11-06 17:15,1.18839,1.18846,1.18796,1.18821,4616 +2020-11-06 17:30,1.18816,1.1887,1.1878,1.1887,3989 +2020-11-06 17:45,1.18869,1.18877,1.18771,1.1881,5676 +2020-11-06 18:00,1.18809,1.18845,1.18786,1.18817,3911 +2020-11-06 18:15,1.18817,1.18852,1.18803,1.18806,3181 +2020-11-06 18:30,1.18805,1.18838,1.18799,1.18811,3097 +2020-11-06 18:45,1.1881,1.18831,1.18798,1.18823,2890 +2020-11-06 19:00,1.18823,1.18839,1.18802,1.18837,1501 +2020-11-06 19:15,1.18837,1.18865,1.18831,1.18857,1530 +2020-11-06 19:30,1.18858,1.1886,1.18813,1.18813,1350 +2020-11-06 19:45,1.18814,1.18842,1.18801,1.18815,2347 +2020-11-06 20:00,1.18816,1.18816,1.18763,1.18791,1717 +2020-11-06 20:15,1.18788,1.18816,1.18761,1.18796,2451 +2020-11-06 20:30,1.18794,1.18826,1.1879,1.18801,1731 +2020-11-06 20:45,1.18803,1.18829,1.1878,1.18786,3421 +2020-11-06 21:00,1.18786,1.18814,1.18777,1.18794,5687 +2020-11-06 21:15,1.18793,1.18817,1.18716,1.18742,2861 +2020-11-06 21:30,1.18742,1.18782,1.18726,1.18761,2253 +2020-11-06 21:45,1.18761,1.18787,1.187,1.187,5836 +2020-11-08 22:00,1.18898,1.18899,1.1887,1.18876,100 +2020-11-08 22:15,1.18877,1.18886,1.1886,1.18868,109 +2020-11-08 22:30,1.18868,1.18875,1.1886,1.18871,65 +2020-11-08 22:45,1.18871,1.18889,1.18869,1.18881,79 +2020-11-08 23:00,1.18881,1.18934,1.18833,1.18919,2359 +2020-11-08 23:15,1.18918,1.1895,1.18892,1.18939,3301 +2020-11-08 23:30,1.18939,1.1894,1.18893,1.18921,3038 +2020-11-08 23:45,1.1892,1.18942,1.18903,1.18924,2367 +2020-11-09 00:00,1.18924,1.18931,1.18786,1.18894,5056 +2020-11-09 00:15,1.18889,1.18916,1.18865,1.18887,4077 +2020-11-09 00:30,1.18888,1.1891,1.18844,1.18889,4067 +2020-11-09 00:45,1.18893,1.18897,1.18826,1.18857,3490 +2020-11-09 01:00,1.18858,1.18894,1.18823,1.18884,7776 +2020-11-09 01:15,1.18885,1.18952,1.18851,1.18909,6863 +2020-11-09 01:30,1.1891,1.18911,1.18874,1.18882,5218 +2020-11-09 01:45,1.18883,1.18895,1.18858,1.18878,3708 +2020-11-09 02:00,1.18878,1.18918,1.18869,1.18914,2628 +2020-11-09 02:15,1.18915,1.18929,1.18899,1.18908,3029 +2020-11-09 02:30,1.18907,1.18926,1.18892,1.18907,4218 +2020-11-09 02:45,1.18907,1.18921,1.1889,1.18905,3483 +2020-11-09 03:00,1.18905,1.18909,1.18881,1.18887,4055 +2020-11-09 03:15,1.18888,1.18909,1.18874,1.18891,4727 +2020-11-09 03:30,1.18889,1.18911,1.18874,1.18895,2799 +2020-11-09 03:45,1.18894,1.18916,1.18887,1.18912,2646 +2020-11-09 04:00,1.18913,1.18942,1.18901,1.18916,2518 +2020-11-09 04:15,1.18917,1.18933,1.18917,1.18924,1700 +2020-11-09 04:30,1.18924,1.18932,1.18909,1.18919,1995 +2020-11-09 04:45,1.18919,1.18919,1.18864,1.18867,3256 +2020-11-09 05:00,1.18867,1.18912,1.18864,1.189,3765 +2020-11-09 05:15,1.18899,1.18946,1.18877,1.18935,4754 +2020-11-09 05:30,1.18937,1.18957,1.18917,1.18925,5183 +2020-11-09 05:45,1.18926,1.18928,1.188,1.18805,6420 +2020-11-09 06:00,1.18805,1.18925,1.18805,1.18875,3568 +2020-11-09 06:15,1.18877,1.18925,1.18829,1.18915,3541 +2020-11-09 06:30,1.18914,1.18914,1.18857,1.18899,4313 +2020-11-09 06:45,1.18898,1.18932,1.18835,1.18924,2934 +2020-11-09 07:00,1.18923,1.18983,1.18899,1.18972,6229 +2020-11-09 07:15,1.18972,1.18977,1.18875,1.18896,5740 +2020-11-09 07:30,1.18897,1.18915,1.18811,1.1884,8362 +2020-11-09 07:45,1.18841,1.18907,1.18817,1.18885,5161 +2020-11-09 08:00,1.18885,1.18962,1.18846,1.18879,6875 +2020-11-09 08:15,1.18878,1.18941,1.18821,1.18833,5295 +2020-11-09 08:30,1.18831,1.18856,1.1865,1.18683,9049 +2020-11-09 08:45,1.18684,1.18717,1.18647,1.18715,5877 +2020-11-09 09:00,1.18717,1.18843,1.18686,1.18821,8019 +2020-11-09 09:15,1.1882,1.18836,1.18746,1.18823,6178 +2020-11-09 09:30,1.18824,1.18851,1.18779,1.1878,8426 +2020-11-09 09:45,1.18782,1.1879,1.18664,1.18738,7924 +2020-11-09 10:00,1.18738,1.18763,1.18716,1.18758,5044 +2020-11-09 10:15,1.18759,1.18784,1.18698,1.18733,6377 +2020-11-09 10:30,1.18732,1.18757,1.18699,1.18748,3901 +2020-11-09 10:45,1.18749,1.18801,1.18717,1.18799,4516 +2020-11-09 11:00,1.18798,1.18827,1.18772,1.18826,4341 +2020-11-09 11:15,1.18826,1.18827,1.18652,1.18662,5637 +2020-11-09 11:30,1.18662,1.18681,1.186,1.18615,5603 +2020-11-09 11:45,1.18613,1.19,1.18613,1.18866,19066 +2020-11-09 12:00,1.18863,1.18921,1.18705,1.18778,19152 +2020-11-09 12:15,1.18781,1.18922,1.18757,1.18886,17581 +2020-11-09 12:30,1.18885,1.18965,1.18813,1.18909,15754 +2020-11-09 12:45,1.18909,1.18997,1.18845,1.18939,14237 +2020-11-09 13:00,1.1894,1.19067,1.18779,1.18829,14125 +2020-11-09 13:15,1.1883,1.18837,1.18712,1.18831,15283 +2020-11-09 13:30,1.18831,1.18931,1.18805,1.18922,14082 +2020-11-09 13:45,1.18924,1.19001,1.189,1.18928,12317 +2020-11-09 14:00,1.18928,1.19153,1.18926,1.19067,12164 +2020-11-09 14:15,1.19067,1.19199,1.19035,1.19171,10119 +2020-11-09 14:30,1.19172,1.19174,1.18918,1.19006,13247 +2020-11-09 14:45,1.19005,1.19055,1.18614,1.18625,15514 +2020-11-09 15:00,1.18623,1.18708,1.18523,1.18613,18473 +2020-11-09 15:15,1.18616,1.18658,1.1857,1.18572,14657 +2020-11-09 15:30,1.18574,1.18601,1.18155,1.1826,20715 +2020-11-09 15:45,1.18259,1.18297,1.18139,1.18281,25714 +2020-11-09 16:00,1.18281,1.18281,1.17952,1.18077,21572 +2020-11-09 16:15,1.18077,1.18179,1.18027,1.18149,21316 +2020-11-09 16:30,1.18147,1.18191,1.18045,1.1815,11829 +2020-11-09 16:45,1.18149,1.18158,1.18052,1.18095,9839 +2020-11-09 17:00,1.18094,1.18151,1.18073,1.1813,8525 +2020-11-09 17:15,1.18129,1.18221,1.18114,1.18189,10943 +2020-11-09 17:30,1.18188,1.18225,1.18154,1.18215,6874 +2020-11-09 17:45,1.18215,1.18231,1.18147,1.18185,10496 +2020-11-09 18:00,1.18185,1.18214,1.18138,1.18153,6008 +2020-11-09 18:15,1.18152,1.18157,1.1803,1.18091,5508 +2020-11-09 18:30,1.18094,1.18146,1.18092,1.18126,6436 +2020-11-09 18:45,1.18128,1.18167,1.1808,1.1816,6363 +2020-11-09 19:00,1.18161,1.18197,1.18151,1.18184,7177 +2020-11-09 19:15,1.18184,1.18263,1.18175,1.18257,5636 +2020-11-09 19:30,1.18257,1.18257,1.182,1.18216,5272 +2020-11-09 19:45,1.18215,1.18324,1.18211,1.18323,5987 +2020-11-09 20:00,1.18323,1.18364,1.18281,1.18292,3432 +2020-11-09 20:15,1.18294,1.18325,1.18285,1.1829,6446 +2020-11-09 20:30,1.1829,1.18311,1.18264,1.1827,4413 +2020-11-09 20:45,1.18271,1.18276,1.18102,1.1812,6657 +2020-11-09 21:00,1.18119,1.18207,1.18117,1.18198,3871 +2020-11-09 21:15,1.18197,1.18202,1.18103,1.18118,2253 +2020-11-09 21:30,1.18117,1.18163,1.18115,1.18135,1506 +2020-11-09 21:45,1.18135,1.18136,1.18103,1.18127,5960 +2020-11-09 22:00,1.18124,1.18205,1.18097,1.18146,499 +2020-11-09 22:15,1.18145,1.18199,1.18114,1.18133,257 +2020-11-09 22:30,1.18141,1.18143,1.18106,1.18128,180 +2020-11-09 22:45,1.18127,1.18181,1.18112,1.18175,393 +2020-11-09 23:00,1.18172,1.18187,1.18137,1.18172,1367 +2020-11-09 23:15,1.18172,1.18204,1.18155,1.18201,1863 +2020-11-09 23:30,1.18201,1.18258,1.18193,1.18221,1755 +2020-11-09 23:45,1.18221,1.18275,1.18221,1.1824,2683 +2020-11-10 00:00,1.1824,1.18261,1.18154,1.18206,7738 +2020-11-10 00:15,1.18208,1.18211,1.18068,1.1808,7972 +2020-11-10 00:30,1.18079,1.18137,1.18074,1.18105,6679 +2020-11-10 00:45,1.18105,1.18149,1.18094,1.18146,6607 +2020-11-10 01:00,1.18146,1.18222,1.18137,1.18211,10191 +2020-11-10 01:15,1.1821,1.18242,1.18171,1.18235,7917 +2020-11-10 01:30,1.18235,1.18283,1.18184,1.18207,7736 +2020-11-10 01:45,1.18207,1.18253,1.18178,1.18242,6208 +2020-11-10 02:00,1.18243,1.18384,1.18236,1.18369,7563 +2020-11-10 02:15,1.1837,1.18379,1.18321,1.18351,4523 +2020-11-10 02:30,1.1835,1.18369,1.18322,1.18323,7284 +2020-11-10 02:45,1.18324,1.18339,1.18242,1.18256,9906 +2020-11-10 03:00,1.18256,1.18302,1.18228,1.18286,9501 +2020-11-10 03:15,1.18285,1.18314,1.18279,1.18289,5239 +2020-11-10 03:30,1.18288,1.18302,1.18251,1.18288,3219 +2020-11-10 03:45,1.18288,1.18318,1.18272,1.18307,3308 +2020-11-10 04:00,1.18307,1.18363,1.18303,1.18335,2574 +2020-11-10 04:15,1.18335,1.18372,1.18326,1.18369,2069 +2020-11-10 04:30,1.1837,1.18374,1.18345,1.18349,2945 +2020-11-10 04:45,1.18347,1.18355,1.18318,1.18353,2825 +2020-11-10 05:00,1.18354,1.18358,1.18322,1.18327,2835 +2020-11-10 05:15,1.18328,1.18372,1.18324,1.18359,3721 +2020-11-10 05:30,1.18359,1.18362,1.18269,1.18272,5359 +2020-11-10 05:45,1.18272,1.18339,1.18249,1.18333,3748 +2020-11-10 06:00,1.18335,1.18347,1.1829,1.18302,2862 +2020-11-10 06:15,1.18304,1.18304,1.18255,1.18264,3409 +2020-11-10 06:30,1.18265,1.18287,1.18196,1.18235,4185 +2020-11-10 06:45,1.18234,1.18305,1.18211,1.18296,5462 +2020-11-10 07:00,1.18298,1.18335,1.18253,1.18281,8086 +2020-11-10 07:15,1.1828,1.18358,1.1825,1.18336,6788 +2020-11-10 07:30,1.18333,1.18333,1.18206,1.18272,8532 +2020-11-10 07:45,1.18272,1.18301,1.18139,1.18167,8252 +2020-11-10 08:00,1.18167,1.18295,1.18162,1.18288,10339 +2020-11-10 08:15,1.18287,1.18394,1.18229,1.1835,10839 +2020-11-10 08:30,1.1835,1.18432,1.18331,1.184,9489 +2020-11-10 08:45,1.18398,1.18412,1.18321,1.18345,8276 +2020-11-10 09:00,1.18344,1.18384,1.18321,1.1834,11420 +2020-11-10 09:15,1.18339,1.18404,1.18299,1.18319,6872 +2020-11-10 09:30,1.18319,1.18319,1.18132,1.18145,11327 +2020-11-10 09:45,1.18144,1.18171,1.18002,1.18064,8950 +2020-11-10 10:00,1.18065,1.18097,1.17906,1.17945,11419 +2020-11-10 10:15,1.17948,1.18028,1.17943,1.17977,12322 +2020-11-10 10:30,1.17977,1.17998,1.17906,1.17927,8554 +2020-11-10 10:45,1.17928,1.17951,1.17799,1.17802,13752 +2020-11-10 11:00,1.17802,1.17897,1.17799,1.17897,9297 +2020-11-10 11:15,1.17897,1.1794,1.17862,1.17899,11226 +2020-11-10 11:30,1.17898,1.18044,1.17858,1.17996,9885 +2020-11-10 11:45,1.17996,1.18079,1.1798,1.18007,10098 +2020-11-10 12:00,1.18005,1.18196,1.17953,1.18152,8031 +2020-11-10 12:15,1.18154,1.18194,1.18023,1.18031,8782 +2020-11-10 12:30,1.1803,1.18054,1.18001,1.18022,9767 +2020-11-10 12:45,1.18024,1.18101,1.17999,1.18096,8765 +2020-11-10 13:00,1.18094,1.18129,1.18061,1.18076,7389 +2020-11-10 13:15,1.18076,1.18108,1.18026,1.18053,7031 +2020-11-10 13:30,1.18053,1.18088,1.1793,1.18007,9207 +2020-11-10 13:45,1.18008,1.18147,1.18,1.18102,8370 +2020-11-10 14:00,1.18101,1.18154,1.18065,1.18109,8467 +2020-11-10 14:15,1.18109,1.18272,1.18021,1.18248,7869 +2020-11-10 14:30,1.18247,1.1825,1.18038,1.18046,15080 +2020-11-10 14:45,1.18046,1.18161,1.1801,1.18135,13071 +2020-11-10 15:00,1.18135,1.18342,1.1807,1.18245,13772 +2020-11-10 15:15,1.18246,1.18261,1.18136,1.18197,11631 +2020-11-10 15:30,1.18197,1.18238,1.18118,1.1814,11067 +2020-11-10 15:45,1.1814,1.18207,1.18088,1.18206,10325 +2020-11-10 16:00,1.18205,1.18233,1.1812,1.18148,8756 +2020-11-10 16:15,1.18147,1.18213,1.18104,1.18197,8651 +2020-11-10 16:30,1.18196,1.18198,1.18075,1.18097,8678 +2020-11-10 16:45,1.18096,1.18112,1.18026,1.18099,5873 +2020-11-10 17:00,1.18098,1.18177,1.18081,1.18161,5478 +2020-11-10 17:15,1.18161,1.18176,1.18102,1.18134,4739 +2020-11-10 17:30,1.18133,1.18187,1.18126,1.18186,4738 +2020-11-10 17:45,1.18187,1.18224,1.18176,1.18197,6154 +2020-11-10 18:00,1.18195,1.18237,1.18174,1.18178,4636 +2020-11-10 18:15,1.1818,1.18202,1.18154,1.18184,4649 +2020-11-10 18:30,1.18183,1.18211,1.18162,1.18199,3590 +2020-11-10 18:45,1.18197,1.18208,1.18161,1.18208,2522 +2020-11-10 19:00,1.18206,1.18256,1.18197,1.18254,5274 +2020-11-10 19:15,1.18254,1.18258,1.18215,1.18224,4254 +2020-11-10 19:30,1.18227,1.18257,1.18215,1.18237,4908 +2020-11-10 19:45,1.18237,1.18238,1.1813,1.18138,5711 +2020-11-10 20:00,1.18136,1.18153,1.18081,1.18092,6805 +2020-11-10 20:15,1.18091,1.18114,1.18087,1.18101,3341 +2020-11-10 20:30,1.181,1.18109,1.1808,1.18106,3071 +2020-11-10 20:45,1.18107,1.18117,1.18031,1.18086,4632 +2020-11-10 21:00,1.18086,1.18088,1.18044,1.18087,1850 +2020-11-10 21:15,1.18086,1.18116,1.18062,1.18108,1068 +2020-11-10 21:30,1.18108,1.18146,1.18104,1.18143,685 +2020-11-10 21:45,1.18144,1.18187,1.1811,1.18127,1656 +2020-11-10 22:00,1.18127,1.1818,1.18104,1.18169,274 +2020-11-10 22:15,1.18169,1.18182,1.18141,1.18176,269 +2020-11-10 22:30,1.18177,1.18212,1.18175,1.18175,258 +2020-11-10 22:45,1.18176,1.18202,1.18171,1.18189,240 +2020-11-10 23:00,1.18188,1.18203,1.18167,1.18178,1324 +2020-11-10 23:15,1.18179,1.18187,1.18168,1.18171,2987 +2020-11-10 23:30,1.18173,1.1819,1.18169,1.18171,777 +2020-11-10 23:45,1.1817,1.18185,1.18168,1.18184,1251 +2020-11-11 00:00,1.18183,1.18218,1.18169,1.18209,4151 +2020-11-11 00:15,1.18209,1.18261,1.18207,1.18249,3979 +2020-11-11 00:30,1.18248,1.18255,1.18224,1.18225,2569 +2020-11-11 00:45,1.18226,1.18253,1.18171,1.18179,1889 +2020-11-11 01:00,1.18178,1.1823,1.18171,1.1823,3128 +2020-11-11 01:15,1.18229,1.18246,1.18184,1.18236,4231 +2020-11-11 01:30,1.18237,1.18277,1.18225,1.18246,3190 +2020-11-11 01:45,1.18245,1.18282,1.18242,1.18269,5031 +2020-11-11 02:00,1.18271,1.18273,1.18246,1.18252,4626 +2020-11-11 02:15,1.18251,1.18281,1.18245,1.18269,5118 +2020-11-11 02:30,1.18269,1.18283,1.18214,1.18268,5193 +2020-11-11 02:45,1.18268,1.18268,1.18229,1.18249,6442 +2020-11-11 03:00,1.18249,1.18302,1.18238,1.18286,5939 +2020-11-11 03:15,1.18286,1.18327,1.18276,1.1831,3825 +2020-11-11 03:30,1.18309,1.18317,1.1828,1.18301,3565 +2020-11-11 03:45,1.183,1.18315,1.18268,1.18269,3445 +2020-11-11 04:00,1.18269,1.18288,1.18259,1.18275,2433 +2020-11-11 04:15,1.18274,1.18274,1.18245,1.18246,2038 +2020-11-11 04:30,1.18245,1.18265,1.18245,1.18251,2755 +2020-11-11 04:45,1.18252,1.18257,1.18225,1.18227,3166 +2020-11-11 05:00,1.18226,1.18238,1.18216,1.18223,2370 +2020-11-11 05:15,1.18224,1.18245,1.18212,1.18241,4085 +2020-11-11 05:30,1.18241,1.18259,1.1823,1.18256,2740 +2020-11-11 05:45,1.18255,1.18261,1.1824,1.18248,3334 +2020-11-11 06:00,1.18247,1.18251,1.18201,1.18221,2917 +2020-11-11 06:15,1.18221,1.18227,1.18166,1.18171,2540 +2020-11-11 06:30,1.18172,1.18249,1.18172,1.18248,3345 +2020-11-11 06:45,1.18248,1.18267,1.18228,1.18238,2857 +2020-11-11 07:00,1.18238,1.18281,1.18234,1.18271,3595 +2020-11-11 07:15,1.1827,1.18271,1.18181,1.1821,4439 +2020-11-11 07:30,1.18211,1.18243,1.18136,1.18145,5638 +2020-11-11 07:45,1.18143,1.18149,1.1807,1.1808,6871 +2020-11-11 08:00,1.18081,1.18099,1.17981,1.17997,7813 +2020-11-11 08:15,1.17997,1.17997,1.17872,1.17919,8477 +2020-11-11 08:30,1.1792,1.1796,1.17875,1.17933,8424 +2020-11-11 08:45,1.17933,1.17969,1.17839,1.1789,8835 +2020-11-11 09:00,1.1789,1.17993,1.1789,1.17963,6718 +2020-11-11 09:15,1.17961,1.17999,1.1792,1.17992,6757 +2020-11-11 09:30,1.17991,1.17999,1.17829,1.17852,9432 +2020-11-11 09:45,1.17852,1.17937,1.17798,1.1793,6957 +2020-11-11 10:00,1.17927,1.17971,1.17884,1.17911,6029 +2020-11-11 10:15,1.17911,1.1795,1.17894,1.17938,3728 +2020-11-11 10:30,1.17942,1.17947,1.17853,1.17903,4733 +2020-11-11 10:45,1.17903,1.17904,1.17748,1.17849,7443 +2020-11-11 11:00,1.17848,1.1792,1.17816,1.17817,7805 +2020-11-11 11:15,1.17816,1.17866,1.17771,1.17782,5405 +2020-11-11 11:30,1.17783,1.17792,1.1767,1.17679,10102 +2020-11-11 11:45,1.17678,1.17704,1.17621,1.17686,7842 +2020-11-11 12:00,1.17686,1.17704,1.17561,1.17563,8997 +2020-11-11 12:15,1.17563,1.1763,1.1756,1.17598,8051 +2020-11-11 12:30,1.17596,1.17604,1.17536,1.17595,6434 +2020-11-11 12:45,1.17595,1.17728,1.17557,1.17722,11035 +2020-11-11 13:00,1.17725,1.1774,1.17601,1.17662,9364 +2020-11-11 13:15,1.17661,1.17743,1.17658,1.17691,10660 +2020-11-11 13:30,1.17691,1.17697,1.17556,1.17573,6886 +2020-11-11 13:45,1.17574,1.17613,1.17536,1.17584,6528 +2020-11-11 14:00,1.17585,1.17638,1.17527,1.17615,9138 +2020-11-11 14:15,1.17615,1.17618,1.17525,1.17541,5463 +2020-11-11 14:30,1.17543,1.17567,1.17457,1.17489,7767 +2020-11-11 14:45,1.1749,1.17528,1.17476,1.17524,8503 +2020-11-11 15:00,1.17523,1.17547,1.17478,1.175,7485 +2020-11-11 15:15,1.175,1.17564,1.17454,1.17547,7927 +2020-11-11 15:30,1.17547,1.17561,1.17506,1.17532,6604 +2020-11-11 15:45,1.1753,1.17594,1.17512,1.17577,6937 +2020-11-11 16:00,1.17578,1.17634,1.1756,1.17576,4188 +2020-11-11 16:15,1.17576,1.17648,1.17572,1.17641,2985 +2020-11-11 16:30,1.17645,1.17656,1.17586,1.17606,3936 +2020-11-11 16:45,1.17607,1.17678,1.1758,1.17659,5458 +2020-11-11 17:00,1.17659,1.17687,1.17627,1.17662,3786 +2020-11-11 17:15,1.17666,1.17673,1.1763,1.17657,3046 +2020-11-11 17:30,1.17657,1.17727,1.17656,1.17705,3145 +2020-11-11 17:45,1.17704,1.17742,1.17685,1.17729,3132 +2020-11-11 18:00,1.17731,1.17755,1.17709,1.17741,1715 +2020-11-11 18:15,1.17741,1.17749,1.17721,1.17741,1912 +2020-11-11 18:30,1.17742,1.17778,1.17741,1.17767,1405 +2020-11-11 18:45,1.17767,1.1777,1.17719,1.17725,2180 +2020-11-11 19:00,1.17725,1.17752,1.17714,1.17746,1218 +2020-11-11 19:15,1.17747,1.1775,1.17706,1.17709,1744 +2020-11-11 19:30,1.17709,1.17741,1.177,1.17716,2356 +2020-11-11 19:45,1.17716,1.17739,1.17691,1.17738,2248 +2020-11-11 20:00,1.17737,1.17741,1.1771,1.17737,1455 +2020-11-11 20:15,1.17736,1.17736,1.17703,1.17711,1840 +2020-11-11 20:30,1.17712,1.17749,1.177,1.17746,1857 +2020-11-11 20:45,1.17745,1.17813,1.17745,1.17804,1414 +2020-11-11 21:00,1.17801,1.17819,1.17784,1.17817,1130 +2020-11-11 21:15,1.17815,1.17824,1.1781,1.1781,309 +2020-11-11 21:30,1.1781,1.17818,1.17783,1.17783,1127 +2020-11-11 21:45,1.17782,1.17792,1.17767,1.17771,757 +2020-11-11 22:00,1.17771,1.17775,1.17737,1.17764,114 +2020-11-11 22:15,1.17766,1.17782,1.17744,1.17782,143 +2020-11-11 22:30,1.17779,1.17795,1.17761,1.17779,260 +2020-11-11 22:45,1.17775,1.17792,1.17759,1.17774,325 +2020-11-11 23:00,1.17771,1.17793,1.17754,1.17776,382 +2020-11-11 23:15,1.17777,1.17784,1.17768,1.17775,340 +2020-11-11 23:30,1.17773,1.17777,1.17756,1.17757,339 +2020-11-11 23:45,1.17757,1.17799,1.17752,1.17792,684 +2020-11-12 00:00,1.17792,1.17795,1.17767,1.1778,3596 +2020-11-12 00:15,1.17781,1.17782,1.17731,1.17738,3292 +2020-11-12 00:30,1.17739,1.17774,1.17737,1.17765,2549 +2020-11-12 00:45,1.17765,1.17815,1.17764,1.17793,3655 +2020-11-12 01:00,1.17792,1.17843,1.17759,1.17839,6977 +2020-11-12 01:15,1.1784,1.17883,1.17825,1.17855,5552 +2020-11-12 01:30,1.17855,1.17857,1.17802,1.17818,4215 +2020-11-12 01:45,1.17819,1.1784,1.17796,1.17818,4546 +2020-11-12 02:00,1.17819,1.17832,1.17776,1.17783,5379 +2020-11-12 02:15,1.17782,1.17812,1.17782,1.1779,2257 +2020-11-12 02:30,1.1779,1.17811,1.17782,1.17794,1976 +2020-11-12 02:45,1.17792,1.17829,1.17783,1.17804,2260 +2020-11-12 03:00,1.17805,1.17805,1.1778,1.17787,3932 +2020-11-12 03:15,1.17788,1.17814,1.17784,1.17792,2782 +2020-11-12 03:30,1.17791,1.17795,1.17731,1.17743,6478 +2020-11-12 03:45,1.17744,1.17759,1.17723,1.17733,4246 +2020-11-12 04:00,1.17733,1.17762,1.17726,1.17726,2615 +2020-11-12 04:15,1.17727,1.17742,1.17718,1.17724,3632 +2020-11-12 04:30,1.17726,1.17751,1.17714,1.17745,3806 +2020-11-12 04:45,1.17743,1.17752,1.17692,1.177,5408 +2020-11-12 05:00,1.177,1.17717,1.17677,1.1771,5042 +2020-11-12 05:15,1.17709,1.17716,1.17694,1.1771,3868 +2020-11-12 05:30,1.17709,1.17741,1.17707,1.17727,3782 +2020-11-12 05:45,1.17727,1.17739,1.1771,1.17736,2887 +2020-11-12 06:00,1.17737,1.17743,1.17676,1.17681,3975 +2020-11-12 06:15,1.17682,1.17684,1.17625,1.17628,4785 +2020-11-12 06:30,1.17628,1.17662,1.17585,1.17639,4875 +2020-11-12 06:45,1.17639,1.17677,1.17639,1.17652,4688 +2020-11-12 07:00,1.17651,1.1773,1.17627,1.17712,4889 +2020-11-12 07:15,1.17714,1.17723,1.17653,1.17702,4570 +2020-11-12 07:30,1.17701,1.17741,1.17664,1.17726,5105 +2020-11-12 07:45,1.17726,1.17751,1.17655,1.17699,7968 +2020-11-12 08:00,1.17699,1.17883,1.17699,1.17866,8772 +2020-11-12 08:15,1.17869,1.17898,1.17797,1.17888,7075 +2020-11-12 08:30,1.17886,1.17921,1.17869,1.17886,6512 +2020-11-12 08:45,1.17887,1.17922,1.17849,1.1789,4694 +2020-11-12 09:00,1.17891,1.17923,1.17839,1.17867,7071 +2020-11-12 09:15,1.17867,1.17996,1.17867,1.17975,8698 +2020-11-12 09:30,1.17976,1.18119,1.17974,1.18095,10496 +2020-11-12 09:45,1.18093,1.1812,1.18076,1.1809,6907 +2020-11-12 10:00,1.1809,1.18167,1.18085,1.18129,7445 +2020-11-12 10:15,1.18133,1.18162,1.18101,1.18112,5519 +2020-11-12 10:30,1.18113,1.18202,1.18113,1.1818,6224 +2020-11-12 10:45,1.18179,1.18182,1.18099,1.18101,4006 +2020-11-12 11:00,1.18102,1.18231,1.18101,1.18204,6793 +2020-11-12 11:15,1.18202,1.18212,1.18148,1.18166,5021 +2020-11-12 11:30,1.18166,1.18168,1.18116,1.18136,5052 +2020-11-12 11:45,1.18136,1.18143,1.18081,1.18102,5723 +2020-11-12 12:00,1.18103,1.18128,1.18041,1.18051,7617 +2020-11-12 12:15,1.18051,1.18118,1.18043,1.18056,6132 +2020-11-12 12:30,1.18057,1.18077,1.17986,1.17991,6031 +2020-11-12 12:45,1.1799,1.18003,1.17914,1.17982,7417 +2020-11-12 13:00,1.17983,1.17995,1.17899,1.17913,7644 +2020-11-12 13:15,1.17916,1.18,1.17902,1.17996,6837 +2020-11-12 13:30,1.17995,1.18056,1.17949,1.17974,10222 +2020-11-12 13:45,1.17974,1.18125,1.17949,1.18093,11270 +2020-11-12 14:00,1.18093,1.18133,1.1791,1.1793,6644 +2020-11-12 14:15,1.17928,1.17948,1.17877,1.1789,7302 +2020-11-12 14:30,1.17891,1.17967,1.17872,1.1792,10202 +2020-11-12 14:45,1.17921,1.17989,1.17919,1.17965,9621 +2020-11-12 15:00,1.17966,1.18051,1.17925,1.18037,11607 +2020-11-12 15:15,1.18038,1.181,1.18012,1.18056,9456 +2020-11-12 15:30,1.18056,1.18099,1.18018,1.18093,7158 +2020-11-12 15:45,1.18093,1.18158,1.18064,1.18105,8158 +2020-11-12 16:00,1.18105,1.18165,1.18093,1.18161,5239 +2020-11-12 16:15,1.1816,1.18175,1.18111,1.18171,5343 +2020-11-12 16:30,1.18171,1.18171,1.18117,1.1814,4029 +2020-11-12 16:45,1.18138,1.18163,1.18123,1.18141,4105 +2020-11-12 17:00,1.18141,1.18149,1.18095,1.18124,2332 +2020-11-12 17:15,1.18122,1.18122,1.1805,1.18065,2565 +2020-11-12 17:30,1.18065,1.18077,1.18012,1.18036,3248 +2020-11-12 17:45,1.18036,1.18046,1.17985,1.18,4688 +2020-11-12 18:00,1.17999,1.18045,1.1796,1.18043,3910 +2020-11-12 18:15,1.18041,1.18041,1.17971,1.18021,3103 +2020-11-12 18:30,1.18021,1.18081,1.1802,1.18068,3622 +2020-11-12 18:45,1.18066,1.18105,1.1805,1.18102,2484 +2020-11-12 19:00,1.18102,1.18113,1.18038,1.18046,2758 +2020-11-12 19:15,1.18046,1.18074,1.1801,1.1806,3424 +2020-11-12 19:30,1.18058,1.18083,1.18028,1.18028,3871 +2020-11-12 19:45,1.18027,1.18088,1.1802,1.1806,2418 +2020-11-12 20:00,1.1806,1.18071,1.17991,1.17996,3238 +2020-11-12 20:15,1.17995,1.18051,1.17992,1.18025,3420 +2020-11-12 20:30,1.18026,1.18062,1.18019,1.18047,2501 +2020-11-12 20:45,1.18046,1.18074,1.1802,1.18069,3412 +2020-11-12 21:00,1.18071,1.1809,1.18059,1.18071,2759 +2020-11-12 21:15,1.18072,1.18077,1.18063,1.18069,658 +2020-11-12 21:30,1.18068,1.18086,1.18064,1.18075,728 +2020-11-12 21:45,1.18073,1.18074,1.18032,1.18041,685 +2020-11-12 22:00,1.18039,1.18072,1.18011,1.18062,47 +2020-11-12 22:15,1.18065,1.18083,1.18062,1.18062,23 +2020-11-12 22:30,1.18062,1.18073,1.18048,1.18068,364 +2020-11-12 22:45,1.18069,1.18078,1.18053,1.18068,113 +2020-11-12 23:00,1.1807,1.18077,1.1806,1.18061,684 +2020-11-12 23:15,1.18061,1.18071,1.18047,1.18063,1160 +2020-11-12 23:30,1.18061,1.18075,1.1805,1.18052,962 +2020-11-12 23:45,1.18051,1.18061,1.18029,1.18038,1300 +2020-11-13 00:00,1.18039,1.18089,1.18037,1.18076,2014 +2020-11-13 00:15,1.18078,1.18113,1.1807,1.18113,2400 +2020-11-13 00:30,1.18112,1.18118,1.18098,1.18098,1594 +2020-11-13 00:45,1.18099,1.18136,1.18062,1.18071,4150 +2020-11-13 01:00,1.1807,1.18108,1.18066,1.18101,4354 +2020-11-13 01:15,1.181,1.18133,1.18097,1.18105,3340 +2020-11-13 01:30,1.18106,1.18113,1.18078,1.18089,7006 +2020-11-13 01:45,1.18089,1.18116,1.18065,1.18085,4835 +2020-11-13 02:00,1.18084,1.18084,1.18018,1.18032,6234 +2020-11-13 02:15,1.18033,1.18043,1.18012,1.18018,4462 +2020-11-13 02:30,1.18018,1.18047,1.18008,1.18036,4042 +2020-11-13 02:45,1.18036,1.18056,1.18016,1.18043,5203 +2020-11-13 03:00,1.18045,1.18066,1.18026,1.18027,2861 +2020-11-13 03:15,1.18025,1.18046,1.18022,1.18031,3955 +2020-11-13 03:30,1.18031,1.18047,1.18023,1.18035,4104 +2020-11-13 03:45,1.18036,1.18042,1.18006,1.1802,4665 +2020-11-13 04:00,1.1802,1.1802,1.17989,1.17999,4202 +2020-11-13 04:15,1.18,1.18015,1.17993,1.18006,3937 +2020-11-13 04:30,1.18007,1.18034,1.18004,1.18024,2332 +2020-11-13 04:45,1.18024,1.18055,1.18023,1.18037,3049 +2020-11-13 05:00,1.18038,1.18056,1.18031,1.18036,4806 +2020-11-13 05:15,1.18037,1.18059,1.18036,1.18058,3883 +2020-11-13 05:30,1.18058,1.1807,1.18041,1.18069,3073 +2020-11-13 05:45,1.18068,1.18098,1.18063,1.18063,2658 +2020-11-13 06:00,1.18067,1.1809,1.18031,1.18032,3561 +2020-11-13 06:15,1.18034,1.18063,1.18032,1.1806,1741 +2020-11-13 06:30,1.18061,1.18091,1.18061,1.18079,3614 +2020-11-13 06:45,1.18079,1.18084,1.18061,1.18071,2560 +2020-11-13 07:00,1.18071,1.18072,1.18007,1.18018,3611 +2020-11-13 07:15,1.18018,1.18069,1.18007,1.18063,1877 +2020-11-13 07:30,1.18062,1.18143,1.18027,1.18122,4506 +2020-11-13 07:45,1.18121,1.18179,1.18096,1.18156,7671 +2020-11-13 08:00,1.18156,1.18163,1.18087,1.18148,8499 +2020-11-13 08:15,1.18147,1.18152,1.18087,1.18131,7154 +2020-11-13 08:30,1.18133,1.18227,1.18117,1.18141,9004 +2020-11-13 08:45,1.18141,1.18169,1.18091,1.18138,6491 +2020-11-13 09:00,1.18138,1.18149,1.18088,1.18098,4782 +2020-11-13 09:15,1.18097,1.18129,1.18076,1.18099,5175 +2020-11-13 09:30,1.18097,1.18138,1.18069,1.18117,4569 +2020-11-13 09:45,1.18116,1.18271,1.18113,1.18267,6222 +2020-11-13 10:00,1.18267,1.18327,1.18257,1.18306,6839 +2020-11-13 10:15,1.18307,1.18343,1.18265,1.18275,5693 +2020-11-13 10:30,1.18276,1.18294,1.18234,1.18241,5297 +2020-11-13 10:45,1.18242,1.18268,1.18208,1.18262,4810 +2020-11-13 11:00,1.18263,1.1829,1.18222,1.1828,5989 +2020-11-13 11:15,1.18279,1.18303,1.18163,1.18215,6508 +2020-11-13 11:30,1.18215,1.18215,1.18161,1.18164,4877 +2020-11-13 11:45,1.18165,1.18196,1.18149,1.18177,5860 +2020-11-13 12:00,1.18178,1.18182,1.18117,1.18121,4776 +2020-11-13 12:15,1.18122,1.18172,1.18118,1.18157,5308 +2020-11-13 12:30,1.18156,1.18166,1.18137,1.1815,3694 +2020-11-13 12:45,1.18149,1.18193,1.18139,1.18161,5079 +2020-11-13 13:00,1.18162,1.18185,1.18135,1.18148,6965 +2020-11-13 13:15,1.18147,1.18154,1.18115,1.18132,3794 +2020-11-13 13:30,1.18132,1.18244,1.18082,1.182,7064 +2020-11-13 13:45,1.18202,1.18264,1.18191,1.18206,4679 +2020-11-13 14:00,1.18206,1.18258,1.18189,1.18247,6663 +2020-11-13 14:15,1.18246,1.18252,1.18141,1.18156,5884 +2020-11-13 14:30,1.18157,1.18211,1.18133,1.18197,8508 +2020-11-13 14:45,1.18197,1.18252,1.18154,1.18168,7183 +2020-11-13 15:00,1.18168,1.18315,1.18146,1.18286,6434 +2020-11-13 15:15,1.18287,1.18309,1.1824,1.18245,6659 +2020-11-13 15:30,1.18247,1.18267,1.18206,1.1824,6093 +2020-11-13 15:45,1.18242,1.18282,1.18181,1.182,6386 +2020-11-13 16:00,1.182,1.18292,1.18199,1.18276,4754 +2020-11-13 16:15,1.18277,1.18286,1.18222,1.18226,3324 +2020-11-13 16:30,1.18226,1.18241,1.18177,1.18232,3459 +2020-11-13 16:45,1.18231,1.18245,1.18196,1.18237,3039 +2020-11-13 17:00,1.18237,1.18314,1.18227,1.18282,2477 +2020-11-13 17:15,1.18285,1.18307,1.18262,1.18264,1560 +2020-11-13 17:30,1.18265,1.18282,1.18261,1.18276,1657 +2020-11-13 17:45,1.18278,1.18297,1.18251,1.18263,2792 +2020-11-13 18:00,1.18263,1.18331,1.18255,1.18296,2047 +2020-11-13 18:15,1.18296,1.18307,1.18278,1.18287,1701 +2020-11-13 18:30,1.18286,1.18302,1.18272,1.18278,1866 +2020-11-13 18:45,1.1828,1.18287,1.18241,1.18249,1785 +2020-11-13 19:00,1.18249,1.18324,1.18241,1.1832,2809 +2020-11-13 19:15,1.18318,1.18338,1.18311,1.18334,3104 +2020-11-13 19:30,1.18333,1.18348,1.18319,1.18337,1658 +2020-11-13 19:45,1.18336,1.18339,1.18311,1.18327,2213 +2020-11-13 20:00,1.18326,1.18342,1.18314,1.18334,2009 +2020-11-13 20:15,1.18333,1.18353,1.1831,1.18347,2962 +2020-11-13 20:30,1.18347,1.1835,1.18333,1.18338,2289 +2020-11-13 20:45,1.18338,1.18341,1.18305,1.18326,3386 +2020-11-13 21:00,1.18324,1.18347,1.18321,1.18346,2673 +2020-11-13 21:15,1.18346,1.18374,1.18329,1.18334,2053 +2020-11-13 21:30,1.18334,1.18342,1.18329,1.18331,1944 +2020-11-13 21:45,1.18333,1.18355,1.1831,1.1831,6013 +2020-11-15 22:00,1.18411,1.18414,1.18288,1.18368,314 +2020-11-15 22:15,1.1837,1.18412,1.18332,1.18409,256 +2020-11-15 22:30,1.1841,1.1841,1.18371,1.18374,118 +2020-11-15 22:45,1.18373,1.18382,1.18361,1.18369,213 +2020-11-15 23:00,1.18372,1.18439,1.1837,1.18428,826 +2020-11-15 23:15,1.18429,1.18474,1.18427,1.18459,1616 +2020-11-15 23:30,1.18458,1.1847,1.18444,1.18468,3254 +2020-11-15 23:45,1.18467,1.18488,1.18445,1.18448,2870 +2020-11-16 00:00,1.18447,1.18452,1.18372,1.18394,5366 +2020-11-16 00:15,1.18393,1.18427,1.18388,1.18411,3236 +2020-11-16 00:30,1.18412,1.18419,1.18391,1.18418,1997 +2020-11-16 00:45,1.18415,1.18434,1.18393,1.18396,4115 +2020-11-16 01:00,1.18396,1.18433,1.18381,1.18428,3718 +2020-11-16 01:15,1.18426,1.18484,1.18421,1.18479,3592 +2020-11-16 01:30,1.18479,1.18488,1.18453,1.18457,4298 +2020-11-16 01:45,1.18457,1.18488,1.18453,1.18479,2820 +2020-11-16 02:00,1.18479,1.185,1.18466,1.18485,4006 +2020-11-16 02:15,1.18485,1.18487,1.18451,1.18454,3623 +2020-11-16 02:30,1.18455,1.18496,1.18451,1.18492,2890 +2020-11-16 02:45,1.18493,1.185,1.18486,1.18498,3347 +2020-11-16 03:00,1.18498,1.18541,1.18497,1.18524,4563 +2020-11-16 03:15,1.18525,1.18542,1.18517,1.18532,2728 +2020-11-16 03:30,1.18532,1.18532,1.18511,1.18518,2235 +2020-11-16 03:45,1.18517,1.18527,1.18493,1.18522,1623 +2020-11-16 04:00,1.18522,1.18533,1.18508,1.18532,1335 +2020-11-16 04:15,1.18531,1.18546,1.18528,1.18541,1167 +2020-11-16 04:30,1.18542,1.18542,1.18529,1.18537,1050 +2020-11-16 04:45,1.18538,1.18541,1.18515,1.18516,2050 +2020-11-16 05:00,1.18516,1.18529,1.18505,1.18514,1375 +2020-11-16 05:15,1.18513,1.18521,1.18494,1.18501,2122 +2020-11-16 05:30,1.18502,1.18512,1.18484,1.18512,2129 +2020-11-16 05:45,1.1851,1.1851,1.18469,1.18471,3115 +2020-11-16 06:00,1.18469,1.185,1.18462,1.18498,4966 +2020-11-16 06:15,1.18499,1.185,1.18471,1.18476,1404 +2020-11-16 06:30,1.18476,1.18491,1.18472,1.18477,2558 +2020-11-16 06:45,1.18477,1.18514,1.18476,1.18514,1887 +2020-11-16 07:00,1.18515,1.18518,1.18486,1.18492,3585 +2020-11-16 07:15,1.18491,1.18499,1.18443,1.18453,4970 +2020-11-16 07:30,1.18452,1.18499,1.18442,1.18499,3112 +2020-11-16 07:45,1.18502,1.18567,1.18498,1.18558,4688 +2020-11-16 08:00,1.18557,1.18615,1.18534,1.18591,7418 +2020-11-16 08:15,1.1859,1.18602,1.1855,1.186,5712 +2020-11-16 08:30,1.18599,1.18689,1.18596,1.18657,6666 +2020-11-16 08:45,1.18657,1.18669,1.18591,1.18592,6143 +2020-11-16 09:00,1.18591,1.18605,1.18521,1.1856,7767 +2020-11-16 09:15,1.1856,1.18561,1.18403,1.18433,7567 +2020-11-16 09:30,1.18435,1.18479,1.18418,1.18472,6876 +2020-11-16 09:45,1.18472,1.18484,1.18437,1.18449,3828 +2020-11-16 10:00,1.1845,1.18458,1.1835,1.18425,6374 +2020-11-16 10:15,1.18424,1.18458,1.18413,1.18424,2983 +2020-11-16 10:30,1.18424,1.1844,1.18367,1.1843,6706 +2020-11-16 10:45,1.18429,1.18476,1.18386,1.18439,4627 +2020-11-16 11:00,1.18439,1.18453,1.18386,1.18416,5856 +2020-11-16 11:15,1.18418,1.1849,1.18408,1.18442,5848 +2020-11-16 11:30,1.18443,1.18458,1.18385,1.18385,5251 +2020-11-16 11:45,1.18385,1.18454,1.18256,1.18293,10851 +2020-11-16 12:00,1.18293,1.18492,1.18277,1.18442,12647 +2020-11-16 12:15,1.18444,1.18464,1.18251,1.18336,10165 +2020-11-16 12:30,1.18338,1.1846,1.18329,1.18441,9259 +2020-11-16 12:45,1.1844,1.1849,1.18328,1.18333,9050 +2020-11-16 13:00,1.18334,1.18346,1.18221,1.18295,8758 +2020-11-16 13:15,1.18294,1.18305,1.18213,1.18249,9968 +2020-11-16 13:30,1.18247,1.18295,1.18141,1.18148,11441 +2020-11-16 13:45,1.18149,1.1823,1.18145,1.18209,8078 +2020-11-16 14:00,1.1821,1.18327,1.18187,1.18308,9823 +2020-11-16 14:15,1.18308,1.18326,1.18245,1.18307,6393 +2020-11-16 14:30,1.18307,1.1835,1.1828,1.1831,8937 +2020-11-16 14:45,1.1831,1.18325,1.18229,1.18267,7011 +2020-11-16 15:00,1.18267,1.18322,1.18205,1.1832,5247 +2020-11-16 15:15,1.1832,1.18377,1.18315,1.1835,4945 +2020-11-16 15:30,1.1835,1.18411,1.18336,1.18383,6029 +2020-11-16 15:45,1.18381,1.18419,1.18318,1.1835,7898 +2020-11-16 16:00,1.18349,1.18424,1.18349,1.18399,5798 +2020-11-16 16:15,1.184,1.18454,1.18374,1.18375,3308 +2020-11-16 16:30,1.18374,1.18386,1.18346,1.18381,2788 +2020-11-16 16:45,1.18382,1.18448,1.18378,1.18436,3732 +2020-11-16 17:00,1.18436,1.18438,1.18386,1.18399,2658 +2020-11-16 17:15,1.184,1.18425,1.18399,1.18416,1166 +2020-11-16 17:30,1.18416,1.18442,1.18404,1.18422,1403 +2020-11-16 17:45,1.18423,1.1843,1.184,1.18417,2141 +2020-11-16 18:00,1.18417,1.18425,1.18376,1.18382,1287 +2020-11-16 18:15,1.18386,1.18395,1.18366,1.18378,1907 +2020-11-16 18:30,1.18377,1.18465,1.18371,1.18418,3417 +2020-11-16 18:45,1.18421,1.18427,1.18392,1.18397,2260 +2020-11-16 19:00,1.18397,1.1844,1.1838,1.1844,2597 +2020-11-16 19:15,1.18441,1.18463,1.18436,1.18461,1386 +2020-11-16 19:30,1.1846,1.18462,1.18431,1.18435,1249 +2020-11-16 19:45,1.18436,1.18458,1.18419,1.18424,1607 +2020-11-16 20:00,1.18425,1.1845,1.18422,1.18432,1524 +2020-11-16 20:15,1.18432,1.18449,1.18424,1.18444,1305 +2020-11-16 20:30,1.18445,1.1846,1.18441,1.18458,1221 +2020-11-16 20:45,1.18458,1.18523,1.18452,1.18522,2076 +2020-11-16 21:00,1.18522,1.18525,1.1849,1.18496,2728 +2020-11-16 21:15,1.18496,1.18546,1.18495,1.18541,787 +2020-11-16 21:30,1.1854,1.18553,1.1853,1.18548,1426 +2020-11-16 21:45,1.1855,1.18567,1.18509,1.18516,1206 +2020-11-16 22:00,1.18509,1.18549,1.18509,1.18531,112 +2020-11-16 22:15,1.18532,1.18562,1.18527,1.18556,144 +2020-11-16 22:30,1.18555,1.18566,1.18541,1.18559,199 +2020-11-16 22:45,1.18558,1.18562,1.18556,1.18557,148 +2020-11-16 23:00,1.18558,1.18604,1.18555,1.18575,1489 +2020-11-16 23:15,1.18575,1.18597,1.18557,1.18594,2068 +2020-11-16 23:30,1.18595,1.18607,1.18581,1.18583,1276 +2020-11-16 23:45,1.18582,1.18593,1.1857,1.18592,698 +2020-11-17 00:00,1.18593,1.18621,1.18587,1.18608,2995 +2020-11-17 00:15,1.18608,1.18619,1.18595,1.18618,1870 +2020-11-17 00:30,1.18617,1.18639,1.18611,1.18637,1627 +2020-11-17 00:45,1.18637,1.18644,1.18619,1.18642,3258 +2020-11-17 01:00,1.18641,1.18654,1.18627,1.18643,2537 +2020-11-17 01:15,1.18642,1.18666,1.18627,1.18629,1447 +2020-11-17 01:30,1.18629,1.18661,1.18622,1.18623,2073 +2020-11-17 01:45,1.18623,1.18643,1.18596,1.18598,2920 +2020-11-17 02:00,1.18597,1.18628,1.18589,1.18612,3080 +2020-11-17 02:15,1.18612,1.1865,1.18607,1.18648,2086 +2020-11-17 02:30,1.18649,1.1866,1.18623,1.18658,1185 +2020-11-17 02:45,1.18657,1.18669,1.18609,1.18623,2061 +2020-11-17 03:00,1.18623,1.18626,1.18604,1.18616,2758 +2020-11-17 03:15,1.18617,1.18623,1.18605,1.18607,1997 +2020-11-17 03:30,1.18607,1.18623,1.186,1.18603,1753 +2020-11-17 03:45,1.18603,1.1861,1.18589,1.18601,1406 +2020-11-17 04:00,1.18599,1.18606,1.18577,1.18598,1346 +2020-11-17 04:15,1.18598,1.18599,1.18588,1.18593,820 +2020-11-17 04:30,1.18592,1.18607,1.18575,1.18578,794 +2020-11-17 04:45,1.18578,1.18598,1.18578,1.1859,866 +2020-11-17 05:00,1.18591,1.18593,1.18575,1.18577,833 +2020-11-17 05:15,1.18577,1.18587,1.18546,1.18551,1199 +2020-11-17 05:30,1.18551,1.18571,1.18551,1.18569,1166 +2020-11-17 05:45,1.18569,1.18587,1.1854,1.18561,1512 +2020-11-17 06:00,1.18561,1.18563,1.18514,1.18544,3975 +2020-11-17 06:15,1.18544,1.1857,1.18539,1.18566,1985 +2020-11-17 06:30,1.18566,1.18583,1.18549,1.18552,2418 +2020-11-17 06:45,1.18551,1.18574,1.18547,1.18556,2734 +2020-11-17 07:00,1.18556,1.18597,1.18556,1.18596,2609 +2020-11-17 07:15,1.18596,1.18596,1.18482,1.18535,3067 +2020-11-17 07:30,1.18535,1.18536,1.18481,1.18485,4850 +2020-11-17 07:45,1.18484,1.18541,1.18459,1.18462,5056 +2020-11-17 08:00,1.1846,1.18593,1.18425,1.18591,7382 +2020-11-17 08:15,1.18593,1.18656,1.18587,1.18614,5950 +2020-11-17 08:30,1.18615,1.18715,1.18614,1.1866,7060 +2020-11-17 08:45,1.18659,1.18755,1.18634,1.18739,9917 +2020-11-17 09:00,1.1874,1.18749,1.18658,1.18731,6955 +2020-11-17 09:15,1.1873,1.18736,1.18648,1.18676,5253 +2020-11-17 09:30,1.18677,1.18743,1.18655,1.18691,4534 +2020-11-17 09:45,1.18691,1.18705,1.18649,1.18679,6060 +2020-11-17 10:00,1.18678,1.18698,1.18652,1.18681,4023 +2020-11-17 10:15,1.1868,1.18697,1.18659,1.1867,4705 +2020-11-17 10:30,1.1867,1.18769,1.18657,1.1874,5218 +2020-11-17 10:45,1.18741,1.1876,1.18689,1.18747,5121 +2020-11-17 11:00,1.18748,1.18819,1.18746,1.18819,4911 +2020-11-17 11:15,1.1882,1.18852,1.18815,1.18851,5574 +2020-11-17 11:30,1.1885,1.18856,1.18757,1.18757,5307 +2020-11-17 11:45,1.18759,1.18801,1.18756,1.18775,4047 +2020-11-17 12:00,1.18774,1.18782,1.18725,1.18764,4257 +2020-11-17 12:15,1.18763,1.18785,1.187,1.18733,4400 +2020-11-17 12:30,1.18732,1.18748,1.18674,1.18695,5239 +2020-11-17 12:45,1.18695,1.1881,1.18665,1.18806,5414 +2020-11-17 13:00,1.18807,1.18822,1.18768,1.18816,5010 +2020-11-17 13:15,1.18819,1.18856,1.18801,1.18823,7159 +2020-11-17 13:30,1.18823,1.18881,1.18723,1.18855,8836 +2020-11-17 13:45,1.18855,1.18937,1.18843,1.18858,9299 +2020-11-17 14:00,1.18859,1.18859,1.18759,1.18774,4574 +2020-11-17 14:15,1.18773,1.18788,1.18721,1.18762,4945 +2020-11-17 14:30,1.18761,1.18814,1.18735,1.18737,7457 +2020-11-17 14:45,1.18736,1.18741,1.18666,1.18714,8220 +2020-11-17 15:00,1.18715,1.18715,1.18641,1.18691,6421 +2020-11-17 15:15,1.18691,1.18737,1.18648,1.18681,6833 +2020-11-17 15:30,1.18682,1.18691,1.18576,1.18653,7402 +2020-11-17 15:45,1.18654,1.18766,1.18636,1.18759,6653 +2020-11-17 16:00,1.18758,1.18775,1.18696,1.18699,7463 +2020-11-17 16:15,1.18698,1.18706,1.18636,1.1866,4630 +2020-11-17 16:30,1.18661,1.1867,1.18618,1.18624,5699 +2020-11-17 16:45,1.18623,1.18643,1.18604,1.18611,5653 +2020-11-17 17:00,1.18611,1.1862,1.18573,1.18613,3298 +2020-11-17 17:15,1.18614,1.18637,1.18604,1.18619,3320 +2020-11-17 17:30,1.18618,1.18656,1.18595,1.18637,4354 +2020-11-17 17:45,1.18638,1.18649,1.18615,1.18629,3391 +2020-11-17 18:00,1.1863,1.18674,1.18626,1.18666,3112 +2020-11-17 18:15,1.18665,1.18676,1.18624,1.18629,1973 +2020-11-17 18:30,1.1863,1.18657,1.18626,1.18636,1529 +2020-11-17 18:45,1.18636,1.18686,1.18624,1.18675,2016 +2020-11-17 19:00,1.18674,1.18691,1.18658,1.18688,1816 +2020-11-17 19:15,1.18689,1.18694,1.18649,1.18653,1806 +2020-11-17 19:30,1.18653,1.18661,1.18641,1.18647,1362 +2020-11-17 19:45,1.18646,1.18663,1.18634,1.18641,1597 +2020-11-17 20:00,1.18641,1.18649,1.18614,1.1863,1641 +2020-11-17 20:15,1.18632,1.18639,1.18613,1.18638,3446 +2020-11-17 20:30,1.18638,1.18652,1.18631,1.18631,2015 +2020-11-17 20:45,1.1863,1.18661,1.18622,1.18653,4113 +2020-11-17 21:00,1.18652,1.18655,1.18633,1.18636,1541 +2020-11-17 21:15,1.18636,1.18661,1.18631,1.18656,472 +2020-11-17 21:30,1.18655,1.18658,1.18621,1.18628,651 +2020-11-17 21:45,1.18627,1.1863,1.18604,1.18612,573 +2020-11-17 22:00,1.18607,1.18656,1.18601,1.18648,69 +2020-11-17 22:15,1.18649,1.18651,1.18616,1.18617,128 +2020-11-17 22:30,1.1862,1.18635,1.18615,1.18628,139 +2020-11-17 22:45,1.18623,1.18636,1.18621,1.18632,146 +2020-11-17 23:00,1.18633,1.18633,1.18605,1.18608,647 +2020-11-17 23:15,1.18608,1.1863,1.18605,1.18617,838 +2020-11-17 23:30,1.18616,1.1864,1.18616,1.18637,1124 +2020-11-17 23:45,1.18637,1.18638,1.18624,1.18636,364 +2020-11-18 00:00,1.18637,1.18659,1.18616,1.1862,2284 +2020-11-18 00:15,1.1862,1.18628,1.18592,1.18601,2061 +2020-11-18 00:30,1.186,1.18622,1.1857,1.18576,2836 +2020-11-18 00:45,1.18575,1.18592,1.18554,1.18589,2242 +2020-11-18 01:00,1.18589,1.18593,1.18532,1.18541,2810 +2020-11-18 01:15,1.18542,1.18559,1.18527,1.18549,1786 +2020-11-18 01:30,1.18548,1.18553,1.18504,1.18512,2064 +2020-11-18 01:45,1.18511,1.18547,1.18506,1.18546,3645 +2020-11-18 02:00,1.18546,1.18557,1.18535,1.18549,2442 +2020-11-18 02:15,1.18548,1.18562,1.18548,1.18558,2052 +2020-11-18 02:30,1.18559,1.18572,1.18557,1.18559,1414 +2020-11-18 02:45,1.18559,1.186,1.18557,1.18589,2260 +2020-11-18 03:00,1.18587,1.18591,1.18573,1.18584,1278 +2020-11-18 03:15,1.18585,1.18604,1.18582,1.18594,1588 +2020-11-18 03:30,1.18595,1.18609,1.18593,1.18599,1877 +2020-11-18 03:45,1.186,1.18621,1.18597,1.18621,1968 +2020-11-18 04:00,1.1862,1.18632,1.18605,1.18631,1847 +2020-11-18 04:15,1.18631,1.18658,1.18627,1.18652,1544 +2020-11-18 04:30,1.18652,1.18683,1.18645,1.18679,1953 +2020-11-18 04:45,1.18679,1.18697,1.18674,1.18681,1910 +2020-11-18 05:00,1.18684,1.18737,1.18671,1.18735,1869 +2020-11-18 05:15,1.18736,1.18749,1.18702,1.18746,4583 +2020-11-18 05:30,1.18744,1.18771,1.18729,1.18737,4352 +2020-11-18 05:45,1.18738,1.18765,1.18723,1.18732,3597 +2020-11-18 06:00,1.18733,1.18742,1.1871,1.1871,5234 +2020-11-18 06:15,1.18711,1.18748,1.18692,1.18696,4648 +2020-11-18 06:30,1.18697,1.18751,1.18694,1.18751,4791 +2020-11-18 06:45,1.18752,1.18784,1.18736,1.18768,5159 +2020-11-18 07:00,1.18768,1.18801,1.18759,1.18785,5916 +2020-11-18 07:15,1.18785,1.18841,1.18785,1.18815,7070 +2020-11-18 07:30,1.18815,1.18849,1.18803,1.1883,4150 +2020-11-18 07:45,1.18831,1.18861,1.18822,1.18822,4205 +2020-11-18 08:00,1.18823,1.18894,1.18776,1.18891,6257 +2020-11-18 08:15,1.18891,1.18908,1.18855,1.18869,6946 +2020-11-18 08:30,1.1887,1.18887,1.18779,1.18822,5202 +2020-11-18 08:45,1.18819,1.1884,1.18757,1.18781,4775 +2020-11-18 09:00,1.18781,1.18888,1.1876,1.18848,4644 +2020-11-18 09:15,1.18848,1.18849,1.18785,1.18795,4252 +2020-11-18 09:30,1.18794,1.18851,1.18785,1.18845,4875 +2020-11-18 09:45,1.18846,1.18892,1.18837,1.1888,3334 +2020-11-18 10:00,1.1888,1.18881,1.18795,1.18822,4409 +2020-11-18 10:15,1.18821,1.18851,1.18799,1.18837,5425 +2020-11-18 10:30,1.18838,1.18848,1.18739,1.18741,4213 +2020-11-18 10:45,1.18741,1.18773,1.18721,1.18769,3882 +2020-11-18 11:00,1.18769,1.18783,1.18695,1.18732,5211 +2020-11-18 11:15,1.18733,1.18771,1.187,1.18727,5105 +2020-11-18 11:30,1.18729,1.18782,1.18704,1.18782,5243 +2020-11-18 11:45,1.18781,1.18787,1.18705,1.18723,9462 +2020-11-18 12:00,1.18722,1.18724,1.18618,1.18701,8342 +2020-11-18 12:15,1.187,1.18708,1.18665,1.18674,5348 +2020-11-18 12:30,1.18674,1.187,1.18611,1.1866,4073 +2020-11-18 12:45,1.1866,1.18693,1.1863,1.18671,6490 +2020-11-18 13:00,1.18675,1.18692,1.1865,1.18677,4822 +2020-11-18 13:15,1.18676,1.18696,1.18571,1.18582,5921 +2020-11-18 13:30,1.18581,1.18611,1.18517,1.18547,7816 +2020-11-18 13:45,1.18547,1.18607,1.18513,1.18593,6744 +2020-11-18 14:00,1.18594,1.18616,1.18541,1.18592,7383 +2020-11-18 14:15,1.18591,1.18666,1.18587,1.18655,5300 +2020-11-18 14:30,1.18655,1.18729,1.18649,1.18704,6016 +2020-11-18 14:45,1.18702,1.18708,1.18636,1.18656,5420 +2020-11-18 15:00,1.18656,1.18717,1.18653,1.18664,6365 +2020-11-18 15:15,1.18663,1.18685,1.18637,1.18671,5344 +2020-11-18 15:30,1.18669,1.18707,1.18652,1.18681,6072 +2020-11-18 15:45,1.18681,1.18767,1.18676,1.18748,7200 +2020-11-18 16:00,1.18749,1.18766,1.18673,1.1868,4911 +2020-11-18 16:15,1.1868,1.18706,1.18648,1.18651,5668 +2020-11-18 16:30,1.18649,1.18685,1.18647,1.18672,5399 +2020-11-18 16:45,1.18673,1.18696,1.18625,1.18689,3506 +2020-11-18 17:00,1.1869,1.18719,1.18674,1.18696,3834 +2020-11-18 17:15,1.18695,1.187,1.18641,1.18681,4691 +2020-11-18 17:30,1.18681,1.18689,1.18653,1.18687,3083 +2020-11-18 17:45,1.18686,1.187,1.18677,1.18695,5079 +2020-11-18 18:00,1.18693,1.18701,1.18654,1.18656,4313 +2020-11-18 18:15,1.18655,1.18682,1.18649,1.18651,3674 +2020-11-18 18:30,1.18651,1.18686,1.1865,1.18685,3061 +2020-11-18 18:45,1.18685,1.18691,1.18643,1.18651,2930 +2020-11-18 19:00,1.18652,1.18678,1.18632,1.18651,3524 +2020-11-18 19:15,1.18651,1.18661,1.18604,1.1861,3309 +2020-11-18 19:30,1.1861,1.18647,1.18582,1.18645,2386 +2020-11-18 19:45,1.18644,1.18661,1.18627,1.18636,2212 +2020-11-18 20:00,1.18636,1.18663,1.1862,1.18653,1470 +2020-11-18 20:15,1.18653,1.18671,1.18627,1.18627,965 +2020-11-18 20:30,1.18627,1.18631,1.18564,1.18571,2296 +2020-11-18 20:45,1.18571,1.18576,1.18527,1.18528,3824 +2020-11-18 21:00,1.18528,1.18554,1.18491,1.18497,2168 +2020-11-18 21:15,1.18496,1.18548,1.18494,1.18537,1143 +2020-11-18 21:30,1.18536,1.18548,1.18527,1.18543,1214 +2020-11-18 21:45,1.18543,1.18562,1.18525,1.18526,1126 +2020-11-18 22:00,1.18526,1.18557,1.18526,1.18546,30 +2020-11-18 22:15,1.18548,1.18553,1.18519,1.18537,70 +2020-11-18 22:30,1.18531,1.1858,1.18516,1.18541,234 +2020-11-18 22:45,1.18541,1.18541,1.18515,1.18515,100 +2020-11-18 23:00,1.18514,1.18533,1.18514,1.18526,587 +2020-11-18 23:15,1.18524,1.18532,1.18515,1.1853,659 +2020-11-18 23:30,1.1853,1.18534,1.18525,1.18527,309 +2020-11-18 23:45,1.18526,1.18527,1.18448,1.18451,1082 +2020-11-19 00:00,1.18452,1.18452,1.18319,1.1832,5146 +2020-11-19 00:15,1.18321,1.18385,1.18318,1.18358,5405 +2020-11-19 00:30,1.18358,1.18412,1.18358,1.18395,4143 +2020-11-19 00:45,1.18394,1.18423,1.18354,1.1837,3707 +2020-11-19 01:00,1.1837,1.18403,1.18334,1.18383,6118 +2020-11-19 01:15,1.18384,1.18406,1.18376,1.18396,3606 +2020-11-19 01:30,1.18397,1.18406,1.1838,1.18391,2976 +2020-11-19 01:45,1.18391,1.18434,1.1839,1.18427,4667 +2020-11-19 02:00,1.18426,1.18457,1.18426,1.1845,3332 +2020-11-19 02:15,1.1845,1.18467,1.18442,1.18456,2108 +2020-11-19 02:30,1.18455,1.1851,1.18451,1.18501,3258 +2020-11-19 02:45,1.18502,1.18512,1.18455,1.18455,2918 +2020-11-19 03:00,1.18455,1.18484,1.18451,1.18452,2609 +2020-11-19 03:15,1.18453,1.1847,1.18445,1.18452,1918 +2020-11-19 03:30,1.18452,1.18457,1.18423,1.1843,1949 +2020-11-19 03:45,1.18429,1.18443,1.18407,1.18421,1608 +2020-11-19 04:00,1.18421,1.18446,1.18411,1.18443,2703 +2020-11-19 04:15,1.18443,1.18467,1.18437,1.18467,3583 +2020-11-19 04:30,1.18466,1.18475,1.18447,1.18468,2154 +2020-11-19 04:45,1.1847,1.18478,1.18463,1.18469,3552 +2020-11-19 05:00,1.1847,1.18475,1.18433,1.18437,1790 +2020-11-19 05:15,1.18437,1.18458,1.18426,1.18458,2037 +2020-11-19 05:30,1.1846,1.18488,1.18459,1.18482,2617 +2020-11-19 05:45,1.18482,1.1852,1.18473,1.18503,3491 +2020-11-19 06:00,1.18503,1.18516,1.18465,1.18472,3765 +2020-11-19 06:15,1.18473,1.18483,1.18453,1.1848,3349 +2020-11-19 06:30,1.18481,1.18502,1.18463,1.18489,3455 +2020-11-19 06:45,1.18489,1.18519,1.18484,1.18508,3391 +2020-11-19 07:00,1.18507,1.18521,1.18474,1.18498,3553 +2020-11-19 07:15,1.18502,1.18522,1.18487,1.18497,3042 +2020-11-19 07:30,1.18498,1.1852,1.18485,1.1851,3785 +2020-11-19 07:45,1.18511,1.18513,1.18422,1.18442,7133 +2020-11-19 08:00,1.18445,1.18498,1.1839,1.18422,7637 +2020-11-19 08:15,1.18422,1.18428,1.18344,1.18358,7322 +2020-11-19 08:30,1.1836,1.18377,1.18322,1.18377,5744 +2020-11-19 08:45,1.18377,1.18397,1.18217,1.18267,10682 +2020-11-19 09:00,1.18266,1.18342,1.18226,1.18321,7542 +2020-11-19 09:15,1.18323,1.18327,1.18252,1.18277,7405 +2020-11-19 09:30,1.18278,1.18343,1.18271,1.18341,9173 +2020-11-19 09:45,1.18341,1.18356,1.18272,1.18294,7032 +2020-11-19 10:00,1.18294,1.18323,1.18234,1.18243,9100 +2020-11-19 10:15,1.18243,1.1825,1.18161,1.18213,7365 +2020-11-19 10:30,1.18213,1.18272,1.18198,1.18241,4668 +2020-11-19 10:45,1.18244,1.18306,1.18238,1.18272,6210 +2020-11-19 11:00,1.18273,1.18301,1.18236,1.18266,6779 +2020-11-19 11:15,1.18265,1.18275,1.18229,1.18271,5069 +2020-11-19 11:30,1.18272,1.18336,1.18245,1.18329,5831 +2020-11-19 11:45,1.18329,1.18385,1.18327,1.1838,5481 +2020-11-19 12:00,1.1838,1.18381,1.18349,1.1836,4593 +2020-11-19 12:15,1.1836,1.18371,1.18329,1.18362,4780 +2020-11-19 12:30,1.1836,1.18372,1.18321,1.18347,7029 +2020-11-19 12:45,1.18346,1.18413,1.18334,1.18357,8613 +2020-11-19 13:00,1.18357,1.18365,1.18284,1.18326,8122 +2020-11-19 13:15,1.18326,1.18364,1.18301,1.18306,6214 +2020-11-19 13:30,1.18307,1.18318,1.18273,1.18309,7090 +2020-11-19 13:45,1.18308,1.18348,1.18275,1.18302,8937 +2020-11-19 14:00,1.18302,1.18304,1.18241,1.18249,5451 +2020-11-19 14:15,1.18248,1.18274,1.18219,1.18253,6685 +2020-11-19 14:30,1.18253,1.18273,1.18183,1.18253,9562 +2020-11-19 14:45,1.18255,1.18332,1.18253,1.18312,5981 +2020-11-19 15:00,1.1831,1.18357,1.18293,1.18314,7477 +2020-11-19 15:15,1.18315,1.18353,1.18282,1.18337,9290 +2020-11-19 15:30,1.18338,1.18412,1.18321,1.18398,7186 +2020-11-19 15:45,1.18398,1.18456,1.18385,1.18396,7766 +2020-11-19 16:00,1.18396,1.18442,1.18345,1.18367,5734 +2020-11-19 16:15,1.18366,1.18437,1.18366,1.18406,5148 +2020-11-19 16:30,1.18408,1.18445,1.18388,1.18393,5295 +2020-11-19 16:45,1.18392,1.1844,1.18374,1.18421,4016 +2020-11-19 17:00,1.18421,1.18467,1.18407,1.18467,4567 +2020-11-19 17:15,1.18466,1.18489,1.18453,1.18477,4029 +2020-11-19 17:30,1.18477,1.18507,1.18453,1.18457,2738 +2020-11-19 17:45,1.18458,1.18478,1.18447,1.18463,2639 +2020-11-19 18:00,1.18462,1.18488,1.18462,1.18473,2753 +2020-11-19 18:15,1.18473,1.18497,1.18473,1.18487,2796 +2020-11-19 18:30,1.18487,1.18504,1.18481,1.18487,2041 +2020-11-19 18:45,1.18487,1.18541,1.18484,1.18538,2805 +2020-11-19 19:00,1.18537,1.18679,1.18529,1.18638,4078 +2020-11-19 19:15,1.18639,1.18659,1.18625,1.18658,2104 +2020-11-19 19:30,1.18658,1.18726,1.18654,1.18725,2362 +2020-11-19 19:45,1.18726,1.18758,1.18683,1.18756,3739 +2020-11-19 20:00,1.18757,1.18794,1.1874,1.18787,2648 +2020-11-19 20:15,1.18787,1.18788,1.18742,1.18762,2554 +2020-11-19 20:30,1.18763,1.18802,1.18763,1.18777,2870 +2020-11-19 20:45,1.18777,1.1879,1.18755,1.18787,3966 +2020-11-19 21:00,1.18786,1.18825,1.1877,1.1882,1267 +2020-11-19 21:15,1.18819,1.18822,1.18781,1.18788,986 +2020-11-19 21:30,1.18788,1.18792,1.18762,1.18766,950 +2020-11-19 21:45,1.18766,1.18793,1.1873,1.18745,816 +2020-11-19 22:00,1.18745,1.18765,1.18714,1.18728,90 +2020-11-19 22:15,1.18727,1.18738,1.18711,1.18726,104 +2020-11-19 22:30,1.18727,1.18731,1.18705,1.18705,159 +2020-11-19 22:45,1.18705,1.18719,1.18683,1.18709,101 +2020-11-19 23:00,1.18707,1.18721,1.18685,1.18705,1245 +2020-11-19 23:15,1.18705,1.18711,1.18686,1.18693,1904 +2020-11-19 23:30,1.18693,1.18697,1.18659,1.18676,1839 +2020-11-19 23:45,1.18675,1.1869,1.18651,1.18653,1487 +2020-11-20 00:00,1.18655,1.18723,1.18654,1.18704,2752 +2020-11-20 00:15,1.18703,1.1872,1.18703,1.18708,2519 +2020-11-20 00:30,1.1871,1.18735,1.18709,1.18728,1426 +2020-11-20 00:45,1.18728,1.18747,1.18703,1.18745,1502 +2020-11-20 01:00,1.18746,1.1877,1.18738,1.18754,3020 +2020-11-20 01:15,1.18755,1.18779,1.1875,1.18758,2442 +2020-11-20 01:30,1.18759,1.18774,1.18752,1.18763,1994 +2020-11-20 01:45,1.18764,1.18781,1.18751,1.18766,1750 +2020-11-20 02:00,1.18765,1.18767,1.18723,1.18732,2164 +2020-11-20 02:15,1.18732,1.18737,1.18717,1.18723,1744 +2020-11-20 02:30,1.18723,1.18724,1.18705,1.18711,1388 +2020-11-20 02:45,1.18712,1.18732,1.18709,1.18729,1459 +2020-11-20 03:00,1.1873,1.18772,1.18723,1.18764,2470 +2020-11-20 03:15,1.18766,1.18788,1.18756,1.18782,1971 +2020-11-20 03:30,1.18781,1.18781,1.18739,1.18754,1288 +2020-11-20 03:45,1.18755,1.18758,1.18737,1.18755,1311 +2020-11-20 04:00,1.18755,1.18759,1.18746,1.18759,1346 +2020-11-20 04:15,1.18759,1.18781,1.18756,1.18772,1062 +2020-11-20 04:30,1.18773,1.18861,1.18768,1.18841,2291 +2020-11-20 04:45,1.1884,1.18856,1.18821,1.18846,3618 +2020-11-20 05:00,1.18846,1.18861,1.18831,1.18835,2493 +2020-11-20 05:15,1.18835,1.18838,1.18819,1.18819,2388 +2020-11-20 05:30,1.18819,1.18908,1.18811,1.18873,3826 +2020-11-20 05:45,1.18873,1.18873,1.18832,1.1884,5103 +2020-11-20 06:00,1.18839,1.18841,1.18805,1.1883,4453 +2020-11-20 06:15,1.18831,1.18881,1.18821,1.18879,2962 +2020-11-20 06:30,1.1888,1.18887,1.18843,1.18866,4014 +2020-11-20 06:45,1.18866,1.18875,1.18835,1.18836,2487 +2020-11-20 07:00,1.18835,1.18861,1.18745,1.18752,5201 +2020-11-20 07:15,1.1875,1.18765,1.18722,1.18742,2300 +2020-11-20 07:30,1.18742,1.18754,1.18661,1.18676,1698 +2020-11-20 07:45,1.18675,1.18711,1.18665,1.18696,1282 +2020-11-20 08:00,1.18696,1.18741,1.18678,1.18686,2185 +2020-11-20 08:15,1.18687,1.18735,1.18684,1.18708,6098 +2020-11-20 08:30,1.18708,1.18735,1.18658,1.18707,7089 +2020-11-20 08:45,1.18706,1.18732,1.18662,1.18732,7037 +2020-11-20 09:00,1.18729,1.18731,1.18574,1.18612,7078 +2020-11-20 09:15,1.18612,1.18642,1.1856,1.1864,8380 +2020-11-20 09:30,1.1864,1.18673,1.18607,1.18654,10443 +2020-11-20 09:45,1.18656,1.18658,1.18564,1.18591,10254 +2020-11-20 10:00,1.1859,1.18598,1.18557,1.18576,7254 +2020-11-20 10:15,1.18577,1.18597,1.18512,1.18527,9360 +2020-11-20 10:30,1.18525,1.18585,1.18525,1.18565,8068 +2020-11-20 10:45,1.18565,1.18582,1.18538,1.18544,8257 +2020-11-20 11:00,1.18544,1.18599,1.18525,1.18579,6008 +2020-11-20 11:15,1.18577,1.18598,1.18546,1.18586,9077 +2020-11-20 11:30,1.18584,1.18653,1.18575,1.18648,7611 +2020-11-20 11:45,1.18647,1.18749,1.18639,1.18738,10602 +2020-11-20 12:00,1.18738,1.18781,1.18679,1.18702,9218 +2020-11-20 12:15,1.18701,1.18721,1.18676,1.18697,5709 +2020-11-20 12:30,1.18697,1.18728,1.18684,1.18716,7581 +2020-11-20 12:45,1.18716,1.18732,1.18693,1.18715,5756 +2020-11-20 13:00,1.18718,1.18718,1.18625,1.18629,6923 +2020-11-20 13:15,1.18628,1.18649,1.18565,1.18572,7382 +2020-11-20 13:30,1.18572,1.1866,1.18567,1.18648,5953 +2020-11-20 13:45,1.18647,1.18687,1.18612,1.18677,6348 +2020-11-20 14:00,1.18677,1.18728,1.18669,1.18708,8316 +2020-11-20 14:15,1.18707,1.18735,1.18689,1.18698,5795 +2020-11-20 14:30,1.18699,1.18752,1.18677,1.18741,6472 +2020-11-20 14:45,1.18741,1.18758,1.1868,1.18692,7905 +2020-11-20 15:00,1.18692,1.18737,1.18676,1.18689,6037 +2020-11-20 15:15,1.18688,1.18713,1.18653,1.18705,5068 +2020-11-20 15:30,1.18705,1.18707,1.18616,1.18624,6492 +2020-11-20 15:45,1.18624,1.1864,1.18499,1.18543,7629 +2020-11-20 16:00,1.18543,1.18612,1.18531,1.18599,7921 +2020-11-20 16:15,1.186,1.18631,1.1858,1.18606,3556 +2020-11-20 16:30,1.18607,1.18614,1.1857,1.18586,5014 +2020-11-20 16:45,1.18584,1.18584,1.18536,1.18563,3654 +2020-11-20 17:00,1.18561,1.18577,1.1852,1.18544,3402 +2020-11-20 17:15,1.18545,1.18557,1.18511,1.18516,2404 +2020-11-20 17:30,1.18516,1.18561,1.18504,1.18551,3858 +2020-11-20 17:45,1.1855,1.18565,1.1853,1.18541,2202 +2020-11-20 18:00,1.1854,1.18548,1.18498,1.18515,2453 +2020-11-20 18:15,1.18514,1.18556,1.18506,1.18553,2555 +2020-11-20 18:30,1.18553,1.18578,1.18551,1.18564,1401 +2020-11-20 18:45,1.18564,1.18595,1.18539,1.18576,2872 +2020-11-20 19:00,1.18576,1.18586,1.18546,1.18564,2560 +2020-11-20 19:15,1.18565,1.18585,1.18552,1.18559,3204 +2020-11-20 19:30,1.18559,1.18586,1.18555,1.18569,629 +2020-11-20 19:45,1.18567,1.18583,1.18556,1.18582,2968 +2020-11-20 20:00,1.18581,1.18595,1.1857,1.18585,1766 +2020-11-20 20:15,1.18584,1.18616,1.1857,1.18601,2053 +2020-11-20 20:30,1.18602,1.18602,1.18573,1.1859,1536 +2020-11-20 20:45,1.18591,1.18611,1.18574,1.18581,3042 +2020-11-20 21:00,1.1858,1.18598,1.18575,1.1858,4883 +2020-11-20 21:15,1.18581,1.18589,1.18573,1.18587,1570 +2020-11-20 21:30,1.18586,1.18627,1.18586,1.18623,3473 +2020-11-20 21:45,1.18625,1.18636,1.18541,1.18544,6875 +2020-11-22 22:00,1.18538,1.18554,1.18534,1.18548,529 +2020-11-22 22:15,1.18547,1.18576,1.18528,1.18576,124 +2020-11-22 22:30,1.18577,1.18585,1.18544,1.18566,244 +2020-11-22 22:45,1.18563,1.18588,1.1856,1.18583,167 +2020-11-22 23:00,1.18585,1.18603,1.18567,1.18593,864 +2020-11-22 23:15,1.18593,1.18602,1.18578,1.18599,1098 +2020-11-22 23:30,1.186,1.18616,1.18586,1.18607,3120 +2020-11-22 23:45,1.18608,1.18659,1.18607,1.18654,1407 +2020-11-23 00:00,1.18655,1.18658,1.18636,1.18656,2156 +2020-11-23 00:15,1.18656,1.1871,1.18649,1.18709,1720 +2020-11-23 00:30,1.18708,1.18725,1.18695,1.18719,1479 +2020-11-23 00:45,1.18718,1.18734,1.18715,1.18719,1118 +2020-11-23 01:00,1.18719,1.18761,1.18715,1.1876,1956 +2020-11-23 01:15,1.18759,1.18779,1.18753,1.1876,2423 +2020-11-23 01:30,1.18761,1.18761,1.18723,1.18757,1706 +2020-11-23 01:45,1.18755,1.18767,1.18726,1.18766,1853 +2020-11-23 02:00,1.18765,1.18765,1.18744,1.18749,939 +2020-11-23 02:15,1.18748,1.18754,1.18736,1.18742,1174 +2020-11-23 02:30,1.18741,1.18746,1.18719,1.18721,1049 +2020-11-23 02:45,1.18722,1.18754,1.18721,1.18743,675 +2020-11-23 03:00,1.18744,1.18755,1.18733,1.18754,855 +2020-11-23 03:15,1.18754,1.18758,1.18732,1.18734,824 +2020-11-23 03:30,1.18734,1.18741,1.18721,1.18733,1220 +2020-11-23 03:45,1.18734,1.18737,1.18721,1.18722,1120 +2020-11-23 04:00,1.18722,1.18727,1.18714,1.18723,858 +2020-11-23 04:15,1.18723,1.1873,1.18717,1.18717,1011 +2020-11-23 04:30,1.18717,1.18729,1.18714,1.18721,973 +2020-11-23 04:45,1.18721,1.18731,1.18716,1.18731,1457 +2020-11-23 05:00,1.1873,1.18737,1.18719,1.18735,1265 +2020-11-23 05:15,1.18736,1.18742,1.18732,1.18732,710 +2020-11-23 05:30,1.18732,1.18737,1.18726,1.18728,668 +2020-11-23 05:45,1.18728,1.1877,1.18727,1.18766,1241 +2020-11-23 06:00,1.18766,1.18788,1.1875,1.1875,1515 +2020-11-23 06:15,1.18751,1.18769,1.18746,1.18751,1715 +2020-11-23 06:30,1.18751,1.18761,1.18739,1.18742,2272 +2020-11-23 06:45,1.18742,1.18756,1.18722,1.18749,2094 +2020-11-23 07:00,1.18748,1.18789,1.18716,1.18736,4726 +2020-11-23 07:15,1.18735,1.18776,1.18723,1.18768,4571 +2020-11-23 07:30,1.18767,1.18768,1.18675,1.18695,4940 +2020-11-23 07:45,1.18696,1.18733,1.18671,1.18679,4274 +2020-11-23 08:00,1.18679,1.18758,1.18669,1.18691,5567 +2020-11-23 08:15,1.18691,1.18699,1.18639,1.18653,5870 +2020-11-23 08:30,1.18656,1.18741,1.18629,1.18689,8311 +2020-11-23 08:45,1.1869,1.18732,1.18688,1.18722,7404 +2020-11-23 09:00,1.18726,1.18769,1.18699,1.18741,8195 +2020-11-23 09:15,1.1874,1.18826,1.1873,1.18796,7377 +2020-11-23 09:30,1.18797,1.18799,1.18742,1.18783,6570 +2020-11-23 09:45,1.18782,1.18817,1.18764,1.18776,7132 +2020-11-23 10:00,1.18777,1.18797,1.18754,1.1879,5261 +2020-11-23 10:15,1.18788,1.18823,1.18778,1.18811,4452 +2020-11-23 10:30,1.18813,1.18823,1.18762,1.18768,4375 +2020-11-23 10:45,1.18769,1.18987,1.18769,1.18952,7676 +2020-11-23 11:00,1.18953,1.19035,1.18921,1.19031,8177 +2020-11-23 11:15,1.1903,1.19056,1.18952,1.18994,7183 +2020-11-23 11:30,1.18993,1.19032,1.18979,1.19001,8128 +2020-11-23 11:45,1.19001,1.19042,1.18994,1.19039,6463 +2020-11-23 12:00,1.19038,1.19044,1.18983,1.1899,4644 +2020-11-23 12:15,1.1899,1.1906,1.18979,1.19043,5048 +2020-11-23 12:30,1.19043,1.19048,1.1901,1.1903,4963 +2020-11-23 12:45,1.19029,1.19051,1.18994,1.19022,5842 +2020-11-23 13:00,1.19023,1.19044,1.18978,1.1901,7456 +2020-11-23 13:15,1.19011,1.19037,1.18963,1.18983,5017 +2020-11-23 13:30,1.18983,1.18989,1.18898,1.18941,5980 +2020-11-23 13:45,1.18942,1.18998,1.18929,1.18995,5624 +2020-11-23 14:00,1.18996,1.19005,1.18944,1.18969,4969 +2020-11-23 14:15,1.1897,1.18984,1.18916,1.18936,4602 +2020-11-23 14:30,1.18937,1.18975,1.18933,1.1895,5523 +2020-11-23 14:45,1.18949,1.1895,1.18646,1.18685,15098 +2020-11-23 15:00,1.18685,1.18685,1.18324,1.18364,14477 +2020-11-23 15:15,1.18366,1.18377,1.18195,1.18213,11232 +2020-11-23 15:30,1.18214,1.18336,1.18196,1.18277,9824 +2020-11-23 15:45,1.18276,1.1829,1.18126,1.18169,11443 +2020-11-23 16:00,1.18165,1.18255,1.17997,1.18116,13490 +2020-11-23 16:15,1.18116,1.18223,1.18098,1.18223,8644 +2020-11-23 16:30,1.18224,1.18245,1.18177,1.18233,5136 +2020-11-23 16:45,1.18233,1.1827,1.18226,1.18258,3181 +2020-11-23 17:00,1.18257,1.18315,1.18247,1.18295,4070 +2020-11-23 17:15,1.18295,1.18339,1.18265,1.1831,4567 +2020-11-23 17:30,1.1831,1.18412,1.18307,1.18371,4840 +2020-11-23 17:45,1.1837,1.18425,1.18364,1.18412,2607 +2020-11-23 18:00,1.18413,1.18449,1.18397,1.18427,1655 +2020-11-23 18:15,1.18426,1.18429,1.18394,1.18428,1890 +2020-11-23 18:30,1.18427,1.18444,1.18414,1.18434,1841 +2020-11-23 18:45,1.18433,1.18448,1.18408,1.18423,2321 +2020-11-23 19:00,1.18422,1.18458,1.18391,1.18407,2535 +2020-11-23 19:15,1.18407,1.18411,1.18349,1.18383,2136 +2020-11-23 19:30,1.18383,1.18405,1.18357,1.18366,1970 +2020-11-23 19:45,1.18364,1.18431,1.18354,1.18417,3521 +2020-11-23 20:00,1.18418,1.18478,1.18407,1.18463,3047 +2020-11-23 20:15,1.18463,1.18464,1.18422,1.1843,2198 +2020-11-23 20:30,1.18432,1.18434,1.18379,1.18387,3371 +2020-11-23 20:45,1.18387,1.18415,1.1837,1.1838,3750 +2020-11-23 21:00,1.18382,1.18397,1.18369,1.18394,719 +2020-11-23 21:15,1.18396,1.18406,1.1839,1.18402,486 +2020-11-23 21:30,1.18402,1.18415,1.18393,1.18411,386 +2020-11-23 21:45,1.18411,1.18423,1.18395,1.18399,1356 +2020-11-23 22:00,1.18399,1.18406,1.18378,1.18383,62 +2020-11-23 22:15,1.18383,1.18402,1.18361,1.18387,35 +2020-11-23 22:30,1.18395,1.18395,1.18361,1.18375,212 +2020-11-23 22:45,1.18375,1.184,1.18375,1.18389,209 +2020-11-23 23:00,1.18386,1.18421,1.1838,1.18405,824 +2020-11-23 23:15,1.18404,1.18464,1.18399,1.18456,2728 +2020-11-23 23:30,1.18456,1.18471,1.1844,1.18469,2726 +2020-11-23 23:45,1.1847,1.18473,1.18409,1.18422,2115 +2020-11-24 00:00,1.18422,1.18436,1.18384,1.18393,3732 +2020-11-24 00:15,1.18393,1.18415,1.18385,1.18408,2583 +2020-11-24 00:30,1.18409,1.1843,1.18404,1.18414,2058 +2020-11-24 00:45,1.18414,1.18414,1.18384,1.18387,3485 +2020-11-24 01:00,1.18387,1.18473,1.18387,1.18443,5342 +2020-11-24 01:15,1.18444,1.18449,1.18411,1.18422,4549 +2020-11-24 01:30,1.18423,1.18454,1.18407,1.18424,5422 +2020-11-24 01:45,1.18424,1.18431,1.18408,1.18417,4881 +2020-11-24 02:00,1.18418,1.18438,1.18414,1.18434,3695 +2020-11-24 02:15,1.18434,1.18438,1.18419,1.18424,3715 +2020-11-24 02:30,1.18423,1.18458,1.18419,1.18456,2540 +2020-11-24 02:45,1.18455,1.18479,1.18453,1.18463,2972 +2020-11-24 03:00,1.18462,1.18464,1.18431,1.18454,3725 +2020-11-24 03:15,1.18454,1.18466,1.18446,1.18455,3656 +2020-11-24 03:30,1.18456,1.18473,1.18443,1.18444,3130 +2020-11-24 03:45,1.18444,1.18459,1.18417,1.18448,2424 +2020-11-24 04:00,1.18449,1.18458,1.18436,1.18452,2417 +2020-11-24 04:15,1.18452,1.18455,1.18438,1.18443,2512 +2020-11-24 04:30,1.18444,1.18486,1.18441,1.18486,2332 +2020-11-24 04:45,1.18486,1.18551,1.18483,1.1854,4049 +2020-11-24 05:00,1.18539,1.18541,1.18495,1.18496,2882 +2020-11-24 05:15,1.18497,1.18535,1.18495,1.18529,1461 +2020-11-24 05:30,1.18528,1.18532,1.1849,1.18509,2239 +2020-11-24 05:45,1.18509,1.18538,1.18508,1.18518,3850 +2020-11-24 06:00,1.18519,1.1855,1.185,1.18531,3353 +2020-11-24 06:15,1.18532,1.1857,1.18522,1.18558,3437 +2020-11-24 06:30,1.18559,1.18565,1.18541,1.18551,3245 +2020-11-24 06:45,1.18551,1.18554,1.18514,1.18521,3046 +2020-11-24 07:00,1.18522,1.18547,1.185,1.1851,4125 +2020-11-24 07:15,1.1851,1.18559,1.185,1.18546,3022 +2020-11-24 07:30,1.18546,1.18555,1.18459,1.18519,2911 +2020-11-24 07:45,1.1852,1.18531,1.18465,1.18478,3867 +2020-11-24 08:00,1.18479,1.18739,1.18479,1.18706,10162 +2020-11-24 08:15,1.18706,1.18774,1.18695,1.18765,7614 +2020-11-24 08:30,1.18765,1.18788,1.18716,1.18781,6798 +2020-11-24 08:45,1.18782,1.18784,1.18709,1.18731,5871 +2020-11-24 09:00,1.18733,1.18777,1.18703,1.18745,6687 +2020-11-24 09:15,1.18745,1.1879,1.18724,1.1877,6343 +2020-11-24 09:30,1.18772,1.18895,1.18757,1.18864,8581 +2020-11-24 09:45,1.18867,1.18903,1.18802,1.18834,7883 +2020-11-24 10:00,1.18836,1.18862,1.18796,1.18851,6054 +2020-11-24 10:15,1.18852,1.18939,1.18847,1.18894,7152 +2020-11-24 10:30,1.18893,1.18925,1.18788,1.18847,6564 +2020-11-24 10:45,1.18847,1.18857,1.18802,1.18804,6667 +2020-11-24 11:00,1.18804,1.18848,1.1879,1.18795,5398 +2020-11-24 11:15,1.18796,1.18809,1.18707,1.1876,5298 +2020-11-24 11:30,1.1876,1.18828,1.18729,1.1881,6730 +2020-11-24 11:45,1.18811,1.18817,1.1866,1.18672,8093 +2020-11-24 12:00,1.18671,1.18734,1.18645,1.18704,7133 +2020-11-24 12:15,1.18705,1.1876,1.18635,1.18641,6405 +2020-11-24 12:30,1.18641,1.18702,1.18635,1.18661,6031 +2020-11-24 12:45,1.18661,1.18686,1.18611,1.1868,6600 +2020-11-24 13:00,1.18681,1.18682,1.18619,1.18644,9468 +2020-11-24 13:15,1.18645,1.18719,1.18645,1.18697,6751 +2020-11-24 13:30,1.18699,1.18756,1.18678,1.18685,5900 +2020-11-24 13:45,1.18686,1.18706,1.18504,1.1854,8683 +2020-11-24 14:00,1.1854,1.18584,1.18414,1.18526,13221 +2020-11-24 14:15,1.18526,1.18568,1.18479,1.18517,6440 +2020-11-24 14:30,1.18517,1.18547,1.18423,1.18432,9801 +2020-11-24 14:45,1.18431,1.18672,1.18427,1.18643,7502 +2020-11-24 15:00,1.18643,1.18677,1.18571,1.18571,5948 +2020-11-24 15:15,1.18571,1.18645,1.18558,1.18633,9347 +2020-11-24 15:30,1.18632,1.1874,1.18607,1.18733,12133 +2020-11-24 15:45,1.18729,1.18822,1.18692,1.18734,11225 +2020-11-24 16:00,1.18736,1.18793,1.18691,1.18777,9014 +2020-11-24 16:15,1.18776,1.18863,1.18759,1.18821,6416 +2020-11-24 16:30,1.18819,1.18845,1.18796,1.18801,5244 +2020-11-24 16:45,1.18802,1.18811,1.18734,1.18738,4519 +2020-11-24 17:00,1.18739,1.18749,1.18661,1.18676,6689 +2020-11-24 17:15,1.18676,1.18735,1.18675,1.18706,3845 +2020-11-24 17:30,1.18706,1.18706,1.18652,1.18665,3871 +2020-11-24 17:45,1.18666,1.18731,1.18655,1.18726,5057 +2020-11-24 18:00,1.18726,1.18732,1.18676,1.18702,4569 +2020-11-24 18:15,1.18702,1.18746,1.18702,1.18736,3821 +2020-11-24 18:30,1.18737,1.18815,1.18737,1.18796,4906 +2020-11-24 18:45,1.18796,1.18814,1.18779,1.18813,3067 +2020-11-24 19:00,1.18812,1.18817,1.18775,1.18783,2664 +2020-11-24 19:15,1.18784,1.188,1.18763,1.18767,1799 +2020-11-24 19:30,1.1877,1.18801,1.18752,1.18792,1807 +2020-11-24 19:45,1.18794,1.18848,1.18777,1.18829,4197 +2020-11-24 20:00,1.1883,1.18847,1.18822,1.18836,2720 +2020-11-24 20:15,1.18837,1.18852,1.18829,1.18837,3230 +2020-11-24 20:30,1.18839,1.18859,1.18834,1.18852,4541 +2020-11-24 20:45,1.18852,1.1894,1.1885,1.18921,5423 +2020-11-24 21:00,1.18922,1.18923,1.1888,1.18897,2001 +2020-11-24 21:15,1.18897,1.18916,1.18892,1.18913,1216 +2020-11-24 21:30,1.18912,1.18919,1.18899,1.18905,902 +2020-11-24 21:45,1.18908,1.18961,1.18904,1.18905,1697 +2020-11-24 22:00,1.18922,1.18963,1.18883,1.18945,80 +2020-11-24 22:15,1.18945,1.18945,1.1892,1.18923,78 +2020-11-24 22:30,1.18926,1.18933,1.18918,1.18933,60 +2020-11-24 22:45,1.18932,1.18932,1.18915,1.18922,119 +2020-11-24 23:00,1.18921,1.18934,1.189,1.18905,1406 +2020-11-24 23:15,1.18906,1.18947,1.18896,1.18938,1261 +2020-11-24 23:30,1.18937,1.18972,1.18937,1.18951,1754 +2020-11-24 23:45,1.1895,1.18978,1.18946,1.18974,975 +2020-11-25 00:00,1.18976,1.1901,1.18963,1.18986,2690 +2020-11-25 00:15,1.18986,1.19016,1.18977,1.18977,2390 +2020-11-25 00:30,1.18977,1.1899,1.18962,1.18976,2213 +2020-11-25 00:45,1.18976,1.18976,1.18945,1.18969,3141 +2020-11-25 01:00,1.18968,1.19037,1.18963,1.19023,5144 +2020-11-25 01:15,1.19023,1.1906,1.19002,1.19008,2999 +2020-11-25 01:30,1.19007,1.19028,1.18997,1.19013,2939 +2020-11-25 01:45,1.19012,1.19023,1.18976,1.18981,3512 +2020-11-25 02:00,1.1898,1.19026,1.18955,1.19014,4162 +2020-11-25 02:15,1.19013,1.19032,1.19002,1.19005,2842 +2020-11-25 02:30,1.19005,1.1904,1.19004,1.19021,3221 +2020-11-25 02:45,1.19022,1.19055,1.19002,1.19045,3696 +2020-11-25 03:00,1.19046,1.19058,1.19036,1.19049,2746 +2020-11-25 03:15,1.19048,1.19051,1.19028,1.19037,2273 +2020-11-25 03:30,1.19038,1.1909,1.19038,1.1907,4716 +2020-11-25 03:45,1.1907,1.19084,1.19061,1.19064,1897 +2020-11-25 04:00,1.19065,1.19076,1.19046,1.19062,1988 +2020-11-25 04:15,1.19064,1.19101,1.19041,1.19096,2788 +2020-11-25 04:30,1.19096,1.19096,1.19056,1.1907,2121 +2020-11-25 04:45,1.19069,1.19079,1.19041,1.19043,1809 +2020-11-25 05:00,1.19043,1.19075,1.19035,1.19047,3429 +2020-11-25 05:15,1.19046,1.19055,1.19037,1.19039,2181 +2020-11-25 05:30,1.19039,1.19056,1.1903,1.19031,4286 +2020-11-25 05:45,1.19031,1.19057,1.1896,1.18978,5601 +2020-11-25 06:00,1.18978,1.19016,1.18976,1.18989,3725 +2020-11-25 06:15,1.18992,1.18994,1.18913,1.18923,3624 +2020-11-25 06:30,1.18923,1.18949,1.1891,1.18941,2839 +2020-11-25 06:45,1.1894,1.18978,1.18931,1.18977,3473 +2020-11-25 07:00,1.18976,1.19042,1.1894,1.19034,4945 +2020-11-25 07:15,1.19035,1.19035,1.18982,1.19022,5619 +2020-11-25 07:30,1.19022,1.19145,1.18998,1.19094,6965 +2020-11-25 07:45,1.19093,1.19095,1.19036,1.19067,5439 +2020-11-25 08:00,1.19066,1.19297,1.19037,1.19269,9212 +2020-11-25 08:15,1.1927,1.19271,1.1915,1.19173,10019 +2020-11-25 08:30,1.19173,1.19201,1.19076,1.19081,7573 +2020-11-25 08:45,1.19082,1.19101,1.19009,1.19097,12078 +2020-11-25 09:00,1.19098,1.191,1.19048,1.1907,9243 +2020-11-25 09:15,1.19069,1.19069,1.18915,1.1898,10258 +2020-11-25 09:30,1.18981,1.18998,1.1892,1.18966,7472 +2020-11-25 09:45,1.18964,1.19047,1.18948,1.19047,9080 +2020-11-25 10:00,1.19047,1.19047,1.18962,1.18998,5034 +2020-11-25 10:15,1.18998,1.18998,1.18938,1.18958,5251 +2020-11-25 10:30,1.18957,1.19017,1.18934,1.18938,4936 +2020-11-25 10:45,1.18938,1.18986,1.18927,1.18944,7881 +2020-11-25 11:00,1.18944,1.18997,1.18823,1.1888,7058 +2020-11-25 11:15,1.18878,1.18896,1.18832,1.18847,6615 +2020-11-25 11:30,1.18846,1.1888,1.18823,1.18864,4726 +2020-11-25 11:45,1.18864,1.18881,1.18819,1.18822,5613 +2020-11-25 12:00,1.18822,1.18859,1.18819,1.18825,5386 +2020-11-25 12:15,1.18826,1.18896,1.18818,1.18881,5551 +2020-11-25 12:30,1.1888,1.18918,1.18841,1.18901,4557 +2020-11-25 12:45,1.189,1.18966,1.18888,1.18957,4918 +2020-11-25 13:00,1.18957,1.18978,1.18892,1.18895,5282 +2020-11-25 13:15,1.18892,1.19062,1.18891,1.19054,6286 +2020-11-25 13:30,1.19054,1.19152,1.19043,1.19043,6436 +2020-11-25 13:45,1.19044,1.19058,1.18974,1.19043,4538 +2020-11-25 14:00,1.19044,1.19116,1.19019,1.19087,5870 +2020-11-25 14:15,1.19086,1.19087,1.1896,1.18978,4948 +2020-11-25 14:30,1.18979,1.19085,1.18914,1.19063,9273 +2020-11-25 14:45,1.19061,1.19154,1.19034,1.19075,11236 +2020-11-25 15:00,1.19074,1.19077,1.1895,1.18988,7936 +2020-11-25 15:15,1.18987,1.19068,1.18967,1.19049,6326 +2020-11-25 15:30,1.1905,1.19258,1.19021,1.19251,11311 +2020-11-25 15:45,1.1925,1.19263,1.18978,1.19018,11641 +2020-11-25 16:00,1.19018,1.19086,1.18983,1.19085,10204 +2020-11-25 16:15,1.19085,1.19105,1.19046,1.191,6104 +2020-11-25 16:30,1.19099,1.19105,1.19019,1.1906,5270 +2020-11-25 16:45,1.19061,1.19108,1.19055,1.19072,4064 +2020-11-25 17:00,1.19074,1.19119,1.1907,1.19073,5900 +2020-11-25 17:15,1.19074,1.19143,1.1906,1.19134,5316 +2020-11-25 17:30,1.19133,1.19192,1.19127,1.1916,4610 +2020-11-25 17:45,1.19159,1.19219,1.19149,1.19156,3745 +2020-11-25 18:00,1.19157,1.19207,1.19153,1.19182,2342 +2020-11-25 18:15,1.19184,1.19186,1.19149,1.19155,1557 +2020-11-25 18:30,1.19156,1.19189,1.19139,1.19168,3774 +2020-11-25 18:45,1.19167,1.19197,1.19143,1.19158,2749 +2020-11-25 19:00,1.19157,1.19224,1.19078,1.1909,5797 +2020-11-25 19:15,1.1909,1.1914,1.1909,1.19111,3650 +2020-11-25 19:30,1.19113,1.19155,1.19113,1.19149,3289 +2020-11-25 19:45,1.19148,1.19196,1.19145,1.19153,4123 +2020-11-25 20:00,1.19152,1.19204,1.19135,1.19198,1633 +2020-11-25 20:15,1.19199,1.19239,1.19186,1.19238,2990 +2020-11-25 20:30,1.19237,1.19238,1.1918,1.19196,2972 +2020-11-25 20:45,1.19197,1.19245,1.19193,1.19235,3141 +2020-11-25 21:00,1.19236,1.19239,1.1918,1.1918,1672 +2020-11-25 21:15,1.1918,1.1918,1.1916,1.19166,910 +2020-11-25 21:30,1.19164,1.19171,1.1912,1.19122,918 +2020-11-25 21:45,1.1912,1.19157,1.19113,1.19157,1169 +2020-11-25 22:00,1.19157,1.19174,1.19107,1.19146,80 +2020-11-25 22:15,1.19138,1.1917,1.19138,1.19145,132 +2020-11-25 22:30,1.19144,1.19163,1.19139,1.19152,87 +2020-11-25 22:45,1.19154,1.19159,1.19137,1.19149,122 +2020-11-25 23:00,1.19148,1.19167,1.19148,1.19163,302 +2020-11-25 23:15,1.19163,1.19168,1.19155,1.19159,305 +2020-11-25 23:30,1.1916,1.19181,1.19148,1.19178,427 +2020-11-25 23:45,1.19177,1.19177,1.19161,1.19162,365 +2020-11-26 00:00,1.19164,1.19231,1.19162,1.19229,993 +2020-11-26 00:15,1.19228,1.1926,1.19213,1.19233,2115 +2020-11-26 00:30,1.19233,1.19259,1.19228,1.19248,2424 +2020-11-26 00:45,1.19247,1.19258,1.19217,1.1922,1538 +2020-11-26 01:00,1.1922,1.19254,1.1922,1.19238,2066 +2020-11-26 01:15,1.19239,1.19249,1.19229,1.19248,1041 +2020-11-26 01:30,1.19248,1.19292,1.19238,1.19283,1630 +2020-11-26 01:45,1.19284,1.19289,1.19264,1.19266,1729 +2020-11-26 02:00,1.19265,1.19269,1.19226,1.19228,1524 +2020-11-26 02:15,1.19228,1.19238,1.19213,1.19223,2126 +2020-11-26 02:30,1.19224,1.19245,1.19219,1.19244,1783 +2020-11-26 02:45,1.19245,1.19276,1.1924,1.19271,2256 +2020-11-26 03:00,1.19272,1.19283,1.19241,1.19241,3167 +2020-11-26 03:15,1.19241,1.19269,1.19241,1.19252,2388 +2020-11-26 03:30,1.19254,1.1926,1.19245,1.19259,1571 +2020-11-26 03:45,1.19259,1.19261,1.19225,1.19234,2097 +2020-11-26 04:00,1.19236,1.19266,1.19229,1.19238,1008 +2020-11-26 04:15,1.19239,1.19251,1.19222,1.19246,1088 +2020-11-26 04:30,1.19244,1.19255,1.19235,1.19254,1764 +2020-11-26 04:45,1.19255,1.19275,1.19226,1.19242,2147 +2020-11-26 05:00,1.19242,1.19256,1.19199,1.19236,1710 +2020-11-26 05:15,1.19235,1.19263,1.19235,1.19261,2112 +2020-11-26 05:30,1.19262,1.1928,1.19251,1.19261,3130 +2020-11-26 05:45,1.1926,1.19272,1.19246,1.19259,3189 +2020-11-26 06:00,1.19261,1.19337,1.19259,1.1932,1907 +2020-11-26 06:15,1.19322,1.19386,1.19314,1.19376,4263 +2020-11-26 06:30,1.19375,1.1938,1.1934,1.19354,3125 +2020-11-26 06:45,1.19353,1.19369,1.19342,1.19348,2010 +2020-11-26 07:00,1.19349,1.19357,1.19312,1.19312,3409 +2020-11-26 07:15,1.19311,1.19342,1.19292,1.19339,1983 +2020-11-26 07:30,1.19339,1.19378,1.1933,1.19366,4278 +2020-11-26 07:45,1.19366,1.19409,1.19258,1.1926,7877 +2020-11-26 08:00,1.19261,1.19341,1.19247,1.19334,5772 +2020-11-26 08:15,1.19333,1.19344,1.1927,1.1927,8283 +2020-11-26 08:30,1.19271,1.1929,1.19211,1.19228,6594 +2020-11-26 08:45,1.19229,1.19257,1.19147,1.19153,5721 +2020-11-26 09:00,1.19154,1.19238,1.19143,1.19225,5672 +2020-11-26 09:15,1.19225,1.19246,1.19175,1.19216,5059 +2020-11-26 09:30,1.19216,1.19224,1.19123,1.19124,5948 +2020-11-26 09:45,1.19125,1.19127,1.19019,1.19034,7889 +2020-11-26 10:00,1.19033,1.19146,1.19015,1.1912,8969 +2020-11-26 10:15,1.1912,1.19121,1.19047,1.19049,4756 +2020-11-26 10:30,1.19047,1.19124,1.19038,1.19089,5137 +2020-11-26 10:45,1.1909,1.19125,1.19049,1.19076,5144 +2020-11-26 11:00,1.19075,1.19121,1.19044,1.1907,5203 +2020-11-26 11:15,1.19071,1.19094,1.19044,1.19068,5094 +2020-11-26 11:30,1.19068,1.19077,1.1903,1.1904,4588 +2020-11-26 11:45,1.19039,1.19069,1.19013,1.19027,4296 +2020-11-26 12:00,1.19027,1.19049,1.18937,1.18948,5257 +2020-11-26 12:15,1.18946,1.18953,1.18889,1.18889,4662 +2020-11-26 12:30,1.18889,1.18971,1.18852,1.18967,5438 +2020-11-26 12:45,1.18967,1.19002,1.1895,1.18958,7477 +2020-11-26 13:00,1.18961,1.19016,1.18948,1.19014,5234 +2020-11-26 13:15,1.19014,1.19014,1.18958,1.18994,4401 +2020-11-26 13:30,1.18994,1.19025,1.18986,1.19001,3621 +2020-11-26 13:45,1.18999,1.19017,1.18977,1.18979,4325 +2020-11-26 14:00,1.1898,1.19005,1.18959,1.18979,3404 +2020-11-26 14:15,1.18979,1.19009,1.1893,1.1895,3263 +2020-11-26 14:30,1.18954,1.18995,1.18946,1.18989,6711 +2020-11-26 14:45,1.18988,1.19032,1.18959,1.19006,7073 +2020-11-26 15:00,1.19006,1.19066,1.19005,1.19033,6414 +2020-11-26 15:15,1.19033,1.19033,1.18965,1.1897,3045 +2020-11-26 15:30,1.1897,1.19042,1.18956,1.19016,3281 +2020-11-26 15:45,1.19015,1.19056,1.18988,1.19009,4884 +2020-11-26 16:00,1.19011,1.19085,1.19011,1.19079,6041 +2020-11-26 16:15,1.19079,1.19083,1.1904,1.19067,5791 +2020-11-26 16:30,1.19068,1.19094,1.1904,1.19051,4346 +2020-11-26 16:45,1.19053,1.19098,1.19045,1.19092,4018 +2020-11-26 17:00,1.19091,1.19106,1.19051,1.19102,3343 +2020-11-26 17:15,1.19103,1.19146,1.19085,1.19141,3591 +2020-11-26 17:30,1.19141,1.19144,1.19075,1.19082,1487 +2020-11-26 17:45,1.19084,1.19146,1.19084,1.19129,3295 +2020-11-26 18:00,1.19129,1.1913,1.19101,1.19106,1599 +2020-11-26 18:15,1.19106,1.1913,1.19098,1.19129,1252 +2020-11-26 18:30,1.19129,1.19143,1.19129,1.19132,2689 +2020-11-26 18:45,1.19133,1.19143,1.1913,1.19136,1920 +2020-11-26 19:00,1.19135,1.19145,1.19133,1.19144,698 +2020-11-26 19:15,1.19144,1.19146,1.19141,1.19145,822 +2020-11-26 19:30,1.19144,1.19185,1.19142,1.19161,1678 +2020-11-26 19:45,1.19161,1.19164,1.19129,1.19148,1316 +2020-11-26 20:00,1.19149,1.19152,1.19132,1.19133,1112 +2020-11-26 20:15,1.19132,1.19139,1.19131,1.19135,984 +2020-11-26 20:30,1.19136,1.19139,1.19128,1.19129,543 +2020-11-26 20:45,1.1913,1.1914,1.19125,1.19126,1726 +2020-11-26 21:00,1.19126,1.19126,1.19108,1.19116,4388 +2020-11-26 21:15,1.19119,1.1913,1.19106,1.1912,3813 +2020-11-26 21:30,1.19121,1.19133,1.19114,1.19114,3083 +2020-11-26 21:45,1.19114,1.1914,1.19095,1.19127,265 +2020-11-26 22:00,1.19125,1.1913,1.19113,1.19117,25 +2020-11-26 22:15,1.19118,1.19132,1.1911,1.19117,74 +2020-11-26 22:30,1.19118,1.19118,1.19068,1.19084,104 +2020-11-26 22:45,1.19085,1.19106,1.19084,1.19095,76 +2020-11-26 23:00,1.19098,1.19127,1.19095,1.19122,975 +2020-11-26 23:15,1.19123,1.19129,1.19104,1.19104,745 +2020-11-26 23:30,1.19105,1.19106,1.19094,1.19097,663 +2020-11-26 23:45,1.19097,1.1912,1.19097,1.19109,246 +2020-11-27 00:00,1.1911,1.19137,1.19094,1.19131,1071 +2020-11-27 00:15,1.19131,1.19133,1.19096,1.19124,1401 +2020-11-27 00:30,1.19123,1.19137,1.19121,1.19133,705 +2020-11-27 00:45,1.19133,1.19143,1.19097,1.19136,1901 +2020-11-27 01:00,1.19136,1.19149,1.19112,1.19133,1836 +2020-11-27 01:15,1.19134,1.19148,1.19126,1.19127,1825 +2020-11-27 01:30,1.19127,1.19148,1.19121,1.19125,3116 +2020-11-27 01:45,1.19125,1.19143,1.19125,1.19134,2519 +2020-11-27 02:00,1.19135,1.1914,1.191,1.19124,2186 +2020-11-27 02:15,1.19125,1.19125,1.19103,1.19117,942 +2020-11-27 02:30,1.19117,1.19148,1.19117,1.19128,1529 +2020-11-27 02:45,1.19127,1.19148,1.19127,1.19148,1226 +2020-11-27 03:00,1.19149,1.19181,1.19141,1.19172,2443 +2020-11-27 03:15,1.19171,1.19205,1.1917,1.192,1917 +2020-11-27 03:30,1.192,1.19235,1.19199,1.19225,2758 +2020-11-27 03:45,1.19225,1.19241,1.19213,1.19235,1662 +2020-11-27 04:00,1.19236,1.19246,1.19231,1.19241,1952 +2020-11-27 04:15,1.19242,1.19249,1.19236,1.19237,1348 +2020-11-27 04:30,1.19238,1.19239,1.19225,1.19233,1078 +2020-11-27 04:45,1.19232,1.19244,1.19229,1.19242,1005 +2020-11-27 05:00,1.19243,1.1925,1.1923,1.19231,852 +2020-11-27 05:15,1.19231,1.19251,1.19227,1.19251,1246 +2020-11-27 05:30,1.19251,1.19256,1.19232,1.19256,2261 +2020-11-27 05:45,1.19255,1.19286,1.19251,1.19266,1396 +2020-11-27 06:00,1.19267,1.19284,1.19262,1.19272,1657 +2020-11-27 06:15,1.19272,1.19289,1.19245,1.19246,2254 +2020-11-27 06:30,1.19245,1.19286,1.1924,1.19278,2533 +2020-11-27 06:45,1.19279,1.19283,1.19245,1.19247,1943 +2020-11-27 07:00,1.19247,1.19272,1.19214,1.19263,2956 +2020-11-27 07:15,1.19264,1.193,1.19232,1.19236,3956 +2020-11-27 07:30,1.19234,1.19242,1.19191,1.19207,3642 +2020-11-27 07:45,1.19206,1.19275,1.19196,1.19275,4512 +2020-11-27 08:00,1.19274,1.19326,1.19258,1.19303,5687 +2020-11-27 08:15,1.19303,1.19303,1.1922,1.19233,4967 +2020-11-27 08:30,1.19233,1.19278,1.19207,1.19268,5915 +2020-11-27 08:45,1.19269,1.19317,1.19249,1.1931,3955 +2020-11-27 09:00,1.19309,1.19316,1.19255,1.19258,5423 +2020-11-27 09:15,1.19259,1.19278,1.19201,1.19218,3558 +2020-11-27 09:30,1.19216,1.19218,1.19146,1.192,4817 +2020-11-27 09:45,1.19201,1.19227,1.19173,1.19227,5035 +2020-11-27 10:00,1.19226,1.19256,1.19198,1.1925,4737 +2020-11-27 10:15,1.1925,1.1925,1.19162,1.19169,2994 +2020-11-27 10:30,1.19171,1.19241,1.1917,1.19228,5904 +2020-11-27 10:45,1.19227,1.19248,1.19202,1.19231,4412 +2020-11-27 11:00,1.19231,1.19267,1.19198,1.19258,4389 +2020-11-27 11:15,1.19258,1.1927,1.19232,1.1925,3752 +2020-11-27 11:30,1.19251,1.19256,1.19215,1.19238,3781 +2020-11-27 11:45,1.19237,1.19256,1.19212,1.19226,5804 +2020-11-27 12:00,1.19227,1.19246,1.19191,1.19191,3221 +2020-11-27 12:15,1.19192,1.19205,1.1914,1.19203,6028 +2020-11-27 12:30,1.19204,1.19246,1.19192,1.19241,3299 +2020-11-27 12:45,1.19244,1.19258,1.19222,1.19246,2694 +2020-11-27 13:00,1.19247,1.19296,1.19215,1.19219,5470 +2020-11-27 13:15,1.19219,1.19296,1.19203,1.19291,5778 +2020-11-27 13:30,1.1929,1.19355,1.19261,1.19306,4003 +2020-11-27 13:45,1.19307,1.19392,1.19307,1.19366,5489 +2020-11-27 14:00,1.19366,1.194,1.19347,1.1937,6836 +2020-11-27 14:15,1.1937,1.1937,1.19313,1.19353,3822 +2020-11-27 14:30,1.19355,1.19459,1.19349,1.19451,9511 +2020-11-27 14:45,1.1945,1.1946,1.19373,1.19432,6089 +2020-11-27 15:00,1.19432,1.1945,1.19343,1.19425,7872 +2020-11-27 15:15,1.19424,1.19462,1.19384,1.1943,7013 +2020-11-27 15:30,1.19431,1.19484,1.19407,1.19457,5486 +2020-11-27 15:45,1.19458,1.19511,1.19441,1.19443,5969 +2020-11-27 16:00,1.19444,1.19538,1.19432,1.19526,7792 +2020-11-27 16:15,1.19528,1.19609,1.19514,1.19573,6086 +2020-11-27 16:30,1.19575,1.19617,1.19521,1.19528,7343 +2020-11-27 16:45,1.19529,1.19565,1.19502,1.19536,5993 +2020-11-27 17:00,1.19537,1.19568,1.19526,1.19541,3281 +2020-11-27 17:15,1.19541,1.19567,1.19533,1.19546,2161 +2020-11-27 17:30,1.19547,1.19553,1.19504,1.19542,3091 +2020-11-27 17:45,1.19542,1.19569,1.19539,1.19565,4894 +2020-11-27 18:00,1.19566,1.1957,1.19504,1.19508,1285 +2020-11-27 18:15,1.19507,1.19535,1.19498,1.1953,1226 +2020-11-27 18:30,1.19529,1.19551,1.19514,1.19528,738 +2020-11-27 18:45,1.19527,1.19562,1.19526,1.19559,1870 +2020-11-27 19:00,1.19558,1.19573,1.19551,1.19572,1704 +2020-11-27 19:15,1.19574,1.19613,1.19572,1.19607,2883 +2020-11-27 19:30,1.19608,1.19628,1.19558,1.19562,3097 +2020-11-27 19:45,1.19564,1.19613,1.19556,1.19574,2589 +2020-11-27 20:00,1.19574,1.1959,1.19559,1.19589,3755 +2020-11-27 20:15,1.19588,1.19603,1.19586,1.19599,1160 +2020-11-27 20:30,1.19599,1.19608,1.19592,1.19603,764 +2020-11-27 20:45,1.19603,1.19615,1.19594,1.19604,726 +2020-11-27 21:00,1.19605,1.19629,1.19589,1.19625,1639 +2020-11-27 21:15,1.19622,1.19625,1.19598,1.19615,1078 +2020-11-27 21:30,1.19616,1.19626,1.196,1.196,743 +2020-11-27 21:45,1.19599,1.19641,1.19592,1.1962,1459 +2020-11-29 22:00,1.19614,1.19639,1.1961,1.19636,249 +2020-11-29 22:15,1.19637,1.1964,1.19632,1.19638,61 +2020-11-29 22:30,1.19638,1.19656,1.19638,1.19651,373 +2020-11-29 22:45,1.19651,1.1968,1.19626,1.19657,428 +2020-11-29 23:00,1.19658,1.19694,1.19632,1.19652,1128 +2020-11-29 23:15,1.19652,1.19686,1.19648,1.19664,611 +2020-11-29 23:30,1.19663,1.19737,1.19657,1.19737,1349 +2020-11-29 23:45,1.19735,1.19738,1.19688,1.19721,1491 +2020-11-30 00:00,1.19722,1.19723,1.19664,1.19684,2768 +2020-11-30 00:15,1.19683,1.19685,1.1964,1.19652,4433 +2020-11-30 00:30,1.19653,1.19679,1.1964,1.19652,2085 +2020-11-30 00:45,1.19653,1.19721,1.19651,1.19705,2985 +2020-11-30 01:00,1.19706,1.1974,1.19706,1.19715,3362 +2020-11-30 01:15,1.19714,1.19724,1.19686,1.19701,3131 +2020-11-30 01:30,1.197,1.19724,1.19695,1.19719,3826 +2020-11-30 01:45,1.19718,1.19738,1.19702,1.19738,2818 +2020-11-30 02:00,1.19737,1.19739,1.197,1.19709,4292 +2020-11-30 02:15,1.19709,1.19727,1.19688,1.19705,2022 +2020-11-30 02:30,1.19704,1.19722,1.19696,1.19706,1963 +2020-11-30 02:45,1.19705,1.19709,1.19655,1.19687,3271 +2020-11-30 03:00,1.19687,1.19724,1.19678,1.19717,1828 +2020-11-30 03:15,1.19715,1.19737,1.19681,1.19687,1745 +2020-11-30 03:30,1.19686,1.197,1.19677,1.19681,1057 +2020-11-30 03:45,1.19681,1.19688,1.19671,1.19682,879 +2020-11-30 04:00,1.19681,1.19681,1.19652,1.19666,1207 +2020-11-30 04:15,1.19666,1.1968,1.19661,1.19667,971 +2020-11-30 04:30,1.19667,1.19697,1.19665,1.19681,1899 +2020-11-30 04:45,1.19681,1.19704,1.19678,1.1968,1734 +2020-11-30 05:00,1.19682,1.19706,1.19681,1.19696,1314 +2020-11-30 05:15,1.19694,1.19704,1.19686,1.19702,926 +2020-11-30 05:30,1.19702,1.19732,1.1969,1.19727,1026 +2020-11-30 05:45,1.19727,1.19748,1.19714,1.19722,1231 +2020-11-30 06:00,1.19722,1.1976,1.19722,1.19747,793 +2020-11-30 06:15,1.19747,1.19765,1.19721,1.19752,2471 +2020-11-30 06:30,1.19754,1.19756,1.19698,1.19699,2384 +2020-11-30 06:45,1.19699,1.19711,1.19628,1.19633,3632 +2020-11-30 07:00,1.19631,1.19666,1.19621,1.1966,4642 +2020-11-30 07:15,1.19658,1.19706,1.19642,1.19697,4929 +2020-11-30 07:30,1.19694,1.19694,1.19657,1.19676,4463 +2020-11-30 07:45,1.19675,1.19742,1.19651,1.19738,5474 +2020-11-30 08:00,1.19738,1.19739,1.19677,1.19706,6965 +2020-11-30 08:15,1.19704,1.19767,1.19694,1.1976,7064 +2020-11-30 08:30,1.19759,1.19836,1.19752,1.19828,6964 +2020-11-30 08:45,1.19828,1.19829,1.1977,1.19781,4860 +2020-11-30 09:00,1.19779,1.19801,1.19704,1.19722,7418 +2020-11-30 09:15,1.19722,1.19761,1.19709,1.19748,5744 +2020-11-30 09:30,1.19749,1.19851,1.19736,1.19838,5907 +2020-11-30 09:45,1.19838,1.19852,1.19819,1.19844,7320 +2020-11-30 10:00,1.19844,1.19851,1.19813,1.19847,6428 +2020-11-30 10:15,1.19848,1.19849,1.19815,1.19828,3171 +2020-11-30 10:30,1.19827,1.19844,1.19804,1.19804,3441 +2020-11-30 10:45,1.19806,1.19847,1.19799,1.19846,4430 +2020-11-30 11:00,1.19847,1.19869,1.19841,1.19841,5379 +2020-11-30 11:15,1.1984,1.19902,1.19834,1.19886,4676 +2020-11-30 11:30,1.19888,1.19903,1.19874,1.19895,5218 +2020-11-30 11:45,1.19896,1.199,1.19861,1.19876,5975 +2020-11-30 12:00,1.19876,1.19886,1.19842,1.19856,5485 +2020-11-30 12:15,1.19856,1.199,1.19829,1.1989,5534 +2020-11-30 12:30,1.19891,1.19923,1.19794,1.19804,8605 +2020-11-30 12:45,1.19801,1.19818,1.1973,1.19762,7524 +2020-11-30 13:00,1.19761,1.19797,1.1973,1.19794,9228 +2020-11-30 13:15,1.19793,1.19861,1.19793,1.19835,9333 +2020-11-30 13:30,1.19834,1.19877,1.19807,1.19824,7806 +2020-11-30 13:45,1.19824,1.19898,1.1981,1.19863,7745 +2020-11-30 14:00,1.19864,1.1995,1.19856,1.19932,9945 +2020-11-30 14:15,1.19932,1.19977,1.19911,1.19971,6465 +2020-11-30 14:30,1.1997,1.19991,1.19807,1.19868,7723 +2020-11-30 14:45,1.19866,1.19976,1.19864,1.19945,9276 +2020-11-30 15:00,1.19945,1.20031,1.19855,1.19985,11789 +2020-11-30 15:15,1.19985,1.20032,1.1994,1.19958,9337 +2020-11-30 15:30,1.19961,1.19973,1.19782,1.19789,14187 +2020-11-30 15:45,1.19788,1.1985,1.19553,1.19636,18675 +2020-11-30 16:00,1.19637,1.19651,1.19504,1.19566,15405 +2020-11-30 16:15,1.19566,1.19567,1.1945,1.19459,8599 +2020-11-30 16:30,1.1946,1.19533,1.19427,1.19486,9642 +2020-11-30 16:45,1.19487,1.195,1.19431,1.19476,6066 +2020-11-30 17:00,1.19475,1.1951,1.19439,1.19486,5891 +2020-11-30 17:15,1.19484,1.19504,1.19418,1.19445,6243 +2020-11-30 17:30,1.19446,1.19496,1.19426,1.19472,4139 +2020-11-30 17:45,1.19473,1.19547,1.19462,1.19542,6315 +2020-11-30 18:00,1.19543,1.19558,1.19514,1.19516,4765 +2020-11-30 18:15,1.19516,1.19557,1.19503,1.19547,1648 +2020-11-30 18:30,1.19547,1.19568,1.19534,1.19559,1664 +2020-11-30 18:45,1.1956,1.19597,1.19511,1.19518,2861 +2020-11-30 19:00,1.19517,1.19522,1.19458,1.19468,2763 +2020-11-30 19:15,1.19468,1.19478,1.19436,1.19444,2129 +2020-11-30 19:30,1.19444,1.19471,1.19444,1.19456,2239 +2020-11-30 19:45,1.19454,1.19473,1.19423,1.19473,2182 +2020-11-30 20:00,1.19472,1.19473,1.19353,1.19359,2086 +2020-11-30 20:15,1.19359,1.1937,1.19308,1.19331,2792 +2020-11-30 20:30,1.1933,1.19373,1.19317,1.19346,2606 +2020-11-30 20:45,1.19345,1.19358,1.19271,1.19275,3581 +2020-11-30 21:00,1.19276,1.19307,1.19261,1.19296,1115 +2020-11-30 21:15,1.19296,1.193,1.19264,1.1927,1021 +2020-11-30 21:30,1.1927,1.19278,1.19242,1.19249,1310 +2020-11-30 21:45,1.19249,1.19265,1.19236,1.19256,2343 +2020-11-30 22:00,1.1926,1.19318,1.19249,1.1929,148 +2020-11-30 22:15,1.19292,1.19359,1.19273,1.193,354 +2020-11-30 22:30,1.19323,1.19323,1.19281,1.19298,170 +2020-11-30 22:45,1.19299,1.19324,1.19296,1.19307,220 +2020-11-30 23:00,1.19304,1.19325,1.19295,1.19322,1027 +2020-11-30 23:15,1.19322,1.19352,1.19307,1.19349,1666 +2020-11-30 23:30,1.19348,1.19362,1.19331,1.19362,2793 +2020-11-30 23:45,1.19362,1.19387,1.19353,1.19374,1197 +2020-12-01 00:00,1.19372,1.19394,1.19353,1.1938,2389 +2020-12-01 00:15,1.19381,1.19418,1.19366,1.19408,1809 +2020-12-01 00:30,1.19409,1.19456,1.19405,1.19431,2046 +2020-12-01 00:45,1.19432,1.19448,1.19422,1.19431,2825 +2020-12-01 01:00,1.19433,1.19449,1.19406,1.1942,2752 +2020-12-01 01:15,1.19419,1.1944,1.19415,1.19435,2113 +2020-12-01 01:30,1.19435,1.19459,1.19427,1.19452,2531 +2020-12-01 01:45,1.19453,1.19494,1.19453,1.19492,1829 +2020-12-01 02:00,1.19493,1.195,1.19479,1.19493,3062 +2020-12-01 02:15,1.19495,1.19539,1.19483,1.19534,2115 +2020-12-01 02:30,1.19535,1.1956,1.19528,1.1953,2669 +2020-12-01 02:45,1.1953,1.19576,1.1953,1.1956,2890 +2020-12-01 03:00,1.19559,1.19585,1.19559,1.1958,2582 +2020-12-01 03:15,1.19579,1.19593,1.19562,1.19583,2734 +2020-12-01 03:30,1.19583,1.19596,1.19572,1.19581,2674 +2020-12-01 03:45,1.19581,1.19588,1.19562,1.19575,2353 +2020-12-01 04:00,1.19575,1.19598,1.19575,1.19594,1710 +2020-12-01 04:15,1.19594,1.19596,1.19574,1.19581,1616 +2020-12-01 04:30,1.19581,1.19584,1.19559,1.19573,1964 +2020-12-01 04:45,1.19573,1.19576,1.19564,1.19574,1402 +2020-12-01 05:00,1.19575,1.19581,1.19564,1.19575,1281 +2020-12-01 05:15,1.19575,1.19594,1.19568,1.19569,1226 +2020-12-01 05:30,1.1957,1.19571,1.19551,1.19566,2079 +2020-12-01 05:45,1.19565,1.19575,1.19554,1.19569,1716 +2020-12-01 06:00,1.19571,1.1958,1.1956,1.19573,1911 +2020-12-01 06:15,1.19572,1.19588,1.19548,1.19587,1897 +2020-12-01 06:30,1.19588,1.1959,1.19546,1.19553,3008 +2020-12-01 06:45,1.19554,1.19574,1.19548,1.19571,1671 +2020-12-01 07:00,1.19571,1.19632,1.19539,1.1962,4676 +2020-12-01 07:15,1.19618,1.1968,1.19604,1.19672,4376 +2020-12-01 07:30,1.19671,1.19728,1.19656,1.19711,3776 +2020-12-01 07:45,1.19711,1.19727,1.19675,1.19684,4471 +2020-12-01 08:00,1.19684,1.19719,1.19635,1.19648,6712 +2020-12-01 08:15,1.19649,1.19724,1.19631,1.19717,4936 +2020-12-01 08:30,1.19717,1.19855,1.1971,1.19821,6125 +2020-12-01 08:45,1.19821,1.19831,1.1977,1.198,3984 +2020-12-01 09:00,1.19802,1.19814,1.19731,1.19761,4401 +2020-12-01 09:15,1.19762,1.19803,1.19717,1.19794,6227 +2020-12-01 09:30,1.19796,1.19801,1.19722,1.19767,7440 +2020-12-01 09:45,1.19768,1.19825,1.19734,1.19806,4627 +2020-12-01 10:00,1.19805,1.19817,1.19739,1.19743,3347 +2020-12-01 10:15,1.19743,1.19756,1.19675,1.19682,2645 +2020-12-01 10:30,1.19684,1.19717,1.1967,1.19707,3297 +2020-12-01 10:45,1.19708,1.19713,1.19657,1.19686,3456 +2020-12-01 11:00,1.19686,1.19709,1.1962,1.19631,4142 +2020-12-01 11:15,1.19632,1.19647,1.19604,1.19614,3750 +2020-12-01 11:30,1.19613,1.19651,1.19601,1.1963,5851 +2020-12-01 11:45,1.19628,1.19703,1.19612,1.197,6029 +2020-12-01 12:00,1.19698,1.19727,1.19651,1.19671,5159 +2020-12-01 12:15,1.19671,1.19716,1.19658,1.19691,3275 +2020-12-01 12:30,1.19691,1.19691,1.19652,1.19675,3847 +2020-12-01 12:45,1.19674,1.19694,1.19641,1.19671,3889 +2020-12-01 13:00,1.19671,1.19692,1.19654,1.19677,5738 +2020-12-01 13:15,1.19678,1.19823,1.19669,1.19819,4516 +2020-12-01 13:30,1.19818,1.19819,1.19745,1.19761,3632 +2020-12-01 13:45,1.19761,1.19938,1.19749,1.19921,5715 +2020-12-01 14:00,1.1992,1.19943,1.19849,1.19859,5470 +2020-12-01 14:15,1.19858,1.19897,1.1983,1.1983,4143 +2020-12-01 14:30,1.19831,1.19907,1.19751,1.199,6691 +2020-12-01 14:45,1.19901,1.20006,1.19896,1.19944,5116 +2020-12-01 15:00,1.19942,1.20006,1.19837,1.19949,7885 +2020-12-01 15:15,1.19949,1.20178,1.19929,1.20151,9677 +2020-12-01 15:30,1.20151,1.20285,1.20071,1.20251,7297 +2020-12-01 15:45,1.20253,1.20418,1.2023,1.20314,10013 +2020-12-01 16:00,1.20314,1.20482,1.20312,1.20481,9626 +2020-12-01 16:15,1.20482,1.20545,1.20376,1.20423,5996 +2020-12-01 16:30,1.20422,1.20495,1.20354,1.20401,6167 +2020-12-01 16:45,1.20404,1.20437,1.20362,1.20376,5575 +2020-12-01 17:00,1.20377,1.20437,1.20375,1.20408,4264 +2020-12-01 17:15,1.20409,1.20424,1.20381,1.20396,2962 +2020-12-01 17:30,1.20396,1.20488,1.20393,1.20462,3453 +2020-12-01 17:45,1.20464,1.20516,1.20448,1.20451,4401 +2020-12-01 18:00,1.20452,1.20491,1.20445,1.20476,3421 +2020-12-01 18:15,1.20477,1.20503,1.20469,1.20497,4368 +2020-12-01 18:30,1.20498,1.20522,1.20472,1.20475,2429 +2020-12-01 18:45,1.20476,1.20489,1.2043,1.20434,2958 +2020-12-01 19:00,1.20434,1.20462,1.20426,1.20462,2542 +2020-12-01 19:15,1.20461,1.20485,1.2045,1.20462,1444 +2020-12-01 19:30,1.20461,1.20498,1.20449,1.20473,1895 +2020-12-01 19:45,1.20473,1.20508,1.20469,1.20477,2624 +2020-12-01 20:00,1.20476,1.20517,1.20476,1.20502,2359 +2020-12-01 20:15,1.20504,1.20537,1.20486,1.20535,2219 +2020-12-01 20:30,1.20534,1.20618,1.20519,1.20612,1942 +2020-12-01 20:45,1.20612,1.20753,1.20601,1.20719,3105 +2020-12-01 21:00,1.20717,1.20765,1.20672,1.20692,1604 +2020-12-01 21:15,1.20692,1.20723,1.20682,1.207,878 +2020-12-01 21:30,1.20701,1.20731,1.20697,1.20726,732 +2020-12-01 21:45,1.20725,1.20731,1.20681,1.20692,850 +2020-12-01 22:00,1.20691,1.20711,1.20667,1.20701,41 +2020-12-01 22:15,1.20705,1.20737,1.20689,1.20731,58 +2020-12-01 22:30,1.20722,1.20742,1.20719,1.20728,220 +2020-12-01 22:45,1.20728,1.20739,1.20677,1.20726,238 +2020-12-01 23:00,1.20723,1.20728,1.20697,1.20706,1179 +2020-12-01 23:15,1.20706,1.20729,1.20698,1.20709,1120 +2020-12-01 23:30,1.20709,1.20716,1.20683,1.20716,1012 +2020-12-01 23:45,1.20715,1.2073,1.20704,1.20706,1086 +2020-12-02 00:00,1.20707,1.20708,1.20664,1.20679,2027 +2020-12-02 00:15,1.20679,1.20693,1.2066,1.20686,1753 +2020-12-02 00:30,1.20686,1.20722,1.2067,1.20673,1962 +2020-12-02 00:45,1.20673,1.20684,1.20652,1.20666,1446 +2020-12-02 01:00,1.20666,1.20673,1.20635,1.20635,2448 +2020-12-02 01:15,1.20637,1.20658,1.20605,1.20641,2643 +2020-12-02 01:30,1.2064,1.20673,1.20634,1.20666,1879 +2020-12-02 01:45,1.20667,1.20699,1.20652,1.20684,2118 +2020-12-02 02:00,1.20684,1.20781,1.20679,1.20729,3955 +2020-12-02 02:15,1.20728,1.2077,1.20702,1.2077,2387 +2020-12-02 02:30,1.2077,1.20793,1.20752,1.20788,2450 +2020-12-02 02:45,1.20787,1.20794,1.20733,1.20734,2118 +2020-12-02 03:00,1.20733,1.20794,1.20725,1.2078,2130 +2020-12-02 03:15,1.2078,1.20819,1.20776,1.20805,1844 +2020-12-02 03:30,1.20807,1.20807,1.20769,1.2078,1163 +2020-12-02 03:45,1.20779,1.20836,1.20775,1.20822,1348 +2020-12-02 04:00,1.20822,1.20831,1.208,1.20801,1625 +2020-12-02 04:15,1.208,1.20823,1.20786,1.20787,1630 +2020-12-02 04:30,1.20786,1.20798,1.20777,1.20798,1854 +2020-12-02 04:45,1.20797,1.208,1.20746,1.2075,1940 +2020-12-02 05:00,1.2075,1.20755,1.20728,1.20739,1180 +2020-12-02 05:15,1.20738,1.20747,1.20699,1.20724,2620 +2020-12-02 05:30,1.20724,1.20747,1.20709,1.2074,2900 +2020-12-02 05:45,1.20739,1.20749,1.20663,1.20681,2697 +2020-12-02 06:00,1.20682,1.2075,1.20677,1.20736,3135 +2020-12-02 06:15,1.20735,1.20771,1.20735,1.20767,2031 +2020-12-02 06:30,1.20766,1.20769,1.20712,1.20719,1790 +2020-12-02 06:45,1.20718,1.20718,1.20639,1.2065,1771 +2020-12-02 07:00,1.20649,1.20758,1.20647,1.20724,3757 +2020-12-02 07:15,1.20723,1.20792,1.20711,1.20756,4405 +2020-12-02 07:30,1.20757,1.20875,1.20756,1.20868,5587 +2020-12-02 07:45,1.20866,1.20872,1.20667,1.20688,5180 +2020-12-02 08:00,1.20686,1.20763,1.20588,1.206,7863 +2020-12-02 08:15,1.20601,1.20662,1.20489,1.20508,6036 +2020-12-02 08:30,1.20507,1.2061,1.20485,1.20607,6917 +2020-12-02 08:45,1.20607,1.20622,1.20465,1.20482,5233 +2020-12-02 09:00,1.20481,1.20548,1.20454,1.20547,6017 +2020-12-02 09:15,1.20547,1.20646,1.20542,1.20584,6425 +2020-12-02 09:30,1.20585,1.20619,1.20515,1.20569,7043 +2020-12-02 09:45,1.20572,1.20602,1.2056,1.20586,3110 +2020-12-02 10:00,1.20536,1.20593,1.20525,1.20566,4088 +2020-12-02 10:15,1.20565,1.20617,1.2056,1.20591,4191 +2020-12-02 10:30,1.20591,1.20597,1.20516,1.20528,2924 +2020-12-02 10:45,1.20529,1.20531,1.20461,1.20493,4151 +2020-12-02 11:00,1.20493,1.20534,1.20476,1.2051,3908 +2020-12-02 11:15,1.20509,1.20515,1.20431,1.20452,4141 +2020-12-02 11:30,1.20452,1.20487,1.2042,1.20483,5534 +2020-12-02 11:45,1.20484,1.20517,1.20467,1.20517,4595 +2020-12-02 12:00,1.20516,1.20532,1.20452,1.205,6644 +2020-12-02 12:15,1.20499,1.20548,1.20469,1.20476,4850 +2020-12-02 12:30,1.20476,1.20477,1.20399,1.20404,5954 +2020-12-02 12:45,1.20405,1.20627,1.20404,1.20594,7639 +2020-12-02 13:00,1.20593,1.2069,1.20579,1.20645,8161 +2020-12-02 13:15,1.20643,1.20686,1.20623,1.20684,7838 +2020-12-02 13:30,1.20683,1.20785,1.20652,1.20779,8558 +2020-12-02 13:45,1.20777,1.20783,1.20659,1.2066,8668 +2020-12-02 14:00,1.2066,1.20742,1.20648,1.20704,6402 +2020-12-02 14:15,1.20704,1.20726,1.20601,1.20719,6777 +2020-12-02 14:30,1.2072,1.20827,1.20666,1.20807,10120 +2020-12-02 14:45,1.20808,1.20829,1.20739,1.20824,9005 +2020-12-02 15:00,1.20824,1.20955,1.20822,1.20911,8927 +2020-12-02 15:15,1.2091,1.21081,1.20906,1.20942,8979 +2020-12-02 15:30,1.20941,1.21037,1.20906,1.20946,8457 +2020-12-02 15:45,1.20946,1.20985,1.20751,1.20782,8147 +2020-12-02 16:00,1.20781,1.20867,1.20755,1.20862,7392 +2020-12-02 16:15,1.20863,1.20896,1.20808,1.20894,5339 +2020-12-02 16:30,1.20892,1.20958,1.20876,1.20917,5243 +2020-12-02 16:45,1.20917,1.20955,1.20876,1.20927,3274 +2020-12-02 17:00,1.20928,1.20938,1.20896,1.20906,2528 +2020-12-02 17:15,1.20905,1.20955,1.20879,1.20951,3257 +2020-12-02 17:30,1.20952,1.20984,1.20933,1.20983,2714 +2020-12-02 17:45,1.20981,1.2099,1.20907,1.20933,3576 +2020-12-02 18:00,1.20933,1.20948,1.20921,1.20929,2061 +2020-12-02 18:15,1.20929,1.2096,1.20927,1.20944,1829 +2020-12-02 18:30,1.20945,1.20981,1.20938,1.20938,1719 +2020-12-02 18:45,1.20938,1.20958,1.20924,1.2093,1566 +2020-12-02 19:00,1.2093,1.20947,1.20899,1.20903,3110 +2020-12-02 19:15,1.20902,1.21027,1.209,1.20988,4165 +2020-12-02 19:30,1.20987,1.21027,1.20946,1.20962,2982 +2020-12-02 19:45,1.20962,1.21014,1.20959,1.20997,2634 +2020-12-02 20:00,1.20995,1.2101,1.20975,1.20986,1072 +2020-12-02 20:15,1.20985,1.20989,1.20961,1.20969,917 +2020-12-02 20:30,1.2097,1.21008,1.20957,1.21008,1533 +2020-12-02 20:45,1.21007,1.21043,1.20996,1.21015,2382 +2020-12-02 21:00,1.21018,1.21071,1.21017,1.2107,1225 +2020-12-02 21:15,1.2107,1.21169,1.21067,1.2116,1632 +2020-12-02 21:30,1.2116,1.21183,1.21147,1.21176,1385 +2020-12-02 21:45,1.21176,1.21182,1.21132,1.21132,1213 +2020-12-02 22:00,1.21151,1.21157,1.2111,1.21147,87 +2020-12-02 22:15,1.21146,1.21159,1.21125,1.21125,108 +2020-12-02 22:30,1.21125,1.21147,1.21125,1.2113,198 +2020-12-02 22:45,1.21131,1.2114,1.21115,1.21125,185 +2020-12-02 23:00,1.21125,1.21146,1.21124,1.21128,673 +2020-12-02 23:15,1.21127,1.21138,1.21086,1.21112,2340 +2020-12-02 23:30,1.21113,1.21146,1.21104,1.21144,1597 +2020-12-02 23:45,1.21145,1.21153,1.21135,1.21138,697 +2020-12-03 00:00,1.21137,1.21143,1.21088,1.21098,2672 +2020-12-03 00:15,1.21099,1.21103,1.21065,1.21083,2946 +2020-12-03 00:30,1.21085,1.21092,1.21059,1.21073,2274 +2020-12-03 00:45,1.21075,1.21091,1.21039,1.21056,1586 +2020-12-03 01:00,1.21055,1.21086,1.21042,1.21063,2496 +2020-12-03 01:15,1.21064,1.211,1.21058,1.21072,3016 +2020-12-03 01:30,1.21073,1.2112,1.21044,1.21117,2052 +2020-12-03 01:45,1.2112,1.21149,1.21112,1.21132,4054 +2020-12-03 02:00,1.21132,1.2117,1.21119,1.21143,3864 +2020-12-03 02:15,1.21143,1.21165,1.21137,1.21153,2469 +2020-12-03 02:30,1.21154,1.2118,1.21151,1.21177,1091 +2020-12-03 02:45,1.21178,1.21209,1.21166,1.212,1241 +2020-12-03 03:00,1.21201,1.21249,1.21189,1.21247,2613 +2020-12-03 03:15,1.21247,1.2125,1.21219,1.21222,2650 +2020-12-03 03:30,1.21223,1.2124,1.21212,1.21238,1462 +2020-12-03 03:45,1.21238,1.21246,1.21227,1.21238,2342 +2020-12-03 04:00,1.21238,1.21244,1.2118,1.21197,2025 +2020-12-03 04:15,1.21199,1.212,1.21173,1.21189,1258 +2020-12-03 04:30,1.21189,1.21194,1.21161,1.21188,2081 +2020-12-03 04:45,1.21189,1.21194,1.21167,1.21174,1813 +2020-12-03 05:00,1.21174,1.21188,1.21165,1.21179,1708 +2020-12-03 05:15,1.21178,1.21201,1.21174,1.21197,1920 +2020-12-03 05:30,1.21198,1.21225,1.21187,1.21215,2150 +2020-12-03 05:45,1.21215,1.21217,1.21183,1.21193,2323 +2020-12-03 06:00,1.21193,1.21213,1.21179,1.2118,2423 +2020-12-03 06:15,1.21179,1.21202,1.21169,1.21188,1747 +2020-12-03 06:30,1.21189,1.21194,1.21134,1.21166,1925 +2020-12-03 06:45,1.21167,1.2121,1.21143,1.21179,3672 +2020-12-03 07:00,1.21178,1.21249,1.21174,1.21207,5420 +2020-12-03 07:15,1.21208,1.21255,1.21186,1.2125,4796 +2020-12-03 07:30,1.2125,1.21252,1.21172,1.21215,3350 +2020-12-03 07:45,1.21215,1.21248,1.21157,1.21228,4825 +2020-12-03 08:00,1.21227,1.21393,1.21199,1.21337,7249 +2020-12-03 08:15,1.21337,1.21353,1.21257,1.21271,5148 +2020-12-03 08:30,1.21272,1.21285,1.21209,1.21219,4348 +2020-12-03 08:45,1.2122,1.2123,1.21146,1.21215,5774 +2020-12-03 09:00,1.21213,1.21217,1.21086,1.21125,4810 +2020-12-03 09:15,1.21123,1.21137,1.21043,1.21058,5939 +2020-12-03 09:30,1.21059,1.21071,1.2101,1.21026,6749 +2020-12-03 09:45,1.21025,1.21141,1.21025,1.21113,6406 +2020-12-03 10:00,1.21112,1.21171,1.21084,1.21088,5831 +2020-12-03 10:15,1.21087,1.21161,1.21079,1.21084,4496 +2020-12-03 10:30,1.21085,1.21117,1.21039,1.21109,5260 +2020-12-03 10:45,1.21109,1.21189,1.21092,1.21156,4881 +2020-12-03 11:00,1.21156,1.21174,1.21138,1.21143,5054 +2020-12-03 11:15,1.21145,1.21259,1.21112,1.21241,7921 +2020-12-03 11:30,1.21241,1.21286,1.21208,1.21273,4827 +2020-12-03 11:45,1.21272,1.21297,1.21245,1.21289,5080 +2020-12-03 12:00,1.2129,1.21349,1.21187,1.21337,6779 +2020-12-03 12:15,1.21338,1.21376,1.21311,1.21354,7079 +2020-12-03 12:30,1.21356,1.21464,1.21353,1.21425,5931 +2020-12-03 12:45,1.21424,1.21611,1.21399,1.21554,7649 +2020-12-03 13:00,1.21554,1.21554,1.21453,1.21504,6602 +2020-12-03 13:15,1.21503,1.21566,1.21466,1.21561,6273 +2020-12-03 13:30,1.21561,1.21561,1.21444,1.21529,6499 +2020-12-03 13:45,1.21528,1.21532,1.21478,1.2151,5809 +2020-12-03 14:00,1.21512,1.21652,1.21468,1.21647,5883 +2020-12-03 14:15,1.21648,1.21683,1.21586,1.21594,4965 +2020-12-03 14:30,1.21593,1.21603,1.21444,1.21587,7906 +2020-12-03 14:45,1.21588,1.2161,1.21547,1.21596,7737 +2020-12-03 15:00,1.21597,1.21678,1.21583,1.21662,9580 +2020-12-03 15:15,1.21661,1.21725,1.21649,1.21651,8351 +2020-12-03 15:30,1.2165,1.21746,1.21621,1.21729,9663 +2020-12-03 15:45,1.21729,1.21743,1.21569,1.21611,10047 +2020-12-03 16:00,1.2161,1.21632,1.21464,1.21538,8995 +2020-12-03 16:15,1.21538,1.21541,1.21471,1.21504,5361 +2020-12-03 16:30,1.21506,1.2158,1.21502,1.21521,3701 +2020-12-03 16:45,1.2152,1.21524,1.21467,1.21512,4695 +2020-12-03 17:00,1.2151,1.21517,1.21377,1.21416,4114 +2020-12-03 17:15,1.21418,1.21479,1.21411,1.21468,4200 +2020-12-03 17:30,1.21467,1.21513,1.21463,1.21477,4480 +2020-12-03 17:45,1.21478,1.21478,1.21436,1.21461,2145 +2020-12-03 18:00,1.21461,1.21476,1.21347,1.21357,2589 +2020-12-03 18:15,1.21359,1.2138,1.21326,1.21378,1930 +2020-12-03 18:30,1.21379,1.21412,1.21373,1.21387,2104 +2020-12-03 18:45,1.21388,1.21404,1.2135,1.21394,4125 +2020-12-03 19:00,1.21393,1.21437,1.21379,1.21428,4329 +2020-12-03 19:15,1.21429,1.21438,1.21379,1.21395,2786 +2020-12-03 19:30,1.21394,1.21432,1.21393,1.21425,2343 +2020-12-03 19:45,1.21424,1.21427,1.214,1.21425,1647 +2020-12-03 20:00,1.21424,1.21467,1.21406,1.21455,2083 +2020-12-03 20:15,1.21454,1.21479,1.21435,1.21479,2347 +2020-12-03 20:30,1.21479,1.21482,1.21333,1.21409,4195 +2020-12-03 20:45,1.21408,1.21458,1.21401,1.21455,3891 +2020-12-03 21:00,1.21456,1.2148,1.21425,1.21464,1261 +2020-12-03 21:15,1.21464,1.21489,1.21462,1.21489,928 +2020-12-03 21:30,1.2149,1.21493,1.21458,1.21458,873 +2020-12-03 21:45,1.21457,1.21483,1.21449,1.21454,1068 +2020-12-03 22:00,1.21454,1.21454,1.21405,1.21421,145 +2020-12-03 22:15,1.21415,1.21467,1.21415,1.21452,47 +2020-12-03 22:30,1.21451,1.21453,1.21425,1.21429,45 +2020-12-03 22:45,1.21423,1.21446,1.21409,1.21434,149 +2020-12-03 23:00,1.21432,1.21467,1.21432,1.21466,578 +2020-12-03 23:15,1.21466,1.21495,1.21466,1.21476,683 +2020-12-03 23:30,1.21477,1.21497,1.21451,1.21452,1777 +2020-12-03 23:45,1.21451,1.21464,1.21431,1.21449,1940 +2020-12-04 00:00,1.21449,1.21455,1.21407,1.21416,2860 +2020-12-04 00:15,1.21418,1.2149,1.21412,1.2149,2306 +2020-12-04 00:30,1.2149,1.21517,1.21489,1.21516,2832 +2020-12-04 00:45,1.21516,1.21537,1.2147,1.21495,2281 +2020-12-04 01:00,1.21497,1.21529,1.21456,1.21477,3943 +2020-12-04 01:15,1.21475,1.21512,1.21461,1.21488,3298 +2020-12-04 01:30,1.21487,1.21487,1.2142,1.2144,4615 +2020-12-04 01:45,1.2144,1.21466,1.21413,1.21438,4644 +2020-12-04 02:00,1.21439,1.21449,1.21389,1.2139,2685 +2020-12-04 02:15,1.2139,1.21429,1.21389,1.21425,2891 +2020-12-04 02:30,1.21425,1.21436,1.21402,1.21402,2975 +2020-12-04 02:45,1.21402,1.21452,1.21396,1.21446,1541 +2020-12-04 03:00,1.21446,1.21447,1.21424,1.21437,2299 +2020-12-04 03:15,1.21436,1.21444,1.21426,1.21431,2396 +2020-12-04 03:30,1.21431,1.21436,1.21419,1.21419,1955 +2020-12-04 03:45,1.21419,1.21476,1.21417,1.21452,1846 +2020-12-04 04:00,1.21453,1.21453,1.21411,1.21426,2473 +2020-12-04 04:15,1.21426,1.21448,1.21425,1.21444,1895 +2020-12-04 04:30,1.21444,1.21473,1.21442,1.21472,2703 +2020-12-04 04:45,1.21471,1.21471,1.21417,1.21419,1986 +2020-12-04 05:00,1.21419,1.21432,1.2141,1.21432,2763 +2020-12-04 05:15,1.21431,1.21443,1.21421,1.21432,2195 +2020-12-04 05:30,1.21433,1.21436,1.21417,1.2143,2546 +2020-12-04 05:45,1.21431,1.21511,1.21416,1.215,3098 +2020-12-04 06:00,1.215,1.21537,1.21478,1.21522,3391 +2020-12-04 06:15,1.21522,1.21572,1.2151,1.21563,2732 +2020-12-04 06:30,1.21562,1.21576,1.21526,1.21528,2322 +2020-12-04 06:45,1.21527,1.21576,1.21527,1.21552,3837 +2020-12-04 07:00,1.21553,1.21605,1.21521,1.21553,4761 +2020-12-04 07:15,1.21551,1.21574,1.21511,1.21563,3207 +2020-12-04 07:30,1.21562,1.216,1.21542,1.21576,3849 +2020-12-04 07:45,1.21578,1.2158,1.21523,1.21531,5401 +2020-12-04 08:00,1.21531,1.21638,1.21436,1.21621,8142 +2020-12-04 08:15,1.21622,1.21656,1.21551,1.21589,6089 +2020-12-04 08:30,1.21591,1.21662,1.2156,1.21605,6808 +2020-12-04 08:45,1.21607,1.21638,1.21552,1.21604,6612 +2020-12-04 09:00,1.21604,1.21704,1.21596,1.21683,7541 +2020-12-04 09:15,1.21683,1.2169,1.21632,1.21632,4911 +2020-12-04 09:30,1.21632,1.21699,1.21612,1.21673,6823 +2020-12-04 09:45,1.21674,1.21731,1.2163,1.21667,11386 +2020-12-04 10:00,1.21667,1.21714,1.21626,1.21633,5566 +2020-12-04 10:15,1.21633,1.21685,1.21564,1.21621,7966 +2020-12-04 10:30,1.21622,1.21766,1.21599,1.21718,7233 +2020-12-04 10:45,1.21717,1.21773,1.21691,1.21751,8376 +2020-12-04 11:00,1.2175,1.21757,1.21699,1.21723,6799 +2020-12-04 11:15,1.21721,1.21731,1.21644,1.21692,5990 +2020-12-04 11:30,1.21692,1.21751,1.21621,1.21746,6533 +2020-12-04 11:45,1.21746,1.21758,1.21672,1.21684,5230 +2020-12-04 12:00,1.21685,1.21735,1.21639,1.21726,7260 +2020-12-04 12:15,1.21727,1.21744,1.2167,1.21671,8263 +2020-12-04 12:30,1.21672,1.21694,1.21626,1.21641,4011 +2020-12-04 12:45,1.21643,1.2165,1.21567,1.21584,7180 +2020-12-04 13:00,1.21584,1.21614,1.21561,1.21592,8231 +2020-12-04 13:15,1.21592,1.21592,1.21524,1.21559,5633 +2020-12-04 13:30,1.21558,1.21705,1.21514,1.21555,13394 +2020-12-04 13:45,1.21554,1.21562,1.21316,1.21456,12199 +2020-12-04 14:00,1.21456,1.21567,1.21438,1.21567,9119 +2020-12-04 14:15,1.21569,1.21674,1.21549,1.21589,8731 +2020-12-04 14:30,1.2159,1.21717,1.21565,1.21695,7710 +2020-12-04 14:45,1.21694,1.21702,1.21544,1.21563,7028 +2020-12-04 15:00,1.21564,1.21664,1.21532,1.21565,6943 +2020-12-04 15:15,1.21567,1.21577,1.21421,1.21461,9218 +2020-12-04 15:30,1.21462,1.21527,1.21427,1.21522,7952 +2020-12-04 15:45,1.21521,1.21522,1.21354,1.214,11416 +2020-12-04 16:00,1.21399,1.21462,1.21371,1.21425,5683 +2020-12-04 16:15,1.21428,1.21431,1.2133,1.21369,6924 +2020-12-04 16:30,1.21368,1.21398,1.21348,1.21389,3572 +2020-12-04 16:45,1.2139,1.21449,1.21389,1.2141,4072 +2020-12-04 17:00,1.2141,1.21455,1.21393,1.21422,3531 +2020-12-04 17:15,1.21421,1.21456,1.21419,1.21455,3453 +2020-12-04 17:30,1.21456,1.21505,1.21441,1.21441,3058 +2020-12-04 17:45,1.21439,1.21454,1.21423,1.21434,3641 +2020-12-04 18:00,1.21435,1.21465,1.21411,1.2144,1677 +2020-12-04 18:15,1.21439,1.21495,1.21439,1.21491,3207 +2020-12-04 18:30,1.2149,1.21516,1.2148,1.21483,2765 +2020-12-04 18:45,1.21484,1.21489,1.2141,1.21418,2690 +2020-12-04 19:00,1.21418,1.21457,1.21394,1.21436,3481 +2020-12-04 19:15,1.21435,1.21437,1.21382,1.21396,3057 +2020-12-04 19:30,1.21396,1.21416,1.21335,1.21357,4076 +2020-12-04 19:45,1.21358,1.21388,1.21336,1.21372,3553 +2020-12-04 20:00,1.21372,1.21402,1.21367,1.21372,2256 +2020-12-04 20:15,1.21371,1.21397,1.2135,1.2136,1696 +2020-12-04 20:30,1.21359,1.21364,1.21228,1.21236,2882 +2020-12-04 20:45,1.21235,1.21282,1.21123,1.21271,4418 +2020-12-04 21:00,1.21272,1.21299,1.21222,1.21222,2324 +2020-12-04 21:15,1.21222,1.21224,1.21179,1.21194,1238 +2020-12-04 21:30,1.21195,1.212,1.21117,1.21118,1995 +2020-12-04 21:45,1.21124,1.21215,1.21101,1.21202,3147 +2020-12-06 22:00,1.21308,1.21308,1.2123,1.21237,546 +2020-12-06 22:15,1.21221,1.21235,1.21195,1.21201,160 +2020-12-06 22:30,1.21205,1.2123,1.21201,1.21229,231 +2020-12-06 22:45,1.2123,1.21272,1.21227,1.2127,265 +2020-12-06 23:00,1.21269,1.21324,1.21269,1.21296,915 +2020-12-06 23:15,1.21297,1.21297,1.21234,1.21267,2131 +2020-12-06 23:30,1.21268,1.21291,1.21226,1.21236,1483 +2020-12-06 23:45,1.21235,1.21236,1.21195,1.212,1372 +2020-12-07 00:00,1.21199,1.21237,1.21186,1.2122,3665 +2020-12-07 00:15,1.21221,1.21259,1.21218,1.21244,4655 +2020-12-07 00:30,1.21243,1.21275,1.21233,1.21266,5706 +2020-12-07 00:45,1.21268,1.2131,1.21268,1.21278,4186 +2020-12-07 01:00,1.21276,1.21296,1.21248,1.21252,4173 +2020-12-07 01:15,1.21251,1.21279,1.21248,1.21279,3679 +2020-12-07 01:30,1.21281,1.21294,1.21253,1.21289,3396 +2020-12-07 01:45,1.2129,1.2136,1.21286,1.2135,3386 +2020-12-07 02:00,1.21349,1.2138,1.21325,1.2138,2970 +2020-12-07 02:15,1.21381,1.21402,1.21365,1.21367,2953 +2020-12-07 02:30,1.21368,1.21379,1.21357,1.21366,3403 +2020-12-07 02:45,1.21367,1.21385,1.21359,1.21364,2166 +2020-12-07 03:00,1.21365,1.21385,1.2135,1.21355,2149 +2020-12-07 03:15,1.21354,1.21372,1.21349,1.21362,1920 +2020-12-07 03:30,1.21361,1.21365,1.21341,1.21344,1118 +2020-12-07 03:45,1.21345,1.2135,1.21339,1.21343,1845 +2020-12-07 04:00,1.21343,1.21344,1.2133,1.21335,1383 +2020-12-07 04:15,1.21334,1.21339,1.21328,1.21334,1025 +2020-12-07 04:30,1.21335,1.21344,1.21335,1.21344,986 +2020-12-07 04:45,1.21343,1.21344,1.21324,1.21326,1255 +2020-12-07 05:00,1.21326,1.21334,1.21319,1.21323,1298 +2020-12-07 05:15,1.21322,1.21334,1.21313,1.21332,1688 +2020-12-07 05:30,1.21333,1.21339,1.21308,1.21312,1859 +2020-12-07 05:45,1.21312,1.21324,1.21304,1.21317,2127 +2020-12-07 06:00,1.21316,1.21329,1.21284,1.21296,2947 +2020-12-07 06:15,1.21297,1.21303,1.21285,1.21286,2329 +2020-12-07 06:30,1.21286,1.21301,1.2125,1.213,3036 +2020-12-07 06:45,1.21299,1.213,1.21262,1.21291,2590 +2020-12-07 07:00,1.21291,1.21293,1.21174,1.21183,5820 +2020-12-07 07:15,1.21184,1.21204,1.21142,1.21153,5328 +2020-12-07 07:30,1.21153,1.21247,1.21142,1.21203,4707 +2020-12-07 07:45,1.21204,1.21232,1.21179,1.21211,5375 +2020-12-07 08:00,1.21211,1.21224,1.21059,1.21074,12738 +2020-12-07 08:15,1.21075,1.21083,1.20964,1.20968,7277 +2020-12-07 08:30,1.20967,1.21017,1.20906,1.20988,8368 +2020-12-07 08:45,1.2099,1.21055,1.20966,1.20969,8215 +2020-12-07 09:00,1.2097,1.20976,1.20813,1.20821,7488 +2020-12-07 09:15,1.20822,1.2089,1.20784,1.2087,8102 +2020-12-07 09:30,1.20871,1.20922,1.20847,1.2086,7864 +2020-12-07 09:45,1.20861,1.20947,1.20843,1.2093,6870 +2020-12-07 10:00,1.2093,1.20946,1.2085,1.20942,5263 +2020-12-07 10:15,1.20941,1.21099,1.20918,1.2109,7876 +2020-12-07 10:30,1.21089,1.21131,1.21004,1.21036,4631 +2020-12-07 10:45,1.21037,1.21095,1.2103,1.21084,3676 +2020-12-07 11:00,1.21084,1.21123,1.21039,1.21103,5459 +2020-12-07 11:15,1.21104,1.21141,1.21058,1.21124,6283 +2020-12-07 11:30,1.21126,1.21126,1.21048,1.21095,4044 +2020-12-07 11:45,1.21095,1.2113,1.21032,1.21129,5253 +2020-12-07 12:00,1.21129,1.21169,1.21073,1.21144,4892 +2020-12-07 12:15,1.21144,1.21157,1.21056,1.2107,3992 +2020-12-07 12:30,1.21071,1.21129,1.21063,1.21103,2670 +2020-12-07 12:45,1.21104,1.21194,1.21078,1.21184,6506 +2020-12-07 13:00,1.21183,1.2128,1.21141,1.21273,10330 +2020-12-07 13:15,1.21275,1.21355,1.21259,1.21313,7830 +2020-12-07 13:30,1.21314,1.21388,1.21309,1.21375,5296 +2020-12-07 13:45,1.21374,1.21393,1.21316,1.21372,5567 +2020-12-07 14:00,1.21371,1.2142,1.21359,1.21386,5206 +2020-12-07 14:15,1.21386,1.214,1.21318,1.21369,3826 +2020-12-07 14:30,1.2137,1.21662,1.21364,1.21612,10145 +2020-12-07 14:45,1.21612,1.21623,1.21482,1.21507,8733 +2020-12-07 15:00,1.21507,1.21508,1.21444,1.21463,5498 +2020-12-07 15:15,1.21465,1.21527,1.21433,1.21449,5313 +2020-12-07 15:30,1.2145,1.21488,1.21411,1.21418,6425 +2020-12-07 15:45,1.21417,1.21462,1.21321,1.21324,9193 +2020-12-07 16:00,1.21325,1.21415,1.21296,1.21372,6868 +2020-12-07 16:15,1.21371,1.21373,1.21313,1.21364,5289 +2020-12-07 16:30,1.21364,1.21419,1.21349,1.21408,3949 +2020-12-07 16:45,1.21408,1.21408,1.21339,1.21383,5338 +2020-12-07 17:00,1.21381,1.21417,1.21366,1.21406,5490 +2020-12-07 17:15,1.21405,1.21414,1.21343,1.21344,3460 +2020-12-07 17:30,1.21342,1.21348,1.21299,1.21313,3853 +2020-12-07 17:45,1.21311,1.21339,1.21299,1.2133,4001 +2020-12-07 18:00,1.2133,1.21331,1.21237,1.21243,4702 +2020-12-07 18:15,1.21244,1.21254,1.21217,1.21219,3524 +2020-12-07 18:30,1.2122,1.21245,1.21183,1.21205,5503 +2020-12-07 18:45,1.21207,1.21251,1.21176,1.21248,5363 +2020-12-07 19:00,1.21248,1.21287,1.21217,1.21275,3995 +2020-12-07 19:15,1.21275,1.21295,1.21241,1.21271,4017 +2020-12-07 19:30,1.21271,1.21281,1.21237,1.21244,2893 +2020-12-07 19:45,1.21243,1.21247,1.21188,1.21193,5268 +2020-12-07 20:00,1.21194,1.21205,1.21127,1.21127,5091 +2020-12-07 20:15,1.21131,1.21166,1.21128,1.21166,3682 +2020-12-07 20:30,1.21165,1.21165,1.2111,1.21122,2543 +2020-12-07 20:45,1.21122,1.21137,1.21082,1.21082,4995 +2020-12-07 21:00,1.21082,1.21141,1.21081,1.21141,1681 +2020-12-07 21:15,1.21141,1.21142,1.21113,1.21114,366 +2020-12-07 21:30,1.21114,1.21117,1.21098,1.211,360 +2020-12-07 21:45,1.21101,1.21108,1.21074,1.21091,861 +2020-12-07 22:00,1.21091,1.2111,1.21072,1.21106,56 +2020-12-07 22:15,1.21073,1.21104,1.21073,1.21093,24 +2020-12-07 22:30,1.21093,1.21102,1.21077,1.21077,83 +2020-12-07 22:45,1.21082,1.21104,1.2108,1.21099,138 +2020-12-07 23:00,1.211,1.21126,1.21099,1.21118,734 +2020-12-07 23:15,1.21119,1.21129,1.21114,1.21129,362 +2020-12-07 23:30,1.21127,1.21127,1.2111,1.21123,596 +2020-12-07 23:45,1.21124,1.21134,1.21092,1.21092,974 +2020-12-08 00:00,1.21091,1.21097,1.21054,1.21078,2556 +2020-12-08 00:15,1.21076,1.211,1.21073,1.21077,1052 +2020-12-08 00:30,1.21078,1.21096,1.21077,1.2109,1965 +2020-12-08 00:45,1.2109,1.21099,1.21041,1.21076,1843 +2020-12-08 01:00,1.21075,1.21099,1.21071,1.21082,2582 +2020-12-08 01:15,1.21082,1.21112,1.2107,1.21084,3733 +2020-12-08 01:30,1.21083,1.21105,1.21071,1.21098,5216 +2020-12-08 01:45,1.21097,1.21111,1.21063,1.21069,2762 +2020-12-08 02:00,1.21069,1.211,1.21051,1.21086,2272 +2020-12-08 02:15,1.21087,1.21094,1.21068,1.21075,1075 +2020-12-08 02:30,1.21075,1.21106,1.21071,1.21105,1796 +2020-12-08 02:45,1.21105,1.21132,1.21101,1.21115,1295 +2020-12-08 03:00,1.21117,1.21138,1.21105,1.21136,2403 +2020-12-08 03:15,1.21135,1.21137,1.2112,1.21129,1784 +2020-12-08 03:30,1.21128,1.21128,1.21106,1.21108,1648 +2020-12-08 03:45,1.21109,1.21152,1.21103,1.2114,1453 +2020-12-08 04:00,1.21141,1.21159,1.21138,1.21146,2007 +2020-12-08 04:15,1.21146,1.21147,1.2113,1.21136,2318 +2020-12-08 04:30,1.21136,1.21162,1.21136,1.21143,1855 +2020-12-08 04:45,1.21143,1.2115,1.21138,1.21144,1656 +2020-12-08 05:00,1.21143,1.21157,1.21142,1.21156,2048 +2020-12-08 05:15,1.21156,1.21158,1.21143,1.21152,997 +2020-12-08 05:30,1.21155,1.21183,1.21148,1.21178,1740 +2020-12-08 05:45,1.21179,1.21194,1.21172,1.21183,3335 +2020-12-08 06:00,1.21182,1.2123,1.21176,1.21203,4017 +2020-12-08 06:15,1.21201,1.21203,1.2117,1.21202,1920 +2020-12-08 06:30,1.21201,1.21202,1.21145,1.21151,2847 +2020-12-08 06:45,1.21151,1.21163,1.21137,1.21156,2345 +2020-12-08 07:00,1.21157,1.2116,1.2111,1.21122,3846 +2020-12-08 07:15,1.21123,1.21123,1.21091,1.21111,3487 +2020-12-08 07:30,1.21111,1.21117,1.21072,1.21116,4244 +2020-12-08 07:45,1.21116,1.21185,1.21103,1.21127,4386 +2020-12-08 08:00,1.2113,1.21141,1.20953,1.20979,9613 +2020-12-08 08:15,1.2098,1.21127,1.20965,1.21124,7865 +2020-12-08 08:30,1.21123,1.21245,1.21114,1.21243,6920 +2020-12-08 08:45,1.21245,1.2132,1.21209,1.21249,7386 +2020-12-08 09:00,1.21251,1.21318,1.21231,1.21312,8882 +2020-12-08 09:15,1.21311,1.21339,1.2125,1.21263,7580 +2020-12-08 09:30,1.21262,1.21281,1.21186,1.21229,6307 +2020-12-08 09:45,1.21229,1.21319,1.21225,1.21289,5301 +2020-12-08 10:00,1.21288,1.21329,1.21199,1.21199,6007 +2020-12-08 10:15,1.21198,1.21241,1.21151,1.2118,5416 +2020-12-08 10:30,1.2118,1.21219,1.21159,1.21193,4124 +2020-12-08 10:45,1.21192,1.21224,1.21136,1.21136,4069 +2020-12-08 11:00,1.21135,1.21202,1.21116,1.21178,5909 +2020-12-08 11:15,1.21176,1.21233,1.21156,1.21227,5035 +2020-12-08 11:30,1.21228,1.21228,1.21124,1.21147,4539 +2020-12-08 11:45,1.21147,1.21182,1.21072,1.21075,6159 +2020-12-08 12:00,1.21073,1.21204,1.21073,1.21203,6165 +2020-12-08 12:15,1.212,1.21239,1.21157,1.21232,5894 +2020-12-08 12:30,1.21232,1.21262,1.2118,1.21184,5690 +2020-12-08 12:45,1.21183,1.21187,1.21119,1.21146,5132 +2020-12-08 13:00,1.21145,1.21194,1.21136,1.21136,3745 +2020-12-08 13:15,1.21136,1.21304,1.21122,1.2127,9404 +2020-12-08 13:30,1.21272,1.21283,1.2115,1.21183,7186 +2020-12-08 13:45,1.21182,1.21232,1.21125,1.21181,5908 +2020-12-08 14:00,1.21182,1.21282,1.21174,1.21269,6728 +2020-12-08 14:15,1.21268,1.21297,1.21231,1.21256,6631 +2020-12-08 14:30,1.21256,1.21282,1.21199,1.21277,9233 +2020-12-08 14:45,1.21278,1.21336,1.21194,1.21241,9382 +2020-12-08 15:00,1.21244,1.21287,1.21172,1.2118,8173 +2020-12-08 15:15,1.21182,1.2119,1.21019,1.21048,6703 +2020-12-08 15:30,1.21049,1.21091,1.21,1.21044,6299 +2020-12-08 15:45,1.21045,1.21153,1.21024,1.21134,8729 +2020-12-08 16:00,1.21135,1.21157,1.21078,1.21124,5010 +2020-12-08 16:15,1.21123,1.21134,1.21092,1.21121,3008 +2020-12-08 16:30,1.21121,1.21125,1.21036,1.21093,3508 +2020-12-08 16:45,1.21092,1.21133,1.21082,1.21106,2670 +2020-12-08 17:00,1.21108,1.21128,1.21092,1.211,1966 +2020-12-08 17:15,1.211,1.21135,1.21081,1.21081,2541 +2020-12-08 17:30,1.2108,1.21123,1.21071,1.21121,2955 +2020-12-08 17:45,1.2112,1.21162,1.21105,1.21152,2751 +2020-12-08 18:00,1.21151,1.21172,1.21112,1.21137,2030 +2020-12-08 18:15,1.21137,1.21148,1.21106,1.21121,2472 +2020-12-08 18:30,1.21121,1.2114,1.21063,1.21066,1712 +2020-12-08 18:45,1.21066,1.21068,1.21012,1.21021,1318 +2020-12-08 19:00,1.21021,1.21053,1.2101,1.21041,2268 +2020-12-08 19:15,1.2104,1.21081,1.21037,1.2108,1885 +2020-12-08 19:30,1.2108,1.21081,1.21041,1.21043,1357 +2020-12-08 19:45,1.21044,1.2105,1.21015,1.21037,1377 +2020-12-08 20:00,1.21037,1.21041,1.21009,1.2103,1177 +2020-12-08 20:15,1.21029,1.21038,1.21002,1.21002,1355 +2020-12-08 20:30,1.21001,1.21033,1.21001,1.21026,1815 +2020-12-08 20:45,1.21026,1.21067,1.21022,1.21066,2033 +2020-12-08 21:00,1.21067,1.21076,1.21041,1.21068,1108 +2020-12-08 21:15,1.21069,1.21071,1.21046,1.21051,386 +2020-12-08 21:30,1.21052,1.21053,1.21031,1.21051,409 +2020-12-08 21:45,1.21053,1.21065,1.21022,1.21022,791 +2020-12-08 22:00,1.21022,1.21037,1.20998,1.21035,24 +2020-12-08 22:15,1.21035,1.21056,1.21015,1.21052,101 +2020-12-08 22:30,1.2105,1.21052,1.21013,1.21034,116 +2020-12-08 22:45,1.21035,1.21058,1.21034,1.21054,190 +2020-12-08 23:00,1.21057,1.21099,1.21043,1.21077,1195 +2020-12-08 23:15,1.21078,1.21086,1.21067,1.21071,1551 +2020-12-08 23:30,1.21072,1.21084,1.21054,1.21065,863 +2020-12-08 23:45,1.21064,1.21095,1.2106,1.21094,273 +2020-12-09 00:00,1.21095,1.21108,1.2107,1.21101,1229 +2020-12-09 00:15,1.211,1.21146,1.21094,1.21144,2073 +2020-12-09 00:30,1.21143,1.21145,1.2111,1.21133,2014 +2020-12-09 00:45,1.21132,1.21138,1.21113,1.21116,1618 +2020-12-09 01:00,1.21116,1.21125,1.21097,1.211,1461 +2020-12-09 01:15,1.211,1.2111,1.21078,1.21109,1347 +2020-12-09 01:30,1.21109,1.2112,1.21098,1.21109,1782 +2020-12-09 01:45,1.21109,1.21131,1.21108,1.21113,1172 +2020-12-09 02:00,1.21113,1.21154,1.21102,1.21151,1443 +2020-12-09 02:15,1.21151,1.21166,1.2114,1.21146,845 +2020-12-09 02:30,1.21145,1.21179,1.21141,1.21176,2199 +2020-12-09 02:45,1.21174,1.21197,1.21169,1.21196,1618 +2020-12-09 03:00,1.21198,1.21214,1.21174,1.21182,1791 +2020-12-09 03:15,1.21181,1.21213,1.21177,1.21191,1272 +2020-12-09 03:30,1.21189,1.21235,1.21189,1.21223,3325 +2020-12-09 03:45,1.21224,1.21226,1.21209,1.21211,1805 +2020-12-09 04:00,1.2121,1.21275,1.21209,1.21255,1655 +2020-12-09 04:15,1.21256,1.21293,1.21253,1.21264,1623 +2020-12-09 04:30,1.21264,1.21279,1.21247,1.21251,1556 +2020-12-09 04:45,1.21252,1.2129,1.2125,1.21288,1844 +2020-12-09 05:00,1.21287,1.2129,1.21259,1.21273,1086 +2020-12-09 05:15,1.21274,1.21279,1.21261,1.2127,1507 +2020-12-09 05:30,1.21271,1.21288,1.21257,1.21274,2313 +2020-12-09 05:45,1.21274,1.21311,1.21273,1.2131,2814 +2020-12-09 06:00,1.21309,1.214,1.21309,1.21369,1745 +2020-12-09 06:15,1.2137,1.21475,1.21347,1.2143,2744 +2020-12-09 06:30,1.21431,1.21453,1.21384,1.21389,1919 +2020-12-09 06:45,1.21388,1.21412,1.21375,1.21384,2425 +2020-12-09 07:00,1.21385,1.21415,1.2133,1.21356,3638 +2020-12-09 07:15,1.21355,1.21371,1.2132,1.21321,2957 +2020-12-09 07:30,1.21321,1.21333,1.2129,1.21318,2802 +2020-12-09 07:45,1.21318,1.2135,1.21268,1.21292,3290 +2020-12-09 08:00,1.21292,1.21346,1.21259,1.21334,5293 +2020-12-09 08:15,1.21333,1.21361,1.21257,1.21307,5458 +2020-12-09 08:30,1.21307,1.21325,1.21248,1.21295,4598 +2020-12-09 08:45,1.21293,1.21372,1.21273,1.21363,4371 +2020-12-09 09:00,1.21364,1.21364,1.21231,1.21241,4485 +2020-12-09 09:15,1.21241,1.21272,1.2122,1.21229,3411 +2020-12-09 09:30,1.21229,1.21272,1.21199,1.21251,2884 +2020-12-09 09:45,1.21248,1.21281,1.21209,1.21254,4259 +2020-12-09 10:00,1.21253,1.21277,1.21197,1.21241,5680 +2020-12-09 10:15,1.21242,1.21365,1.21221,1.21314,5663 +2020-12-09 10:30,1.21316,1.21327,1.21238,1.21257,4329 +2020-12-09 10:45,1.21256,1.21257,1.21189,1.21211,3409 +2020-12-09 11:00,1.21209,1.21287,1.21199,1.21271,3550 +2020-12-09 11:15,1.2127,1.2127,1.21191,1.21211,3318 +2020-12-09 11:30,1.21211,1.21228,1.21087,1.21092,4039 +2020-12-09 11:45,1.21094,1.21131,1.21078,1.21129,3904 +2020-12-09 12:00,1.21129,1.21188,1.21108,1.21145,3233 +2020-12-09 12:15,1.21145,1.21156,1.21014,1.21047,3962 +2020-12-09 12:30,1.21047,1.21091,1.2101,1.21055,5610 +2020-12-09 12:45,1.21054,1.21097,1.21024,1.21097,2087 +2020-12-09 13:00,1.21097,1.21097,1.21024,1.21081,2362 +2020-12-09 13:15,1.2108,1.21099,1.2106,1.21096,1929 +2020-12-09 13:30,1.21095,1.21149,1.21055,1.21142,2252 +2020-12-09 13:45,1.21143,1.21208,1.2111,1.21205,2300 +2020-12-09 14:00,1.21205,1.21237,1.21165,1.21223,2987 +2020-12-09 14:15,1.21223,1.21235,1.21124,1.21158,3650 +2020-12-09 14:30,1.21158,1.21191,1.2107,1.21098,4383 +2020-12-09 14:45,1.21099,1.21103,1.20958,1.2099,4876 +2020-12-09 15:00,1.2099,1.21041,1.20842,1.20909,5416 +2020-12-09 15:15,1.20909,1.20982,1.20872,1.2097,3778 +2020-12-09 15:30,1.20969,1.20972,1.20829,1.20835,5114 +2020-12-09 15:45,1.20834,1.20853,1.20776,1.2083,4665 +2020-12-09 16:00,1.2083,1.2083,1.20722,1.20772,3950 +2020-12-09 16:15,1.2077,1.20811,1.2075,1.20798,2858 +2020-12-09 16:30,1.20799,1.20811,1.20736,1.20764,3371 +2020-12-09 16:45,1.20763,1.20797,1.20732,1.20797,2646 +2020-12-09 17:00,1.20798,1.20849,1.20698,1.20715,3012 +2020-12-09 17:15,1.20714,1.2072,1.20625,1.20644,2538 +2020-12-09 17:30,1.20642,1.2065,1.20587,1.20641,2456 +2020-12-09 17:45,1.2064,1.20724,1.20621,1.20723,2222 +2020-12-09 18:00,1.20724,1.20734,1.20659,1.20669,2098 +2020-12-09 18:15,1.20666,1.207,1.20646,1.20693,2542 +2020-12-09 18:30,1.20695,1.20717,1.20658,1.20659,2214 +2020-12-09 18:45,1.2066,1.20662,1.20608,1.20617,1918 +2020-12-09 19:00,1.20617,1.20692,1.20615,1.20652,2416 +2020-12-09 19:15,1.20652,1.2068,1.20639,1.2068,990 +2020-12-09 19:30,1.20679,1.20718,1.20672,1.20718,1466 +2020-12-09 19:45,1.20718,1.20732,1.20681,1.20728,1332 +2020-12-09 20:00,1.20727,1.20751,1.20704,1.20724,1754 +2020-12-09 20:15,1.20723,1.20763,1.20718,1.20757,1076 +2020-12-09 20:30,1.20757,1.20817,1.20747,1.20816,1699 +2020-12-09 20:45,1.20816,1.20822,1.20791,1.20798,1943 +2020-12-09 21:00,1.20797,1.20832,1.20796,1.20827,700 +2020-12-09 21:15,1.20828,1.20837,1.20817,1.20829,335 +2020-12-09 21:30,1.20828,1.20833,1.20802,1.20806,446 +2020-12-09 21:45,1.20806,1.20832,1.20797,1.20799,672 +2020-12-09 22:00,1.20779,1.20828,1.20779,1.208,84 +2020-12-09 22:15,1.20801,1.20832,1.20748,1.20777,334 +2020-12-09 22:30,1.20779,1.20783,1.20751,1.20777,150 +2020-12-09 22:45,1.20778,1.2081,1.20777,1.208,152 +2020-12-09 23:00,1.208,1.20815,1.2077,1.20789,530 +2020-12-09 23:15,1.2079,1.2079,1.20755,1.20762,466 +2020-12-09 23:30,1.20761,1.20795,1.20761,1.20786,372 +2020-12-09 23:45,1.20786,1.20789,1.20765,1.20784,415 +2020-12-10 00:00,1.20784,1.20843,1.20784,1.20829,1637 +2020-12-10 00:15,1.20828,1.20842,1.20796,1.20831,1600 +2020-12-10 00:30,1.2083,1.2084,1.20806,1.20836,1096 +2020-12-10 00:45,1.20836,1.20838,1.20809,1.20819,1754 +2020-12-10 01:00,1.20815,1.2084,1.20806,1.20806,1930 +2020-12-10 01:15,1.20805,1.20821,1.20801,1.20817,1498 +2020-12-10 01:30,1.20815,1.2082,1.20795,1.20809,1335 +2020-12-10 01:45,1.20809,1.20822,1.20798,1.20816,806 +2020-12-10 02:00,1.20817,1.20835,1.20808,1.20822,1280 +2020-12-10 02:15,1.20822,1.20883,1.20821,1.20876,1501 +2020-12-10 02:30,1.20877,1.20903,1.20876,1.209,1133 +2020-12-10 02:45,1.209,1.20913,1.20874,1.20891,1541 +2020-12-10 03:00,1.20891,1.20902,1.20876,1.20902,1615 +2020-12-10 03:15,1.209,1.20902,1.20877,1.20896,1362 +2020-12-10 03:30,1.20895,1.20952,1.20895,1.20944,1440 +2020-12-10 03:45,1.20944,1.20954,1.20925,1.20936,812 +2020-12-10 04:00,1.20933,1.20974,1.20932,1.20974,957 +2020-12-10 04:15,1.20973,1.20996,1.20959,1.20981,1130 +2020-12-10 04:30,1.20981,1.20981,1.2096,1.20966,756 +2020-12-10 04:45,1.20968,1.21002,1.20964,1.20991,761 +2020-12-10 05:00,1.20991,1.20991,1.2096,1.20965,973 +2020-12-10 05:15,1.20966,1.20975,1.2096,1.20971,766 +2020-12-10 05:30,1.20971,1.20971,1.20944,1.20958,854 +2020-12-10 05:45,1.20959,1.20964,1.20929,1.2096,1185 +2020-12-10 06:00,1.20959,1.20963,1.20912,1.20922,1092 +2020-12-10 06:15,1.20922,1.20941,1.2091,1.20935,828 +2020-12-10 06:30,1.20936,1.20936,1.2087,1.20871,1370 +2020-12-10 06:45,1.2087,1.20899,1.20866,1.20877,1040 +2020-12-10 07:00,1.20876,1.20944,1.20856,1.20934,1814 +2020-12-10 07:15,1.20934,1.20982,1.20922,1.20947,1932 +2020-12-10 07:30,1.20948,1.20983,1.20919,1.20928,3008 +2020-12-10 07:45,1.20927,1.20962,1.20891,1.20901,2722 +2020-12-10 08:00,1.20902,1.20959,1.20859,1.20942,4349 +2020-12-10 08:15,1.20943,1.2095,1.20889,1.20935,3116 +2020-12-10 08:30,1.20936,1.20993,1.20896,1.20914,3058 +2020-12-10 08:45,1.20914,1.20942,1.20882,1.20906,3387 +2020-12-10 09:00,1.20904,1.20905,1.20833,1.20868,2943 +2020-12-10 09:15,1.20867,1.21021,1.20859,1.20988,3503 +2020-12-10 09:30,1.2099,1.21084,1.2098,1.21061,3128 +2020-12-10 09:45,1.21062,1.21085,1.21026,1.21062,2789 +2020-12-10 10:00,1.21062,1.21085,1.21029,1.21081,2545 +2020-12-10 10:15,1.21082,1.21083,1.21029,1.2104,2330 +2020-12-10 10:30,1.21041,1.21068,1.20993,1.21,2107 +2020-12-10 10:45,1.21001,1.21031,1.20968,1.2097,1958 +2020-12-10 11:00,1.20969,1.2099,1.20943,1.20944,2156 +2020-12-10 11:15,1.20943,1.20967,1.2091,1.2091,2182 +2020-12-10 11:30,1.20909,1.20936,1.20874,1.20875,2046 +2020-12-10 11:45,1.20874,1.20916,1.20849,1.20895,2290 +2020-12-10 12:00,1.20896,1.20909,1.20812,1.20849,2638 +2020-12-10 12:15,1.20848,1.20864,1.20811,1.20844,2522 +2020-12-10 12:30,1.20843,1.20937,1.20817,1.20901,2396 +2020-12-10 12:45,1.20902,1.21182,1.20882,1.21111,10411 +2020-12-10 13:00,1.2111,1.21261,1.21106,1.21146,7503 +2020-12-10 13:15,1.21144,1.21154,1.21033,1.21098,4084 +2020-12-10 13:30,1.21098,1.21347,1.21097,1.21312,6204 +2020-12-10 13:45,1.21313,1.21355,1.2119,1.21256,6944 +2020-12-10 14:00,1.21257,1.21301,1.20965,1.21077,9163 +2020-12-10 14:15,1.21078,1.21123,1.21004,1.21073,5292 +2020-12-10 14:30,1.21075,1.21327,1.21074,1.21308,7714 +2020-12-10 14:45,1.21306,1.21548,1.21306,1.21523,7127 +2020-12-10 15:00,1.21522,1.21588,1.21418,1.21422,5914 +2020-12-10 15:15,1.21423,1.21438,1.21283,1.21316,5148 +2020-12-10 15:30,1.21317,1.21346,1.21209,1.21336,6166 +2020-12-10 15:45,1.21336,1.21397,1.21253,1.21325,6724 +2020-12-10 16:00,1.21328,1.21346,1.21136,1.21144,5509 +2020-12-10 16:15,1.21145,1.21192,1.21131,1.21187,3767 +2020-12-10 16:30,1.21191,1.21198,1.21106,1.21167,3455 +2020-12-10 16:45,1.21167,1.21213,1.21136,1.21167,3125 +2020-12-10 17:00,1.21168,1.21272,1.21166,1.21256,2823 +2020-12-10 17:15,1.21258,1.21267,1.21211,1.21233,2580 +2020-12-10 17:30,1.21234,1.21255,1.21198,1.21217,2489 +2020-12-10 17:45,1.21218,1.21251,1.21174,1.212,2982 +2020-12-10 18:00,1.21201,1.21208,1.21132,1.21208,3913 +2020-12-10 18:15,1.21207,1.21273,1.21204,1.21231,1707 +2020-12-10 18:30,1.2123,1.21278,1.2123,1.21272,1233 +2020-12-10 18:45,1.21273,1.21287,1.21226,1.21252,1202 +2020-12-10 19:00,1.21252,1.21274,1.21227,1.21246,2513 +2020-12-10 19:15,1.21245,1.2125,1.21203,1.2125,1640 +2020-12-10 19:30,1.21247,1.21347,1.21245,1.21331,1423 +2020-12-10 19:45,1.21331,1.21362,1.21318,1.21336,1300 +2020-12-10 20:00,1.21338,1.21374,1.21321,1.21373,1283 +2020-12-10 20:15,1.21375,1.21426,1.21375,1.21416,1448 +2020-12-10 20:30,1.21416,1.21441,1.21394,1.21417,1446 +2020-12-10 20:45,1.21418,1.21447,1.21412,1.21427,1425 +2020-12-10 21:00,1.21427,1.21427,1.21348,1.21373,1042 +2020-12-10 21:15,1.21374,1.21409,1.21362,1.21408,452 +2020-12-10 21:30,1.2141,1.21426,1.21403,1.21424,350 +2020-12-10 21:45,1.21424,1.21434,1.21387,1.21398,1356 +2020-12-10 22:00,1.2136,1.21403,1.21342,1.21395,95 +2020-12-10 22:15,1.21397,1.21403,1.21385,1.21395,14 +2020-12-10 22:30,1.21391,1.21406,1.21387,1.21402,34 +2020-12-10 22:45,1.21402,1.21408,1.21393,1.21408,259 +2020-12-10 23:00,1.21407,1.21426,1.21407,1.21426,472 +2020-12-10 23:15,1.21426,1.21438,1.21413,1.21428,342 +2020-12-10 23:30,1.21428,1.21436,1.21406,1.21409,398 +2020-12-10 23:45,1.21408,1.2144,1.21404,1.21433,581 +2020-12-11 00:00,1.21434,1.21467,1.21427,1.21457,1658 +2020-12-11 00:15,1.21457,1.21463,1.21426,1.21432,1092 +2020-12-11 00:30,1.21433,1.21434,1.21412,1.21429,790 +2020-12-11 00:45,1.21429,1.21452,1.21402,1.21447,1562 +2020-12-11 01:00,1.21446,1.21548,1.21446,1.21517,2275 +2020-12-11 01:15,1.21517,1.21597,1.21513,1.21553,1998 +2020-12-11 01:30,1.21554,1.21585,1.21552,1.21584,1446 +2020-12-11 01:45,1.21584,1.216,1.21547,1.21556,1381 +2020-12-11 02:00,1.21556,1.21557,1.2151,1.21531,1454 +2020-12-11 02:15,1.21532,1.21552,1.21517,1.21548,906 +2020-12-11 02:30,1.2155,1.2155,1.2151,1.21526,1811 +2020-12-11 02:45,1.21527,1.21588,1.21522,1.21573,1058 +2020-12-11 03:00,1.21573,1.2158,1.21537,1.21538,1335 +2020-12-11 03:15,1.21541,1.21589,1.21541,1.21589,1313 +2020-12-11 03:30,1.21587,1.21595,1.21558,1.21591,883 +2020-12-11 03:45,1.21591,1.21594,1.21565,1.21578,628 +2020-12-11 04:00,1.21578,1.216,1.21574,1.21578,687 +2020-12-11 04:15,1.21579,1.21591,1.21574,1.21588,742 +2020-12-11 04:30,1.21587,1.21596,1.21576,1.21583,711 +2020-12-11 04:45,1.21582,1.21584,1.21551,1.21553,953 +2020-12-11 05:00,1.21553,1.21578,1.2154,1.21548,956 +2020-12-11 05:15,1.21548,1.21561,1.21536,1.21542,778 +2020-12-11 05:30,1.21542,1.21548,1.21535,1.21548,678 +2020-12-11 05:45,1.21547,1.21576,1.21547,1.21553,901 +2020-12-11 06:00,1.21553,1.21584,1.21553,1.21571,1005 +2020-12-11 06:15,1.2157,1.21612,1.21548,1.21608,1274 +2020-12-11 06:30,1.21609,1.21629,1.2158,1.21592,1262 +2020-12-11 06:45,1.21592,1.21604,1.21565,1.21566,804 +2020-12-11 07:00,1.21567,1.21586,1.21548,1.21585,1879 +2020-12-11 07:15,1.21586,1.21594,1.21526,1.21533,1805 +2020-12-11 07:30,1.21532,1.21542,1.21343,1.21349,3228 +2020-12-11 07:45,1.21348,1.21357,1.21257,1.21307,3042 +2020-12-11 08:00,1.21306,1.21352,1.21279,1.21285,3969 +2020-12-11 08:15,1.21284,1.21287,1.21141,1.21197,4033 +2020-12-11 08:30,1.21198,1.21314,1.21183,1.21305,4449 +2020-12-11 08:45,1.21304,1.21304,1.21203,1.21257,4143 +2020-12-11 09:00,1.21256,1.21334,1.21249,1.21278,3259 +2020-12-11 09:15,1.21277,1.21339,1.21246,1.21289,2924 +2020-12-11 09:30,1.21292,1.21317,1.21277,1.21302,2735 +2020-12-11 09:45,1.21301,1.21315,1.21124,1.21176,3543 +2020-12-11 10:00,1.21175,1.21294,1.21163,1.21278,3828 +2020-12-11 10:15,1.21277,1.21357,1.21231,1.21322,3539 +2020-12-11 10:30,1.21321,1.21376,1.21281,1.21291,3591 +2020-12-11 10:45,1.21289,1.21291,1.21185,1.21192,2964 +2020-12-11 11:00,1.21191,1.21255,1.21163,1.21198,2867 +2020-12-11 11:15,1.21198,1.21198,1.21136,1.21164,3446 +2020-12-11 11:30,1.21164,1.21197,1.21102,1.21138,3179 +2020-12-11 11:45,1.2114,1.21231,1.21138,1.21218,2937 +2020-12-11 12:00,1.21218,1.21225,1.21139,1.21194,2523 +2020-12-11 12:15,1.21193,1.21241,1.21191,1.21226,2124 +2020-12-11 12:30,1.21226,1.21292,1.21212,1.21252,3275 +2020-12-11 12:45,1.21253,1.21301,1.21251,1.21263,2929 +2020-12-11 13:00,1.21263,1.21291,1.2122,1.21269,4261 +2020-12-11 13:15,1.21267,1.21302,1.21179,1.21187,3213 +2020-12-11 13:30,1.21191,1.21269,1.21177,1.21244,3795 +2020-12-11 13:45,1.21244,1.21296,1.21139,1.21155,3623 +2020-12-11 14:00,1.21155,1.21215,1.21138,1.21214,3354 +2020-12-11 14:15,1.21212,1.21333,1.21212,1.21229,4291 +2020-12-11 14:30,1.21228,1.21256,1.21123,1.21128,4078 +2020-12-11 14:45,1.21128,1.21216,1.2111,1.2117,4223 +2020-12-11 15:00,1.2117,1.21277,1.21169,1.21266,4273 +2020-12-11 15:15,1.21267,1.21275,1.21188,1.21264,4036 +2020-12-11 15:30,1.21264,1.21291,1.21152,1.21207,4132 +2020-12-11 15:45,1.21208,1.21221,1.21053,1.21067,4619 +2020-12-11 16:00,1.21069,1.21135,1.2106,1.21119,3397 +2020-12-11 16:15,1.2112,1.2115,1.21096,1.21126,2187 +2020-12-11 16:30,1.21126,1.21136,1.21084,1.21126,2019 +2020-12-11 16:45,1.21127,1.21156,1.21094,1.21123,2353 +2020-12-11 17:00,1.21122,1.21133,1.2108,1.21123,1895 +2020-12-11 17:15,1.21121,1.21157,1.21115,1.21149,1429 +2020-12-11 17:30,1.21148,1.21158,1.21099,1.21101,1207 +2020-12-11 17:45,1.21101,1.21178,1.21098,1.21165,1272 +2020-12-11 18:00,1.21165,1.2117,1.21141,1.21146,935 +2020-12-11 18:15,1.21145,1.2116,1.21124,1.21135,798 +2020-12-11 18:30,1.21134,1.21163,1.21119,1.21144,783 +2020-12-11 18:45,1.21141,1.21162,1.2111,1.21161,829 +2020-12-11 19:00,1.21161,1.21166,1.21127,1.21155,761 +2020-12-11 19:15,1.21157,1.21188,1.21148,1.21188,936 +2020-12-11 19:30,1.21186,1.21202,1.21161,1.21172,1271 +2020-12-11 19:45,1.21172,1.21185,1.21124,1.21131,1330 +2020-12-11 20:00,1.2113,1.21172,1.2113,1.21147,937 +2020-12-11 20:15,1.21148,1.21168,1.21136,1.21168,656 +2020-12-11 20:30,1.2117,1.21184,1.21131,1.21136,924 +2020-12-11 20:45,1.21135,1.21172,1.21126,1.21172,1080 +2020-12-11 21:00,1.21175,1.21176,1.21128,1.21146,879 +2020-12-11 21:15,1.21145,1.21151,1.21135,1.21147,292 +2020-12-11 21:30,1.21145,1.21153,1.21142,1.21145,389 +2020-12-11 21:45,1.21148,1.21159,1.21074,1.21086,7912 +2020-12-13 22:00,1.21367,1.21404,1.21327,1.21382,1043 +2020-12-13 22:15,1.21381,1.21435,1.21348,1.21392,695 +2020-12-13 22:30,1.21376,1.21392,1.2133,1.21351,277 +2020-12-13 22:45,1.21351,1.21367,1.21332,1.21332,251 +2020-12-13 23:00,1.21333,1.21394,1.21324,1.21377,945 +2020-12-13 23:15,1.21378,1.2138,1.21342,1.21344,634 +2020-12-13 23:30,1.21343,1.21359,1.2133,1.21338,757 +2020-12-13 23:45,1.21338,1.21344,1.21329,1.21331,446 +2020-12-14 00:00,1.21331,1.21334,1.21258,1.21299,1372 +2020-12-14 00:15,1.21299,1.21306,1.21253,1.21263,1171 +2020-12-14 00:30,1.21267,1.21295,1.21244,1.21247,1113 +2020-12-14 00:45,1.21248,1.21295,1.21155,1.21209,3032 +2020-12-14 01:00,1.21208,1.21221,1.21186,1.21199,1992 +2020-12-14 01:15,1.21199,1.21242,1.21199,1.21234,894 +2020-12-14 01:30,1.21234,1.21279,1.21228,1.21279,1178 +2020-12-14 01:45,1.21278,1.21315,1.21265,1.21289,1040 +2020-12-14 02:00,1.2129,1.2133,1.21283,1.21305,1359 +2020-12-14 02:15,1.21304,1.21327,1.21301,1.21324,928 +2020-12-14 02:30,1.21323,1.21325,1.21291,1.21306,1089 +2020-12-14 02:45,1.21308,1.21332,1.21307,1.21318,1012 +2020-12-14 03:00,1.21317,1.21334,1.21305,1.21321,972 +2020-12-14 03:15,1.21322,1.21336,1.21312,1.21326,790 +2020-12-14 03:30,1.21327,1.21328,1.21306,1.2132,544 +2020-12-14 03:45,1.21319,1.21337,1.21319,1.21324,717 +2020-12-14 04:00,1.21324,1.21336,1.21308,1.21314,646 +2020-12-14 04:15,1.21314,1.21321,1.21303,1.21313,479 +2020-12-14 04:30,1.21312,1.21327,1.21308,1.21319,577 +2020-12-14 04:45,1.21318,1.21331,1.21311,1.2133,626 +2020-12-14 05:00,1.21331,1.21332,1.21309,1.21322,825 +2020-12-14 05:15,1.21322,1.21333,1.2132,1.21329,607 +2020-12-14 05:30,1.21328,1.21382,1.21326,1.21374,1112 +2020-12-14 05:45,1.21374,1.21416,1.21374,1.21405,1580 +2020-12-14 06:00,1.21405,1.21435,1.2139,1.21398,1498 +2020-12-14 06:15,1.21399,1.21437,1.21399,1.21418,1052 +2020-12-14 06:30,1.21418,1.21432,1.21403,1.21403,1137 +2020-12-14 06:45,1.21403,1.21439,1.21393,1.21433,1393 +2020-12-14 07:00,1.21433,1.21435,1.21383,1.21406,1542 +2020-12-14 07:15,1.21404,1.21483,1.21404,1.21465,2118 +2020-12-14 07:30,1.21466,1.21525,1.21452,1.21525,2378 +2020-12-14 07:45,1.21526,1.21553,1.2149,1.21532,2834 +2020-12-14 08:00,1.21531,1.21564,1.21436,1.21539,4533 +2020-12-14 08:15,1.2154,1.21549,1.2147,1.21516,2693 +2020-12-14 08:30,1.21517,1.21534,1.21445,1.21465,3293 +2020-12-14 08:45,1.21466,1.21472,1.21427,1.21437,2222 +2020-12-14 09:00,1.21436,1.21458,1.21386,1.21413,2298 +2020-12-14 09:15,1.21413,1.21525,1.21412,1.2152,2435 +2020-12-14 09:30,1.2152,1.21602,1.21511,1.21591,2816 +2020-12-14 09:45,1.21592,1.21594,1.21522,1.21577,1937 +2020-12-14 10:00,1.21575,1.21597,1.21526,1.21597,2639 +2020-12-14 10:15,1.21597,1.21597,1.2152,1.21537,2504 +2020-12-14 10:30,1.21538,1.21566,1.21491,1.215,2660 +2020-12-14 10:45,1.21501,1.21523,1.21477,1.21505,1817 +2020-12-14 11:00,1.21505,1.21605,1.21499,1.2154,1983 +2020-12-14 11:15,1.21541,1.21595,1.21532,1.21591,1924 +2020-12-14 11:30,1.21592,1.21596,1.21505,1.21528,2532 +2020-12-14 11:45,1.21528,1.21587,1.21502,1.21551,2406 +2020-12-14 12:00,1.21551,1.21595,1.21524,1.21554,2078 +2020-12-14 12:15,1.21556,1.21592,1.21544,1.21574,1790 +2020-12-14 12:30,1.21576,1.21706,1.2157,1.21647,3396 +2020-12-14 12:45,1.21646,1.21647,1.21554,1.21574,2720 +2020-12-14 13:00,1.21576,1.21637,1.21565,1.21619,2890 +2020-12-14 13:15,1.21619,1.21658,1.21595,1.2161,3158 +2020-12-14 13:30,1.21609,1.21639,1.2157,1.21595,1861 +2020-12-14 13:45,1.21599,1.21767,1.21591,1.21713,3048 +2020-12-14 14:00,1.21712,1.21712,1.21625,1.21647,3692 +2020-12-14 14:15,1.21648,1.21659,1.21557,1.21568,2824 +2020-12-14 14:30,1.21569,1.21685,1.21546,1.21638,3824 +2020-12-14 14:45,1.21638,1.21665,1.21566,1.21642,3605 +2020-12-14 15:00,1.21642,1.2166,1.21367,1.21392,5431 +2020-12-14 15:15,1.21392,1.21392,1.21287,1.21365,5411 +2020-12-14 15:30,1.21363,1.21385,1.21275,1.21348,4221 +2020-12-14 15:45,1.21346,1.21349,1.21231,1.21247,5074 +2020-12-14 16:00,1.21248,1.21351,1.21229,1.2135,2463 +2020-12-14 16:15,1.21349,1.21398,1.21334,1.21358,1669 +2020-12-14 16:30,1.21359,1.21435,1.21359,1.21413,1717 +2020-12-14 16:45,1.21413,1.21473,1.21411,1.21443,1112 +2020-12-14 17:00,1.21444,1.21559,1.2143,1.21544,1650 +2020-12-14 17:15,1.21544,1.21589,1.21502,1.21589,1392 +2020-12-14 17:30,1.21588,1.21603,1.21549,1.21557,1202 +2020-12-14 17:45,1.21556,1.21575,1.21537,1.21575,1015 +2020-12-14 18:00,1.21575,1.21606,1.21538,1.2156,1517 +2020-12-14 18:15,1.2156,1.21567,1.21526,1.21527,694 +2020-12-14 18:30,1.21528,1.21531,1.21495,1.21496,754 +2020-12-14 18:45,1.21495,1.21516,1.21471,1.21504,846 +2020-12-14 19:00,1.21504,1.21525,1.21479,1.2148,907 +2020-12-14 19:15,1.21479,1.21512,1.21467,1.21497,681 +2020-12-14 19:30,1.21497,1.21497,1.21463,1.21482,586 +2020-12-14 19:45,1.21485,1.21496,1.21449,1.21468,851 +2020-12-14 20:00,1.21468,1.21471,1.21441,1.21442,627 +2020-12-14 20:15,1.21442,1.21475,1.21439,1.21452,502 +2020-12-14 20:30,1.21451,1.21452,1.2139,1.21392,740 +2020-12-14 20:45,1.21392,1.21487,1.21392,1.21472,519 +2020-12-14 21:00,1.21473,1.21517,1.21465,1.21472,740 +2020-12-14 21:15,1.21474,1.21514,1.21465,1.21514,380 +2020-12-14 21:30,1.21513,1.21513,1.21457,1.21463,394 +2020-12-14 21:45,1.21464,1.2147,1.21413,1.21432,642 +2020-12-14 22:00,1.21432,1.21454,1.21431,1.21454,37 +2020-12-14 22:15,1.21453,1.21466,1.21441,1.21463,62 +2020-12-14 22:30,1.21464,1.21465,1.21445,1.21445,49 +2020-12-14 22:45,1.21445,1.21458,1.21442,1.21457,50 +2020-12-14 23:00,1.21454,1.21457,1.21437,1.21438,355 +2020-12-14 23:15,1.21438,1.21467,1.21433,1.21445,442 +2020-12-14 23:30,1.21445,1.21489,1.21445,1.21467,454 +2020-12-14 23:45,1.21468,1.21488,1.21467,1.21486,279 +2020-12-15 00:00,1.21485,1.2152,1.21482,1.21483,581 +2020-12-15 00:15,1.21483,1.21495,1.21472,1.21494,363 +2020-12-15 00:30,1.21494,1.21546,1.21493,1.21524,888 +2020-12-15 00:45,1.21526,1.21593,1.21519,1.21571,1593 +2020-12-15 01:00,1.21571,1.21605,1.21569,1.21577,1650 +2020-12-15 01:15,1.21578,1.21599,1.2156,1.21599,835 +2020-12-15 01:30,1.21599,1.216,1.21551,1.21565,1401 +2020-12-15 01:45,1.21564,1.216,1.21519,1.21598,1650 +2020-12-15 02:00,1.21598,1.21629,1.21583,1.21611,1176 +2020-12-15 02:15,1.21612,1.21622,1.21571,1.21571,1297 +2020-12-15 02:30,1.2157,1.21596,1.21567,1.21573,865 +2020-12-15 02:45,1.21575,1.21624,1.21575,1.21588,1008 +2020-12-15 03:00,1.21589,1.21602,1.21573,1.21581,969 +2020-12-15 03:15,1.2158,1.2158,1.21543,1.21551,1109 +2020-12-15 03:30,1.21548,1.21562,1.21507,1.21523,1282 +2020-12-15 03:45,1.21525,1.21533,1.21491,1.21518,1215 +2020-12-15 04:00,1.21519,1.2153,1.215,1.21513,534 +2020-12-15 04:15,1.21513,1.21513,1.21478,1.21479,610 +2020-12-15 04:30,1.21478,1.21492,1.21472,1.21484,461 +2020-12-15 04:45,1.21483,1.21487,1.21457,1.21465,726 +2020-12-15 05:00,1.21466,1.21496,1.21466,1.21493,850 +2020-12-15 05:15,1.21491,1.21502,1.2145,1.21462,1077 +2020-12-15 05:30,1.21462,1.21504,1.21462,1.21491,820 +2020-12-15 05:45,1.21492,1.21548,1.21484,1.21547,1183 +2020-12-15 06:00,1.21545,1.21546,1.21509,1.21521,790 +2020-12-15 06:15,1.21522,1.21526,1.21477,1.21482,738 +2020-12-15 06:30,1.21481,1.21502,1.21477,1.21486,736 +2020-12-15 06:45,1.21486,1.2152,1.21476,1.21483,813 +2020-12-15 07:00,1.21483,1.21513,1.21466,1.21476,1669 +2020-12-15 07:15,1.21476,1.21517,1.2141,1.21426,2022 +2020-12-15 07:30,1.21426,1.21447,1.21385,1.21412,1690 +2020-12-15 07:45,1.21413,1.21436,1.21344,1.21369,1599 +2020-12-15 08:00,1.21368,1.21434,1.2133,1.21407,2434 +2020-12-15 08:15,1.21404,1.21428,1.21359,1.21418,2204 +2020-12-15 08:30,1.21416,1.21421,1.21315,1.21362,2834 +2020-12-15 08:45,1.21362,1.21442,1.21331,1.21431,2662 +2020-12-15 09:00,1.2143,1.21484,1.21413,1.21436,2322 +2020-12-15 09:15,1.21437,1.21621,1.21433,1.2159,2862 +2020-12-15 09:30,1.21588,1.21615,1.21553,1.2158,2502 +2020-12-15 09:45,1.21581,1.21598,1.21567,1.21577,1718 +2020-12-15 10:00,1.21579,1.21604,1.21549,1.21572,1840 +2020-12-15 10:15,1.21571,1.21619,1.2155,1.21614,2330 +2020-12-15 10:30,1.21614,1.2162,1.21572,1.21586,2064 +2020-12-15 10:45,1.21585,1.21622,1.21569,1.21586,1643 +2020-12-15 11:00,1.21585,1.21623,1.21568,1.21596,2402 +2020-12-15 11:15,1.21598,1.21662,1.21575,1.21587,1797 +2020-12-15 11:30,1.21587,1.21598,1.21486,1.21552,2148 +2020-12-15 11:45,1.21553,1.21611,1.21532,1.21601,2017 +2020-12-15 12:00,1.21601,1.21606,1.21561,1.21587,1595 +2020-12-15 12:15,1.21587,1.21612,1.21554,1.2159,1520 +2020-12-15 12:30,1.21592,1.21624,1.21581,1.21595,1808 +2020-12-15 12:45,1.21597,1.21603,1.2121,1.21249,4426 +2020-12-15 13:00,1.2125,1.21406,1.21249,1.214,3296 +2020-12-15 13:15,1.214,1.21409,1.21297,1.21365,3290 +2020-12-15 13:30,1.2137,1.21497,1.21368,1.21415,2928 +2020-12-15 13:45,1.21415,1.21431,1.21356,1.21394,2764 +2020-12-15 14:00,1.21394,1.21462,1.21379,1.21451,2604 +2020-12-15 14:15,1.21451,1.21536,1.2144,1.21525,2842 +2020-12-15 14:30,1.21527,1.21574,1.21481,1.2151,3832 +2020-12-15 14:45,1.2151,1.21585,1.21422,1.21435,3801 +2020-12-15 15:00,1.21435,1.21554,1.21428,1.21541,2198 +2020-12-15 15:15,1.21538,1.21542,1.21468,1.2152,2196 +2020-12-15 15:30,1.21521,1.21582,1.21475,1.21545,2294 +2020-12-15 15:45,1.21546,1.21604,1.21494,1.21529,2913 +2020-12-15 16:00,1.21531,1.21603,1.21495,1.21562,3196 +2020-12-15 16:15,1.21561,1.21589,1.21552,1.21558,1707 +2020-12-15 16:30,1.21556,1.21567,1.21491,1.21562,2156 +2020-12-15 16:45,1.21562,1.21577,1.21542,1.21574,892 +2020-12-15 17:00,1.21575,1.21585,1.21526,1.2153,1146 +2020-12-15 17:15,1.2153,1.21535,1.21479,1.2148,928 +2020-12-15 17:30,1.2148,1.21531,1.21474,1.21522,571 +2020-12-15 17:45,1.21522,1.21612,1.21522,1.21609,1632 +2020-12-15 18:00,1.21608,1.2168,1.2158,1.21635,1603 +2020-12-15 18:15,1.21636,1.21689,1.21601,1.21609,1366 +2020-12-15 18:30,1.2161,1.21624,1.21572,1.21581,1088 +2020-12-15 18:45,1.2158,1.21586,1.21513,1.21515,965 +2020-12-15 19:00,1.21512,1.2153,1.21489,1.21527,1238 +2020-12-15 19:15,1.21529,1.21571,1.21502,1.21571,1416 +2020-12-15 19:30,1.21572,1.21575,1.21512,1.21572,831 +2020-12-15 19:45,1.21573,1.21604,1.21555,1.21568,1096 +2020-12-15 20:00,1.21566,1.2157,1.21541,1.21548,969 +2020-12-15 20:15,1.21549,1.21571,1.21539,1.21561,721 +2020-12-15 20:30,1.21561,1.21595,1.21556,1.21586,752 +2020-12-15 20:45,1.21583,1.21605,1.21562,1.21604,664 +2020-12-15 21:00,1.21605,1.21626,1.21586,1.216,747 +2020-12-15 21:15,1.216,1.21617,1.21585,1.21592,328 +2020-12-15 21:30,1.21592,1.21608,1.21569,1.21574,334 +2020-12-15 21:45,1.21575,1.21575,1.21505,1.21505,1007 +2020-12-15 22:00,1.21489,1.21546,1.21489,1.21539,81 +2020-12-15 22:15,1.21538,1.21539,1.21523,1.21523,33 +2020-12-15 22:30,1.21523,1.21534,1.21503,1.2151,148 +2020-12-15 22:45,1.21509,1.21517,1.21501,1.21517,75 +2020-12-15 23:00,1.21512,1.21545,1.21512,1.21538,506 +2020-12-15 23:15,1.21538,1.21543,1.21517,1.21519,368 +2020-12-15 23:30,1.21518,1.21549,1.21511,1.21542,183 +2020-12-15 23:45,1.21543,1.21544,1.2153,1.21543,294 +2020-12-16 00:00,1.21543,1.21543,1.21502,1.21523,559 +2020-12-16 00:15,1.21523,1.21523,1.21504,1.21513,265 +2020-12-16 00:30,1.21512,1.21517,1.21496,1.21511,577 +2020-12-16 00:45,1.21511,1.21511,1.21451,1.215,1256 +2020-12-16 01:00,1.215,1.21528,1.21466,1.21486,714 +2020-12-16 01:15,1.21486,1.21532,1.21485,1.21519,557 +2020-12-16 01:30,1.2152,1.21552,1.21508,1.21523,589 +2020-12-16 01:45,1.21523,1.21533,1.21502,1.21509,648 +2020-12-16 02:00,1.21509,1.21547,1.21509,1.21531,632 +2020-12-16 02:15,1.21531,1.21543,1.21525,1.21529,507 +2020-12-16 02:30,1.21528,1.2155,1.21527,1.21545,512 +2020-12-16 02:45,1.21552,1.21574,1.21544,1.21561,661 +2020-12-16 03:00,1.21561,1.21581,1.21556,1.21572,607 +2020-12-16 03:15,1.21572,1.21614,1.21572,1.21609,551 +2020-12-16 03:30,1.21609,1.21629,1.21607,1.21624,544 +2020-12-16 03:45,1.21624,1.21637,1.21606,1.21615,786 +2020-12-16 04:00,1.21614,1.21629,1.21581,1.21599,792 +2020-12-16 04:15,1.21598,1.21627,1.21596,1.21617,364 +2020-12-16 04:30,1.21616,1.2162,1.21609,1.2162,326 +2020-12-16 04:45,1.2162,1.21649,1.2162,1.21647,481 +2020-12-16 05:00,1.21647,1.21651,1.21612,1.21623,782 +2020-12-16 05:15,1.21623,1.21635,1.21609,1.21623,540 +2020-12-16 05:30,1.21624,1.21643,1.21604,1.21605,703 +2020-12-16 05:45,1.21606,1.21626,1.21602,1.21622,668 +2020-12-16 06:00,1.21621,1.21626,1.21604,1.21614,754 +2020-12-16 06:15,1.21612,1.21612,1.21586,1.21596,750 +2020-12-16 06:30,1.21598,1.21621,1.21591,1.21597,957 +2020-12-16 06:45,1.21596,1.2163,1.2159,1.2163,686 +2020-12-16 07:00,1.2163,1.2172,1.21611,1.21701,2043 +2020-12-16 07:15,1.21702,1.2171,1.21656,1.21666,2015 +2020-12-16 07:30,1.21668,1.21695,1.21653,1.21664,1476 +2020-12-16 07:45,1.21664,1.21699,1.21533,1.21545,2506 +2020-12-16 08:00,1.21544,1.21649,1.21522,1.21642,3971 +2020-12-16 08:15,1.21646,1.21757,1.21625,1.21681,4891 +2020-12-16 08:30,1.21689,1.22063,1.21689,1.21983,6413 +2020-12-16 08:45,1.21982,1.22121,1.21972,1.22087,3362 +2020-12-16 09:00,1.22087,1.22096,1.21996,1.22037,3071 +2020-12-16 09:15,1.22036,1.22063,1.22006,1.22039,1888 +2020-12-16 09:30,1.22038,1.22053,1.2195,1.2195,2644 +2020-12-16 09:45,1.21951,1.22076,1.21936,1.22061,2232 +2020-12-16 10:00,1.22061,1.22061,1.21972,1.2198,2102 +2020-12-16 10:15,1.21981,1.2201,1.21952,1.22001,1590 +2020-12-16 10:30,1.21999,1.22049,1.21997,1.22039,2397 +2020-12-16 10:45,1.22038,1.22067,1.21961,1.21967,1773 +2020-12-16 11:00,1.21967,1.21967,1.21864,1.21921,2233 +2020-12-16 11:15,1.21922,1.21978,1.21909,1.21942,1903 +2020-12-16 11:30,1.21943,1.21989,1.21929,1.21965,1990 +2020-12-16 11:45,1.21963,1.22006,1.21941,1.21951,1837 +2020-12-16 12:00,1.21951,1.21984,1.21904,1.21913,2124 +2020-12-16 12:15,1.21911,1.21925,1.21875,1.21901,1774 +2020-12-16 12:30,1.219,1.21916,1.21863,1.21865,1513 +2020-12-16 12:45,1.21868,1.21949,1.21861,1.21944,1542 +2020-12-16 13:00,1.21944,1.21949,1.21849,1.21888,2250 +2020-12-16 13:15,1.21888,1.219,1.21851,1.21861,2683 +2020-12-16 13:30,1.21863,1.21901,1.21789,1.21891,3823 +2020-12-16 13:45,1.21892,1.21936,1.2185,1.21876,2660 +2020-12-16 14:00,1.21876,1.21924,1.21865,1.21924,2993 +2020-12-16 14:15,1.21925,1.21942,1.21867,1.21901,2693 +2020-12-16 14:30,1.219,1.22054,1.21894,1.22038,4031 +2020-12-16 14:45,1.22036,1.22063,1.2191,1.21959,3304 +2020-12-16 15:00,1.21959,1.2196,1.21868,1.21908,3236 +2020-12-16 15:15,1.21909,1.21983,1.21825,1.21832,3252 +2020-12-16 15:30,1.21829,1.21948,1.21822,1.21948,2783 +2020-12-16 15:45,1.21945,1.21948,1.21853,1.21873,3556 +2020-12-16 16:00,1.21872,1.21896,1.21802,1.21802,2250 +2020-12-16 16:15,1.21803,1.21828,1.21734,1.2175,2444 +2020-12-16 16:30,1.2175,1.2175,1.21672,1.21728,2045 +2020-12-16 16:45,1.21728,1.21814,1.21716,1.21746,1768 +2020-12-16 17:00,1.21746,1.21752,1.21699,1.21722,910 +2020-12-16 17:15,1.21723,1.21731,1.21674,1.21728,1519 +2020-12-16 17:30,1.21731,1.21767,1.21715,1.21739,899 +2020-12-16 17:45,1.21738,1.21742,1.21627,1.21688,1883 +2020-12-16 18:00,1.21686,1.21732,1.21672,1.2173,971 +2020-12-16 18:15,1.2173,1.21741,1.21711,1.2172,1041 +2020-12-16 18:30,1.21721,1.21752,1.21706,1.21724,788 +2020-12-16 18:45,1.21724,1.21755,1.21705,1.2171,1734 +2020-12-16 19:00,1.2172,1.21776,1.215,1.21541,7753 +2020-12-16 19:15,1.2154,1.2154,1.2125,1.21408,5388 +2020-12-16 19:30,1.21408,1.21667,1.2136,1.21609,5145 +2020-12-16 19:45,1.2161,1.21674,1.21585,1.21622,3826 +2020-12-16 20:00,1.21621,1.21766,1.2162,1.21704,3426 +2020-12-16 20:15,1.21703,1.21984,1.21691,1.21929,3571 +2020-12-16 20:30,1.21929,1.21986,1.21916,1.21978,2560 +2020-12-16 20:45,1.21978,1.21989,1.21835,1.21835,2296 +2020-12-16 21:00,1.21836,1.21866,1.21816,1.2185,1360 +2020-12-16 21:15,1.21851,1.21852,1.2181,1.21834,554 +2020-12-16 21:30,1.21834,1.21948,1.21824,1.21939,955 +2020-12-16 21:45,1.2194,1.22013,1.21938,1.21985,1806 +2020-12-16 22:00,1.21983,1.21992,1.21965,1.21977,84 +2020-12-16 22:15,1.21976,1.22017,1.21961,1.21989,318 +2020-12-16 22:30,1.21985,1.21994,1.21951,1.21964,197 +2020-12-16 22:45,1.21963,1.21982,1.21946,1.21973,188 +2020-12-16 23:00,1.21972,1.2198,1.2195,1.21952,382 +2020-12-16 23:15,1.21953,1.21959,1.21921,1.21949,287 +2020-12-16 23:30,1.21948,1.21954,1.21916,1.21921,166 +2020-12-16 23:45,1.21921,1.2197,1.21921,1.21961,199 +2020-12-17 00:00,1.21961,1.2197,1.21932,1.21939,926 +2020-12-17 00:15,1.21939,1.21947,1.21911,1.21928,691 +2020-12-17 00:30,1.21928,1.2197,1.21928,1.21948,1435 +2020-12-17 00:45,1.21948,1.21968,1.21898,1.21942,1793 +2020-12-17 01:00,1.21942,1.21959,1.21922,1.21948,1613 +2020-12-17 01:15,1.2195,1.22087,1.21949,1.22084,1638 +2020-12-17 01:30,1.22084,1.22085,1.22035,1.22044,1570 +2020-12-17 01:45,1.22044,1.22048,1.22014,1.22023,1774 +2020-12-17 02:00,1.22022,1.22044,1.2201,1.22034,1415 +2020-12-17 02:15,1.22037,1.22089,1.2202,1.22081,1098 +2020-12-17 02:30,1.22082,1.22094,1.22075,1.22085,971 +2020-12-17 02:45,1.22085,1.22131,1.22073,1.22119,981 +2020-12-17 03:00,1.22119,1.2212,1.22085,1.2209,976 +2020-12-17 03:15,1.22089,1.22111,1.22087,1.22101,1145 +2020-12-17 03:30,1.22101,1.22101,1.2208,1.22095,747 +2020-12-17 03:45,1.22094,1.22119,1.22094,1.22106,716 +2020-12-17 04:00,1.22105,1.22152,1.22101,1.22151,838 +2020-12-17 04:15,1.22151,1.22354,1.2215,1.22282,2480 +2020-12-17 04:30,1.22281,1.22294,1.22233,1.22235,1412 +2020-12-17 04:45,1.22235,1.22254,1.22221,1.2225,1449 +2020-12-17 05:00,1.22251,1.22288,1.22249,1.22269,1176 +2020-12-17 05:15,1.22266,1.22283,1.22247,1.22272,700 +2020-12-17 05:30,1.22273,1.22283,1.22249,1.22252,441 +2020-12-17 05:45,1.22252,1.22298,1.22248,1.22257,1224 +2020-12-17 06:00,1.22256,1.22292,1.22251,1.22274,1022 +2020-12-17 06:15,1.22275,1.2235,1.22271,1.22334,1064 +2020-12-17 06:30,1.22333,1.22333,1.22285,1.22286,997 +2020-12-17 06:45,1.22284,1.22345,1.22279,1.22306,1273 +2020-12-17 07:00,1.22306,1.2236,1.22293,1.22331,2885 +2020-12-17 07:15,1.22331,1.22338,1.22262,1.22296,2438 +2020-12-17 07:30,1.22296,1.22354,1.22279,1.22322,1912 +2020-12-17 07:45,1.22322,1.22385,1.22314,1.22331,2535 +2020-12-17 08:00,1.22331,1.22439,1.22318,1.22363,3679 +2020-12-17 08:15,1.22363,1.22389,1.22298,1.22367,3102 +2020-12-17 08:30,1.22366,1.22403,1.22327,1.22335,2717 +2020-12-17 08:45,1.22336,1.22403,1.22322,1.22348,2533 +2020-12-17 09:00,1.22347,1.224,1.22292,1.22304,3099 +2020-12-17 09:15,1.22303,1.22348,1.22251,1.2226,2410 +2020-12-17 09:30,1.22259,1.22314,1.22239,1.22293,2815 +2020-12-17 09:45,1.22293,1.22336,1.2227,1.22324,1900 +2020-12-17 10:00,1.22324,1.22337,1.22269,1.2229,2752 +2020-12-17 10:15,1.22291,1.22324,1.2227,1.22285,2234 +2020-12-17 10:30,1.22286,1.22313,1.22252,1.22254,2288 +2020-12-17 10:45,1.22255,1.22295,1.2225,1.22281,1519 +2020-12-17 11:00,1.22281,1.2234,1.22281,1.22299,1875 +2020-12-17 11:15,1.223,1.22387,1.22279,1.22384,2524 +2020-12-17 11:30,1.22384,1.22391,1.22339,1.22376,2308 +2020-12-17 11:45,1.22375,1.22388,1.22323,1.22377,2310 +2020-12-17 12:00,1.22379,1.22381,1.22334,1.2237,2642 +2020-12-17 12:15,1.2237,1.22396,1.2234,1.22351,2266 +2020-12-17 12:30,1.22353,1.22371,1.22326,1.22352,2791 +2020-12-17 12:45,1.22351,1.2249,1.22351,1.22481,2739 +2020-12-17 13:00,1.22481,1.22484,1.22409,1.22453,2931 +2020-12-17 13:15,1.22453,1.22562,1.2244,1.22549,3172 +2020-12-17 13:30,1.22551,1.22588,1.22467,1.225,3255 +2020-12-17 13:45,1.225,1.22504,1.22398,1.22417,3859 +2020-12-17 14:00,1.22418,1.22506,1.22399,1.22484,2669 +2020-12-17 14:15,1.22484,1.22523,1.2245,1.22473,2664 +2020-12-17 14:30,1.22473,1.22513,1.22414,1.22505,3117 +2020-12-17 14:45,1.22504,1.22559,1.22482,1.22506,2717 +2020-12-17 15:00,1.22508,1.22586,1.22487,1.22547,3675 +2020-12-17 15:15,1.22548,1.22558,1.22451,1.22502,2604 +2020-12-17 15:30,1.22502,1.2259,1.22476,1.22581,2917 +2020-12-17 15:45,1.22582,1.22613,1.22403,1.22451,3848 +2020-12-17 16:00,1.22452,1.22467,1.22391,1.22408,3153 +2020-12-17 16:15,1.22408,1.22473,1.22389,1.22462,2001 +2020-12-17 16:30,1.2246,1.22536,1.2244,1.22533,1993 +2020-12-17 16:45,1.22531,1.22602,1.22525,1.22586,2212 +2020-12-17 17:00,1.22584,1.22649,1.22563,1.22634,1763 +2020-12-17 17:15,1.22632,1.22661,1.22612,1.22628,2110 +2020-12-17 17:30,1.22627,1.22676,1.22606,1.22658,1587 +2020-12-17 17:45,1.2266,1.2266,1.22601,1.22602,1286 +2020-12-17 18:00,1.22606,1.22698,1.22606,1.22688,1508 +2020-12-17 18:15,1.22687,1.22688,1.22648,1.22685,1032 +2020-12-17 18:30,1.22685,1.22708,1.22659,1.2268,1268 +2020-12-17 18:45,1.22679,1.22679,1.22621,1.22673,1542 +2020-12-17 19:00,1.22671,1.22705,1.22669,1.22688,1050 +2020-12-17 19:15,1.22686,1.22725,1.22686,1.22698,904 +2020-12-17 19:30,1.22697,1.22699,1.22664,1.22697,1857 +2020-12-17 19:45,1.22698,1.22726,1.22619,1.22624,2212 +2020-12-17 20:00,1.22623,1.2267,1.22621,1.22644,1160 +2020-12-17 20:15,1.22643,1.22678,1.22642,1.22663,1165 +2020-12-17 20:30,1.22661,1.22663,1.22597,1.22602,1104 +2020-12-17 20:45,1.22602,1.22624,1.22583,1.22624,1204 +2020-12-17 21:00,1.2263,1.2265,1.2262,1.22633,840 +2020-12-17 21:15,1.22633,1.2269,1.22631,1.22679,407 +2020-12-17 21:30,1.22679,1.227,1.22668,1.22697,376 +2020-12-17 21:45,1.22698,1.22724,1.22656,1.22656,1807 +2020-12-17 22:00,1.22676,1.22684,1.22658,1.22667,174 +2020-12-17 22:15,1.22668,1.22669,1.22653,1.22656,185 +2020-12-17 22:30,1.22659,1.22718,1.22656,1.22691,271 +2020-12-17 22:45,1.2269,1.22696,1.22647,1.22678,192 +2020-12-17 23:00,1.22677,1.22683,1.2262,1.22644,723 +2020-12-17 23:15,1.22644,1.2266,1.22635,1.22635,254 +2020-12-17 23:30,1.22634,1.22647,1.22615,1.22634,531 +2020-12-17 23:45,1.22635,1.22645,1.22611,1.22614,485 +2020-12-18 00:00,1.22613,1.22641,1.22597,1.22638,1031 +2020-12-18 00:15,1.22638,1.22639,1.22579,1.22586,844 +2020-12-18 00:30,1.22585,1.22595,1.22527,1.22527,1268 +2020-12-18 00:45,1.22528,1.22559,1.22506,1.22547,1484 +2020-12-18 01:00,1.22547,1.22552,1.22519,1.22539,1298 +2020-12-18 01:15,1.22539,1.22567,1.22537,1.22559,781 +2020-12-18 01:30,1.2256,1.226,1.22558,1.22577,1404 +2020-12-18 01:45,1.22579,1.22597,1.22548,1.22563,1627 +2020-12-18 02:00,1.22563,1.22584,1.22547,1.22554,906 +2020-12-18 02:15,1.22555,1.22562,1.22529,1.22549,738 +2020-12-18 02:30,1.2255,1.22554,1.22467,1.22467,1259 +2020-12-18 02:45,1.22468,1.2249,1.22444,1.22462,1595 +2020-12-18 03:00,1.22463,1.22497,1.22463,1.22484,1273 +2020-12-18 03:15,1.22484,1.22499,1.22484,1.22494,1107 +2020-12-18 03:30,1.22495,1.22496,1.22467,1.22475,818 +2020-12-18 03:45,1.22473,1.22483,1.22464,1.22465,793 +2020-12-18 04:00,1.22463,1.22471,1.22442,1.22443,583 +2020-12-18 04:15,1.22444,1.22446,1.2242,1.22424,840 +2020-12-18 04:30,1.22425,1.22431,1.2241,1.22411,702 +2020-12-18 04:45,1.2241,1.22421,1.22384,1.22405,1079 +2020-12-18 05:00,1.22406,1.22432,1.22402,1.22402,784 +2020-12-18 05:15,1.22402,1.22431,1.22391,1.22406,1096 +2020-12-18 05:30,1.22406,1.22434,1.22401,1.22411,1080 +2020-12-18 05:45,1.22412,1.22441,1.22406,1.22431,1082 +2020-12-18 06:00,1.22432,1.22474,1.22427,1.22472,1219 +2020-12-18 06:15,1.2247,1.225,1.22466,1.22488,1425 +2020-12-18 06:30,1.22488,1.22542,1.22469,1.22536,1160 +2020-12-18 06:45,1.22534,1.22554,1.22519,1.2253,1159 +2020-12-18 07:00,1.22529,1.22543,1.22488,1.22514,1703 +2020-12-18 07:15,1.22514,1.2256,1.22493,1.22523,2371 +2020-12-18 07:30,1.22521,1.22551,1.22501,1.22528,1474 +2020-12-18 07:45,1.22529,1.22553,1.22474,1.22477,2073 +2020-12-18 08:00,1.22475,1.22558,1.22431,1.22558,2999 +2020-12-18 08:15,1.22558,1.22622,1.22508,1.22605,3125 +2020-12-18 08:30,1.22604,1.22628,1.22538,1.22586,3080 +2020-12-18 08:45,1.22586,1.22605,1.22535,1.22571,2662 +2020-12-18 09:00,1.22574,1.22623,1.22549,1.22592,3013 +2020-12-18 09:15,1.22591,1.22602,1.22536,1.22538,2416 +2020-12-18 09:30,1.22538,1.22543,1.22452,1.22543,3625 +2020-12-18 09:45,1.22543,1.22545,1.2247,1.22492,2807 +2020-12-18 10:00,1.22492,1.2251,1.22431,1.22464,3347 +2020-12-18 10:15,1.22464,1.22532,1.22446,1.22527,2012 +2020-12-18 10:30,1.22526,1.22568,1.22515,1.22564,1630 +2020-12-18 10:45,1.22565,1.22578,1.22532,1.22543,1557 +2020-12-18 11:00,1.22544,1.22561,1.22489,1.225,2597 +2020-12-18 11:15,1.22499,1.22543,1.22484,1.22522,1532 +2020-12-18 11:30,1.22526,1.22575,1.2252,1.22568,1649 +2020-12-18 11:45,1.22568,1.22603,1.22547,1.22559,2277 +2020-12-18 12:00,1.22557,1.22619,1.22527,1.22542,3043 +2020-12-18 12:15,1.22543,1.22594,1.22535,1.22594,1963 +2020-12-18 12:30,1.22593,1.22676,1.2259,1.22657,2550 +2020-12-18 12:45,1.22657,1.22687,1.22528,1.22544,3770 +2020-12-18 13:00,1.22548,1.22595,1.2251,1.22588,2990 +2020-12-18 13:15,1.22589,1.22605,1.22496,1.22545,2943 +2020-12-18 13:30,1.22546,1.22556,1.225,1.22517,2863 +2020-12-18 13:45,1.22516,1.22517,1.22456,1.22485,3379 +2020-12-18 14:00,1.22485,1.22534,1.22453,1.22504,2591 +2020-12-18 14:15,1.22503,1.22531,1.22446,1.22463,2435 +2020-12-18 14:30,1.22463,1.22521,1.22453,1.22486,3948 +2020-12-18 14:45,1.22485,1.22491,1.22279,1.22377,4900 +2020-12-18 15:00,1.22377,1.22471,1.22362,1.22447,3056 +2020-12-18 15:15,1.22447,1.22461,1.22331,1.22342,3029 +2020-12-18 15:30,1.22342,1.22392,1.2233,1.22364,3258 +2020-12-18 15:45,1.22365,1.22403,1.22264,1.22347,3589 +2020-12-18 16:00,1.22349,1.2236,1.22256,1.22286,3138 +2020-12-18 16:15,1.22285,1.22308,1.22255,1.22297,2814 +2020-12-18 16:30,1.22299,1.22342,1.22258,1.22333,2308 +2020-12-18 16:45,1.22334,1.22356,1.22315,1.22351,1731 +2020-12-18 17:00,1.22352,1.22369,1.2233,1.22361,1437 +2020-12-18 17:15,1.22362,1.22383,1.22325,1.22383,994 +2020-12-18 17:30,1.2238,1.22457,1.22377,1.22455,1025 +2020-12-18 17:45,1.22455,1.22455,1.22366,1.22367,1137 +2020-12-18 18:00,1.22367,1.2242,1.22362,1.22387,946 +2020-12-18 18:15,1.22386,1.2241,1.22361,1.22409,712 +2020-12-18 18:30,1.22409,1.22418,1.22389,1.22417,704 +2020-12-18 18:45,1.22417,1.22432,1.22407,1.22419,533 +2020-12-18 19:00,1.22421,1.22421,1.22393,1.224,708 +2020-12-18 19:15,1.22401,1.22413,1.22391,1.22403,359 +2020-12-18 19:30,1.22405,1.22406,1.22359,1.2236,699 +2020-12-18 19:45,1.2236,1.22433,1.22349,1.2242,1002 +2020-12-18 20:00,1.22421,1.22421,1.22364,1.22399,811 +2020-12-18 20:15,1.224,1.22411,1.22382,1.22406,885 +2020-12-18 20:30,1.22405,1.22443,1.22398,1.22432,1114 +2020-12-18 20:45,1.22433,1.22489,1.22433,1.2246,1647 +2020-12-18 21:00,1.22459,1.22497,1.22446,1.22494,1078 +2020-12-18 21:15,1.22498,1.22543,1.22488,1.22541,356 +2020-12-18 21:30,1.2254,1.22553,1.22521,1.22538,472 +2020-12-18 21:45,1.22538,1.22587,1.22533,1.22559,3908 +2020-12-20 22:00,1.2221,1.2231,1.22209,1.22293,781 +2020-12-20 22:15,1.22294,1.22339,1.22279,1.223,104 +2020-12-20 22:30,1.22311,1.2233,1.22296,1.22328,89 +2020-12-20 22:45,1.2233,1.22347,1.22274,1.22296,177 +2020-12-20 23:00,1.22295,1.22348,1.22253,1.22307,1482 +2020-12-20 23:15,1.22305,1.22305,1.22147,1.22164,1349 +2020-12-20 23:30,1.22166,1.22189,1.22117,1.22141,1096 +2020-12-20 23:45,1.22142,1.22178,1.22113,1.22118,734 +2020-12-21 00:00,1.22118,1.22141,1.22083,1.22102,1582 +2020-12-21 00:15,1.22102,1.2212,1.22046,1.22108,1760 +2020-12-21 00:30,1.22108,1.22194,1.22108,1.22173,1505 +2020-12-21 00:45,1.22175,1.22193,1.22149,1.22191,1479 +2020-12-21 01:00,1.2219,1.22241,1.22182,1.2223,1418 +2020-12-21 01:15,1.2223,1.2226,1.22222,1.22239,1146 +2020-12-21 01:30,1.22241,1.22245,1.22064,1.22117,2364 +2020-12-21 01:45,1.22117,1.22119,1.22056,1.22081,2095 +2020-12-21 02:00,1.22084,1.22122,1.22078,1.22096,975 +2020-12-21 02:15,1.22096,1.22096,1.22012,1.22014,1894 +2020-12-21 02:30,1.22015,1.22019,1.21789,1.21867,3363 +2020-12-21 02:45,1.21867,1.21934,1.21866,1.21892,1923 +2020-12-21 03:00,1.21893,1.2191,1.21868,1.21885,1487 +2020-12-21 03:15,1.21885,1.21898,1.21856,1.21856,1038 +2020-12-21 03:30,1.21856,1.21881,1.21846,1.21873,1181 +2020-12-21 03:45,1.21873,1.21875,1.21842,1.21845,531 +2020-12-21 04:00,1.21845,1.21895,1.21845,1.21893,552 +2020-12-21 04:15,1.21892,1.21892,1.21861,1.21862,852 +2020-12-21 04:30,1.21861,1.21911,1.21858,1.21898,648 +2020-12-21 04:45,1.21897,1.21918,1.21886,1.21908,596 +2020-12-21 05:00,1.21908,1.21915,1.21845,1.21848,1585 +2020-12-21 05:15,1.21846,1.21848,1.21808,1.21832,1816 +2020-12-21 05:30,1.21833,1.21882,1.2183,1.21859,1287 +2020-12-21 05:45,1.21859,1.21916,1.21848,1.21912,1057 +2020-12-21 06:00,1.21911,1.21912,1.21841,1.21866,1465 +2020-12-21 06:15,1.21865,1.21881,1.21822,1.21869,1412 +2020-12-21 06:30,1.21871,1.21884,1.21847,1.21884,1070 +2020-12-21 06:45,1.21883,1.21992,1.2187,1.21987,1718 +2020-12-21 07:00,1.21988,1.21991,1.21929,1.21964,2167 +2020-12-21 07:15,1.21964,1.21965,1.21811,1.21838,2733 +2020-12-21 07:30,1.2184,1.21851,1.21696,1.21696,3366 +2020-12-21 07:45,1.21695,1.21823,1.2168,1.21758,3075 +2020-12-21 08:00,1.21759,1.21938,1.21729,1.21912,5076 +2020-12-21 08:15,1.21911,1.22022,1.21907,1.21972,4457 +2020-12-21 08:30,1.21971,1.22194,1.21954,1.22192,4876 +2020-12-21 08:45,1.22192,1.22267,1.22166,1.22172,4225 +2020-12-21 09:00,1.22173,1.22176,1.22031,1.22045,3409 +2020-12-21 09:15,1.22044,1.22123,1.22029,1.22048,3453 +2020-12-21 09:30,1.22046,1.22048,1.21781,1.21803,4553 +2020-12-21 09:45,1.21801,1.21849,1.21719,1.21752,5272 +2020-12-21 10:00,1.21753,1.21767,1.2144,1.21449,6027 +2020-12-21 10:15,1.2145,1.21509,1.21296,1.21339,5921 +2020-12-21 10:30,1.21339,1.2146,1.213,1.21455,4714 +2020-12-21 10:45,1.21454,1.21513,1.21419,1.21474,5364 +2020-12-21 11:00,1.21476,1.2167,1.21476,1.21633,5266 +2020-12-21 11:15,1.21632,1.21669,1.21568,1.21656,3658 +2020-12-21 11:30,1.2166,1.21805,1.21628,1.21785,3845 +2020-12-21 11:45,1.21785,1.21813,1.21619,1.21621,3692 +2020-12-21 12:00,1.21623,1.21776,1.21563,1.21748,4123 +2020-12-21 12:15,1.21748,1.21768,1.2165,1.21742,3414 +2020-12-21 12:30,1.21742,1.21829,1.21713,1.21787,2580 +2020-12-21 12:45,1.21788,1.21876,1.21611,1.21632,3619 +2020-12-21 13:00,1.21635,1.21766,1.21625,1.21723,3917 +2020-12-21 13:15,1.21724,1.21924,1.21713,1.21919,3617 +2020-12-21 13:30,1.2192,1.22048,1.21875,1.22038,4618 +2020-12-21 13:45,1.22037,1.22145,1.21906,1.21912,5343 +2020-12-21 14:00,1.21914,1.2209,1.21914,1.22069,2251 +2020-12-21 14:15,1.22069,1.2218,1.22068,1.22145,3613 +2020-12-21 14:30,1.22144,1.22187,1.22115,1.2216,5260 +2020-12-21 14:45,1.22162,1.22175,1.22052,1.22089,4210 +2020-12-21 15:00,1.22088,1.22162,1.22065,1.22156,4097 +2020-12-21 15:15,1.22155,1.22185,1.22095,1.22174,2652 +2020-12-21 15:30,1.22173,1.2218,1.22074,1.22117,3026 +2020-12-21 15:45,1.22118,1.22201,1.22064,1.2211,3285 +2020-12-21 16:00,1.22111,1.22237,1.22099,1.22172,3138 +2020-12-21 16:15,1.22172,1.22245,1.22141,1.22192,2676 +2020-12-21 16:30,1.22194,1.22224,1.22157,1.22201,2514 +2020-12-21 16:45,1.22205,1.22347,1.22205,1.22311,2455 +2020-12-21 17:00,1.2231,1.22317,1.22268,1.22291,2637 +2020-12-21 17:15,1.22291,1.22348,1.22275,1.22316,2195 +2020-12-21 17:30,1.22317,1.22348,1.22304,1.22307,1181 +2020-12-21 17:45,1.22306,1.22387,1.223,1.22361,2318 +2020-12-21 18:00,1.22361,1.22376,1.22291,1.22301,1737 +2020-12-21 18:15,1.22305,1.22376,1.22301,1.22371,1225 +2020-12-21 18:30,1.2237,1.22462,1.22354,1.22458,1194 +2020-12-21 18:45,1.22457,1.22473,1.22436,1.2244,2057 +2020-12-21 19:00,1.22438,1.22509,1.22417,1.22441,2145 +2020-12-21 19:15,1.2244,1.22476,1.22407,1.22456,2268 +2020-12-21 19:30,1.22456,1.22529,1.22428,1.22485,2272 +2020-12-21 19:45,1.22484,1.22499,1.22458,1.22485,2246 +2020-12-21 20:00,1.22486,1.22529,1.22422,1.2244,1608 +2020-12-21 20:15,1.22439,1.22446,1.22414,1.22424,1061 +2020-12-21 20:30,1.22423,1.22429,1.22346,1.22382,1577 +2020-12-21 20:45,1.22381,1.22392,1.22311,1.2232,2368 +2020-12-21 21:00,1.22318,1.22321,1.22279,1.2229,954 +2020-12-21 21:15,1.2229,1.22323,1.22286,1.22297,404 +2020-12-21 21:30,1.22297,1.22352,1.22294,1.2235,235 +2020-12-21 21:45,1.22352,1.2245,1.2234,1.22432,1329 +2020-12-21 22:00,1.22432,1.22434,1.22341,1.22359,162 +2020-12-21 22:15,1.22359,1.22402,1.2234,1.22358,123 +2020-12-21 22:30,1.22355,1.2239,1.22342,1.22379,206 +2020-12-21 22:45,1.22378,1.22389,1.22355,1.22382,81 +2020-12-21 23:00,1.22392,1.2247,1.22392,1.22469,1073 +2020-12-21 23:15,1.2247,1.22498,1.22389,1.22398,781 +2020-12-21 23:30,1.22399,1.22414,1.22381,1.22398,755 +2020-12-21 23:45,1.22396,1.22396,1.22339,1.22346,697 +2020-12-22 00:00,1.22347,1.22433,1.22328,1.22424,1024 +2020-12-22 00:15,1.22422,1.22425,1.22352,1.22363,871 +2020-12-22 00:30,1.22365,1.22369,1.2232,1.22322,737 +2020-12-22 00:45,1.22322,1.22327,1.22285,1.22309,1148 +2020-12-22 01:00,1.22308,1.2233,1.22283,1.22316,1267 +2020-12-22 01:15,1.22315,1.22374,1.22311,1.22367,1129 +2020-12-22 01:30,1.22367,1.22374,1.22313,1.22317,1433 +2020-12-22 01:45,1.22317,1.22341,1.22291,1.22312,1256 +2020-12-22 02:00,1.2231,1.22326,1.22295,1.22318,1350 +2020-12-22 02:15,1.22318,1.22325,1.22303,1.22325,983 +2020-12-22 02:30,1.22325,1.22354,1.2232,1.22323,1209 +2020-12-22 02:45,1.22322,1.22337,1.22318,1.22325,1145 +2020-12-22 03:00,1.22326,1.22327,1.22295,1.22301,944 +2020-12-22 03:15,1.22299,1.22309,1.22239,1.22256,1770 +2020-12-22 03:30,1.2226,1.22286,1.22245,1.22286,606 +2020-12-22 03:45,1.22285,1.22296,1.22275,1.2229,737 +2020-12-22 04:00,1.2229,1.22298,1.22278,1.22285,381 +2020-12-22 04:15,1.22283,1.22294,1.22239,1.22248,962 +2020-12-22 04:30,1.22248,1.22261,1.22191,1.22219,834 +2020-12-22 04:45,1.22218,1.22238,1.22193,1.22229,906 +2020-12-22 05:00,1.2223,1.22235,1.22207,1.22222,1109 +2020-12-22 05:15,1.22222,1.22222,1.22183,1.22209,974 +2020-12-22 05:30,1.22209,1.22216,1.22188,1.22192,1010 +2020-12-22 05:45,1.22192,1.22195,1.22157,1.22185,1260 +2020-12-22 06:00,1.22183,1.22209,1.22162,1.22206,1446 +2020-12-22 06:15,1.22207,1.22255,1.22205,1.2223,1577 +2020-12-22 06:30,1.2223,1.22252,1.22196,1.22205,1025 +2020-12-22 06:45,1.22206,1.22208,1.22158,1.22169,1820 +2020-12-22 07:00,1.22171,1.22247,1.22135,1.22225,2622 +2020-12-22 07:15,1.22225,1.22248,1.22204,1.22222,2317 +2020-12-22 07:30,1.22223,1.22296,1.22208,1.22253,3716 +2020-12-22 07:45,1.22255,1.22266,1.22155,1.22166,3607 +2020-12-22 08:00,1.22167,1.22176,1.22077,1.22139,3979 +2020-12-22 08:15,1.2214,1.22165,1.22061,1.22065,3120 +2020-12-22 08:30,1.22065,1.22189,1.2206,1.22183,3336 +2020-12-22 08:45,1.22184,1.22243,1.22131,1.22218,3079 +2020-12-22 09:00,1.22217,1.2226,1.22188,1.22249,3168 +2020-12-22 09:15,1.22248,1.22252,1.22127,1.22132,3104 +2020-12-22 09:30,1.22131,1.22181,1.22108,1.22145,2903 +2020-12-22 09:45,1.22146,1.22154,1.22049,1.22071,4271 +2020-12-22 10:00,1.22071,1.22149,1.22041,1.22129,5604 +2020-12-22 10:15,1.22127,1.22217,1.2212,1.22204,2809 +2020-12-22 10:30,1.22207,1.22244,1.22172,1.22197,2145 +2020-12-22 10:45,1.22198,1.22343,1.22198,1.223,4038 +2020-12-22 11:00,1.22301,1.22304,1.22209,1.22248,2682 +2020-12-22 11:15,1.22247,1.22302,1.22232,1.22296,2295 +2020-12-22 11:30,1.22298,1.22368,1.22258,1.22361,2173 +2020-12-22 11:45,1.22361,1.22439,1.22337,1.22436,2679 +2020-12-22 12:00,1.22436,1.22522,1.22402,1.22513,3667 +2020-12-22 12:15,1.22513,1.2257,1.22482,1.2253,3337 +2020-12-22 12:30,1.2253,1.22544,1.22446,1.22457,2807 +2020-12-22 12:45,1.22456,1.2248,1.22383,1.22393,3000 +2020-12-22 13:00,1.22393,1.22438,1.22384,1.22389,3150 +2020-12-22 13:15,1.22388,1.22436,1.2233,1.22348,2657 +2020-12-22 13:30,1.22348,1.22416,1.22344,1.22401,2923 +2020-12-22 13:45,1.22401,1.22431,1.22294,1.22301,3056 +2020-12-22 14:00,1.22302,1.2239,1.22288,1.22335,2580 +2020-12-22 14:15,1.22336,1.22336,1.22193,1.22218,3094 +2020-12-22 14:30,1.22219,1.2227,1.22097,1.22101,4925 +2020-12-22 14:45,1.22103,1.2219,1.22057,1.22071,4494 +2020-12-22 15:00,1.22072,1.22115,1.22009,1.22025,6369 +2020-12-22 15:15,1.22025,1.22107,1.22019,1.22079,3981 +2020-12-22 15:30,1.2208,1.22112,1.22024,1.22025,3094 +2020-12-22 15:45,1.22026,1.22036,1.21651,1.21734,8490 +2020-12-22 16:00,1.21735,1.218,1.21607,1.21799,6414 +2020-12-22 16:15,1.21799,1.21804,1.21739,1.21778,4343 +2020-12-22 16:30,1.21779,1.21779,1.21656,1.21683,4292 +2020-12-22 16:45,1.21683,1.21728,1.21648,1.21719,3659 +2020-12-22 17:00,1.21721,1.21769,1.21711,1.21751,2189 +2020-12-22 17:15,1.21752,1.21775,1.21724,1.21745,1456 +2020-12-22 17:30,1.21746,1.21785,1.21674,1.21705,1555 +2020-12-22 17:45,1.21705,1.21745,1.21667,1.21744,2187 +2020-12-22 18:00,1.21743,1.21747,1.21701,1.21724,2039 +2020-12-22 18:15,1.21723,1.2174,1.21689,1.2169,866 +2020-12-22 18:30,1.2169,1.21702,1.21611,1.21613,1498 +2020-12-22 18:45,1.21615,1.21648,1.21561,1.21628,1890 +2020-12-22 19:00,1.21628,1.21646,1.21611,1.21636,1373 +2020-12-22 19:15,1.21637,1.21637,1.21582,1.21596,820 +2020-12-22 19:30,1.21596,1.21618,1.21576,1.21599,995 +2020-12-22 19:45,1.21598,1.21615,1.21565,1.21605,1038 +2020-12-22 20:00,1.21606,1.21612,1.21558,1.21578,1126 +2020-12-22 20:15,1.21579,1.21592,1.2152,1.21526,1338 +2020-12-22 20:30,1.21526,1.21549,1.21523,1.21535,1053 +2020-12-22 20:45,1.21536,1.21586,1.21534,1.21567,1244 +2020-12-22 21:00,1.21567,1.21648,1.21558,1.21636,966 +2020-12-22 21:15,1.21636,1.21658,1.21634,1.21653,515 +2020-12-22 21:30,1.21653,1.2167,1.21634,1.21646,437 +2020-12-22 21:45,1.21644,1.21658,1.21609,1.2161,925 +2020-12-22 22:00,1.2161,1.21655,1.2161,1.21644,68 +2020-12-22 22:15,1.21654,1.21655,1.2162,1.21634,39 +2020-12-22 22:30,1.21637,1.21659,1.21623,1.21642,81 +2020-12-22 22:45,1.21641,1.21641,1.21625,1.21639,179 +2020-12-22 23:00,1.21637,1.21694,1.21634,1.21694,373 +2020-12-22 23:15,1.21693,1.21746,1.21687,1.21743,198 +2020-12-22 23:30,1.21744,1.21795,1.21723,1.21788,470 +2020-12-22 23:45,1.21789,1.21877,1.21786,1.21872,1252 +2020-12-23 00:00,1.21871,1.21872,1.21779,1.21779,1666 +2020-12-23 00:15,1.2178,1.21804,1.21725,1.21735,2554 +2020-12-23 00:30,1.21735,1.21744,1.2169,1.21713,1277 +2020-12-23 00:45,1.21713,1.21717,1.21626,1.2163,2472 +2020-12-23 01:00,1.21633,1.21704,1.21538,1.21694,2278 +2020-12-23 01:15,1.21694,1.21755,1.2169,1.2173,1439 +2020-12-23 01:30,1.2173,1.21806,1.2172,1.21786,1734 +2020-12-23 01:45,1.21789,1.21795,1.21768,1.21772,1146 +2020-12-23 02:00,1.21771,1.21795,1.21741,1.21759,1925 +2020-12-23 02:15,1.21757,1.21763,1.21663,1.217,1468 +2020-12-23 02:30,1.21703,1.21761,1.21685,1.21688,1609 +2020-12-23 02:45,1.21689,1.21763,1.21688,1.21755,1178 +2020-12-23 03:00,1.21756,1.21851,1.21753,1.21845,1323 +2020-12-23 03:15,1.21846,1.21872,1.21829,1.21862,1446 +2020-12-23 03:30,1.21861,1.21863,1.21835,1.21853,1351 +2020-12-23 03:45,1.21852,1.21908,1.21834,1.219,1474 +2020-12-23 04:00,1.219,1.2192,1.2187,1.21873,1045 +2020-12-23 04:15,1.21875,1.21901,1.21869,1.21875,639 +2020-12-23 04:30,1.21875,1.21883,1.21858,1.21864,558 +2020-12-23 04:45,1.21864,1.21881,1.21858,1.21878,868 +2020-12-23 05:00,1.21878,1.21881,1.21848,1.21864,1281 +2020-12-23 05:15,1.21866,1.21869,1.21844,1.21852,763 +2020-12-23 05:30,1.21852,1.2187,1.2185,1.21855,859 +2020-12-23 05:45,1.21855,1.21895,1.2185,1.21888,563 +2020-12-23 06:00,1.21888,1.21893,1.21847,1.21847,1193 +2020-12-23 06:15,1.21848,1.21852,1.21828,1.21836,656 +2020-12-23 06:30,1.21836,1.21851,1.21813,1.21841,930 +2020-12-23 06:45,1.21841,1.21846,1.21824,1.2184,655 +2020-12-23 07:00,1.21839,1.21917,1.21792,1.21891,2280 +2020-12-23 07:15,1.21893,1.2194,1.21893,1.21912,2322 +2020-12-23 07:30,1.21913,1.21931,1.21905,1.21914,1839 +2020-12-23 07:45,1.21914,1.22008,1.21909,1.21969,1867 +2020-12-23 08:00,1.21971,1.21974,1.21834,1.21839,4258 +2020-12-23 08:15,1.21838,1.21857,1.21719,1.21802,3236 +2020-12-23 08:30,1.21806,1.2188,1.21803,1.21866,2908 +2020-12-23 08:45,1.21865,1.21886,1.21813,1.21885,3073 +2020-12-23 09:00,1.21885,1.21967,1.21871,1.21931,3151 +2020-12-23 09:15,1.2193,1.21961,1.21865,1.2195,2466 +2020-12-23 09:30,1.2195,1.21996,1.21924,1.2194,2457 +2020-12-23 09:45,1.21938,1.21958,1.21909,1.21937,1819 +2020-12-23 10:00,1.21938,1.21977,1.2184,1.21965,2561 +2020-12-23 10:15,1.21965,1.21984,1.21852,1.21868,3719 +2020-12-23 10:30,1.21866,1.21888,1.21813,1.21829,2783 +2020-12-23 10:45,1.21829,1.21881,1.21779,1.21797,3367 +2020-12-23 11:00,1.21798,1.21883,1.21792,1.21839,3596 +2020-12-23 11:15,1.21839,1.21944,1.21829,1.2192,2646 +2020-12-23 11:30,1.2192,1.21948,1.21867,1.21943,2310 +2020-12-23 11:45,1.21943,1.21976,1.21886,1.21913,2870 +2020-12-23 12:00,1.21913,1.21944,1.21872,1.21933,2569 +2020-12-23 12:15,1.21933,1.21933,1.21838,1.21848,3075 +2020-12-23 12:30,1.21848,1.21873,1.21826,1.21833,2179 +2020-12-23 12:45,1.21834,1.21837,1.21805,1.21823,1877 +2020-12-23 13:00,1.21822,1.21826,1.21621,1.21666,3002 +2020-12-23 13:15,1.21666,1.21669,1.21615,1.21659,3031 +2020-12-23 13:30,1.2166,1.21726,1.21602,1.21726,3771 +2020-12-23 13:45,1.21723,1.21866,1.21704,1.21762,4293 +2020-12-23 14:00,1.21761,1.21875,1.21736,1.21836,3763 +2020-12-23 14:15,1.21836,1.21958,1.2183,1.21938,3977 +2020-12-23 14:30,1.21936,1.22187,1.21936,1.22185,5892 +2020-12-23 14:45,1.22186,1.2221,1.22042,1.22069,4283 +2020-12-23 15:00,1.22068,1.22179,1.22064,1.22138,5552 +2020-12-23 15:15,1.22138,1.22185,1.22013,1.2203,4219 +2020-12-23 15:30,1.2203,1.22099,1.21974,1.22031,3066 +2020-12-23 15:45,1.22034,1.22036,1.21799,1.21842,4513 +2020-12-23 16:00,1.21842,1.21997,1.21842,1.21952,3178 +2020-12-23 16:15,1.21951,1.22034,1.21902,1.21986,2745 +2020-12-23 16:30,1.21988,1.21996,1.21924,1.21972,2877 +2020-12-23 16:45,1.21974,1.21987,1.21912,1.21932,1989 +2020-12-23 17:00,1.21932,1.21972,1.21906,1.21952,1761 +2020-12-23 17:15,1.21951,1.21967,1.21917,1.21959,1115 +2020-12-23 17:30,1.21958,1.21958,1.21834,1.2187,1906 +2020-12-23 17:45,1.21873,1.21896,1.21804,1.21867,1786 +2020-12-23 18:00,1.21868,1.21885,1.21818,1.21838,1735 +2020-12-23 18:15,1.21839,1.21863,1.21813,1.21856,1373 +2020-12-23 18:30,1.21853,1.21854,1.21813,1.21825,1374 +2020-12-23 18:45,1.21824,1.2185,1.21798,1.21815,1090 +2020-12-23 19:00,1.21815,1.21824,1.21778,1.21781,724 +2020-12-23 19:15,1.21782,1.21782,1.21725,1.21747,763 +2020-12-23 19:30,1.21748,1.21825,1.21747,1.21813,843 +2020-12-23 19:45,1.21814,1.21844,1.21781,1.21804,1234 +2020-12-23 20:00,1.21805,1.21823,1.21731,1.21761,1636 +2020-12-23 20:15,1.2176,1.21782,1.21746,1.21766,930 +2020-12-23 20:30,1.2177,1.21857,1.2177,1.21853,711 +2020-12-23 20:45,1.21853,1.21963,1.21825,1.21953,1461 +2020-12-23 21:00,1.21952,1.21957,1.21891,1.21898,1126 +2020-12-23 21:15,1.21898,1.21931,1.21885,1.21901,547 +2020-12-23 21:30,1.219,1.21912,1.21841,1.21849,603 +2020-12-23 21:45,1.21851,1.21871,1.2181,1.2185,623 +2020-12-23 22:00,1.21845,1.21901,1.21845,1.21872,92 +2020-12-23 22:15,1.21872,1.21895,1.21866,1.21895,47 +2020-12-23 22:30,1.21897,1.219,1.21849,1.21889,138 +2020-12-23 22:45,1.21889,1.21904,1.21874,1.21902,52 +2020-12-23 23:00,1.21902,1.21904,1.21867,1.21886,325 +2020-12-23 23:15,1.21886,1.21901,1.21875,1.21876,128 +2020-12-23 23:30,1.21876,1.21877,1.21838,1.21856,377 +2020-12-23 23:45,1.21856,1.21939,1.21855,1.21939,257 +2020-12-24 00:00,1.2194,1.22008,1.21928,1.21976,1878 +2020-12-24 00:15,1.21975,1.21982,1.21945,1.21965,1155 +2020-12-24 00:30,1.21967,1.2201,1.2196,1.21995,665 +2020-12-24 00:45,1.21997,1.22044,1.21972,1.22022,1704 +2020-12-24 01:00,1.2202,1.22074,1.22015,1.22064,1750 +2020-12-24 01:15,1.22063,1.22107,1.22052,1.22075,1282 +2020-12-24 01:30,1.22074,1.22086,1.22027,1.22081,1873 +2020-12-24 01:45,1.22082,1.22121,1.2208,1.22081,1232 +2020-12-24 02:00,1.22081,1.22106,1.22072,1.22097,893 +2020-12-24 02:15,1.22098,1.22131,1.22091,1.22125,719 +2020-12-24 02:30,1.22126,1.22156,1.22126,1.22131,661 +2020-12-24 02:45,1.22132,1.22154,1.22099,1.2211,1134 +2020-12-24 03:00,1.2211,1.22148,1.2211,1.2214,636 +2020-12-24 03:15,1.2214,1.22154,1.22111,1.22116,714 +2020-12-24 03:30,1.22117,1.22122,1.22052,1.22073,1627 +2020-12-24 03:45,1.22073,1.22092,1.22058,1.22092,1326 +2020-12-24 04:00,1.22092,1.22092,1.22036,1.22037,908 +2020-12-24 04:15,1.22037,1.22052,1.22029,1.22042,1536 +2020-12-24 04:30,1.22043,1.22051,1.22017,1.22036,1298 +2020-12-24 04:45,1.22036,1.22048,1.22031,1.22043,808 +2020-12-24 05:00,1.22043,1.22049,1.22028,1.22039,871 +2020-12-24 05:15,1.22039,1.22081,1.22035,1.22049,719 +2020-12-24 05:30,1.2205,1.22053,1.22021,1.22028,1080 +2020-12-24 05:45,1.22029,1.2206,1.22023,1.2205,857 +2020-12-24 06:00,1.22051,1.22068,1.22033,1.22047,1261 +2020-12-24 06:15,1.22048,1.22054,1.22027,1.2205,638 +2020-12-24 06:30,1.22051,1.22058,1.22032,1.22057,608 +2020-12-24 06:45,1.22059,1.22077,1.22051,1.22071,620 +2020-12-24 07:00,1.2207,1.22075,1.22027,1.22037,1411 +2020-12-24 07:15,1.22038,1.22077,1.22026,1.22063,1519 +2020-12-24 07:30,1.22063,1.22095,1.22059,1.22074,1992 +2020-12-24 07:45,1.22073,1.22096,1.22044,1.22053,1675 +2020-12-24 08:00,1.22052,1.22093,1.22033,1.22072,2058 +2020-12-24 08:15,1.22072,1.22097,1.22049,1.22051,1746 +2020-12-24 08:30,1.22051,1.22062,1.21937,1.21959,1926 +2020-12-24 08:45,1.2196,1.22041,1.21953,1.22011,2177 +2020-12-24 09:00,1.22011,1.22028,1.21948,1.2195,1444 +2020-12-24 09:15,1.21948,1.22006,1.21931,1.21999,1172 +2020-12-24 09:30,1.22,1.22011,1.2194,1.21944,1978 +2020-12-24 09:45,1.21946,1.21963,1.21869,1.21913,2727 +2020-12-24 10:00,1.21912,1.21924,1.2188,1.21905,1801 +2020-12-24 10:15,1.21903,1.21951,1.219,1.21918,2069 +2020-12-24 10:30,1.21918,1.21967,1.21912,1.21965,1439 +2020-12-24 10:45,1.21964,1.22003,1.21938,1.21987,1593 +2020-12-24 11:00,1.21988,1.22034,1.21947,1.22003,1671 +2020-12-24 11:15,1.22004,1.22015,1.21953,1.21973,1152 +2020-12-24 11:30,1.21973,1.22009,1.2195,1.21977,1214 +2020-12-24 11:45,1.21976,1.21987,1.21936,1.21953,1553 +2020-12-24 12:00,1.21952,1.21952,1.21903,1.21939,1733 +2020-12-24 12:15,1.21942,1.21988,1.21927,1.2198,1512 +2020-12-24 12:30,1.2198,1.21986,1.21881,1.21902,1851 +2020-12-24 12:45,1.21901,1.21934,1.21877,1.21883,1295 +2020-12-24 13:00,1.21883,1.21933,1.21875,1.21926,1587 +2020-12-24 13:15,1.21925,1.21926,1.21855,1.21891,1537 +2020-12-24 13:30,1.21892,1.21933,1.21886,1.21923,1514 +2020-12-24 13:45,1.21924,1.21947,1.21881,1.21881,1346 +2020-12-24 14:00,1.21879,1.21973,1.21867,1.21915,1557 +2020-12-24 14:15,1.21913,1.21936,1.21773,1.21838,2418 +2020-12-24 14:30,1.2184,1.21937,1.21838,1.21902,2583 +2020-12-24 14:45,1.21902,1.2196,1.21884,1.21887,2094 +2020-12-24 15:00,1.21887,1.21917,1.21826,1.21885,3455 +2020-12-24 15:15,1.21886,1.21955,1.21843,1.2195,1909 +2020-12-24 15:30,1.21953,1.21978,1.21798,1.21837,3112 +2020-12-24 15:45,1.21836,1.21855,1.21781,1.21822,2116 +2020-12-24 16:00,1.21822,1.21891,1.21821,1.21869,1722 +2020-12-24 16:15,1.21868,1.2188,1.21833,1.2184,1334 +2020-12-24 16:30,1.21839,1.21868,1.21829,1.21846,855 +2020-12-24 16:45,1.21846,1.21862,1.21811,1.21815,756 +2020-12-24 17:00,1.21816,1.21838,1.21802,1.21828,860 +2020-12-24 17:15,1.21829,1.21875,1.21828,1.21867,502 +2020-12-24 17:30,1.21867,1.21884,1.2185,1.21852,580 +2020-12-24 17:45,1.21852,1.21891,1.21822,1.2183,1215 +2020-12-24 18:00,1.21831,1.21857,1.2182,1.21842,914 +2020-12-24 18:15,1.21841,1.21842,1.21774,1.21803,2918 +2020-12-24 18:30,1.21803,1.21808,1.21788,1.21802,421 +2020-12-24 18:45,1.21801,1.21817,1.21798,1.21807,565 +2020-12-24 19:00,1.21807,1.21813,1.21802,1.21802,390 +2020-12-24 19:15,1.21802,1.21811,1.21789,1.21794,264 +2020-12-24 19:30,1.21794,1.218,1.21789,1.21795,696 +2020-12-24 19:45,1.21794,1.21804,1.21793,1.21797,1138 +2020-12-24 20:00,1.21798,1.21807,1.21795,1.21803,605 +2020-12-24 20:15,1.21802,1.2185,1.21802,1.21847,7773 +2020-12-24 20:30,1.21845,1.21857,1.21838,1.2184,16162 +2020-12-24 20:45,1.21844,1.21847,1.21829,1.21838,5864 +2020-12-24 21:00,1.21838,1.21839,1.21821,1.21825,857 +2020-12-24 21:15,1.21825,1.21847,1.21824,1.21845,2782 +2020-12-24 21:30,1.21844,1.21854,1.21835,1.21843,1735 +2020-12-24 21:45,1.21844,1.21855,1.21832,1.21844,763 +2020-12-24 22:00,1.21861,1.21861,1.21816,1.21816,32 +2020-12-24 22:30,1.21811,1.21811,1.21811,1.21811,2 +2020-12-24 22:45,1.21812,1.21815,1.21809,1.21809,131 +2020-12-24 23:00,1.2183,1.21831,1.21806,1.21817,291 +2020-12-24 23:15,1.21814,1.21819,1.21811,1.21812,818 +2020-12-24 23:30,1.21818,1.21819,1.21811,1.21815,704 +2020-12-24 23:45,1.21815,1.21822,1.21815,1.2182,41 +2020-12-25 00:00,1.21816,1.21828,1.21812,1.21823,343 +2020-12-25 00:15,1.21826,1.21827,1.21799,1.21814,105 +2020-12-25 00:30,1.21801,1.21825,1.21793,1.218,26 +2020-12-25 00:45,1.218,1.21807,1.21709,1.21753,180 +2020-12-25 01:00,1.21752,1.21792,1.21752,1.21789,112 +2020-12-25 01:15,1.2179,1.2181,1.21783,1.21806,37 +2020-12-25 01:30,1.21805,1.2187,1.2178,1.21868,126 +2020-12-25 01:45,1.21876,1.21913,1.21813,1.21901,203 +2020-12-25 02:00,1.21902,1.21902,1.21884,1.21894,84 +2020-12-25 02:15,1.21896,1.21924,1.21889,1.21898,225 +2020-12-25 02:30,1.21898,1.21922,1.21894,1.21894,98 +2020-12-25 02:45,1.21895,1.21932,1.21894,1.2193,496 +2020-12-25 03:00,1.21932,1.21993,1.21909,1.21981,102 +2020-12-25 03:15,1.2198,1.21997,1.21979,1.21995,55 +2020-12-25 03:30,1.21992,1.21994,1.21916,1.2199,42 +2020-12-25 03:45,1.21989,1.22006,1.21974,1.22002,33 +2020-12-25 04:00,1.22006,1.22006,1.21974,1.21985,209 +2020-12-25 04:15,1.21986,1.21986,1.21983,1.21983,441 +2020-12-25 04:30,1.21983,1.21999,1.21973,1.21973,26 +2020-12-25 04:45,1.21975,1.21985,1.21966,1.21983,78 +2020-12-25 05:00,1.21983,1.22012,1.21982,1.22009,32 +2020-12-25 05:15,1.22008,1.22008,1.21974,1.21974,99 +2020-12-25 05:30,1.21971,1.21976,1.21931,1.21931,50 +2020-12-25 05:45,1.21931,1.21972,1.2193,1.2193,31 +2020-12-25 06:00,1.21933,1.21991,1.21925,1.21982,101 +2020-12-25 06:15,1.21983,1.21995,1.21957,1.21985,56 +2020-12-25 06:30,1.21981,1.21982,1.21952,1.21981,32 +2020-12-25 06:45,1.2198,1.22031,1.21932,1.21957,68 +2020-12-25 07:00,1.21939,1.21953,1.21919,1.21942,101 +2020-12-25 07:15,1.21942,1.2198,1.21863,1.21883,109 +2020-12-25 07:30,1.21883,1.21939,1.21869,1.21938,117 +2020-12-25 07:45,1.21939,1.21944,1.21891,1.21922,155 +2020-12-27 22:00,1.2186,1.21917,1.21811,1.21914,122 +2020-12-27 22:15,1.21902,1.21913,1.21833,1.21834,320 +2020-12-27 22:30,1.21835,1.21906,1.21833,1.21901,201 +2020-12-27 22:45,1.21901,1.2193,1.21848,1.21901,991 +2020-12-27 23:00,1.21901,1.21967,1.21848,1.21959,2208 +2020-12-27 23:15,1.21961,1.22072,1.21946,1.22049,993 +2020-12-27 23:30,1.2205,1.22064,1.22028,1.22038,853 +2020-12-27 23:45,1.22038,1.22063,1.22026,1.22038,462 +2020-12-28 00:00,1.22039,1.22081,1.21839,1.21884,2091 +2020-12-28 00:15,1.21884,1.21936,1.21838,1.21908,1310 +2020-12-28 00:30,1.2191,1.21946,1.21863,1.21884,819 +2020-12-28 00:45,1.21885,1.21928,1.21811,1.21923,1439 +2020-12-28 01:00,1.21925,1.2205,1.2191,1.22033,1595 +2020-12-28 01:15,1.22035,1.22047,1.22007,1.22043,1343 +2020-12-28 01:30,1.22045,1.22055,1.22012,1.22035,871 +2020-12-28 01:45,1.22035,1.22063,1.22029,1.22048,888 +2020-12-28 02:00,1.22049,1.22132,1.22043,1.22123,1348 +2020-12-28 02:15,1.22124,1.22137,1.22094,1.22099,1079 +2020-12-28 02:30,1.22099,1.22131,1.22093,1.22126,962 +2020-12-28 02:45,1.22125,1.22131,1.22084,1.22086,953 +2020-12-28 03:00,1.22087,1.22144,1.22087,1.22139,979 +2020-12-28 03:15,1.22138,1.22159,1.22121,1.22151,832 +2020-12-28 03:30,1.22152,1.22157,1.22135,1.22142,759 +2020-12-28 03:45,1.22143,1.22148,1.22121,1.22126,747 +2020-12-28 04:00,1.22127,1.2213,1.22091,1.22106,718 +2020-12-28 04:15,1.22107,1.22123,1.22105,1.22122,991 +2020-12-28 04:30,1.22123,1.22138,1.22101,1.22102,505 +2020-12-28 04:45,1.22103,1.22113,1.22092,1.22102,162 +2020-12-28 05:00,1.22102,1.22119,1.22092,1.22119,762 +2020-12-28 05:15,1.22119,1.22157,1.22119,1.22156,732 +2020-12-28 05:30,1.22155,1.22186,1.22141,1.22163,1989 +2020-12-28 05:45,1.22164,1.22236,1.22155,1.22234,1503 +2020-12-28 06:00,1.22234,1.22269,1.22207,1.22227,1676 +2020-12-28 06:15,1.22226,1.22245,1.22205,1.2223,1370 +2020-12-28 06:30,1.22231,1.22238,1.22197,1.22233,1085 +2020-12-28 06:45,1.22233,1.22268,1.22222,1.22249,970 +2020-12-28 07:00,1.22249,1.22256,1.22203,1.22225,1479 +2020-12-28 07:15,1.22224,1.2226,1.22195,1.22224,967 +2020-12-28 07:30,1.22224,1.22298,1.22219,1.22278,1055 +2020-12-28 07:45,1.22279,1.22329,1.22261,1.22308,1212 +2020-12-28 08:00,1.2231,1.22324,1.22257,1.22276,2030 +2020-12-28 08:15,1.22277,1.22328,1.22273,1.2231,1340 +2020-12-28 08:30,1.2231,1.22373,1.22296,1.22354,2013 +2020-12-28 08:45,1.22355,1.22403,1.2234,1.2239,2653 +2020-12-28 09:00,1.22388,1.22408,1.22347,1.22386,2080 +2020-12-28 09:15,1.22387,1.2241,1.22354,1.22385,1975 +2020-12-28 09:30,1.22387,1.22406,1.22364,1.22398,2080 +2020-12-28 09:45,1.22398,1.22501,1.22397,1.22488,2562 +2020-12-28 10:00,1.22488,1.22502,1.22314,1.22318,2494 +2020-12-28 10:15,1.22319,1.22338,1.2213,1.22143,4157 +2020-12-28 10:30,1.22142,1.22221,1.22074,1.2212,3054 +2020-12-28 10:45,1.22121,1.22154,1.22101,1.22133,1979 +2020-12-28 11:00,1.22132,1.22154,1.22103,1.22128,1859 +2020-12-28 11:15,1.22128,1.22138,1.22015,1.2203,2201 +2020-12-28 11:30,1.2203,1.22046,1.21944,1.2195,2100 +2020-12-28 11:45,1.21948,1.21991,1.21926,1.21947,2173 +2020-12-28 12:00,1.21947,1.21969,1.21913,1.21938,1938 +2020-12-28 12:15,1.21936,1.22048,1.2193,1.22043,2079 +2020-12-28 12:30,1.22043,1.2208,1.2202,1.22051,1801 +2020-12-28 12:45,1.22051,1.22085,1.22039,1.22082,1933 +2020-12-28 13:00,1.22083,1.22186,1.22067,1.22184,2160 +2020-12-28 13:15,1.22183,1.22209,1.22105,1.2213,2043 +2020-12-28 13:30,1.22129,1.22196,1.22129,1.22191,1877 +2020-12-28 13:45,1.22192,1.22222,1.22122,1.22128,1439 +2020-12-28 14:00,1.22127,1.22196,1.22084,1.22191,1753 +2020-12-28 14:15,1.22189,1.22227,1.22185,1.22223,1495 +2020-12-28 14:30,1.22223,1.2236,1.22208,1.22357,2929 +2020-12-28 14:45,1.22357,1.22399,1.22312,1.22317,2045 +2020-12-28 15:00,1.22317,1.22347,1.2229,1.22297,2081 +2020-12-28 15:15,1.22295,1.2231,1.22266,1.22287,1779 +2020-12-28 15:30,1.22287,1.22296,1.2216,1.22161,2740 +2020-12-28 15:45,1.22161,1.22176,1.22073,1.22148,2547 +2020-12-28 16:00,1.22148,1.22289,1.22122,1.22269,2670 +2020-12-28 16:15,1.2227,1.22278,1.22151,1.22158,1811 +2020-12-28 16:30,1.2216,1.22191,1.22129,1.22163,1545 +2020-12-28 16:45,1.22163,1.22183,1.22126,1.22129,1443 +2020-12-28 17:00,1.22129,1.22157,1.22067,1.22085,1420 +2020-12-28 17:15,1.22085,1.2216,1.22073,1.22151,2016 +2020-12-28 17:30,1.22151,1.22162,1.2209,1.22097,1123 +2020-12-28 17:45,1.22097,1.22121,1.2205,1.2206,1724 +2020-12-28 18:00,1.2206,1.22129,1.22058,1.22101,1183 +2020-12-28 18:15,1.221,1.22117,1.22073,1.22101,926 +2020-12-28 18:30,1.22102,1.22125,1.22038,1.22038,1268 +2020-12-28 18:45,1.22036,1.22109,1.22025,1.22084,1573 +2020-12-28 19:00,1.22083,1.22113,1.22076,1.2208,1023 +2020-12-28 19:15,1.22079,1.22084,1.22047,1.22049,1256 +2020-12-28 19:30,1.2205,1.22075,1.22033,1.22048,905 +2020-12-28 19:45,1.22048,1.22087,1.22038,1.22066,1354 +2020-12-28 20:00,1.22065,1.22105,1.22061,1.22074,1478 +2020-12-28 20:15,1.22075,1.22084,1.22048,1.22056,692 +2020-12-28 20:30,1.22055,1.22064,1.2203,1.22041,1031 +2020-12-28 20:45,1.22044,1.22139,1.22039,1.22132,943 +2020-12-28 21:00,1.22133,1.22142,1.22083,1.22083,811 +2020-12-28 21:15,1.22082,1.22112,1.22062,1.2211,416 +2020-12-28 21:30,1.2211,1.22137,1.22083,1.22129,332 +2020-12-28 21:45,1.22127,1.22162,1.22124,1.2216,670 +2020-12-28 22:00,1.2216,1.2216,1.22099,1.22123,105 +2020-12-28 22:15,1.22124,1.22128,1.22091,1.22105,107 +2020-12-28 22:30,1.22099,1.22115,1.22076,1.22087,248 +2020-12-28 22:45,1.22085,1.22096,1.22073,1.22084,446 +2020-12-28 23:00,1.22081,1.2217,1.22081,1.22156,658 +2020-12-28 23:15,1.22156,1.222,1.22156,1.22179,793 +2020-12-28 23:30,1.22179,1.22192,1.22169,1.22181,294 +2020-12-28 23:45,1.22181,1.22208,1.22174,1.22196,437 +2020-12-29 00:00,1.22196,1.22281,1.22193,1.22272,1180 +2020-12-29 00:15,1.22274,1.22308,1.22264,1.22275,1420 +2020-12-29 00:30,1.22277,1.22345,1.22274,1.22303,1223 +2020-12-29 00:45,1.22302,1.22302,1.22244,1.22254,1096 +2020-12-29 01:00,1.22257,1.22306,1.22255,1.22274,931 +2020-12-29 01:15,1.22274,1.223,1.22267,1.22272,947 +2020-12-29 01:30,1.22271,1.22285,1.22257,1.22272,1115 +2020-12-29 01:45,1.22272,1.22288,1.22257,1.22272,1405 +2020-12-29 02:00,1.22271,1.2235,1.22243,1.22317,1596 +2020-12-29 02:15,1.22317,1.22363,1.22304,1.22359,1043 +2020-12-29 02:30,1.22356,1.22376,1.22346,1.22355,1233 +2020-12-29 02:45,1.22355,1.22364,1.22322,1.22339,1248 +2020-12-29 03:00,1.22339,1.22344,1.22315,1.22319,960 +2020-12-29 03:15,1.22318,1.22377,1.22316,1.22371,975 +2020-12-29 03:30,1.22372,1.22406,1.22365,1.2239,1026 +2020-12-29 03:45,1.22392,1.2243,1.22384,1.22417,1013 +2020-12-29 04:00,1.22418,1.22419,1.22391,1.22402,1115 +2020-12-29 04:15,1.22402,1.22402,1.22378,1.2238,843 +2020-12-29 04:30,1.22379,1.22424,1.22375,1.22422,770 +2020-12-29 04:45,1.22421,1.22428,1.22394,1.22396,1444 +2020-12-29 05:00,1.22398,1.22398,1.22353,1.22383,1050 +2020-12-29 05:15,1.22385,1.22402,1.22381,1.22401,497 +2020-12-29 05:30,1.22403,1.22407,1.22386,1.22386,808 +2020-12-29 05:45,1.22385,1.22386,1.2235,1.2236,1081 +2020-12-29 06:00,1.22359,1.22404,1.22355,1.22394,1362 +2020-12-29 06:15,1.22395,1.22411,1.22375,1.22411,610 +2020-12-29 06:30,1.2241,1.22412,1.2239,1.22395,1215 +2020-12-29 06:45,1.22394,1.22427,1.22394,1.22422,590 +2020-12-29 07:00,1.22422,1.22469,1.22409,1.22454,1670 +2020-12-29 07:15,1.22455,1.22501,1.22441,1.22483,1536 +2020-12-29 07:30,1.22485,1.22514,1.22443,1.22444,1449 +2020-12-29 07:45,1.22445,1.22459,1.2239,1.22402,1504 +2020-12-29 08:00,1.22403,1.22502,1.22392,1.22484,2070 +2020-12-29 08:15,1.22485,1.22571,1.2246,1.22567,2027 +2020-12-29 08:30,1.22568,1.2258,1.22526,1.22529,1746 +2020-12-29 08:45,1.22531,1.22545,1.22429,1.22452,2651 +2020-12-29 09:00,1.22452,1.2247,1.22379,1.22391,2452 +2020-12-29 09:15,1.22392,1.22395,1.22366,1.22374,2268 +2020-12-29 09:30,1.22377,1.22483,1.22364,1.22472,2383 +2020-12-29 09:45,1.22474,1.22522,1.22456,1.22495,3048 +2020-12-29 10:00,1.22496,1.22569,1.22485,1.22543,3494 +2020-12-29 10:15,1.22544,1.22547,1.22467,1.22534,1944 +2020-12-29 10:30,1.22537,1.22539,1.22463,1.2247,2210 +2020-12-29 10:45,1.22469,1.22526,1.22455,1.22491,1940 +2020-12-29 11:00,1.22491,1.22528,1.2245,1.22497,2101 +2020-12-29 11:15,1.22496,1.22504,1.22389,1.22445,2003 +2020-12-29 11:30,1.22448,1.22505,1.22434,1.22465,1700 +2020-12-29 11:45,1.22465,1.2249,1.22406,1.22486,2096 +2020-12-29 12:00,1.22487,1.22524,1.22477,1.22523,1892 +2020-12-29 12:15,1.22522,1.22526,1.22464,1.22507,1802 +2020-12-29 12:30,1.22507,1.22614,1.22502,1.22574,2649 +2020-12-29 12:45,1.22573,1.22591,1.22549,1.22559,2178 +2020-12-29 13:00,1.22561,1.22591,1.22547,1.22586,3054 +2020-12-29 13:15,1.22585,1.22592,1.22539,1.22539,2329 +2020-12-29 13:30,1.22538,1.2256,1.22501,1.22519,2445 +2020-12-29 13:45,1.22518,1.22541,1.22482,1.22534,1818 +2020-12-29 14:00,1.22535,1.22599,1.22511,1.22513,2935 +2020-12-29 14:15,1.22514,1.22584,1.225,1.2256,1449 +2020-12-29 14:30,1.22559,1.22642,1.22542,1.2262,3087 +2020-12-29 14:45,1.22621,1.2275,1.22619,1.22671,3373 +2020-12-29 15:00,1.2267,1.22677,1.22459,1.22472,3569 +2020-12-29 15:15,1.22471,1.22572,1.22427,1.22447,4270 +2020-12-29 15:30,1.22449,1.22608,1.22447,1.22578,3027 +2020-12-29 15:45,1.22579,1.22597,1.22402,1.22438,4238 +2020-12-29 16:00,1.22437,1.22548,1.22379,1.22529,3026 +2020-12-29 16:15,1.22532,1.22544,1.2246,1.2248,2205 +2020-12-29 16:30,1.22479,1.22557,1.22434,1.22472,2137 +2020-12-29 16:45,1.22471,1.22531,1.22454,1.22516,1256 +2020-12-29 17:00,1.22517,1.22544,1.22499,1.22504,1196 +2020-12-29 17:15,1.22503,1.22546,1.2242,1.22425,1822 +2020-12-29 17:30,1.22424,1.22444,1.22394,1.2242,1669 +2020-12-29 17:45,1.22419,1.22426,1.22369,1.22416,1826 +2020-12-29 18:00,1.22415,1.22416,1.22359,1.22386,1353 +2020-12-29 18:15,1.22386,1.2245,1.22385,1.22444,1613 +2020-12-29 18:30,1.22441,1.22445,1.22399,1.22416,985 +2020-12-29 18:45,1.22416,1.22476,1.22404,1.22458,1127 +2020-12-29 19:00,1.22457,1.22462,1.22445,1.22457,742 +2020-12-29 19:15,1.22456,1.22564,1.2244,1.22526,1200 +2020-12-29 19:30,1.22526,1.22545,1.22506,1.22506,1067 +2020-12-29 19:45,1.22509,1.22586,1.22508,1.22512,2187 +2020-12-29 20:00,1.2251,1.22522,1.22487,1.22509,1550 +2020-12-29 20:15,1.2251,1.22559,1.22496,1.2255,825 +2020-12-29 20:30,1.2255,1.22561,1.22486,1.22488,1320 +2020-12-29 20:45,1.22488,1.22509,1.22466,1.22498,1438 +2020-12-29 21:00,1.22498,1.22519,1.22482,1.22483,910 +2020-12-29 21:15,1.22484,1.22495,1.22468,1.22484,413 +2020-12-29 21:30,1.22485,1.22521,1.2248,1.22521,127 +2020-12-29 21:45,1.22521,1.22525,1.22478,1.22478,791 +2020-12-29 22:00,1.22455,1.22521,1.22453,1.22495,493 +2020-12-29 22:15,1.22492,1.22498,1.22488,1.22495,17 +2020-12-29 22:30,1.22489,1.22523,1.22489,1.22506,27 +2020-12-29 22:45,1.22503,1.22533,1.22503,1.22528,74 +2020-12-29 23:00,1.22527,1.22589,1.22527,1.22564,800 +2020-12-29 23:15,1.22564,1.2257,1.22541,1.22558,593 +2020-12-29 23:30,1.22558,1.22565,1.22532,1.22533,613 +2020-12-29 23:45,1.22532,1.22538,1.22515,1.22519,517 +2020-12-30 00:00,1.2252,1.22577,1.22511,1.22555,816 +2020-12-30 00:15,1.22555,1.22624,1.22551,1.22588,1054 +2020-12-30 00:30,1.22585,1.22625,1.2257,1.22625,938 +2020-12-30 00:45,1.22625,1.22779,1.2261,1.22684,1969 +2020-12-30 01:00,1.22682,1.22846,1.22663,1.22787,2533 +2020-12-30 01:15,1.22787,1.22802,1.22754,1.22801,1750 +2020-12-30 01:30,1.22801,1.22945,1.22796,1.22908,2512 +2020-12-30 01:45,1.22908,1.22948,1.22883,1.22906,1863 +2020-12-30 02:00,1.22907,1.22919,1.22868,1.22879,1367 +2020-12-30 02:15,1.2288,1.22888,1.22845,1.22859,1043 +2020-12-30 02:30,1.22859,1.22878,1.22849,1.22856,694 +2020-12-30 02:45,1.22855,1.22901,1.22849,1.22869,1029 +2020-12-30 03:00,1.2287,1.2288,1.2284,1.22844,707 +2020-12-30 03:15,1.22846,1.22887,1.22841,1.2288,659 +2020-12-30 03:30,1.22882,1.22884,1.22844,1.22846,896 +2020-12-30 03:45,1.22846,1.22848,1.22818,1.22828,1094 +2020-12-30 04:00,1.22829,1.2288,1.22817,1.22875,761 +2020-12-30 04:15,1.22875,1.22892,1.22865,1.22881,690 +2020-12-30 04:30,1.22881,1.22896,1.22869,1.22879,561 +2020-12-30 04:45,1.2288,1.2289,1.22844,1.22848,493 +2020-12-30 05:00,1.22849,1.22905,1.22838,1.22891,920 +2020-12-30 05:15,1.22891,1.22905,1.22874,1.22874,715 +2020-12-30 05:30,1.22875,1.22899,1.22865,1.22874,881 +2020-12-30 05:45,1.22874,1.22894,1.22847,1.22849,816 +2020-12-30 06:00,1.22847,1.22864,1.22826,1.22835,887 +2020-12-30 06:15,1.22835,1.22835,1.22761,1.22794,1375 +2020-12-30 06:30,1.22797,1.22803,1.22776,1.22794,769 +2020-12-30 06:45,1.22793,1.22842,1.22771,1.22816,987 +2020-12-30 07:00,1.22816,1.22844,1.22788,1.22826,1213 +2020-12-30 07:15,1.22826,1.22851,1.22813,1.22844,1203 +2020-12-30 07:30,1.22848,1.22851,1.2275,1.22753,2439 +2020-12-30 07:45,1.22751,1.228,1.22651,1.22672,2127 +2020-12-30 08:00,1.22671,1.227,1.22553,1.22608,3537 +2020-12-30 08:15,1.22608,1.22608,1.22527,1.22606,3167 +2020-12-30 08:30,1.22607,1.22612,1.2256,1.22593,2616 +2020-12-30 08:45,1.22593,1.22617,1.22562,1.22587,2697 +2020-12-30 09:00,1.22589,1.2262,1.2255,1.22592,2467 +2020-12-30 09:15,1.22594,1.22603,1.2257,1.22584,1526 +2020-12-30 09:30,1.22583,1.2272,1.22566,1.22689,2245 +2020-12-30 09:45,1.2269,1.22709,1.22661,1.22682,2402 +2020-12-30 10:00,1.22682,1.22727,1.22668,1.22727,1704 +2020-12-30 10:15,1.22725,1.22796,1.22711,1.22793,2174 +2020-12-30 10:30,1.22792,1.22844,1.22786,1.22821,1880 +2020-12-30 10:45,1.2282,1.22846,1.22747,1.2279,2667 +2020-12-30 11:00,1.2279,1.22801,1.22711,1.22711,2599 +2020-12-30 11:15,1.22708,1.22716,1.22663,1.22679,2509 +2020-12-30 11:30,1.22677,1.22727,1.22671,1.22724,2427 +2020-12-30 11:45,1.22724,1.22751,1.22696,1.22731,1671 +2020-12-30 12:00,1.2273,1.2275,1.22705,1.22731,1956 +2020-12-30 12:15,1.22731,1.22806,1.22728,1.22777,1452 +2020-12-30 12:30,1.22779,1.22807,1.22749,1.22797,1456 +2020-12-30 12:45,1.22795,1.22935,1.22773,1.22895,3307 +2020-12-30 13:00,1.22898,1.22898,1.22798,1.22798,2373 +2020-12-30 13:15,1.22792,1.22889,1.2279,1.22866,1618 +2020-12-30 13:30,1.22869,1.22892,1.22765,1.22856,2618 +2020-12-30 13:45,1.22857,1.22914,1.22835,1.22911,2803 +2020-12-30 14:00,1.22913,1.23101,1.22887,1.22926,5809 +2020-12-30 14:15,1.22926,1.22942,1.22711,1.22728,3873 +2020-12-30 14:30,1.22728,1.22807,1.2272,1.22774,3597 +2020-12-30 14:45,1.22778,1.22987,1.22739,1.22966,5514 +2020-12-30 15:00,1.22967,1.23058,1.22849,1.22857,3366 +2020-12-30 15:15,1.22859,1.22878,1.22808,1.22829,2675 +2020-12-30 15:30,1.22829,1.22957,1.22826,1.22916,2672 +2020-12-30 15:45,1.22914,1.23022,1.22856,1.23005,5535 +2020-12-30 16:00,1.23007,1.23022,1.22931,1.22931,2817 +2020-12-30 16:15,1.2293,1.2295,1.22841,1.22842,2158 +2020-12-30 16:30,1.22843,1.22896,1.22803,1.22858,3084 +2020-12-30 16:45,1.22858,1.2286,1.22784,1.2279,1687 +2020-12-30 17:00,1.2279,1.22849,1.2279,1.22823,1314 +2020-12-30 17:15,1.2282,1.22839,1.22762,1.22819,1405 +2020-12-30 17:30,1.22818,1.22861,1.22817,1.22853,1060 +2020-12-30 17:45,1.22852,1.22888,1.22822,1.22885,1259 +2020-12-30 18:00,1.22885,1.2289,1.22855,1.22874,922 +2020-12-30 18:15,1.22872,1.22897,1.22865,1.22889,697 +2020-12-30 18:30,1.22888,1.22897,1.22854,1.22892,808 +2020-12-30 18:45,1.22892,1.22913,1.22869,1.22908,551 +2020-12-30 19:00,1.2291,1.22926,1.22859,1.22875,887 +2020-12-30 19:15,1.22873,1.22879,1.22845,1.22852,665 +2020-12-30 19:30,1.22851,1.22889,1.22804,1.22878,1359 +2020-12-30 19:45,1.22879,1.22921,1.22861,1.22884,1517 +2020-12-30 20:00,1.22884,1.22929,1.22884,1.22922,802 +2020-12-30 20:15,1.22925,1.22948,1.22921,1.22938,1033 +2020-12-30 20:30,1.22938,1.22948,1.22935,1.22939,1097 +2020-12-30 20:45,1.2294,1.22946,1.22892,1.22917,1315 +2020-12-30 21:00,1.22918,1.22989,1.22909,1.22965,687 +2020-12-30 21:15,1.22965,1.22973,1.22944,1.22945,465 +2020-12-30 21:30,1.22944,1.22979,1.22944,1.22978,360 +2020-12-30 21:45,1.22978,1.23019,1.22952,1.22952,994 +2020-12-30 22:00,1.22955,1.22987,1.22925,1.22971,159 +2020-12-30 22:15,1.2297,1.22997,1.22936,1.22959,237 +2020-12-30 22:30,1.22959,1.22985,1.22939,1.22974,248 +2020-12-30 22:45,1.22974,1.22985,1.22957,1.22962,198 +2020-12-30 23:00,1.22963,1.23035,1.22963,1.23035,543 +2020-12-30 23:15,1.23034,1.23042,1.23011,1.23011,380 +2020-12-30 23:30,1.23012,1.23012,1.22988,1.22994,175 +2020-12-30 23:45,1.22995,1.22998,1.22984,1.22984,87 +2020-12-31 00:00,1.22986,1.22989,1.22948,1.22969,642 +2020-12-31 00:15,1.22967,1.23004,1.22958,1.23003,679 +2020-12-31 00:30,1.23004,1.2307,1.23004,1.23031,1359 +2020-12-31 00:45,1.2303,1.23081,1.23029,1.23065,663 +2020-12-31 01:00,1.23064,1.23092,1.23005,1.23028,1956 +2020-12-31 01:15,1.23029,1.23056,1.22995,1.23,837 +2020-12-31 01:30,1.23002,1.23032,1.22989,1.23016,1806 +2020-12-31 01:45,1.23017,1.23069,1.23017,1.23065,1397 +2020-12-31 02:00,1.23063,1.2309,1.23055,1.23063,773 +2020-12-31 02:15,1.23063,1.23089,1.23057,1.23073,762 +2020-12-31 02:30,1.23072,1.23074,1.23016,1.23026,634 +2020-12-31 02:45,1.23026,1.23026,1.22853,1.22896,1982 +2020-12-31 03:00,1.22895,1.22935,1.2289,1.22891,1028 +2020-12-31 03:15,1.22892,1.22913,1.22862,1.22913,635 +2020-12-31 03:30,1.22912,1.22922,1.22891,1.22908,1799 +2020-12-31 03:45,1.22909,1.22938,1.22901,1.2291,979 +2020-12-31 04:00,1.22909,1.22911,1.2287,1.22886,554 +2020-12-31 04:15,1.22885,1.22906,1.22882,1.22886,536 +2020-12-31 04:30,1.22888,1.22892,1.22857,1.22858,850 +2020-12-31 04:45,1.22857,1.22867,1.2285,1.22865,893 +2020-12-31 05:00,1.22864,1.22907,1.22851,1.22901,497 +2020-12-31 05:15,1.22901,1.22933,1.22901,1.22931,600 +2020-12-31 05:30,1.22931,1.2297,1.22929,1.22943,966 +2020-12-31 05:45,1.22943,1.22958,1.22893,1.22896,990 +2020-12-31 06:00,1.22896,1.22915,1.22874,1.22884,870 +2020-12-31 06:15,1.22885,1.22926,1.2286,1.22924,1218 +2020-12-31 06:30,1.22925,1.22925,1.22881,1.22886,548 +2020-12-31 06:45,1.22886,1.22925,1.2288,1.22913,647 +2020-12-31 07:00,1.22914,1.22988,1.22909,1.22949,1107 +2020-12-31 07:15,1.2295,1.23031,1.22937,1.22991,2139 +2020-12-31 07:30,1.22993,1.23007,1.22955,1.22973,1685 +2020-12-31 07:45,1.22973,1.23016,1.22941,1.22963,1745 +2020-12-31 08:00,1.22963,1.22999,1.22899,1.22936,2533 +2020-12-31 08:15,1.22934,1.2296,1.22871,1.22901,2437 +2020-12-31 08:30,1.22902,1.23031,1.22885,1.22908,3917 +2020-12-31 08:45,1.22907,1.23041,1.22904,1.2301,3598 +2020-12-31 09:00,1.23012,1.23012,1.22866,1.22876,3515 +2020-12-31 09:15,1.22875,1.22875,1.22777,1.2284,3184 +2020-12-31 09:30,1.22839,1.22939,1.22795,1.22897,3770 +2020-12-31 09:45,1.22898,1.22976,1.22768,1.2279,5142 +2020-12-31 10:00,1.22789,1.22878,1.22781,1.22837,2788 +2020-12-31 10:15,1.22836,1.22884,1.22795,1.22807,3333 +2020-12-31 10:30,1.22806,1.22867,1.22796,1.22803,3003 +2020-12-31 10:45,1.22803,1.22829,1.22746,1.22795,4488 +2020-12-31 11:00,1.22794,1.22823,1.22766,1.22805,2892 +2020-12-31 11:15,1.22804,1.22878,1.22763,1.22866,1667 +2020-12-31 11:30,1.22868,1.22871,1.22771,1.22779,1658 +2020-12-31 11:45,1.22778,1.22782,1.22665,1.22748,3147 +2020-12-31 12:00,1.22748,1.22813,1.22727,1.22756,2631 +2020-12-31 12:15,1.22755,1.22765,1.22667,1.22672,2163 +2020-12-31 12:30,1.22671,1.22696,1.22652,1.22695,1328 +2020-12-31 12:45,1.22693,1.2272,1.22595,1.22716,3468 +2020-12-31 13:00,1.22716,1.22736,1.2264,1.22711,2555 +2020-12-31 13:15,1.22714,1.22801,1.22705,1.22781,2931 +2020-12-31 13:30,1.22781,1.22849,1.22767,1.22848,2902 +2020-12-31 13:45,1.2285,1.2287,1.2279,1.22843,2127 +2020-12-31 14:00,1.22844,1.22851,1.22791,1.22806,2191 +2020-12-31 14:15,1.22806,1.2283,1.22757,1.22794,2258 +2020-12-31 14:30,1.22794,1.22795,1.22667,1.22688,2731 +2020-12-31 14:45,1.22686,1.22725,1.2265,1.22692,2318 +2020-12-31 15:00,1.22692,1.22704,1.2262,1.2262,2873 +2020-12-31 15:15,1.22619,1.2265,1.2254,1.22589,2550 +2020-12-31 15:30,1.2259,1.22595,1.22301,1.22361,4091 +2020-12-31 15:45,1.22363,1.224,1.22247,1.22386,5363 +2020-12-31 16:00,1.22384,1.22402,1.22294,1.22316,4193 +2020-12-31 16:15,1.22316,1.22369,1.22251,1.22291,2987 +2020-12-31 16:30,1.22291,1.22362,1.22247,1.22247,3282 +2020-12-31 16:45,1.22248,1.22304,1.22208,1.22299,2119 +2020-12-31 17:00,1.22298,1.22346,1.22232,1.22291,1749 +2020-12-31 17:15,1.22291,1.22316,1.22281,1.22292,964 +2020-12-31 17:30,1.22293,1.22302,1.22232,1.22237,1412 +2020-12-31 17:45,1.22235,1.22332,1.22217,1.2225,1505 +2020-12-31 18:00,1.22251,1.22279,1.22215,1.22253,1174 +2020-12-31 18:15,1.22252,1.22252,1.2218,1.22222,1417 +2020-12-31 18:30,1.22221,1.22221,1.22174,1.22194,1030 +2020-12-31 18:45,1.22194,1.22194,1.22149,1.22166,702 +2020-12-31 19:00,1.22166,1.22184,1.22101,1.22178,1042 +2020-12-31 19:15,1.22179,1.22199,1.22169,1.22194,704 +2020-12-31 19:30,1.22194,1.22228,1.2219,1.22219,391 +2020-12-31 19:45,1.22217,1.22217,1.22091,1.22098,1522 +2020-12-31 20:00,1.22096,1.22158,1.22096,1.22143,361 +2020-12-31 20:15,1.22143,1.22167,1.2214,1.22154,358 +2020-12-31 20:30,1.22154,1.22192,1.22151,1.22156,563 +2020-12-31 20:45,1.22159,1.22182,1.2213,1.22158,839 +2020-12-31 21:00,1.22159,1.22279,1.22143,1.22266,735 +2020-12-31 21:15,1.22264,1.22273,1.22192,1.22199,995 +2020-12-31 21:30,1.22198,1.22214,1.22183,1.22187,647 +2020-12-31 21:45,1.22187,1.22196,1.22135,1.22141,2443 \ No newline at end of file diff --git a/data/Source 1/EURUSD_M15_2020_1kbar.csv b/data/Source 1/EURUSD_M15_2020_1kbar.csv new file mode 100644 index 0000000..6607f51 --- /dev/null +++ b/data/Source 1/EURUSD_M15_2020_1kbar.csv @@ -0,0 +1,1000 @@ +2020-01-01 22:00,1.1212,1.12139,1.12106,1.12127,234 +2020-01-01 22:15,1.12127,1.12154,1.12127,1.12146,221 +2020-01-01 22:30,1.12147,1.12156,1.12138,1.12154,103 +2020-01-01 22:45,1.12155,1.12166,1.12143,1.12143,666 +2020-01-01 23:00,1.12143,1.12218,1.12142,1.12202,620 +2020-01-01 23:15,1.12201,1.1221,1.12195,1.1221,200 +2020-01-01 23:30,1.1221,1.12216,1.12207,1.12208,197 +2020-01-01 23:45,1.12208,1.12208,1.12176,1.12188,390 +2020-01-02 00:00,1.12188,1.1219,1.12161,1.12162,471 +2020-01-02 00:15,1.12161,1.12169,1.12157,1.12161,555 +2020-01-02 00:30,1.12161,1.12174,1.12157,1.12172,380 +2020-01-02 00:45,1.12173,1.1219,1.12172,1.12183,384 +2020-01-02 01:00,1.12182,1.12231,1.1218,1.12225,763 +2020-01-02 01:15,1.12225,1.12244,1.12219,1.12236,1012 +2020-01-02 01:30,1.12234,1.12237,1.1221,1.1221,554 +2020-01-02 01:45,1.1221,1.12211,1.1218,1.12209,806 +2020-01-02 02:00,1.1221,1.1221,1.12184,1.1219,759 +2020-01-02 02:15,1.12191,1.12217,1.12186,1.12216,654 +2020-01-02 02:30,1.12216,1.12239,1.12211,1.12238,381 +2020-01-02 02:45,1.12239,1.12245,1.12218,1.12222,327 +2020-01-02 03:00,1.12224,1.12231,1.12215,1.12217,408 +2020-01-02 03:15,1.12216,1.12218,1.1218,1.12181,766 +2020-01-02 03:30,1.12181,1.12181,1.12131,1.12135,732 +2020-01-02 03:45,1.12134,1.12141,1.12124,1.12132,645 +2020-01-02 04:00,1.12132,1.12142,1.12127,1.12142,489 +2020-01-02 04:15,1.12142,1.12143,1.12119,1.12121,440 +2020-01-02 04:30,1.12122,1.12122,1.1209,1.12096,603 +2020-01-02 04:45,1.12096,1.12099,1.12008,1.12012,1125 +2020-01-02 05:00,1.12011,1.12032,1.12009,1.12013,1693 +2020-01-02 05:15,1.12013,1.12034,1.1201,1.12016,703 +2020-01-02 05:30,1.12017,1.12032,1.12013,1.12028,438 +2020-01-02 05:45,1.12029,1.12044,1.12017,1.12043,592 +2020-01-02 06:00,1.12044,1.1207,1.12042,1.12068,1001 +2020-01-02 06:15,1.12068,1.12069,1.12043,1.12053,902 +2020-01-02 06:30,1.12054,1.1207,1.12036,1.12068,805 +2020-01-02 06:45,1.12068,1.12077,1.1206,1.12077,622 +2020-01-02 07:00,1.12078,1.12099,1.12069,1.12077,1917 +2020-01-02 07:15,1.12077,1.12097,1.12056,1.12062,1503 +2020-01-02 07:30,1.12065,1.12073,1.12043,1.12073,1627 +2020-01-02 07:45,1.12074,1.12102,1.12073,1.12098,1706 +2020-01-02 08:00,1.12099,1.12137,1.12051,1.12098,2892 +2020-01-02 08:15,1.12097,1.12122,1.12072,1.12073,1624 +2020-01-02 08:30,1.12073,1.12103,1.12059,1.1209,1331 +2020-01-02 08:45,1.1209,1.12125,1.12083,1.1212,1352 +2020-01-02 09:00,1.12119,1.12141,1.12092,1.12105,1825 +2020-01-02 09:15,1.12105,1.12122,1.12095,1.121,1485 +2020-01-02 09:30,1.12099,1.12111,1.12052,1.12057,1785 +2020-01-02 09:45,1.12058,1.12059,1.12011,1.1203,1833 +2020-01-02 10:00,1.1203,1.12039,1.1201,1.1201,1750 +2020-01-02 10:15,1.12011,1.12011,1.11927,1.11933,2120 +2020-01-02 10:30,1.11933,1.1196,1.11927,1.11938,1671 +2020-01-02 10:45,1.11939,1.11997,1.11935,1.11982,1691 +2020-01-02 11:00,1.11984,1.12021,1.11967,1.12004,2335 +2020-01-02 11:15,1.12003,1.12003,1.11942,1.11946,2077 +2020-01-02 11:30,1.11947,1.11954,1.11871,1.11899,2458 +2020-01-02 11:45,1.11898,1.11906,1.11842,1.11848,1999 +2020-01-02 12:00,1.11847,1.11908,1.11829,1.11906,2184 +2020-01-02 12:15,1.11907,1.11925,1.11881,1.11916,1576 +2020-01-02 12:30,1.11917,1.11943,1.1191,1.11918,1655 +2020-01-02 12:45,1.11919,1.1194,1.11899,1.1193,1600 +2020-01-02 13:00,1.11929,1.11941,1.11909,1.11923,1810 +2020-01-02 13:15,1.11923,1.11969,1.11916,1.11952,2559 +2020-01-02 13:30,1.11951,1.11952,1.11896,1.11932,2635 +2020-01-02 13:45,1.11933,1.1197,1.11918,1.11963,181195 +2020-01-02 14:00,1.11963,1.11965,1.11851,1.11861,23562 +2020-01-02 14:15,1.1186,1.11872,1.11766,1.11773,47616 +2020-01-02 14:30,1.11774,1.11802,1.11712,1.11724,9808 +2020-01-02 14:45,1.11724,1.11749,1.117,1.11741,40664 +2020-01-02 15:00,1.11739,1.11765,1.11713,1.11752,5118 +2020-01-02 15:15,1.11752,1.1178,1.11708,1.11739,23881 +2020-01-02 15:30,1.11738,1.11828,1.11724,1.1181,4842 +2020-01-02 15:45,1.11812,1.12023,1.11803,1.12005,8645 +2020-01-02 16:00,1.12006,1.1203,1.11868,1.11873,30098 +2020-01-02 16:15,1.11875,1.11875,1.11829,1.11845,7726 +2020-01-02 16:30,1.11844,1.11866,1.11753,1.11757,3285 +2020-01-02 16:45,1.11757,1.11775,1.11651,1.11661,2986 +2020-01-02 17:00,1.11661,1.11666,1.11636,1.1166,2268 +2020-01-02 17:15,1.11659,1.11711,1.11635,1.11705,2743 +2020-01-02 17:30,1.11706,1.11719,1.11677,1.11704,1174 +2020-01-02 17:45,1.11704,1.11717,1.11645,1.11698,1964 +2020-01-02 18:00,1.11698,1.11712,1.11643,1.11648,2332 +2020-01-02 18:15,1.11647,1.11683,1.11636,1.11674,1466 +2020-01-02 18:30,1.11675,1.11723,1.11672,1.11713,1567 +2020-01-02 18:45,1.11713,1.11714,1.11663,1.11702,1497 +2020-01-02 19:00,1.11702,1.11703,1.11675,1.11702,1263 +2020-01-02 19:15,1.11703,1.11703,1.11678,1.11681,1406 +2020-01-02 19:30,1.11682,1.11682,1.11643,1.11653,1567 +2020-01-02 19:45,1.11654,1.11674,1.11642,1.11663,1395 +2020-01-02 20:00,1.11662,1.11705,1.11659,1.117,1232 +2020-01-02 20:15,1.117,1.11715,1.11695,1.1171,734 +2020-01-02 20:30,1.1171,1.11712,1.11684,1.11684,816 +2020-01-02 20:45,1.11684,1.11701,1.11667,1.11693,913 +2020-01-02 21:00,1.11692,1.11723,1.11689,1.11717,612 +2020-01-02 21:15,1.11717,1.11735,1.11717,1.11733,264 +2020-01-02 21:30,1.11733,1.11733,1.11716,1.11717,235 +2020-01-02 21:45,1.11718,1.11727,1.11712,1.11722,409 +2020-01-02 22:00,1.11722,1.11726,1.11692,1.11718,452 +2020-01-02 22:15,1.11718,1.11719,1.11687,1.11714,143 +2020-01-02 22:30,1.11715,1.1173,1.1171,1.11718,162 +2020-01-02 22:45,1.11718,1.11721,1.1171,1.11713,82 +2020-01-02 23:00,1.11712,1.11732,1.11712,1.11727,354 +2020-01-02 23:15,1.11727,1.11734,1.11722,1.11729,224 +2020-01-02 23:30,1.1173,1.11734,1.11702,1.11708,326 +2020-01-02 23:45,1.11707,1.1171,1.11701,1.11708,211 +2020-01-03 00:00,1.11707,1.11738,1.11698,1.11729,441 +2020-01-03 00:15,1.11729,1.11731,1.11714,1.11725,241 +2020-01-03 00:30,1.11725,1.1173,1.11723,1.11725,506 +2020-01-03 00:45,1.11726,1.1176,1.11725,1.11754,583 +2020-01-03 01:00,1.11753,1.11779,1.11745,1.11774,387 +2020-01-03 01:15,1.11774,1.11784,1.11759,1.11759,763 +2020-01-03 01:30,1.11759,1.11759,1.11728,1.11729,696 +2020-01-03 01:45,1.11729,1.11768,1.11722,1.11735,1489 +2020-01-03 02:00,1.11735,1.11765,1.11733,1.11756,1123 +2020-01-03 02:15,1.11756,1.11772,1.11741,1.11763,1665 +2020-01-03 02:30,1.11763,1.11774,1.1175,1.11767,1360 +2020-01-03 02:45,1.11767,1.11771,1.11718,1.11725,2051 +2020-01-03 03:00,1.11725,1.11733,1.11712,1.11729,770 +2020-01-03 03:15,1.11729,1.11732,1.11695,1.11718,1194 +2020-01-03 03:30,1.11718,1.11725,1.11712,1.11718,747 +2020-01-03 03:45,1.11718,1.11736,1.11716,1.1172,805 +2020-01-03 04:00,1.1172,1.11749,1.1172,1.11745,845 +2020-01-03 04:15,1.11745,1.11745,1.11733,1.11735,551 +2020-01-03 04:30,1.11736,1.11742,1.11703,1.11717,708 +2020-01-03 04:45,1.11717,1.11719,1.11685,1.117,650 +2020-01-03 05:00,1.117,1.11706,1.11667,1.11675,1007 +2020-01-03 05:15,1.11675,1.11675,1.11643,1.11663,991 +2020-01-03 05:30,1.11664,1.117,1.11657,1.11689,1277 +2020-01-03 05:45,1.1169,1.11701,1.11663,1.11663,752 +2020-01-03 06:00,1.11663,1.11667,1.11638,1.11652,1167 +2020-01-03 06:15,1.11653,1.11682,1.11643,1.11675,760 +2020-01-03 06:30,1.11674,1.11693,1.11672,1.11685,454 +2020-01-03 06:45,1.11686,1.11695,1.11679,1.11691,612 +2020-01-03 07:00,1.11691,1.11715,1.1163,1.11633,2192 +2020-01-03 07:15,1.11632,1.11643,1.11565,1.11585,2485 +2020-01-03 07:30,1.11586,1.11602,1.1156,1.11574,1815 +2020-01-03 07:45,1.11575,1.11594,1.11521,1.11532,2742 +2020-01-03 08:00,1.11531,1.11603,1.1152,1.11585,2866 +2020-01-03 08:15,1.11586,1.11604,1.11541,1.11583,2594 +2020-01-03 08:30,1.11581,1.1159,1.11524,1.11534,2246 +2020-01-03 08:45,1.11537,1.11541,1.11505,1.11512,4572 +2020-01-03 09:00,1.11512,1.11522,1.11464,1.11468,3023 +2020-01-03 09:15,1.11467,1.11474,1.1143,1.1147,2455 +2020-01-03 09:30,1.1147,1.11496,1.11445,1.11454,3177 +2020-01-03 09:45,1.11454,1.11456,1.114,1.11401,2883 +2020-01-03 10:00,1.114,1.11433,1.11315,1.11334,3669 +2020-01-03 10:15,1.11334,1.11373,1.11328,1.11348,2675 +2020-01-03 10:30,1.11347,1.11357,1.11307,1.11318,2152 +2020-01-03 10:45,1.11317,1.11367,1.1131,1.1136,2215 +2020-01-03 11:00,1.11361,1.11361,1.11266,1.11313,2550 +2020-01-03 11:15,1.11314,1.11314,1.11278,1.11297,1860 +2020-01-03 11:30,1.11298,1.11312,1.11252,1.11274,2558 +2020-01-03 11:45,1.11274,1.113,1.11249,1.113,2137 +2020-01-03 12:00,1.113,1.11321,1.11281,1.11314,1830 +2020-01-03 12:15,1.11312,1.11326,1.11286,1.11302,1719 +2020-01-03 12:30,1.11302,1.11405,1.11297,1.11403,2444 +2020-01-03 12:45,1.11402,1.11426,1.1136,1.11391,2122 +2020-01-03 13:00,1.11392,1.11475,1.11375,1.11465,3558 +2020-01-03 13:15,1.11465,1.11488,1.11452,1.11457,2410 +2020-01-03 13:30,1.11458,1.11478,1.11442,1.11465,1436 +2020-01-03 13:45,1.11465,1.11466,1.11373,1.11381,2956 +2020-01-03 14:00,1.1138,1.11434,1.11353,1.11411,2605 +2020-01-03 14:15,1.1141,1.11491,1.1141,1.11464,2448 +2020-01-03 14:30,1.11465,1.11528,1.11462,1.11515,3346 +2020-01-03 14:45,1.11514,1.11541,1.11495,1.11522,2782 +2020-01-03 15:00,1.11525,1.11669,1.11525,1.11616,4592 +2020-01-03 15:15,1.11614,1.11667,1.11592,1.1163,3135 +2020-01-03 15:30,1.11631,1.1165,1.11579,1.11631,2228 +2020-01-03 15:45,1.11631,1.11674,1.1156,1.11633,3325 +2020-01-03 16:00,1.11634,1.11684,1.11624,1.11681,20543 +2020-01-03 16:15,1.1168,1.11744,1.11677,1.11736,9592 +2020-01-03 16:30,1.11735,1.11798,1.1173,1.11737,2808 +2020-01-03 16:45,1.11737,1.11752,1.11711,1.11719,2009 +2020-01-03 17:00,1.1172,1.1174,1.1171,1.11727,1710 +2020-01-03 17:15,1.11729,1.11736,1.11708,1.11727,1274 +2020-01-03 17:30,1.11726,1.11727,1.11679,1.11712,1197 +2020-01-03 17:45,1.11713,1.11736,1.11707,1.11721,1142 +2020-01-03 18:00,1.11721,1.11732,1.11705,1.11725,1036 +2020-01-03 18:15,1.11725,1.11728,1.11697,1.11701,1218 +2020-01-03 18:30,1.11701,1.11716,1.11661,1.11684,2281 +2020-01-03 18:45,1.11683,1.11692,1.11659,1.11666,1237 +2020-01-03 19:00,1.11665,1.11681,1.1164,1.11666,2002 +2020-01-03 19:15,1.11666,1.11666,1.11612,1.11628,1846 +2020-01-03 19:30,1.11628,1.11638,1.11615,1.11625,1153 +2020-01-03 19:45,1.11625,1.11677,1.11623,1.11673,1342 +2020-01-03 20:00,1.11673,1.11674,1.11628,1.11635,772 +2020-01-03 20:15,1.11634,1.11643,1.11615,1.11618,819 +2020-01-03 20:30,1.11617,1.11619,1.11602,1.11613,756 +2020-01-03 20:45,1.11612,1.11616,1.116,1.11616,792 +2020-01-03 21:00,1.11614,1.1162,1.1158,1.11582,712 +2020-01-03 21:15,1.11583,1.116,1.11578,1.116,191 +2020-01-03 21:30,1.11598,1.11601,1.11572,1.11574,209 +2020-01-03 21:45,1.11573,1.11596,1.11523,1.11548,384 +2020-01-05 22:00,1.11656,1.11667,1.11601,1.11616,81 +2020-01-05 22:15,1.11616,1.11625,1.11589,1.11603,130 +2020-01-05 22:30,1.11602,1.11616,1.11599,1.11605,96 +2020-01-05 22:45,1.11601,1.11609,1.1159,1.11594,89 +2020-01-05 23:00,1.11595,1.11642,1.11592,1.11639,788 +2020-01-05 23:15,1.11639,1.11676,1.11636,1.11674,1068 +2020-01-05 23:30,1.11672,1.11677,1.11638,1.11658,1007 +2020-01-05 23:45,1.11659,1.11659,1.11603,1.11604,1142 +2020-01-06 00:00,1.11603,1.11671,1.116,1.11639,1345 +2020-01-06 00:15,1.1164,1.11681,1.1164,1.11671,617 +2020-01-06 00:30,1.1167,1.11685,1.11654,1.11674,857 +2020-01-06 00:45,1.11673,1.11678,1.11628,1.11635,1151 +2020-01-06 01:00,1.11635,1.11653,1.11617,1.11627,1652 +2020-01-06 01:15,1.11627,1.11639,1.11622,1.11633,861 +2020-01-06 01:30,1.11635,1.11639,1.11612,1.11624,1057 +2020-01-06 01:45,1.11623,1.11638,1.11616,1.11627,1078 +2020-01-06 02:00,1.11628,1.11644,1.11626,1.11631,806 +2020-01-06 02:15,1.11631,1.11666,1.11624,1.11664,526 +2020-01-06 02:30,1.11664,1.11671,1.11652,1.1166,636 +2020-01-06 02:45,1.1166,1.11666,1.11644,1.11653,681 +2020-01-06 03:00,1.11654,1.11681,1.11653,1.11674,617 +2020-01-06 03:15,1.11673,1.11707,1.11673,1.11703,630 +2020-01-06 03:30,1.11703,1.11709,1.11667,1.11676,1310 +2020-01-06 03:45,1.11677,1.11691,1.11656,1.11657,1113 +2020-01-06 04:00,1.11658,1.11661,1.11647,1.11651,660 +2020-01-06 04:15,1.11652,1.11657,1.11624,1.11633,1688 +2020-01-06 04:30,1.11632,1.11637,1.11621,1.11627,657 +2020-01-06 04:45,1.11627,1.11644,1.11616,1.11642,1384 +2020-01-06 05:00,1.11644,1.11651,1.11636,1.11641,593 +2020-01-06 05:15,1.11642,1.11649,1.11641,1.11644,641 +2020-01-06 05:30,1.11644,1.11647,1.11628,1.11628,499 +2020-01-06 05:45,1.11628,1.11628,1.11606,1.11623,895 +2020-01-06 06:00,1.11622,1.11624,1.11582,1.11583,854 +2020-01-06 06:15,1.11582,1.11604,1.11571,1.11603,1163 +2020-01-06 06:30,1.11603,1.11605,1.11574,1.11588,682 +2020-01-06 06:45,1.11591,1.11615,1.11588,1.11607,1010 +2020-01-06 07:00,1.11606,1.11636,1.11606,1.11618,1900 +2020-01-06 07:15,1.11617,1.1165,1.11597,1.1163,2029 +2020-01-06 07:30,1.11628,1.11656,1.11615,1.1165,1974 +2020-01-06 07:45,1.11651,1.11667,1.11645,1.11646,1679 +2020-01-06 08:00,1.11647,1.1167,1.11634,1.11639,2540 +2020-01-06 08:15,1.11638,1.11698,1.11632,1.11667,2147 +2020-01-06 08:30,1.11666,1.11698,1.11653,1.11692,1788 +2020-01-06 08:45,1.11691,1.11799,1.11676,1.11785,2820 +2020-01-06 09:00,1.11786,1.11814,1.11767,1.11782,2624 +2020-01-06 09:15,1.11781,1.11797,1.11751,1.1179,1951 +2020-01-06 09:30,1.1179,1.1189,1.11786,1.1189,2746 +2020-01-06 09:45,1.11889,1.11936,1.11875,1.11932,2966 +2020-01-06 10:00,1.11934,1.11954,1.11899,1.11943,2403 +2020-01-06 10:15,1.11943,1.11996,1.11932,1.11961,2513 +2020-01-06 10:30,1.11962,1.11982,1.11924,1.11953,1815 +2020-01-06 10:45,1.11954,1.11978,1.11954,1.11964,1707 +2020-01-06 11:00,1.11963,1.12051,1.11962,1.1203,2758 +2020-01-06 11:15,1.12029,1.12053,1.1199,1.12024,1858 +2020-01-06 11:30,1.12024,1.12055,1.12014,1.12017,1913 +2020-01-06 11:45,1.12016,1.12054,1.12009,1.12032,1441 +2020-01-06 12:00,1.12032,1.12043,1.11969,1.11975,1891 +2020-01-06 12:15,1.11975,1.11985,1.11958,1.1198,1447 +2020-01-06 12:30,1.11981,1.11984,1.11951,1.11982,1087 +2020-01-06 12:45,1.11982,1.11998,1.11967,1.11981,1946 +2020-01-06 13:00,1.11982,1.12002,1.11934,1.11935,2497 +2020-01-06 13:15,1.11937,1.11972,1.11911,1.11958,2155 +2020-01-06 13:30,1.11959,1.12032,1.1195,1.11998,2427 +2020-01-06 13:45,1.11998,1.12,1.11963,1.11976,1644 +2020-01-06 14:00,1.11976,1.12002,1.1195,1.11951,1941 +2020-01-06 14:15,1.1195,1.11972,1.11929,1.11946,4540 +2020-01-06 14:30,1.11947,1.11962,1.11883,1.11895,2796 +2020-01-06 14:45,1.11896,1.11897,1.11825,1.11831,3311 +2020-01-06 15:00,1.11832,1.11881,1.11828,1.11861,2532 +2020-01-06 15:15,1.11861,1.11881,1.11826,1.11876,2197 +2020-01-06 15:30,1.11875,1.11902,1.11827,1.1183,3207 +2020-01-06 15:45,1.11828,1.11901,1.11821,1.11886,3420 +2020-01-06 16:00,1.11887,1.11896,1.1181,1.1181,2408 +2020-01-06 16:15,1.11809,1.11875,1.11809,1.11858,2486 +2020-01-06 16:30,1.11857,1.11879,1.11855,1.11867,2169 +2020-01-06 16:45,1.11866,1.11873,1.11846,1.11872,1979 +2020-01-06 17:00,1.11872,1.11936,1.11842,1.11922,1944 +2020-01-06 17:15,1.11924,1.1196,1.1192,1.11929,1327 +2020-01-06 17:30,1.11929,1.11932,1.11913,1.11915,783 +2020-01-06 17:45,1.11916,1.1195,1.11906,1.1195,1364 +2020-01-06 18:00,1.11952,1.11963,1.11934,1.11942,1212 +2020-01-06 18:15,1.11944,1.11966,1.11932,1.11955,984 +2020-01-06 18:30,1.11956,1.11973,1.1195,1.11972,880 +2020-01-06 18:45,1.11973,1.11979,1.11917,1.11919,1312 +2020-01-06 19:00,1.11918,1.11928,1.11906,1.11916,1001 +2020-01-06 19:15,1.11917,1.11925,1.11901,1.1192,725 +2020-01-06 19:30,1.11919,1.11922,1.11879,1.1188,995 +2020-01-06 19:45,1.1188,1.11921,1.1188,1.11912,1085 +2020-01-06 20:00,1.11914,1.11917,1.11889,1.119,862 +2020-01-06 20:15,1.119,1.11913,1.11899,1.11903,672 +2020-01-06 20:30,1.11902,1.11909,1.11894,1.11904,639 +2020-01-06 20:45,1.11905,1.11939,1.11893,1.11936,1261 +2020-01-06 21:00,1.11936,1.11941,1.11928,1.1194,363 +2020-01-06 21:15,1.11939,1.11955,1.1193,1.11946,346 +2020-01-06 21:30,1.11946,1.11962,1.11946,1.11961,228 +2020-01-06 21:45,1.11961,1.11989,1.1196,1.11968,293 +2020-01-06 22:00,1.1196,1.1196,1.11928,1.1196,631 +2020-01-06 22:15,1.1196,1.1196,1.11951,1.11955,154 +2020-01-06 22:30,1.11955,1.11961,1.11951,1.11955,898 +2020-01-06 22:45,1.11955,1.11959,1.11951,1.11955,661 +2020-01-06 23:00,1.11955,1.11975,1.11955,1.11957,401 +2020-01-06 23:15,1.11957,1.11957,1.11946,1.11951,712 +2020-01-06 23:30,1.11951,1.11951,1.11941,1.11942,491 +2020-01-06 23:45,1.11942,1.11963,1.11942,1.11954,447 +2020-01-07 00:00,1.11953,1.11954,1.1193,1.11952,737 +2020-01-07 00:15,1.11953,1.11953,1.11936,1.11937,431 +2020-01-07 00:30,1.11936,1.11937,1.11915,1.11916,556 +2020-01-07 00:45,1.11917,1.11926,1.11891,1.11897,1110 +2020-01-07 01:00,1.11897,1.11921,1.11896,1.11918,627 +2020-01-07 01:15,1.11918,1.1197,1.11918,1.11964,628 +2020-01-07 01:30,1.11965,1.1197,1.11944,1.11968,855 +2020-01-07 01:45,1.11969,1.11969,1.11933,1.11934,920 +2020-01-07 02:00,1.11934,1.11934,1.11922,1.11926,761 +2020-01-07 02:15,1.11927,1.11934,1.11915,1.11918,695 +2020-01-07 02:30,1.11917,1.11923,1.11909,1.11912,432 +2020-01-07 02:45,1.11912,1.11919,1.11912,1.11913,447 +2020-01-07 03:00,1.11914,1.11942,1.11912,1.11939,792 +2020-01-07 03:15,1.11939,1.11943,1.11927,1.1193,640 +2020-01-07 03:30,1.1193,1.11943,1.11927,1.11929,482 +2020-01-07 03:45,1.11929,1.11934,1.1192,1.11922,367 +2020-01-07 04:00,1.11921,1.11931,1.11911,1.11923,756 +2020-01-07 04:15,1.11925,1.11934,1.11925,1.1193,558 +2020-01-07 04:30,1.11929,1.11931,1.11919,1.11928,395 +2020-01-07 04:45,1.11928,1.11933,1.11905,1.11909,474 +2020-01-07 05:00,1.11908,1.11924,1.11902,1.11919,471 +2020-01-07 05:15,1.11919,1.1192,1.11908,1.11914,423 +2020-01-07 05:30,1.11915,1.11919,1.11908,1.11908,328 +2020-01-07 05:45,1.11907,1.11907,1.11828,1.1183,1400 +2020-01-07 06:00,1.11829,1.11886,1.11809,1.11873,2190 +2020-01-07 06:15,1.11872,1.11881,1.11832,1.11852,1230 +2020-01-07 06:30,1.11853,1.11897,1.11852,1.11877,1084 +2020-01-07 06:45,1.11876,1.11893,1.11809,1.11816,1705 +2020-01-07 07:00,1.11815,1.11854,1.11782,1.11841,2339 +2020-01-07 07:15,1.1184,1.11852,1.11811,1.11815,1696 +2020-01-07 07:30,1.11814,1.11817,1.11731,1.11773,2775 +2020-01-07 07:45,1.11772,1.11787,1.11729,1.1174,1871 +2020-01-07 08:00,1.1174,1.11781,1.11726,1.11754,3096 +2020-01-07 08:15,1.11754,1.11809,1.11737,1.11806,2359 +2020-01-07 08:30,1.11805,1.11875,1.11802,1.11835,2698 +2020-01-07 08:45,1.11834,1.11866,1.11823,1.11847,2234 +2020-01-07 09:00,1.11846,1.11896,1.11839,1.11855,2376 +2020-01-07 09:15,1.11854,1.11866,1.11809,1.11829,1950 +2020-01-07 09:30,1.11829,1.11844,1.11811,1.11827,1878 +2020-01-07 09:45,1.11827,1.11849,1.11805,1.11845,1780 +2020-01-07 10:00,1.11846,1.11862,1.11809,1.11836,2338 +2020-01-07 10:15,1.11837,1.11856,1.11648,1.11662,3610 +2020-01-07 10:30,1.11664,1.11738,1.11661,1.11734,2359 +2020-01-07 10:45,1.11736,1.11766,1.11717,1.11762,1603 +2020-01-07 11:00,1.11762,1.11775,1.1172,1.11744,2327 +2020-01-07 11:15,1.11744,1.11794,1.11735,1.11787,2495 +2020-01-07 11:30,1.11788,1.11817,1.11763,1.11811,1770 +2020-01-07 11:45,1.11811,1.11849,1.11777,1.11816,3283 +2020-01-07 12:00,1.11817,1.11831,1.11786,1.11811,2741 +2020-01-07 12:15,1.1181,1.1181,1.11771,1.11795,1958 +2020-01-07 12:30,1.11796,1.11805,1.11772,1.1179,1860 +2020-01-07 12:45,1.1179,1.11798,1.11708,1.11748,2537 +2020-01-07 13:00,1.11746,1.11778,1.11705,1.11719,3460 +2020-01-07 13:15,1.11718,1.11757,1.11677,1.11737,2722 +2020-01-07 13:30,1.11736,1.11738,1.11661,1.11679,3369 +2020-01-07 13:45,1.1168,1.11697,1.11548,1.11561,3304 +2020-01-07 14:00,1.1156,1.1161,1.1155,1.116,2862 +2020-01-07 14:15,1.11601,1.11622,1.11565,1.11577,2607 +2020-01-07 14:30,1.11576,1.11599,1.11491,1.1156,3690 +2020-01-07 14:45,1.11561,1.11561,1.11465,1.11478,3531 +2020-01-07 15:00,1.11476,1.11516,1.11415,1.1151,4217 +2020-01-07 15:15,1.1151,1.1151,1.11376,1.11399,3950 +2020-01-07 15:30,1.11398,1.11426,1.11351,1.11352,3606 +2020-01-07 15:45,1.11352,1.11419,1.11342,1.11417,3098 +2020-01-07 16:00,1.11417,1.11439,1.11367,1.11378,2768 +2020-01-07 16:15,1.11379,1.11384,1.11335,1.11384,2060 +2020-01-07 16:30,1.11383,1.11394,1.11342,1.11368,1900 +2020-01-07 16:45,1.11369,1.11387,1.11357,1.11369,1741 +2020-01-07 17:00,1.11369,1.11419,1.11366,1.11419,1868 +2020-01-07 17:15,1.11417,1.11461,1.11413,1.1144,1666 +2020-01-07 17:30,1.11442,1.11473,1.11425,1.11463,1574 +2020-01-07 17:45,1.11462,1.1147,1.11416,1.11424,1601 +2020-01-07 18:00,1.11425,1.11446,1.11414,1.11434,1159 +2020-01-07 18:15,1.11436,1.11495,1.11436,1.11489,1353 +2020-01-07 18:30,1.11489,1.11492,1.11442,1.11449,930 +2020-01-07 18:45,1.11449,1.11465,1.11433,1.11434,759 +2020-01-07 19:00,1.11435,1.11442,1.11417,1.1143,1221 +2020-01-07 19:15,1.11431,1.11441,1.11422,1.11433,1068 +2020-01-07 19:30,1.11432,1.11443,1.1142,1.11436,916 +2020-01-07 19:45,1.11434,1.1145,1.11429,1.11445,1442 +2020-01-07 20:00,1.11446,1.11477,1.11446,1.11459,1019 +2020-01-07 20:15,1.11459,1.11471,1.11453,1.11464,742 +2020-01-07 20:30,1.11464,1.11464,1.11432,1.11435,1834 +2020-01-07 20:45,1.11436,1.11438,1.11423,1.11438,796 +2020-01-07 21:00,1.11439,1.11463,1.11437,1.11459,451 +2020-01-07 21:15,1.11459,1.11465,1.11452,1.11457,257 +2020-01-07 21:30,1.11456,1.11485,1.11456,1.11458,511 +2020-01-07 21:45,1.11457,1.11536,1.11452,1.11526,1063 +2020-01-07 22:00,1.11529,1.11536,1.11476,1.11479,316 +2020-01-07 22:15,1.11492,1.11516,1.11482,1.11488,495 +2020-01-07 22:30,1.11488,1.11488,1.11452,1.11474,276 +2020-01-07 22:45,1.11479,1.11494,1.11447,1.11477,505 +2020-01-07 23:00,1.11473,1.11502,1.11462,1.11487,575 +2020-01-07 23:15,1.11488,1.1154,1.11484,1.11523,1148 +2020-01-07 23:30,1.11523,1.11523,1.11487,1.11494,1879 +2020-01-07 23:45,1.11493,1.11544,1.11475,1.1154,1889 +2020-01-08 00:00,1.11539,1.11682,1.11525,1.11671,3345 +2020-01-08 00:15,1.1167,1.1167,1.11599,1.11623,3397 +2020-01-08 00:30,1.11624,1.11654,1.11602,1.11604,2870 +2020-01-08 00:45,1.11604,1.11624,1.11585,1.11586,2444 +2020-01-08 01:00,1.11585,1.11632,1.11585,1.1161,3065 +2020-01-08 01:15,1.11609,1.11621,1.11584,1.11591,1676 +2020-01-08 01:30,1.11591,1.11626,1.11565,1.11566,2220 +2020-01-08 01:45,1.11565,1.11587,1.11548,1.11557,2279 +2020-01-08 02:00,1.11557,1.11567,1.11539,1.11547,2211 +2020-01-08 02:15,1.11548,1.1157,1.11541,1.11553,885 +2020-01-08 02:30,1.11551,1.11552,1.11531,1.11534,2053 +2020-01-08 02:45,1.11534,1.11613,1.11531,1.11586,2135 +2020-01-08 03:00,1.11587,1.11591,1.11565,1.11571,1176 +2020-01-08 03:15,1.11573,1.11586,1.11563,1.11571,1488 +2020-01-08 03:30,1.11571,1.11581,1.1155,1.11553,1034 +2020-01-08 03:45,1.11554,1.11556,1.11536,1.11546,657 +2020-01-08 04:00,1.11545,1.11557,1.1154,1.11551,550 +2020-01-08 04:15,1.11552,1.11556,1.11504,1.11504,701 +2020-01-08 04:30,1.11505,1.11505,1.11474,1.11478,876 +2020-01-08 04:45,1.1148,1.11482,1.1145,1.11476,1025 +2020-01-08 05:00,1.11478,1.11492,1.11476,1.11476,1193 +2020-01-08 05:15,1.11475,1.11498,1.11473,1.11494,730 +2020-01-08 05:30,1.11493,1.11513,1.11493,1.11501,739 +2020-01-08 05:45,1.115,1.11501,1.1148,1.11492,908 +2020-01-08 06:00,1.11491,1.1151,1.11484,1.1149,919 +2020-01-08 06:15,1.1149,1.11539,1.11484,1.1153,990 +2020-01-08 06:30,1.1153,1.11533,1.11507,1.11521,821 +2020-01-08 06:45,1.11522,1.11533,1.11486,1.115,1192 +2020-01-08 07:00,1.11501,1.11548,1.11457,1.11479,2558 +2020-01-08 07:15,1.11481,1.11508,1.11447,1.11452,2112 +2020-01-08 07:30,1.11451,1.11517,1.11432,1.11507,2843 +2020-01-08 07:45,1.11508,1.11549,1.11504,1.11511,2321 +2020-01-08 08:00,1.11513,1.11533,1.11315,1.11428,3982 +2020-01-08 08:15,1.11427,1.1144,1.11312,1.11374,5521 +2020-01-08 08:30,1.11374,1.11374,1.11301,1.11353,3707 +2020-01-08 08:45,1.11354,1.11374,1.11337,1.11348,2640 +2020-01-08 09:00,1.11349,1.11355,1.11253,1.11267,2978 +2020-01-08 09:15,1.11267,1.11353,1.11267,1.11352,2172 +2020-01-08 09:30,1.11352,1.11447,1.11342,1.11416,2526 +2020-01-08 09:45,1.11416,1.11423,1.1138,1.11383,3957 +2020-01-08 10:00,1.11382,1.11385,1.11324,1.1134,3259 +2020-01-08 10:15,1.11339,1.11348,1.113,1.11309,2241 +2020-01-08 10:30,1.11308,1.11328,1.11277,1.11328,1855 +2020-01-08 10:45,1.11327,1.11328,1.11254,1.11273,2897 +2020-01-08 11:00,1.11274,1.11309,1.11269,1.11282,1775 +2020-01-08 11:15,1.11282,1.11299,1.11196,1.11286,3084 +2020-01-08 11:30,1.11286,1.11305,1.11248,1.11287,2652 +2020-01-08 11:45,1.11287,1.11311,1.11247,1.11271,5514 +2020-01-08 12:00,1.11271,1.11307,1.1125,1.11292,2596 +2020-01-08 12:15,1.11292,1.11304,1.11219,1.11247,2209 +2020-01-08 12:30,1.11248,1.11262,1.11218,1.11226,3186 +2020-01-08 12:45,1.11225,1.11244,1.11139,1.11167,3533 +2020-01-08 13:00,1.11166,1.11194,1.11123,1.11155,3286 +2020-01-08 13:15,1.11155,1.11179,1.11111,1.11147,4545 +2020-01-08 13:30,1.11147,1.11198,1.11145,1.1116,4031 +2020-01-08 13:45,1.11163,1.11224,1.11156,1.11199,1951 +2020-01-08 14:00,1.112,1.11227,1.11176,1.11214,3079 +2020-01-08 14:15,1.11214,1.11249,1.112,1.11247,1882 +2020-01-08 14:30,1.11248,1.11269,1.11176,1.11184,3616 +2020-01-08 14:45,1.11185,1.11254,1.11176,1.11245,2408 +2020-01-08 15:00,1.11244,1.11308,1.11225,1.11301,2378 +2020-01-08 15:15,1.11301,1.11306,1.11222,1.11238,2448 +2020-01-08 15:30,1.11237,1.11238,1.11158,1.11224,3225 +2020-01-08 15:45,1.11223,1.11226,1.11153,1.11198,3232 +2020-01-08 16:00,1.11197,1.11201,1.11112,1.11138,2292 +2020-01-08 16:15,1.11139,1.1115,1.11087,1.11123,2288 +2020-01-08 16:30,1.11123,1.11169,1.11102,1.11163,4994 +2020-01-08 16:45,1.11164,1.11179,1.11102,1.11164,3913 +2020-01-08 17:00,1.11163,1.11259,1.11155,1.11219,3606 +2020-01-08 17:15,1.11219,1.11233,1.11188,1.11207,2738 +2020-01-08 17:30,1.11208,1.11216,1.11135,1.11145,2325 +2020-01-08 17:45,1.11144,1.11183,1.11131,1.1118,2225 +2020-01-08 18:00,1.1118,1.1118,1.11104,1.11126,2328 +2020-01-08 18:15,1.11126,1.11148,1.11111,1.11147,1608 +2020-01-08 18:30,1.11146,1.11158,1.11131,1.11141,1034 +2020-01-08 18:45,1.11141,1.11146,1.11106,1.11131,842 +2020-01-08 19:00,1.11133,1.1114,1.11101,1.11108,963 +2020-01-08 19:15,1.11108,1.11111,1.11081,1.11102,925 +2020-01-08 19:30,1.11105,1.11119,1.11099,1.11103,1009 +2020-01-08 19:45,1.11103,1.11129,1.11098,1.11112,1017 +2020-01-08 20:00,1.11113,1.11118,1.11097,1.11108,1022 +2020-01-08 20:15,1.11109,1.11119,1.11104,1.11114,574 +2020-01-08 20:30,1.11114,1.11119,1.11103,1.11108,574 +2020-01-08 20:45,1.11108,1.11148,1.11106,1.11118,2803 +2020-01-08 21:00,1.11119,1.11127,1.11081,1.11081,706 +2020-01-08 21:15,1.11084,1.111,1.11084,1.11093,288 +2020-01-08 21:30,1.11092,1.11094,1.11083,1.11085,267 +2020-01-08 21:45,1.11085,1.11086,1.11016,1.11053,680 +2020-01-08 22:00,1.11053,1.11077,1.11033,1.11068,291 +2020-01-08 22:15,1.11068,1.11146,1.11068,1.11105,308 +2020-01-08 22:30,1.11104,1.11105,1.11088,1.111,141 +2020-01-08 22:45,1.111,1.11131,1.11089,1.11097,311 +2020-01-08 23:00,1.11098,1.11098,1.11071,1.11083,283 +2020-01-08 23:15,1.11085,1.11104,1.11081,1.11102,297 +2020-01-08 23:30,1.11102,1.11115,1.11097,1.11109,404 +2020-01-08 23:45,1.11109,1.1113,1.11109,1.11129,414 +2020-01-09 00:00,1.1113,1.11144,1.11091,1.11117,1488 +2020-01-09 00:15,1.11117,1.11134,1.11101,1.11134,910 +2020-01-09 00:30,1.11133,1.11159,1.11133,1.11143,1442 +2020-01-09 00:45,1.11144,1.11144,1.11122,1.11134,1302 +2020-01-09 01:00,1.11135,1.11149,1.11128,1.11137,920 +2020-01-09 01:15,1.11138,1.1114,1.1111,1.11133,902 +2020-01-09 01:30,1.11132,1.11185,1.11131,1.11184,1441 +2020-01-09 01:45,1.11184,1.11195,1.11171,1.11174,1212 +2020-01-09 02:00,1.11173,1.1119,1.11172,1.11188,865 +2020-01-09 02:15,1.11189,1.11189,1.11153,1.1116,796 +2020-01-09 02:30,1.11161,1.11174,1.11152,1.11154,472 +2020-01-09 02:45,1.11155,1.11159,1.11145,1.11152,723 +2020-01-09 03:00,1.11152,1.11153,1.11141,1.11153,537 +2020-01-09 03:15,1.11152,1.11163,1.11152,1.11159,600 +2020-01-09 03:30,1.1116,1.11175,1.11159,1.11174,474 +2020-01-09 03:45,1.11174,1.11179,1.11152,1.11152,763 +2020-01-09 04:00,1.11153,1.11157,1.1113,1.11132,600 +2020-01-09 04:15,1.11132,1.11138,1.11127,1.11137,367 +2020-01-09 04:30,1.11138,1.11158,1.11133,1.11158,859 +2020-01-09 04:45,1.11158,1.11158,1.11143,1.11154,363 +2020-01-09 05:00,1.11154,1.11158,1.11151,1.11153,403 +2020-01-09 05:15,1.11153,1.11172,1.11152,1.11168,553 +2020-01-09 05:30,1.11169,1.11175,1.11162,1.11162,426 +2020-01-09 05:45,1.11163,1.11189,1.11161,1.11182,673 +2020-01-09 06:00,1.11182,1.1119,1.11162,1.11166,929 +2020-01-09 06:15,1.11166,1.11169,1.11147,1.11148,623 +2020-01-09 06:30,1.11147,1.11157,1.11113,1.11121,1211 +2020-01-09 06:45,1.1112,1.11153,1.11111,1.11123,1599 +2020-01-09 07:00,1.11123,1.11149,1.1111,1.11132,1918 +2020-01-09 07:15,1.11132,1.11164,1.11125,1.11156,1563 +2020-01-09 07:30,1.11156,1.11199,1.11147,1.11191,2071 +2020-01-09 07:45,1.1119,1.11204,1.11131,1.11152,2259 +2020-01-09 08:00,1.11152,1.11162,1.11051,1.11071,3030 +2020-01-09 08:15,1.11072,1.11117,1.11067,1.11117,2466 +2020-01-09 08:30,1.11117,1.11159,1.11105,1.11157,2081 +2020-01-09 08:45,1.11156,1.11177,1.11136,1.11172,2102 +2020-01-09 09:00,1.11172,1.1119,1.11128,1.11145,2477 +2020-01-09 09:15,1.11144,1.11144,1.11103,1.11105,2250 +2020-01-09 09:30,1.11104,1.11111,1.11021,1.11039,2816 +2020-01-09 09:45,1.11037,1.11066,1.10984,1.10995,4391 +2020-01-09 10:00,1.10994,1.11021,1.10966,1.11014,2527 +2020-01-09 10:15,1.11013,1.11039,1.10996,1.11037,1690 +2020-01-09 10:30,1.11038,1.11118,1.1103,1.11108,1834 +2020-01-09 10:45,1.11108,1.11114,1.11083,1.11096,1651 +2020-01-09 11:00,1.11096,1.11126,1.11095,1.11114,1330 +2020-01-09 11:15,1.11115,1.11116,1.11084,1.111,1884 +2020-01-09 11:30,1.11101,1.11107,1.11039,1.11039,1332 +2020-01-09 11:45,1.11038,1.11099,1.11034,1.11046,1609 +2020-01-09 12:00,1.11045,1.11126,1.11033,1.1112,1807 +2020-01-09 12:15,1.1112,1.11128,1.11093,1.1111,2224 +2020-01-09 12:30,1.1111,1.11167,1.1111,1.11119,2133 +2020-01-09 12:45,1.11119,1.11157,1.11106,1.11135,2511 +2020-01-09 13:00,1.11135,1.11143,1.11074,1.11094,2750 +2020-01-09 13:15,1.11094,1.11121,1.11058,1.11116,2397 +2020-01-09 13:30,1.11115,1.11141,1.1111,1.11137,1672 +2020-01-09 13:45,1.11138,1.11173,1.11118,1.11148,2633 +2020-01-09 14:00,1.11149,1.11149,1.11081,1.11101,3640 +2020-01-09 14:15,1.11101,1.11101,1.11038,1.11063,2446 +2020-01-09 14:30,1.11062,1.11088,1.11046,1.11082,2588 +2020-01-09 14:45,1.11082,1.11101,1.11074,1.11082,2241 +2020-01-09 15:00,1.11082,1.11107,1.11058,1.11105,2107 +2020-01-09 15:15,1.11105,1.11107,1.11024,1.11063,2275 +2020-01-09 15:30,1.11062,1.11063,1.10924,1.11002,2876 +2020-01-09 15:45,1.11003,1.11035,1.10944,1.11022,3916 +2020-01-09 16:00,1.11021,1.11023,1.10947,1.10965,3902 +2020-01-09 16:15,1.10965,1.1098,1.10935,1.1098,3986 +2020-01-09 16:30,1.1098,1.11032,1.10976,1.11026,1917 +2020-01-09 16:45,1.11026,1.11061,1.11016,1.1106,1809 +2020-01-09 17:00,1.11059,1.11081,1.11037,1.1108,3363 +2020-01-09 17:15,1.11081,1.11097,1.11048,1.11091,1685 +2020-01-09 17:30,1.11092,1.11113,1.11058,1.11058,1615 +2020-01-09 17:45,1.11058,1.11076,1.11046,1.11046,1170 +2020-01-09 18:00,1.11046,1.1106,1.11033,1.11053,1530 +2020-01-09 18:15,1.11053,1.11086,1.1105,1.11071,1765 +2020-01-09 18:30,1.11072,1.11082,1.11045,1.11067,2219 +2020-01-09 18:45,1.11067,1.11079,1.1105,1.1105,886 +2020-01-09 19:00,1.11051,1.11088,1.11049,1.11085,1023 +2020-01-09 19:15,1.11085,1.11098,1.11081,1.11088,674 +2020-01-09 19:30,1.11089,1.11093,1.11072,1.11081,1022 +2020-01-09 19:45,1.1108,1.11087,1.11059,1.11061,677 +2020-01-09 20:00,1.1106,1.11073,1.1105,1.11061,792 +2020-01-09 20:15,1.11062,1.11072,1.11054,1.11055,690 +2020-01-09 20:30,1.11055,1.11064,1.11044,1.11048,709 +2020-01-09 20:45,1.11047,1.11065,1.11038,1.11062,988 +2020-01-09 21:00,1.11062,1.11068,1.11044,1.1105,439 +2020-01-09 21:15,1.1105,1.1105,1.11034,1.11038,364 +2020-01-09 21:30,1.11038,1.11056,1.11038,1.11055,259 +2020-01-09 21:45,1.11054,1.11069,1.11047,1.11051,406 +2020-01-09 22:00,1.11051,1.1106,1.11028,1.1105,357 +2020-01-09 22:15,1.1105,1.11066,1.11048,1.1105,129 +2020-01-09 22:30,1.1105,1.11055,1.11045,1.11052,419 +2020-01-09 22:45,1.11053,1.11066,1.11052,1.11065,115 +2020-01-09 23:00,1.11065,1.11075,1.11063,1.11074,286 +2020-01-09 23:15,1.11075,1.11076,1.11065,1.1107,172 +2020-01-09 23:30,1.11069,1.11075,1.11063,1.11069,290 +2020-01-09 23:45,1.11069,1.11093,1.11068,1.11093,239 +2020-01-10 00:00,1.11092,1.11094,1.11067,1.11068,632 +2020-01-10 00:15,1.11071,1.11073,1.11066,1.11072,373 +2020-01-10 00:30,1.11072,1.11091,1.11063,1.11063,834 +2020-01-10 00:45,1.11065,1.11079,1.1106,1.11069,767 +2020-01-10 01:00,1.11069,1.11073,1.11059,1.11061,610 +2020-01-10 01:15,1.11061,1.1107,1.11056,1.11062,454 +2020-01-10 01:30,1.11063,1.11073,1.11046,1.11048,484 +2020-01-10 01:45,1.11047,1.1105,1.1102,1.11042,866 +2020-01-10 02:00,1.11041,1.11053,1.11037,1.11049,534 +2020-01-10 02:15,1.11048,1.11051,1.11036,1.11043,997 +2020-01-10 02:30,1.11043,1.11051,1.11036,1.11047,642 +2020-01-10 02:45,1.11046,1.11083,1.11046,1.11079,470 +2020-01-10 03:00,1.1108,1.11081,1.11071,1.11074,400 +2020-01-10 03:15,1.11075,1.11087,1.11072,1.11072,452 +2020-01-10 03:30,1.11073,1.11084,1.11071,1.11076,355 +2020-01-10 03:45,1.11076,1.11083,1.11074,1.11081,481 +2020-01-10 04:00,1.11081,1.11082,1.11064,1.11082,511 +2020-01-10 04:15,1.11082,1.1109,1.11071,1.11086,583 +2020-01-10 04:30,1.11086,1.11111,1.11078,1.11081,373 +2020-01-10 04:45,1.1108,1.11081,1.11068,1.11074,330 +2020-01-10 05:00,1.11074,1.11081,1.1107,1.11079,449 +2020-01-10 05:15,1.11079,1.11091,1.11076,1.1109,355 +2020-01-10 05:30,1.11091,1.11096,1.11079,1.11091,541 +2020-01-10 05:45,1.1109,1.111,1.11084,1.11089,494 +2020-01-10 06:00,1.1109,1.11099,1.11087,1.11094,559 +2020-01-10 06:15,1.11094,1.11101,1.11074,1.11083,732 +2020-01-10 06:30,1.11083,1.11083,1.11068,1.11075,457 +2020-01-10 06:45,1.11075,1.11091,1.1107,1.11091,664 +2020-01-10 07:00,1.11092,1.1111,1.1108,1.11096,1367 +2020-01-10 07:15,1.11092,1.11092,1.1108,1.11089,932 +2020-01-10 07:30,1.11089,1.11089,1.11045,1.11056,1662 +2020-01-10 07:45,1.11057,1.11073,1.11042,1.1107,1291 +2020-01-10 08:00,1.11069,1.11092,1.11047,1.1108,2076 +2020-01-10 08:15,1.1108,1.11084,1.11011,1.11016,1685 +2020-01-10 08:30,1.11017,1.11019,1.10932,1.10942,2593 +2020-01-10 08:45,1.10942,1.10999,1.10935,1.10993,2115 +2020-01-10 09:00,1.10994,1.10994,1.10934,1.10956,1960 +2020-01-10 09:15,1.10956,1.1097,1.10912,1.10945,2282 +2020-01-10 09:30,1.10945,1.1096,1.10938,1.10944,2485 +2020-01-10 09:45,1.10945,1.11,1.10944,1.10963,2672 +2020-01-10 10:00,1.10963,1.1098,1.1095,1.10971,1605 +2020-01-10 10:15,1.10969,1.10984,1.10954,1.10972,1805 +2020-01-10 10:30,1.10972,1.10972,1.10909,1.10937,1953 +2020-01-10 10:45,1.10938,1.10946,1.10902,1.10926,1910 +2020-01-10 11:00,1.10926,1.10926,1.1085,1.10879,1889 +2020-01-10 11:15,1.10879,1.10923,1.10868,1.1092,1350 +2020-01-10 11:30,1.10923,1.10962,1.10922,1.10926,1419 +2020-01-10 11:45,1.10927,1.10948,1.10915,1.1093,1217 +2020-01-10 12:00,1.10929,1.10947,1.10916,1.10942,1872 +2020-01-10 12:15,1.10942,1.10954,1.10926,1.10952,1170 +2020-01-10 12:30,1.10953,1.10971,1.1095,1.10961,1123 +2020-01-10 12:45,1.1096,1.10994,1.10947,1.10984,1547 +2020-01-10 13:00,1.10984,1.10996,1.10898,1.10911,2360 +2020-01-10 13:15,1.10911,1.10951,1.10898,1.10921,2506 +2020-01-10 13:30,1.10926,1.11136,1.10925,1.1107,5987 +2020-01-10 13:45,1.11069,1.11098,1.10947,1.10966,4139 +2020-01-10 14:00,1.10967,1.1099,1.10919,1.10946,4030 +2020-01-10 14:15,1.10945,1.10987,1.10862,1.10963,3906 +2020-01-10 14:30,1.10963,1.11007,1.10941,1.10994,3550 +2020-01-10 14:45,1.10994,1.11034,1.10927,1.11007,2703 +2020-01-10 15:00,1.11006,1.11093,1.10983,1.11067,3390 +2020-01-10 15:15,1.11067,1.11117,1.11045,1.11083,2617 +2020-01-10 15:30,1.11082,1.11163,1.11077,1.11124,3140 +2020-01-10 15:45,1.11125,1.11179,1.11123,1.11128,4039 +2020-01-10 16:00,1.11128,1.11144,1.11111,1.11134,2546 +2020-01-10 16:15,1.11134,1.11182,1.1113,1.11155,2314 +2020-01-10 16:30,1.11155,1.11205,1.11136,1.1115,2275 +2020-01-10 16:45,1.11151,1.11192,1.11149,1.1118,1419 +2020-01-10 17:00,1.11179,1.11243,1.11179,1.1124,2086 +2020-01-10 17:15,1.1124,1.11291,1.11239,1.11258,1939 +2020-01-10 17:30,1.11259,1.11265,1.11213,1.1122,1597 +2020-01-10 17:45,1.1122,1.11228,1.11205,1.11224,1198 +2020-01-10 18:00,1.11223,1.11232,1.11193,1.11214,1121 +2020-01-10 18:15,1.11213,1.11213,1.11192,1.11206,1885 +2020-01-10 18:30,1.11206,1.11214,1.11193,1.11199,687 +2020-01-10 18:45,1.11199,1.11214,1.11183,1.11184,634 +2020-01-10 19:00,1.11186,1.11205,1.11171,1.11192,961 +2020-01-10 19:15,1.11193,1.11212,1.11185,1.11208,793 +2020-01-10 19:30,1.11211,1.11223,1.11206,1.11218,759 +2020-01-10 19:45,1.11219,1.11232,1.11212,1.1122,664 +2020-01-10 20:00,1.11221,1.11221,1.11194,1.11207,708 +2020-01-10 20:15,1.11207,1.1122,1.112,1.112,445 +2020-01-10 20:30,1.11201,1.11219,1.11198,1.1121,493 +2020-01-10 20:45,1.1121,1.11214,1.11198,1.1121,662 +2020-01-10 21:00,1.1121,1.11225,1.11204,1.11205,537 +2020-01-10 21:15,1.11204,1.11213,1.11198,1.11198,316 +2020-01-10 21:30,1.11199,1.1122,1.11198,1.11219,210 +2020-01-10 21:45,1.11219,1.11223,1.11165,1.11165,782 +2020-01-12 22:00,1.11141,1.11209,1.11141,1.11203,154 +2020-01-12 22:15,1.11203,1.11203,1.11193,1.11196,73 +2020-01-12 22:30,1.11195,1.11196,1.11128,1.11161,199 +2020-01-12 22:45,1.11161,1.11168,1.11131,1.11166,223 +2020-01-12 23:00,1.11166,1.11182,1.11146,1.11182,462 +2020-01-12 23:15,1.1118,1.1118,1.11156,1.1116,327 +2020-01-12 23:30,1.1116,1.11161,1.11151,1.11157,179 +2020-01-12 23:45,1.11157,1.11167,1.11156,1.11161,282 +2020-01-13 00:00,1.11161,1.11183,1.1116,1.11182,311 +2020-01-13 00:15,1.11182,1.11187,1.1116,1.11163,524 +2020-01-13 00:30,1.11163,1.11174,1.11159,1.11166,386 +2020-01-13 00:45,1.11167,1.11187,1.11166,1.11187,282 +2020-01-13 01:00,1.11186,1.11192,1.11172,1.11189,682 +2020-01-13 01:15,1.11189,1.112,1.1118,1.11197,489 +2020-01-13 01:30,1.11197,1.11202,1.11188,1.11198,543 +2020-01-13 01:45,1.11197,1.11214,1.11196,1.11213,382 +2020-01-13 02:00,1.11213,1.11215,1.11205,1.11208,713 +2020-01-13 02:15,1.11207,1.11208,1.112,1.11207,455 +2020-01-13 02:30,1.11208,1.11233,1.11205,1.11233,351 +2020-01-13 02:45,1.11233,1.11261,1.11227,1.11258,635 +2020-01-13 03:00,1.11257,1.11285,1.11252,1.11283,1029 +2020-01-13 03:15,1.11284,1.11284,1.11257,1.11264,629 +2020-01-13 03:30,1.11264,1.11281,1.11263,1.11276,553 +2020-01-13 03:45,1.11276,1.11299,1.11276,1.11293,535 +2020-01-13 04:00,1.11292,1.11292,1.11274,1.11283,277 +2020-01-13 04:15,1.11283,1.11306,1.11281,1.11292,594 +2020-01-13 04:30,1.11293,1.11303,1.11292,1.11293,208 +2020-01-13 04:45,1.11292,1.113,1.11272,1.11272,293 +2020-01-13 05:00,1.11272,1.113,1.11271,1.11293,451 +2020-01-13 05:15,1.11294,1.113,1.11283,1.11289,408 +2020-01-13 05:30,1.11287,1.11301,1.11286,1.11297,313 +2020-01-13 05:45,1.11298,1.11318,1.11295,1.11297,570 +2020-01-13 06:00,1.11296,1.11298,1.1125,1.11258,445 +2020-01-13 06:15,1.11259,1.11294,1.11257,1.11292,873 +2020-01-13 06:30,1.11293,1.11293,1.11277,1.11282,392 +2020-01-13 06:45,1.11282,1.11302,1.11281,1.11287,516 +2020-01-13 07:00,1.11287,1.11301,1.11259,1.1128,1425 +2020-01-13 07:15,1.11278,1.11283,1.11246,1.11273,1107 +2020-01-13 07:30,1.11272,1.11298,1.11259,1.11288,1581 +2020-01-13 07:45,1.11289,1.113,1.1122,1.11227,1796 +2020-01-13 08:00,1.11227,1.11286,1.11223,1.11242,8740 +2020-01-13 08:15,1.1124,1.11252,1.112,1.11231,2916 +2020-01-13 08:30,1.11232,1.11277,1.11214,1.11272,2351 +2020-01-13 08:45,1.11271,1.11296,1.11244,1.1128,2007 +2020-01-13 09:00,1.1128,1.11361,1.11244,1.11244,3560 +2020-01-13 09:15,1.11244,1.11246,1.11195,1.11216,2617 +2020-01-13 09:30,1.11216,1.11216,1.11171,1.11173,2279 +2020-01-13 09:45,1.11173,1.112,1.11147,1.11151,1934 +2020-01-13 10:00,1.11151,1.1119,1.11125,1.11171,1812 +2020-01-13 10:15,1.1117,1.11195,1.11162,1.11174,1539 +2020-01-13 10:30,1.11174,1.11188,1.11145,1.11169,1860 +2020-01-13 10:45,1.11169,1.11181,1.1115,1.11167,1740 +2020-01-13 11:00,1.11167,1.11222,1.11164,1.11211,1610 +2020-01-13 11:15,1.11211,1.11212,1.11182,1.11195,1515 +2020-01-13 11:30,1.11199,1.11205,1.11177,1.11189,1330 +2020-01-13 11:45,1.11187,1.1124,1.11175,1.11204,1873 +2020-01-13 12:00,1.11204,1.11221,1.11184,1.11214,1858 +2020-01-13 12:15,1.11214,1.11258,1.11213,1.11254,1663 +2020-01-13 12:30,1.11252,1.11262,1.1121,1.11216,1488 +2020-01-13 12:45,1.11216,1.1126,1.11192,1.11246,1869 +2020-01-13 13:00,1.11245,1.11284,1.11242,1.11263,1895 +2020-01-13 13:15,1.11262,1.11271,1.11243,1.11246,1685 +2020-01-13 13:30,1.11245,1.11249,1.11211,1.11231,1938 +2020-01-13 13:45,1.1123,1.11241,1.11182,1.11186,2310 +2020-01-13 14:00,1.11187,1.11218,1.11176,1.11208,2161 +2020-01-13 14:15,1.11211,1.11227,1.11175,1.11204,2736 +2020-01-13 14:30,1.11205,1.11267,1.11204,1.11211,3655 +2020-01-13 14:45,1.11211,1.11247,1.112,1.1124,2959 +2020-01-13 15:00,1.11239,1.11268,1.1121,1.11252,2656 +2020-01-13 15:15,1.11253,1.11298,1.1123,1.11295,2532 +2020-01-13 15:30,1.11295,1.11382,1.11293,1.11361,2716 +2020-01-13 15:45,1.1136,1.11372,1.11325,1.11331,2322 +2020-01-13 16:00,1.1133,1.11392,1.11325,1.11389,2008 +2020-01-13 16:15,1.1139,1.11442,1.11355,1.11434,2361 +2020-01-13 16:30,1.11434,1.11469,1.1137,1.11389,2318 +2020-01-13 16:45,1.1139,1.11412,1.11372,1.11372,1351 +2020-01-13 17:00,1.11372,1.11395,1.11366,1.11392,1295 +2020-01-13 17:15,1.11393,1.11404,1.11383,1.11399,880 +2020-01-13 17:30,1.11398,1.114,1.11355,1.11367,894 +2020-01-13 17:45,1.11368,1.11418,1.11367,1.11397,959 +2020-01-13 18:00,1.11397,1.11428,1.11384,1.11422,1090 +2020-01-13 18:15,1.11422,1.11448,1.11412,1.11431,848 +2020-01-13 18:30,1.11431,1.11431,1.11394,1.11401,941 +2020-01-13 18:45,1.11403,1.11417,1.11394,1.11396,597 +2020-01-13 19:00,1.11395,1.11414,1.11387,1.11402,1894 +2020-01-13 19:15,1.11402,1.11403,1.11382,1.11391,608 +2020-01-13 19:30,1.11392,1.11403,1.11385,1.11387,481 +2020-01-13 19:45,1.11387,1.11407,1.11376,1.11382,754 +2020-01-13 20:00,1.11381,1.11382,1.11369,1.11381,688 +2020-01-13 20:15,1.11382,1.11386,1.11367,1.11376,769 +2020-01-13 20:30,1.11376,1.11381,1.11361,1.11367,429 +2020-01-13 20:45,1.11369,1.11382,1.11361,1.11375,600 +2020-01-13 21:00,1.11376,1.11379,1.11357,1.11361,404 +2020-01-13 21:15,1.11362,1.11363,1.11341,1.11361,409 +2020-01-13 21:30,1.11362,1.11363,1.11338,1.11338,168 +2020-01-13 21:45,1.11337,1.11356,1.11331,1.11338,482 +2020-01-13 22:00,1.11338,1.1139,1.1132,1.11364,305 +2020-01-13 22:15,1.11363,1.11384,1.11358,1.11376,548 +2020-01-13 22:30,1.11374,1.11388,1.11357,1.11362,185 +2020-01-13 22:45,1.11359,1.11368,1.11352,1.11353,99 +2020-01-13 23:00,1.11355,1.11362,1.11354,1.11359,274 +2020-01-13 23:15,1.11359,1.11364,1.11352,1.1136,289 +2020-01-13 23:30,1.11359,1.11365,1.11358,1.11362,218 +2020-01-13 23:45,1.11361,1.11363,1.11333,1.11344,424 +2020-01-14 00:00,1.11344,1.11384,1.11339,1.11376,876 +2020-01-14 00:15,1.11375,1.11396,1.11373,1.11388,482 +2020-01-14 00:30,1.11388,1.11404,1.11388,1.11403,398 +2020-01-14 00:45,1.11404,1.11421,1.1137,1.11383,958 +2020-01-14 01:00,1.11384,1.11391,1.11363,1.11375,1197 +2020-01-14 01:15,1.11375,1.11409,1.11347,1.11349,1525 +2020-01-14 01:30,1.11351,1.11365,1.11324,1.11328,1249 +2020-01-14 01:45,1.11329,1.11372,1.11312,1.11371,1293 +2020-01-14 02:00,1.11372,1.11377,1.11353,1.11375,939 +2020-01-14 02:15,1.11376,1.11384,1.11358,1.11364,574 +2020-01-14 02:30,1.11364,1.11386,1.11364,1.11369,942 +2020-01-14 02:45,1.11368,1.11379,1.11361,1.11372,776 +2020-01-14 03:00,1.11373,1.11378,1.11352,1.11353,790 +2020-01-14 03:15,1.11354,1.11387,1.11354,1.11374,766 +2020-01-14 03:30,1.11373,1.11375,1.11354,1.11365,687 +2020-01-14 03:45,1.11366,1.11377,1.11355,1.11355,716 +2020-01-14 04:00,1.11356,1.11381,1.11355,1.11374,642 +2020-01-14 04:15,1.11375,1.11378,1.11367,1.11371,324 +2020-01-14 04:30,1.11371,1.11372,1.11357,1.11369,453 +2020-01-14 04:45,1.11368,1.11374,1.11362,1.11364,396 +2020-01-14 05:00,1.11365,1.11371,1.11359,1.11364,303 +2020-01-14 05:15,1.11364,1.11375,1.11363,1.11363,387 +2020-01-14 05:30,1.11361,1.11384,1.1136,1.11379,773 +2020-01-14 05:45,1.11378,1.11382,1.11367,1.1137,589 +2020-01-14 06:00,1.11369,1.1139,1.11348,1.11386,625 +2020-01-14 06:15,1.11386,1.11416,1.11384,1.1141,756 +2020-01-14 06:30,1.1141,1.11435,1.11391,1.11424,740 +2020-01-14 06:45,1.11423,1.11444,1.11404,1.11444,1386 +2020-01-14 07:00,1.11444,1.11444,1.11384,1.11399,1699 +2020-01-14 07:15,1.11398,1.11437,1.11373,1.11436,1838 +2020-01-14 07:30,1.11435,1.11435,1.11385,1.11389,1488 +2020-01-14 07:45,1.11389,1.11427,1.11377,1.11423,1896 +2020-01-14 08:00,1.11423,1.1144,1.1137,1.11376,2493 +2020-01-14 08:15,1.11375,1.11409,1.11353,1.1137,2288 +2020-01-14 08:30,1.11369,1.11415,1.11349,1.11398,2348 +2020-01-14 08:45,1.11397,1.11405,1.11333,1.11352,2404 +2020-01-14 09:00,1.11351,1.11354,1.11304,1.11319,2112 +2020-01-14 09:15,1.1132,1.11356,1.11319,1.11345,1486 +2020-01-14 09:30,1.11344,1.11349,1.11303,1.11312,1662 +2020-01-14 09:45,1.11311,1.11342,1.11305,1.11313,1691 +2020-01-14 10:00,1.11313,1.11328,1.11304,1.11308,1260 +2020-01-14 10:15,1.11308,1.11321,1.11284,1.11314,1414 +2020-01-14 10:30,1.11315,1.11329,1.11312,1.11319,1297 +2020-01-14 10:45,1.11319,1.11354,1.11319,1.11339,1396 +2020-01-14 11:00,1.11338,1.11345,1.11289,1.11309,1943 +2020-01-14 11:15,1.11308,1.11332,1.1129,1.11291,2049 +2020-01-14 11:30,1.11292,1.11326,1.11264,1.11318,2111 +2020-01-14 11:45,1.11317,1.11324,1.11263,1.11303,2483 +2020-01-14 12:00,1.11303,1.11303,1.11223,1.11223,2626 +2020-01-14 12:15,1.11223,1.11241,1.11194,1.11236,2020 +2020-01-14 12:30,1.11236,1.11239,1.11203,1.11236,1578 +2020-01-14 12:45,1.11236,1.11245,1.11194,1.11207,2183 +2020-01-14 13:00,1.11206,1.11208,1.11133,1.11149,2568 +2020-01-14 13:15,1.11147,1.11148,1.11055,1.11097,4004 +2020-01-14 13:30,1.11097,1.11159,1.11051,1.11102,4918 +2020-01-14 13:45,1.11101,1.11114,1.11066,1.11102,2822 +2020-01-14 14:00,1.11102,1.11132,1.11045,1.11062,4124 +2020-01-14 14:15,1.11061,1.11127,1.11048,1.11126,3071 +2020-01-14 14:30,1.11126,1.11172,1.11122,1.11165,3620 +2020-01-14 14:45,1.11164,1.11234,1.11156,1.11216,3110 +2020-01-14 15:00,1.11216,1.11223,1.11185,1.11194,2740 +2020-01-14 15:15,1.11193,1.11202,1.11159,1.1118,4673 +2020-01-14 15:30,1.11181,1.11232,1.11138,1.11171,2923 +2020-01-14 15:45,1.11171,1.11227,1.11148,1.11221,2947 +2020-01-14 16:00,1.11222,1.11283,1.11202,1.11263,3037 +2020-01-14 16:15,1.11262,1.11264,1.11229,1.11242,1739 +2020-01-14 16:30,1.11241,1.11293,1.11238,1.11291,1607 +2020-01-14 16:45,1.11292,1.11304,1.11279,1.11295,1299 +2020-01-14 17:00,1.11295,1.11318,1.11273,1.1131,1335 +2020-01-14 17:15,1.1131,1.11327,1.11299,1.11316,890 +2020-01-14 17:30,1.11316,1.11321,1.11296,1.11304,717 +2020-01-14 17:45,1.11304,1.11325,1.11297,1.1131,1647 +2020-01-14 18:00,1.1131,1.11327,1.11307,1.11317,1034 +2020-01-14 18:15,1.11316,1.11319,1.11298,1.1131,1057 +2020-01-14 18:30,1.1131,1.11348,1.11309,1.11321,1902 +2020-01-14 18:45,1.1132,1.11333,1.11305,1.11314,1140 +2020-01-14 19:00,1.11313,1.11329,1.11303,1.11316,1040 +2020-01-14 19:15,1.11317,1.11325,1.11308,1.11321,899 +2020-01-14 19:30,1.1132,1.1132,1.11298,1.11302,746 +2020-01-14 19:45,1.11303,1.11305,1.11279,1.1128,980 +2020-01-14 20:00,1.11279,1.11291,1.1127,1.11282,792 +2020-01-14 20:15,1.11282,1.11298,1.1128,1.11297,737 +2020-01-14 20:30,1.11296,1.11297,1.11289,1.11291,475 +2020-01-14 20:45,1.11291,1.11302,1.11277,1.11283,1504 +2020-01-14 21:00,1.11283,1.11283,1.11269,1.11274,625 +2020-01-14 21:15,1.11274,1.11274,1.1125,1.11255,519 +2020-01-14 21:30,1.11254,1.11264,1.11246,1.11264,253 +2020-01-14 21:45,1.11264,1.11284,1.11256,1.11274,281 +2020-01-14 22:00,1.11284,1.11287,1.11259,1.1127,240 +2020-01-14 22:15,1.11269,1.11271,1.11264,1.11267,257 +2020-01-14 22:30,1.11267,1.11272,1.1126,1.11264,274 +2020-01-14 22:45,1.11262,1.11268,1.11262,1.11262,137 +2020-01-14 23:00,1.11262,1.11278,1.11262,1.11274,194 +2020-01-14 23:15,1.11274,1.1128,1.11272,1.11274,252 +2020-01-14 23:30,1.11274,1.1128,1.11261,1.1127,518 +2020-01-14 23:45,1.11269,1.11279,1.11265,1.11275,236 +2020-01-15 00:00,1.11276,1.11297,1.1127,1.11295,522 +2020-01-15 00:15,1.11296,1.11302,1.1129,1.113,430 +2020-01-15 00:30,1.113,1.11304,1.11286,1.11296,569 +2020-01-15 00:45,1.11298,1.11307,1.11288,1.11295,562 +2020-01-15 01:00,1.11294,1.11311,1.1129,1.11309,458 +2020-01-15 01:15,1.11308,1.11309,1.11274,1.11274,855 +2020-01-15 01:30,1.11275,1.11288,1.11272,1.11287,663 +2020-01-15 01:45,1.11286,1.11301,1.11285,1.11296,785 +2020-01-15 02:00,1.11295,1.11311,1.11295,1.11307,755 +2020-01-15 02:15,1.11308,1.11308,1.11294,1.11295,675 +2020-01-15 02:30,1.11295,1.11297,1.1127,1.11282,672 +2020-01-15 02:45,1.11282,1.11292,1.11271,1.11291,364 +2020-01-15 03:00,1.11292,1.11296,1.1128,1.11287,309 +2020-01-15 03:15,1.11287,1.11301,1.11284,1.11297,532 +2020-01-15 03:30,1.11297,1.11308,1.11289,1.11304,475 +2020-01-15 03:45,1.11306,1.11311,1.11296,1.11302,327 +2020-01-15 04:00,1.11303,1.11306,1.11297,1.11306,466 +2020-01-15 04:15,1.11306,1.11316,1.11301,1.11316,420 +2020-01-15 04:30,1.11316,1.11337,1.11315,1.1133,469 +2020-01-15 04:45,1.11329,1.11336,1.11324,1.11331,674 +2020-01-15 05:00,1.1133,1.11332,1.11316,1.1132,424 +2020-01-15 05:15,1.1132,1.11331,1.1132,1.11326,594 +2020-01-15 05:30,1.11325,1.1133,1.11319,1.11322,466 +2020-01-15 05:45,1.11321,1.11346,1.11321,1.11339,302 +2020-01-15 06:00,1.11339,1.11362,1.11329,1.11359,691 +2020-01-15 06:15,1.11359,1.11364,1.11343,1.11348,739 +2020-01-15 06:30,1.11347,1.11348,1.11322,1.11329,860 +2020-01-15 06:45,1.11328,1.11356,1.11328,1.11355,686 +2020-01-15 07:00,1.11355,1.11368,1.11335,1.11343,1262 +2020-01-15 07:15,1.11342,1.11359,1.11342,1.11349,899 +2020-01-15 07:30,1.11348,1.11355,1.11291,1.11293,5345 +2020-01-15 07:45,1.11293,1.11311,1.11271,1.11284,1358 +2020-01-15 08:00,1.11283,1.11287,1.11214,1.11221,2623 +2020-01-15 08:15,1.11221,1.11236,1.11185,1.11231,2271 +2020-01-15 08:30,1.11231,1.11255,1.1122,1.1123,2212 +2020-01-15 08:45,1.1123,1.11308,1.1123,1.11301,1934 +2020-01-15 09:00,1.113,1.11313,1.11257,1.113,1752 +2020-01-15 09:15,1.11301,1.11321,1.11282,1.1132,2261 +2020-01-15 09:30,1.11318,1.11334,1.11281,1.11324,2826 +2020-01-15 09:45,1.11323,1.11326,1.11275,1.11282,2047 +2020-01-15 10:00,1.11282,1.11282,1.11249,1.11254,1717 +2020-01-15 10:15,1.11255,1.11306,1.11254,1.11306,1216 +2020-01-15 10:30,1.11305,1.11327,1.11293,1.11315,1310 +2020-01-15 10:45,1.11314,1.11393,1.11313,1.11387,2017 +2020-01-15 11:00,1.11387,1.11549,1.1138,1.115,3698 +2020-01-15 11:15,1.11501,1.11534,1.11467,1.115,2431 +2020-01-15 11:30,1.115,1.11514,1.11456,1.11491,1842 +2020-01-15 11:45,1.11491,1.11512,1.1146,1.1148,2072 +2020-01-15 12:00,1.11478,1.11516,1.1147,1.11489,1503 +2020-01-15 12:15,1.11489,1.11525,1.11472,1.11475,1625 +2020-01-15 12:30,1.11474,1.11481,1.11449,1.11451,1357 +2020-01-15 12:45,1.11451,1.11462,1.11396,1.1141,2276 +2020-01-15 13:00,1.11416,1.11449,1.11405,1.11422,2218 +2020-01-15 13:15,1.11422,1.11459,1.114,1.11447,2524 +2020-01-15 13:30,1.11447,1.11491,1.1143,1.11484,19576 +2020-01-15 13:45,1.11483,1.11494,1.11465,1.1149,2457 +2020-01-15 14:00,1.11489,1.11541,1.11486,1.11521,2934 +2020-01-15 14:15,1.11521,1.11607,1.11513,1.11602,2609 +2020-01-15 14:30,1.11602,1.11634,1.11545,1.11556,3407 +2020-01-15 14:45,1.11556,1.1156,1.11512,1.11522,3343 +2020-01-15 15:00,1.11523,1.11528,1.11431,1.11442,4007 +2020-01-15 15:15,1.11444,1.11548,1.11443,1.11536,2455 +2020-01-15 15:30,1.11537,1.11537,1.11496,1.11508,2624 +2020-01-15 15:45,1.1151,1.11527,1.1145,1.11521,3689 +2020-01-15 16:00,1.11522,1.11577,1.11496,1.11577,3213 +2020-01-15 16:15,1.11577,1.11594,1.11554,1.11554,1885 +2020-01-15 16:30,1.11555,1.11581,1.11543,1.11574,1676 +2020-01-15 16:45,1.11575,1.11599,1.11563,1.11595,1524 +2020-01-15 17:00,1.11596,1.11606,1.11562,1.11563,1701 +2020-01-15 17:15,1.11563,1.1161,1.11562,1.11605,1528 +2020-01-15 17:30,1.11605,1.11614,1.11568,1.11575,1215 +2020-01-15 17:45,1.11574,1.11593,1.11566,1.11576,1373 +2020-01-15 18:00,1.11575,1.11589,1.11562,1.11589,979 +2020-01-15 18:15,1.1159,1.11596,1.11545,1.11546,1097 +2020-01-15 18:30,1.11545,1.11553,1.11503,1.11519,1336 +2020-01-15 18:45,1.11518,1.11524,1.11497,1.11516,879 +2020-01-15 19:00,1.11515,1.11516,1.11494,1.11507,1039 +2020-01-15 19:15,1.11508,1.11528,1.11506,1.11527,2840 +2020-01-15 19:30,1.11527,1.1154,1.11512,1.11513,981 +2020-01-15 19:45,1.11514,1.11521,1.11494,1.11504,943 +2020-01-15 20:00,1.11504,1.11511,1.11493,1.11494,869 +2020-01-15 20:15,1.11496,1.11498,1.11482,1.11482,833 +2020-01-15 20:30,1.11482,1.1151,1.11482,1.11498,789 +2020-01-15 20:45,1.11497,1.11529,1.11497,1.11523,981 +2020-01-15 21:00,1.11523,1.11523,1.11492,1.11496,475 +2020-01-15 21:15,1.11496,1.11496,1.11486,1.11487,362 +2020-01-15 21:30,1.11486,1.11487,1.11481,1.11485,387 +2020-01-15 21:45,1.11486,1.11506,1.11482,1.11495,299 +2020-01-15 22:00,1.11492,1.11524,1.1149,1.11512,161 +2020-01-15 22:15,1.1151,1.11539,1.11503,1.11523,291 +2020-01-15 22:30,1.11522,1.11534,1.11506,1.11506,990 +2020-01-15 22:45,1.11506,1.11516,1.11504,1.11514,276 +2020-01-15 23:00,1.11515,1.1153,1.11514,1.11517,378 +2020-01-15 23:15,1.11517,1.11521,1.115,1.11505,242 +2020-01-15 23:30,1.11507,1.1152,1.11505,1.11513,403 +2020-01-15 23:45,1.11514,1.11526,1.1151,1.11524,349 +2020-01-16 00:00,1.11524,1.1158,1.11523,1.11578,735 +2020-01-16 00:15,1.11578,1.1158,1.11558,1.11574,892 +2020-01-16 00:30,1.11573,1.11577,1.11561,1.11562,514 +2020-01-16 00:45,1.11562,1.11563,1.11539,1.11548,454 +2020-01-16 01:00,1.11548,1.11552,1.11537,1.11545,672 +2020-01-16 01:15,1.11544,1.1155,1.11536,1.11544,723 +2020-01-16 01:30,1.11544,1.11546,1.11531,1.11539,640 +2020-01-16 01:45,1.11539,1.1154,1.1153,1.11535,634 +2020-01-16 02:00,1.11534,1.11537,1.11527,1.11535,400 +2020-01-16 02:15,1.11534,1.11536,1.11517,1.11518,523 +2020-01-16 02:30,1.11519,1.1152,1.11507,1.11519,428 +2020-01-16 02:45,1.11519,1.11522,1.11514,1.11516,1666 +2020-01-16 03:00,1.11516,1.11534,1.11513,1.11533,373 +2020-01-16 03:15,1.11533,1.11549,1.11532,1.11544,449 +2020-01-16 03:30,1.11545,1.1155,1.1154,1.11542,391 +2020-01-16 03:45,1.11542,1.11543,1.11526,1.11527,502 +2020-01-16 04:00,1.11527,1.11532,1.11525,1.11527,404 +2020-01-16 04:15,1.11526,1.11534,1.11525,1.11526,315 +2020-01-16 04:30,1.11526,1.11531,1.1151,1.11525,582 +2020-01-16 04:45,1.11526,1.11534,1.11507,1.1151,372 +2020-01-16 05:00,1.11511,1.11524,1.11511,1.11517,440 +2020-01-16 05:15,1.11517,1.11521,1.11509,1.11509,347 +2020-01-16 05:30,1.11509,1.11511,1.11499,1.11506,450 +2020-01-16 05:45,1.11507,1.11513,1.11496,1.11498,753 +2020-01-16 06:00,1.11498,1.11498,1.11475,1.11494,602 +2020-01-16 06:15,1.11494,1.11494,1.11455,1.11461,778 +2020-01-16 06:30,1.11459,1.11484,1.11445,1.11478,1000 +2020-01-16 06:45,1.11478,1.11504,1.11473,1.11503,781 +2020-01-16 07:00,1.11503,1.11529,1.11486,1.11491,1371 +2020-01-16 07:15,1.1149,1.11506,1.11458,1.1148,1807 +2020-01-16 07:30,1.11478,1.11507,1.11455,1.11461,1576 +2020-01-16 07:45,1.11461,1.11481,1.11451,1.11476,1585 \ No newline at end of file diff --git a/data/sh600000.csv b/data/sh600000.csv new file mode 100644 index 0000000..9e5abb5 --- /dev/null +++ b/data/sh600000.csv @@ -0,0 +1,5431 @@ +Time,Open,High,Low,Close,Volume +1999-11-10,29.5,29.8,27,27.75,1740850 +1999-11-11,27.58,28.38,27.53,27.71,294034 +1999-11-12,27.86,28.29,27.77,28.04,150079 +1999-11-15,28.2,28.25,27.7,27.75,119210 +1999-11-16,27.88,27.97,26.48,26.55,232231 +1999-11-17,26.5,27.18,26.37,27.18,100525 +1999-11-18,27.2,27.58,26.78,27.02,84465 +1999-11-19,27.5,27.53,26.8,26.88,53749 +1999-11-22,26.88,26.95,26.3,26.45,55354 +1999-11-23,26.45,26.55,26.1,26.45,38439 +1999-11-24,26.44,26.55,26.01,26.43,40980 +1999-11-25,26.3,26.66,26.02,26.4,57252 +1999-11-26,26.43,26.66,26.15,26.45,22826 +1999-11-29,26.45,26.83,26.22,26.33,26812 +1999-11-30,26.3,26.5,26.11,26.4,23713 +1999-12-01,26.31,26.9,26.21,26.6,28651 +1999-12-02,26.52,26.72,26.22,26.26,19384 +1999-12-03,26.25,26.65,26.2,26.36,25525 +1999-12-06,26.3,26.35,25.6,25.66,69839 +1999-12-07,25.6,25.85,25.5,25.6,39557 +1999-12-08,25.6,25.76,25.5,25.53,22365 +1999-12-09,25.5,25.55,25.3,25.36,25646 +1999-12-10,25.36,26.1,25.22,25.97,35539 +1999-12-13,25.98,26.45,25.6,25.92,70584 +1999-12-14,25.7,26,25.7,26,16184 +1999-12-15,26,26.9,25.9,26.45,67978 +1999-12-16,26.5,26.5,25.95,26,36162 +1999-12-17,26,26.13,25.51,25.58,35653 +1999-12-21,25.45,25.55,25.14,25.24,42153 +1999-12-22,25.24,25.35,25.05,25.15,30835 +1999-12-23,25.2,25.3,24.7,24.78,41615 +1999-12-24,24.6,25.07,24.59,24.75,28324 +1999-12-27,24.75,25,24.5,24.58,22337 +1999-12-28,24.54,25.08,24.5,24.6,31766 +1999-12-29,24.71,24.97,24.57,24.66,22842 +1999-12-30,24.9,24.99,24.65,24.75,23331 +2000-01-04,24.98,25.78,24.75,25.57,44960 +2000-01-05,25.57,25.98,25.15,25.28,52528 +2000-01-06,25.18,26.3,25.05,25.99,62296 +2000-01-07,26.3,27.5,26.12,26.9,213553 +2000-01-10,27,27.85,26.71,27.25,165397 +2000-01-11,27.25,27.3,26.12,26.2,93907 +2000-01-12,26,26,24.8,25.12,352749 +2000-01-13,25,25.25,24.8,24.9,79756 +2000-01-14,24.88,25,23.91,24.2,178618 +2000-01-17,24.08,24.44,23.75,24.4,81015 +2000-01-18,24.5,24.57,23.88,24.14,76933 +2000-01-19,24.14,24.29,23.98,24.13,46584 +2000-01-20,24.12,24.65,24.1,24.44,51144 +2000-01-21,24.51,24.63,24.08,24.27,81386 +2000-01-24,24.2,24.25,23.95,24.18,92502 +2000-01-25,24.18,25.16,24.18,24.59,77422 +2000-01-26,24.6,24.8,24.31,24.41,27377 +2000-01-27,24.47,24.78,24.2,24.59,63350 +2000-01-28,24.6,25.1,24.56,25.04,123627 +2000-02-14,26,27.48,25.5,27.2,237391 +2000-02-15,27.2,27.48,25.65,25.68,262676 +2000-02-16,25.5,25.55,24.91,25.2,190690 +2000-02-17,25.25,26.4,24.23,24.9,230447 +2000-02-18,24.9,25,24.3,24.68,96934 +2000-02-21,24.75,26.3,24.2,25.8,255105 +2000-02-22,25.88,26,24.6,24.75,105175 +2000-02-23,24.6,25.25,24.5,24.6,69145 +2000-02-24,24.6,25,24.5,24.82,46481 +2000-02-25,24.9,24.97,24.5,24.6,58148 +2000-02-28,24.6,25.25,24.35,25.08,93734 +2000-02-29,25.21,25.6,24.8,25.17,109559 +2000-03-01,25.2,27.1,25.17,25.82,417051 +2000-03-02,25.78,26,25.1,25.42,129998 +2000-03-03,25.6,26.7,25.58,26,161098 +2000-03-06,26.48,26.9,25.55,25.6,206161 +2000-03-07,25.2,26.3,25.01,25.8,111329 +2000-03-08,26,26.18,25.43,25.69,57714 +2000-03-09,25.7,27.49,25.38,26.4,264909 +2000-03-10,26.4,26.5,25.51,25.62,105700 +2000-03-13,25.6,25.98,25.36,25.53,55663 +2000-03-14,25,25.42,24.8,25.42,113751 +2000-03-15,25.4,25.42,25,25.14,42199 +2000-03-16,25,25.08,24.28,24.5,75702 +2000-03-17,24.5,25.2,24.4,24.86,42704 +2000-03-20,24.5,25.2,24.5,25.02,43876 +2000-03-21,25.18,25.2,24.82,25,44099 +2000-03-22,25.08,25.71,24.88,25.34,45220 +2000-03-23,25.35,25.68,25.2,25.51,58872 +2000-03-24,26.01,27.05,25.51,25.51,218564 +2000-03-27,25.71,26.26,25.4,25.9,61611 +2000-03-28,26.03,26.3,25.25,25.5,70742 +2000-03-29,25.55,25.7,25.06,25.18,74952 +2000-03-30,25.25,25.72,25.25,25.38,44007 +2000-03-31,25.45,25.58,25.1,25.22,43203 +2000-04-03,25.2,25.5,25.1,25.24,34984 +2000-04-04,25.2,25.2,24.86,24.9,43070 +2000-04-05,24.9,25.49,24.88,25.15,34270 +2000-04-06,25.15,25.39,25.06,25.31,29275 +2000-04-07,25.42,25.9,25.38,25.69,60063 +2000-04-10,25.72,25.9,25.43,25.54,33278 +2000-04-11,25.6,26.08,25.4,25.56,62139 +2000-04-12,25.62,26,25.35,25.45,46344 +2000-04-13,25.45,25.88,25.4,25.6,42065 +2000-04-14,25.68,26.2,25.6,25.83,112504 +2000-04-17,26,26.2,25.18,25.3,79768 +2000-04-18,25.31,25.45,25.01,25.32,38945 +2000-04-19,25.45,25.78,25.19,25.3,27555 +2000-04-20,25.3,25.5,25.19,25.32,36366 +2000-04-21,25,25.49,25,25.15,23545 +2000-04-24,25.15,25.2,24.75,24.82,59137 +2000-04-25,24.81,25.09,24.78,24.84,23095 +2000-04-26,24.88,25.57,24.8,25,35593 +2000-04-27,25,25.2,24.68,24.74,32841 +2000-04-28,24.74,25,24.65,25,32108 +2000-05-09,24.9,24.9,24.35,24.43,26060 +2000-05-10,24.4,24.51,23.98,24,58738 +2000-05-11,24,24.27,23.8,23.9,33882 +2000-05-12,23.93,24.1,23.85,23.94,29692 +2000-05-15,23.95,24,23.01,23.06,40783 +2000-05-16,23.07,23.45,23.06,23.2,20713 +2000-05-17,23.25,23.35,23.06,23.15,21336 +2000-05-18,23.15,23.3,23,23.25,29466 +2000-05-19,23.3,23.69,23.25,23.5,27920 +2000-05-22,23.5,23.88,23.3,23.69,36081 +2000-05-23,23.85,23.96,23.3,23.47,28879 +2000-05-24,23.5,23.8,23.3,23.63,34564 +2000-05-25,23.7,24.5,23.65,24.29,76043 +2000-05-26,24.33,24.45,23.85,23.9,36149 +2000-05-29,23.9,23.98,23.6,23.74,31477 +2000-05-30,23.74,23.95,23.35,23.4,29706 +2000-05-31,23.4,23.88,23.3,23.45,35973 +2000-06-01,23.5,23.68,23.36,23.44,22703 +2000-06-02,23.5,23.97,23.4,23.7,30472 +2000-06-05,23.8,23.97,23.59,23.65,36028 +2000-06-06,23.66,23.98,23.65,23.84,26269 +2000-06-07,23.9,24.18,23.72,23.92,35076 +2000-06-08,23.99,24.34,23.81,23.91,42101 +2000-06-09,24,24.25,23.51,23.55,24508 +2000-06-12,23.5,23.72,23.39,23.62,19572 +2000-06-13,23.68,24,23.66,23.84,17875 +2000-06-14,24,24.69,23.95,24.18,95156 +2000-06-15,24.3,24.55,24.15,24.36,30139 +2000-06-16,24.45,24.5,23.88,23.97,25611 +2000-06-19,24,24.15,23.68,23.8,18308 +2000-06-20,23.8,23.83,23.61,23.65,13883 +2000-06-21,23.6,23.75,23.5,23.7,15679 +2000-06-22,23.75,23.8,23.51,23.54,17817 +2000-06-23,23.54,23.67,23.4,23.56,24541 +2000-06-26,23.57,23.69,23.47,23.57,24138 +2000-06-27,23.6,23.67,23.38,23.42,27711 +2000-06-28,23.43,23.7,23.35,23.41,24315 +2000-06-29,23.45,23.6,23.23,23.3,34828 +2000-06-30,23.3,23.7,23.25,23.55,22713 +2000-07-03,23.5,23.5,23.2,23.23,20275 +2000-07-04,23.2,23.3,23.12,23.25,15151 +2000-07-05,23.25,23.47,23.15,23.22,14218 +2000-07-06,23.15,23.27,23.01,23.08,13200 +2000-07-07,23.08,23.32,23.05,23.25,12940 +2000-07-10,23.3,23.4,23.06,23.11,19900 +2000-07-11,23.11,23.57,23.1,23.46,24146 +2000-07-12,23.5,23.95,23.46,23.6,31938 +2000-07-13,23.78,23.8,23.36,23.44,19778 +2000-07-14,23.45,23.6,23.27,23.6,20484 +2000-07-17,23.65,23.69,23.34,23.4,16672 +2000-07-18,23.4,23.47,23.25,23.35,15962 +2000-07-19,23.4,23.8,23.36,23.71,27666 +2000-07-20,23.8,23.88,23.42,23.45,18706 +2000-07-21,23.8,23.8,23.44,23.54,19835 +2000-07-24,23.56,23.65,23.28,23.31,13787 +2000-07-25,23.3,23.52,23.2,23.52,15141 +2000-07-26,23.5,23.52,23.29,23.39,13503 +2000-07-27,23.4,25.7,23.4,24.53,237187 +2000-07-28,24.4,24.7,23.98,23.99,40805 +2000-07-31,24.03,24.4,23.98,24.05,29560 +2000-08-01,24.06,24.35,24,24.05,16546 +2000-08-02,24.11,24.18,23.8,23.85,20594 +2000-08-03,23.9,24.19,23.66,23.9,23795 +2000-08-04,23.91,24.05,23.7,23.88,20349 +2000-08-07,23.9,24,23.78,23.86,15183 +2000-08-08,24,24.03,23.8,23.9,13345 +2000-08-09,23.9,24.3,23.87,24.07,20450 +2000-08-10,24.2,24.2,23.85,23.9,20390 +2000-08-11,23.9,24.05,23.8,23.9,21733 +2000-08-14,23.9,24.42,23.9,24.12,24085 +2000-08-15,24.12,24.18,24,24.07,13245 +2000-08-16,24.07,24.23,23.87,24.13,19144 +2000-08-17,24.11,24.5,24,24.18,28808 +2000-08-18,24.21,24.38,24.02,24.05,10712 +2000-08-21,24.12,24.14,23.92,23.97,18193 +2000-08-22,24.05,24.06,23.8,23.8,17501 +2000-08-23,23.7,23.88,23.2,23.6,38334 +2000-08-24,23.6,23.97,23.48,23.61,17217 +2000-08-25,23.61,23.97,23.4,23.75,23917 +2000-08-28,23.75,23.95,23.6,23.69,14328 +2000-08-29,23.69,23.69,23.48,23.52,17146 +2000-08-30,23.52,23.6,23.3,23.34,20149 +2000-08-31,23.24,23.49,23.22,23.25,18889 +2000-09-01,23.24,23.5,23.2,23.2,19728 +2000-09-04,23.22,23.4,23.05,23.16,13452 +2000-09-05,23.2,23.3,22.3,22.42,52586 +2000-09-06,22.4,22.42,22.02,22.06,30081 +2000-09-07,22.06,22.5,22.06,22.18,13773 +2000-09-08,22.2,22.3,22.1,22.2,13229 +2000-09-11,22.2,22.55,22.18,22.22,12997 +2000-09-12,22.35,22.48,22.2,22.4,10404 +2000-09-13,22.39,22.97,22.36,22.51,17509 +2000-09-14,22.5,22.6,22.25,22.29,8711 +2000-09-15,22.29,22.37,22.1,22.16,9509 +2000-09-18,22.19,22.28,21.72,21.78,13794 +2000-09-19,21.7,21.7,21.08,21.2,20006 +2000-09-20,21.16,21.49,21,21.3,13800 +2000-09-21,21.35,21.58,21.06,21.27,17702 +2000-09-22,21.27,21.38,21.09,21.24,10624 +2000-09-25,21.25,21.57,21.18,21.28,12041 +2000-09-26,21.39,21.6,21.3,21.43,10174 +2000-09-27,21.5,22,21.5,21.8,13255 +2000-09-28,21.95,21.98,21.48,21.5,7698 +2000-09-29,21.5,21.77,21.5,21.6,6183 +2000-10-09,21.6,21.69,21.25,21.35,7534 +2000-10-10,21.35,21.97,21.3,21.96,14769 +2000-10-11,21.99,22.26,21.8,21.81,18001 +2000-10-12,21.88,21.96,21.55,21.59,7156 +2000-10-13,21.7,21.96,21.6,21.79,9987 +2000-10-16,21.81,21.88,21.31,21.35,5366 +2000-10-17,21.3,21.48,21.23,21.38,4623 +2000-10-18,21.38,21.61,21.32,21.43,5213 +2000-10-19,21.45,21.5,21.27,21.3,5366 +2000-10-20,21.3,21.67,21.19,21.61,9469 +2000-10-23,21.63,22.09,21.6,21.7,15990 +2000-10-24,21.7,21.85,21.55,21.62,5896 +2000-10-25,21.62,22.08,21.56,21.91,15745 +2000-10-26,21.98,21.99,21.65,21.67,7885 +2000-10-27,21.68,21.7,21.36,21.44,20009 +2000-10-30,21.4,21.5,21.34,21.4,8758 +2000-10-31,21.41,21.5,21.28,21.3,9665 +2000-11-01,21.38,21.8,21.28,21.42,7217 +2000-11-02,21.41,21.8,21.31,21.6,21013 +2000-11-03,21.61,21.68,21.38,21.42,7412 +2000-11-06,21.42,21.45,21.33,21.37,8795 +2000-11-07,21.38,21.5,21.28,21.36,9994 +2000-11-08,21.35,21.6,21.3,21.43,9129 +2000-11-09,21.46,21.79,21.45,21.7,10604 +2000-11-10,21.75,22.28,21.73,21.9,33701 +2000-11-13,21.95,22.25,21.95,22.08,24969 +2000-11-14,22.1,22.2,21.89,22.05,19659 +2000-11-15,22.05,22.48,22.01,22.23,32205 +2000-11-16,22.25,22.4,21.98,22.05,20095 +2000-11-17,22.1,22.25,21.84,21.92,16040 +2000-11-20,21.89,21.89,21.7,21.74,11524 +2000-11-21,21.84,22.18,21.84,21.89,15843 +2000-11-23,22.3,22.48,22,22.18,22109 +2000-11-24,22.22,23.35,22.22,22.5,125544 +2000-11-27,22.4,22.5,22,22.07,24587 +2000-11-28,22.07,22.35,22.03,22.24,13537 +2000-11-29,22.25,22.26,21.85,21.99,15686 +2000-11-30,21.98,22.12,21.84,21.98,16262 +2000-12-01,22,22.11,21.88,22,10960 +2000-12-04,22,22.05,21.74,21.9,15292 +2000-12-05,21.9,22.2,21.88,22,10740 +2000-12-06,22.1,22.1,21.73,21.74,11614 +2000-12-07,21.73,21.9,21.58,21.61,10689 +2000-12-08,21.61,21.72,21.6,21.65,8831 +2000-12-11,21.65,21.65,21.3,21.33,11650 +2000-12-12,21.31,21.7,21.3,21.7,8739 +2000-12-13,21.7,21.73,21.4,21.43,9338 +2000-12-14,21.48,22.05,21.48,21.75,10262 +2000-12-15,21.95,22.13,21.71,21.95,16034 +2000-12-18,22.01,22.4,21.8,22.12,20279 +2000-12-19,22.12,22.12,21.45,21.5,23778 +2000-12-20,21.4,21.44,21.3,21.35,20584 +2000-12-21,21.35,21.65,21.28,21.32,15811 +2000-12-22,21.33,21.4,21.02,21.06,29937 +2000-12-25,21.05,21.08,20.5,20.63,35596 +2000-12-26,20.6,20.78,20.55,20.61,15804 +2000-12-27,20.65,20.8,20.5,20.75,17209 +2000-12-28,20.75,20.75,20.53,20.59,13093 +2000-12-29,20.65,20.87,20.6,20.75,9757 +2001-01-02,20.75,21,20.6,20.92,12490 +2001-01-03,20.92,20.96,20.71,20.82,14895 +2001-01-04,20.82,20.84,20.6,20.65,18174 +2001-01-05,20.65,20.7,20.28,20.38,28200 +2001-01-08,20.36,20.36,19.85,19.87,32480 +2001-01-09,19.87,20.23,19.75,20.2,19889 +2001-01-10,20.2,20.43,20.1,20.25,16731 +2001-01-11,20.3,20.85,20.3,20.39,17684 +2001-01-12,20.4,20.54,20.19,20.37,12750 +2001-01-15,20.38,20.48,19.9,19.92,15619 +2001-01-16,19.9,20.18,19.8,20.1,10797 +2001-01-17,20.11,20.5,20.1,20.25,8154 +2001-01-18,20.26,20.59,20.26,20.55,10379 +2001-01-19,20.7,20.82,20.6,20.77,17033 +2001-02-05,20.86,20.91,20.2,20.22,9714 +2001-02-06,20.2,20.2,19.92,20.19,8194 +2001-02-07,20.21,20.35,20.01,20.02,4814 +2001-02-08,20.05,20.1,19.85,19.88,9872 +2001-02-09,19.88,20.28,19.88,20.02,9204 +2001-02-12,20.02,20.55,19.92,20.4,9517 +2001-02-13,20.4,20.45,20.14,20.2,4381 +2001-02-14,20.15,20.2,20,20.02,5823 +2001-02-15,20.02,20.1,19.89,19.96,6208 +2001-02-16,19.96,20.02,19.88,19.92,6945 +2001-02-19,19.92,20.16,19.92,20.16,5558 +2001-02-20,20.18,20.2,19.82,19.92,7465 +2001-02-21,20,20,19.3,19.32,15138 +2001-02-22,19.3,19.35,19.12,19.19,10393 +2001-02-23,19.18,19.99,19,19.76,14785 +2001-02-26,20.65,20.65,19.88,19.94,13298 +2001-02-27,19.94,19.94,19.68,19.79,5392 +2001-02-28,19.8,19.9,19.68,19.85,3865 +2001-03-01,19.82,20.14,19.71,19.9,4554 +2001-03-02,19.99,20.7,19.98,20.45,37078 +2001-03-05,20.5,20.62,20.25,20.27,10613 +2001-03-06,20.26,20.38,20.08,20.27,7379 +2001-03-07,20.28,20.68,20.28,20.41,8407 +2001-03-08,20.4,21.14,20.1,20.9,40195 +2001-03-09,20.95,21.08,20.7,20.93,25269 +2001-03-12,20.93,20.93,20.61,20.72,7337 +2001-03-13,20.65,20.7,20.32,20.4,8826 +2001-03-14,20.4,20.98,20.25,20.58,11988 +2001-03-15,20.6,20.73,20.5,20.5,8914 +2001-03-16,20.51,20.9,20.42,20.51,7649 +2001-03-19,20.5,20.55,20.35,20.5,7547 +2001-03-20,20.5,20.75,20.46,20.49,9509 +2001-03-21,20.56,21.1,20.56,21,26458 +2001-03-22,21.1,21.39,21.01,21.13,25947 +2001-03-23,21.13,21.24,20.61,20.63,16568 +2001-03-26,20.61,20.93,20.55,20.78,8881 +2001-03-27,20.85,21.03,20.62,21,12432 +2001-03-28,21,21.05,20.76,20.88,12382 +2001-03-29,20.88,21.2,20.87,20.9,15546 +2001-03-30,20.9,21.02,20.8,20.98,10675 +2001-04-02,21.11,21.49,21,21.33,22464 +2001-04-03,21.34,21.44,21.1,21.22,19334 +2001-04-04,21.23,21.59,20.86,20.99,29682 +2001-04-05,21.01,21.35,21.01,21.3,11803 +2001-04-06,21.38,21.5,21.22,21.3,12623 +2001-04-09,21.3,21.35,21.05,21.25,8087 +2001-04-10,21.3,21.38,21.13,21.28,8222 +2001-04-11,21.35,21.48,21.26,21.38,16296 +2001-04-12,21.43,21.46,21.11,21.18,16259 +2001-04-13,21.18,21.38,21.01,21.2,11544 +2001-04-16,21.2,21.44,21.08,21.19,17318 +2001-04-17,21.2,21.25,20.95,20.99,19188 +2001-04-18,21,21.04,20.71,20.71,17055 +2001-04-19,20.71,20.98,20.54,20.6,17273 +2001-04-20,20.6,20.78,20.51,20.52,14953 +2001-04-23,20.51,20.52,20.28,20.49,17243 +2001-04-24,20.5,20.66,20.38,20.51,8071 +2001-04-25,20.55,20.58,20.08,20.14,11869 +2001-04-26,20,20.14,19.9,19.95,14541 +2001-04-27,19.96,20.48,19.95,20.33,11105 +2001-04-30,20.32,20.4,20,20.11,6356 +2001-05-08,20.1,20.19,19.98,20.02,7298 +2001-05-09,20.02,20.07,19.97,20,10104 +2001-05-10,20,20.3,20,20.05,5519 +2001-05-11,20.07,20.3,20.02,20.2,6690 +2001-05-14,20.25,20.35,20.08,20.33,10244 +2001-05-15,20.4,20.45,20.23,20.33,8073 +2001-05-16,20.35,20.68,20.25,20.5,12650 +2001-05-17,20.58,20.6,20.22,20.25,8300 +2001-05-18,20.22,20.24,20,20.15,15049 +2001-05-21,20.16,20.25,20.1,20.25,17568 +2001-05-22,20.38,20.5,20.2,20.23,10576 +2001-05-23,20.23,20.49,20.21,20.45,20445 +2001-05-24,20.46,20.49,20.28,20.29,12842 +2001-05-25,20.3,20.35,20.08,20.12,14393 +2001-05-29,20.26,20.35,19.89,19.99,9941 +2001-05-30,20,20.26,19.96,20.11,15356 +2001-05-31,20.14,20.2,20,20,14562 +2001-06-01,20,20.45,19.97,20.23,15967 +2001-06-04,20.3,20.35,20.06,20.08,12407 +2001-06-05,20.1,20.48,20.09,20.28,10160 +2001-06-06,20.3,20.4,20.23,20.37,10285 +2001-06-07,20.4,20.83,20.33,20.81,46215 +2001-06-08,20.81,20.85,20.6,20.66,14786 +2001-06-11,20.66,20.8,20.48,20.65,12407 +2001-06-12,20.61,20.8,20.5,20.56,13407 +2001-06-13,20.6,20.72,20.5,20.59,14467 +2001-06-14,20.62,20.75,20.18,20.2,19541 +2001-06-15,20.1,20.3,20,20.19,22106 +2001-06-18,20.15,20.17,19.7,19.82,20722 +2001-06-19,19.8,19.97,19.72,19.82,8469 +2001-06-20,19.82,19.98,19.75,19.85,17567 +2001-06-21,19.88,20.17,19.88,20.01,8047 +2001-06-22,20.17,20.23,20.05,20.21,6715 +2001-06-25,20.25,20.3,20.05,20.21,9493 +2001-06-26,20.28,20.28,20.1,20.15,10545 +2001-06-27,20.1,20.18,20.01,20.06,8479 +2001-06-28,20.06,20.11,19.91,19.92,10292 +2001-06-29,19.92,20.04,19.92,19.95,6183 +2001-07-02,19.95,20,19.8,19.89,4760 +2001-07-03,19.94,19.95,19.78,19.89,5940 +2001-07-04,19.9,20.05,19.85,19.99,4273 +2001-07-05,20.03,20.58,20.03,20.12,17905 +2001-07-06,20.15,20.25,20,20,5189 +2001-07-09,20,20,19.88,19.93,4675 +2001-07-10,19.92,19.98,19.89,19.98,3340 +2001-07-11,20,20.09,19.85,19.89,4066 +2001-07-12,19.89,19.89,19.65,19.7,8515 +2001-07-13,19.75,19.86,19.51,19.55,7885 +2001-07-16,19.61,19.98,19.35,19.39,10055 +2001-07-17,19.4,19.4,19.04,19.16,20445 +2001-07-18,19.18,19.4,19.18,19.3,6045 +2001-07-19,19.31,20.2,19.31,19.93,23719 +2001-07-20,20,20.08,19.78,19.93,10199 +2001-07-23,20,20.25,19.93,19.95,9509 +2001-07-24,19.95,19.96,19.58,19.69,7912 +2001-07-25,19.6,19.68,19.35,19.39,6699 +2001-07-26,19.38,20.39,19.2,19.69,8730 +2001-07-27,19.65,19.75,19.36,19.59,5985 +2001-07-30,19.4,19.4,18.42,18.45,22549 +2001-07-31,18.3,18.6,17.68,17.81,20018 +2001-08-01,18,18.25,17.9,18.24,12006 +2001-08-02,18.24,18.25,17.6,17.86,9983 +2001-08-03,17.89,17.95,17.65,17.79,8164 +2001-08-06,16.8,16.8,16.01,16.01,70546 +2001-08-07,15.5,15.72,14.88,15.57,58668 +2001-08-08,15.5,15.55,15.15,15.2,17012 +2001-08-09,15.18,15.5,15.16,15.4,11467 +2001-08-10,15.48,15.95,15.48,15.82,19510 +2001-08-13,15.82,16.01,15.7,15.82,11124 +2001-08-14,15.82,16.2,15.77,15.9,14964 +2001-08-15,15.92,15.95,15.8,15.88,4457 +2001-08-16,15.88,15.95,15.6,15.64,6007 +2001-08-17,15.55,15.68,15.49,15.62,5823 +2001-08-20,15.7,16.08,15.65,16.05,8931 +2001-08-21,16.08,16.17,15.8,15.86,4496 +2001-08-22,15.8,15.8,15.45,15.5,10190 +2001-08-23,15.4,15.8,15.22,15.53,5403 +2001-08-24,15.85,15.86,15.24,15.35,7809 +2001-08-27,15.3,15.31,15.1,15.11,12755 +2001-08-28,15.1,15.4,15.01,15.4,8264 +2001-08-29,15.45,15.6,15.3,15.35,7115 +2001-08-30,15.31,15.55,15.25,15.32,2980 +2001-08-31,15.32,15.45,15.3,15.4,3611 +2001-09-03,15.35,15.45,15.28,15.3,5470 +2001-09-04,15.3,15.74,15.25,15.72,9049 +2001-09-06,15.38,15.68,15.01,15.46,12455 +2001-09-07,15.42,15.45,15.05,15.06,8832 +2001-09-10,14.99,15.46,14.85,15.4,11031 +2001-09-11,15.4,15.41,15.25,15.33,6769 +2001-09-12,14.81,15.15,14.8,15.02,16151 +2001-09-13,15.02,15.24,15,15.02,4555 +2001-09-14,15.17,15.17,14.82,14.85,6341 +2001-09-17,14.84,14.85,14.51,14.52,9872 +2001-09-18,14.5,14.82,14.48,14.68,5997 +2001-09-19,14.7,15.6,14.55,15.45,20003 +2001-09-20,15.5,15.55,15.1,15.12,16209 +2001-09-21,15,15.23,14.9,15.07,4813 +2001-09-24,15,15.07,14.93,14.98,4639 +2001-09-25,15,15.18,14.9,15.06,4863 +2001-09-26,15.05,15.05,14.8,14.85,5449 +2001-09-27,14.8,15,14.75,14.93,3428 +2001-09-28,15,15.3,14.93,15.22,6655 +2001-10-08,15.22,15.4,14.85,14.87,4791 +2001-10-09,14.88,15.2,14.8,15.08,3842 +2001-10-10,15.1,15.12,14.72,14.85,6998 +2001-10-11,14.81,14.93,14.53,14.54,8174 +2001-10-12,14.6,15.44,14.38,15.2,18555 +2001-10-15,15.3,15.6,15.06,15.56,21253 +2001-10-16,15.56,15.68,15.21,15.48,15967 +2001-10-17,15.43,15.99,15.16,15.7,41460 +2001-10-18,15.68,15.93,15.35,15.43,16359 +2001-10-19,15.4,15.42,14.75,15,26658 +2001-10-22,15,15.3,14.75,14.83,13720 +2001-10-23,16.31,16.31,15.85,16.31,108297 +2001-10-24,16.8,16.81,16.26,16.36,84275 +2001-10-25,16.26,16.4,15.91,16.04,33137 +2001-10-26,16.02,16.42,16,16.36,24922 +2001-10-29,16.38,16.51,16.35,16.38,14148 +2001-10-30,16.36,16.4,16,16.07,9193 +2001-10-31,16,16.2,15.88,16.19,7417 +2001-11-01,16.22,16.39,16.01,16.3,9982 +2001-11-02,16.2,16.28,16,16.03,6760 +2001-11-05,16.03,16.03,15.77,15.78,9265 +2001-11-06,15.9,15.95,15.75,15.88,6961 +2001-11-07,15.78,15.88,15.3,15.3,11634 +2001-11-08,15.15,15.53,15.09,15.45,8858 +2001-11-09,15.45,16.15,15.28,16.03,15770 +2001-11-12,16,16.08,15.76,15.76,5820 +2001-11-13,15.7,16,15.52,15.73,5557 +2001-11-14,15.7,15.94,15.7,15.88,4647 +2001-11-15,15.8,15.95,15.7,15.88,3912 +2001-11-16,16.88,16.9,16.03,16.03,27355 +2001-11-19,16.05,16.2,16,16.19,27356 +2001-11-20,16.26,16.55,16.21,16.32,6339 +2001-11-21,16.35,16.78,16.3,16.69,28545 +2001-11-22,16.69,17.04,16.68,16.94,57947 +2001-11-23,17,17.02,16.76,16.9,29375 +2001-11-26,16.85,16.85,16.61,16.69,10565 +2001-11-27,16.69,16.81,16.65,16.81,7196 +2001-11-28,16.9,17.02,16.81,16.85,13798 +2001-11-29,16.89,16.9,16.53,16.6,12749 +2001-11-30,16.6,16.66,16.48,16.63,14978 +2001-12-03,16.63,16.88,16.6,16.67,9727 +2001-12-04,16.68,17.05,16.68,17.04,24481 +2001-12-05,17,17.15,16.6,16.67,18090 +2001-12-06,16.65,16.85,16.58,16.7,7854 +2001-12-07,16.7,16.7,16.48,16.49,12806 +2001-12-10,16.47,16.59,16.3,16.52,10287 +2001-12-11,16.52,16.58,16.33,16.4,7722 +2001-12-12,16.32,16.35,16.13,16.15,12034 +2001-12-13,16.15,16.2,16.01,16.09,9481 +2001-12-14,16.02,16.26,16.02,16.06,5507 +2001-12-17,16.08,16.22,15.71,16.06,14012 +2001-12-18,15.91,16.25,15.91,16.18,5003 +2001-12-19,16.18,16.47,16.18,16.28,14518 +2001-12-20,16.15,16.25,15.8,15.87,9053 +2001-12-21,15.87,15.93,15.69,15.77,7172 +2001-12-24,15.72,15.8,15.33,15.35,8288 +2001-12-25,15.35,15.46,15.19,15.27,10193 +2001-12-26,15.38,15.46,15.28,15.46,8056 +2001-12-27,15.45,15.53,15.26,15.27,8364 +2001-12-28,15.28,15.43,15.19,15.39,7946 +2001-12-31,15.45,15.7,15.34,15.69,6135 +2002-01-04,15.6,15.6,15.28,15.36,3655 +2002-01-07,15.3,15.3,14.93,15,10572 +2002-01-08,15,15.27,14.96,15,5907 +2002-01-09,15.05,15.17,14.96,15,7011 +2002-01-10,15,15.14,14.61,15.03,12855 +2002-01-11,15.1,15.1,14.8,14.8,5104 +2002-01-14,14.67,14.67,14.39,14.42,12542 +2002-01-15,14.42,14.58,14.21,14.24,6113 +2002-01-16,14.15,14.45,13.92,14.34,13130 +2002-01-17,14.19,14.23,13.7,13.84,12087 +2002-01-18,13.79,14,13.4,13.88,11798 +2002-01-21,13.69,13.79,13.2,13.27,14271 +2002-01-22,13.26,13.6,13,13.1,9921 +2002-01-23,13.1,13.86,12.98,13.84,14571 +2002-01-24,13.76,14.16,13.4,13.97,22000 +2002-01-25,14.06,14.06,13.7,13.88,8187 +2002-01-28,13.92,13.99,13.01,13.06,16981 +2002-01-29,12.95,13.4,12.8,13.28,13224 +2002-01-30,13.28,13.32,13.12,13.19,6525 +2002-01-31,14.51,14.51,13.8,14.14,51649 +2002-02-01,14.3,14.42,13.96,14.05,21787 +2002-02-05,14.35,14.7,14.28,14.44,22330 +2002-02-06,14.5,14.55,14,14.15,13936 +2002-02-07,14.15,14.52,14.1,14.51,14794 +2002-02-08,14.6,14.73,14.4,14.58,20171 +2002-02-25,14.55,14.7,14.1,14.24,20055 +2002-02-26,14.2,14.2,13.65,13.97,19031 +2002-02-27,14,14.25,13.92,14.08,7933 +2002-02-28,14.1,14.1,13.92,13.93,6231 +2002-03-01,13.9,14.05,13.82,13.84,5660 +2002-03-04,13.7,13.98,13.68,13.97,3754 +2002-03-05,13.98,14.3,13.96,14.2,12223 +2002-03-06,14.28,14.61,14.21,14.26,21617 +2002-03-07,14.26,14.87,14.22,14.77,22234 +2002-03-08,14.88,15.35,14.7,15.09,54866 +2002-03-11,15.25,15.44,15,15.41,34695 +2002-03-12,15.38,15.51,15,15.09,39409 +2002-03-13,15.05,16.6,15.02,16.17,296797 +2002-03-14,16.03,16.87,16.03,16.65,160663 +2002-03-15,16.72,17.11,16.29,16.37,99202 +2002-03-18,16.66,17.15,16.5,16.88,82738 +2002-03-19,16.6,17.15,16.58,17.04,83294 +2002-03-20,17.1,17.25,16.81,17.04,76317 +2002-03-21,17.38,17.47,16.95,17.08,77800 +2002-03-22,17.08,17.15,16.7,16.86,47794 +2002-03-25,16.9,17.03,16.68,16.93,29689 +2002-03-26,16.95,16.95,16.5,16.59,28534 +2002-03-27,16.57,16.95,16.52,16.81,28455 +2002-03-28,16.53,17.03,16.53,16.85,23755 +2002-03-29,16.84,16.85,16.31,16.4,26479 +2002-04-01,16.5,16.55,16.21,16.45,14209 +2002-04-02,16.48,16.58,16.3,16.38,13416 +2002-04-03,16.39,16.8,16.36,16.79,15720 +2002-04-04,16.78,17.05,16.57,16.94,33316 +2002-04-05,17.03,17.05,16.8,16.9,20426 +2002-04-08,16.95,17.04,16.82,16.93,14931 +2002-04-09,17.25,17.25,16.6,16.77,29259 +2002-04-10,16.79,16.92,16.72,16.87,17580 +2002-04-11,16.87,16.87,16.51,16.55,14610 +2002-04-12,16.52,16.75,16.42,16.6,10130 +2002-04-15,16.56,16.67,16.53,16.56,9425 +2002-04-16,16.5,16.59,16.45,16.52,5966 +2002-04-17,16.5,16.55,16.33,16.43,9963 +2002-04-18,16.45,16.5,16.25,16.42,11337 +2002-04-19,16.4,16.75,16.23,16.63,11639 +2002-04-22,16.5,16.5,16.3,16.4,6777 +2002-04-23,16.32,16.58,16.27,16.4,7075 +2002-04-24,16.4,16.42,16.07,16.23,8787 +2002-04-25,16.25,16.25,15.8,15.93,13980 +2002-04-26,15.93,16.12,15.93,16.09,12776 +2002-04-29,16.09,16.26,15.98,16.24,14946 +2002-04-30,16.21,16.75,16.15,16.5,14940 +2002-05-08,16.58,16.67,16.4,16.4,5960 +2002-05-09,16.32,16.64,16.28,16.37,10034 +2002-05-10,16.49,16.49,16.11,16.16,5644 +2002-05-13,16.13,16.13,15.85,15.89,18722 +2002-05-14,15.86,15.96,15.65,15.7,9805 +2002-05-15,15.72,15.8,15.35,15.37,17582 +2002-05-16,15.3,15.35,14.96,15.01,20676 +2002-05-17,15.05,15.3,15,15.22,10083 +2002-05-20,15.22,15.22,14.83,14.94,10468 +2002-05-21,15.25,15.42,14.94,15.29,21167 +2002-05-22,15.35,15.35,15.02,15.07,7245 +2002-05-23,15.1,15.3,14.97,14.99,9449 +2002-05-24,15,15.07,14.66,14.85,10819 +2002-05-27,14.9,14.95,14.67,14.73,9158 +2002-05-28,14.88,14.89,14.61,14.65,7377 +2002-05-29,14.8,14.84,14.4,14.45,15352 +2002-05-30,14.56,14.58,14.29,14.49,9542 +2002-05-31,14.5,14.69,14.36,14.38,6434 +2002-06-03,14.3,14.3,14.09,14.16,6437 +2002-06-04,14.2,14.67,14.18,14.49,18503 +2002-06-05,14.4,14.54,14.18,14.21,8760 +2002-06-06,14.2,14.79,14.11,14.67,12552 +2002-06-07,14.68,14.85,14.5,14.73,9957 +2002-06-10,14.75,14.96,14.64,14.75,5742 +2002-06-11,14.7,14.88,14.7,14.78,6210 +2002-06-12,14.78,14.85,14.56,14.66,4216 +2002-06-13,14.7,14.74,14.46,14.46,4624 +2002-06-14,14.46,14.52,14.36,14.37,4626 +2002-06-17,14.37,14.4,14.25,14.38,3032 +2002-06-18,14.38,14.8,14.38,14.69,7732 +2002-06-19,14.7,14.7,14.51,14.56,2711 +2002-06-20,14.95,14.95,14.67,14.67,3662 +2002-06-21,14.8,15.29,14.78,15.25,21423 +2002-06-24,16.78,16.78,16.26,16.78,126375 +2002-06-25,16.8,18.3,16.6,17.32,209743 +2002-06-26,17.2,17.5,16.91,17.06,64297 +2002-06-27,17.06,17.39,16.9,17.12,33542 +2002-07-01,17.77,18.07,17.3,17.35,109170 +2002-07-02,17.2,17.68,17.15,17.53,32376 +2002-07-03,17.52,17.77,17.4,17.69,45252 +2002-07-04,17.7,17.73,17.29,17.38,31551 +2002-07-05,17.35,17.45,17.22,17.38,17523 +2002-07-08,17.5,17.57,17.31,17.38,16596 +2002-07-09,17.38,17.45,17.2,17.34,19136 +2002-07-10,17.32,17.34,16.8,16.82,33664 +2002-07-11,16.78,16.97,16.74,16.81,16675 +2002-07-12,16.81,16.95,16.79,16.83,9889 +2002-07-15,16.85,17.3,16.7,17.26,19941 +2002-07-16,17.05,17.44,17.03,17.22,23265 +2002-07-17,17.22,17.3,16.9,17.27,10334 +2002-07-18,17.27,17.54,17.13,17.35,21821 +2002-07-19,17.3,17.82,17.3,17.76,63687 +2002-07-22,17.76,17.79,17.26,17.37,27110 +2002-07-23,17.25,17.78,17.21,17.5,55058 +2002-07-24,17.49,17.76,17.46,17.57,33987 +2002-07-25,17.6,17.76,17.28,17.36,24160 +2002-07-26,17.21,17.35,17.03,17.07,23518 +2002-07-29,17.06,17.24,16.99,17.21,14215 +2002-07-30,17.18,17.8,17.18,17.58,44363 +2002-07-31,17.46,17.77,17.29,17.45,29523 +2002-08-01,17.4,17.56,17.17,17.4,9901 +2002-08-02,17.4,17.69,17.3,17.49,17158 +2002-08-05,17.49,17.49,17.1,17.27,13988 +2002-08-06,17.1,17.48,17.1,17.34,13757 +2002-08-07,17.4,17.42,17.23,17.4,7092 +2002-08-08,17.4,17.64,17.4,17.44,18295 +2002-08-09,17.2,17.55,17.2,17.38,12505 +2002-08-12,17.29,17.37,17.18,17.33,10365 +2002-08-13,17.28,17.28,16.89,16.96,46579 +2002-08-14,16.8,17,16.7,16.92,22080 +2002-08-15,17,17.01,16.88,16.9,6022 +2002-08-16,16.9,17,16.75,16.93,10838 +2002-08-19,17,17.32,16.95,17.24,20321 +2002-08-20,17.3,18.26,17.25,18.16,186993 +2002-08-21,18.2,18.6,18.03,18.4,197640 +2002-08-22,12.28,12.36,12.18,12.31,106873 +2002-08-23,12.3,12.92,12.25,12.78,318431 +2002-08-26,12.8,12.87,12.66,12.77,120087 +2002-08-27,12.77,12.81,12.46,12.59,119374 +2002-08-28,12.55,12.71,12.52,12.62,43176 +2002-08-29,12.62,12.75,12.45,12.48,49905 +2002-08-30,12.48,12.55,12.41,12.49,26103 +2002-09-02,12.49,12.6,12.41,12.52,28737 +2002-09-03,12.6,13.02,12.6,13,127257 +2002-09-04,13,13.02,12.76,12.84,66623 +2002-09-05,12.82,12.82,12.43,12.58,90131 +2002-09-06,12.5,12.6,12.41,12.43,45733 +2002-09-09,12.4,12.4,12.14,12.24,53743 +2002-09-10,12.2,12.4,12.18,12.33,27784 +2002-09-11,12.36,12.49,12.15,12.35,42383 +2002-09-12,12.32,12.45,12.22,12.33,20049 +2002-09-13,12.3,12.38,12.29,12.33,13994 +2002-09-16,12.3,12.3,11.88,11.9,58124 +2002-09-17,11.91,12.1,11.75,11.95,27965 +2002-09-18,11.95,11.95,11.85,11.85,13166 +2002-09-19,11.83,12.18,11.63,12.1,33728 +2002-09-23,11.85,12.02,11.71,11.89,15404 +2002-09-24,11.9,11.98,11.86,11.9,11880 +2002-09-25,11.9,12.08,11.86,11.92,14841 +2002-09-26,11.9,12.02,11.88,11.91,13946 +2002-09-27,12.01,12.1,11.8,11.87,41718 +2002-10-08,11.8,11.8,11.48,11.5,20239 +2002-10-09,11.55,11.59,11.35,11.39,14964 +2002-10-10,11.39,11.52,10.95,11.03,31467 +2002-10-11,11.04,11.15,10.8,10.83,27068 +2002-10-14,10.8,10.86,10.55,10.8,16872 +2002-10-15,10.8,10.87,10.55,10.61,18876 +2002-10-16,10.6,10.96,10.6,10.93,21956 +2002-10-17,10.95,10.98,10.6,10.66,18593 +2002-10-18,10.66,10.91,10.6,10.84,12597 +2002-10-21,10.84,11,10.71,10.91,10149 +2002-10-22,10.95,11.2,10.92,11.12,26264 +2002-10-23,11.15,11.26,10.98,11.02,22571 +2002-10-24,11.1,11.11,10.84,10.86,14168 +2002-10-25,10.86,10.96,10.78,10.79,10893 +2002-10-28,10.81,10.81,10.48,10.62,19493 +2002-10-29,10.61,10.75,10.5,10.75,11160 +2002-10-30,10,10.81,10,10.7,5346 +2002-10-31,10.7,10.9,10.7,10.71,12960 +2002-11-01,10.7,10.79,10.63,10.73,6041 +2002-11-04,10.89,11.03,10.8,11.02,19637 +2002-11-05,11.1,11.38,11.02,11.21,43412 +2002-11-06,11.25,11.3,11.11,11.19,18400 +2002-11-07,11.2,11.35,11.18,11.3,26652 +2002-11-08,11.5,11.6,10.97,11,54779 +2002-11-11,11,11.1,10.6,10.72,46013 +2002-11-12,10.75,11.01,10.69,10.89,62715 +2002-11-13,10.8,10.89,10.7,10.88,21288 +2002-11-14,10.88,10.89,10.66,10.68,14172 +2002-11-15,10.65,10.89,10.61,10.77,17356 +2002-11-18,10.77,10.95,10.66,10.72,20688 +2002-11-19,10.7,10.78,10.63,10.75,15519 +2002-11-20,10.73,10.76,10.41,10.45,23714 +2002-11-21,10.42,10.43,10.16,10.17,24904 +2002-11-22,10.17,10.4,10.02,10.25,20892 +2002-11-25,10.2,10.5,10.11,10.26,8653 +2002-11-26,10.3,10.37,10.05,10.06,11300 +2002-11-27,9.99,10.12,9.88,10.05,23189 +2002-11-28,10.08,10.3,10,10.29,13802 +2002-11-29,10.35,10.55,10.21,10.37,30438 +2002-12-02,10.35,10.35,10.07,10.1,14922 +2002-12-03,10.1,10.22,10,10.18,7436 +2002-12-04,10.25,10.38,10.18,10.2,12265 +2002-12-05,10.23,10.25,10.02,10.1,16175 +2002-12-06,10.1,10.2,10.02,10.11,5727 +2002-12-09,10.1,10.13,10,10.07,8096 +2002-12-10,10.07,10.13,9.99,9.99,12867 +2002-12-11,9.97,10,9.9,9.95,8466 +2002-12-12,10,10.19,9.88,9.9,23980 +2002-12-13,9.85,10.01,9.76,9.93,11810 +2002-12-16,10,10,9.9,9.99,13763 +2002-12-17,9.99,10.07,9.93,10,16946 +2002-12-18,10.02,10.09,9.99,10,12083 +2002-12-19,10,10,9.9,9.97,6012 +2002-12-20,10,10.09,9.92,10.06,12324 +2002-12-23,10.05,10.18,10.05,10.07,13160 +2002-12-24,10.06,10.07,9.94,9.97,15314 +2002-12-25,9.98,10,9.9,9.93,15452 +2002-12-26,9.89,9.9,9.6,9.62,22191 +2002-12-27,9.6,9.62,9.36,9.45,18217 +2002-12-30,9,10.1,8.86,9.67,80540 +2002-12-31,10,10.01,9.24,9.86,143519 +2003-01-02,9.48,9.48,8.98,9.25,61753 +2003-01-09,9.25,9.5,9.01,9.32,162521 +2003-01-10,9.4,9.99,9.34,9.63,206162 +2003-01-13,9.6,9.66,9.21,9.32,98620 +2003-01-14,9.3,10.25,9.28,10.25,356248 +2003-01-15,10.25,10.3,9.8,10.05,185010 +2003-01-16,9.96,10.07,9.81,10,154881 +2003-01-17,10,10.38,9.99,10.19,337743 +2003-01-20,9.5,10.08,9.48,9.94,1165811 +2003-01-21,9.91,10.11,9.65,9.68,400298 +2003-01-22,9.67,9.88,9.48,9.66,223834 +2003-01-23,9.65,9.78,9.56,9.6,92219 +2003-01-24,9.59,9.9,9.56,9.88,199758 +2003-01-27,9.92,10.17,9.85,10.07,339745 +2003-01-28,10.03,10.24,10,10.17,167219 +2003-01-29,10.18,10.55,10.17,10.31,343671 +2003-02-10,10.3,10.3,10.05,10.09,135949 +2003-02-11,10.05,10.24,10.04,10.2,73639 +2003-02-12,10.2,10.32,10.11,10.31,99943 +2003-02-13,10.31,10.42,10.09,10.13,143431 +2003-02-14,10.12,10.29,10.09,10.15,89572 +2003-02-17,10.15,10.2,9.95,9.99,109806 +2003-02-18,9.99,10.07,9.84,9.95,129760 +2003-02-19,9.98,10.05,9.85,10.04,71872 +2003-02-20,10.05,10.06,9.89,9.95,71264 +2003-02-21,9.95,9.95,9.61,9.63,125412 +2003-02-24,9.59,9.73,9.58,9.64,62300 +2003-02-25,9.53,9.86,9.5,9.77,76209 +2003-02-26,9.78,9.93,9.77,9.8,61143 +2003-02-27,9.85,10.04,9.82,10,113320 +2003-02-28,9.99,10.02,9.79,9.82,85205 +2003-03-03,9.85,9.97,9.78,9.91,32916 +2003-03-04,9.93,10.16,9.93,10.1,145971 +2003-03-05,10.09,10.1,9.92,10,56896 +2003-03-06,10,10.03,9.83,9.85,65822 +2003-03-07,9.82,9.91,9.8,9.85,47357 +2003-03-10,9.85,9.9,9.7,9.71,63860 +2003-03-11,9.7,9.75,9.65,9.71,65758 +2003-03-12,9.7,9.79,9.65,9.79,35777 +2003-03-13,9.78,9.85,9.71,9.73,47619 +2003-03-14,9.75,9.85,9.69,9.78,28415 +2003-03-17,9.77,9.8,9.69,9.78,45873 +2003-03-18,9.82,10.08,9.81,9.92,140807 +2003-03-19,9.9,10.38,9.9,10.24,369649 +2003-03-20,10.21,10.37,10.15,10.24,240136 +2003-03-21,10.24,10.52,10.24,10.44,266013 +2003-03-24,10.45,10.57,10.35,10.47,173386 +2003-03-25,10.47,10.48,10.27,10.33,142985 +2003-03-26,10.3,10.61,10.27,10.48,243224 +2003-03-27,10.48,11.06,10.35,10.92,341723 +2003-03-28,10.91,11.12,10.82,10.94,342229 +2003-03-31,10.94,11.21,10.9,11.15,199165 +2003-04-01,11.15,11.38,11.02,11.16,261788 +2003-04-02,11.16,11.24,11.1,11.19,121509 +2003-04-03,11.19,11.19,10.91,10.94,142632 +2003-04-04,10.9,11.33,10.87,11.27,172861 +2003-04-07,11.27,11.65,11.27,11.35,279556 +2003-04-08,11.32,11.55,11.21,11.37,131034 +2003-04-09,11.37,11.95,11.25,11.7,292477 +2003-04-10,11.88,12.1,11.57,11.76,319147 +2003-04-11,11.8,12.06,11.69,11.88,228671 +2003-04-14,11.93,12.5,11.76,12.39,402228 +2003-04-15,12.39,12.7,12.19,12.46,235825 +2003-04-16,12.46,13.63,12.46,12.92,624600 +2003-04-17,12.93,13.2,12.55,12.74,310911 +2003-04-18,12.8,13,12.12,12.25,238715 +2003-04-21,12.39,12.39,11.84,12.1,339602 +2003-04-22,12.1,12.3,11.98,12.14,118854 +2003-04-23,12.15,12.17,11.91,11.95,168390 +2003-04-24,11.88,11.92,11.18,11.37,309348 +2003-04-28,11.5,12.51,11.25,12.51,507786 +2003-04-30,13,13.2,12.58,12.93,605845 +2003-05-12,12.95,13.92,12.66,13.71,455088 +2003-05-13,13.7,13.96,12.98,12.99,563705 +2003-05-14,12.88,13.47,12.8,13.38,279553 +2003-05-15,13.35,13.72,13.16,13.46,271388 +2003-05-16,13.44,13.89,13.28,13.54,203895 +2003-05-19,13.54,13.59,13.13,13.25,179615 +2003-05-20,13.18,13.23,12.9,12.91,163835 +2003-05-21,12.92,13.25,12.92,12.99,121828 +2003-05-22,12.92,13.65,12.9,13.64,265477 +2003-05-23,13.65,13.86,13.51,13.63,306561 +2003-05-26,13.63,13.96,13.5,13.8,248977 +2003-05-27,13.88,14.2,13.79,13.89,275484 +2003-05-28,13.92,14.08,13.38,13.46,211352 +2003-05-29,13.4,13.52,13.15,13.39,188356 +2003-05-30,13.4,13.6,13.3,13.4,147142 +2003-06-02,13.41,13.49,13.13,13.45,89627 +2003-06-03,13.48,13.55,13.1,13.16,112684 +2003-06-04,13.1,13.43,12.99,13.37,131894 +2003-06-05,13.38,13.55,13.17,13.19,87161 +2003-06-06,13.15,13.28,12.96,12.97,114879 +2003-06-09,12.95,13,12.52,12.61,118743 +2003-06-10,12.6,12.85,12.51,12.6,119358 +2003-06-11,12.62,12.93,12.61,12.92,101517 +2003-06-12,13,13,12.66,12.76,56167 +2003-06-13,12.7,12.97,12.65,12.79,104100 +2003-06-16,12.78,12.79,12.45,12.51,74048 +2003-06-17,12.51,12.52,12.23,12.26,144304 +2003-06-18,12.26,12.4,12.2,12.28,151061 +2003-06-19,12.29,12.45,12.21,12.42,136771 +2003-06-20,12.4,12.48,12.05,12.06,94767 +2003-06-23,11.96,12.05,11.8,11.84,87657 +2003-06-24,11.77,11.93,11.67,11.78,87740 +2003-06-25,11.8,11.84,11.5,11.57,78680 +2003-06-26,11.53,11.92,11.47,11.73,158733 +2003-06-27,11.74,11.83,11.5,11.64,82190 +2003-06-30,11.55,11.84,11.48,11.67,57119 +2003-07-01,11.6,11.95,11.6,11.77,110718 +2003-07-02,11.8,12.1,11.69,12.08,97445 +2003-07-03,12.08,12.12,11.9,12.01,68084 +2003-07-04,12,12,11.6,11.71,97636 +2003-07-07,11.58,11.78,11.53,11.7,52050 +2003-07-08,11.7,11.95,11.65,11.81,46793 +2003-07-09,11.8,11.85,11.55,11.59,41848 +2003-07-10,11.59,12.03,11.56,12,149600 +2003-07-11,12.01,12.2,11.9,12.02,144516 +2003-07-14,12.08,12.1,11.93,11.97,34760 +2003-07-15,12,12.19,11.96,12.04,55800 +2003-07-16,12.1,12.25,12.07,12.15,45773 +2003-07-17,12.2,12.39,12.12,12.3,108506 +2003-07-18,12.3,12.33,11.88,11.92,112999 +2003-07-21,11.88,11.9,11.7,11.8,56355 +2003-07-22,11.89,12,11.38,11.5,179782 +2003-07-23,11.51,11.59,11.43,11.56,52611 +2003-07-24,11.5,11.54,11.38,11.52,54483 +2003-07-25,11.46,11.52,11.2,11.29,82150 +2003-07-28,11.26,11.26,11,11.13,105666 +2003-07-29,11.15,11.26,11.06,11.2,61462 +2003-07-30,11.22,11.25,10.99,11.13,48963 +2003-07-31,11.14,11.2,10.99,11.09,57987 +2003-08-01,11.09,11.25,11,11.2,50749 +2003-08-04,11.2,11.43,11.15,11.42,60137 +2003-08-05,11.43,11.45,11.3,11.37,25745 +2003-08-06,11.36,11.36,11.13,11.18,37296 +2003-08-07,11.15,11.51,11.08,11.3,53782 +2003-08-08,11.33,11.33,11.06,11.09,37709 +2003-08-11,11.05,11.2,11.01,11.17,21331 +2003-08-12,11.2,11.36,11.16,11.27,33510 +2003-08-13,11.3,11.32,11.08,11.1,20572 +2003-08-14,11.08,11.22,10.96,11,42364 +2003-08-15,11,11.1,10.85,10.9,51961 +2003-08-18,10.89,10.99,10.8,10.87,19452 +2003-08-19,10.81,10.95,10.81,10.86,23939 +2003-08-20,10.86,10.89,10.74,10.8,27062 +2003-08-21,10.8,10.85,10.69,10.72,21722 +2003-08-22,10.72,10.95,10.5,10.52,47740 +2003-08-25,10.28,10.48,10.24,10.33,37758 +2003-08-26,10.33,10.42,10.25,10.35,38156 +2003-08-27,10.5,10.5,10.27,10.33,34206 +2003-08-28,10.52,10.52,10.17,10.17,53695 +2003-08-29,10.14,10.35,10.12,10.35,32761 +2003-09-01,10.35,10.54,10.27,10.51,62899 +2003-09-02,10.5,10.56,10.28,10.31,41250 +2003-09-03,10.3,10.44,10.26,10.34,39778 +2003-09-04,10.3,10.44,10.29,10.32,36707 +2003-09-05,10.33,10.38,10,10.08,44641 +2003-09-08,10.09,10.09,9.89,10.02,64789 +2003-09-09,10.02,10.03,9.8,9.98,68257 +2003-09-10,9.97,10.1,9.87,10.08,47307 +2003-09-11,10.1,10.25,10.04,10.13,49346 +2003-09-12,10.11,10.12,9.79,9.98,59671 +2003-09-15,10,10.04,9.58,9.74,69641 +2003-09-16,9.74,9.75,9.43,9.62,73983 +2003-09-17,9.61,9.61,9.35,9.42,60198 +2003-09-18,9.4,9.51,9.3,9.47,68330 +2003-09-19,9.6,9.78,9.49,9.72,133173 +2003-09-22,9.74,9.74,9.49,9.56,38301 +2003-09-23,9.55,10,9.5,9.98,166182 +2003-09-24,10,10.08,9.87,9.99,96440 +2003-09-25,10.02,10.06,9.81,9.92,54869 +2003-09-26,9.9,9.97,9.8,9.87,43491 +2003-09-29,9.84,9.84,9.38,9.48,67655 +2003-09-30,9.5,9.63,9.25,9.53,49109 +2003-10-08,9.55,9.56,9.43,9.51,21589 +2003-10-09,9.51,9.61,9.48,9.49,19574 +2003-10-10,9.48,9.78,9.29,9.68,84493 +2003-10-13,9.68,9.79,9.65,9.72,64838 +2003-10-14,9.72,9.75,9.45,9.52,51046 +2003-10-15,9.5,9.67,9.15,9.22,136502 +2003-10-16,9.2,9.3,9.11,9.18,40541 +2003-10-17,9.19,9.4,9.17,9.35,60111 +2003-10-20,9.33,9.33,9.17,9.19,19048 +2003-10-21,9.19,9.28,8.85,9,98534 +2003-10-22,9,9.36,8.9,9.28,117650 +2003-10-23,9.28,9.43,9.2,9.22,93122 +2003-10-24,9.22,9.25,9,9.1,71468 +2003-10-27,9.11,9.13,8.97,9.01,68760 +2003-10-28,9,9.28,8.95,9.21,62885 +2003-10-29,9.37,9.57,9.2,9.56,164335 +2003-10-30,9.56,9.6,9.39,9.41,65524 +2003-10-31,9.4,9.55,9.28,9.39,35217 +2003-11-03,9.38,9.55,9.34,9.52,43020 +2003-11-04,9.52,10.04,9.52,9.75,184216 +2003-11-05,9.74,9.87,9.63,9.72,78339 +2003-11-06,9.75,9.78,9.38,9.4,78370 +2003-11-07,9.38,9.4,9.17,9.19,64525 +2003-11-10,9.15,9.3,9.09,9.27,53816 +2003-11-11,9.27,9.35,9.09,9.18,40998 +2003-11-12,8.8,8.9,8.6,8.77,108355 +2003-11-13,8.77,8.82,8.67,8.73,55663 +2003-11-14,8.73,8.9,8.73,8.83,23524 +2003-11-17,8.82,8.82,8.68,8.72,24580 +2003-11-18,8.8,8.8,8.55,8.58,26689 +2003-11-19,8.58,8.83,8.5,8.75,29870 +2003-11-20,8.77,9.08,8.76,9.03,62559 +2003-11-21,9.06,9.35,8.9,8.92,78634 +2003-11-24,9,9.49,8.95,9.44,127651 +2003-11-25,9.48,9.82,9.47,9.54,201397 +2003-11-26,9.53,9.53,9.4,9.52,60508 +2003-11-27,9.52,9.59,9.28,9.31,54978 +2003-11-28,9.3,9.4,9.27,9.32,37584 +2003-12-01,9.38,9.7,9.33,9.68,95023 +2003-12-02,9.7,9.76,9.56,9.57,77357 +2003-12-03,9.56,9.73,9.39,9.6,179700 +2003-12-04,9.6,9.92,9.58,9.83,228799 +2003-12-05,9.86,9.88,9.69,9.8,82702 +2003-12-08,9.85,9.88,9.53,9.64,71161 +2003-12-09,9.67,9.67,9.4,9.58,56469 +2003-12-10,9.9,10.29,9.72,9.91,332048 +2003-12-11,10.08,10.28,9.99,10.21,354556 +2003-12-15,10.28,10.38,10.18,10.21,161483 +2003-12-16,10.18,10.18,9.85,10.04,100769 +2003-12-17,10.04,10.15,9.9,9.98,68676 +2003-12-18,9.9,10.06,9.86,9.99,54613 +2003-12-19,10,10.12,9.72,10,102459 +2003-12-22,10,10.35,9.72,10.35,170635 +2003-12-23,10.46,10.57,10.35,10.46,137485 +2003-12-24,10.5,10.77,10.5,10.54,139161 +2003-12-25,10.53,10.58,10.39,10.4,78836 +2003-12-26,10.37,10.5,10.33,10.47,76903 +2003-12-29,10.43,10.5,10.2,10.32,87502 +2003-12-30,10.34,10.6,10.2,10.51,100506 +2003-12-31,10.5,10.65,10.2,10.53,113937 +2004-01-02,10.4,10.66,10.32,10.5,115652 +2004-01-05,10.5,11.05,10.48,11.03,204553 +2004-01-06,11.03,11.67,11.03,11.36,293606 +2004-01-07,11.4,11.78,11.36,11.56,169769 +2004-01-08,11.58,11.7,11.4,11.63,103170 +2004-01-09,11.62,11.82,11.27,11.47,193471 +2004-01-12,11.47,11.98,11.4,11.95,217507 +2004-01-13,12,12.1,11.57,11.75,127278 +2004-01-14,11.75,11.75,11.33,11.39,108516 +2004-01-15,11.37,11.51,11.34,11.36,67888 +2004-01-16,11.41,11.44,11.28,11.4,77613 +2004-01-29,11.4,11.7,11.22,11.68,71238 +2004-01-30,11.68,11.69,11.18,11.25,74349 +2004-02-02,11.86,11.94,11.31,11.67,156184 +2004-02-03,11.66,11.9,11.56,11.89,113089 +2004-02-04,11.89,12.15,11.85,12,169434 +2004-02-05,13.18,13.18,12.03,12.23,237274 +2004-02-06,12.2,12.49,11.95,12.22,195767 +2004-02-09,12.11,12.36,12.11,12.35,71974 +2004-02-10,12.41,12.46,11.96,12,108534 +2004-02-11,12,12.05,11.68,11.75,128275 +2004-02-12,11.75,11.85,11.4,11.51,160468 +2004-02-13,11.5,11.76,11.45,11.55,85631 +2004-02-16,11.55,11.94,11.55,11.93,79616 +2004-02-17,11.93,12,11.77,11.78,88458 +2004-02-18,11.78,12.07,11.58,11.74,127779 +2004-02-19,11.7,11.84,11.4,11.5,125762 +2004-02-20,11.5,11.79,11.4,11.7,110907 +2004-02-23,11.7,11.74,11.25,11.28,208820 +2004-02-24,11.23,11.24,10.77,10.98,157257 +2004-02-25,11,11.05,10.62,10.66,143270 +2004-02-26,10.6,10.78,10.57,10.76,71218 +2004-02-27,10.88,10.95,10.72,10.85,108086 +2004-03-01,10.86,10.88,10.54,10.79,127682 +2004-03-02,10.8,11.01,10.8,10.92,109421 +2004-03-03,10.95,11.07,10.77,10.77,80261 +2004-03-04,10.67,10.88,10.6,10.86,72548 +2004-03-05,10.9,10.96,10.66,10.69,45285 +2004-03-08,10.68,10.72,10.36,10.38,70899 +2004-03-09,10.38,10.5,10.29,10.34,71444 +2004-03-10,10.38,10.75,10.36,10.74,88255 +2004-03-11,10.78,10.86,10.7,10.79,95871 +2004-03-12,10.8,10.85,10.56,10.6,77077 +2004-03-15,10.6,11.09,10.6,11.05,144347 +2004-03-16,11.06,11.13,10.94,11.08,126315 +2004-03-17,11.1,11.21,10.99,11.17,130429 +2004-03-18,11.22,11.3,10.91,10.94,133021 +2004-03-19,10.94,11.06,10.9,11,120422 +2004-03-22,11.06,11.34,11,11.33,153864 +2004-03-23,11.33,11.33,11.1,11.2,151149 +2004-03-24,11.08,11.15,10.95,11,105841 +2004-03-25,11.03,11.33,11.03,11.1,110857 +2004-03-26,11.12,11.2,10.96,11.05,50647 +2004-03-29,11.02,11.15,11,11,43377 +2004-03-31,10.97,11,10.77,10.86,64505 +2004-04-01,10.9,11.12,10.88,11.11,70453 +2004-04-02,11.13,11.26,11.12,11.14,74581 +2004-04-05,11.16,11.35,11.13,11.2,79527 +2004-04-06,11.2,11.28,10.98,11.15,96349 +2004-04-07,11.16,11.2,10.94,10.95,100793 +2004-04-08,10.95,10.96,10.59,10.6,283106 +2004-04-09,10.6,10.7,10.4,10.49,145653 +2004-04-12,10.4,10.57,10.3,10.51,59625 +2004-04-13,10.52,10.6,10.28,10.3,86396 +2004-04-14,10.27,10.36,10.05,10.14,86753 +2004-04-15,10.15,10.29,10.06,10.09,62777 +2004-04-16,10.1,10.33,10.05,10.3,61986 +2004-04-19,10.3,10.31,10.15,10.19,43887 +2004-04-20,10.18,10.48,10.13,10.28,63442 +2004-04-21,10.29,10.45,10,10.05,91573 +2004-04-22,10,10.21,10,10.06,96684 +2004-04-23,10.1,10.1,9.82,9.86,121282 +2004-04-26,9.88,10.01,9.86,10,37904 +2004-04-27,10.06,10.19,9.99,10.06,45976 +2004-04-28,9.5,9.99,9.5,9.85,83723 +2004-04-29,9.85,10.06,9.75,9.78,102304 +2004-04-30,9.8,9.96,9.5,9.62,126837 +2004-05-10,9.62,9.69,9.4,9.41,36161 +2004-05-11,9.4,9.53,9.3,9.38,42026 +2004-05-12,9.4,9.65,9.38,9.59,47914 +2004-05-13,9.62,9.68,9.58,9.63,26535 +2004-05-14,9.65,9.66,9.4,9.44,26806 +2004-05-17,9.44,9.48,9.25,9.28,44140 +2004-05-18,9.38,9.41,9.14,9.4,45452 +2004-05-19,9.42,9.51,9.26,9.39,38920 +2004-05-20,9.39,9.52,9.25,9.25,51801 +2004-05-21,9.29,9.38,9.25,9.36,34665 +2004-05-24,9.34,9.38,9.26,9.3,55693 +2004-05-25,9.35,9.38,9.21,9.23,36267 +2004-05-26,9.22,9.35,9.19,9.33,33024 +2004-05-27,9.34,9.52,9.26,9.47,45747 +2004-05-28,9.47,9.48,9.38,9.38,22297 +2004-06-01,9.42,9.6,9.41,9.52,51949 +2004-06-02,9.52,9.65,9.48,9.5,48511 +2004-06-03,9.5,9.5,9.28,9.28,30271 +2004-06-04,9.28,9.48,9.27,9.31,18961 +2004-06-07,9.3,9.3,9.18,9.24,32205 +2004-06-08,9.2,9.31,8.9,9,51867 +2004-06-09,9,9.04,8.88,8.9,41036 +2004-06-10,8.9,9.04,8.9,9,27837 +2004-06-11,9,9.11,8.76,8.78,55228 +2004-06-14,8.77,8.78,8.54,8.6,45925 +2004-06-15,8.6,9.11,8.55,8.94,54139 +2004-06-16,8.95,9.04,8.83,8.96,37891 +2004-06-17,8.99,9.02,8.78,8.79,19442 +2004-06-18,8.8,8.86,8.51,8.66,51995 +2004-06-21,8.66,8.85,8.58,8.84,23345 +2004-06-22,8.83,8.96,8.76,8.82,20890 +2004-06-23,8.82,8.89,8.75,8.86,18447 +2004-06-24,8.86,8.9,8.78,8.8,13388 +2004-06-25,8.8,8.95,8.65,8.69,22747 +2004-06-28,8.67,8.8,8.61,8.65,19711 +2004-06-29,8.7,8.87,8.63,8.83,22253 +2004-06-30,8.83,8.88,8.77,8.79,23394 +2004-07-01,8.82,9.03,8.79,9.01,40715 +2004-07-02,9.01,9.13,8.92,9.02,46829 +2004-07-05,9,9.15,8.95,9.14,24328 +2004-07-06,9.16,9.32,9.1,9.18,51951 +2004-07-07,9.16,9.2,9.09,9.09,21159 +2004-07-08,9.1,9.19,9.06,9.18,16675 +2004-07-09,9.18,9.27,9.12,9.15,20849 +2004-07-12,9.1,9.1,8.93,8.95,32548 +2004-07-13,8.91,9.02,8.89,8.99,15354 +2004-07-14,8.99,9.12,8.93,9.09,39513 +2004-07-15,9.09,9.32,9.09,9.32,66115 +2004-07-16,9.34,9.48,9.33,9.39,52316 +2004-07-19,9.39,9.59,9.34,9.51,50306 +2004-07-20,9.47,9.52,9.36,9.39,47330 +2004-07-21,9.36,9.41,9.3,9.4,16489 +2004-07-22,9.38,9.42,9.13,9.19,62911 +2004-07-23,9.17,9.27,9.13,9.26,41079 +2004-07-26,9.27,9.37,9.17,9.29,56901 +2004-07-27,9.25,9.36,9.21,9.27,38361 +2004-07-28,9.25,9.35,8.98,9.06,39900 +2004-07-29,9.06,9.21,9.06,9.19,26117 +2004-07-30,9.21,9.23,9.1,9.11,27547 +2004-08-02,9.1,9.1,8.95,9.01,25334 +2004-08-03,9.02,9.02,8.5,8.53,118146 +2004-08-04,8.58,8.77,8.18,8.67,171756 +2004-08-05,8.65,8.66,8.4,8.42,32574 +2004-08-06,8.4,8.61,8.35,8.49,37321 +2004-08-09,8.49,8.65,8.39,8.59,33798 +2004-08-10,8.6,8.72,8.56,8.7,28251 +2004-08-11,8.71,8.74,8.59,8.66,17014 +2004-08-12,8.61,8.61,8.45,8.56,29039 +2004-08-13,8.55,8.75,8.49,8.71,68314 +2004-08-16,8.7,8.82,8.67,8.7,26299 +2004-08-17,8.69,8.75,8.59,8.67,19471 +2004-08-18,8.66,8.84,8.65,8.76,39986 +2004-08-19,8.76,8.81,8.71,8.72,27805 +2004-08-20,8.7,8.9,8.7,8.8,20230 +2004-08-23,8.8,8.8,8.54,8.57,33031 +2004-08-24,8.57,8.66,8.54,8.62,12824 +2004-08-25,8.62,8.65,8.55,8.59,11237 +2004-08-26,8.6,8.63,8.56,8.58,6646 +2004-08-27,8.58,8.62,8.5,8.52,9161 +2004-08-30,8.52,8.65,8.44,8.59,8879 +2004-08-31,8.7,8.9,8.66,8.74,27396 +2004-09-01,8.75,8.77,8.48,8.5,17270 +2004-09-02,8.5,8.56,8.41,8.55,14852 +2004-09-03,8.56,8.57,8.45,8.48,15921 +2004-09-06,8.48,8.48,8.35,8.4,17890 +2004-09-07,8.4,8.5,8.4,8.49,10266 +2004-09-08,8.5,8.52,8.4,8.46,9708 +2004-09-09,8.45,8.45,8.35,8.38,14441 +2004-09-10,8.35,8.4,8.23,8.37,15847 +2004-09-13,8.36,8.36,8.18,8.2,15283 +2004-09-14,8.26,8.5,8.22,8.45,34873 +2004-09-15,8.54,8.83,8.42,8.7,80535 +2004-09-16,8.88,8.94,8.75,8.78,75673 +2004-09-17,8.78,9.04,8.76,9.03,92664 +2004-09-20,9.03,9.33,9.03,9.32,128152 +2004-09-21,9.34,9.34,9.1,9.19,82736 +2004-09-22,9.18,9.3,8.85,8.9,110684 +2004-09-23,8.9,9.22,8.81,9.19,39136 +2004-09-24,9.26,9.33,8.98,8.98,181148 +2004-09-27,9.01,9.17,8.68,8.7,71656 +2004-09-28,8.7,8.82,8.65,8.74,34664 +2004-09-29,8.71,8.75,8.53,8.56,48640 +2004-09-30,8.56,8.59,8.41,8.49,50038 +2004-10-08,8.49,8.52,8.28,8.51,44687 +2004-10-11,8.48,8.58,8.4,8.48,42073 +2004-10-12,8.48,8.48,8.23,8.28,39779 +2004-10-13,8.3,8.38,8.29,8.32,60784 +2004-10-14,8.33,8.35,8.2,8.24,46948 +2004-10-15,8.24,8.31,8.18,8.22,44181 +2004-10-18,8.2,8.25,7.97,8.04,47708 +2004-10-19,8.02,8.23,7.98,8.05,30907 +2004-10-20,8.05,8.05,7.77,7.85,69857 +2004-10-21,7.84,7.84,7.25,7.3,198368 +2004-10-22,7.3,7.45,7.2,7.33,69332 +2004-10-25,7.45,7.49,7.16,7.19,62800 +2004-10-26,7.18,7.37,7.13,7.35,63002 +2004-10-27,7.36,7.48,7.3,7.45,46908 +2004-10-28,7.49,7.55,7.4,7.51,64903 +2004-10-29,7.5,7.75,7.29,7.41,262017 +2004-11-01,7.4,7.42,7.25,7.31,58851 +2004-11-02,7.31,7.45,7.24,7.44,36303 +2004-11-03,7.42,7.57,7.4,7.49,46361 +2004-11-04,7.5,7.61,7.34,7.38,33461 +2004-11-05,7.42,7.52,7.35,7.44,17888 +2004-11-08,7.41,7.47,7.36,7.45,12612 +2004-11-09,7.45,7.48,7.37,7.4,13386 +2004-11-10,7.41,7.74,7.38,7.67,73986 +2004-11-11,7.66,7.76,7.59,7.6,95549 +2004-11-12,7.6,7.67,7.51,7.62,32937 +2004-11-15,7.62,7.7,7.47,7.59,43623 +2004-11-16,7.61,7.66,7.55,7.64,30454 +2004-11-17,7.66,7.66,7.47,7.53,38455 +2004-11-18,7.52,7.54,7.47,7.53,30214 +2004-11-19,7.55,7.7,7.55,7.63,38141 +2004-11-22,7.62,7.68,7.55,7.67,29367 +2004-11-23,7.67,7.67,7.54,7.55,26936 +2004-11-24,7.55,7.61,7.5,7.5,23104 +2004-11-25,7.5,7.5,7.37,7.4,59664 +2004-11-26,7.4,7.48,7.38,7.41,32140 +2004-11-29,7.4,7.47,7.3,7.31,28214 +2004-11-30,7.31,7.32,7.2,7.24,44947 +2004-12-01,7.22,7.27,7.21,7.23,21220 +2004-12-02,7.23,7.28,7.19,7.25,23717 +2004-12-03,7.27,7.3,7.23,7.23,24575 +2004-12-06,7.23,7.28,7.18,7.24,23814 +2004-12-07,7.24,7.35,7.23,7.29,25770 +2004-12-08,7.35,7.4,7.3,7.33,22586 +2004-12-09,7.34,7.61,7.27,7.43,93354 +2004-12-10,7.43,7.45,7.3,7.33,33837 +2004-12-13,7.26,7.33,7.2,7.28,23375 +2004-12-14,7.29,7.29,7.16,7.2,28848 +2004-12-15,7.19,7.28,7.13,7.18,37148 +2004-12-16,7.2,7.39,7.14,7.22,63923 +2004-12-17,7.18,7.26,7.16,7.17,31151 +2004-12-20,7.15,7.22,7.06,7.07,31543 +2004-12-21,7.1,7.14,6.96,6.98,32096 +2004-12-22,6.98,7.12,6.97,7.1,36628 +2004-12-23,7.11,7.31,7.08,7.12,110477 +2004-12-24,7.11,7.2,7.07,7.11,36124 +2004-12-27,7.1,7.15,6.99,7.03,28074 +2004-12-28,7.04,7.07,6.97,7.02,14431 +2004-12-29,7.03,7.09,6.98,7,19173 +2004-12-30,7,7.04,6.95,7,28732 +2004-12-31,7,7.06,6.99,7,24103 +2005-01-04,6.98,6.98,6.82,6.88,38089 +2005-01-05,6.88,6.88,6.72,6.77,52252 +2005-01-06,6.8,6.83,6.63,6.68,42981 +2005-01-07,6.68,6.76,6.65,6.7,43629 +2005-01-10,6.8,6.95,6.73,6.93,71153 +2005-01-11,6.93,7.02,6.9,7.01,68952 +2005-01-12,7.02,7.03,6.91,6.97,27974 +2005-01-13,6.95,7.02,6.94,6.96,12848 +2005-01-14,6.96,7.08,6.9,6.92,17310 +2005-01-17,6.9,6.92,6.79,6.8,26208 +2005-01-18,6.8,6.88,6.73,6.88,15958 +2005-01-19,6.88,6.88,6.76,6.78,10294 +2005-01-20,6.75,6.78,6.65,6.72,21106 +2005-01-21,6.72,7.39,6.7,7.39,413737 +2005-01-24,7.67,7.76,7.42,7.65,467508 +2005-01-25,7.55,7.56,7.36,7.47,267953 +2005-01-26,7.47,7.59,7.38,7.42,162308 +2005-01-27,7.39,7.51,7.25,7.3,108080 +2005-01-28,7.28,7.46,7.21,7.44,104111 +2005-01-31,7.4,7.44,7.28,7.37,76626 +2005-02-01,7.36,7.56,7.32,7.5,114257 +2005-02-02,7.5,7.95,7.46,7.88,239071 +2005-02-03,7.88,7.9,7.63,7.66,137771 +2005-02-04,7.66,8.3,7.6,8.12,241704 +2005-02-16,8.16,8.28,8.01,8.04,127186 +2005-02-17,8.04,8.04,7.8,7.87,115674 +2005-02-18,7.88,7.96,7.75,7.8,80919 +2005-02-21,7.95,8.12,7.85,8.07,168369 +2005-02-22,8.07,8.18,7.99,8.11,103037 +2005-02-23,8.11,8.11,7.88,7.91,153737 +2005-02-24,7.9,8.03,7.84,7.88,101870 +2005-02-25,7.95,8.11,7.9,7.97,114734 +2005-02-28,7.95,7.95,7.66,7.74,174379 +2005-03-01,7.75,7.75,7.57,7.62,109238 +2005-03-02,7.62,7.72,7.55,7.6,88165 +2005-03-03,7.6,7.74,7.58,7.73,62804 +2005-03-04,7.73,7.74,7.61,7.66,50818 +2005-03-07,7.62,7.71,7.6,7.65,28201 +2005-03-08,7.69,7.81,7.5,7.78,131324 +2005-03-09,7.78,7.8,7.55,7.57,131850 +2005-03-10,7.6,7.66,7.4,7.45,83274 +2005-03-11,7.45,7.54,7.38,7.41,58579 +2005-03-14,7.42,7.45,7.25,7.37,70781 +2005-03-15,7.38,7.4,7.13,7.16,76734 +2005-03-16,7.16,7.22,7.13,7.16,51493 +2005-03-17,7.18,7.27,7.13,7.13,63911 +2005-03-18,7.13,7.27,7.12,7.19,53242 +2005-03-21,7.2,7.28,7.16,7.24,35636 +2005-03-22,7.24,7.24,6.83,6.84,89448 +2005-03-23,6.84,7.01,6.78,6.91,74145 +2005-03-24,6.91,6.95,6.81,6.91,35456 +2005-03-25,6.91,6.94,6.82,6.86,30012 +2005-03-28,6.86,6.9,6.79,6.9,29395 +2005-03-29,6.9,7.01,6.9,6.92,34022 +2005-03-30,6.92,6.93,6.74,6.75,42913 +2005-03-31,6.73,6.93,6.7,6.92,39312 +2005-04-01,6.92,7.4,6.83,7.24,112411 +2005-04-04,7.05,7.11,6.96,7,63075 +2005-04-05,7,7.05,6.96,7.02,25922 +2005-04-06,7,7.2,6.85,7.19,83599 +2005-04-07,7.2,7.74,7.16,7.4,193899 +2005-04-08,7.4,7.58,7.32,7.52,99440 +2005-04-11,7.53,7.71,7.42,7.49,137110 +2005-04-12,7.48,7.5,7.36,7.38,64880 +2005-04-13,7.4,7.69,7.4,7.48,93626 +2005-04-14,7.48,7.54,7.33,7.35,55578 +2005-04-15,7.28,7.3,7.14,7.26,58009 +2005-04-18,7.15,7.25,7.09,7.14,50184 +2005-04-19,7.11,7.22,7.11,7.21,62365 +2005-04-20,7.19,7.19,6.87,6.91,75756 +2005-04-21,6.91,7,6.89,6.92,37527 +2005-04-22,6.88,6.99,6.85,6.96,55562 +2005-04-25,6.91,7.04,6.9,7,53921 +2005-04-26,7,7.11,6.97,7.04,34607 +2005-04-28,6.95,6.95,6.6,6.87,99318 +2005-04-29,6.86,7.2,6.8,7.02,91394 +2005-05-09,7.09,7.1,6.89,6.9,44088 +2005-05-10,6.9,7.1,6.89,7.04,49067 +2005-05-11,7.05,7.17,7.01,7.06,55283 +2005-05-12,7.05,7.05,6.82,6.82,54174 +2005-05-13,6.8,6.96,6.75,6.86,38520 +2005-05-16,6.85,6.93,6.76,6.88,21429 +2005-05-17,6.88,7.04,6.83,6.94,29984 +2005-05-18,7,7.02,6.84,6.9,38101 +2005-05-19,6.91,7.06,6.88,7.04,35161 +2005-05-20,7.05,7.06,6.95,6.96,22623 +2005-05-23,6.96,6.96,6.75,6.81,69166 +2005-05-24,6.77,6.89,6.76,6.85,31534 +2005-05-25,6.88,6.96,6.8,6.82,31386 +2005-05-26,6.83,6.88,6.7,6.74,32253 +2005-05-27,6.74,6.82,6.66,6.7,26403 +2005-05-30,6.7,6.8,6.62,6.79,19256 +2005-05-31,6.79,6.83,6.68,6.7,28306 +2005-06-01,6.7,6.74,6.55,6.59,35054 +2005-06-02,6.58,6.65,6.41,6.48,66712 +2005-06-03,6.46,6.69,6.46,6.6,53526 +2005-06-06,6.59,6.72,6.5,6.68,28446 +2005-06-07,6.7,6.8,6.61,6.66,34119 +2005-06-08,7.33,7.33,6.69,7.18,156885 +2005-06-09,7.18,7.25,7.02,7.12,131936 +2005-06-10,7.12,7.37,7.06,7.17,150261 +2005-06-13,7.17,7.26,7.01,7.11,59610 +2005-06-14,7.14,7.18,7.05,7.07,54630 +2005-06-15,7.05,7.08,6.95,6.99,41289 +2005-06-16,7.01,7.34,7.01,7.32,221680 +2005-06-17,7.34,7.52,7.25,7.46,187577 +2005-06-20,7.52,7.7,7.39,7.56,209778 +2005-06-21,7.59,7.71,7.5,7.6,144592 +2005-06-22,7.57,7.74,7.54,7.72,132548 +2005-06-23,7.75,7.76,7.55,7.6,88286 +2005-06-24,7.55,7.69,7.47,7.62,132683 +2005-06-27,7.75,7.85,7.6,7.66,117670 +2005-06-29,7.6,7.62,7.45,7.53,60143 +2005-06-30,7.51,7.8,7.41,7.65,72035 +2005-07-01,7.58,7.58,7.31,7.36,47087 +2005-07-04,7.3,7.44,7.26,7.43,30881 +2005-07-05,7.43,7.5,7.3,7.4,25783 +2005-07-06,7.43,7.51,7.38,7.41,22130 +2005-07-07,7.38,7.5,7.31,7.35,21416 +2005-07-08,7.35,7.36,7.2,7.22,27017 +2005-07-11,7.31,7.46,7.3,7.32,35031 +2005-07-12,7.3,8.03,7.25,7.87,195931 +2005-07-13,7.8,7.85,7.69,7.73,59279 +2005-07-14,7.7,7.86,7.68,7.77,43116 +2005-07-15,7.78,7.89,7.76,7.79,70777 +2005-07-18,7.75,7.92,7.72,7.89,63641 +2005-07-19,7.89,8.13,7.83,7.92,113748 +2005-07-20,7.9,8.08,7.85,7.9,63991 +2005-07-21,7.92,7.98,7.76,7.92,63858 +2005-07-22,8.02,8.32,7.96,8.18,228375 +2005-07-25,8.2,8.34,8.12,8.27,118445 +2005-07-26,8.22,8.5,8.21,8.31,153660 +2005-07-27,8.3,8.35,8.17,8.3,85429 +2005-07-28,8.3,8.4,8.2,8.28,80140 +2005-07-29,8.26,8.34,8.2,8.34,73488 +2005-08-01,8.33,8.39,8.09,8.13,99844 +2005-08-02,8.1,8.22,8.1,8.21,74603 +2005-08-03,8.22,8.33,8.19,8.22,89788 +2005-08-04,8.2,8.28,8.14,8.19,43281 +2005-08-05,8.16,8.46,8.15,8.42,121316 +2005-08-08,8.46,8.62,8.45,8.47,94712 +2005-08-09,8.45,8.54,8.36,8.5,69337 +2005-08-10,8.5,8.73,8.45,8.65,92126 +2005-08-11,8.65,8.85,8.61,8.76,128609 +2005-08-12,8.77,8.86,8.49,8.51,105416 +2005-08-15,8.52,8.65,8.48,8.65,78476 +2005-08-16,8.68,8.84,8.43,8.49,143837 +2005-08-17,8.45,8.6,8.35,8.55,104593 +2005-08-18,8.55,8.57,8.18,8.23,120575 +2005-08-19,8.2,8.41,8.2,8.38,74688 +2005-08-22,8.38,8.42,8.25,8.38,45005 +2005-08-23,8.41,8.42,8.23,8.3,47106 +2005-08-24,8.35,8.52,8.31,8.47,140069 +2005-08-25,8.45,8.57,8.42,8.52,48080 +2005-08-26,8.58,8.69,8.47,8.51,42414 +2005-08-29,8.51,8.6,8.45,8.45,50494 +2005-08-30,8.45,8.51,8.4,8.46,24791 +2005-08-31,8.42,8.52,8.4,8.48,44417 +2005-09-01,8.48,8.68,8.39,8.62,94493 +2005-09-02,8.6,8.65,8.55,8.63,53723 +2005-09-05,8.63,8.66,8.54,8.56,37593 +2005-09-06,8.54,8.55,8.38,8.4,58420 +2005-09-07,8.39,8.47,8.31,8.44,55144 +2005-09-08,8.46,8.55,8.4,8.54,64385 +2005-09-09,8.52,8.58,8.46,8.48,44448 +2005-09-12,8.5,8.67,8.5,8.61,66828 +2005-09-13,8.61,8.64,8.52,8.64,34854 +2005-09-14,8.64,8.96,8.61,8.85,111143 +2005-09-15,8.86,8.88,8.8,8.86,34845 +2005-09-16,8.86,9.02,8.84,8.9,62436 +2005-09-19,8.9,8.97,8.82,8.85,39076 +2005-09-20,8.86,8.88,8.67,8.71,42595 +2005-09-21,8.66,8.76,8.47,8.49,49920 +2005-09-22,8.47,8.51,8.12,8.27,71246 +2005-09-23,8.2,8.32,8.14,8.17,34844 +2005-09-26,8.2,8.32,8.18,8.21,22869 +2005-09-27,8.21,8.31,7.96,8.06,40161 +2005-09-29,8.11,8.27,8.11,8.18,26284 +2005-09-30,8.18,8.32,8.18,8.3,27977 +2005-10-10,8.26,8.41,8.21,8.39,27507 +2005-10-11,8.37,8.47,8.31,8.47,31483 +2005-10-12,8.47,8.53,8.38,8.5,52833 +2005-10-13,8.49,8.6,8.49,8.5,58605 +2005-10-14,8.5,8.54,8.23,8.23,35704 +2005-10-17,8.23,8.33,8.18,8.3,24926 +2005-10-18,8.3,8.35,8.12,8.15,34299 +2005-10-19,8.18,8.47,8.18,8.4,65622 +2005-10-20,8.4,8.82,8.35,8.78,121918 +2005-10-21,8.78,8.94,8.7,8.72,103567 +2005-10-24,8.7,8.74,8.58,8.73,32998 +2005-10-25,8.72,8.75,8.57,8.61,30746 +2005-10-26,8.6,8.61,8.29,8.33,70139 +2005-10-27,8.31,8.45,8.23,8.3,46304 +2005-10-28,8.3,8.39,8.1,8.3,59498 +2005-10-31,8.31,8.66,8.3,8.52,68992 +2005-11-01,8.48,8.62,8.48,8.6,47013 +2005-11-02,8.68,8.68,8.5,8.54,36217 +2005-11-03,8.53,8.58,8.07,8.2,122621 +2005-11-04,8.2,8.33,8.15,8.3,51429 +2005-11-07,8.29,8.29,8.11,8.16,45441 +2005-11-08,8.15,8.3,8.08,8.29,40530 +2005-11-09,8.29,8.42,8.24,8.37,53121 +2005-11-10,8.35,8.42,8.26,8.29,46971 +2005-11-11,8.2,8.37,8.2,8.33,22767 +2005-11-14,8.32,8.33,8.12,8.13,32616 +2005-11-15,8.13,8.27,8.12,8.15,28616 +2005-11-16,8.2,8.3,8.15,8.26,21182 +2005-11-17,8.26,8.31,8.17,8.26,7499 +2005-11-18,8.26,8.66,8.26,8.65,82510 +2005-11-21,8.6,8.65,8.52,8.61,32598 +2005-11-22,8.59,8.59,8.46,8.46,18847 +2005-11-23,8.45,8.66,8.41,8.59,21154 +2005-11-24,8.62,8.8,8.55,8.72,60608 +2005-11-25,8.71,8.76,8.65,8.73,26183 +2005-11-28,8.73,8.76,8.6,8.66,33348 +2005-11-29,8.62,8.67,8.55,8.65,36790 +2005-11-30,8.62,8.87,8.59,8.81,72897 +2005-12-01,8.81,8.83,8.63,8.69,95823 +2005-12-02,8.67,8.82,8.64,8.78,48521 +2005-12-05,8.75,8.82,8.66,8.72,37466 +2005-12-06,8.67,8.9,8.62,8.87,60821 +2005-12-07,8.89,8.91,8.79,8.89,41313 +2005-12-08,8.89,8.99,8.78,8.79,57885 +2005-12-09,8.71,9.13,8.71,9.06,95382 +2005-12-12,9.06,9.18,9,9.11,68955 +2005-12-13,9.11,9.16,9.02,9.11,35558 +2005-12-14,9.1,9.45,9.1,9.32,133558 +2005-12-15,9.35,9.46,9.27,9.33,73650 +2005-12-16,9.33,9.41,9.26,9.31,64106 +2005-12-19,9.3,9.33,9.18,9.3,68924 +2005-12-20,9.3,9.59,9.28,9.56,77269 +2005-12-21,9.56,9.85,9.53,9.58,142932 +2005-12-22,9.56,9.75,9.56,9.72,57978 +2005-12-23,9.72,9.85,9.65,9.74,61011 +2005-12-26,9.74,10.03,9.73,9.89,122230 +2005-12-27,9.9,9.95,9.6,9.66,75147 +2005-12-28,9.64,9.73,9.57,9.66,75879 +2005-12-29,9.62,9.82,9.61,9.74,76467 +2005-12-30,9.77,9.95,9.72,9.75,121611 +2006-01-04,9.82,10.28,9.8,10.25,163333 +2006-01-05,10.25,10.5,10.16,10.42,177381 +2006-01-06,10.4,10.83,10.3,10.72,186432 +2006-01-09,10.75,10.76,10.44,10.59,168938 +2006-01-10,10.58,10.75,10.31,10.62,143593 +2006-01-11,10.58,10.73,10.46,10.65,93245 +2006-01-12,10.62,10.74,10.48,10.71,58095 +2006-01-13,10.7,10.95,10.33,10.42,136454 +2006-01-16,10.42,10.44,10.03,10.07,133244 +2006-01-17,10.05,10.4,10,10.3,116692 +2006-01-18,10.65,10.95,10.48,10.95,133458 +2006-01-19,10.95,11.31,10.88,11.13,185364 +2006-01-20,11.1,11.2,10.9,11.11,87636 +2006-01-23,11.02,11.22,10.9,10.99,90165 +2006-01-24,10.95,11.16,10.81,10.93,87890 +2006-01-25,10.93,11.29,10.91,11.27,88900 +2006-02-06,11.32,11.63,11.31,11.54,128835 +2006-02-07,11.54,11.59,11.12,11.26,93658 +2006-02-08,11.2,11.53,11.2,11.34,140609 +2006-02-09,11.32,11.32,10.93,11.03,124903 +2006-02-10,10.93,11.1,10.85,11.07,116884 +2006-02-13,11.08,11.1,10.83,11.06,67068 +2006-02-14,11.08,11.2,10.93,11.14,46612 +2006-02-16,11.32,11.48,11.15,11.29,181929 +2006-02-17,11.26,11.72,11.17,11.58,189012 +2006-02-20,11.56,11.85,11.45,11.71,135688 +2006-02-21,11.69,11.97,11.67,11.9,187026 +2006-02-22,11.95,11.97,11.78,11.83,136080 +2006-02-23,11.78,12.05,11.75,12,112957 +2006-02-24,11.99,12.2,11.97,12.19,315504 +2006-03-09,11.49,11.49,10.97,11.01,391081 +2006-03-10,10.9,11.08,10.76,10.84,142287 +2006-03-13,10.84,11.05,10.84,11.01,94054 +2006-03-14,11.01,11.1,10.61,10.64,131764 +2006-03-15,10.64,10.82,10.58,10.75,119832 +2006-03-16,10.75,11.04,10.7,10.84,139330 +2006-03-17,10.86,10.92,10.75,10.77,99733 +2006-03-20,10.75,10.93,10.53,10.86,185135 +2006-05-12,10.06,10.66,9.8,10.21,1410869 +2006-05-15,10.2,10.28,9.72,10.08,961230 +2006-05-16,10.06,10.29,9.77,10.04,599343 +2006-05-17,10.05,10.24,9.95,10.15,418709 +2006-05-18,10.1,10.11,9.8,9.96,276242 +2006-05-19,9.94,10.16,9.85,10.09,383717 +2006-05-22,10.06,10.09,9.83,9.87,395597 +2006-05-23,9.81,9.82,9.46,9.51,314318 +2006-05-24,9.51,10.26,9.51,10,632652 +2006-05-25,9.95,10.08,9.81,9.95,212903 +2006-05-26,9.95,10.33,9.94,10.22,380975 +2006-05-29,10.23,10.31,10.05,10.23,230727 +2006-05-31,10.2,10.3,9.94,9.97,230889 +2006-06-01,10,10.37,9.93,10.17,373009 +2006-06-02,10.18,10.23,9.95,10,217844 +2006-06-05,9.98,9.98,9.67,9.92,209459 +2006-06-06,9.9,9.97,9.75,9.79,141114 +2006-06-07,9.7,9.72,9.07,9.08,304841 +2006-06-08,9.01,9.05,8.7,8.95,288278 +2006-06-09,8.94,9,8.72,8.75,132809 +2006-06-12,8.7,9.13,8.58,9.07,202029 +2006-06-13,9,9.08,8.84,8.89,125755 +2006-06-14,8.82,8.86,8.67,8.72,84453 +2006-06-16,8.8,9.34,8.79,9.3,204101 +2006-06-19,9.1,9.29,9.03,9.21,173391 +2006-06-20,9.2,9.53,9.1,9.49,169113 +2006-06-21,9.45,9.51,9.29,9.4,158045 +2006-06-22,9.3,9.73,9.3,9.59,158973 +2006-06-23,9.58,9.88,9.52,9.82,208560 +2006-06-26,9.82,10.02,9.81,10,169145 +2006-06-27,10,10.03,9.75,9.8,96023 +2006-06-28,9.77,9.86,9.71,9.74,49230 +2006-06-29,9.71,10.05,9.71,9.88,141378 +2006-06-30,9.95,10.04,9.85,9.91,128074 +2006-07-03,9.93,10.31,9.9,10.3,312133 +2006-07-04,10.3,10.33,10,10.13,193953 +2006-07-05,10.1,10.13,9.65,9.67,156091 +2006-07-06,9.68,9.81,9.65,9.73,88328 +2006-07-07,9.76,9.79,9.51,9.54,149146 +2006-07-10,9.78,9.8,9.6,9.67,132549 +2006-07-11,9.71,9.78,9.6,9.76,112483 +2006-07-12,9.76,9.85,9.7,9.71,113622 +2006-07-13,9.66,9.66,9.19,9.28,183044 +2006-07-14,9.25,9.55,9.19,9.36,121878 +2006-07-17,9.3,9.42,9.24,9.36,56235 +2006-07-18,9.36,9.38,9.26,9.35,42156 +2006-07-19,9.34,9.34,9.2,9.23,53705 +2006-07-20,9.26,9.32,9.23,9.27,44413 +2006-07-21,9.28,9.54,9.25,9.39,79773 +2006-07-24,9.2,9.57,9.1,9.45,63126 +2006-07-25,9.45,9.5,9.29,9.31,87951 +2006-07-26,9.35,9.4,9.22,9.31,72080 +2006-07-27,9.26,9.45,9.14,9.19,72128 +2006-07-28,9.2,9.24,8.99,9.06,90944 +2006-07-31,9.02,9.02,8.78,8.8,97491 +2006-08-01,8.8,8.9,8.74,8.76,70032 +2006-08-02,8.75,8.84,8.6,8.7,83698 +2006-08-03,8.75,8.92,8.7,8.87,55911 +2006-08-04,8.9,9,8.8,8.83,79796 +2006-08-07,8.8,9.06,8.74,8.88,61618 +2006-08-08,8.88,9.16,8.88,9.11,61541 +2006-08-09,9.12,9.23,9,9,68865 +2006-08-10,9.01,9.24,9.01,9.21,89430 +2006-08-11,9.2,9.27,9.18,9.26,53025 +2006-08-14,9.26,9.45,9.18,9.23,85320 +2006-08-15,9.22,9.42,9.15,9.4,57967 +2006-08-16,9.44,9.66,9.38,9.52,172723 +2006-08-17,9.5,9.5,9.3,9.34,52174 +2006-08-18,9.28,9.46,9.28,9.29,42026 +2006-08-21,9.09,9.44,8.96,9.4,63633 +2006-08-22,9.34,9.71,9.34,9.58,135009 +2006-08-23,9.58,9.8,9.58,9.67,141390 +2006-08-24,9.67,9.72,9.52,9.68,84979 +2006-08-25,9.7,9.72,9.55,9.59,89796 +2006-08-28,9.61,10.05,9.54,9.91,317751 +2006-08-29,9.9,10.06,9.72,9.77,212149 +2006-08-30,9.74,9.8,9.61,9.74,76477 +2006-08-31,9.75,10,9.75,9.83,182475 +2006-09-01,9.81,9.82,9.5,9.6,116365 +2006-09-04,9.61,9.82,9.6,9.74,83088 +2006-09-05,9.76,10.02,9.76,9.89,348566 +2006-09-06,9.96,10.03,9.87,10.03,189899 +2006-09-07,10.02,10.27,10.02,10.05,219142 +2006-09-08,10.1,10.26,9.96,10.25,208662 +2006-09-11,10.24,10.61,10.23,10.6,371181 +2006-09-12,10.58,10.68,10.48,10.5,246887 +2006-09-13,10.5,10.89,10.48,10.57,222989 +2006-09-14,10.58,10.82,10.33,10.46,194888 +2006-09-15,10.49,10.69,10.39,10.47,200072 +2006-09-18,10.46,10.52,10.05,10.25,291506 +2006-09-19,10.24,10.55,10.21,10.39,176517 +2006-09-20,10.38,10.66,10.36,10.61,209078 +2006-09-21,10.63,10.94,10.63,10.89,291200 +2006-09-22,10.96,11.1,10.58,10.64,431613 +2006-09-25,10.59,10.67,10.19,10.34,283909 +2006-09-26,10.32,10.33,10.08,10.15,242769 +2006-09-27,10.15,10.42,10.14,10.4,105694 +2006-09-28,10.4,10.53,10.33,10.46,124172 +2006-09-29,10.54,10.64,10.49,10.62,128800 +2006-10-09,10.88,11.68,10.88,11.68,553133 +2006-10-10,11.6,12.04,11.52,11.8,470710 +2006-10-11,11.79,12.05,11.67,11.97,170817 +2006-10-12,11.97,12.5,11.92,12.12,251663 +2006-10-13,12.06,12.57,11.97,12.18,186803 +2006-10-16,12.2,12.58,12.15,12.4,210501 +2006-10-17,12.37,12.37,11.92,12.05,200692 +2006-10-18,12.03,12.92,11.95,12.91,228333 +2006-10-19,12.88,12.96,12.69,12.95,161604 +2006-10-20,12.88,13.38,12.81,13.15,229657 +2006-10-23,13.01,13.35,12.7,12.76,177183 +2006-10-24,12.72,13.13,12.72,13.12,136765 +2006-10-25,13.16,13.98,13.16,13.79,309021 +2006-10-26,13.7,14.08,13.47,14.02,196529 +2006-10-27,13.95,14.5,13.7,13.72,265185 +2006-10-30,13.61,13.69,13.22,13.4,164296 +2006-10-31,13.4,14.08,13.4,13.98,122869 +2006-11-01,13.98,13.98,13.44,13.83,185817 +2006-11-02,13.79,13.79,13.13,13.33,166603 +2006-11-03,13.3,13.76,13.3,13.58,168607 +2006-11-06,13.37,13.75,13.34,13.58,149859 +2006-11-07,13.67,14.45,13.67,14.37,236378 +2006-11-08,14.25,14.26,13.85,13.98,119901 +2006-11-09,13.95,14.98,13.9,14.73,220868 +2006-11-10,14.7,15.75,14.66,15.16,369421 +2006-11-13,15.03,15.6,14.36,14.42,304539 +2006-11-14,14.6,15.15,14.43,14.99,247355 +2006-11-15,15,15.3,14.72,15.23,277140 +2006-11-22,15.9,16.74,15.36,16.4,441712 +2006-11-23,16.39,16.93,16.3,16.55,178778 +2006-11-24,16.4,16.46,15.73,16.05,166071 +2006-11-27,15.79,15.96,15.2,15.55,174353 +2006-11-28,15.49,16,15.45,15.85,135769 +2006-11-29,15.4,16.12,15.23,15.93,146218 +2006-11-30,15.8,16.85,15.78,16.83,305308 +2006-12-01,16.87,17.1,16.3,16.54,220679 +2006-12-04,16.45,17.3,16.36,17.18,290350 +2006-12-05,17.21,18,17.11,17.28,235475 +2006-12-06,17.2,17.77,16.38,17,235044 +2006-12-07,16.94,17.77,16.92,17.07,261701 +2006-12-08,16.7,17.2,16.3,16.37,221259 +2006-12-11,16.12,16.96,16.12,16.93,208372 +2006-12-12,16.99,17.65,16.73,17.28,174008 +2006-12-13,17.4,17.5,16.79,16.98,255512 +2006-12-14,17.27,17.5,16.5,16.86,158182 +2006-12-15,17,17.68,16.8,17.65,224876 +2006-12-18,17.8,18.2,17.68,18.02,239409 +2006-12-19,18.02,18.3,17.48,17.79,184245 +2006-12-20,17.5,17.8,17.25,17.6,167693 +2006-12-21,17.6,17.8,17.12,17.2,221740 +2006-12-22,17.08,17.59,16.96,17.39,212803 +2006-12-25,17.6,18.67,17.55,18.36,329431 +2006-12-26,18.3,18.7,17.9,18.14,222236 +2006-12-27,18.2,19.38,18,19.37,199181 +2006-12-28,19.46,21.22,19.4,20.17,266291 +2006-12-29,20.33,21.53,20.32,21.31,281221 +2007-01-04,21.65,23.44,19.96,21.46,508894 +2007-01-05,21.46,21.46,19.52,20.83,357056 +2007-01-08,20.8,21.68,20.61,21.25,254889 +2007-01-09,21.03,22.9,21,22.79,329619 +2007-01-10,22.83,24.28,22.83,23.63,352768 +2007-01-11,23.5,24.33,22.52,23.22,228859 +2007-01-12,22.9,23.37,22.2,22.6,232148 +2007-01-15,22.92,24,22.71,23.95,228229 +2007-01-16,24.01,24.45,23.2,23.78,201942 +2007-01-17,23.85,24.01,22.54,22.94,292171 +2007-01-18,22.7,23.01,20.65,21.39,353450 +2007-01-19,21.5,22.3,21.5,21.82,296652 +2007-01-22,22.5,23.1,21.95,22.59,421726 +2007-01-23,22.88,24.85,22.32,24.85,491352 +2007-01-24,24.91,25.99,24.11,24.7,352938 +2007-01-25,24.3,25.5,23.81,24.37,286076 +2007-01-26,24.05,26.81,23.8,26.58,371711 +2007-01-29,26.4,27.8,25.97,27.19,374506 +2007-01-30,27,28.33,25.8,26.33,388509 +2007-01-31,26.28,26.28,23.7,24.99,281170 +2007-02-01,24.4,25.16,24.2,24.59,175139 +2007-02-02,24.65,24.97,22.33,23,199090 +2007-02-05,22.65,23.1,21.52,21.7,272387 +2007-02-06,21.68,23.44,20.59,23.17,519051 +2007-02-07,22.88,24.5,22.82,24,401711 +2007-02-08,23.95,24.14,23.01,23.52,167338 +2007-02-09,23.3,23.63,22.5,22.54,161642 +2007-02-12,22.9,24.2,22.6,24.14,145918 +2007-02-13,24.29,25.28,24.09,24.63,109159 +2007-02-14,24.8,25.58,24.48,25.04,130270 +2007-02-15,25.41,26.14,25.3,25.62,135387 +2007-02-16,25.66,26.15,25.25,25.49,224284 +2007-02-26,25.26,25.26,23.91,24.26,254432 +2007-02-27,24.24,24.4,21.83,21.85,389475 +2007-02-28,21.38,22.48,21.18,22.32,332595 +2007-03-01,22.52,22.82,21.61,21.87,234793 +2007-03-02,21.89,22.19,21.43,21.95,238131 +2007-03-05,21.7,22.38,21.2,21.65,180287 +2007-03-06,21.8,23.82,21.79,23.6,545484 +2007-03-07,23.27,24.64,23.02,23.9,339338 +2007-03-08,23.9,24.28,23.41,24.15,123814 +2007-03-09,24.29,25.18,24.25,24.82,305024 +2007-03-12,24.8,24.81,23.69,24,189584 +2007-03-13,24,24,23.31,23.61,111121 +2007-03-14,23.01,23.22,22.51,22.91,224636 +2007-03-15,23.11,24.2,23.1,24.11,204241 +2007-03-16,24.4,24.58,22.88,23.11,159516 +2007-03-19,22.61,25.42,22.55,25.37,520669 +2007-03-20,25.19,25.42,24.65,25.03,233310 +2007-03-21,25.05,26.5,25.03,26.17,448859 +2007-03-22,26.37,26.63,25.8,26.28,350928 +2007-03-23,26.35,26.6,25.11,25.76,269493 +2007-03-26,25,26.14,24.8,25.83,214000 +2007-03-27,25.85,25.85,25.01,25.31,145782 +2007-03-28,25.21,26.3,24.9,25.94,287433 +2007-03-29,26.07,28.32,25.9,26.69,443594 +2007-03-30,26.21,27,26.18,26.72,151772 +2007-04-02,26.9,28.3,26.7,28.04,217709 +2007-04-03,28.1,28.42,27.8,27.99,215339 +2007-04-04,27.89,29,27.8,28.48,157604 +2007-04-05,28.5,29.8,28.5,29.09,229585 +2007-04-06,28.64,29.15,27.9,28.25,180051 +2007-04-09,28.25,29.5,27.9,28.6,142711 +2007-04-10,28.55,29.33,28.35,29.29,260173 +2007-04-11,29.3,31.26,29.3,30.55,251636 +2007-04-12,30.5,30.99,29.88,30.04,171993 +2007-04-13,30.09,30.38,29.5,29.84,156221 +2007-04-16,29.6,31.34,29.17,30.7,154580 +2007-04-17,30.89,30.99,28.88,29.84,171080 +2007-04-18,29.83,29.83,28.48,28.81,243835 +2007-04-19,28.81,29,26.4,27.03,261149 +2007-04-20,27.35,28.19,27.1,27.95,211064 +2007-04-23,27.96,28.66,27.6,28.6,308398 +2007-04-24,28.71,28.8,27.75,27.94,204340 +2007-04-25,27.85,30.1,27.11,28.82,273237 +2007-04-26,29.15,29.45,28,28.38,239526 +2007-04-27,28.45,28.59,27.15,27.49,360346 +2007-04-30,27.2,27.52,26.6,26.9,382334 +2007-05-08,27.66,28.41,27.25,28.13,333968 +2007-05-09,27.8,29.03,27.35,28.89,492098 +2007-05-10,28.94,30.45,28.8,29.29,502662 +2007-05-11,28.9,29.57,28.16,29.29,360527 +2007-05-14,28.78,30.12,28.5,29.26,1007490 +2007-05-15,29,29.3,26.99,27.07,582898 +2007-05-16,27.02,27.85,26.99,27.36,374643 +2007-05-17,27.4,28.3,27.27,27.94,448783 +2007-05-18,27.99,28.15,27.48,27.74,263810 +2007-05-21,27.01,27.8,27,27.55,438435 +2007-05-23,27.5,28.1,27.4,27.7,443952 +2007-05-24,28,29.5,27.96,29.11,801706 +2007-05-25,29,30.85,28.82,29.44,518265 +2007-05-28,29.8,30.2,29.47,29.65,301058 +2007-05-29,29.65,30.06,29.5,29.72,265231 +2007-05-30,27.5,31.24,27.5,30.69,756722 +2007-05-31,31.3,33.76,31.28,33.76,649701 +2007-06-01,33.69,35.66,33,33.01,471051 +2007-06-04,33.76,33.99,31,32.44,282444 +2007-06-05,31.9,33,29.2,32.79,329276 +2007-06-06,31.9,32.86,31,32.27,236678 +2007-06-07,32.41,34,32.16,32.73,255289 +2007-06-08,32.7,32.7,31.18,31.6,272818 +2007-06-11,31.6,32.95,30.7,32.32,398198 +2007-06-12,31.9,32.57,31,32.39,310928 +2007-06-13,32.3,34.3,32.3,33.63,378747 +2007-06-14,33.21,34.78,32.35,34.19,340053 +2007-06-15,33.51,36.83,33.5,35.91,427099 +2007-06-18,36.4,38.23,36.4,36.99,447070 +2007-06-19,36.55,38.1,36.3,36.97,225559 +2007-06-20,36.97,36.97,35.2,35.31,144517 +2007-06-21,35.2,37.16,35.19,36.4,235682 +2007-06-22,36.4,38.5,35.85,37.39,223017 +2007-06-25,37.32,39.15,37.31,37.87,353977 +2007-06-26,37.4,38,35.9,37.19,199879 +2007-06-27,37.19,38.8,36.61,38.65,202849 +2007-06-28,38.71,39.5,37.39,37.59,128205 +2007-06-29,36.8,38.05,36.18,36.59,165050 +2007-07-02,36.2,36.5,34.34,35.48,164983 +2007-07-03,35.48,36.32,34.5,35.89,96485 +2007-07-04,35.95,36.2,34.1,34.28,109050 +2007-07-05,33.71,34.4,33.33,33.55,68324 +2007-07-06,33.15,34.7,32.52,34.64,105949 +2007-07-09,34.71,36.2,34,35.63,126299 +2007-07-10,35.73,37.34,35.73,36.16,131907 +2007-07-11,35.98,36.85,35.6,36.45,99966 +2007-07-12,36.65,37.32,36.15,37.3,118566 +2007-07-13,37.3,37.3,35.9,36.44,42551 +2007-07-16,36.68,36.68,34.8,34.89,52770 +2007-07-17,34.66,36.72,34.3,36.33,115114 +2007-07-18,36.14,38.2,36.11,36.58,280917 +2007-07-19,36.25,37.8,36.25,37.38,147844 +2007-07-20,37.56,41.12,37.38,41.07,471575 +2007-07-23,41.4,42.8,41.15,41.68,253212 +2007-07-24,41.75,42.5,40.55,41.83,187913 +2007-07-25,42,43,41.83,42.3,119485 +2007-07-26,42.3,42.35,41.13,41.38,133739 +2007-07-27,41,41,39.82,40.47,163586 +2007-07-30,40.3,41.3,39.9,41,167418 +2007-07-31,40.7,41.1,39.5,40.25,212695 +2007-08-01,40.55,42.19,40,40.39,216850 +2007-08-02,40.7,42.27,40.7,41.81,178893 +2007-08-03,42.11,44.58,42.11,44.23,272467 +2007-08-06,44.6,46.17,43.3,45.04,153587 +2007-08-07,45,45.45,43.95,44.09,151665 +2007-08-08,43.42,45.48,43,44,189407 +2007-08-09,43.8,46.08,43.8,45.2,168625 +2007-08-10,45.22,45.7,43.51,44.59,146096 +2007-08-13,44.56,46,40.14,44,251802 +2007-08-14,43.5,46.11,43.01,45.48,270155 +2007-08-15,45.5,46.5,44.88,45.95,143585 +2007-08-16,45.69,46.02,43.9,44.27,105204 +2007-08-17,43.83,44.7,41.8,42.04,242393 +2007-08-20,43.14,45.05,43.14,44.96,189500 +2007-08-21,45.1,47.4,44.98,46.9,236165 +2007-08-22,46.01,50.09,46.01,49.39,281288 +2007-08-23,49.39,51,48.25,49.95,239773 +2007-08-24,49.85,53.25,49.5,52.68,293155 +2007-08-27,52.68,54.28,51.5,52.01,210761 +2007-08-28,52,53.39,50.98,52,178002 +2007-08-29,52,53.35,51.5,51.88,122212 +2007-08-30,52.48,53.83,52.48,52.96,126702 +2007-08-31,53,55.1,52.9,55,162347 +2007-09-03,55.38,57.9,55.38,56.04,171063 +2007-09-04,56,56.5,53.4,54.37,187614 +2007-09-05,54,54.4,52.5,53.19,115662 +2007-09-06,53.38,54.7,52.2,53.25,203689 +2007-09-07,52.2,53.83,50.9,51.91,114633 +2007-09-10,51,53.65,50.18,53.19,107625 +2007-09-11,53.13,54.1,50.48,50.95,111279 +2007-09-12,50.14,51.79,49.3,49.76,147141 +2007-09-13,50.29,51.75,49.7,50.91,140834 +2007-09-14,51.02,52.18,50.05,50.91,154547 +2007-09-17,51.4,52.65,51.26,51.56,293776 +2007-09-18,51.97,52.28,49.3,49.9,126994 +2007-09-19,49.65,51.1,48.95,49.52,78876 +2007-09-20,49.91,51.08,49.1,49.74,116793 +2007-09-21,49.71,50.3,47.7,48.98,183069 +2007-09-24,49,50.25,48.82,50.2,167216 +2007-09-25,50.53,51,49.16,49.72,81276 +2007-09-26,49.2,50.92,48.58,48.71,209936 +2007-09-27,48.62,50.6,48.62,50.4,191963 +2007-09-28,51.17,52.79,50.55,52.5,176109 +2007-10-08,53.64,56.15,53.2,55.1,193187 +2007-10-09,55.1,56.01,53.51,54.98,86598 +2007-10-10,55,56.88,53.71,54.13,112873 +2007-10-11,54.26,56.15,54.26,55.97,230665 +2007-10-12,55.99,57.38,51.5,54.99,144463 +2007-10-15,55,56.1,52.5,53.96,180019 +2007-10-16,54.01,56.1,54.01,55.07,184583 +2007-10-17,54.91,57.1,53.51,54.73,290390 +2007-10-18,54.6,54.73,51.5,51.65,139783 +2007-10-19,52.18,52.83,50.11,51.21,145478 +2007-10-22,50.88,52.32,49.46,52,114649 +2007-10-23,51.88,53.5,51.55,52.59,163961 +2007-10-24,53.1,56.3,52.52,54.97,166058 +2007-10-25,54.69,56.4,54.4,55.07,143873 +2007-10-26,54.8,58.5,54,58.07,185884 +2007-10-29,57.55,60.91,57.1,58.05,165028 +2007-10-30,58.06,58.7,56.7,57.75,117980 +2007-10-31,58.85,59.29,56.3,58.79,155240 +2007-11-01,58.2,60.08,57.55,59.68,88095 +2007-11-02,58.95,59.79,56.7,57.87,54719 +2007-11-05,56.8,57.8,54.82,54.91,70404 +2007-11-06,54.64,55.5,54,54.2,81726 +2007-11-07,54.5,55.8,54.12,55.68,59333 +2007-11-08,55.7,55.7,52.32,52.93,102389 +2007-11-09,52.4,54.37,52.31,53.68,129116 +2007-11-12,52.43,55.78,52.43,55.44,221987 +2007-11-13,55.97,56.37,52,52.88,64180 +2007-11-14,53.2,54.25,51.7,53.91,105653 +2007-11-15,53.85,55.99,53.5,54.78,74625 +2007-11-16,54,54.78,52.5,52.86,45467 +2007-11-19,52.66,53.3,50.26,50.8,90253 +2007-11-20,50.5,51,48.8,50.28,110774 +2007-11-21,50.41,52.09,49.19,49.36,82685 +2007-11-22,49,49.33,46.4,46.92,131901 +2007-11-23,46.5,48.1,46.5,48,54252 +2007-11-26,48.56,50,47.6,47.82,106790 +2007-11-27,47.69,48.5,47,47.69,30359 +2007-11-28,48.03,48.66,47.56,47.96,28991 +2007-11-29,48.88,52.08,48.5,51.71,133525 +2007-11-30,51.8,52.2,50.49,51.89,105728 +2007-12-03,51.36,54.51,51.12,53.66,112702 +2007-12-04,53.69,54.65,52.7,53.17,60119 +2007-12-05,53,54.25,52.95,53.96,56509 +2007-12-06,54.05,55.98,53.35,55.77,104178 +2007-12-07,55.8,56.1,55,55.6,48584 +2007-12-10,54.11,54.42,53.31,54.26,165827 +2007-12-11,54.3,54.7,51.9,53.06,133997 +2007-12-12,52.24,52.24,49.18,49.93,283446 +2007-12-13,49.12,50.23,48.38,48.47,197453 +2007-12-14,48.03,49.5,47.71,49.47,160677 +2007-12-17,48.99,48.99,45.9,46.51,175297 +2007-12-18,46.25,47.5,45.5,46.02,110979 +2007-12-19,46.51,47.8,46.46,47.37,75297 +2007-12-20,47.9,50.1,47.5,49.41,98929 +2007-12-21,49.1,50.46,48.77,49.13,154451 +2007-12-24,49.61,50.35,49.15,50.07,136832 +2007-12-25,50.2,50.8,49.79,50.24,136293 +2007-12-26,50.27,51.04,49.5,50.09,166403 +2007-12-27,50.02,51.6,49.45,51.57,251088 +2007-12-28,51.5,53.15,51.21,52.8,153610 +2008-01-02,53,55.05,51.81,53.55,131584 +2008-01-03,53,53.55,49.58,50.87,211347 +2008-01-04,50.95,53.61,50.02,53.01,139250 +2008-01-07,52.78,56.45,52.68,55.99,228043 +2008-01-08,56.2,57.19,56,56.39,161255 +2008-01-09,56.39,57.5,55.5,56.86,102511 +2008-01-10,57.08,57.88,56.5,56.96,217966 +2008-01-11,56.9,61.97,56.9,61.59,231544 +2008-01-14,61,61.39,59,59.19,142918 +2008-01-15,59.68,61.13,58.88,59.14,161222 +2008-01-16,58.1,58.5,54.3,55.82,175253 +2008-01-17,55.01,57.28,53.8,56.47,108675 +2008-01-18,55.98,57.56,55.4,57.05,83246 +2008-01-21,56.9,56.9,54,54.06,76278 +2008-01-22,52,54.5,48.65,50,237331 +2008-01-23,51.2,52.94,50.6,52.21,142449 +2008-01-24,52.8,53.08,49.99,51.46,109841 +2008-01-25,51,54.28,49.21,53.2,224258 +2008-01-28,52.5,52.5,49.65,50.59,71826 +2008-01-29,51.15,52.28,48.6,50.39,57172 +2008-01-30,50.4,50.7,45.8,47.73,148543 +2008-01-31,46.8,48.2,44.8,46,128975 +2008-02-01,46,47.68,44.85,47.23,120040 +2008-02-04,49,51.95,49,51.95,190052 +2008-02-05,52.4,52.5,50.9,51.4,113230 +2008-02-13,50,50.8,48.86,48.98,88990 +2008-02-14,49.78,51.15,49.67,50.03,65639 +2008-02-15,49.88,49.88,48.3,48.82,39435 +2008-02-18,49.81,51.2,49.1,50.22,55582 +2008-02-19,50.26,51.2,48.8,51.09,156283 +2008-02-20,50.5,50.5,45.98,45.98,733089 +2008-02-21,42.1,44.62,41.5,43.23,427392 +2008-02-22,42.9,42.9,39.97,39.98,278454 +2008-02-25,39.71,39.8,38.25,39,191011 +2008-02-26,40.48,41.8,39.45,40.49,238235 +2008-02-27,40.38,42.12,38.8,40.62,281058 +2008-02-28,39.48,41.63,39.21,40.89,150332 +2008-02-29,41.01,42.3,41,42.13,174203 +2008-03-03,41.65,43.05,40.78,42.83,131701 +2008-03-04,42.85,43,38.9,38.98,356841 +2008-03-05,39.5,40,38.65,39.15,127748 +2008-03-06,39.68,41.91,38.75,40.1,179861 +2008-03-07,39.1,40.58,39.05,39.44,122712 +2008-03-10,39.18,39.18,36.36,36.46,222600 +2008-03-11,36.28,36.5,34.98,35.45,204877 +2008-03-12,36.55,36.78,33,33.3,273057 +2008-03-13,32.98,34.1,32.53,33.77,231674 +2008-03-14,33.74,33.85,31.84,32.44,232353 +2008-03-17,32.25,33.78,31.62,32.62,164829 +2008-03-18,32.38,33.8,31.68,32.58,184440 +2008-03-20,31.02,35.17,30.01,34.7,300570 +2008-03-21,34.6,35.5,33.69,34.28,255930 +2008-03-24,34.65,34.79,30.85,30.85,337217 +2008-03-25,30.31,32.1,29.63,31.43,249858 +2008-03-26,31.89,33.5,31.89,33.04,365398 +2008-03-27,32.3,33.97,31.82,33.26,219029 +2008-03-28,33,36.06,32.65,35.82,400005 +2008-03-31,34.58,36.58,34.21,35.4,275568 +2008-04-01,35.02,36.55,33.3,35.35,250548 +2008-04-02,36.04,37.85,35.61,36.3,419024 +2008-04-03,35.99,36.57,34.75,36.5,282785 +2008-04-07,36,37.7,35.61,37.48,283704 +2008-04-08,37.51,37.55,36.2,37.33,254121 +2008-04-09,36.7,37.02,34.33,34.43,254974 +2008-04-10,34.46,35.17,33.33,34.41,177867 +2008-04-11,35,35.6,34.42,34.82,169789 +2008-04-14,35,35.58,31.91,32.2,425570 +2008-04-15,32.35,32.7,30.4,32.08,349592 +2008-04-16,31.9,32.55,30.8,31.31,216461 +2008-04-17,31.4,32.18,30,30.51,203809 +2008-04-18,30,31.2,28.91,30.52,208420 +2008-04-21,32.88,32.91,30.38,31.04,424904 +2008-04-22,30.3,32.83,29.9,32.61,293161 +2008-04-23,32.41,35.44,32,35.29,379089 +2008-04-24,29.68,29.72,28.55,29.72,775806 +2008-04-25,29,30.71,28.6,29.32,634977 +2008-04-28,28.95,30.12,28.58,29.23,447696 +2008-04-29,29.11,30.2,29.1,29.79,362681 +2008-04-30,30.03,32.6,30.03,32.4,549837 +2008-05-05,33.12,33.29,31.58,32.66,534179 +2008-05-06,32,32.4,31.3,31.65,409838 +2008-05-07,31.1,31.75,29.26,29.32,589670 +2008-05-08,28.9,29.9,28.5,29.59,328438 +2008-05-09,29.72,29.9,27.4,28.08,744493 +2008-05-12,27.5,29.6,27.19,29.28,494600 +2008-05-13,28.45,29.4,28,28.54,362927 +2008-05-14,28.61,31.1,28.61,31.03,634348 +2008-05-15,31.41,31.5,30,30.08,431170 +2008-05-16,29.99,31.02,29.9,30.62,406147 +2008-05-19,30.49,30.7,29.8,30.22,180401 +2008-05-20,30.25,30.75,28.48,28.59,362749 +2008-05-21,28.25,29.1,27.4,28.58,401431 +2008-05-22,28.07,28.27,27.4,27.7,310809 +2008-05-23,27.7,28.7,27.69,28.26,324732 +2008-05-26,27.95,27.95,27,27.26,226837 +2008-05-27,27.25,27.6,26.97,27.27,181119 +2008-05-28,27.3,29.2,27.27,28.56,378047 +2008-05-29,28.48,28.63,27.5,27.55,209597 +2008-05-30,27.73,28.44,27.7,28.12,211375 +2008-06-02,27.88,28.88,27.75,28.44,233500 +2008-06-03,28.3,28.9,28.15,28.69,268424 +2008-06-04,28.68,28.8,27.69,28.38,199115 +2008-06-05,28.2,29.08,27.95,28.79,278814 +2008-06-06,28.9,29.34,28.53,28.61,246108 +2008-06-10,27,27.39,25.75,25.75,331906 +2008-06-11,25.23,25.23,24.3,24.73,284255 +2008-06-12,24.48,24.73,23.6,24.13,277866 +2008-06-13,24.01,24.55,23.73,23.87,189985 +2008-06-16,24.01,24.52,23.5,24,186132 +2008-06-17,23.96,24.51,23.72,24.09,232869 +2008-06-18,23.96,25.62,23.65,25.23,276463 +2008-06-19,25,25,23,23.03,192468 +2008-06-20,23.16,25.18,22.45,24.4,517290 +2008-06-23,23.83,24.36,23.5,24.03,117721 +2008-06-24,23.8,24.88,23.8,24.5,155269 +2008-06-25,24.49,25.25,24.17,24.92,250357 +2008-06-26,24.9,25.13,24.2,24.53,223900 +2008-06-27,23.65,23.65,22.61,22.99,262442 +2008-06-30,22.6,23.14,21.75,22,184726 +2008-07-01,22.2,22.38,19.99,20.13,387371 +2008-07-02,20.15,20.27,19.4,20.2,262193 +2008-07-03,19.7,21.13,19.51,20.42,262911 +2008-07-04,21.29,21.4,20.6,20.95,378659 +2008-07-07,21.19,22.65,21.01,22.41,417064 +2008-07-08,22.55,23.09,21.83,22.39,352263 +2008-07-09,22.75,24.16,22.75,23.44,582634 +2008-07-10,22.89,24.36,22.8,23.69,537653 +2008-07-11,23.53,23.78,22.7,23.29,409432 +2008-07-14,22.9,23.9,22.85,23.5,184105 +2008-07-15,23.61,23.65,21.8,21.83,414416 +2008-07-16,21.3,21.57,20.45,20.81,284804 +2008-07-17,21.36,21.6,20.01,20.42,320049 +2008-07-18,20.8,21.47,20.12,21.3,336102 +2008-07-21,21.01,22.29,20.82,22.13,318406 +2008-07-22,22,22.34,21.8,22.01,189683 +2008-07-23,22.36,22.68,21.88,21.9,251903 +2008-07-24,22.24,23.76,22.15,23.69,509212 +2008-07-25,23.19,24.24,23.01,23.91,558695 +2008-07-28,24.2,25.1,23.76,24.05,410422 +2008-07-29,23.5,23.8,23.01,23.55,242526 +2008-07-30,24.15,24.25,23.09,23.44,225183 +2008-07-31,23.53,23.54,22.54,22.71,237357 +2008-08-01,22.45,24.2,22.35,23.88,317555 +2008-08-04,23.3,24.24,23.18,23.29,243369 +2008-08-05,23.9,24.03,23.1,23.25,312304 +2008-08-06,23.5,23.97,23.27,23.7,222424 +2008-08-07,23.65,23.95,22.8,23.16,222476 +2008-08-08,23.1,23.21,21.59,21.67,247861 +2008-08-11,21.64,23.3,21.41,21.91,434407 +2008-08-12,21.6,22,21,21.54,173777 +2008-08-13,21.38,21.49,20.53,21.27,205574 +2008-08-14,21.29,21.43,20.61,21.11,218217 +2008-08-15,21.11,21.75,20.66,21.26,195891 +2008-08-18,21.26,21.34,20.1,20.12,172973 +2008-08-19,19.9,20.9,19.82,20.53,169025 +2008-08-20,20.28,22.58,20,22.58,477983 +2008-08-21,22.19,22.66,21.65,21.92,295407 +2008-08-22,21.8,21.91,20.88,21.23,227930 +2008-08-25,21.3,21.88,20.98,21.25,143767 +2008-08-26,20.8,21.56,20.55,20.75,169778 +2008-08-27,20.68,21.32,20.56,20.99,171533 +2008-08-28,21.05,21.7,20.9,21.32,171995 +2008-08-29,21.58,22.05,21.25,21.97,244063 +2008-09-01,21.65,21.82,20.58,20.69,266362 +2008-09-02,20.5,20.78,19.9,20.07,262089 +2008-09-03,20.07,20.19,18.95,19.19,310175 +2008-09-04,19.15,19.15,18.27,18.94,476703 +2008-09-05,18.2,18.49,17.9,17.99,347505 +2008-09-08,18.2,18.28,17.52,17.67,236946 +2008-09-09,17.8,17.94,17.5,17.71,249919 +2008-09-10,17.54,17.85,16.98,17.25,365249 +2008-09-11,17.19,17.2,15.83,15.93,531795 +2008-09-12,15.99,16.3,15.61,15.93,379490 +2008-09-16,15,15,14.34,14.34,802176 +2008-09-17,13.8,14.06,13,13.34,879603 +2008-09-18,12.89,14.45,12.71,13.87,1145038 +2008-09-19,15.26,15.26,15,15.26,675512 +2008-09-22,16.77,16.79,15.59,16.79,2261011 +2008-09-23,15.8,16.34,15.58,15.66,1082443 +2008-09-24,15,15.38,14.6,15.35,797896 +2008-09-25,15.23,16.25,15,15.68,1025480 +2008-09-26,15.85,16.08,15.28,15.62,578385 +2008-10-06,15.01,15.03,14.06,14.06,655419 +2008-10-07,13.33,14.28,13.31,13.86,519144 +2008-10-08,13.21,13.43,12.58,12.94,781823 +2008-10-09,13.06,13.3,12.6,12.88,579117 +2008-10-10,12.1,12.71,11.92,12.3,666313 +2008-10-13,12.29,13.53,12.18,13.53,1022246 +2008-10-14,14.1,14.53,13.26,13.33,1325250 +2008-10-15,13.18,13.96,13,13.92,692931 +2008-10-16,13.2,13.57,13.05,13.16,608074 +2008-10-17,13.5,13.55,12.9,13.35,480214 +2008-10-20,13.19,14.14,12.83,14.09,630288 +2008-10-21,14.06,14.25,13.54,13.58,699504 +2008-10-22,13.34,13.89,13.25,13.27,439721 +2008-10-23,12.86,12.93,12.27,12.91,742029 +2008-10-24,12.8,12.88,12,12.14,689114 +2008-10-27,11.81,11.83,11,11.01,563252 +2008-10-28,10.81,12.11,10.77,12.1,1063479 +2008-10-29,12.06,12.43,11.76,11.86,993836 +2008-10-30,11.89,12.66,11.84,12.17,709453 +2008-10-31,12.21,12.24,11.66,11.74,589091 +2008-11-03,11.6,12.38,11.53,11.95,475056 +2008-11-04,11.82,12.24,11.6,12.02,393298 +2008-11-05,12.25,13.22,12.2,12.76,989551 +2008-11-06,12.28,12.39,12.02,12.13,536093 +2008-11-07,11.81,13.08,11.73,12.76,791412 +2008-11-10,13.32,14.04,13.05,14.04,1330335 +2008-11-11,13.92,14.27,13.78,13.82,977181 +2008-11-12,13.61,14.47,13.61,14.18,792386 +2008-11-13,13.83,15.09,13.8,14.81,1192620 +2008-11-14,15.05,15.16,14.6,14.95,1156767 +2008-11-17,14.81,15.35,14.7,15.26,945645 +2008-11-18,15.17,15.37,13.73,13.73,1233211 +2008-11-19,13.8,15,13.74,14.76,893983 +2008-11-21,13.88,14.84,13.44,14.19,1186878 +2008-11-24,13.98,14.04,13.25,13.27,642139 +2008-11-25,13.65,13.74,12.86,13.14,482962 +2008-11-26,13.14,13.25,12.75,12.99,467197 +2008-11-27,13.71,13.85,12.88,12.92,1139802 +2008-11-28,12.65,12.65,11.9,11.99,1122281 +2008-12-01,11.9,12.3,11.63,12.19,624735 +2008-12-02,11.87,12.28,11.69,12.07,728934 +2008-12-03,12.31,12.94,12.23,12.9,1284943 +2008-12-04,13.24,13.94,13.17,13.36,1895744 +2008-12-05,13.25,13.7,13.2,13.57,881932 +2008-12-08,13.85,14.81,13.85,14.77,1574854 +2008-12-09,14.99,15.04,14.11,14.15,1269096 +2008-12-10,14.22,15.5,14.22,15.43,1975459 +2008-12-11,15.05,15.28,14.71,14.86,1455962 +2008-12-12,14.61,14.74,13.6,13.88,1118391 +2008-12-15,14.25,14.37,13.69,14.03,785350 +2008-12-16,13.78,14.14,13.39,14.04,626874 +2008-12-17,14.12,14.26,13.75,13.8,736396 +2008-12-18,13.81,14.9,13.56,14.83,1211006 +2008-12-19,14.59,15.05,14.53,14.67,1055108 +2008-12-22,14.67,14.68,14.11,14.24,600471 +2008-12-23,14.19,14.19,13.54,13.66,798079 +2008-12-24,13.47,13.98,13.41,13.74,549509 +2008-12-25,13.78,13.86,13.33,13.45,384169 +2008-12-26,13.45,13.65,13.26,13.41,411875 +2008-12-29,13.19,13.41,13,13.18,453395 +2008-12-30,13.2,13.49,13.05,13.31,406552 +2008-12-31,13.32,13.5,13.15,13.25,259070 +2009-01-05,13.51,13.77,13.35,13.72,503143 +2009-01-06,13.92,14.6,13.92,14.48,958496 +2009-01-07,14.48,14.58,14.22,14.29,618939 +2009-01-08,13.88,13.95,13.56,13.65,601220 +2009-01-09,13.68,14.16,13.68,14.09,567305 +2009-01-12,14.09,14.64,14.07,14.3,754046 +2009-01-13,13.92,14.2,13.8,13.99,524560 +2009-01-14,13.96,15.24,13.88,15.12,1130278 +2009-01-15,14.8,15.44,14.7,15.11,1198118 +2009-01-16,15.2,16.1,15.2,15.62,1124420 +2009-01-19,15.85,16.83,15.83,15.96,1084712 +2009-01-20,15.92,16.28,15.81,16.2,498246 +2009-01-21,15.86,16.8,15.78,16.37,618324 +2009-01-22,16.45,16.74,16.03,16.48,404504 +2009-01-23,16.28,16.95,16.28,16.69,521515 +2009-02-02,16.8,16.91,16.23,16.31,438752 +2009-02-03,16.39,16.86,16.28,16.69,519221 +2009-02-04,16.85,17.67,16.8,17.53,605140 +2009-02-05,17.49,17.78,16.92,17.11,624910 +2009-02-06,17.28,17.67,17,17.56,587789 +2009-02-09,18,18.06,17.5,17.79,530120 +2009-02-10,17.72,17.85,17.22,17.75,521029 +2009-02-11,17.35,18.22,16.97,17.56,1157760 +2009-02-12,17.56,17.59,16.6,16.93,871124 +2009-02-13,16.86,17.47,16.86,17.4,744770 +2009-02-16,17.46,18.17,17.46,18.12,1040640 +2009-02-17,18.13,18.6,17.7,17.77,964790 +2009-02-18,17.29,17.7,16.87,16.99,766889 +2009-02-19,17.15,17.28,16.38,16.68,677805 +2009-02-20,16.5,16.87,16.32,16.84,584222 +2009-02-23,16.63,17.92,16.32,17.58,982311 +2009-02-24,17.11,17.37,16.37,16.43,918693 +2009-02-25,16.72,17.65,16.11,17.09,1246891 +2009-02-26,16.8,18.15,16.72,17.21,2178602 +2009-02-27,17.23,17.99,16.88,17.78,1925315 +2009-03-02,17.79,17.88,16.49,17.62,1411489 +2009-03-03,16.9,17.41,16.81,16.94,1144142 +2009-03-04,16.94,18.63,16.88,18.63,1642202 +2009-03-05,19.12,19.87,18.71,19.19,2192474 +2009-03-06,18.9,19.85,18.9,19.43,1453233 +2009-03-09,19.6,20.15,18.35,18.53,1260164 +2009-03-10,18.3,19.1,17.88,18.93,796228 +2009-03-11,19.51,19.69,18.41,18.59,1006778 +2009-03-12,18.25,18.54,17.84,18.28,605069 +2009-03-13,18.52,18.72,18.06,18.19,604241 +2009-03-16,17.92,19.09,17.9,19,713087 +2009-03-17,19,19.82,18.81,19.64,775893 +2009-03-18,19.79,19.85,19.36,19.39,683754 +2009-03-19,19.38,19.72,19.18,19.7,643238 +2009-03-20,19.61,19.75,19.04,19.31,538702 +2009-03-23,19.22,20.31,19.1,20.21,835330 +2009-03-24,20.88,21.06,20.25,20.48,823677 +2009-03-25,20.39,21.38,20.2,20.76,814434 +2009-03-26,21.18,21.8,20.88,21.71,1092864 +2009-03-27,21.91,22.22,21.61,22.17,921132 +2009-03-30,22.05,22.3,21.68,22,740879 +2009-03-31,21.44,22.08,20.9,21.92,719119 +2009-04-01,22.05,22.24,21.7,21.81,752386 +2009-04-02,21.81,22.14,21.5,21.86,1022555 +2009-04-03,22.15,22.8,21.82,22.27,1229427 +2009-04-07,22.12,22.5,21.68,21.89,727703 +2009-04-08,21.77,22.11,20.9,20.94,744578 +2009-04-09,20.95,22.08,20.95,22.03,635012 +2009-04-10,22.51,22.65,21.9,22.22,934388 +2009-04-13,22.4,22.9,22.21,22.53,948714 +2009-04-14,22.45,23,22.32,22.74,537532 +2009-04-15,22.7,22.88,22.1,22.51,626552 +2009-04-16,22.5,22.75,21.89,22.46,719314 +2009-04-17,22.3,22.51,21.9,22.03,555098 +2009-04-20,22.1,22.63,22.06,22.54,474969 +2009-04-21,22,22.39,21.6,22.09,678276 +2009-04-22,22.22,22.74,21.62,21.68,837612 +2009-04-23,21.5,21.75,21.25,21.67,439447 +2009-04-24,21.86,22.03,21.35,21.37,381510 +2009-04-27,21.37,21.56,20.5,20.82,400104 +2009-04-28,20.69,21.24,20.59,21.05,378797 +2009-04-29,21.11,23.16,21.02,23.06,1383823 +2009-04-30,22.97,23.32,22.8,23.17,1141162 +2009-05-04,23.27,24.15,23.15,23.82,931560 +2009-05-06,23.95,24.88,23.7,24.49,903009 +2009-05-07,24.56,25.2,24.25,24.6,744942 +2009-05-08,24.48,25.13,24.24,24.82,617528 +2009-05-11,25.11,26.65,24.81,24.9,855039 +2009-05-12,24.63,25.69,24.58,25.39,567918 +2009-05-13,25.45,25.61,25,25.31,426480 +2009-05-14,24.98,25.08,24.44,24.82,466978 +2009-05-15,25,25.35,24.92,25.14,336748 +2009-05-18,24.99,25.2,24.45,25.18,308847 +2009-05-19,25.6,26.18,25.6,25.99,552057 +2009-05-20,25.98,26.05,25.5,25.57,290706 +2009-05-21,25.3,25.88,24.7,24.8,592717 +2009-05-22,24.75,25.19,24.55,24.8,403196 +2009-05-25,24.15,25.14,24.15,24.88,446552 +2009-05-26,24.95,25.07,24.58,24.61,302950 +2009-05-27,24.75,25.99,24.75,25.65,597699 +2009-06-01,26.05,26.52,25.85,26.45,587096 +2009-06-02,26.65,26.72,26.05,26.12,425842 +2009-06-03,26.31,28.73,26.31,28.73,922296 +2009-06-04,28.85,30.11,28.67,30.06,973447 +2009-06-05,30.24,30.53,29.61,30.28,682548 +2009-06-08,30.29,31.16,29.6,30.66,925423 +2009-06-09,21.81,21.94,20.89,21.32,777988 +2009-06-10,21.28,21.5,20.8,21,1060064 +2009-06-11,21.02,21.31,20.86,21.04,690167 +2009-06-12,21.02,21.1,20.2,20.43,742118 +2009-06-15,20.52,21.45,20.4,21.42,910192 +2009-06-16,21.13,21.4,20.75,21.05,754686 +2009-06-17,21.05,21.24,20.35,21.16,743558 +2009-06-18,21.17,21.8,21,21.39,980756 +2009-06-19,21.47,22.05,21.42,21.8,836111 +2009-06-22,22.16,22.53,22,22.14,878064 +2009-06-23,21.71,23,21.56,22.45,1239294 +2009-06-24,22.2,22.55,21.91,22.35,736080 +2009-06-25,22.31,22.58,22.04,22.14,497881 +2009-06-26,22.2,23.1,22.18,22.98,945210 +2009-06-29,23,23.32,22.85,23.21,617329 +2009-06-30,23.3,23.35,22.9,23.02,528754 +2009-07-01,23.06,24.19,22.92,24.14,678696 +2009-07-02,24.21,24.99,24.15,24.48,797407 +2009-07-03,24.3,24.96,24.2,24.93,611581 +2009-07-06,24.95,25.68,24.95,25.4,605776 +2009-07-07,25.41,25.41,24.5,24.55,864292 +2009-07-08,24.2,24.6,23.5,24.31,907448 +2009-07-09,24.33,24.67,23.8,24.45,709827 +2009-07-10,24.47,24.59,24,24.22,465768 +2009-07-13,23.8,24.18,23.39,23.44,723048 +2009-07-14,23.57,24.33,23.57,24.2,617618 +2009-07-15,24.36,24.75,24,24.26,567402 +2009-07-16,24.56,25.4,24.19,25.07,1066051 +2009-07-17,25.1,25.32,24.76,25.06,646985 +2009-07-20,25.13,25.39,24.79,25.29,682617 +2009-07-21,25.3,25.59,24.8,24.87,763612 +2009-07-22,24.82,25.38,24.71,25.17,669985 +2009-07-23,25.25,25.87,25,25.55,741761 +2009-07-24,25.7,25.85,24.9,25.26,664963 +2009-07-27,25.46,25.84,25.25,25.7,618141 +2009-07-28,25.72,26.1,25.3,25.59,612889 +2009-07-29,25.54,26.58,23.53,25.01,1215285 +2009-07-30,25.3,26.95,25.29,26.89,1608112 +2009-07-31,27.07,27.19,26.41,27.17,1025235 +2009-08-03,27.35,27.36,26.6,27.1,730277 +2009-08-04,27.16,27.16,25.95,26.31,926484 +2009-08-05,26.1,26.3,25.4,25.63,869011 +2009-08-06,25.39,25.9,24.51,25.18,867285 +2009-08-07,25,25.6,24.68,24.87,686594 +2009-08-10,25.15,25.4,24,24.43,691011 +2009-08-11,24.58,24.65,24,24.34,547696 +2009-08-12,24.26,24.4,23.1,23.12,847156 +2009-08-13,23.15,24,22.7,23.88,877932 +2009-08-14,23.88,24.17,23.11,23.54,879526 +2009-08-17,22.99,23.67,22.3,22.34,915819 +2009-08-18,22.01,22.58,21.65,22.37,623947 +2009-08-19,22.4,22.68,21,21.34,758225 +2009-08-20,21.33,22.4,21.1,22.25,745852 +2009-08-21,22.3,23.25,22.07,22.71,995276 +2009-08-24,23,23.09,22,22.34,1049875 +2009-08-25,22.2,22.2,20.11,20.78,1655846 +2009-08-26,20.5,21.16,20.1,20.69,996958 +2009-08-27,20.7,20.95,19.96,20.16,1097415 +2009-08-28,20.08,20.39,18.75,19,1728810 +2009-08-31,18.98,18.98,17.76,17.84,1209632 +2009-09-01,17.76,18.96,17.66,18.54,1194999 +2009-09-02,18.26,19.33,18.12,19.27,1409148 +2009-09-03,19.31,20.32,19.02,20.23,1544971 +2009-09-04,20.2,20.61,20,20.17,1112600 +2009-09-07,20.32,20.61,19.7,19.94,935955 +2009-09-08,19.79,20.25,19.4,20.22,1011385 +2009-09-09,20.44,20.44,19.79,20.07,1049951 +2009-09-10,20.09,20.09,19.6,19.74,730207 +2009-09-11,19.7,21.58,19.61,21.53,2057149 +2009-09-14,21.45,21.74,21.11,21.62,1397873 +2009-09-15,21.65,22.2,21.13,21.79,1283555 +2009-09-16,21.53,21.68,20.93,21.13,1168198 +2009-09-17,21.4,21.79,21.37,21.5,1025353 +2009-09-18,21.56,21.6,20.31,20.46,1340642 +2009-09-21,20,20,19.02,19.85,1407564 +2009-09-22,19.6,19.85,18.96,19.06,1183157 +2009-09-23,19.12,19.58,18.97,19.19,1023629 +2009-09-24,19.08,20.43,18.97,20.06,1706197 +2009-09-25,19.78,20,19.19,19.54,805589 +2009-09-28,19.58,19.77,19,19.1,584806 +2009-09-29,19.16,19.75,18.96,19.67,898262 +2009-09-30,19.81,19.95,19.5,19.65,977001 +2009-10-09,20.16,21.09,20,20.99,1131790 +2009-10-12,21.18,21.61,20.7,20.74,958486 +2009-10-13,20.57,21.24,20.52,21.13,559183 +2009-10-14,21.15,21.63,21.04,21.29,868650 +2009-10-15,21.6,21.88,21.28,21.38,621020 +2009-10-16,21.5,21.67,21,21.58,694678 +2009-10-19,21.49,22.48,21.38,22.32,1122239 +2009-10-20,22.6,22.9,22.33,22.81,1126794 +2009-10-21,22.81,23.09,22.6,22.65,834046 +2009-10-22,22.6,22.74,22.29,22.43,673022 +2009-10-23,22.45,23.17,22.45,22.92,899608 +2009-10-26,22.99,23.15,22.7,22.83,504021 +2009-10-27,22.55,22.83,21.9,21.99,673936 +2009-10-28,21.88,22.14,21.3,21.83,681076 +2009-10-29,21.4,21.8,21.25,21.57,924677 +2009-10-30,21.99,22.34,21.69,21.74,651604 +2009-11-02,21.2,23.28,21.08,22.97,1097255 +2009-11-03,23,23.35,22.9,23.17,859253 +2009-11-04,23.11,24.09,23.01,23.67,972524 +2009-11-05,23.58,23.9,23.37,23.55,525438 +2009-11-06,23.8,24.15,23.5,23.63,637508 +2009-11-09,23.6,23.65,22.95,23.51,832275 +2009-11-10,23.57,23.9,23.4,23.49,654087 +2009-11-11,23.39,23.39,23.08,23.26,655910 +2009-11-12,23.3,23.58,22.99,23.11,728658 +2009-11-13,23,23.45,22.88,23.42,603708 +2009-11-16,23.6,24.12,23.51,24.01,984956 +2009-11-17,24.19,24.58,24,24.04,782706 +2009-11-18,24.06,24.23,23.85,23.98,523680 +2009-11-19,24.01,24.14,23.55,23.8,804450 +2009-11-20,23.65,23.79,23.18,23.62,982032 +2009-11-23,23.61,23.64,23.25,23.59,823708 +2009-11-24,23.76,23.83,22.95,23.01,1286594 +2009-11-25,23.1,23.25,22.34,23.18,1121081 +2009-11-26,23.08,23.08,21.9,21.99,1351406 +2009-11-27,21.7,22.17,21.32,21.46,1085323 +2009-11-30,21.79,22.1,21.5,22.02,920614 +2009-12-01,21.88,22.18,21.39,22.06,1201794 +2009-12-02,22.28,22.69,22.06,22.27,1075806 +2009-12-03,22.23,22.28,21.9,22.11,776311 +2009-12-04,22.03,23.3,21.76,23.2,2223381 +2009-12-07,23,23.34,22.89,23.02,1194398 +2009-12-08,22.9,22.97,22.28,22.47,992065 +2009-12-09,22.1,22.36,21.85,21.91,791865 +2009-12-10,22.08,22.34,21.9,22.09,589194 +2009-12-11,22.13,22.42,21.95,22.11,539309 +2009-12-14,22.01,22.76,21.45,22.47,1041665 +2009-12-15,22.34,22.36,21.9,22.01,764003 +2009-12-16,21.88,22.28,21.75,21.88,537262 +2009-12-17,21.94,22.08,21.38,21.4,660254 +2009-12-18,21.2,21.29,20.67,20.73,819139 +2009-12-21,20.73,21.01,20.42,20.65,526525 +2009-12-22,20.76,20.79,20,20.01,663462 +2009-12-23,20.06,20.2,19.8,20.06,603373 +2009-12-24,20.17,20.72,19.93,20.69,854723 +2009-12-25,20.5,20.57,20.2,20.35,682354 +2009-12-28,20.35,20.98,20.35,20.77,610966 +2009-12-29,20.79,20.96,20.61,20.93,493787 +2009-12-30,20.98,21.76,20.9,21.63,1107758 +2009-12-31,21.73,21.88,21.5,21.69,632966 +2010-01-04,21.83,21.87,21.16,21.19,661913 +2010-01-05,21.41,21.58,20.79,21.35,1151479 +2010-01-06,21.29,21.3,20.88,20.93,967826 +2010-01-07,20.88,21.04,20.3,20.46,852361 +2010-01-08,20.34,20.8,20.3,20.69,657076 +2010-01-11,21.6,21.8,20.57,20.69,1163048 +2010-01-12,20.63,20.97,20.26,20.8,823511 +2010-01-13,20.25,20.35,19.8,19.83,1463997 +2010-01-14,19.87,20.02,19.64,19.97,773408 +2010-01-15,20.02,20.25,19.72,20.04,691837 +2010-01-18,19.91,20.29,19.87,20.24,699402 +2010-01-19,20.25,20.59,20.21,20.35,699661 +2010-01-20,20.42,20.53,19.6,19.79,807765 +2010-01-21,19.88,20.57,19.76,20.47,934182 +2010-01-22,20.2,21.1,20.01,20.9,1544460 +2010-01-25,20.56,20.98,20.42,20.46,802327 +2010-01-26,20.49,20.9,20.17,20.69,919366 +2010-01-27,20.67,20.8,19.78,19.86,942644 +2010-01-28,19.78,19.85,19.38,19.7,586917 +2010-01-29,19.6,20.04,19.48,19.62,536901 +2010-02-01,19.62,19.62,19,19.22,516694 +2010-02-02,19.33,19.7,19.17,19.24,489696 +2010-02-03,19.31,19.93,19.01,19.89,764931 +2010-02-04,19.61,19.89,19.6,19.66,461621 +2010-02-05,19.2,19.68,19.16,19.42,438960 +2010-02-08,19.45,19.5,19.08,19.22,372310 +2010-02-09,19.2,19.49,19.17,19.42,264962 +2010-02-10,19.59,19.75,19.5,19.68,307095 +2010-02-11,19.69,19.8,19.59,19.64,273755 +2010-02-12,19.73,19.88,19.66,19.81,296825 +2010-02-22,19.73,19.86,19.58,19.68,334307 +2010-02-23,19.65,19.65,19.25,19.49,305709 +2010-02-24,19.35,19.68,19.24,19.66,389784 +2010-02-25,19.75,20.8,19.75,20.74,1944760 +2010-03-11,21,21.8,20.9,21.3,2302718 +2010-03-12,21.32,21.52,21.02,21.04,749118 +2010-03-15,21,21.15,20.58,20.68,581273 +2010-03-16,20.63,21.2,20.51,21.19,563430 +2010-03-17,21.23,21.75,20.95,21.67,907404 +2010-03-18,21.66,22.21,21.55,21.7,889838 +2010-03-19,21.82,22.04,21.5,21.8,447567 +2010-03-22,21.85,22.35,21.85,22.21,966360 +2010-03-23,22.25,22.43,21.89,22,625663 +2010-03-24,22.05,22.39,22,22.03,510929 +2010-03-25,21.96,21.96,21.46,21.61,525123 +2010-03-26,21.52,22.51,21.52,22.26,824978 +2010-03-29,22.45,23.12,22.31,22.98,1394993 +2010-03-31,23.07,23.09,22.7,22.78,542014 +2010-04-01,22.77,23.12,22.65,22.85,581792 +2010-04-02,22.86,23.1,22.8,22.91,407775 +2010-04-06,23.05,23.38,22.91,22.99,538096 +2010-04-07,23,23.08,22.54,22.78,506016 +2010-04-08,22.5,22.97,22.5,22.58,468763 +2010-04-09,22.6,23.02,22.59,22.94,383927 +2010-04-12,23,23.05,22.21,22.43,578956 +2010-04-13,22.4,23.12,22.25,23.03,840639 +2010-04-14,23.12,23.12,22.76,22.88,388655 +2010-04-15,22.96,22.98,22.49,22.77,423118 +2010-04-16,22.67,22.68,22.02,22.06,549648 +2010-04-19,21.69,21.69,20.49,20.56,1232700 +2010-04-20,20.55,20.7,20,20.54,638663 +2010-04-21,20.46,20.89,20.29,20.86,557376 +2010-04-22,20.69,20.69,20.08,20.19,696007 +2010-04-23,20.2,20.85,19.95,20.39,837729 +2010-04-26,20.42,20.79,20.22,20.46,461795 +2010-04-27,20.26,20.36,19.78,20.11,578343 +2010-04-29,20.25,20.6,20.16,20.19,540963 +2010-04-30,20.3,20.63,20.16,20.59,522657 +2010-05-04,20.22,20.57,19.9,20.19,461705 +2010-05-05,19.95,20.35,19.67,20.31,547338 +2010-05-06,20.1,20.1,19,19.04,746695 +2010-05-07,18.66,19.08,18.45,18.55,615583 +2010-05-10,18.72,19.15,18.5,18.98,453600 +2010-05-11,19.44,19.52,18.5,18.75,593963 +2010-05-12,18.47,19.24,18.43,19.19,811305 +2010-05-13,19.1,19.96,19,19.71,780356 +2010-05-14,19.51,19.64,19.23,19.4,383212 +2010-05-17,19.17,19.17,18.6,18.66,438048 +2010-05-18,18.73,19.5,18.72,19.35,621686 +2010-05-19,19.16,19.67,19,19.26,400466 +2010-05-20,19.1,19.45,18.79,18.91,388774 +2010-05-21,18.48,19.3,18.4,19.23,407778 +2010-05-24,19.38,20,19.38,19.74,619112 +2010-05-25,19.6,19.66,18.99,19.14,525063 +2010-05-26,19.21,19.38,18.94,19.11,255925 +2010-05-27,19.08,19.32,18.8,19.31,312812 +2010-05-28,19.52,19.6,19.03,19.13,323376 +2010-05-31,18.9,19.11,18.5,18.54,517799 +2010-06-01,18.47,18.73,18.3,18.42,418388 +2010-06-02,18.38,18.48,18.07,18.4,314854 +2010-06-03,18.49,18.6,18.16,18.2,414700 +2010-06-04,18.13,18.28,18.05,18.17,288046 +2010-06-07,17.9,18.05,17.59,17.64,474099 +2010-06-08,17.69,17.81,17.18,17.4,400517 +2010-06-09,17.49,18.54,17.17,18.5,932209 +2010-06-10,13.7,14,13.66,13.7,524378 +2010-06-11,13.77,14.17,13.71,13.82,631793 +2010-06-17,13.91,14.13,13.77,13.85,478957 +2010-06-18,13.86,14.2,13.78,13.9,657819 +2010-06-21,14,14.64,13.85,14.48,989215 +2010-06-22,14.42,14.67,14.36,14.49,430365 +2010-06-23,14.4,14.53,14.09,14.25,391505 +2010-06-24,14.21,14.5,14.04,14.34,343871 +2010-06-25,14.25,14.48,14.2,14.4,325357 +2010-06-28,14.4,14.65,14.22,14.43,489301 +2010-06-29,14.45,14.5,13.74,13.76,654947 +2010-06-30,13.69,13.86,13.52,13.6,345590 +2010-07-01,13.56,13.8,13.48,13.5,329893 +2010-07-02,13.55,13.68,13.14,13.67,447853 +2010-07-05,13.45,13.75,13.21,13.53,359896 +2010-07-06,13.54,13.85,13.45,13.83,501699 +2010-07-07,13.74,13.83,13.6,13.76,339773 +2010-07-08,13.88,14.06,13.73,13.79,451018 +2010-07-09,13.81,14.49,13.69,14.23,768564 +2010-07-12,14.23,14.66,14.15,14.43,582992 +2010-07-13,14.21,14.37,14.06,14.17,449138 +2010-07-14,14.22,14.64,14.22,14.41,603633 +2010-07-15,14.41,14.62,14.07,14.1,474603 +2010-07-16,14,14.23,13.9,14.15,408923 +2010-07-19,14.07,14.63,13.98,14.53,657087 +2010-07-20,14.59,14.96,14.5,14.65,790728 +2010-07-21,14.68,14.73,14.51,14.65,449025 +2010-07-22,14.59,14.85,14.49,14.8,565094 +2010-07-23,14.8,15.15,14.73,14.92,767992 +2010-07-26,14.92,15,14.76,14.89,403696 +2010-07-27,14.81,14.81,14.56,14.61,521033 +2010-07-28,14.7,15.14,14.58,15.07,855322 +2010-07-29,15.1,15.22,14.92,15.08,696494 +2010-07-30,15,15.05,14.86,14.98,330831 +2010-08-02,14.91,15.3,14.87,15.3,654210 +2010-08-03,15.31,15.34,14.9,14.91,628547 +2010-08-04,14.9,14.93,14.54,14.79,752700 +2010-08-05,14.75,14.75,14.42,14.53,644611 +2010-08-06,14.5,14.74,14.3,14.69,639043 +2010-08-09,14.65,14.8,14.5,14.6,658178 +2010-08-10,14.62,14.69,14.03,14.07,709349 +2010-08-11,14.05,14.29,14.01,14.12,401860 +2010-08-12,13.98,14.12,13.82,13.89,520928 +2010-08-13,13.93,14.02,13.7,13.99,651230 +2010-08-16,13.91,14.38,13.85,14.3,702981 +2010-08-17,14.31,14.47,14.18,14.41,582801 +2010-08-18,14.42,14.59,14.25,14.3,724676 +2010-08-19,14.3,14.56,14.13,14.45,889056 +2010-08-20,14.3,14.55,14.16,14.19,624822 +2010-08-23,14.2,14.58,14.2,14.34,575252 +2010-08-24,14.32,14.54,14.15,14.38,482565 +2010-08-25,14.29,14.33,13.98,14.03,494992 +2010-08-26,14.16,14.19,13.93,13.97,297042 +2010-08-27,13.99,14.13,13.88,13.98,356490 +2010-08-30,14.06,14.2,13.97,14.1,520652 +2010-08-31,14.04,14.13,13.92,13.99,513130 +2010-09-01,14.07,14.34,13.79,13.99,904793 +2010-09-02,14.28,14.28,13.95,14.07,676941 +2010-09-03,14.07,14.07,13.83,13.95,618943 +2010-09-06,14.01,14.26,13.88,14.23,1045819 +2010-09-07,14.25,14.34,14.05,14.16,582358 +2010-09-08,14.05,14.07,13.8,13.89,861685 +2010-09-09,13.89,13.9,13.45,13.54,1114656 +2010-09-10,13.55,13.61,13.3,13.51,534106 +2010-09-13,13.45,13.65,13.3,13.49,724123 +2010-09-14,13.58,13.67,13.41,13.5,616539 +2010-09-15,13.53,13.53,13.3,13.33,448611 +2010-09-16,13.3,13.3,12.9,13.02,734391 +2010-09-17,13.09,13.13,12.9,12.96,432806 +2010-09-21,13,13.1,12.87,12.94,336715 +2010-09-27,13,13.02,12.89,12.93,432037 +2010-09-28,12.92,12.92,12.57,12.58,639881 +2010-09-29,12.2,12.69,12.12,12.49,799165 +2010-09-30,12.37,12.99,12.32,12.96,764206 +2010-10-08,13.09,13.47,12.86,13.36,992433 +2010-10-11,13.37,14.05,13.36,13.89,1682403 +2010-10-12,13.83,13.98,13.7,13.96,1089292 +2010-10-13,13.97,14.49,13.88,14.44,2117174 +2010-10-14,14.51,15,14.34,14.39,2195005 +2010-10-15,14.32,15.29,14.29,15.25,2820111 +2010-10-18,15.6,15.95,15.21,15.35,2670977 +2010-10-19,15.35,15.4,15,15.36,1442022 +2010-10-20,15.23,15.75,15.1,15.27,1857679 +2010-10-21,15.27,15.29,14.55,14.69,1504261 +2010-10-22,14.64,14.74,14.38,14.55,1098965 +2010-10-25,14.58,14.95,14.24,14.72,1434746 +2010-10-26,14.76,14.97,14.4,14.62,1077892 +2010-10-27,14.56,14.98,14.39,14.43,1215444 +2010-10-28,14.43,14.7,14.27,14.57,993195 +2010-10-29,14.68,14.68,14.3,14.48,972258 +2010-11-01,14.51,14.74,14.47,14.65,1162412 +2010-11-02,14.65,14.78,14.27,14.5,1375756 +2010-11-03,14.5,14.98,14.36,14.69,1929277 +2010-11-04,14.75,14.83,14.5,14.7,1594397 +2010-11-05,14.86,14.94,14.58,14.72,1482536 +2010-11-08,14.78,15.12,14.74,14.91,1589999 +2010-11-09,14.95,15,14.4,14.51,1686926 +2010-11-10,14.45,14.45,13.98,14.12,1856595 +2010-11-11,14.11,14.45,14.05,14.24,1407412 +2010-11-12,14.14,14.14,13.36,13.38,1624688 +2010-11-15,13.45,13.59,13.16,13.53,1023309 +2010-11-16,13.4,13.41,12.97,13.03,1013464 +2010-11-17,12.92,13.36,12.85,13.13,889364 +2010-11-18,13.25,13.31,13.05,13.19,518681 +2010-11-19,13.24,13.26,12.86,13.12,802256 +2010-11-22,12.9,13.03,12.8,12.87,818713 +2010-11-23,12.83,12.83,12.52,12.66,825344 +2010-11-24,12.65,12.92,12.64,12.79,593674 +2010-11-25,12.9,13.07,12.69,13,855512 +2010-11-26,13.09,13.2,12.91,13.04,721702 +2010-11-29,12.97,13.05,12.84,12.96,444562 +2010-11-30,12.92,12.98,12.53,12.69,704655 +2010-12-01,12.66,12.82,12.62,12.74,316993 +2010-12-02,12.95,12.97,12.75,12.79,467356 +2010-12-03,12.81,12.89,12.73,12.82,335623 +2010-12-06,12.87,13.12,12.81,13.05,672339 +2010-12-07,13,13.11,12.87,13.06,503710 +2010-12-08,13.04,13.07,12.87,12.91,463752 +2010-12-09,12.85,12.86,12.68,12.7,500524 +2010-12-10,12.64,12.85,12.63,12.78,339219 +2010-12-13,12.83,13.03,12.73,13,838820 +2010-12-14,13,13.09,12.88,12.95,548295 +2010-12-15,12.96,13.07,12.91,12.94,720405 +2010-12-16,12.93,12.94,12.73,12.79,607535 +2010-12-17,12.78,12.78,12.66,12.72,573870 +2010-12-20,12.74,12.75,12.31,12.43,918318 +2010-12-21,12.45,12.87,12.35,12.79,972560 +2010-12-22,12.78,12.85,12.5,12.54,580375 +2010-12-23,12.57,13.01,12.48,12.7,855136 +2010-12-24,12.6,12.87,12.53,12.74,613306 +2010-12-27,12.91,12.98,12.48,12.51,629166 +2010-12-28,12.5,12.68,12.36,12.38,506440 +2010-12-29,12.42,12.51,12.3,12.39,437815 +2010-12-30,12.4,12.47,12.19,12.31,494863 +2010-12-31,12.33,12.4,12.25,12.39,701008 +2011-01-04,12.42,12.68,12.3,12.61,1043015 +2011-01-05,12.7,12.91,12.63,12.71,1070142 +2011-01-06,12.73,12.89,12.6,12.67,639541 +2011-01-07,12.69,13.51,12.58,13.23,2787976 +2011-01-10,13.11,13.34,12.93,13.07,1280075 +2011-01-11,13,13.42,13,13.4,1145026 +2011-01-12,13.44,13.5,13.21,13.49,1030667 +2011-01-13,13.49,13.55,13.33,13.34,554122 +2011-01-14,13.29,13.29,13.07,13.14,589005 +2011-01-17,12.97,13.1,12.41,12.61,851263 +2011-01-18,12.57,12.78,12.52,12.69,398810 +2011-01-19,12.7,12.83,12.58,12.82,391450 +2011-01-20,12.77,12.81,12.47,12.48,453628 +2011-01-21,12.49,13.18,12.48,12.75,690013 +2011-01-24,12.72,12.85,12.61,12.74,400259 +2011-01-25,12.75,12.95,12.67,12.87,494025 +2011-01-26,12.9,12.93,12.82,12.88,324884 +2011-01-27,12.75,12.87,12.51,12.83,696495 +2011-01-28,12.77,12.84,12.59,12.69,530004 +2011-01-31,12.7,12.78,12.6,12.72,527676 +2011-02-01,12.73,12.77,12.65,12.76,418248 +2011-02-09,12.71,12.83,12.59,12.63,503448 +2011-02-10,12.61,12.79,12.57,12.77,474017 +2011-02-11,12.75,12.78,12.63,12.75,865247 +2011-02-14,12.73,13.2,12.72,13.14,1555229 +2011-02-15,13.15,13.2,13,13.03,1117431 +2011-02-16,12.98,13.02,12.88,12.96,1081310 +2011-02-17,13.04,13.21,12.98,13.08,1078963 +2011-02-18,13.04,13.18,12.91,13.04,681162 +2011-02-21,12.93,13.02,12.86,13.01,761845 +2011-02-22,12.99,12.99,12.6,12.65,933550 +2011-02-23,12.62,12.73,12.51,12.61,668118 +2011-02-24,12.6,12.61,12.48,12.6,972819 +2011-02-25,12.59,12.76,12.52,12.65,612265 +2011-02-28,12.65,12.74,12.55,12.71,507190 +2011-03-01,12.73,13.01,12.73,12.95,1286302 +2011-03-02,12.88,13.34,12.83,13.18,1982105 +2011-03-03,13.18,13.79,13.18,13.45,2636963 +2011-03-04,13.39,13.59,13.33,13.56,1207980 +2011-03-07,13.58,13.82,13.47,13.61,1213317 +2011-03-08,13.59,13.82,13.54,13.63,951742 +2011-03-09,13.68,13.79,13.58,13.61,755694 +2011-03-10,13.57,13.57,13.21,13.24,941456 +2011-03-11,13.22,13.29,13.02,13.1,646829 +2011-03-14,13.09,13.21,13.07,13.12,440649 +2011-03-15,13.08,13.08,12.74,12.91,927258 +2011-03-16,12.89,13.08,12.82,13.01,629018 +2011-03-17,12.88,12.97,12.81,12.86,468295 +2011-03-18,12.95,13.03,12.85,12.9,437708 +2011-03-21,12.9,13.05,12.86,12.94,467081 +2011-03-22,12.98,13.31,12.83,13.18,700188 +2011-03-23,13.15,13.38,13.11,13.28,562383 +2011-03-24,13.3,13.38,13.12,13.18,396292 +2011-03-25,13.21,13.57,13.21,13.4,831436 +2011-03-28,13.55,13.71,13.41,13.44,896926 +2011-03-29,13.47,13.85,13.46,13.62,1165974 +2011-03-30,13.73,14,13.65,13.85,1717232 +2011-03-31,13.85,13.9,13.51,13.62,782908 +2011-04-01,13.6,14.17,13.6,14.14,1394846 +2011-04-06,14.15,14.6,14.15,14.59,1912427 +2011-04-07,14.58,14.7,14.47,14.55,989510 +2011-04-08,14.53,14.7,14.39,14.52,684317 +2011-04-11,14.56,14.9,14.49,14.53,1209068 +2011-04-12,14.49,14.67,14.29,14.43,876811 +2011-04-13,14.34,15.05,14.33,14.99,1144755 +2011-04-14,15.08,15.26,14.92,14.96,1263969 +2011-04-15,14.9,15.15,14.8,15.08,729728 +2011-04-18,15.01,15.2,14.9,15,796810 +2011-04-19,14.85,15,14.56,14.57,854983 +2011-04-20,14.6,14.8,14.41,14.51,608692 +2011-04-21,14.63,14.8,14.49,14.55,569559 +2011-04-22,14.55,14.65,14.38,14.45,475996 +2011-04-25,14.57,14.73,14.4,14.54,759792 +2011-04-26,14.58,14.76,14.5,14.75,841600 +2011-04-27,14.83,14.99,14.45,14.62,974708 +2011-04-29,14.7,14.74,14,14.28,1016886 +2011-05-03,14.24,14.41,14.12,14.29,470355 +2011-05-04,14.2,14.37,13.74,13.83,810012 +2011-05-05,13.75,13.99,13.63,13.88,469746 +2011-05-06,13.72,13.97,13.66,13.82,367574 +2011-05-09,13.8,13.97,13.7,13.76,305547 +2011-05-10,13.8,13.99,13.71,13.97,367954 +2011-05-11,13.97,14.05,13.81,13.88,273440 +2011-05-12,13.81,13.94,13.64,13.65,370595 +2011-05-13,13.68,13.83,13.49,13.83,521496 +2011-05-16,13.75,13.91,13.68,13.69,374888 +2011-05-17,13.7,14,13.62,13.91,482823 +2011-05-18,13.89,14.22,13.84,14.15,546245 +2011-05-19,14.18,14.32,14.1,14.14,444711 +2011-05-20,14.13,14.35,14.1,14.24,516522 +2011-05-23,14.17,14.23,13.8,13.86,495298 +2011-05-24,13.82,13.94,13.79,13.85,333022 +2011-05-25,13.82,13.86,13.58,13.6,304564 +2011-05-26,13.71,13.75,13.56,13.65,321655 +2011-05-27,13.68,13.89,13.57,13.69,426907 +2011-05-30,13.65,13.86,13.57,13.8,327735 +2011-05-31,13.81,13.87,13.64,13.86,548623 +2011-06-01,13.8,13.88,13.69,13.74,433731 +2011-06-02,13.6,13.65,13.07,13.21,780542 +2011-06-03,10.02,10.14,10,10.09,384820 +2011-06-07,10.04,10.13,9.98,10.1,321127 +2011-06-08,10.11,10.12,9.78,9.92,713996 +2011-06-09,9.9,9.9,9.67,9.69,506502 +2011-06-10,9.71,9.8,9.68,9.74,415142 +2011-06-13,9.7,9.83,9.62,9.79,334995 +2011-06-14,9.78,10.04,9.73,9.92,597637 +2011-06-15,9.9,9.9,9.69,9.72,506425 +2011-06-16,9.67,9.71,9.59,9.61,436841 +2011-06-17,9.61,9.69,9.55,9.56,381518 +2011-06-20,9.55,9.67,9.51,9.65,491558 +2011-06-21,9.66,9.72,9.63,9.68,440324 +2011-06-22,9.73,9.73,9.57,9.63,444027 +2011-06-23,9.62,9.79,9.5,9.74,514630 +2011-06-24,9.69,10.18,9.67,10.1,1086083 +2011-06-27,10.1,10.21,10,10.07,618798 +2011-06-28,10.07,10.08,9.89,10,486259 +2011-06-29,10,10.04,9.74,9.76,921158 +2011-06-30,9.78,9.97,9.74,9.84,894779 +2011-07-01,9.85,9.86,9.65,9.74,849504 +2011-07-04,9.79,10.12,9.78,10.1,1377042 +2011-07-05,10.1,10.18,9.99,10.05,798442 +2011-07-06,10.01,10.01,9.8,9.92,780834 +2011-07-07,10.09,10.15,9.9,9.93,1103062 +2011-07-08,9.95,10.25,9.93,10.14,961787 +2011-07-11,10.05,10.13,9.96,10.05,772976 +2011-07-12,9.97,10.02,9.84,9.88,737797 +2011-07-13,9.93,10.08,9.87,10.01,605172 +2011-07-14,10,10.1,9.97,10.1,722446 +2011-07-15,10.05,10.14,9.99,10.09,666560 +2011-07-18,10.1,10.1,9.93,10,882961 +2011-07-19,9.94,9.96,9.82,9.85,777904 +2011-07-20,9.9,9.94,9.77,9.84,637610 +2011-07-21,9.83,9.85,9.64,9.73,736489 +2011-07-22,9.75,9.78,9.67,9.7,524884 +2011-07-25,9.65,9.67,9.37,9.43,881891 +2011-07-26,9.43,9.55,9.38,9.42,451250 +2011-07-27,9.38,9.42,9.35,9.39,482132 +2011-07-28,9.33,9.34,9.15,9.22,656638 +2011-07-29,9.25,9.61,9.13,9.4,954878 +2011-08-01,9.33,9.46,9.27,9.32,449301 +2011-08-02,9.25,9.31,9.13,9.26,413650 +2011-08-03,9.19,9.31,9.17,9.26,315238 +2011-08-04,9.31,9.4,9.27,9.28,304106 +2011-08-05,9.09,9.15,9,9.03,719522 +2011-08-08,8.95,9.09,8.62,8.73,986247 +2011-08-09,8.52,8.95,8.47,8.87,1109252 +2011-08-10,9.02,9.08,8.87,8.91,672959 +2011-08-11,8.73,9.15,8.71,9.1,747825 +2011-08-12,9.12,9.15,8.98,9.03,511626 +2011-08-15,9.07,9.39,8.99,9.37,894934 +2011-08-16,9.35,9.51,9.27,9.35,921941 +2011-08-17,9.34,9.41,9.28,9.28,445356 +2011-08-18,9.32,9.33,9.09,9.12,408322 +2011-08-19,8.99,9.08,8.94,9.02,555450 +2011-08-22,9.04,9.15,8.95,8.98,427626 +2011-08-23,9.03,9.19,8.93,9.18,482109 +2011-08-24,9.21,9.34,9.08,9.1,533222 +2011-08-25,9.15,9.53,9.11,9.48,1210389 +2011-08-26,9.42,9.51,9.32,9.46,619982 +2011-08-29,9.29,9.29,9.13,9.18,753309 +2011-08-30,9.25,9.4,9.15,9.19,491668 +2011-08-31,9.18,9.35,9.16,9.29,343494 +2011-09-01,9.31,9.43,9.28,9.37,585060 +2011-09-02,9.35,9.4,9.2,9.29,320398 +2011-09-05,9.2,9.22,9.11,9.15,308407 +2011-09-06,9.09,9.22,9.03,9.11,421395 +2011-09-07,9.13,9.38,9.08,9.29,405985 +2011-09-08,9.3,9.33,9.2,9.26,284137 +2011-09-09,9.3,9.41,9.22,9.3,380558 +2011-09-13,9.18,9.22,9.12,9.15,276272 +2011-09-14,9.2,9.21,8.94,9.1,505921 +2011-09-15,9.1,9.17,8.94,8.95,567650 +2011-09-16,9.02,9.07,8.95,8.98,422241 +2011-09-19,8.91,8.92,8.79,8.81,415102 +2011-09-20,8.8,8.92,8.73,8.86,345516 +2011-09-21,8.86,9.22,8.76,9.09,703531 +2011-09-22,9.01,9.02,8.8,8.82,537920 +2011-09-23,8.71,8.81,8.61,8.73,541648 +2011-09-26,8.65,8.72,8.4,8.44,817484 +2011-09-27,8.52,8.58,8.48,8.52,402526 +2011-09-28,8.59,8.6,8.4,8.43,424074 +2011-09-29,8.39,8.52,8.33,8.45,437578 +2011-09-30,8.48,8.64,8.44,8.54,604688 +2011-10-10,8.52,8.56,8.41,8.42,324284 +2011-10-11,8.78,8.78,8.48,8.57,591303 +2011-10-12,8.54,8.92,8.49,8.85,894122 +2011-10-13,8.82,8.94,8.76,8.87,512988 +2011-10-14,8.84,8.88,8.73,8.83,405042 +2011-10-17,8.84,9.05,8.82,8.92,460098 +2011-10-18,8.85,8.9,8.75,8.78,411153 +2011-10-19,8.78,8.92,8.75,8.84,361884 +2011-10-20,8.77,8.86,8.64,8.73,506585 +2011-10-21,8.75,8.97,8.7,8.89,593070 +2011-10-24,8.91,9.21,8.87,9.16,949321 +2011-10-25,9.18,9.25,9.08,9.16,663149 +2011-10-26,9.13,9.3,9.05,9.18,684548 +2011-10-27,9.26,9.35,9.21,9.26,455858 +2011-10-28,9.4,9.55,9.26,9.38,825028 +2011-10-31,9.35,9.35,9.16,9.21,507788 +2011-11-01,9.15,9.34,9.11,9.18,571989 +2011-11-02,9.08,9.37,9.04,9.36,593978 +2011-11-03,9.38,9.39,9.22,9.24,843496 +2011-11-04,9.35,9.36,9.23,9.31,425650 +2011-11-07,9.25,9.28,9.16,9.18,328700 +2011-11-08,9.24,9.3,9.14,9.21,316933 +2011-11-09,9.24,9.29,9.18,9.27,279516 +2011-11-10,9.2,9.25,9.04,9.05,466362 +2011-11-11,9.06,9.17,9.05,9.08,252618 +2011-11-14,9.18,9.27,9.13,9.21,422970 +2011-11-15,9.2,9.22,9.13,9.18,300134 +2011-11-16,9.18,9.18,8.87,8.92,640286 +2011-11-17,8.94,8.97,8.84,8.86,320075 +2011-11-18,8.8,8.89,8.76,8.8,368199 +2011-11-21,8.84,8.85,8.67,8.74,323553 +2011-11-22,8.7,8.81,8.68,8.75,306699 +2011-11-23,8.76,8.77,8.62,8.69,263702 +2011-11-24,8.62,8.76,8.6,8.7,244601 +2011-11-25,8.7,8.72,8.6,8.62,213665 +2011-11-28,8.63,8.68,8.57,8.6,239677 +2011-11-29,8.66,8.74,8.62,8.73,259606 +2011-11-30,8.69,8.73,8.47,8.5,449718 +2011-12-01,8.74,8.95,8.73,8.81,890491 +2011-12-02,8.78,8.85,8.71,8.8,386381 +2011-12-05,8.84,8.91,8.63,8.8,401883 +2011-12-06,8.76,8.84,8.7,8.73,264403 +2011-12-07,8.74,8.83,8.7,8.78,233509 +2011-12-08,8.78,8.83,8.68,8.78,219097 +2011-12-09,8.73,8.78,8.64,8.7,295140 +2011-12-12,8.68,8.74,8.64,8.66,230353 +2011-12-13,8.64,8.72,8.56,8.58,476007 +2011-12-14,8.57,8.65,8.54,8.6,273350 +2011-12-15,8.56,8.62,8.48,8.49,415188 +2011-12-16,8.51,8.65,8.49,8.62,377303 +2011-12-19,8.57,8.64,8.37,8.61,452650 +2011-12-20,8.58,8.75,8.56,8.59,383770 +2011-12-21,8.66,8.72,8.5,8.53,416377 +2011-12-22,8.49,8.59,8.45,8.53,426827 +2011-12-23,8.54,8.61,8.49,8.54,232632 +2011-12-26,8.52,8.56,8.42,8.47,317888 +2011-12-27,8.47,8.53,8.4,8.44,310757 +2011-12-28,8.43,8.46,8.25,8.38,420110 +2011-12-29,8.35,8.38,8.29,8.35,400550 +2011-12-30,8.39,8.51,8.38,8.49,529825 +2012-01-04,8.54,8.56,8.39,8.41,342014 +2012-01-05,8.47,8.82,8.47,8.65,1321162 +2012-01-06,8.63,8.78,8.62,8.71,617787 +2012-01-09,8.72,8.99,8.68,8.95,801362 +2012-01-10,8.95,9.1,8.88,9.07,720046 +2012-01-11,9.05,9.1,8.98,9,492612 +2012-01-12,9,9.21,8.99,9.09,604870 +2012-01-13,9.11,9.18,8.97,9.04,567253 +2012-01-16,9,9.12,8.96,8.97,331002 +2012-01-17,9,9.26,8.79,9.2,973573 +2012-01-18,9.16,9.23,9,9.04,580893 +2012-01-19,9.05,9.22,9.02,9.2,686456 +2012-01-20,9.25,9.43,9.17,9.42,950527 +2012-01-30,9.4,9.41,9.2,9.22,718832 +2012-01-31,9.24,9.28,9.16,9.22,354641 +2012-02-01,9.2,9.26,9.05,9.08,396479 +2012-02-02,9.12,9.42,9.08,9.4,879733 +2012-02-03,9.35,9.5,9.32,9.44,971353 +2012-02-06,9.46,9.51,9.29,9.39,636913 +2012-02-07,9.32,9.36,9.18,9.24,513914 +2012-02-08,9.23,9.48,9.23,9.45,642707 +2012-02-09,9.45,9.48,9.36,9.4,502739 +2012-02-10,9.36,9.48,9.32,9.37,518365 +2012-02-13,9.25,9.37,9.18,9.27,492050 +2012-02-14,9.24,9.28,9.13,9.19,530249 +2012-02-15,9.16,9.29,9.14,9.23,550648 +2012-02-16,9.25,9.28,9.14,9.19,475018 +2012-02-17,9.25,9.31,9.2,9.26,417433 +2012-02-20,9.41,9.41,9.25,9.26,577400 +2012-02-21,9.27,9.31,9.2,9.28,427574 +2012-02-22,9.28,9.36,9.2,9.32,814478 +2012-02-23,9.32,9.4,9.28,9.33,877549 +2012-02-24,9.35,9.53,9.31,9.51,1283418 +2012-02-27,9.57,9.62,9.45,9.48,1266640 +2012-02-28,9.48,9.7,9.46,9.66,1361211 +2012-02-29,9.67,9.67,9.51,9.54,777578 +2012-03-01,9.5,9.59,9.49,9.55,462379 +2012-03-02,9.55,9.7,9.54,9.69,740132 +2012-03-05,9.74,9.75,9.58,9.58,660980 +2012-03-06,9.53,9.61,9.41,9.44,684504 +2012-03-07,9.39,9.44,9.33,9.34,510772 +2012-03-08,9.39,9.5,9.37,9.46,548286 +2012-03-09,9.47,9.51,9.42,9.47,475105 +2012-03-12,9.44,9.45,9.33,9.38,527844 +2012-03-13,9.39,9.53,9.35,9.47,614302 +2012-03-14,9.53,9.61,9.32,9.36,992803 +2012-03-15,9.36,9.45,9.16,9.19,706739 +2012-03-16,9.25,9.34,9.2,9.25,725846 +2012-03-19,9.26,9.32,9.24,9.28,502280 +2012-03-20,9.25,9.26,9.12,9.12,627256 +2012-03-21,9.18,9.19,9.02,9.08,518671 +2012-03-22,9.09,9.21,9.03,9.12,386512 +2012-03-23,9.1,9.12,9.02,9.06,352684 +2012-03-26,9.05,9.17,9.05,9.13,336928 +2012-03-27,9.15,9.17,9.08,9.12,272946 +2012-03-28,9.12,9.14,8.93,8.97,435653 +2012-03-29,8.94,9,8.85,8.87,483914 +2012-03-30,8.92,8.97,8.88,8.93,505870 +2012-04-05,8.9,8.95,8.81,8.93,763520 +2012-04-06,8.93,8.96,8.84,8.94,566825 +2012-04-09,8.89,8.94,8.83,8.84,348898 +2012-04-10,8.86,8.93,8.78,8.92,451470 +2012-04-11,8.87,8.95,8.85,8.89,393971 +2012-04-12,8.89,9.14,8.87,9.12,645716 +2012-04-13,9.11,9.15,9.02,9.14,611757 +2012-04-16,9.08,9.12,9.04,9.06,386148 +2012-04-17,9.06,9.09,8.93,8.93,494660 +2012-04-18,8.93,9.14,8.92,9.12,671180 +2012-04-19,9.1,9.16,9.06,9.12,484880 +2012-04-20,9.1,9.32,9.09,9.31,772408 +2012-04-23,9.27,9.33,9.21,9.24,418391 +2012-04-24,9.23,9.55,9.22,9.38,1131655 +2012-04-25,9.34,9.44,9.33,9.35,664890 +2012-04-26,9.42,9.46,9.3,9.37,538269 +2012-04-27,9.39,9.45,9.35,9.41,471150 +2012-05-02,9.48,9.59,9.41,9.56,1076970 +2012-05-03,9.51,9.55,9.42,9.46,605601 +2012-05-04,9.47,9.5,9.39,9.49,716599 +2012-05-07,9.43,9.48,9.34,9.42,822257 +2012-05-08,9.41,9.42,9.28,9.36,867213 +2012-05-09,9.3,9.31,9.18,9.2,650669 +2012-05-10,9.21,9.24,9.11,9.16,675763 +2012-05-11,9.16,9.23,9.12,9.16,355327 +2012-05-14,9.21,9.23,9.06,9.08,708966 +2012-05-15,9,9.05,8.98,9.04,604300 +2012-05-16,9.03,9.03,8.89,8.91,755357 +2012-05-17,8.93,9.02,8.9,8.97,430927 +2012-05-18,8.92,8.92,8.82,8.86,619502 +2012-05-21,8.86,8.91,8.83,8.87,466796 +2012-05-22,8.9,8.97,8.88,8.96,675497 +2012-05-23,8.95,8.96,8.85,8.89,619798 +2012-05-24,8.88,8.94,8.81,8.85,497572 +2012-05-25,8.85,8.86,8.77,8.79,458878 +2012-05-28,8.8,8.88,8.77,8.87,523477 +2012-05-29,8.86,8.98,8.82,8.95,934786 +2012-05-30,8.92,8.93,8.79,8.82,880365 +2012-05-31,8.79,8.8,8.75,8.77,670112 +2012-06-01,8.78,8.84,8.75,8.78,424017 +2012-06-04,8.71,8.71,8.58,8.59,693680 +2012-06-05,8.62,8.64,8.55,8.56,696669 +2012-06-06,8.59,8.68,8.55,8.62,499188 +2012-06-07,8.68,8.7,8.53,8.56,480264 +2012-06-08,8.51,8.53,8.31,8.34,1403897 +2012-06-11,8.36,8.38,8.31,8.34,716449 +2012-06-12,8.31,8.35,8.19,8.29,824312 +2012-06-14,8.3,8.34,8.25,8.27,800175 +2012-06-15,8.31,8.53,8.29,8.47,1342161 +2012-06-18,8.47,8.48,8.42,8.46,502130 +2012-06-19,8.47,8.54,8.43,8.49,470083 +2012-06-20,8.54,8.61,8.48,8.5,500001 +2012-06-21,8.51,8.51,8.4,8.44,394239 +2012-06-25,8.42,8.48,8.34,8.35,527066 +2012-06-26,8.07,8.12,8.03,8.06,399825 +2012-06-27,8.06,8.09,8.03,8.05,269661 +2012-06-28,8.05,8.07,8.01,8.01,288764 +2012-06-29,8.04,8.16,8.02,8.13,509742 +2012-07-02,8.15,8.15,8.05,8.09,436920 +2012-07-03,8.09,8.15,8.07,8.09,400810 +2012-07-04,8.1,8.18,8.08,8.12,395525 +2012-07-05,8.11,8.12,8.05,8.07,336359 +2012-07-06,7.92,7.97,7.88,7.97,1157971 +2012-07-09,7.93,7.94,7.65,7.67,1065354 +2012-07-10,7.67,7.76,7.66,7.7,450898 +2012-07-11,7.69,7.74,7.67,7.71,324256 +2012-07-12,7.71,7.72,7.58,7.67,1009093 +2012-07-13,7.66,7.79,7.64,7.73,452024 +2012-07-16,7.75,7.75,7.62,7.63,465849 +2012-07-17,7.65,7.73,7.62,7.69,302243 +2012-07-18,7.69,7.69,7.6,7.67,476310 +2012-07-19,7.65,7.73,7.61,7.69,773446 +2012-07-20,7.67,7.68,7.6,7.61,555455 +2012-07-23,7.57,7.57,7.42,7.45,645019 +2012-07-24,7.43,7.5,7.41,7.46,483894 +2012-07-25,7.43,7.5,7.39,7.41,475804 +2012-07-26,7.4,7.45,7.37,7.4,303505 +2012-07-27,7.42,7.56,7.4,7.49,585008 +2012-07-30,7.52,7.65,7.49,7.56,621425 +2012-07-31,7.57,7.69,7.56,7.66,701190 +2012-08-01,7.67,7.71,7.59,7.65,622709 +2012-08-02,7.68,7.77,7.65,7.75,754442 +2012-08-03,7.74,7.75,7.68,7.74,440454 +2012-08-06,7.73,7.74,7.69,7.72,464111 +2012-08-07,7.72,7.73,7.65,7.69,349125 +2012-08-08,7.7,7.77,7.69,7.73,538212 +2012-08-09,7.75,7.76,7.69,7.75,324903 +2012-08-10,7.79,7.85,7.78,7.8,467830 +2012-08-13,7.8,7.83,7.74,7.75,472821 +2012-08-14,7.76,7.8,7.73,7.8,397437 +2012-08-15,7.8,7.8,7.55,7.58,895552 +2012-08-16,7.59,7.59,7.5,7.53,406303 +2012-08-17,7.52,7.58,7.51,7.55,333227 +2012-08-20,7.52,7.56,7.46,7.52,270382 +2012-08-21,7.51,7.56,7.49,7.51,362689 +2012-08-22,7.52,7.53,7.47,7.52,353265 +2012-08-23,7.51,7.55,7.47,7.52,363664 +2012-08-24,7.52,7.53,7.45,7.49,369636 +2012-08-27,7.45,7.49,7.39,7.4,403345 +2012-08-28,7.43,7.62,7.4,7.6,547637 +2012-08-29,7.56,7.57,7.52,7.55,384194 +2012-08-30,7.5,7.62,7.5,7.61,448042 +2012-08-31,7.58,7.68,7.57,7.61,372551 +2012-09-03,7.63,7.63,7.53,7.58,553933 +2012-09-04,7.56,7.59,7.43,7.46,443614 +2012-09-05,7.44,7.45,7.28,7.32,731359 +2012-09-06,7.34,7.39,7.3,7.38,383702 +2012-09-07,7.42,7.78,7.4,7.6,1459719 +2012-09-10,7.59,7.61,7.53,7.56,637990 +2012-09-11,7.54,7.54,7.43,7.49,509814 +2012-09-12,7.53,7.56,7.42,7.48,411994 +2012-09-13,7.47,7.5,7.44,7.45,285985 +2012-09-14,7.5,7.56,7.44,7.52,605540 +2012-09-17,7.52,7.52,7.4,7.41,394958 +2012-09-18,7.39,7.4,7.34,7.35,295565 +2012-09-19,7.35,7.38,7.33,7.34,353163 +2012-09-20,7.32,7.34,7.22,7.23,480721 +2012-09-21,7.22,7.26,7.18,7.21,375407 +2012-09-24,7.18,7.21,7.11,7.17,442806 +2012-09-25,7.16,7.18,7.13,7.16,235284 +2012-09-26,7.15,7.18,7.1,7.11,283443 +2012-09-27,7.11,7.36,7.1,7.32,745652 +2012-09-28,7.28,7.39,7.24,7.38,629301 +2012-10-08,7.38,7.42,7.28,7.32,323246 +2012-10-09,7.35,7.48,7.34,7.45,486201 +2012-10-10,7.43,7.46,7.4,7.44,271474 +2012-10-11,7.41,7.43,7.37,7.41,295643 +2012-10-12,7.43,7.5,7.41,7.45,379538 +2012-10-15,7.46,7.47,7.37,7.41,222493 +2012-10-16,7.41,7.52,7.39,7.46,439525 +2012-10-17,7.48,7.58,7.44,7.55,526585 +2012-10-18,7.55,7.65,7.54,7.62,513973 +2012-10-19,7.62,7.63,7.55,7.58,401856 +2012-10-22,7.54,7.68,7.53,7.65,367999 +2012-10-23,7.66,7.68,7.55,7.57,321892 +2012-10-24,7.55,7.63,7.54,7.59,283285 +2012-10-25,7.58,7.62,7.5,7.53,298075 +2012-10-26,7.54,7.57,7.42,7.46,496112 +2012-10-29,7.44,7.49,7.42,7.47,281768 +2012-10-30,7.47,7.53,7.4,7.48,370829 +2012-10-31,7.49,7.53,7.43,7.51,364111 +2012-11-01,7.52,7.7,7.51,7.64,572051 +2012-11-02,7.65,7.7,7.61,7.68,475875 +2012-11-05,7.7,7.78,7.66,7.73,569740 +2012-11-06,7.74,7.74,7.59,7.68,421771 +2012-11-07,7.67,7.73,7.64,7.69,261938 +2012-11-08,7.63,7.66,7.53,7.54,386672 +2012-11-09,7.53,7.59,7.5,7.53,269213 +2012-11-12,7.54,7.64,7.53,7.63,436455 +2012-11-13,7.62,7.62,7.48,7.49,376916 +2012-11-14,7.49,7.53,7.47,7.5,218232 +2012-11-15,7.49,7.5,7.41,7.42,292200 +2012-11-16,7.41,7.41,7.34,7.36,332663 +2012-11-19,7.36,7.4,7.33,7.37,247853 +2012-11-20,7.4,7.41,7.33,7.35,202530 +2012-11-21,7.35,7.48,7.34,7.47,289576 +2012-11-22,7.45,7.48,7.4,7.44,227848 +2012-11-23,7.46,7.56,7.43,7.51,358198 +2012-11-26,7.5,7.54,7.43,7.47,281675 +2012-11-27,7.44,7.52,7.42,7.46,408275 +2012-11-28,7.44,7.5,7.42,7.44,419788 +2012-11-29,7.46,7.47,7.4,7.41,392794 +2012-11-30,7.41,7.48,7.37,7.46,388223 +2012-12-03,7.46,7.47,7.34,7.35,537692 +2012-12-04,7.33,7.46,7.33,7.43,349748 +2012-12-05,7.43,7.92,7.41,7.88,2270020 +2012-12-06,7.87,7.97,7.83,7.89,1151350 +2012-12-07,7.93,8.28,7.92,8.26,2292492 +2012-12-10,8.35,8.42,8.26,8.33,2152548 +2012-12-11,8.32,8.37,8.25,8.28,1149308 +2012-12-12,8.29,8.49,8.29,8.4,1741270 +2012-12-13,8.35,8.45,8.28,8.29,1240945 +2012-12-14,8.32,8.99,8.32,8.9,3443944 +2012-12-17,9,9.11,8.94,9.07,2547831 +2012-12-18,9.01,9.29,8.97,9.14,2348802 +2012-12-19,9.11,9.16,8.98,9.05,1766706 +2012-12-20,8.99,9.07,8.88,9.06,1497509 +2012-12-21,9.06,9.11,8.88,8.97,1308201 +2012-12-24,8.94,9.26,8.94,9.09,1346427 +2012-12-25,9.07,9.56,9.04,9.45,2342267 +2012-12-26,9.46,9.49,9.37,9.46,960130 +2012-12-27,9.46,9.64,9.32,9.39,1278479 +2012-12-28,9.37,9.64,9.37,9.59,1195998 +2012-12-31,9.64,9.96,9.63,9.92,1984516 +2013-01-04,10.1,10.26,9.93,10.02,2614368 +2013-01-07,10.05,10.34,10.01,10.32,2482009 +2013-01-08,10.34,10.35,10.06,10.12,1548512 +2013-01-09,10.09,10.18,9.98,10.14,1759062 +2013-01-10,10.11,10.21,9.99,10.04,1212268 +2013-01-11,10.07,10.12,9.77,9.82,1715475 +2013-01-14,9.75,10.36,9.75,10.35,2286349 +2013-01-15,10.35,10.41,10.22,10.33,1340390 +2013-01-16,10.28,10.32,9.98,10.12,1566919 +2013-01-17,10.05,10.17,9.88,10.03,1166720 +2013-01-18,10.08,10.25,9.97,10.16,1298726 +2013-01-21,10.2,10.44,10.05,10.4,1781549 +2013-01-22,10.38,10.76,10.25,10.48,2422221 +2013-01-23,10.44,10.62,10.37,10.6,1559685 +2013-01-24,10.6,11.04,10.53,10.61,3202105 +2013-01-25,10.6,10.68,10.53,10.66,897168 +2013-01-28,10.66,11.21,10.65,11.18,2630892 +2013-01-29,11.21,11.47,11.11,11.3,1910673 +2013-01-30,11.29,11.36,11.09,11.24,1721715 +2013-01-31,11.24,11.5,11.12,11.48,1811472 +2013-02-01,11.41,11.97,11.31,11.95,2231572 +2013-02-04,11.98,12.27,11.83,12.07,2715405 +2013-02-05,11.91,12,11.65,11.87,1769447 +2013-02-06,11.85,12.05,11.72,12,1337482 +2013-02-07,12,12.02,11.17,11.43,3151936 +2013-02-08,11.4,11.45,11.06,11.34,1959049 +2013-02-18,11.42,11.5,11.19,11.26,1190518 +2013-02-19,11.23,11.31,11.07,11.1,1145653 +2013-02-20,11.1,11.12,10.58,10.81,2645230 +2013-02-21,10.65,10.68,10,10.22,2907913 +2013-02-22,10.19,10.34,10.08,10.14,1432264 +2013-02-25,10.21,10.4,10.2,10.32,1162745 +2013-02-26,10.2,10.76,10.15,10.33,2385927 +2013-02-27,10.36,10.7,10.31,10.39,1588157 +2013-02-28,10.55,11.07,10.39,11.06,2246585 +2013-03-01,11.07,11.31,10.8,11.17,2232089 +2013-03-04,10.86,10.9,10.27,10.39,2610020 +2013-03-05,10.36,11.22,10.36,11.07,2336077 +2013-03-06,11.16,11.31,10.96,11.11,2056316 +2013-03-07,11.02,11.1,10.51,10.76,1915552 +2013-03-08,10.81,10.88,10.6,10.71,1030465 +2013-03-11,10.67,10.67,10.41,10.47,940812 +2013-03-12,10.46,10.65,10.18,10.29,1322986 +2013-03-13,10.29,10.42,10.11,10.25,1057644 +2013-03-14,10.4,10.56,10.27,10.45,1634194 +2013-03-15,10.47,10.93,10.38,10.51,2142993 +2013-03-18,10.44,10.64,10.39,10.48,1426045 +2013-03-19,10.47,10.66,10.43,10.65,1144702 +2013-03-20,10.68,11.2,10.65,11.19,2536983 +2013-03-21,11.2,11.28,10.94,11.1,1932679 +2013-03-22,11.01,11.11,10.95,11.06,1228245 +2013-03-25,11.13,11.24,11,11.04,890206 +2013-03-26,10.98,10.99,10.65,10.7,1263273 +2013-03-27,10.71,10.95,10.63,10.76,1138147 +2013-03-28,10.2,10.25,9.68,10.02,2980695 +2013-03-29,10.03,10.21,9.91,10.13,1310288 +2013-04-01,10.06,10.2,10.03,10.05,760521 +2013-04-02,10.07,10.17,9.94,10.03,836815 +2013-04-03,10.05,10.15,9.95,10.06,887658 +2013-04-08,9.87,9.99,9.7,9.92,894991 +2013-04-09,9.96,10.12,9.96,10.04,658066 +2013-04-10,10.03,10.04,9.92,10,545868 +2013-04-11,10.08,10.12,10,10.02,433038 +2013-04-12,10.03,10.06,9.9,9.94,418323 +2013-04-15,9.94,9.99,9.79,9.83,757636 +2013-04-16,9.75,9.83,9.6,9.74,1262747 +2013-04-17,9.74,9.74,9.52,9.59,862785 +2013-04-18,9.46,9.66,9.42,9.63,1034219 +2013-04-19,9.65,10.19,9.62,10.14,1786750 +2013-04-22,10.11,10.22,10.1,10.22,1233437 +2013-04-23,10.28,10.29,9.8,9.84,1088268 +2013-04-24,9.86,10.15,9.77,10.03,1050050 +2013-04-25,10,10.07,9.82,9.91,743203 +2013-04-26,9.96,10.01,9.85,9.88,528064 +2013-05-02,9.77,9.86,9.66,9.82,806678 +2013-05-03,9.87,10.17,9.83,10.01,1093735 +2013-05-06,10.03,10.21,9.97,10.13,878653 +2013-05-07,10.09,10.1,9.98,10.06,600960 +2013-05-08,10.12,10.2,10.01,10.05,721535 +2013-05-09,10.06,10.08,9.89,9.97,646673 +2013-05-10,9.93,10.06,9.89,10.03,631270 +2013-05-13,10.02,10.11,9.93,10.02,669943 +2013-05-14,10.03,10.05,9.93,9.97,673481 +2013-05-15,9.98,10.02,9.93,9.99,472759 +2013-05-16,9.99,10.16,9.84,10.15,1116473 +2013-05-17,10.15,10.28,10.05,10.24,1229551 +2013-05-20,10.26,10.54,10.2,10.41,1568512 +2013-05-21,10.38,10.42,10.24,10.34,917752 +2013-05-22,10.33,10.38,10.28,10.36,712077 +2013-05-23,10.29,10.33,10.15,10.15,824847 +2013-05-24,10.2,10.28,10.1,10.2,632310 +2013-05-27,10.21,10.33,10.18,10.29,695470 +2013-05-28,10.3,10.56,10.25,10.55,1113771 +2013-05-29,10.58,10.62,10.51,10.52,914590 +2013-05-30,10.48,10.62,10.47,10.54,894548 +2013-05-31,10.56,10.62,10.46,10.47,1018756 +2013-06-03,9.97,10.01,9.81,9.84,831861 +2013-06-04,9.89,9.89,9.7,9.74,601646 +2013-06-05,9.74,9.77,9.6,9.65,564058 +2013-06-06,9.61,9.67,9.42,9.45,724176 +2013-06-07,9.51,9.57,9.32,9.35,723441 +2013-06-13,9.25,9.25,8.91,9.02,1278203 +2013-06-14,9.07,9.07,8.98,9.02,775307 +2013-06-17,9.05,9.1,8.96,9.01,520392 +2013-06-18,9.05,9.12,9.01,9.07,403588 +2013-06-19,9.05,9.05,8.82,8.89,531048 +2013-06-20,8.86,8.86,8.4,8.42,1375715 +2013-06-21,8.31,8.47,8.22,8.28,1474426 +2013-06-24,8.29,8.29,7.5,7.52,2499774 +2013-06-25,7.45,7.84,7.18,7.8,2466012 +2013-06-26,7.9,7.95,7.63,7.77,1307889 +2013-06-27,7.85,7.92,7.7,7.88,1258233 +2013-06-28,7.82,8.3,7.76,8.28,1577540 +2013-07-01,8.22,8.27,8.07,8.17,860271 +2013-07-02,8.18,8.22,7.95,8.15,840196 +2013-07-03,8.1,8.11,7.97,8.04,696903 +2013-07-04,8.06,8.28,8.02,8.12,857945 +2013-07-05,8.11,8.22,8.08,8.11,587643 +2013-07-08,8,8.05,7.9,7.91,639776 +2013-07-09,7.92,7.96,7.88,7.92,409645 +2013-07-10,7.95,8.13,7.9,8.11,608291 +2013-07-11,8.17,8.92,8.17,8.86,2741524 +2013-07-12,8.76,8.85,8.43,8.49,1622114 +2013-07-15,8.55,8.71,8.41,8.56,1038509 +2013-07-16,8.52,8.55,8.41,8.54,784305 +2013-07-17,8.52,8.55,8.38,8.45,794897 +2013-07-18,8.41,8.45,8.16,8.2,990444 +2013-07-19,8.22,8.24,8.02,8.03,762423 +2013-07-22,7.9,7.99,7.82,7.95,955521 +2013-07-23,7.99,8.23,7.94,8.14,1159065 +2013-07-24,8.04,8.09,7.9,8,874106 +2013-07-25,8.02,8.11,7.96,8.02,620108 +2013-07-26,7.98,8.01,7.94,7.97,428005 +2013-07-29,7.9,7.9,7.71,7.74,845185 +2013-07-30,7.78,7.96,7.74,7.84,689076 +2013-07-31,7.91,8.02,7.82,7.86,503354 +2013-08-01,7.92,8.02,7.87,7.99,589594 +2013-08-02,8.06,8.12,7.97,7.98,577672 +2013-08-05,7.98,8.07,7.95,8.06,530561 +2013-08-06,8.03,8.08,7.98,8.03,827985 +2013-08-07,8.03,8.14,8,8.01,686799 +2013-08-08,8.01,8.07,7.95,7.99,546114 +2013-08-09,8.05,8.08,7.96,8.01,554836 +2013-08-12,8.04,8.32,8.01,8.31,1427609 +2013-08-13,8.3,8.43,8.27,8.42,1186726 +2013-08-14,8.44,8.53,8.3,8.31,1219037 +2013-08-15,8.31,8.37,8.2,8.22,671348 +2013-08-16,8.17,9.04,8.15,8.31,2647126 +2013-08-19,8.24,8.5,8.23,8.45,1247048 +2013-08-20,8.42,8.78,8.39,8.51,1536057 +2013-08-21,8.53,8.58,8.37,8.45,657322 +2013-08-22,8.41,8.62,8.4,8.44,603265 +2013-08-23,8.54,8.63,8.25,8.42,1175300 +2013-08-26,8.45,8.78,8.4,8.74,1617201 +2013-08-27,8.75,9.05,8.7,8.95,2246729 +2013-08-28,8.88,9.15,8.79,9,2435750 +2013-08-29,9.11,9.21,8.86,8.92,1464970 +2013-08-30,8.86,9.05,8.76,8.99,1291434 +2013-09-02,9.11,9.29,8.95,8.97,1412369 +2013-09-03,8.96,9.12,8.89,9.09,1403837 +2013-09-04,9.04,9.24,9.03,9.14,1424501 +2013-09-05,9.19,9.19,9.06,9.13,935444 +2013-09-06,9.15,9.87,9.12,9.57,3010151 +2013-09-09,10.28,10.53,10.18,10.53,5801892 +2013-09-10,11,11.49,10.77,11.4,11980241 +2013-09-11,11.21,11.47,11.2,11.27,6035510 +2013-09-12,11.3,12.4,11.16,12.25,10415275 +2013-09-13,12.08,12.27,11.73,11.91,6616465 +2013-09-16,12,12.02,11.23,11.49,6994933 +2013-09-17,11.41,11.48,10.77,10.83,5117379 +2013-09-18,10.95,11.19,10.83,11,4001721 +2013-09-23,11.05,11.2,10.8,11.18,4536301 +2013-09-24,11.19,11.2,10.57,10.81,4769006 +2013-09-25,10.74,11.18,10.69,10.78,3841461 +2013-09-26,10.75,10.76,10.07,10.17,4484938 +2013-09-27,10.11,10.33,10.05,10.24,2437824 +2013-09-30,10.34,10.37,10.02,10.09,2565109 +2013-10-08,10.03,10.33,9.88,10.23,2584442 +2013-10-09,10.1,10.46,10.07,10.27,2440152 +2013-10-10,10.3,10.35,9.93,9.98,2492250 +2013-10-11,10.1,10.65,10,10.55,4419613 +2013-10-14,10.45,10.5,10.25,10.29,2740093 +2013-10-15,10.3,10.35,10.02,10.11,2123240 +2013-10-16,10.09,10.09,9.82,9.91,2173229 +2013-10-17,10.01,10.07,9.81,9.82,1452535 +2013-10-18,9.82,10.06,9.8,9.88,1298498 +2013-10-21,9.95,10.16,9.8,10.12,2118509 +2013-10-22,10.11,10.11,9.86,9.93,1560114 +2013-10-23,9.95,10.35,9.91,10.02,2605132 +2013-10-24,9.96,10.16,9.82,9.98,1700034 +2013-10-25,10.01,10.26,9.99,10.07,2565243 +2013-10-28,10.08,10.22,9.92,10.15,1640981 +2013-10-29,10.22,10.69,10.18,10.48,4942140 +2013-10-30,10.48,10.62,10.31,10.59,3011659 +2013-10-31,10.58,10.6,10.31,10.33,2116376 +2013-11-01,10.32,10.53,10.23,10.42,1640573 +2013-11-04,10.48,10.54,10.26,10.3,1387864 +2013-11-05,10.22,10.25,10.04,10.2,1725365 +2013-11-06,10.07,10.2,10,10.03,1510266 +2013-11-07,10.08,10.19,9.97,10.05,1149838 +2013-11-08,10.02,10.1,9.93,9.98,1103888 +2013-11-11,9.99,10.02,9.9,9.97,797592 +2013-11-12,10.01,10.19,10,10.12,1196552 +2013-11-13,10.04,10.05,9.63,9.64,2087145 +2013-11-14,9.6,9.68,9.39,9.49,1691110 +2013-11-15,9.49,9.85,9.48,9.68,1805646 +2013-11-18,9.75,10.11,9.66,10.1,2312759 +2013-11-19,10.1,10.1,9.95,9.97,1285166 +2013-11-20,10.01,10.18,9.97,10.05,1259866 +2013-11-21,10,10.08,9.78,10.07,1723407 +2013-11-22,10.05,10.11,9.98,10.06,1311170 +2013-11-25,9.99,10.11,9.92,9.93,967671 +2013-11-26,9.9,10.03,9.88,9.9,728577 +2013-11-27,9.87,10.08,9.76,9.93,1343571 +2013-11-28,9.95,10.06,9.9,9.96,1218390 +2013-11-29,10.06,10.12,9.96,9.99,1124920 +2013-12-02,10.1,10.34,9.99,10.32,4089526 +2013-12-03,10.27,10.34,10.14,10.26,1789537 +2013-12-04,10.24,10.57,10.2,10.4,2833033 +2013-12-05,10.4,10.44,10.28,10.35,1505655 +2013-12-06,10.34,10.34,10.13,10.22,1577340 +2013-12-09,10.21,10.25,10.08,10.11,1113364 +2013-12-10,10.12,10.21,10.08,10.14,894765 +2013-12-11,10.11,10.13,9.91,9.93,1271767 +2013-12-12,9.91,9.96,9.87,9.88,898390 +2013-12-13,9.84,9.85,9.77,9.83,981246 +2013-12-16,9.85,9.97,9.72,9.74,1198021 +2013-12-17,9.76,9.77,9.66,9.69,781262 +2013-12-18,9.71,9.8,9.68,9.71,551918 +2013-12-19,9.75,9.78,9.6,9.61,710035 +2013-12-20,9.63,9.64,9.34,9.36,1075938 +2013-12-23,9.41,9.48,9.31,9.34,630149 +2013-12-24,9.37,9.41,9.25,9.34,718029 +2013-12-25,9.33,9.35,9.15,9.27,890033 +2013-12-26,9.26,9.27,9.06,9.09,825187 +2013-12-27,9.09,9.32,9.08,9.24,880523 +2013-12-30,9.3,9.32,9.19,9.2,704088 +2013-12-31,9.21,9.53,9.17,9.43,1072370 +2014-01-02,9.44,9.45,9.29,9.33,698210 +2014-01-03,9.28,9.3,9.08,9.14,883520 +2014-01-06,9.31,9.34,9.13,9.19,1172677 +2014-01-07,9.17,9.21,9.01,9.14,721509 +2014-01-08,9.14,9.32,9.11,9.2,786035 +2014-01-09,9.2,9.44,9.16,9.29,1099768 +2014-01-10,9.28,9.45,9.24,9.41,933800 +2014-01-13,9.44,9.47,9.33,9.39,659354 +2014-01-14,9.4,9.43,9.25,9.4,797103 +2014-01-15,9.39,9.4,9.16,9.23,776066 +2014-01-16,9.22,9.26,9.17,9.18,672047 +2014-01-17,9.17,9.17,9.07,9.12,660475 +2014-01-20,9.1,9.13,9.04,9.07,420948 +2014-01-21,9.1,9.26,9.09,9.16,475960 +2014-01-22,9.18,9.38,9.17,9.34,913873 +2014-01-23,9.31,9.34,9.21,9.22,630554 +2014-01-24,9.17,9.32,9.14,9.23,707572 +2014-01-27,9.19,9.2,9.1,9.12,698586 +2014-01-28,9.12,9.29,9.12,9.19,573336 +2014-01-29,9.24,9.31,9.2,9.29,710428 +2014-01-30,9.27,9.3,9.15,9.17,525089 +2014-02-07,9.13,9.18,9.07,9.18,511369 +2014-02-10,9.18,9.3,9.16,9.29,915731 +2014-02-11,9.31,9.68,9.22,9.54,2123924 +2014-02-12,9.5,9.64,9.44,9.5,1064493 +2014-02-13,9.48,9.84,9.41,9.6,1977651 +2014-02-14,9.6,9.63,9.51,9.59,805032 +2014-02-17,9.62,9.66,9.48,9.52,1079163 +2014-02-18,9.51,9.51,9.23,9.26,1319723 +2014-02-19,9.25,9.57,9.2,9.49,1507297 +2014-02-20,9.53,9.73,9.36,9.39,1446074 +2014-02-21,9.39,9.43,9.22,9.29,823125 +2014-02-24,9.2,9.21,8.97,9.01,1352692 +2014-02-25,9.01,9.08,8.81,8.83,1129882 +2014-02-26,8.81,8.89,8.77,8.85,798111 +2014-02-27,8.9,9.03,8.81,8.94,1125560 +2014-02-28,8.9,9.01,8.8,8.91,754279 +2014-03-03,8.91,8.92,8.81,8.85,813900 +2014-03-04,8.84,8.91,8.68,8.87,1134739 +2014-03-05,8.86,8.88,8.68,8.7,667763 +2014-03-06,8.7,8.86,8.62,8.8,1052217 +2014-03-07,8.8,8.91,8.71,8.73,859966 +2014-03-10,8.67,8.71,8.42,8.44,1003360 +2014-03-11,8.43,8.53,8.39,8.46,711195 +2014-03-12,8.47,8.67,8.39,8.56,1104686 +2014-03-13,8.76,9.13,8.68,8.84,1981159 +2014-03-14,8.78,9.03,8.72,8.99,1797692 +2014-03-18,9.22,9.23,8.87,8.89,1679654 +2014-03-19,8.85,9.07,8.76,9.05,938382 +2014-03-20,8.96,9.2,8.95,8.99,1660587 +2014-03-21,8.98,9.89,8.97,9.89,5777301 +2014-03-24,9.89,10.01,9.74,9.8,5509381 +2014-03-25,9.76,9.86,9.68,9.75,2253244 +2014-03-26,9.78,9.83,9.51,9.58,1886547 +2014-03-27,9.53,9.94,9.48,9.69,3101835 +2014-03-28,9.64,9.92,9.6,9.67,2356096 +2014-03-31,9.7,9.77,9.57,9.72,1179580 +2014-04-01,9.66,9.84,9.63,9.73,1211422 +2014-04-02,9.75,10.04,9.71,9.94,2214870 +2014-04-03,9.94,10,9.64,9.67,2025891 +2014-04-04,9.62,9.75,9.57,9.73,1037102 +2014-04-08,9.71,10.31,9.71,10.14,3899481 +2014-04-09,10.12,10.19,10.03,10.1,1669717 +2014-04-10,10.14,10.41,10.03,10.23,2517741 +2014-04-11,10.18,10.32,10.14,10.25,1879818 +2014-04-14,10.25,10.29,10.09,10.12,1335666 +2014-04-15,10.07,10.08,9.82,9.85,1761661 +2014-04-16,9.82,9.97,9.81,9.9,1007655 +2014-04-17,9.93,9.97,9.74,9.76,1478784 +2014-04-18,9.73,9.81,9.63,9.78,1153945 +2014-04-21,9.74,9.96,9.68,9.71,1313923 +2014-04-22,9.68,9.92,9.66,9.9,1412314 +2014-04-23,9.85,10,9.83,9.88,1364196 +2014-04-24,9.9,9.98,9.85,9.87,823095 +2014-04-25,9.92,10.06,9.82,9.84,1805735 +2014-04-28,9.82,9.87,9.65,9.67,1234251 +2014-04-29,9.67,9.82,9.65,9.8,884433 +2014-04-30,9.98,10.02,9.76,9.77,1425589 +2014-05-05,9.77,9.79,9.58,9.74,1035091 +2014-05-06,9.7,9.8,9.67,9.7,587976 +2014-05-07,9.69,9.75,9.64,9.66,559728 +2014-05-08,9.66,9.87,9.64,9.75,952259 +2014-05-09,9.75,9.82,9.69,9.76,748293 +2014-05-12,9.85,9.96,9.79,9.93,1295896 +2014-05-13,9.9,9.94,9.83,9.9,661825 +2014-05-14,9.89,9.92,9.78,9.81,1143551 +2014-05-15,9.79,9.83,9.71,9.73,704269 +2014-05-16,9.7,9.8,9.7,9.75,571422 +2014-05-19,9.72,9.72,9.47,9.52,1374060 +2014-05-20,9.56,9.6,9.48,9.55,640577 +2014-05-21,9.52,9.61,9.41,9.6,542980 +2014-05-22,9.59,9.73,9.57,9.6,716886 +2014-05-23,9.61,9.7,9.59,9.7,470573 +2014-05-26,9.76,9.78,9.69,9.74,541090 +2014-05-27,9.73,9.74,9.62,9.66,744362 +2014-05-28,9.66,9.72,9.6,9.68,924783 +2014-05-29,9.68,9.72,9.6,9.62,752585 +2014-05-30,9.62,9.63,9.55,9.57,690968 +2014-06-03,9.59,9.64,9.53,9.54,706413 +2014-06-04,9.55,9.56,9.4,9.45,862464 +2014-06-05,9.45,9.63,9.43,9.62,565003 +2014-06-06,9.6,9.62,9.45,9.51,534260 +2014-06-09,9.46,9.67,9.46,9.54,582317 +2014-06-10,9.59,9.65,9.52,9.63,682568 +2014-06-11,9.59,9.63,9.55,9.59,463348 +2014-06-12,9.57,9.59,9.52,9.54,429177 +2014-06-13,9.55,9.78,9.54,9.73,1296249 +2014-06-16,9.73,9.87,9.69,9.81,1184774 +2014-06-17,9.83,9.83,9.71,9.73,913171 +2014-06-18,9.73,9.77,9.71,9.73,664600 +2014-06-19,9.74,9.81,9.6,9.64,689065 +2014-06-20,9.64,9.71,9.62,9.7,576657 +2014-06-23,9.71,9.77,9.63,9.66,860196 +2014-06-24,9.05,9.09,9.01,9.04,833055 +2014-06-25,9.05,9.05,8.97,8.98,467978 +2014-06-26,8.98,9.04,8.98,8.99,430525 +2014-06-27,8.99,9.02,8.96,8.97,427132 +2014-06-30,8.98,9.08,8.98,9.05,526451 +2014-07-01,9.08,9.1,9.01,9.06,425845 +2014-07-02,9.06,9.09,9.02,9.06,412628 +2014-07-03,9.06,9.09,9.03,9.07,645532 +2014-07-04,9.08,9.09,9.05,9.07,472639 +2014-07-07,9.07,9.08,9.03,9.05,428314 +2014-07-08,9.05,9.06,9.01,9.05,525930 +2014-07-09,9.05,9.05,8.91,8.92,758296 +2014-07-10,8.92,8.95,8.9,8.92,432848 +2014-07-11,8.92,8.99,8.91,8.94,584612 +2014-07-14,8.93,9.01,8.9,9,501923 +2014-07-15,9.01,9.02,8.98,9.01,573316 +2014-07-16,9.01,9.05,9,9.02,577580 +2014-07-17,9.03,9.04,8.97,8.99,430761 +2014-07-18,8.98,9.05,8.96,9.02,601436 +2014-07-21,9.01,9.02,8.97,8.98,433945 +2014-07-22,8.96,9.1,8.96,9.06,1011864 +2014-07-23,9.04,9.14,9.04,9.08,950719 +2014-07-24,9.09,9.38,9.09,9.32,2350074 +2014-07-25,9.38,9.44,9.3,9.39,1344609 +2014-07-28,9.44,9.83,9.44,9.76,3158567 +2014-07-29,9.8,9.88,9.72,9.78,2030494 +2014-07-30,9.89,9.92,9.67,9.71,1827282 +2014-07-31,9.69,9.81,9.66,9.8,1130036 +2014-08-01,9.77,9.96,9.74,9.76,1993163 +2014-08-04,9.82,9.94,9.73,9.92,1670014 +2014-08-05,9.92,9.95,9.8,9.87,1169421 +2014-08-06,9.83,9.83,9.66,9.74,1345310 +2014-08-07,9.75,9.78,9.55,9.56,1412442 +2014-08-08,9.56,9.6,9.5,9.54,1209828 +2014-08-11,9.57,9.73,9.57,9.7,999023 +2014-08-12,9.69,9.7,9.6,9.64,808562 +2014-08-13,9.64,9.68,9.53,9.61,972017 +2014-08-14,9.63,9.68,9.58,9.6,1023257 +2014-08-15,9.63,9.7,9.58,9.68,835078 +2014-08-18,9.69,9.81,9.67,9.72,961117 +2014-08-19,9.78,9.78,9.64,9.71,997962 +2014-08-20,9.71,9.71,9.63,9.64,701355 +2014-08-21,9.64,9.65,9.43,9.5,1180572 +2014-08-22,9.5,9.58,9.47,9.54,768857 +2014-08-25,9.52,9.53,9.42,9.44,905961 +2014-08-26,9.43,9.5,9.41,9.46,852136 +2014-08-27,9.45,9.5,9.43,9.45,546288 +2014-08-28,9.45,9.45,9.36,9.36,702892 +2014-08-29,9.4,9.48,9.36,9.47,538816 +2014-09-01,9.49,9.52,9.44,9.49,685781 +2014-09-02,9.51,9.63,9.46,9.6,1287057 +2014-09-03,9.63,9.74,9.62,9.68,1285881 +2014-09-04,9.7,9.72,9.63,9.71,989192 +2014-09-05,9.73,9.78,9.69,9.74,1269259 +2014-09-09,9.75,9.82,9.68,9.7,1238661 +2014-09-10,9.65,9.66,9.57,9.59,1116595 +2014-09-11,9.6,9.73,9.57,9.6,1197632 +2014-09-12,9.61,9.61,9.53,9.6,802965 +2014-09-15,9.56,9.64,9.51,9.6,994445 +2014-09-16,9.65,9.76,9.59,9.62,2227515 +2014-09-17,9.63,9.66,9.53,9.57,1165774 +2014-09-18,9.56,9.75,9.53,9.73,2189939 +2014-09-19,9.72,9.91,9.7,9.85,2860048 +2014-09-22,9.83,9.83,9.61,9.61,1555469 +2014-09-23,9.61,9.69,9.6,9.63,882242 +2014-09-24,9.61,9.79,9.59,9.76,1526373 +2014-09-25,9.79,9.83,9.68,9.71,1372163 +2014-09-26,9.69,9.74,9.64,9.72,805983 +2014-09-29,9.75,9.81,9.72,9.76,1217630 +2014-09-30,9.78,9.8,9.7,9.75,1050933 +2014-10-08,9.78,9.85,9.73,9.84,1427244 +2014-10-09,9.85,9.94,9.81,9.85,1309682 +2014-10-10,9.8,9.91,9.77,9.83,1330302 +2014-10-13,9.79,9.83,9.68,9.73,1098312 +2014-10-14,9.72,9.82,9.69,9.72,840029 +2014-10-15,9.72,9.85,9.64,9.79,1339223 +2014-10-16,9.74,10.04,9.7,9.89,2963669 +2014-10-17,9.88,10,9.75,9.85,1610199 +2014-10-20,9.93,9.95,9.82,9.9,1147188 +2014-10-21,9.89,9.91,9.76,9.78,1052906 +2014-10-22,9.79,9.88,9.75,9.78,910921 +2014-10-23,9.78,9.88,9.72,9.75,1184163 +2014-10-24,9.77,9.79,9.66,9.68,1083127 +2014-10-27,9.62,9.63,9.4,9.47,1389295 +2014-10-28,9.5,9.61,9.5,9.59,1010441 +2014-10-29,9.61,9.75,9.57,9.7,1610506 +2014-10-30,9.72,9.85,9.65,9.81,1767805 +2014-10-31,9.88,10.38,9.85,10.2,4910647 +2014-11-03,10.25,10.28,10.1,10.16,2483716 +2014-11-04,10.2,10.2,10.02,10.07,1632126 +2014-11-05,10.08,10.11,9.96,9.99,1575614 +2014-11-06,10.01,10.04,9.95,10.03,1018631 +2014-11-07,10.01,10.39,9.98,10.18,4071141 +2014-11-10,10.53,10.81,10.42,10.55,4893769 +2014-11-11,10.62,11.26,10.62,10.92,6537390 +2014-11-12,10.85,11.07,10.74,11.05,2710386 +2014-11-13,11.1,11.38,10.86,10.94,3712640 +2014-11-14,10.88,10.98,10.75,10.9,1984143 +2014-11-17,10.94,11.08,10.73,10.75,2145198 +2014-11-18,10.75,10.8,10.43,10.45,2549009 +2014-11-19,10.43,10.54,10.39,10.47,1453266 +2014-11-20,10.45,10.66,10.37,10.57,1624025 +2014-11-21,10.58,10.82,10.46,10.79,2099976 +2014-11-24,10.57,10.99,10.45,10.86,4740499 +2014-11-25,10.81,11.09,10.75,11.08,2894901 +2014-11-26,11.25,11.43,11.1,11.32,4522633 +2014-11-27,11.48,11.72,11.28,11.48,4397383 +2014-11-28,11.53,12.48,11.48,12.4,8321833 +2014-12-01,12.45,12.98,12.12,12.16,6072704 +2014-12-02,12.03,13.08,12.03,12.87,5893710 +2014-12-03,12.84,13.29,12.32,12.58,7305615 +2014-12-04,12.58,13.3,12.37,13.27,7200417 +2014-12-05,13.42,14,12.9,13.53,8596476 +2014-12-08,13.39,14.04,13.2,13.81,7039225 +2014-12-09,13.56,14.16,12.46,12.65,8691938 +2014-12-10,12.7,13.25,12.21,13.16,6202724 +2014-12-11,12.96,13.55,12.85,13.05,4425712 +2014-12-12,13.05,13.38,12.78,12.98,3105587 +2014-12-15,12.8,12.82,12.46,12.76,3350254 +2014-12-16,12.7,13.3,12.65,13.29,4386880 +2014-12-17,13.49,14.39,13.33,14.11,8697036 +2014-12-18,14.22,14.34,13.71,13.89,4996279 +2014-12-19,13.96,14.2,13.63,14.09,4362442 +2014-12-22,14.18,15.2,14.14,14.68,6834495 +2014-12-23,14.4,14.98,14.08,14.11,4415788 +2014-12-24,14.11,14.2,13.31,13.46,4175795 +2014-12-25,13.75,14.27,13.53,14.25,4557219 +2014-12-26,14.3,14.84,14.19,14.77,4669831 +2014-12-29,15.4,15.88,14.71,14.95,6252161 +2014-12-30,14.95,15.5,14.83,15.36,4436556 +2014-12-31,15.45,15.79,15.11,15.69,4688323 +2015-01-05,15.88,16.25,15.56,16.07,5135687 +2015-01-06,16,16.68,15.82,16.13,5116845 +2015-01-07,15.9,16.17,15.53,15.81,3857168 +2015-01-08,15.87,15.88,15.2,15.25,3306272 +2015-01-09,15.2,16.25,15.11,15.43,4919999 +2015-01-12,15.5,15.71,14.95,15.22,3677873 +2015-01-13,15.13,15.41,15.1,15.18,1784050 +2015-01-14,15.31,15.79,15.31,15.49,3090188 +2015-01-15,15.49,16.15,15.39,16.12,3298268 +2015-01-16,16.24,16.75,16.16,16.47,4802459 +2015-01-19,15.38,15.73,14.82,14.82,6235209 +2015-01-20,14.88,15.17,14.58,15,4792157 +2015-01-21,15.1,15.87,14.81,15.74,4875404 +2015-01-22,15.73,15.76,15.35,15.63,2947383 +2015-01-23,15.74,16.04,15.54,15.63,3200430 +2015-01-26,15.56,15.59,15.13,15.43,2685669 +2015-01-27,15.44,15.44,14.75,15.01,3519140 +2015-01-28,14.82,15.11,14.66,14.81,2422031 +2015-01-29,14.58,14.68,14.32,14.42,2669681 +2015-01-30,14.58,14.69,14.36,14.47,2078653 +2015-02-02,14.06,14.26,13.99,14.04,2116177 +2015-02-03,14.21,14.46,14.02,14.45,1962636 +2015-02-04,14.5,14.59,14.12,14.18,1678962 +2015-02-05,14.75,14.8,14.17,14.18,3943327 +2015-02-06,14.09,14.32,13.95,14.09,1865475 +2015-02-09,14.06,14.27,13.85,14.16,2245855 +2015-02-10,14.15,14.48,14.08,14.43,1836935 +2015-02-11,14.43,14.54,14.31,14.42,1241271 +2015-02-12,14.42,14.43,14.11,14.35,1489542 +2015-02-13,14.5,14.67,14.35,14.43,2083668 +2015-02-16,14.43,14.46,14.26,14.4,1392200 +2015-02-17,14.42,14.58,14.41,14.47,1206653 +2015-02-25,14.48,14.5,14.18,14.28,1409326 +2015-02-26,14.25,14.68,14.11,14.62,2150140 +2015-02-27,14.6,14.8,14.48,14.53,1956069 +2015-03-02,14.58,14.58,14.36,14.48,2187633 +2015-03-03,14.44,14.44,13.98,14,2663724 +2015-03-04,14.05,14.07,13.85,13.91,1565960 +2015-03-05,13.84,13.84,13.51,13.58,2265046 +2015-03-06,13.58,13.78,13.54,13.63,1280364 +2015-03-09,13.81,14.7,13.61,14.51,4348015 +2015-03-10,14.32,14.37,14.07,14.1,2548448 +2015-03-11,14.17,14.56,14.17,14.25,2150697 +2015-03-12,14.65,15.56,14.58,15.12,6327819 +2015-03-13,15.19,15.8,15.08,15.29,4401784 +2015-03-16,15.56,15.61,15.2,15.47,3161167 +2015-03-17,15.6,15.68,15.36,15.54,3096776 +2015-03-18,15.57,15.88,15.43,15.88,3546551 +2015-03-19,15.88,15.89,15.58,15.64,3167709 +2015-03-20,15.62,16.09,15.37,15.75,4565312 +2015-03-23,15.82,16.04,15.77,15.91,3575927 +2015-03-24,15.89,16,15.6,15.69,3246575 +2015-03-25,15.6,15.72,15.15,15.24,3317303 +2015-03-26,15.15,15.58,15.04,15.36,2823407 +2015-03-27,15.32,15.55,15.17,15.36,2181750 +2015-03-30,15.55,16.2,15.44,16.02,4874427 +2015-03-31,16.48,16.58,15.74,15.79,4940492 +2015-04-01,15.79,16.14,15.75,15.95,3058784 +2015-04-02,16.3,16.38,15.87,16.18,4100876 +2015-04-03,16,16.29,15.93,16.2,3203615 +2015-04-07,16.5,16.87,16.45,16.71,5022602 +2015-04-08,16.73,17.04,16.45,17.02,5148164 +2015-04-09,17.05,17.48,16.8,16.87,4973355 +2015-04-10,16.86,17.57,16.76,17.53,4515434 +2015-04-13,17.99,18.48,17.62,18.03,5814066 +2015-04-14,18.03,18.04,17.56,17.89,3728371 +2015-04-15,17.8,18.45,17.71,17.96,4496439 +2015-04-16,17.97,18.67,17.85,18.65,4159846 +2015-04-17,18.95,19.05,18.47,18.6,4901593 +2015-04-20,18.72,18.72,17.6,17.9,5724358 +2015-04-21,17.75,18.19,17.75,18.16,3681947 +2015-04-22,18.3,18.55,18.08,18.5,4207667 +2015-04-23,18.5,18.64,18.11,18.22,3635936 +2015-04-24,17.8,18.03,17.46,17.68,4229271 +2015-04-27,17.72,18.25,17.72,18.17,3845414 +2015-04-28,18.24,19,18,18.3,6000540 +2015-04-29,18.27,18.66,18.06,18.53,3583937 +2015-04-30,18.28,18.46,18.05,18.07,4127605 +2015-05-04,18,18,17.6,17.81,2580646 +2015-05-05,17.73,17.75,16.85,17.08,3753864 +2015-05-06,17.08,17.51,16.97,17.06,3036079 +2015-05-07,17.03,17.28,16.98,17.07,2143907 +2015-05-08,17.19,17.3,16.82,17.11,1845600 +2015-05-11,16.98,17.31,16.79,17.27,2771534 +2015-05-12,17.25,17.4,17.04,17.24,2191763 +2015-05-13,17.33,17.39,16.9,17.07,2452445 +2015-05-14,17.1,17.25,16.94,16.99,1923619 +2015-05-15,16.91,17.07,16.59,16.78,2095973 +2015-05-18,16.62,16.76,16.34,16.38,1875552 +2015-05-19,16.37,17.09,16.35,17.04,2422513 +2015-05-20,17.04,17.49,16.97,17.15,2656757 +2015-05-21,17.25,17.4,17.1,17.32,1664035 +2015-05-22,17.46,17.79,17.34,17.76,2480875 +2015-05-25,17.85,18.18,17.84,18.14,2738748 +2015-05-26,18.22,18.45,17.91,18.39,3016653 +2015-05-27,18.44,18.65,18.05,18.07,2969423 +2015-05-28,18.1,18.14,17.01,17.04,3340322 +2015-05-29,17.08,17.35,16.71,17.04,2560873 +2015-06-01,17.04,18.08,16.86,17.93,2863792 +2015-06-02,17.93,17.97,17.5,17.84,2249355 +2015-06-03,17.89,18.05,17.54,17.9,2441397 +2015-06-04,18,18.8,17.58,18.63,4718649 +2015-06-05,19,19.17,18.02,18.43,3624202 +2015-06-17,18.49,18.98,17.95,18.2,5131187 +2015-06-18,18.09,18.25,17.64,17.72,2782967 +2015-06-19,17.58,17.95,16.84,17.07,2780902 +2015-06-23,16.45,17.09,16.24,17.02,2977489 +2015-06-24,17.03,17.3,16.58,17.25,2578253 +2015-06-25,17.6,17.74,16.65,16.71,2716490 +2015-06-26,16.43,17.08,15.33,15.85,3617767 +2015-06-29,16.3,16.53,14.81,15.91,4206757 +2015-06-30,15.93,16.98,15.91,16.96,3754113 +2015-07-01,16.81,16.93,16.2,16.32,2505560 +2015-07-02,16.5,16.83,15.81,16.37,3222649 +2015-07-03,16.39,16.64,15.1,15.87,3127011 +2015-07-06,17.4,17.46,16.63,17.22,6594219 +2015-07-07,16.94,17.82,16.46,17.57,7137635 +2015-07-08,16.2,17.5,15.81,15.95,8379504 +2015-07-09,15.95,17.4,15.38,16.95,5452373 +2015-07-10,16.76,18.15,16.65,17.28,6477686 +2015-07-13,16.99,17.48,16.81,17.04,3725947 +2015-07-14,16.78,16.98,16.36,16.75,3057258 +2015-07-15,16.7,17.13,16.51,17.07,3482536 +2015-07-16,17.07,17.12,16.71,16.96,1814026 +2015-07-17,17.03,17.19,16.88,17.02,1959276 +2015-07-20,17,17.03,16.65,16.68,1729182 +2015-07-21,16.58,16.72,16.3,16.38,1562683 +2015-07-22,16.33,16.38,16.15,16.16,1203527 +2015-07-23,16.24,16.51,16.18,16.43,1145255 +2015-07-24,16.43,16.49,16.13,16.14,1236092 +2015-07-27,16,16.1,14.84,14.91,2250916 +2015-07-28,14.68,15.4,14.62,15.24,2460951 +2015-07-29,15.22,15.3,15.12,15.29,1358587 +2015-07-30,15.29,15.36,14.88,14.9,1189217 +2015-07-31,14.97,15.16,14.65,15.07,2349413 +2015-08-03,14.99,15.6,14.86,15.55,2123671 +2015-08-04,15.48,15.67,15.38,15.62,851544 +2015-08-05,15.6,15.64,15.27,15.31,581859 +2015-08-06,15.16,15.57,15.14,15.38,653780 +2015-08-07,15.58,15.64,15.39,15.47,653023 +2015-08-10,15.45,15.86,15.35,15.78,1169382 +2015-08-11,15.7,15.75,15.51,15.57,1051041 +2015-08-12,15.4,15.6,15.38,15.39,791844 +2015-08-13,15.47,15.56,15.29,15.45,740342 +2015-08-14,15.47,15.54,15.37,15.49,663560 +2015-08-17,15.41,15.41,15.22,15.32,1208921 +2015-08-18,15.35,15.52,14.83,14.87,1984452 +2015-08-19,14.87,15.17,14.5,15,1990621 +2015-08-20,14.94,14.99,14.66,14.68,881248 +2015-08-21,14.61,14.74,14.2,14.22,1237928 +2015-08-24,13.93,13.95,12.8,12.87,3348594 +2015-08-25,12.54,13.08,11.91,12.39,2894707 +2015-08-26,12.65,13.35,12.4,13.02,2352146 +2015-08-27,13.16,14.09,12.98,13.98,2120088 +2015-08-28,14.1,14.32,13.85,14.24,2089510 +2015-08-31,14.2,14.98,13.96,14.96,2026285 +2015-09-01,14.66,15.34,14.41,15.33,3049047 +2015-09-02,14.9,15.37,14.72,14.89,2550453 +2015-09-07,14.73,15.01,14.16,14.5,2879486 +2015-09-08,14.52,15.16,14.22,15.06,3308142 +2015-09-09,14.91,15.27,14.91,15.16,2419175 +2015-09-10,15.06,15.27,14.96,15.25,2057490 +2015-09-11,15.35,15.66,15.3,15.56,2887086 +2015-09-14,15.5,15.95,14.93,15.93,1839366 +2015-09-15,15.53,15.55,15.24,15.46,1076025 +2015-09-16,15.31,15.8,15.03,15.43,741290 +2015-09-17,15.34,15.46,15.1,15.11,508487 +2015-09-18,15.16,15.29,15.02,15.03,408992 +2015-09-21,14.96,15.08,14.84,14.97,404883 +2015-09-22,14.97,15.23,14.97,15.05,386738 +2015-09-23,14.91,15,14.68,14.95,545806 +2015-09-24,14.95,15.3,14.87,15.27,788626 +2015-09-25,15.15,15.62,15.15,15.59,1360709 +2015-09-28,15.55,15.96,15.42,15.92,914258 +2015-09-29,15.79,15.99,15.67,15.97,1141903 +2015-09-30,15.95,16.65,15.9,16.63,2110381 +2015-10-08,16.8,16.8,15.83,15.87,1400571 +2015-10-09,15.97,16.15,15.85,15.9,415258 +2015-10-12,15.9,16.25,15.73,16.06,936333 +2015-10-13,15.98,16.11,15.85,15.97,546988 +2015-10-14,15.81,16.09,15.81,15.9,442978 +2015-10-26,16.03,16.57,16.03,16.28,1010411 +2015-10-27,16.23,16.45,16.15,16.32,749340 +2015-10-28,16.26,16.54,16.09,16.31,742263 +2015-10-29,16.3,16.63,16.23,16.59,757606 +2015-10-30,16.5,16.68,16.38,16.39,454654 +2015-11-02,16.3,16.52,16.22,16.41,381228 +2015-11-03,16.4,16.77,16.37,16.46,604851 +2015-11-04,16.43,16.92,16.43,16.84,650540 +2015-11-05,16.85,18.07,16.75,17.71,2317997 +2015-11-06,17.52,18.18,17.51,17.88,1275942 +2015-11-09,17.92,19.19,17.88,18.15,1578201 +2015-11-10,18,18.69,17.82,18.37,1404271 +2015-11-11,18.41,18.49,17.5,17.73,921302 +2015-11-12,17.8,17.83,17.15,17.36,777902 +2015-11-13,17.2,17.6,17.15,17.58,734332 +2015-11-16,17.34,17.58,17.2,17.42,451447 +2015-11-17,17.46,17.81,17.42,17.44,635393 +2015-11-18,17.47,17.68,17.24,17.39,575846 +2015-11-19,17.3,17.99,17.3,17.9,1025434 +2015-11-20,17.81,18.63,17.78,18.47,1482062 +2015-11-23,18.51,19.13,18.44,19.06,1712038 +2015-11-24,18.9,19.12,18.59,19.05,1293891 +2015-11-25,18.9,19.68,18.44,19.67,3265248 +2015-11-26,19.5,19.7,19.2,19.37,2149442 +2015-11-27,19.16,19.42,18.4,18.53,1056087 +2015-11-30,18.44,18.81,17.6,18.65,976338 +2015-12-01,18.35,19,18.08,18.66,634306 +2015-12-02,18.51,20,18.48,19.85,1536081 +2015-12-03,19.7,19.77,19.22,19.25,1103463 +2015-12-04,19.27,19.27,18.69,18.71,702758 +2015-12-07,18.71,19.5,18.71,19.45,833468 +2015-12-08,19.28,20.12,18.81,20.1,2398849 +2015-12-09,19.58,19.58,19.11,19.23,920495 +2015-12-10,19.34,19.88,19.11,19.27,570913 +2015-12-11,19.01,19.22,18.43,18.6,870668 +2015-12-14,18.31,18.63,18.03,18.45,707370 +2015-12-15,18.44,18.82,18.17,18.31,516858 +2015-12-16,18.36,18.45,18.11,18.18,387006 +2015-12-17,18.26,18.61,18.2,18.49,533041 +2015-12-18,18.49,19.8,18.43,18.81,922119 +2015-12-21,18.79,19.4,18.54,19.14,824901 +2015-12-22,19.01,19.29,18.77,18.9,531227 +2015-12-23,18.91,19.13,18.61,18.88,661282 +2015-12-24,18.85,19.14,18.67,19.04,571716 +2015-12-25,19.02,19.48,18.93,19.32,554279 +2015-12-28,19.37,19.43,18.62,18.7,499807 +2015-12-29,18.63,18.92,18.39,18.74,472885 +2015-12-30,18.71,18.78,18.31,18.57,356874 +2015-12-31,18.52,18.52,18.26,18.27,279361 +2016-01-04,18.28,18.28,17.55,17.8,422406 +2016-01-05,17.51,18.06,17.4,17.96,580548 +2016-01-06,17.9,18.14,17.69,18.1,467727 +2016-01-07,17.8,17.9,17.4,17.51,113505 +2016-01-08,17.74,17.88,16.91,17.49,719183 +2016-01-11,17.21,17.45,16.96,17.05,901771 +2016-01-12,17.17,17.52,17.08,17.45,553745 +2016-01-13,17.57,17.9,17.35,17.39,478693 +2016-01-14,17,17.99,16.89,17.92,548388 +2016-01-15,17.8,18.15,17.52,17.58,467231 +2016-01-18,17.43,17.99,17.32,17.68,327290 +2016-01-19,17.78,17.88,17.5,17.77,298072 +2016-01-20,17.61,17.7,17.08,17.25,359686 +2016-01-21,17.22,17.46,16.5,16.58,341971 +2016-01-22,16.84,17.11,16.49,17.02,420073 +2016-01-25,17,17.17,16.72,17.03,235590 +2016-01-26,16.96,17.14,16.4,16.66,382798 +2016-01-27,16.75,16.98,16.51,16.68,442913 +2016-01-28,16.76,16.82,15.88,16.58,389022 +2016-01-29,16.52,17.05,16.41,16.9,474290 +2016-02-01,16.99,17,16.41,16.5,291396 +2016-02-02,16.5,16.94,16.46,16.76,253810 +2016-02-03,16.6,16.66,16.45,16.61,277792 +2016-02-04,16.84,17.32,16.63,17.3,471629 +2016-02-05,17.24,18.39,17.15,18.38,784135 +2016-02-15,17.98,18.48,17.8,18.45,672963 +2016-03-11,17.51,17.53,16.61,16.97,982403 +2016-03-14,16.88,17.47,16.82,16.86,569222 +2016-03-15,16.95,17.19,16.81,17.02,375409 +2016-03-16,16.92,18.07,16.91,18.03,1084044 +2016-03-17,17.81,18.19,17.45,17.7,686358 +2016-03-18,17.79,18,17.65,17.84,559880 +2016-03-21,17.78,18.25,17.78,18.06,420015 +2016-03-22,18.09,18.63,18.02,18.15,437608 +2016-03-23,18.16,18.35,18.06,18.13,278308 +2016-03-24,18.11,18.11,17.68,17.72,274483 +2016-03-25,17.72,17.87,17.68,17.74,136192 +2016-03-28,17.78,18,17.37,17.45,245217 +2016-03-29,17.53,17.66,17.37,17.45,191512 +2016-03-30,17.65,17.95,17.65,17.87,355621 +2016-03-31,17.98,18.08,17.72,17.93,237621 +2016-04-01,17.98,18.25,17.61,18.18,357905 +2016-04-05,17.94,18.29,17.76,18.17,426223 +2016-04-06,18.03,18.14,17.87,17.96,234287 +2016-04-07,17.95,18,17.63,17.69,290477 +2016-04-08,17.56,17.76,17.53,17.6,171322 +2016-04-11,17.6,17.82,17.55,17.67,241176 +2016-04-12,17.69,17.7,17.53,17.62,141008 +2016-04-13,17.73,17.99,17.69,17.74,351897 +2016-04-14,17.9,18.01,17.75,17.8,157962 +2016-04-15,17.95,18.06,17.8,17.89,347735 +2016-04-18,17.75,18.03,17.66,17.81,280841 +2016-04-19,17.95,17.98,17.78,17.9,272464 +2016-04-20,17.89,17.99,17.31,17.96,466146 +2016-04-21,17.82,18.35,17.75,18.12,482129 +2016-04-22,18,18.36,17.94,18.24,281782 +2016-04-25,18.15,18.16,17.82,17.88,242944 +2016-04-26,17.87,18.08,17.75,17.92,157394 +2016-04-27,17.97,17.97,17.8,17.86,138389 +2016-04-28,17.93,18.1,17.83,17.9,157284 +2016-04-29,17.83,17.94,17.75,17.83,230659 +2016-05-03,17.95,18.24,17.83,18.12,277767 +2016-05-04,18.06,18.23,18.02,18.08,231190 +2016-05-05,18.06,18.12,17.98,18.06,149366 +2016-05-06,18.07,18.1,17.71,17.73,234068 +2016-05-09,17.71,17.8,17.4,17.51,219476 +2016-05-10,17.38,17.56,17.38,17.48,168466 +2016-05-11,17.55,17.57,17.4,17.45,119412 +2016-05-12,17.43,17.5,17.2,17.41,146690 +2016-05-13,17.37,17.46,17.22,17.24,110138 +2016-05-16,17.23,17.35,17.21,17.29,110456 +2016-05-17,17.29,17.34,17.16,17.25,97652 +2016-05-18,17.25,17.62,17.02,17.56,309625 +2016-05-19,17.44,17.49,17.33,17.35,103808 +2016-05-20,17.31,17.5,17.27,17.45,111406 +2016-05-23,17.5,17.68,17.44,17.55,140807 +2016-05-24,17.48,17.6,17.43,17.55,107259 +2016-05-25,17.68,17.73,17.6,17.67,137662 +2016-05-26,17.65,17.86,17.65,17.7,110651 +2016-05-27,17.69,17.77,17.63,17.74,116212 +2016-05-30,17.84,17.97,17.68,17.95,175382 +2016-05-31,17.93,18.4,17.92,18.29,356315 +2016-06-01,18.3,18.35,18.13,18.19,183124 +2016-06-02,18.2,18.3,17.93,18.02,177865 +2016-06-03,18.12,18.13,17.9,18.01,180035 +2016-06-06,18.05,18.11,17.97,18.02,178562 +2016-06-07,18.1,18.13,17.97,18.02,165340 +2016-06-08,18.01,18.07,17.97,17.99,237583 +2016-06-13,17.86,17.94,17.77,17.78,300516 +2016-06-14,17.77,17.83,17.7,17.79,187734 +2016-06-15,17.61,17.76,17.55,17.74,263322 +2016-06-16,17.67,17.93,17.6,17.8,308711 +2016-06-17,17.75,17.99,17.74,17.77,174122 +2016-06-20,17.93,17.93,17.75,17.85,96815 +2016-06-21,17.88,17.95,17.75,17.78,158529 +2016-06-22,17.8,17.9,17.78,17.89,142275 +2016-06-23,15.9,15.9,15.71,15.72,128823 +2016-06-24,15.7,15.79,15.08,15.28,305755 +2016-06-27,15.29,15.39,15.18,15.31,191635 +2016-06-28,15.27,15.3,15.18,15.28,125598 +2016-06-29,15.29,15.54,15.28,15.5,212534 +2016-06-30,15.5,15.66,15.44,15.57,207359 +2016-07-01,15.57,15.96,15.54,15.92,251065 +2016-07-04,15.86,16.03,15.8,15.93,214117 +2016-07-05,15.94,15.95,15.75,15.79,161716 +2016-07-06,15.71,15.76,15.61,15.64,229765 +2016-07-07,15.63,15.64,15.45,15.57,244980 +2016-07-08,15.55,15.56,15.44,15.45,149013 +2016-07-11,15.56,15.57,15.4,15.43,228525 +2016-07-12,15.48,15.65,15.45,15.64,255451 +2016-07-13,15.65,15.97,15.64,15.79,362381 +2016-07-14,15.77,15.84,15.64,15.7,168834 +2016-07-15,15.71,15.75,15.65,15.71,159981 +2016-07-18,15.73,15.91,15.66,15.77,277670 +2016-07-19,15.77,15.8,15.65,15.73,171798 +2016-07-20,15.7,15.76,15.63,15.75,148665 +2016-07-21,15.74,15.87,15.7,15.83,220204 +2016-07-22,15.81,15.82,15.58,15.63,167117 +2016-07-25,15.63,15.76,15.63,15.69,114420 +2016-07-26,15.69,15.79,15.65,15.74,204624 +2016-07-27,15.73,15.88,15.45,15.87,406973 +2016-07-28,15.77,15.79,15.65,15.68,174514 +2016-07-29,15.65,15.71,15.61,15.7,143483 +2016-08-01,15.68,15.85,15.65,15.8,229099 +2016-08-02,15.79,15.85,15.68,15.75,108778 +2016-08-03,15.64,15.72,15.62,15.67,105840 +2016-08-04,15.69,15.69,15.49,15.59,156105 +2016-08-05,15.6,15.8,15.59,15.73,176485 +2016-08-08,15.76,15.76,15.66,15.74,131294 +2016-08-09,15.75,15.8,15.71,15.79,154809 +2016-08-10,15.8,15.85,15.73,15.83,184995 +2016-08-11,15.75,16.4,15.74,16.07,526894 +2016-08-12,16.12,16.39,16,16.36,469916 +2016-08-15,16.5,17.02,16.45,16.94,773339 +2016-08-16,16.94,16.99,16.67,16.7,493840 +2016-08-17,16.72,16.85,16.52,16.64,364466 +2016-08-18,16.55,16.77,16.35,16.44,371101 +2016-08-19,16.43,16.5,16.36,16.42,199273 +2016-08-22,16.42,16.47,16.31,16.41,197686 +2016-08-23,16.41,16.56,16.32,16.4,317544 +2016-08-24,16.41,16.51,16.34,16.39,170854 +2016-08-25,16.36,16.41,16.2,16.34,247499 +2016-08-26,16.36,16.4,16.29,16.34,146881 +2016-08-29,16.31,16.37,16.08,16.23,302020 +2016-08-30,16.24,16.49,16.24,16.4,363970 +2016-08-31,16.35,16.56,16.32,16.48,220034 +2016-09-01,16.48,16.55,16.38,16.41,212720 +2016-09-02,16.38,16.5,16.35,16.48,231470 +2016-09-05,16.49,16.58,16.42,16.49,256770 +2016-09-06,16.49,16.53,16.37,16.41,202826 +2016-09-07,16.41,16.5,16.35,16.48,179756 +2016-09-08,16.47,16.61,16.43,16.6,244069 +2016-09-09,16.62,16.66,16.5,16.56,187395 +2016-09-12,16.38,16.47,16.26,16.4,365092 +2016-09-13,16.4,16.46,16.39,16.45,142344 +2016-09-14,16.43,16.48,16.38,16.4,239814 +2016-09-19,16.45,16.51,16.42,16.46,144660 +2016-09-20,16.47,16.48,16.42,16.46,173968 +2016-09-21,16.47,16.51,16.43,16.45,94161 +2016-09-22,16.49,16.59,16.47,16.53,115278 +2016-09-23,16.55,16.55,16.48,16.48,102005 +2016-09-26,16.45,16.57,16.41,16.48,207692 +2016-09-27,16.42,16.52,16.42,16.48,170255 +2016-09-28,16.48,16.53,16.46,16.48,128420 +2016-09-29,16.52,16.55,16.49,16.5,109974 +2016-09-30,16.5,16.53,16.48,16.49,121903 +2016-10-10,16.53,16.6,16.48,16.55,186669 +2016-10-11,16.57,16.58,16.5,16.57,126904 +2016-10-12,16.54,16.54,16.48,16.51,106439 +2016-10-13,16.51,16.52,16.42,16.43,145044 +2016-10-14,16.43,16.47,16.38,16.46,106601 +2016-10-17,16.41,16.44,16.22,16.27,164249 +2016-10-18,16.28,16.39,16.24,16.34,182518 +2016-10-19,16.35,16.39,16.24,16.27,111432 +2016-10-20,16.27,16.34,16.25,16.29,89858 +2016-10-21,16.29,16.34,16.22,16.3,108848 +2016-10-24,16.3,16.58,16.27,16.47,247572 +2016-10-25,16.48,16.5,16.36,16.42,133093 +2016-10-26,16.4,16.42,16.3,16.32,124368 +2016-10-27,16.3,16.31,16.18,16.19,195175 +2016-10-28,16.19,16.34,16.18,16.29,150672 +2016-10-31,16.23,16.31,16.01,16.27,146733 +2016-11-01,16.26,16.33,16.21,16.3,130283 +2016-11-02,16.21,16.3,16.18,16.2,250512 +2016-11-03,16.19,16.38,16.19,16.35,258641 +2016-11-04,16.3,16.53,16.29,16.4,215165 +2016-11-07,16.39,16.45,16.38,16.42,213517 +2016-11-08,16.45,16.54,16.44,16.47,173072 +2016-11-09,16.47,16.53,16.36,16.46,398266 +2016-11-10,16.55,16.64,16.48,16.57,204846 +2016-11-11,16.56,16.63,16.45,16.59,215392 +2016-11-14,16.53,16.7,16.52,16.6,181245 +2016-11-15,16.59,16.61,16.5,16.59,157141 +2016-11-16,16.59,16.63,16.54,16.6,123955 +2016-11-17,16.58,16.63,16.52,16.6,227186 +2016-11-18,16.59,16.64,16.55,16.6,292744 +2016-11-21,16.59,16.73,16.54,16.64,214325 +2016-11-22,16.67,16.72,16.63,16.68,210810 +2016-11-23,16.68,17.23,16.66,16.93,450364 +2016-11-24,16.93,17.12,16.86,16.89,210431 +2016-11-25,16.89,17.1,16.81,17.09,233352 +2016-11-28,17.15,17.49,17.15,17.21,338353 +2016-11-29,17.21,17.35,17.11,17.26,295301 +2016-11-30,17.28,17.45,17.1,17.16,201350 +2016-12-01,17.15,17.27,17.05,17.15,184492 +2016-12-02,17.1,17.18,16.8,17.1,338959 +2016-12-05,16.95,17.32,16.91,17.3,382014 +2016-12-06,17.28,17.42,17.2,17.22,209481 +2016-12-07,17.17,17.2,17.06,17.07,155507 +2016-12-08,17.15,17.2,17.04,17.14,132346 +2016-12-09,17.14,17.46,17.12,17.34,288356 +2016-12-12,17.34,17.57,17.19,17.49,483596 +2016-12-13,17.36,17.44,17.16,17.17,156029 +2016-12-14,17.17,17.42,17.12,17.18,178606 +2016-12-15,17.13,17.13,16.7,16.7,308096 +2016-12-16,16.7,16.83,16.63,16.66,145314 +2016-12-19,16.65,16.7,16.51,16.52,84835 +2016-12-20,16.52,16.56,16.12,16.28,225258 +2016-12-21,16.26,16.37,16.25,16.32,126388 +2016-12-22,16.32,16.33,16.14,16.19,114992 +2016-12-23,16.17,16.22,16.07,16.19,111879 +2016-12-26,16.13,16.28,16.01,16.25,144825 +2016-12-27,16.25,16.32,16.13,16.14,106658 +2016-12-28,16.14,16.19,16.03,16.09,144415 +2016-12-29,16.09,16.15,15.99,16.07,118513 +2016-12-30,16.07,16.23,16.04,16.21,122622 +2017-01-03,16.21,16.44,16.17,16.3,162371 +2017-01-04,16.29,16.35,16.18,16.33,296587 +2017-01-05,16.3,16.38,16.24,16.3,264376 +2017-01-06,16.3,16.3,16.13,16.18,171956 +2017-01-09,16.24,16.29,16.13,16.2,149087 +2017-01-10,16.18,16.24,16.14,16.19,79968 +2017-01-11,16.24,16.24,16.15,16.16,91933 +2017-01-12,16.18,16.2,16.11,16.12,82962 +2017-01-13,16.1,16.29,16.1,16.27,190341 +2017-01-16,16.23,16.6,16.1,16.56,533047 +2017-01-17,16.46,16.54,16.37,16.4,125553 +2017-01-18,16.42,16.55,16.36,16.48,114787 +2017-01-19,16.43,16.64,16.43,16.54,121807 +2017-01-20,16.58,16.66,16.5,16.6,142883 +2017-01-23,16.66,16.69,16.51,16.57,146165 +2017-01-24,16.58,16.7,16.58,16.69,149852 +2017-01-25,16.69,16.74,16.61,16.69,112849 +2017-01-26,16.69,16.84,16.61,16.74,86029 +2017-02-03,16.82,16.85,16.62,16.63,81743 +2017-02-06,16.75,16.78,16.66,16.66,134559 +2017-02-07,16.65,16.74,16.63,16.67,147593 +2017-02-08,16.63,16.69,16.54,16.67,112389 +2017-02-09,16.68,16.77,16.59,16.72,113930 +2017-02-10,16.76,16.84,16.7,16.78,139853 +2017-02-13,16.88,16.9,16.78,16.85,199929 +2017-02-14,16.87,16.88,16.74,16.75,129872 +2017-02-15,16.82,16.93,16.75,16.84,256880 +2017-02-16,16.88,16.91,16.76,16.78,163278 +2017-02-17,16.78,16.82,16.59,16.64,138636 +2017-02-20,16.62,16.98,16.62,16.91,299500 +2017-02-21,16.88,17.08,16.81,16.88,175091 +2017-02-22,16.88,16.9,16.73,16.75,170323 +2017-02-23,16.78,16.83,16.64,16.69,150111 +2017-02-24,16.67,16.75,16.66,16.71,115950 +2017-02-27,16.69,16.72,16.53,16.59,137323 +2017-02-28,16.58,16.67,16.53,16.59,120979 +2017-03-01,16.58,16.62,16.52,16.56,162270 +2017-03-02,16.62,16.62,16.39,16.41,189966 +2017-03-03,16.42,16.43,16.32,16.35,124295 +2017-03-06,16.37,16.53,16.35,16.41,157038 +2017-03-07,16.38,16.45,16.37,16.43,93198 +2017-03-08,16.4,16.44,16.35,16.39,101096 +2017-03-09,16.37,16.4,16.22,16.22,173660 +2017-03-10,16.23,16.28,16.17,16.23,163964 +2017-03-13,16.23,16.34,16.16,16.34,179501 +2017-03-14,16.34,16.35,16.24,16.26,169890 +2017-03-15,16.24,16.28,16.17,16.24,189003 +2017-03-16,16.27,16.35,16.25,16.29,190365 +2017-03-17,16.3,16.32,16.14,16.2,215604 +2017-03-20,16.24,16.25,16.13,16.14,150178 +2017-03-21,16.15,16.16,15.98,16,311246 +2017-03-22,15.98,15.98,15.7,15.78,438114 +2017-03-23,15.8,15.92,15.79,15.88,222257 +2017-03-24,15.85,16,15.83,15.96,199020 +2017-03-27,15.97,16.13,15.9,16.04,189974 +2017-03-28,16.11,16.13,15.97,16.01,132130 +2017-03-29,16.01,16.11,15.8,15.87,234468 +2017-03-30,15.88,15.9,15.72,15.81,236451 +2017-03-31,15.78,16.05,15.77,16.01,241871 +2017-04-05,16.05,16.2,15.89,16.16,310363 +2017-04-06,16.09,16.18,16.03,16.1,223354 +2017-04-07,16.06,16.16,16.02,16.1,201269 +2017-04-10,16.12,16.12,15.94,15.97,161540 +2017-04-11,15.97,15.99,15.81,15.89,186114 +2017-04-12,15.88,15.96,15.75,15.89,222105 +2017-04-13,15.88,15.89,15.73,15.75,234267 +2017-04-14,15.76,15.78,15.42,15.51,401566 +2017-04-17,15.53,15.6,15.3,15.56,367394 +2017-04-18,15.5,15.52,15.3,15.3,228900 +2017-04-19,15.25,15.27,15.11,15.11,244554 +2017-04-20,15.12,15.14,14.9,14.91,410614 +2017-04-21,14.92,15.07,14.85,15.05,226884 +2017-04-24,15.05,15.11,14.91,15,176278 +2017-04-25,15.02,15.1,14.99,15.05,129759 +2017-04-26,15.06,15.11,15,15.05,149399 +2017-04-27,15.05,15.25,15.03,15.21,228876 +2017-04-28,15.15,15.22,15.08,15.21,157185 +2017-05-02,15.21,15.22,15.13,15.16,126075 +2017-05-03,15.16,15.16,15.05,15.08,142479 +2017-05-04,15.07,15.07,14.9,14.98,194778 +2017-05-05,14.95,14.98,14.52,14.92,401946 +2017-05-08,14.78,14.9,14.51,14.86,435686 +2017-05-09,14.69,14.84,14.66,14.76,192255 +2017-05-10,14.76,14.85,14.55,14.61,283594 +2017-05-11,14.57,14.79,14.55,14.75,273129 +2017-05-12,14.75,15.23,14.73,15.21,457334 +2017-05-15,15.27,15.43,15.16,15.27,299658 +2017-05-16,15.23,15.29,15.08,15.27,248754 +2017-05-17,15.24,15.26,15.07,15.21,334344 +2017-05-18,15.1,15.14,14.95,15.01,306579 +2017-05-19,15.04,15.08,14.91,15.02,286106 +2017-05-22,15.02,15.06,14.93,15.04,302272 +2017-05-23,15,15.57,14.98,15.43,754004 +2017-05-24,15.38,15.52,15.21,15.47,704390 +2017-05-25,11.75,12.93,11.72,12.93,2223734 +2017-05-26,12.81,12.91,12.54,12.84,1764566 +2017-05-31,12.75,13.05,12.66,12.84,1130098 +2017-06-01,12.78,12.97,12.69,12.92,962171 +2017-06-02,12.93,13.01,12.74,12.89,801977 +2017-06-05,12.79,12.88,12.51,12.85,758765 +2017-06-06,12.8,12.84,12.66,12.8,361044 +2017-06-07,12.81,12.99,12.78,12.84,643952 +2017-06-08,12.76,12.86,12.67,12.84,481948 +2017-06-09,12.79,13.2,12.77,12.93,1144343 +2017-06-12,12.9,13.14,12.76,12.78,739312 +2017-06-13,12.78,12.78,12.56,12.59,527161 +2017-06-14,12.6,12.64,12.31,12.46,553070 +2017-06-15,12.41,12.46,12.28,12.38,374929 +2017-06-16,12.38,12.46,12.27,12.35,473511 +2017-06-19,12.36,12.43,12.3,12.4,329413 +2017-06-20,12.41,12.44,12.22,12.29,446452 +2017-06-21,12.4,12.4,12.26,12.34,340001 +2017-06-22,12.33,12.84,12.29,12.57,1102594 +2017-06-23,12.55,12.65,12.36,12.64,685791 +2017-06-26,12.64,12.82,12.55,12.64,605092 +2017-06-27,12.64,12.73,12.53,12.7,466875 +2017-06-28,12.66,12.91,12.6,12.79,753496 +2017-06-29,12.81,12.86,12.7,12.76,389945 +2017-06-30,12.7,12.73,12.59,12.65,365665 +2017-07-03,12.64,12.65,12.47,12.56,387789 +2017-07-04,12.55,12.58,12.41,12.55,366591 +2017-07-05,12.5,12.65,12.47,12.62,264705 +2017-07-06,12.62,12.72,12.51,12.66,374142 +2017-07-07,12.62,12.69,12.55,12.6,246673 +2017-07-10,12.59,12.64,12.52,12.53,264115 +2017-07-11,12.51,12.94,12.51,12.8,968353 +2017-07-12,12.8,13.06,12.74,12.86,804690 +2017-07-13,12.82,13.29,12.77,13.27,1102192 +2017-07-14,13.34,13.8,13.34,13.59,1468654 +2017-07-17,13.62,14.02,13.28,13.76,1786612 +2017-07-18,13.65,13.72,13.4,13.55,698959 +2017-07-19,13.56,13.78,13.48,13.69,661087 +2017-07-20,13.67,13.7,13.53,13.62,400175 +2017-07-21,13.61,13.63,13.38,13.45,522724 +2017-07-24,13.45,13.74,13.36,13.67,658210 +2017-07-25,13.62,13.75,13.41,13.51,584781 +2017-07-26,13.45,13.7,13.36,13.38,574954 +2017-07-27,13.38,13.47,13.28,13.38,336121 +2017-07-28,13.37,13.49,13.3,13.47,249550 +2017-07-31,13.45,13.52,13.31,13.36,450831 +2017-08-01,13.42,13.49,13.32,13.43,641981 +2017-08-02,13.44,13.6,13.39,13.44,616441 +2017-08-03,13.42,13.42,13.04,13.08,785819 +2017-08-04,13.09,13.1,12.85,12.87,631820 +2017-08-07,12.87,12.95,12.83,12.93,295284 +2017-08-08,12.91,12.93,12.83,12.87,235703 +2017-08-09,12.84,12.88,12.75,12.76,323038 +2017-08-10,12.74,12.88,12.7,12.79,440560 +2017-08-11,12.72,12.73,12.46,12.68,888901 +2017-08-14,12.62,12.63,12.52,12.56,455620 +2017-08-15,12.58,12.76,12.56,12.59,625919 +2017-08-16,12.56,12.56,12.47,12.49,338865 +2017-08-17,12.49,12.55,12.47,12.53,390912 +2017-08-18,12.5,12.57,12.46,12.51,359766 +2017-08-21,12.5,12.57,12.46,12.51,338102 +2017-08-22,12.51,12.53,12.41,12.43,588300 +2017-08-23,12.44,12.66,12.41,12.57,968716 +2017-08-24,12.58,12.66,12.45,12.47,621532 +2017-08-25,12.47,12.8,12.47,12.78,1455907 +2017-08-28,12.83,12.96,12.75,12.89,1041132 +2017-08-29,12.85,12.98,12.77,12.96,600640 +2017-08-30,12.91,12.98,12.82,12.87,604800 +2017-08-31,12.83,12.84,12.65,12.71,447903 +2017-09-01,12.68,12.87,12.68,12.77,392641 +2017-09-04,12.78,12.84,12.65,12.78,356674 +2017-09-05,12.78,13.09,12.78,13.03,734930 +2017-09-06,12.99,13.05,12.9,12.96,338236 +2017-09-07,12.94,13.02,12.82,12.85,382248 +2017-09-08,12.85,13.12,12.83,13.03,647781 +2017-09-11,13.15,13.15,12.95,12.99,522347 +2017-09-12,13,13.04,12.91,13.04,510123 +2017-09-13,13.01,13.01,12.86,12.87,319729 +2017-09-14,12.88,12.98,12.81,12.85,241608 +2017-09-15,12.82,12.86,12.75,12.83,248743 +2017-09-18,12.82,12.96,12.8,12.91,357475 +2017-09-19,12.93,12.95,12.82,12.9,301701 +2017-09-20,12.88,12.93,12.83,12.88,198671 +2017-09-21,12.86,12.95,12.83,12.87,201403 +2017-09-22,12.84,12.92,12.79,12.89,241927 +2017-09-25,12.89,12.95,12.71,12.94,506876 +2017-09-26,12.89,12.93,12.85,12.86,221633 +2017-09-27,12.83,12.91,12.76,12.85,263748 +2017-09-28,12.85,12.88,12.77,12.84,241249 +2017-09-29,12.82,12.91,12.81,12.87,198223 +2017-10-09,13.27,13.29,13,13.04,521491 +2017-10-10,13.05,13.1,12.98,13.1,274940 +2017-10-11,13.08,13.11,13.03,13.06,187063 +2017-10-12,13.05,13.09,12.97,13.05,171253 +2017-10-13,13.01,13.08,12.92,12.94,208576 +2017-10-16,12.98,13.06,12.94,13.04,236112 +2017-10-17,13.04,13.06,12.94,12.99,146923 +2017-10-18,12.99,13.1,12.93,13.07,454587 +2017-10-19,13.03,13.16,12.98,13.13,528812 +2017-10-20,13.09,13.1,13.01,13.01,172284 +2017-10-23,13.02,13.03,12.83,12.84,315638 +2017-10-24,12.84,12.95,12.82,12.86,272360 +2017-10-25,12.86,12.94,12.82,12.9,207438 +2017-10-26,12.87,12.88,12.78,12.82,252752 +2017-10-27,12.85,12.94,12.82,12.85,326738 +2017-10-30,12.84,12.84,12.59,12.7,747136 +2017-10-31,12.6,12.66,12.58,12.61,201207 +2017-11-01,12.63,12.72,12.53,12.54,353687 +2017-11-02,12.52,12.57,12.43,12.53,482670 +2017-11-03,12.53,12.6,12.43,12.58,328482 +2017-11-06,12.56,12.56,12.45,12.47,200168 +2017-11-07,12.49,12.6,12.41,12.54,386773 +2017-11-08,12.54,12.68,12.49,12.58,371341 +2017-11-09,12.57,12.63,12.53,12.55,174634 +2017-11-10,12.54,12.63,12.46,12.63,499254 +2017-11-13,12.65,12.85,12.63,12.8,780093 +2017-11-14,12.76,12.77,12.58,12.6,337549 +2017-11-15,12.6,12.63,12.55,12.6,280765 +2017-11-16,12.57,12.57,12.38,12.39,356808 +2017-11-17,12.38,12.8,12.38,12.78,1093365 +2017-11-20,12.7,12.86,12.61,12.85,614954 +2017-11-21,12.81,13.17,12.75,12.94,1161794 +2017-11-22,13,13.44,13,13.23,1145763 +2017-11-23,13.24,13.32,12.91,13.06,819126 +2017-11-24,13.11,13.18,12.93,13.09,596125 +2017-11-27,13.09,13.12,12.81,13.1,792503 +2017-11-28,13.03,13.07,12.92,12.94,340319 +2017-11-29,12.95,13.04,12.81,12.94,418468 +2017-11-30,12.91,12.95,12.8,12.91,399164 +2017-12-01,12.93,12.95,12.81,12.91,385774 +2017-12-04,12.87,12.94,12.84,12.92,364792 +2017-12-05,12.92,13.27,12.91,13.17,1237968 +2017-12-06,13.12,13.16,12.91,12.96,435649 +2017-12-07,12.95,13.03,12.91,12.96,348022 +2017-12-08,12.98,12.99,12.87,12.93,312962 +2017-12-11,12.92,13.04,12.85,12.97,366499 +2017-12-12,12.97,12.97,12.74,12.75,303701 +2017-12-13,12.8,12.81,12.63,12.74,193453 +2017-12-14,12.79,12.79,12.66,12.69,161417 +2017-12-15,12.69,12.73,12.61,12.62,162101 +2017-12-18,12.71,12.71,12.61,12.65,134456 +2017-12-19,12.65,12.76,12.62,12.75,183996 +2017-12-20,12.76,12.76,12.6,12.73,266398 +2017-12-21,12.67,12.78,12.6,12.7,210524 +2017-12-22,12.68,12.72,12.61,12.62,160769 +2017-12-25,12.61,12.68,12.56,12.59,193067 +2017-12-26,12.57,12.66,12.56,12.64,152257 +2017-12-27,12.65,12.66,12.53,12.62,327319 +2017-12-28,12.6,12.66,12.53,12.54,238708 +2017-12-29,12.52,12.62,12.51,12.59,163518 +2018-01-02,12.61,12.77,12.6,12.72,313231 +2018-01-03,12.73,12.8,12.66,12.66,378391 +2018-01-04,12.7,12.73,12.62,12.66,278838 +2018-01-05,12.67,12.71,12.62,12.69,310267 +2018-01-08,12.69,12.71,12.63,12.68,313899 +2018-01-09,12.68,12.74,12.66,12.7,262154 +2018-01-10,12.7,13.09,12.68,13.02,906800 +2018-01-11,12.95,13.04,12.87,12.94,378164 +2018-01-12,12.97,13,12.9,12.91,242034 +2018-01-15,12.88,13.08,12.85,13.02,613207 +2018-01-16,12.97,13.06,12.78,12.9,748927 +2018-01-17,12.91,13.42,12.89,13.1,1271328 +2018-01-18,13.14,13.25,13.05,13.24,1116081 +2018-01-19,13.33,13.61,13.18,13.24,1716489 +2018-01-22,12.93,13.15,12.71,12.77,2725138 +2018-01-23,12.75,12.92,12.68,12.9,2178275 +2018-01-24,12.97,14,12.89,13.57,3796536 +2018-01-25,13.54,13.76,13.36,13.65,1769896 +2018-01-26,13.65,13.72,13.36,13.41,2184197 +2018-01-29,13.48,13.53,13.32,13.46,1537831 +2018-01-30,13.45,13.49,13.09,13.11,1078040 +2018-01-31,13.05,13.19,12.98,13.17,1177033 +2018-02-01,13.14,13.33,12.94,13.3,1735733 +2018-02-02,13.19,13.19,13.01,13.14,717968 +2018-02-05,13,13.54,12.98,13.49,1501497 +2018-02-06,13.29,13.5,13.2,13.48,2443590 +2018-02-07,13.58,13.9,13.24,13.45,2007701 +2018-02-08,13.34,13.4,12.95,13.1,1094269 +2018-02-09,12.89,12.98,12.24,12.78,1492574 +2018-02-12,12.66,12.68,12.43,12.49,647992 +2018-02-13,12.55,12.68,12.5,12.51,549002 +2018-02-14,12.5,12.55,12.38,12.46,325978 +2018-02-22,12.6,12.68,12.53,12.63,420123 +2018-02-23,12.66,12.78,12.59,12.72,387365 +2018-02-26,12.77,12.84,12.61,12.73,488061 +2018-02-27,12.75,12.76,12.61,12.69,485611 +2018-02-28,12.61,12.66,12.44,12.46,398889 +2018-03-01,12.4,12.5,12.38,12.47,344910 +2018-03-02,12.4,12.46,12.36,12.41,230241 +2018-03-05,12.41,12.48,12.34,12.42,293435 +2018-03-06,12.48,12.51,12.38,12.49,272227 +2018-03-07,12.51,12.6,12.46,12.49,388176 +2018-03-08,12.55,12.55,12.4,12.47,221641 +2018-03-09,12.49,12.51,12.42,12.48,235583 +2018-03-12,12.53,12.54,12.46,12.5,251618 +2018-03-13,12.5,12.58,12.43,12.49,251450 +2018-03-14,12.45,12.45,12.38,12.39,228046 +2018-03-15,12.35,12.41,12.34,12.39,172878 +2018-03-16,12.36,12.4,12.3,12.3,267814 +2018-03-19,12.31,12.33,12.26,12.31,168960 +2018-03-20,12.28,12.39,12.25,12.32,206723 +2018-03-21,12.34,12.4,12.28,12.29,238785 +2018-03-22,12.35,12.35,12.25,12.25,229485 +2018-03-23,12,12.06,11.64,11.71,571064 +2018-03-26,11.71,11.75,11.5,11.61,364251 +2018-03-27,11.7,11.77,11.56,11.62,273328 +2018-03-28,11.53,11.75,11.52,11.57,229113 +2018-03-29,11.57,11.71,11.45,11.62,331088 +2018-03-30,11.63,11.69,11.61,11.65,232720 +2018-04-02,11.68,11.82,11.65,11.71,277196 +2018-04-03,11.66,11.67,11.54,11.56,183035 +2018-04-04,11.61,11.65,11.53,11.53,196375 +2018-04-09,11.53,11.59,11.49,11.5,167225 +2018-04-10,11.52,11.79,11.51,11.77,287483 +2018-04-11,11.79,12.02,11.75,11.91,312985 +2018-04-12,11.91,11.96,11.76,11.78,188243 +2018-04-13,11.83,11.89,11.69,11.69,140949 +2018-04-16,11.8,11.8,11.54,11.55,237201 +2018-04-17,11.56,11.7,11.55,11.55,254700 +2018-04-18,11.75,11.79,11.66,11.73,262953 +2018-04-19,11.8,11.89,11.76,11.8,165533 +2018-04-20,11.74,11.79,11.57,11.61,183774 +2018-04-23,11.56,11.75,11.53,11.6,181816 +2018-04-24,11.56,11.78,11.56,11.78,230329 +2018-04-25,11.71,11.77,11.65,11.66,160826 +2018-04-26,11.73,11.78,11.55,11.57,182058 +2018-04-27,11.58,11.67,11.55,11.61,234508 +2018-05-02,11.33,11.33,10.97,11.03,693257 +2018-05-03,10.99,11.01,10.83,10.92,346656 +2018-05-04,10.91,10.94,10.8,10.83,222531 +2018-05-07,10.82,10.89,10.76,10.84,274254 +2018-05-08,10.84,10.97,10.81,10.95,287965 +2018-05-09,10.95,11,10.89,10.93,185106 +2018-05-10,10.98,11,10.91,10.95,160305 +2018-05-11,11,11.01,10.94,10.95,220151 +2018-05-14,10.97,11.05,10.96,11,237633 +2018-05-15,11.03,11.05,10.88,10.99,235485 +2018-05-16,10.93,10.96,10.86,10.87,235803 +2018-05-17,10.86,10.91,10.81,10.83,184747 +2018-05-18,10.85,10.9,10.81,10.9,217171 +2018-05-21,10.98,10.98,10.9,10.94,233937 +2018-05-22,10.94,10.95,10.85,10.88,160145 +2018-05-23,10.88,10.89,10.79,10.8,211945 +2018-05-24,10.83,10.84,10.76,10.79,152296 +2018-05-25,10.83,10.83,10.68,10.71,190162 +2018-05-28,10.71,10.79,10.61,10.76,183703 +2018-05-29,10.7,10.74,10.61,10.64,169340 +2018-05-30,10.56,10.6,10.39,10.44,322308 +2018-05-31,10.46,10.69,10.46,10.55,455327 +2018-06-01,10.6,10.69,10.53,10.68,183655 +2018-06-04,10.76,10.83,10.7,10.75,161803 +2018-06-05,10.71,10.75,10.61,10.66,186926 +2018-06-06,10.64,10.64,10.53,10.55,149836 +2018-06-07,10.56,10.66,10.51,10.62,233556 +2018-06-08,10.55,10.57,10.37,10.42,271820 +2018-06-11,10.38,10.43,10.28,10.42,180043 +2018-06-12,10.41,10.41,10.3,10.35,160857 +2018-06-13,10.3,10.33,10.18,10.21,199616 +2018-06-14,10.16,10.26,10.16,10.22,175575 +2018-06-15,10.22,10.34,10.19,10.3,199150 +2018-06-19,10.23,10.24,9.81,9.92,429885 +2018-06-20,9.92,9.98,9.87,9.89,189157 +2018-06-21,9.88,9.98,9.75,9.83,236370 +2018-06-22,9.83,9.83,9.67,9.76,250400 +2018-06-25,9.77,9.82,9.55,9.56,242444 +2018-06-26,9.6,9.6,9.35,9.48,244241 +2018-06-27,9.41,9.53,9.36,9.37,249138 +2018-06-28,9.33,9.61,9.32,9.5,307413 +2018-06-29,9.56,9.6,9.45,9.56,194935 +2018-07-02,9.55,9.55,9.23,9.29,226691 +2018-07-03,9.29,9.38,9.2,9.35,241236 +2018-07-04,9.34,9.42,9.28,9.31,144648 +2018-07-05,9.26,9.35,9.22,9.26,164954 +2018-07-06,9.31,9.43,9.17,9.37,225944 +2018-07-09,9.37,9.63,9.37,9.6,221726 +2018-07-10,9.61,9.65,9.5,9.57,124028 +2018-07-11,9.37,9.44,9.32,9.38,152039 +2018-07-12,9.41,9.61,9.39,9.57,197048 +2018-07-13,9.57,9.58,9.46,9.49,150263 +2018-07-16,9.5,9.54,9.34,9.41,144141 +2018-07-17,9.41,9.48,9.38,9.44,137135 +2018-07-18,9.51,9.64,9.48,9.51,189227 +2018-07-19,9.6,9.62,9.53,9.56,183605 +2018-07-20,9.56,9.95,9.47,9.87,332757 +2018-07-23,9.91,10.03,9.74,9.96,314844 +2018-07-24,9.98,10.14,9.97,10.02,364246 +2018-07-25,10.12,10.12,9.96,10.02,158900 +2018-07-26,10.07,10.08,9.95,9.96,152063 +2018-07-27,9.96,10.04,9.93,9.99,121201 +2018-07-30,9.99,10.16,9.97,10.13,200964 +2018-07-31,10.12,10.2,10,10.17,182030 +2018-08-01,10.26,10.27,9.9,9.91,207419 +2018-08-02,9.91,10.03,9.66,9.79,244839 +2018-08-03,9.79,9.98,9.76,9.83,169979 +2018-08-06,9.97,10.03,9.87,9.91,174445 +2018-08-07,9.94,10.12,9.94,10.11,217847 +2018-08-08,10.15,10.15,10.01,10.05,134620 +2018-08-09,10,10.18,9.99,10.14,176899 +2018-08-10,10.14,10.14,10.02,10.07,131726 +2018-08-13,10,10.06,9.9,9.98,179277 +2018-08-14,9.98,10.07,9.95,10.06,158686 +2018-08-15,10.06,10.06,9.9,9.9,147870 +2018-08-16,9.87,10.12,9.84,10.06,243237 +2018-08-17,10.16,10.16,9.93,9.98,150905 +2018-08-20,10.17,10.17,10.01,10.15,269753 +2018-08-21,10.18,10.2,10.09,10.12,197865 +2018-08-22,10.12,10.14,10,10.09,119935 +2018-08-23,10.13,10.14,9.98,10.07,155378 +2018-08-24,10.06,10.43,10.02,10.3,322688 +2018-08-27,10.33,10.35,10.21,10.33,232666 +2018-08-28,10.3,10.38,10.25,10.3,146097 +2018-08-29,10.29,10.32,10.26,10.32,103620 +2018-08-30,10.3,10.41,10.17,10.17,186219 +2018-08-31,10.16,10.36,10.16,10.33,373117 +2018-09-03,10.27,10.3,10.17,10.24,143095 +2018-09-04,10.21,10.4,10.18,10.37,163531 +2018-09-05,10.31,10.37,10.12,10.12,227292 +2018-09-06,10.12,10.23,10.12,10.14,105469 +2018-09-07,10.15,10.25,10.12,10.19,89957 +2018-09-10,10.16,10.23,10.13,10.18,118228 +2018-09-11,10.22,10.27,9.98,10.02,196890 +2018-09-12,9.99,10.07,9.95,10.04,165061 +2018-09-13,10.17,10.3,10.11,10.29,294172 +2018-09-14,10.36,10.36,10.21,10.26,164508 +2018-09-17,10.26,10.28,10.1,10.15,105353 +2018-09-18,10.16,10.26,10.09,10.26,166848 +2018-09-19,10.28,10.29,10.2,10.24,185506 +2018-09-20,10.26,10.28,10.18,10.22,163071 +2018-09-21,10.24,10.49,10.15,10.49,375714 +2018-09-25,10.38,10.47,10.32,10.35,158792 +2018-09-26,10.39,10.56,10.34,10.41,311758 +2018-09-27,10.45,10.48,10.38,10.48,241827 +2018-09-28,10.49,10.75,10.44,10.62,374306 +2018-10-08,10.39,10.48,10.15,10.16,419573 +2018-10-09,10.08,10.24,10.07,10.15,231590 +2018-10-10,10.14,10.28,10.13,10.17,181247 +2018-10-11,10,10.05,9.71,9.8,390568 +2018-10-12,9.9,10.1,9.83,10.03,251451 +2018-10-15,10.05,10.16,9.97,10.03,139578 +2018-10-16,10.03,10.19,9.97,10.05,153083 +2018-10-17,10.18,10.31,10.14,10.29,265209 +2018-10-18,10.35,10.35,10.16,10.19,224040 +2018-10-19,10.25,10.43,10.07,10.38,403314 +2018-10-22,10.32,10.7,10.32,10.62,470034 +2018-10-23,10.64,10.7,10.45,10.45,380890 +2018-10-24,10.57,11.05,10.52,10.74,591656 +2018-10-25,10.6,10.89,10.54,10.84,368666 +2018-10-26,10.85,10.98,10.74,10.92,275193 +2018-10-29,11.08,11.12,10.71,10.79,352660 +2018-10-30,10.93,11.05,10.89,10.95,330860 +2018-10-31,10.99,11.03,10.87,10.98,217371 +2018-11-01,11.05,11.09,10.86,10.89,235053 +2018-11-02,11.1,11.25,10.94,11.18,477889 +2018-11-05,11.15,11.25,11.08,11.14,170128 +2018-11-06,11.13,11.15,11,11.03,184225 +2018-11-07,11.09,11.1,10.87,10.9,208439 +2018-11-08,11.05,11.1,10.9,11.06,199917 +2018-11-09,10.99,11.03,10.7,10.75,255701 +2018-11-12,10.77,10.95,10.75,10.8,270158 +2018-11-13,10.68,10.9,10.68,10.82,207087 +2018-11-14,10.87,10.87,10.68,10.7,179982 +2018-11-15,10.72,10.81,10.65,10.77,165801 +2018-11-16,10.77,10.85,10.71,10.76,213944 +2018-11-19,10.86,10.9,10.77,10.88,213848 +2018-11-20,10.87,10.89,10.65,10.69,218838 +2018-11-21,10.61,10.72,10.61,10.66,160275 +2018-11-22,10.73,10.73,10.57,10.64,140083 +2018-11-23,10.6,10.66,10.5,10.5,147150 +2018-11-26,10.66,10.66,10.43,10.5,143774 +2018-11-27,10.5,10.61,10.45,10.49,150847 +2018-11-28,10.56,10.62,10.5,10.58,183396 +2018-11-29,10.64,10.75,10.54,10.63,206857 +2018-11-30,10.65,10.75,10.62,10.71,285727 +2018-12-03,10.99,11.05,10.84,11.02,430491 +2018-12-04,11,11.08,10.97,11.08,208113 +2018-12-05,10.99,11.1,10.96,11,254912 +2018-12-06,10.82,10.93,10.82,10.9,235980 +2018-12-07,10.94,11.03,10.88,10.89,105806 +2018-12-10,10.77,10.9,10.77,10.83,159276 +2018-12-11,10.84,10.9,10.69,10.72,172342 +2018-12-12,10.89,10.89,10.7,10.73,124488 +2018-12-13,10.76,10.86,10.73,10.8,197923 +2018-12-14,10.74,10.8,10.59,10.62,241638 +2018-12-17,10.65,10.78,10.62,10.78,197462 +2018-12-18,10.68,10.82,10.54,10.57,194517 +2018-12-19,10.59,10.65,10.54,10.54,136036 +2018-12-20,10.53,10.59,10.11,10.25,300699 +2018-12-21,10.23,10.24,10,10.07,208859 +2018-12-24,9.98,10.04,9.86,9.91,227799 +2018-12-25,9.77,9.86,9.6,9.79,348104 +2018-12-26,9.81,9.88,9.64,9.67,205692 +2018-12-27,9.77,9.8,9.66,9.66,273476 +2018-12-28,9.72,9.95,9.71,9.8,274040 +2019-01-02,9.74,9.79,9.58,9.7,237628 +2019-01-03,9.7,9.82,9.66,9.81,186543 +2019-01-04,9.73,10,9.7,9.96,271728 +2019-01-07,10.09,10.09,9.92,9.98,235974 +2019-01-08,10.03,10.03,9.91,9.96,151049 +2019-01-09,10.06,10.16,9.98,9.99,231637 +2019-01-10,9.94,10.02,9.92,9.96,159236 +2019-01-11,10.03,10.15,9.96,10.05,190691 +2019-01-14,10.03,10.1,10.01,10.06,203528 +2019-01-15,10.1,10.15,10.05,10.11,156321 +2019-01-16,10.1,10.15,10.07,10.13,129883 +2019-01-17,10.17,10.28,10.07,10.17,227660 +2019-01-18,10.29,10.44,10.22,10.43,290871 +2019-01-21,10.36,10.46,10.3,10.35,189478 +2019-01-22,10.38,10.38,10.23,10.25,162506 +2019-01-23,10.29,10.34,10.25,10.27,165203 +2019-01-24,10.34,10.39,10.27,10.38,150067 +2019-01-25,10.45,10.56,10.38,10.5,196966 +2019-01-28,10.53,10.66,10.39,10.42,217691 +2019-01-29,10.39,10.63,10.38,10.58,237680 +2019-01-30,10.59,10.64,10.47,10.5,160543 +2019-01-31,10.59,10.73,10.51,10.73,251310 +2019-02-01,10.82,10.82,10.62,10.77,191193 +2019-02-11,10.62,10.73,10.62,10.7,202166 +2019-02-12,10.71,10.73,10.63,10.72,167696 +2019-02-13,10.74,10.93,10.68,10.86,302487 +2019-02-14,10.85,10.91,10.8,10.82,198153 +2019-02-15,10.78,10.85,10.66,10.66,177588 +2019-02-18,10.75,10.87,10.7,10.84,201022 +2019-02-19,10.85,10.96,10.78,10.8,259527 +2019-02-20,10.92,10.92,10.81,10.83,222863 +2019-02-21,10.83,10.93,10.75,10.79,254024 +2019-02-22,10.76,11.01,10.76,11.01,259074 +2019-02-25,11.03,11.95,11.03,11.92,937123 +2019-02-26,11.91,12.15,11.6,11.65,836433 +2019-02-27,11.71,12.07,11.67,11.83,712016 +2019-02-28,11.83,11.92,11.68,11.74,393934 +2019-03-01,11.81,12.06,11.6,12.02,632546 +2019-03-04,12.12,12.38,11.95,12.02,850248 +2019-03-05,12.01,12.04,11.87,11.98,545642 +2019-03-06,11.99,12.15,11.86,12.02,536932 +2019-03-07,12.03,12.04,11.87,11.88,526188 +2019-03-08,11.72,11.72,11.36,11.5,526705 +2019-03-11,11.44,11.59,11.36,11.47,399220 +2019-03-12,11.59,11.69,11.4,11.44,522118 +2019-03-13,11.41,11.56,11.3,11.44,413730 +2019-03-14,11.46,11.58,11.43,11.46,343379 +2019-03-15,11.47,11.6,11.43,11.43,337693 +2019-03-18,11.45,11.6,11.37,11.59,438796 +2019-03-19,11.63,11.67,11.51,11.55,275002 +2019-03-20,11.52,11.64,11.49,11.55,273254 +2019-03-21,11.56,11.59,11.44,11.46,350370 +2019-03-22,11.49,11.51,11.31,11.39,354364 +2019-03-25,11.28,11.29,11.01,11.03,577166 +2019-03-26,11.11,11.14,11.03,11.09,307957 +2019-03-27,11.11,11.24,11.04,11.08,421245 +2019-03-28,11.03,11.05,10.9,11.03,292961 +2019-03-29,10.98,11.3,10.98,11.28,605263 +2019-04-01,11.36,11.52,11.29,11.44,706374 +2019-04-02,11.5,11.52,11.41,11.44,467147 +2019-04-03,11.37,11.54,11.34,11.5,502710 +2019-04-04,11.55,11.71,11.54,11.71,752325 +2019-04-08,11.79,11.96,11.65,11.72,778704 +2019-04-09,11.72,11.75,11.49,11.54,568960 +2019-04-10,11.5,11.56,11.42,11.48,410275 +2019-04-11,11.47,11.59,11.35,11.47,501728 +2019-04-12,11.47,11.56,11.43,11.49,262737 +2019-04-15,11.67,11.77,11.46,11.47,705092 +2019-04-16,11.46,11.99,11.43,11.95,1006654 +2019-04-17,11.96,12.09,11.88,11.91,681572 +2019-04-18,11.91,12.05,11.84,11.91,430490 +2019-04-19,12.01,12.2,11.86,12.01,560130 +2019-04-22,12.02,12.07,11.68,11.71,533894 +2019-04-23,11.68,11.8,11.63,11.7,338477 +2019-04-24,11.76,11.77,11.51,11.62,382011 +2019-04-25,11.56,11.69,11.48,11.54,408761 +2019-04-26,11.43,11.56,11.28,11.32,424696 +2019-04-29,11.35,11.54,11.34,11.48,385869 +2019-04-30,11.7,12.09,11.7,11.97,1234747 +2019-05-06,11.75,11.86,11.54,11.8,1245454 +2019-05-07,11.82,11.94,11.6,11.8,854899 +2019-05-08,11.64,11.78,11.49,11.51,585001 +2019-05-09,11.48,11.56,11.1,11.12,641280 +2019-05-10,11.23,11.42,11.06,11.32,485507 +2019-05-13,11.2,11.4,11.15,11.31,402850 +2019-05-14,11.18,11.44,11.17,11.21,418890 +2019-05-15,11.28,11.42,11.23,11.32,344045 +2019-05-16,11.28,11.36,11.22,11.3,341418 +2019-05-17,11.32,11.35,11.2,11.24,383998 +2019-05-20,11.28,11.44,11.25,11.34,349044 +2019-05-21,11.33,11.45,11.31,11.32,329759 +2019-05-22,11.32,11.34,11.12,11.16,400004 +2019-05-23,11.12,11.15,10.95,11.1,363127 +2019-05-24,11.17,11.22,11,11.11,241603 +2019-05-27,11.09,11.26,10.96,11.22,350879 +2019-05-28,11.19,11.3,11.02,11.29,722781 +2019-05-29,11.17,11.29,11.07,11.12,408610 +2019-05-30,11.18,11.18,11.03,11.11,266500 +2019-05-31,11.11,11.23,11.05,11.13,369767 +2019-06-03,11.17,11.29,11.13,11.28,304921 +2019-06-04,11.29,11.37,11.26,11.35,250774 +2019-06-05,11.43,11.52,11.35,11.41,314236 +2019-06-06,11.51,11.51,11.38,11.47,264272 +2019-06-10,11.57,11.7,11.53,11.61,431838 +2019-06-11,11.35,11.45,11.27,11.42,522662 +2019-06-12,11.42,11.7,11.4,11.6,506352 +2019-06-13,11.57,11.79,11.5,11.7,469660 +2019-06-14,11.74,11.87,11.71,11.79,473852 +2019-06-17,11.78,11.92,11.75,11.77,352201 +2019-06-18,11.82,11.9,11.72,11.82,289651 +2019-06-19,12.04,12.07,11.81,11.88,449277 +2019-06-20,11.95,12.32,11.85,12.2,716475 +2019-06-21,12.18,12.3,12.03,12.09,553812 +2019-06-24,12.09,12.13,11.96,12.03,341953 +2019-06-25,11.98,11.98,11.51,11.66,803594 +2019-06-26,11.56,11.73,11.55,11.66,369732 +2019-06-27,11.68,11.84,11.55,11.64,479978 +2019-06-28,11.67,11.68,11.54,11.68,295452 +2019-07-01,11.86,11.92,11.69,11.71,548879 +2019-07-02,11.72,11.74,11.57,11.61,511657 +2019-07-03,11.62,11.63,11.51,11.56,365671 +2019-07-04,11.61,11.67,11.57,11.62,303692 +2019-07-05,11.63,11.64,11.53,11.57,257532 +2019-07-08,11.56,11.57,11.31,11.36,347107 +2019-07-09,11.4,11.43,11.33,11.37,218854 +2019-07-10,11.43,11.43,11.31,11.35,234099 +2019-07-11,11.43,11.46,11.34,11.4,232858 +2019-07-12,11.39,11.62,11.39,11.52,348170 +2019-07-15,11.4,11.54,11.22,11.5,403056 +2019-07-16,11.5,11.57,11.44,11.55,216060 +2019-07-17,11.49,11.57,11.46,11.48,174804 +2019-07-18,11.53,11.53,11.45,11.49,182600 +2019-07-19,11.51,11.63,11.49,11.58,196196 +2019-07-22,11.54,11.63,11.47,11.48,256179 +2019-07-23,11.43,11.56,11.43,11.49,179279 +2019-07-24,11.54,11.68,11.53,11.59,241123 +2019-07-25,11.57,11.96,11.57,11.88,559002 +2019-07-26,11.83,11.94,11.81,11.87,303690 +2019-07-29,11.9,11.94,11.8,11.86,214650 +2019-07-30,11.84,12,11.84,11.86,337310 +2019-07-31,11.81,11.94,11.73,11.87,306508 +2019-08-01,11.76,11.85,11.63,11.65,324717 +2019-08-02,11.48,11.56,11.41,11.48,389761 +2019-08-05,11.42,11.46,11.23,11.24,427191 +2019-08-06,11.1,11.23,10.97,11.09,452039 +2019-08-07,11.14,11.16,11.05,11.07,314621 +2019-08-08,11.15,11.31,11.11,11.26,332581 +2019-08-09,11.31,11.41,11.26,11.37,406380 +2019-08-12,11.33,11.45,11.31,11.43,349891 +2019-08-13,11.4,11.4,11.29,11.33,188400 +2019-08-14,11.42,11.48,11.28,11.28,198745 +2019-08-15,11.16,11.32,11.12,11.29,191012 +2019-08-16,11.25,11.34,11.21,11.22,248236 +2019-08-19,11.22,11.38,11.08,11.38,382533 +2019-08-20,11.3,11.47,11.28,11.37,237581 +2019-08-21,11.35,11.44,11.34,11.41,146565 +2019-08-22,11.43,11.45,11.37,11.43,158668 +2019-08-23,11.39,11.59,11.38,11.59,336554 +2019-08-26,11.39,11.44,11.15,11.3,418452 +2019-08-27,11.37,11.57,11.3,11.3,662475 +2019-08-28,11.37,11.4,11.3,11.32,255256 +2019-08-29,11.3,11.35,11.18,11.23,280496 +2019-08-30,11.34,11.37,11.22,11.28,254240 +2019-09-02,11.3,11.42,11.24,11.34,277499 +2019-09-03,11.39,11.41,11.31,11.35,162866 +2019-09-04,11.4,11.5,11.36,11.49,306710 +2019-09-05,11.5,11.74,11.5,11.62,468280 +2019-09-06,11.68,11.7,11.58,11.69,343921 +2019-09-09,11.78,11.79,11.68,11.75,400594 +2019-09-10,11.79,11.86,11.69,11.85,370411 +2019-09-11,11.85,12,11.85,11.95,390637 +2019-09-12,12.08,12.09,11.92,12,261048 +2019-09-16,11.99,12.01,11.83,11.93,254891 +2019-09-17,11.96,12.01,11.77,11.81,335589 +2019-09-18,11.94,12,11.87,11.93,313873 +2019-09-19,12,12,11.88,11.94,237422 +2019-09-20,11.99,11.99,11.85,11.95,401093 +2019-09-23,11.9,11.92,11.68,11.75,277108 +2019-09-24,11.81,11.86,11.73,11.75,218710 +2019-09-25,11.75,11.95,11.69,11.81,301364 +2019-09-26,11.88,12.18,11.84,11.97,727265 +2019-09-27,11.95,11.99,11.76,11.9,368079 +2019-09-30,11.85,12.07,11.81,11.84,359476 +2019-10-08,11.8,12.03,11.8,11.9,324159 +2019-10-09,11.82,12.13,11.8,11.99,422096 +2019-10-10,12.02,12.04,11.91,11.96,272612 +2019-10-11,12.05,12.45,12,12.45,920308 +2019-10-14,12.59,13.22,12.52,12.94,1239701 +2019-10-15,12.95,13.14,12.86,13.09,733946 +2019-10-16,13.08,13.33,12.9,13.08,670022 +2019-10-17,13.07,13.25,13.03,13.17,478693 +2019-10-18,13.24,13.29,12.72,12.78,649929 +2019-10-21,12.8,13.03,12.75,12.91,389963 +2019-10-22,13.03,13.05,12.77,12.93,313963 +2019-10-23,12.89,12.95,12.77,12.86,328214 +2019-10-24,12.98,13.24,12.95,13.09,1031588 +2019-10-25,13.09,13.09,12.78,12.9,978764 +2019-10-28,12.75,12.88,12.65,12.7,723805 +2019-10-29,12.74,12.85,12.62,12.77,526041 +2019-10-30,12.75,12.79,12.52,12.59,537347 +2019-10-31,12.68,12.7,12.5,12.51,333475 +2019-11-01,12.5,12.83,12.44,12.75,627057 +2019-11-04,12.75,12.89,12.69,12.74,497380 +2019-11-05,12.74,13.19,12.69,12.95,742744 +2019-11-06,12.95,13.1,12.86,12.92,460239 +2019-11-07,12.95,12.95,12.71,12.76,462673 +2019-11-08,12.8,12.81,12.56,12.57,488419 +2019-11-11,12.48,12.48,12.29,12.29,385943 +2019-11-12,12.31,12.36,12.17,12.24,392394 +2019-11-13,12.21,12.29,12.15,12.23,322750 +2019-11-14,12.23,12.27,12.1,12.14,289436 +2019-11-15,12.22,12.26,12.12,12.15,273243 +2019-11-18,12.17,12.35,12.13,12.24,287965 +2019-11-19,12.2,12.31,12.18,12.23,293708 +2019-11-20,12.17,12.22,12.01,12.04,380921 +2019-11-21,12,12.04,11.91,11.96,346172 +2019-11-22,12.01,12.06,11.94,11.99,295311 +2019-11-25,12.03,12.14,12,12.07,251533 +2019-11-26,12.15,12.17,11.98,12.06,596333 +2019-11-27,12.07,12.07,11.9,11.99,287040 +2019-11-28,12,12.01,11.92,11.96,177972 +2019-11-29,11.93,12.07,11.89,11.91,245669 +2019-12-02,11.96,11.97,11.82,11.87,221630 +2019-12-03,11.81,11.9,11.77,11.86,195579 +2019-12-04,11.78,11.83,11.7,11.75,247347 +2019-12-05,11.79,11.89,11.76,11.89,249761 +2019-12-06,11.92,11.95,11.83,11.92,206544 +2019-12-09,11.9,11.93,11.85,11.9,173493 +2019-12-10,11.88,11.91,11.86,11.86,153246 +2019-12-11,11.88,11.99,11.85,11.98,334090 +2019-12-12,11.99,11.99,11.88,11.9,270212 +2019-12-13,11.98,12.12,11.94,12.12,595206 +2019-12-16,12.12,12.15,12,12.13,379716 +2019-12-17,12.17,12.51,12.1,12.39,574356 +2019-12-18,12.36,12.5,12.34,12.4,345653 +2019-12-19,12.4,12.5,12.38,12.41,237899 +2019-12-20,12.41,12.55,12.38,12.42,401501 +2019-12-23,12.46,12.46,12.17,12.2,370339 +2019-12-24,12.21,12.29,12.2,12.28,216710 +2019-12-25,12.29,12.29,12.2,12.24,136782 +2019-12-26,12.26,12.32,12.23,12.29,157391 +2019-12-27,12.25,12.43,12.25,12.32,279321 +2019-12-30,12.27,12.36,12.12,12.34,410516 +2019-12-31,12.32,12.38,12.21,12.37,319536 +2020-01-02,12.47,12.64,12.45,12.47,516291 +2020-01-03,12.57,12.63,12.47,12.6,380188 +2020-01-06,12.52,12.65,12.42,12.46,410012 +2020-01-07,12.51,12.6,12.46,12.5,284215 +2020-01-08,12.41,12.45,12.25,12.32,352405 +2020-01-09,12.39,12.43,12.35,12.37,261514 +2020-01-10,12.37,12.42,12.31,12.39,183213 +2020-01-13,12.4,12.41,12.31,12.41,207156 +2020-01-14,12.4,12.69,12.39,12.43,299946 +2020-01-15,12.41,12.45,12.25,12.25,318972 +2020-01-16,12.28,12.31,12.16,12.2,224549 +2020-01-17,12.22,12.29,12.16,12.23,175931 +2020-01-20,12.26,12.27,12.19,12.25,237346 +2020-01-21,12.2,12.25,12.04,12.08,317875 +2020-01-22,11.7,11.84,11.65,11.77,781336 +2020-01-23,11.75,11.75,11.32,11.35,765348 +2020-02-03,10.22,10.69,10.22,10.47,953674 +2020-02-04,10.51,10.74,10.48,10.66,667838 +2020-02-05,10.69,10.78,10.58,10.7,450467 +2020-02-06,10.81,10.86,10.65,10.79,380238 +2020-02-07,10.73,10.91,10.67,10.86,318970 +2020-02-10,10.76,10.84,10.71,10.77,340321 +2020-02-11,10.82,10.95,10.78,10.86,348563 +2020-02-12,10.84,10.88,10.76,10.86,263139 +2020-02-13,10.82,10.88,10.76,10.76,226306 +2020-02-14,10.76,10.88,10.74,10.86,223605 +2020-02-17,10.88,11.21,10.86,11.18,413433 +2020-02-18,11.09,11.18,11.04,11.06,301627 +2020-02-19,11.08,11.24,11.04,11.11,251002 +2020-02-20,11.17,11.27,11.06,11.23,366564 +2020-02-21,11.23,11.39,11.21,11.3,389494 +2020-02-24,11.23,11.34,11.1,11.16,447386 +2020-02-25,11.07,11.15,11.01,11.09,483246 +2020-02-26,11.01,11.33,11.01,11.2,519063 +2020-02-27,11.2,11.3,11.13,11.21,330298 +2020-02-28,11.11,11.18,10.85,10.85,501380 +2020-03-02,10.95,11.1,10.92,11.04,392451 +2020-03-03,11.13,11.23,11.04,11.06,393325 +2020-03-04,11.01,11.1,10.95,11.03,346284 +2020-03-05,11.08,11.32,11.03,11.32,730479 +2020-03-06,11.23,11.28,11.11,11.12,415878 +2020-03-09,11,11,10.75,10.78,594952 +2020-03-10,10.71,10.96,10.7,10.87,447617 +2020-03-11,10.93,10.93,10.77,10.77,316888 +2020-03-12,10.75,10.75,10.61,10.64,326324 +2020-03-13,10.4,10.73,10.28,10.7,574571 +2020-03-16,10.7,10.78,10.5,10.51,476499 +2020-03-17,10.68,10.69,10.29,10.43,421390 +2020-03-18,10.4,10.5,10.2,10.21,331766 +2020-03-19,10.19,10.34,9.86,9.94,557071 +2020-03-20,10.12,10.18,9.96,10.09,426094 +2020-03-23,9.95,9.95,9.82,9.84,282860 +2020-03-24,10.03,10.13,9.98,10.06,289908 +2020-03-25,10.2,10.27,10.12,10.15,321723 +2020-03-26,10.1,10.37,10.08,10.23,309218 +2020-03-27,10.35,10.38,10.2,10.24,271080 +2020-03-30,10.18,10.28,10.11,10.28,260460 +2020-03-31,10.3,10.36,10.13,10.15,261449 +2020-04-01,10.11,10.26,10.09,10.09,224792 +2020-04-02,10.09,10.2,10.07,10.2,170421 +2020-04-03,10.13,10.21,10.12,10.15,148424 +2020-04-07,10.3,10.33,10.23,10.28,238256 +2020-04-08,10.25,10.29,10.18,10.24,179523 +2020-04-09,10.26,10.29,10.18,10.2,135696 +2020-04-10,10.22,10.24,10.15,10.21,166255 +2020-04-13,10.15,10.22,10.1,10.11,119670 +2020-04-14,10.17,10.25,10.12,10.25,177929 +2020-04-15,10.2,10.27,10.15,10.18,149456 +2020-04-16,10.1,10.18,10.1,10.16,144032 +2020-04-17,10.18,10.23,10.15,10.2,227444 +2020-04-20,10.15,10.19,10.09,10.11,235037 +2020-04-21,10.07,10.12,10.01,10.03,175575 +2020-04-22,10.02,10.07,9.98,10.07,158024 +2020-04-23,10.1,10.1,10.01,10.06,168786 +2020-04-24,10.06,10.09,10.01,10.06,169731 +2020-04-27,10.15,10.42,10.15,10.34,503428 +2020-04-28,10.36,10.38,10.22,10.33,292226 +2020-04-29,10.35,10.61,10.33,10.61,350568 +2020-04-30,10.58,10.79,10.56,10.63,309070 +2020-05-06,10.44,10.49,10.36,10.46,413784 +2020-05-07,10.45,10.46,10.37,10.39,262117 +2020-05-08,10.44,10.49,10.4,10.44,209277 +2020-05-11,10.44,10.54,10.42,10.43,214725 +2020-05-12,10.44,10.48,10.34,10.34,194059 +2020-05-13,10.31,10.39,10.28,10.38,155743 +2020-05-14,10.32,10.36,10.27,10.3,158924 +2020-05-15,10.36,10.38,10.26,10.28,137538 +2020-05-18,10.28,10.43,10.25,10.32,156759 +2020-05-19,10.45,10.45,10.34,10.35,125770 +2020-05-20,10.37,10.42,10.33,10.41,200463 +2020-05-21,10.44,10.44,10.33,10.33,143617 +2020-05-22,10.3,10.34,10.14,10.14,237229 +2020-05-25,10.3,10.31,10.13,10.27,157220 +2020-05-26,10.32,10.32,10.25,10.27,143722 +2020-05-27,10.28,10.38,10.25,10.35,201457 +2020-05-28,10.36,10.55,10.36,10.53,382632 +2020-05-29,10.45,10.57,10.45,10.57,306592 +2020-06-01,10.63,10.72,10.57,10.65,286128 +2020-06-02,10.58,10.74,10.58,10.68,259225 +2020-06-03,10.75,10.87,10.7,10.7,273522 +2020-06-04,10.8,10.8,10.64,10.64,175590 +2020-06-05,10.68,10.69,10.56,10.67,209583 +2020-06-08,10.64,10.72,10.6,10.61,182512 +2020-06-09,10.62,10.72,10.58,10.68,172632 +2020-06-10,10.71,10.71,10.58,10.58,166935 +2020-06-11,10.58,10.61,10.45,10.48,251715 +2020-06-12,10.58,10.58,10.43,10.55,255145 +2020-06-15,10.41,10.49,10.35,10.35,254979 +2020-06-16,10.44,10.5,10.4,10.45,176827 +2020-06-17,10.44,10.51,10.43,10.47,161486 +2020-06-18,10.42,10.57,10.39,10.5,208566 +2020-06-19,10.56,10.68,10.5,10.61,398145 +2020-06-22,10.57,10.66,10.53,10.55,246119 +2020-06-23,10.51,10.57,10.47,10.48,196022 +2020-06-24,10.54,10.61,10.5,10.6,228739 +2020-06-29,10.63,10.73,10.49,10.57,278756 +2020-06-30,10.59,10.64,10.54,10.58,228868 +2020-07-01,10.59,10.76,10.55,10.74,366907 +2020-07-02,10.73,11.05,10.7,11.05,609513 +2020-07-03,11.08,11.26,11.02,11.19,822385 +2020-07-06,11.3,12.31,11.29,12.2,1495580 +2020-07-07,12.45,12.69,12.1,12.11,1314698 +2020-07-08,12.17,12.44,12.03,12.14,1048792 +2020-07-09,12.26,12.26,11.94,11.99,913117 +2020-07-10,11.98,12.09,11.55,11.6,786119 +2020-07-13,11.6,11.85,11.56,11.66,965643 +2020-07-14,11.61,11.69,11.33,11.38,799443 +2020-07-15,11.47,11.47,11.14,11.18,924383 +2020-07-16,11.25,11.48,11.2,11.2,966142 +2020-07-17,11.37,11.39,11.17,11.27,686395 +2020-07-20,11.32,11.57,11.27,11.52,787665 +2020-07-21,11.59,11.61,11.4,11.54,550046 +2020-07-22,11.55,11.75,11.5,11.62,986876 +2020-07-23,10.99,10.99,10.61,10.84,868069 +2020-07-24,10.78,10.8,10.4,10.42,728864 +2020-07-27,10.55,10.55,10.32,10.37,446559 +2020-07-28,10.46,10.54,10.35,10.39,325993 +2020-07-29,10.35,10.54,10.32,10.51,452566 +2020-07-30,10.51,10.53,10.4,10.4,404435 +2020-07-31,10.41,10.52,10.31,10.36,653684 +2020-08-03,10.4,10.48,10.37,10.41,562720 +2020-08-04,10.46,10.72,10.43,10.66,885225 +2020-08-05,10.64,10.64,10.45,10.51,460113 +2020-08-06,10.57,10.63,10.41,10.53,424842 +2020-08-07,10.51,10.53,10.36,10.43,442720 +2020-08-10,10.42,10.57,10.39,10.52,489740 +2020-08-11,10.58,10.68,10.45,10.47,636732 +2020-08-12,10.49,10.6,10.46,10.56,432686 +2020-08-13,10.6,10.61,10.5,10.51,257985 +2020-08-14,10.53,10.6,10.48,10.59,375845 +2020-08-17,10.59,10.98,10.57,10.84,987427 +2020-08-18,10.85,10.85,10.63,10.69,540920 +2020-08-19,10.69,10.74,10.57,10.58,434481 +2020-08-20,10.56,10.57,10.43,10.47,535390 +2020-08-21,10.56,10.56,10.45,10.5,314515 +2020-08-24,10.57,10.57,10.44,10.46,389828 +2020-08-25,10.48,10.51,10.41,10.45,378973 +2020-08-26,10.44,10.45,10.35,10.37,392787 +2020-08-27,10.38,10.4,10.32,10.35,304625 +2020-08-28,10.35,10.46,10.31,10.46,531312 +2020-08-31,10.46,10.51,10.32,10.36,800374 +2020-09-01,10.31,10.36,10.26,10.29,539312 +2020-09-02,10.28,10.29,10.12,10.18,567871 +2020-09-03,10.19,10.23,10.11,10.12,408320 +2020-09-04,10.07,10.15,10.01,10.07,384440 +2020-09-07,10.07,10.16,10.01,10.01,585646 +2020-09-08,10.07,10.09,10.01,10.05,529725 +2020-09-09,10.01,10.08,10,10.01,494185 +2020-09-10,10.06,10.06,9.94,9.96,541699 +2020-09-11,9.95,9.96,9.85,9.92,499476 +2020-09-14,9.95,9.95,9.86,9.9,388512 +2020-09-15,9.91,9.92,9.85,9.86,466015 +2020-09-16,9.87,9.9,9.8,9.86,514707 +2020-09-17,9.87,9.89,9.8,9.83,431717 +2020-09-18,9.84,9.94,9.8,9.94,952306 +2020-09-21,9.94,9.97,9.83,9.84,559987 +2020-09-22,9.81,9.84,9.69,9.7,659521 +2020-09-23,9.71,9.72,9.62,9.63,419096 +2020-09-24,9.61,9.62,9.46,9.5,538587 +2020-09-25,9.5,9.53,9.46,9.47,294875 +2020-09-28,9.49,9.53,9.46,9.46,262578 +2020-09-29,9.5,9.52,9.43,9.43,329883 +2020-09-30,9.45,9.49,9.35,9.39,390068 +2020-10-09,9.44,9.48,9.4,9.42,397727 +2020-10-12,9.45,9.63,9.42,9.59,666716 +2020-10-13,9.58,9.59,9.52,9.54,280591 +2020-10-14,9.54,9.56,9.5,9.53,429692 +2020-10-15,9.54,9.72,9.53,9.62,661467 +2020-10-16,9.61,9.77,9.6,9.72,748502 +2020-10-19,9.73,9.93,9.64,9.65,845324 +2020-10-20,9.63,9.65,9.51,9.58,466870 +2020-10-21,9.58,9.7,9.51,9.7,616221 +2020-10-22,9.67,9.76,9.59,9.65,472889 +2020-10-23,9.63,9.79,9.62,9.7,709545 +2020-10-26,9.72,9.75,9.59,9.6,527114 +2020-10-27,9.59,9.59,9.48,9.48,380628 +2020-10-28,9.48,9.52,9.38,9.4,458814 +2020-10-29,9.35,9.45,9.34,9.37,437073 +2020-10-30,9.38,9.45,9.25,9.26,560609 +2020-11-02,9.28,9.33,9.22,9.25,465423 +2020-11-03,9.31,9.4,9.28,9.3,678761 +2020-11-04,9.35,9.4,9.28,9.34,502561 +2020-11-05,9.46,9.46,9.33,9.36,558732 +2020-11-06,9.37,9.43,9.33,9.39,639196 +2020-11-09,9.42,9.48,9.39,9.43,889377 +2020-11-10,9.47,9.59,9.44,9.46,842179 +2020-11-11,9.49,9.58,9.44,9.56,641718 +2020-11-12,9.52,9.53,9.43,9.43,518911 +2020-11-13,9.41,9.41,9.33,9.36,449101 +2020-11-16,9.38,9.46,9.37,9.45,318781 +2020-11-17,9.46,9.53,9.44,9.53,472940 +2020-11-18,9.53,9.77,9.5,9.7,1094175 +2020-11-19,9.7,9.78,9.64,9.74,638401 +2020-11-20,9.68,9.72,9.61,9.67,466314 +2020-11-23,9.66,9.92,9.63,9.9,926182 +2020-11-24,9.92,9.97,9.82,9.85,612217 +2020-11-25,9.9,9.99,9.81,9.81,612161 +2020-11-26,9.84,9.99,9.76,9.98,715955 +2020-11-27,10.01,10.2,9.96,10.2,1133880 +2020-11-30,10.3,10.53,10.06,10.06,2034989 +2020-12-01,10.08,10.35,10.01,10.3,1078122 +2020-12-02,10.26,10.39,10.19,10.25,787028 +2020-12-03,10.23,10.28,10.16,10.24,571957 +2020-12-04,10.24,10.25,10.05,10.17,473365 +2020-12-07,10.11,10.17,9.9,9.99,578105 +2020-12-08,9.97,10.06,9.93,9.98,315224 +2020-12-09,9.98,10.09,9.91,9.91,440901 +2020-12-10,9.91,9.96,9.76,9.82,394009 +2020-12-11,9.84,9.88,9.69,9.7,483866 +2020-12-14,9.75,9.8,9.68,9.75,387438 +2020-12-15,9.73,9.74,9.6,9.71,393231 +2020-12-16,9.72,9.78,9.64,9.65,479989 +2020-12-17,9.64,9.79,9.59,9.77,429016 +2020-12-18,9.74,9.79,9.69,9.76,318845 +2020-12-21,9.7,9.77,9.65,9.75,319655 +2020-12-22,9.75,9.75,9.55,9.61,504180 +2020-12-23,9.6,9.64,9.48,9.55,386563 +2020-12-24,9.55,9.66,9.51,9.55,248719 +2020-12-25,9.56,9.61,9.51,9.58,224210 +2020-12-28,9.55,9.63,9.5,9.57,337659 +2020-12-29,9.59,9.62,9.52,9.53,441506 +2020-12-30,9.52,9.54,9.44,9.5,548856 +2020-12-31,9.51,9.69,9.49,9.68,659924 +2021-01-04,9.64,9.73,9.55,9.69,629069 +2021-01-05,9.68,9.68,9.52,9.68,538592 +2021-01-06,9.62,9.83,9.62,9.82,618813 +2021-01-07,9.83,9.93,9.66,9.81,570904 +2021-01-08,9.83,9.9,9.73,9.83,558015 +2021-01-11,9.83,9.94,9.68,9.69,759841 +2021-01-12,9.7,9.79,9.58,9.78,567329 +2021-01-13,9.75,9.88,9.72,9.84,571452 +2021-01-14,9.83,9.96,9.76,9.87,553386 +2021-01-15,9.98,10.23,9.92,9.92,1430676 +2021-01-18,9.92,10.12,9.87,10.08,963895 +2021-01-19,10.07,10.22,9.98,10.16,828162 +2021-01-20,10.13,10.18,9.96,9.98,666089 +2021-01-21,9.99,10.07,9.93,9.97,536229 +2021-01-22,9.96,9.97,9.76,9.79,618798 +2021-01-25,9.77,9.78,9.67,9.72,517056 +2021-01-26,9.69,9.78,9.66,9.68,398776 +2021-01-27,9.67,9.88,9.66,9.73,551745 +2021-01-28,9.73,9.74,9.61,9.66,523609 +2021-01-29,9.69,10.13,9.65,9.96,1152575 +2021-02-01,9.94,10.48,9.9,10.44,1818838 +2021-02-02,10.35,10.47,10.15,10.22,1314040 +2021-02-03,10.19,10.43,10.06,10.26,1311507 +2021-02-04,10.21,10.41,10.12,10.28,920165 +2021-02-05,10.28,10.82,10.25,10.72,1955062 +2021-02-08,10.71,10.81,10.51,10.72,1370895 +2021-02-09,10.7,10.74,10.54,10.68,998720 +2021-02-10,10.67,10.85,10.56,10.69,1050922 +2021-02-18,10.8,11.02,10.74,10.83,1433979 +2021-02-19,10.83,11.12,10.77,10.97,1229263 +2021-02-22,10.92,10.95,10.7,10.71,1273794 +2021-02-23,10.71,10.99,10.71,10.78,933278 +2021-02-24,10.81,10.89,10.55,10.6,977840 +2021-02-25,10.66,10.85,10.6,10.8,898555 +2021-02-26,10.72,10.82,10.54,10.54,853861 +2021-03-01,10.59,10.64,10.5,10.58,547461 +2021-03-02,10.61,10.7,10.36,10.47,747631 +2021-03-03,10.45,10.92,10.43,10.92,1135709 +2021-03-04,10.8,10.92,10.76,10.88,754129 +2021-03-05,10.87,10.94,10.69,10.86,721548 +2021-03-08,10.98,11.02,10.71,10.75,801531 +2021-03-09,10.78,10.9,10.65,10.73,835841 +2021-03-10,10.76,10.79,10.63,10.72,505122 +2021-03-11,10.8,10.97,10.76,10.9,768170 +2021-03-12,10.89,11.03,10.82,10.9,792356 +2021-03-15,10.88,11.24,10.88,11.12,1135244 +2021-03-16,11.05,11.24,11.01,11.11,655023 +2021-03-17,11.1,11.12,10.89,10.92,578219 +2021-03-18,10.97,11.05,10.9,11.03,509436 +2021-03-19,11.01,11.05,10.56,10.65,1033599 +2021-03-22,10.62,10.88,10.62,10.75,660310 +2021-03-23,10.76,10.83,10.68,10.78,471277 +2021-03-24,10.77,10.81,10.63,10.68,441326 +2021-03-25,10.72,10.78,10.61,10.63,435477 +2021-03-26,10.68,10.73,10.61,10.62,408827 +2021-03-29,10.6,10.6,10.4,10.48,923668 +2021-03-30,10.65,11.01,10.62,11.01,1734472 +2021-03-31,11.01,11.04,10.87,10.99,668137 +2021-04-01,10.99,11.01,10.81,10.89,477812 +2021-04-02,10.94,10.95,10.67,10.76,653651 +2021-04-06,10.76,10.79,10.68,10.7,339112 +2021-04-07,10.74,10.75,10.58,10.65,609885 +2021-04-08,10.63,10.7,10.56,10.66,420479 +2021-04-09,10.64,10.64,10.53,10.59,386830 +2021-04-12,10.58,10.75,10.52,10.73,570237 +2021-04-13,10.74,10.82,10.67,10.76,527562 +2021-04-14,10.82,10.82,10.57,10.59,456868 +2021-04-15,10.58,10.61,10.38,10.43,531724 +2021-04-16,10.45,10.55,10.42,10.54,328956 +2021-04-19,10.55,10.64,10.45,10.58,502039 +2021-04-20,10.55,10.58,10.48,10.5,294506 +2021-04-21,10.47,10.62,10.46,10.58,454397 +2021-04-22,10.6,10.6,10.4,10.43,417934 +2021-04-23,10.42,10.47,10.38,10.43,248253 +2021-04-26,10.45,10.5,10.28,10.3,463872 +2021-04-27,10.33,10.34,10.24,10.27,250425 +2021-04-28,10.33,10.33,10.18,10.25,353212 +2021-04-29,10.28,10.55,10.26,10.54,481946 +2021-04-30,10.28,10.28,9.96,10.05,1561034 +2021-05-06,9.97,10.18,9.97,10.1,611392 +2021-05-07,10.1,10.15,9.99,10.03,723453 +2021-05-10,10.06,10.06,9.88,9.95,615165 +2021-05-11,9.92,10.07,9.9,10.05,423338 +2021-05-12,10.04,10.2,10.02,10.12,520121 +2021-05-13,10.09,10.17,10.01,10.09,472126 +2021-05-14,10.1,10.2,10.03,10.19,476814 +2021-05-17,10.2,10.29,10.13,10.21,463633 +2021-05-18,10.18,10.23,10.15,10.22,190935 +2021-05-19,10.19,10.2,10.07,10.12,292739 +2021-05-20,10.1,10.18,10.02,10.16,353953 +2021-05-21,10.2,10.22,10.07,10.09,286189 +2021-05-24,10.08,10.14,10.05,10.09,235189 +2021-05-25,10.1,10.33,10.06,10.32,754176 +2021-05-26,10.31,10.42,10.28,10.35,549848 +2021-05-27,10.32,10.43,10.26,10.29,520633 +2021-05-28,10.33,10.36,10.25,10.35,345933 +2021-05-31,10.34,10.34,10.22,10.27,372557 +2021-06-01,10.23,10.26,10.18,10.19,418804 +2021-06-02,10.21,10.23,10.13,10.22,358305 +2021-06-03,10.21,10.32,10.18,10.23,522449 +2021-06-04,10.25,10.38,10.19,10.23,710524 +2021-06-07,10.26,10.27,10.2,10.23,363014 +2021-06-08,10.24,10.33,10.18,10.31,508381 +2021-06-09,10.29,10.35,10.21,10.21,560951 +2021-06-10,10.21,10.31,10.2,10.23,456854 +2021-06-11,10.24,10.28,10.11,10.17,580303 +2021-06-15,10.15,10.15,10.01,10.03,469558 +2021-06-16,10.04,10.14,10.01,10.05,321711 +2021-06-17,10.05,10.12,10.03,10.04,296898 +2021-06-18,10.04,10.1,10,10.1,444512 +2021-06-21,10.06,10.09,10.01,10.04,398157 +2021-06-22,10.06,10.12,10,10,451846 +2021-06-23,10.01,10.03,9.96,9.99,344001 +2021-06-24,10,10.05,9.97,10.02,316527 +2021-06-25,10.02,10.11,10.01,10.08,483354 +2021-06-28,10.06,10.07,9.99,10.01,325971 +2021-06-29,10.01,10.04,9.98,9.98,327334 +2021-06-30,10,10.02,9.97,10,215801 +2021-07-01,10.01,10.06,9.99,10.03,369991 +2021-07-02,10.01,10.05,9.92,9.93,515351 +2021-07-05,9.95,9.96,9.85,9.92,448069 +2021-07-06,9.91,10.01,9.88,9.99,377374 +2021-07-07,10.01,10.04,9.94,10.03,356670 +2021-07-08,10.05,10.05,9.92,9.94,307452 +2021-07-09,9.93,10.01,9.9,9.91,345901 +2021-07-12,9.96,9.99,9.9,9.91,334156 +2021-07-13,9.94,9.99,9.88,9.96,346117 +2021-07-14,9.97,9.97,9.8,9.83,522076 +2021-07-15,9.83,9.96,9.81,9.94,459034 +2021-07-16,10.01,10.08,9.96,9.98,455578 +2021-07-19,9.98,10.03,9.85,10.01,530494 +2021-07-20,10.01,10.02,9.94,9.99,368347 +2021-07-21,9.51,9.64,9.51,9.55,584509 +2021-07-22,9.58,9.72,9.56,9.64,439772 +2021-07-23,9.6,9.67,9.57,9.58,300903 +2021-07-26,9.57,9.58,9.3,9.34,517427 +2021-07-27,9.36,9.43,9.09,9.15,532799 +2021-07-28,9.16,9.36,9.16,9.21,463359 +2021-07-29,9.25,9.28,9.1,9.12,435877 +2021-07-30,9.13,9.13,9.01,9.03,356971 +2021-08-02,9.03,9.24,8.97,9.13,457134 +2021-08-03,9.13,9.14,9.04,9.12,330141 +2021-08-04,9.12,9.14,9.05,9.07,252145 +2021-08-05,9.06,9.12,9.04,9.05,242678 +2021-08-06,9.05,9.08,9,9.08,224861 +2021-08-09,9.06,9.25,9.05,9.17,374619 +2021-08-10,9.18,9.23,9.1,9.2,343709 +2021-08-11,9.18,9.29,9.16,9.21,373821 +2021-08-12,9.21,9.22,9.16,9.17,229785 +2021-08-13,9.16,9.23,9.14,9.18,219260 +2021-08-16,9.19,9.27,9.16,9.22,273695 +2021-08-17,9.23,9.29,9.17,9.19,380168 +2021-08-18,9.2,9.39,9.16,9.33,434247 +2021-08-19,9.34,9.34,9.19,9.23,363914 +2021-08-20,9.25,9.3,9.18,9.27,353744 +2021-08-23,9.3,9.31,9.2,9.2,324189 +2021-08-24,9.22,9.3,9.17,9.21,408160 +2021-08-25,9.23,9.24,9.16,9.19,340640 +2021-08-26,9.18,9.2,9.13,9.14,294391 +2021-08-27,9.16,9.22,9.14,9.17,276188 +2021-08-30,9.05,9.08,8.92,8.96,804103 +2021-08-31,8.98,9.05,8.93,9.05,446337 +2021-09-01,9.03,9.23,9.01,9.18,582113 +2021-09-02,9.2,9.24,9.16,9.23,401227 +2021-09-03,9.24,9.33,9.16,9.24,507816 +2021-09-06,9.22,9.31,9.2,9.21,356277 +2021-09-07,9.21,9.39,9.16,9.34,640518 +2021-09-08,9.34,9.39,9.29,9.34,409418 +2021-09-09,9.32,9.34,9.25,9.3,319514 +2021-09-10,9.32,9.48,9.31,9.41,572507 +2021-09-13,9.38,9.43,9.34,9.39,293733 +2021-09-14,9.39,9.43,9.17,9.21,539347 +2021-09-15,9.21,9.26,9.13,9.19,380648 +2021-09-16,9.2,9.23,9.11,9.12,491999 +2021-09-17,9.11,9.17,9.08,9.11,302335 +2021-09-22,9,9.08,8.96,9.03,350541 +2021-09-23,9.1,9.15,9.01,9.03,396400 +2021-09-24,9.04,9.08,8.99,9.02,399256 +2021-09-27,9.02,9.05,8.94,9.02,417084 +2021-09-28,8.98,9.09,8.98,9.03,333408 +2021-09-29,9.01,9.09,8.97,9.02,400083 +2021-09-30,9.03,9.05,8.98,9,291902 +2021-10-08,9.05,9.15,9.03,9.08,390806 +2021-10-11,9.12,9.25,9.1,9.15,466325 +2021-10-12,9.12,9.19,9.09,9.14,357258 +2021-10-13,9.14,9.15,9.05,9.07,225383 +2021-10-14,9.07,9.09,9.02,9.04,225846 +2021-10-15,9.05,9.11,9.02,9.07,275254 +2021-10-18,9.06,9.1,8.98,9.02,259647 +2021-10-19,9.03,9.07,9.01,9.01,286362 +2021-10-20,9.03,9.06,8.99,9.02,274824 +2021-10-21,9.05,9.09,9.01,9.04,440746 +2021-10-22,9.07,9.13,9.02,9.07,386694 +2021-10-25,9.03,9.06,9.02,9.03,265855 +2021-10-26,9.06,9.09,9.01,9.03,307518 +2021-10-27,9.01,9.02,8.96,8.99,341973 +2021-10-28,8.99,9.01,8.95,8.96,281652 +2021-10-29,8.96,9,8.93,8.94,359907 +2021-11-01,8.69,8.78,8.6,8.72,649410 +2021-11-02,8.71,8.75,8.5,8.54,700346 +2021-11-03,8.59,8.59,8.51,8.53,297852 +2021-11-04,8.53,8.54,8.5,8.51,261489 +2021-11-05,8.51,8.54,8.49,8.53,229134 +2021-11-08,8.48,8.53,8.46,8.49,243530 +2021-11-09,8.5,8.55,8.49,8.54,195485 +2021-11-10,8.53,8.53,8.44,8.48,274789 +2021-11-11,8.48,8.62,8.47,8.62,314193 +2021-11-12,8.64,8.65,8.58,8.65,204982 +2021-11-15,8.66,8.75,8.65,8.75,276258 +2021-11-16,8.7,8.74,8.63,8.73,240301 +2021-11-17,8.67,8.72,8.65,8.65,193016 +2021-11-18,8.61,8.66,8.53,8.56,204654 +2021-11-19,8.56,8.7,8.55,8.65,204720 +2021-11-22,8.63,8.66,8.59,8.6,209837 +2021-11-23,8.61,8.7,8.61,8.63,215024 +2021-11-24,8.61,8.69,8.59,8.68,193427 +2021-11-25,8.68,8.69,8.61,8.64,131691 +2021-11-26,8.61,8.62,8.55,8.56,211991 +2021-11-29,8.57,8.59,8.5,8.59,237464 +2021-11-30,8.54,8.59,8.51,8.51,309001 +2021-12-01,8.53,8.58,8.51,8.56,193339 +2021-12-02,8.56,8.61,8.52,8.58,229062 +2021-12-03,8.58,8.6,8.52,8.59,238487 +2021-12-06,8.59,8.64,8.57,8.6,338820 +2021-12-07,8.69,8.7,8.6,8.68,400163 +2021-12-08,8.7,8.7,8.63,8.67,286059 +2021-12-09,8.69,8.8,8.66,8.75,511862 +2021-12-10,8.73,8.78,8.72,8.77,424949 +2021-12-13,8.79,8.81,8.62,8.65,562340 +2021-12-14,8.64,8.65,8.54,8.57,493893 +2021-12-15,8.54,8.58,8.53,8.55,206642 +2021-12-16,8.56,8.61,8.55,8.6,268995 +2021-12-17,8.61,8.62,8.56,8.56,272696 +2021-12-20,8.55,8.61,8.55,8.58,277861 +2021-12-21,8.55,8.65,8.55,8.61,263110 +2021-12-22,8.62,8.64,8.57,8.57,216181 +2021-12-23,8.58,8.6,8.56,8.58,189019 +2021-12-24,8.58,8.59,8.53,8.54,182520 +2021-12-27,8.54,8.57,8.53,8.56,195277 +2021-12-28,8.56,8.59,8.54,8.57,298337 +2021-12-29,8.57,8.58,8.53,8.54,200501 +2021-12-30,8.54,8.58,8.53,8.54,232725 +2021-12-31,8.54,8.57,8.53,8.53,229296 +2022-01-04,8.54,8.58,8.52,8.57,377076 +2022-01-05,8.57,8.68,8.56,8.64,554591 +2022-01-06,8.66,8.66,8.56,8.57,410311 +2022-01-07,8.57,8.73,8.57,8.71,630183 +2022-01-10,8.72,8.78,8.66,8.72,340553 +2022-01-11,8.74,8.78,8.69,8.73,426461 +2022-01-12,8.75,8.75,8.63,8.69,412407 +2022-01-13,8.73,8.85,8.69,8.72,489237 +2022-01-14,8.72,8.72,8.57,8.59,510607 +2022-01-17,8.57,8.63,8.57,8.57,221780 +2022-01-18,8.58,8.66,8.55,8.63,399952 +2022-01-19,8.63,8.66,8.61,8.64,262577 +2022-01-20,8.66,8.82,8.64,8.8,828420 +2022-01-21,8.78,8.8,8.72,8.76,475725 +2022-01-24,8.79,8.79,8.66,8.69,324897 +2022-01-25,8.68,8.68,8.56,8.56,433124 +2022-01-26,8.57,8.59,8.54,8.57,234820 +2022-01-27,8.55,8.56,8.45,8.45,562810 +2022-01-28,8.48,8.51,8.41,8.41,439938 +2022-02-07,8.48,8.55,8.44,8.52,399883 +2022-02-08,8.53,8.67,8.51,8.65,475725 +2022-02-09,8.64,8.71,8.62,8.64,362232 +2022-02-10,8.66,8.71,8.62,8.69,287162 +2022-02-11,8.7,8.76,8.67,8.74,376829 +2022-02-14,8.69,8.71,8.58,8.6,347271 +2022-02-15,8.59,8.63,8.52,8.55,316808 +2022-02-16,8.58,8.64,8.56,8.59,286096 +2022-02-17,8.6,8.63,8.56,8.56,245332 +2022-02-18,8.55,8.67,8.53,8.67,343846 +2022-02-21,8.64,8.64,8.55,8.6,243343 +2022-02-22,8.57,8.59,8.53,8.58,324972 +2022-02-23,8.59,8.59,8.53,8.54,294764 +2022-02-24,8.54,8.55,8.4,8.44,477036 +2022-02-25,8.44,8.48,8.41,8.43,322399 +2022-02-28,8.44,8.45,8.36,8.39,233933 +2022-03-01,8.39,8.46,8.39,8.44,235403 +2022-03-02,8.41,8.46,8.4,8.42,167081 +2022-03-03,8.44,8.5,8.43,8.46,198646 +2022-03-04,8.44,8.44,8.36,8.4,263957 +2022-03-07,8.38,8.4,8.28,8.29,371772 +2022-03-08,8.29,8.3,8.05,8.08,466881 +2022-03-09,8.11,8.13,7.76,7.9,460357 +2022-03-10,8.01,8.05,7.92,7.92,251815 +2022-03-11,7.89,8.02,7.77,8.01,332860 +2022-03-14,7.95,8,7.9,7.91,227709 +2022-03-15,7.92,7.93,7.61,7.63,489623 +2022-03-16,7.69,7.8,7.52,7.77,415201 +2022-03-17,7.85,7.85,7.71,7.74,414956 +2022-03-18,7.73,7.91,7.71,7.9,531795 +2022-03-21,7.84,7.84,7.73,7.76,388240 +2022-03-22,7.77,7.88,7.75,7.83,282245 +2022-03-23,7.83,7.84,7.77,7.8,255537 +2022-03-24,7.78,7.83,7.76,7.8,166877 +2022-03-25,7.8,7.86,7.78,7.8,164744 +2022-03-28,7.8,7.87,7.71,7.86,287840 +2022-03-29,7.83,7.86,7.8,7.82,225170 +2022-03-30,7.84,7.92,7.82,7.92,298544 +2022-03-31,7.89,8.02,7.86,8,259698 +2022-04-01,7.95,8.07,7.94,8.07,318813 +2022-04-06,8,8.18,8,8.17,425461 +2022-04-07,8.16,8.18,8.06,8.07,317121 +2022-04-08,8.07,8.12,8.02,8.11,240892 +2022-04-11,8.11,8.11,7.97,8.01,300157 +2022-04-12,8.02,8.15,7.98,8.11,313319 +2022-04-13,8.09,8.14,8.05,8.1,185012 +2022-04-14,8.11,8.15,8.1,8.11,189732 +2022-04-15,8.11,8.18,8.09,8.15,218120 +2022-04-18,8.12,8.14,8.01,8.03,210224 +2022-04-19,8.04,8.14,8.03,8.14,245645 +2022-04-20,8.13,8.15,8.08,8.11,191439 +2022-04-21,8.08,8.16,7.99,8.07,292280 +2022-04-22,8.01,8.12,8.01,8.09,276120 +2022-04-25,8.02,8.1,7.81,7.82,533116 +2022-04-26,7.84,7.99,7.79,7.87,382043 +2022-04-27,7.91,7.95,7.81,7.83,386886 +2022-04-28,7.86,7.99,7.86,7.99,451752 +2022-04-29,7.98,8.06,7.86,8.03,445128 +2022-05-05,8.03,8.08,7.96,7.99,291331 +2022-05-06,7.94,7.98,7.82,7.85,317956 +2022-05-09,7.85,7.86,7.8,7.82,160354 +2022-05-10,7.8,7.89,7.71,7.85,329910 +2022-05-11,7.84,7.9,7.81,7.86,251168 +2022-05-12,7.83,7.91,7.83,7.87,223522 +2022-05-13,7.91,8.05,7.9,8.05,373434 +2022-05-16,8.05,8.07,7.93,7.97,209908 +2022-05-17,8.01,8.04,7.95,8.02,187142 +2022-05-18,7.98,8.01,7.92,7.95,194639 +2022-05-19,7.92,7.98,7.89,7.91,199042 +2022-05-20,7.94,8.05,7.92,8.04,326996 +2022-05-23,8.06,8.06,7.95,7.95,255276 +2022-05-24,7.96,7.97,7.87,7.88,260285 +2022-05-25,7.92,7.93,7.85,7.88,210034 +2022-05-26,7.89,7.92,7.84,7.9,234016 +2022-05-27,7.92,8.01,7.88,8,317553 +2022-05-30,8.01,8.02,7.87,7.88,356963 +2022-05-31,7.9,7.98,7.88,7.94,317509 +2022-06-01,7.94,7.94,7.89,7.91,184019 +2022-06-02,7.89,7.91,7.87,7.89,189311 +2022-06-06,7.87,7.9,7.82,7.86,330105 +2022-06-07,7.84,7.89,7.83,7.88,306231 +2022-06-08,7.87,7.88,7.83,7.86,395557 +2022-06-09,7.86,7.96,7.84,7.95,606070 +2022-06-10,7.93,8.05,7.89,7.93,1234462 +2022-06-13,7.91,7.93,7.74,7.77,1045972 +2022-06-14,7.74,7.89,7.73,7.87,550478 +2022-06-15,7.86,8.13,7.85,8.03,1127591 +2022-06-16,8.05,8.08,7.92,7.92,568897 +2022-06-17,7.91,8,7.89,7.97,356125 +2022-06-20,7.95,7.98,7.91,7.91,300652 +2022-06-21,7.92,7.98,7.92,7.97,232457 +2022-06-22,7.96,7.97,7.91,7.92,206356 +2022-06-23,7.94,7.97,7.91,7.97,232551 +2022-06-24,7.97,7.98,7.93,7.95,236653 +2022-06-27,7.95,8.01,7.94,7.97,240677 +2022-06-28,7.97,8.04,7.96,8.04,257291 +2022-06-29,8.01,8.06,8,8.05,302997 +2022-06-30,8.05,8.06,8,8.01,233696 +2022-07-01,8.01,8.04,7.98,7.99,178468 +2022-07-04,7.99,8,7.94,7.96,182220 +2022-07-05,7.96,8,7.94,7.98,213222 +2022-07-06,7.97,7.98,7.87,7.9,288297 +2022-07-07,7.88,7.92,7.86,7.87,186364 +2022-07-08,7.9,7.9,7.87,7.88,123792 +2022-07-11,7.87,7.9,7.86,7.87,161955 +2022-07-12,7.86,7.94,7.86,7.91,198898 +2022-07-13,7.93,7.94,7.85,7.85,305065 +2022-07-14,7.84,7.86,7.75,7.79,405659 +2022-07-15,7.76,7.8,7.65,7.67,471276 +2022-07-18,7.68,7.79,7.68,7.79,251642 +2022-07-19,7.79,7.82,7.77,7.81,288723 +2022-07-20,7.85,7.85,7.77,7.79,397134 +2022-07-21,7.4,7.41,7.33,7.33,415416 +2022-07-21,7.4,7.41,7.33,7.33,415416 +2022-07-22,7.34,7.38,7.34,7.35,196608 +2022-07-25,7.33,7.38,7.33,7.35,170940 +2022-07-26,7.36,7.39,7.34,7.38,187306 +2022-07-27,7.36,7.37,7.33,7.34,170364 +2022-07-28,7.35,7.37,7.32,7.33,215244 +2022-07-29,7.35,7.35,7.23,7.26,438733 +2022-08-01,7.26,7.28,7.21,7.23,244380 +2022-08-02,7.22,7.22,7.07,7.14,409861 +2022-08-03,7.13,7.17,7.07,7.07,281448 +2022-08-04,7.09,7.1,7.06,7.09,212945 +2022-08-05,7.09,7.18,7.08,7.15,225542 +2022-08-08,7.17,7.18,7.12,7.12,129812 +2022-08-09,7.13,7.15,7.1,7.12,130238 +2022-08-10,7.12,7.13,7.08,7.09,116747 +2022-08-11,7.12,7.19,7.1,7.18,219108 +2022-08-12,7.19,7.26,7.17,7.24,222534 +2022-08-15,7.24,7.29,7.2,7.21,204514 +2022-08-16,7.21,7.26,7.18,7.19,179101 +2022-08-17,7.21,7.3,7.18,7.28,209808 +2022-08-18,7.27,7.27,7.19,7.21,129918 +2022-08-19,7.18,7.28,7.18,7.2,175446 +2022-08-22,7.18,7.24,7.16,7.23,137766 +2022-08-23,7.21,7.22,7.17,7.17,150475 +2022-08-24,7.17,7.22,7.14,7.15,168558 +2022-08-25,7.16,7.22,7.15,7.2,157726 +2022-08-26,7.23,7.26,7.18,7.22,175762 +2022-08-29,7.16,7.21,7.12,7.15,276003 +2022-08-30,7.14,7.2,7.13,7.19,225419 +2022-08-31,7.17,7.28,7.15,7.27,395661 +2022-09-01,7.23,7.29,7.2,7.23,232984 +2022-09-02,7.24,7.27,7.2,7.21,199755 +2022-09-05,7.18,7.27,7.14,7.26,266462 +2022-09-06,7.25,7.3,7.24,7.26,218667 +2022-09-07,7.23,7.26,7.22,7.22,165685 +2022-09-08,7.24,7.27,7.22,7.24,144783 +2022-09-09,7.27,7.34,7.24,7.31,324230 +2022-09-13,7.28,7.36,7.27,7.35,237951 +2022-09-14,7.29,7.34,7.27,7.28,186490 +2022-09-15,7.29,7.37,7.28,7.32,319403 +2022-09-16,7.3,7.32,7.14,7.14,339791 +2022-09-19,7.16,7.2,7.1,7.16,223881 +2022-09-20,7.16,7.18,7.1,7.11,222470 +2022-09-21,7.1,7.16,7.08,7.13,200262 +2022-09-22,7.11,7.14,7.08,7.12,195404 +2022-09-23,7.12,7.18,7.09,7.16,218063 +2022-09-26,7.12,7.17,7.05,7.06,295035 +2022-09-27,7.04,7.09,7.02,7.07,201282 diff --git a/dataManager.py b/dataManager.py new file mode 100644 index 0000000..15f6cb4 --- /dev/null +++ b/dataManager.py @@ -0,0 +1,95 @@ + +import os,sys +import Singleton +import pandas as pd + +from Singleton import Singleton + +class DataManager(Singleton): + + def DatetimeFormat(self, dataFilePath): + fileparts = os.path.split(dataFilePath) + datafile = fileparts[1] + # print(datafile[-4:]) + if datafile[-4:]=='.csv': + df = pd.read_csv(dataFilePath, nrows=1) + + timestring = df.iloc[0,0] + ncolon = timestring.count(':') + if ncolon==2: + return "%Y-%m-%d %H:%M:%S" + elif ncolon==1: + return "%Y-%m-%d %H:%M" + else: + nspace = timestring.count(' ') + if nspace==1: + return "%Y-%m-%d %H" + else: + return "%Y-%m-%d" + + return "" + + + # Return True if loading is successfull & the error string if False + # dataPath is the full file path + def loadDataFrame(self, loadDataFile): + + # Try importing data file + # We should code a widget that ask for options as : separators, date format, and so on... + try: + + # Python contains + if pd.__version__<'2.0.0': + df = pd.read_csv(loadDataFile.filePath, + sep=loadDataFile.separator, + parse_dates=[0], + date_parser=lambda x: pd.to_datetime(x, format=loadDataFile.timeFormat), + skiprows=0, + header=0, + names=["Time", "Open", "High", "Low", "Close", "Volume"], + index_col=0) + else: + df = pd.read_csv(loadDataFile.filePath, + sep=loadDataFile.separator, + parse_dates=[0], + date_format=loadDataFile.timeFormat, + skiprows=0, + header=0, + names=["Time", "Open", "High", "Low", "Close", "Volume"], + index_col=0) + + return df, "" + + except ValueError as err: + return None, "ValueError error:" + str(err) + except AttributeError as err: + return None, "AttributeError error:" + str(err) + except IndexError as err: + return None, "IndexError error:" + str(err) + except : + return None, "Unexpected error:" + str(sys.exc_info()[0]) + + + def findTimeFrame(self, df): + + if len(df.index) > 2: + dtDiff = df.index[1] - df.index[0] + + if dtDiff.total_seconds() == 60: + return "M1" + elif dtDiff.total_seconds() == 300: + return "M5" + elif dtDiff.total_seconds() == 900: + return "M15" + elif dtDiff.total_seconds() == 1800: + return "M30" + elif dtDiff.total_seconds() == 3600: + return "H1" + elif dtDiff.total_seconds() == 14400: + return "H4" + elif dtDiff.total_seconds() == 86400: + return "D" + elif dtDiff.total_seconds() == 604800: + return "W" + + pass \ No newline at end of file diff --git a/finplotWindow.py b/finplotWindow.py index 2734fd9..3c3b430 100644 --- a/finplotWindow.py +++ b/finplotWindow.py @@ -2,19 +2,30 @@ from pyqtgraph.graphicsItems.LegendItem import LegendItem -from indicators import ichimoku -from indicators import rsi -from indicators import stochastic -from indicators import stochasticRsi -from indicators import sma -from indicators import ema +from custom_indicators import ichimoku +from custom_indicators import rsi +from custom_indicators import stochastic +from custom_indicators import stochasticRsi +from custom_indicators import sma +from custom_indicators import ema sys.path.append('../finplot') import finplot as fplt +import pandas as pd +import numpy as np +from datetime import datetime as dt +import time as _time import backtrader as bt from pyqtgraph import mkColor, mkBrush +def chinese_price_colorfilter(item, datasrc, df): + opencol = df.columns[1] + closecol = df.columns[2] + is_up = df[opencol] <= df[closecol] # open lower than close = goes up + yield item.rowcolors('bear') + [df.loc[is_up, :]] + yield item.rowcolors('bull') + [df.loc[~is_up, :]] + class FinplotWindow(): def __init__(self, dockArea, dockChart, interface): @@ -30,12 +41,14 @@ def __init__(self, dockArea, dockChart, interface): self.IndVolumesActivated = False + self.last_ax_data_xtick = [] + pass ######### # Prepare the plot widgets ######### - def createPlotWidgets(self): + def createPlotWidgets(self, timeframe): # fin plot self.ax0, self.ax_rsi, self.ax_stochasticRsi, self.ax_stochastic, self.axPnL = fplt.create_plot_widget(master=self.dockArea, rows=5, init_zoom_periods=200) @@ -47,40 +60,40 @@ def createPlotWidgets(self): self.dockChart.addWidget(self.ax2.ax_widget, 3, 0, 1, 1) ''' - self.interface.dock_rsi.layout.addWidget(self.ax_rsi.ax_widget) - self.interface.dock_stochasticRsi.layout.addWidget(self.ax_stochasticRsi.ax_widget) - self.interface.dock_stochastic.layout.addWidget(self.ax_stochastic.ax_widget) + self.interface.dock_rsi[timeframe].layout.addWidget(self.ax_rsi.ax_widget) + self.interface.dock_stochasticRsi[timeframe].layout.addWidget(self.ax_stochasticRsi.ax_widget) + self.interface.dock_stochastic[timeframe].layout.addWidget(self.ax_stochastic.ax_widget) # Ax Profit & Loss self.interface.strategyResultsUI.ResultsTabWidget.widget(1).layout().addWidget(self.axPnL.ax_widget) + fplt.add_crosshair_info(self.update_crosshair_text, ax=self.ax0) pass def drawCandles(self): - fplt.candlestick_ochl(self.data['Open Close High Low'.split()], ax=self.ax0) + fplt.candlestick_ochl(self.data['Open Close High Low'.split()], ax=self.ax0 ) # colorfunc=chinese_price_colorfilter #self.hover_label = fplt.add_legend('', ax=self.ax0) #fplt.set_time_inspector(self.update_legend_text, ax=self.ax0, when='hover', data=data) - #fplt.add_crosshair_info(self.update_crosshair_text, ax=self.ax0) # Inside plot widget controls #self.createControlPanel(self.ax0.ax_widget) pass - def drawSma(self, period): + def drawSma(self, period, color, width): self.sma_indicator = sma.Sma(self.data, period) - self.sma_indicator.draw(self.ax0) + self.sma_indicator.draw(self.ax0, color, width) pass - def drawEma(self, period): + def drawEma(self, period, color, width): self.ema_indicator = ema.Ema(self.data, period) - self.ema_indicator.draw(self.ax0) + self.ema_indicator.draw(self.ax0, color, width) pass - def drawRsi(self, period): + def drawRsi(self, period, color): self.rsi_indicator = rsi.Rsi(self.data, period) - self.rsi_indicator.draw(self.ax_rsi) + self.rsi_indicator.draw(self.ax_rsi, color) pass def drawStochastic(self, period, smooth_k, smooth_d): @@ -115,8 +128,6 @@ def drawOrders(self, orders = None): ############## if order.isbuy(): - direction = "buy" - # Tracer les traites allant des ouvertures de positions vers la fermeture de position if currentPositionSize < 0: @@ -158,8 +169,6 @@ def drawOrders(self, orders = None): # Sell ############## elif order.issell(): - direction = "sell" - if currentPositionSize < 0: # Augmentation de la postion @@ -206,7 +215,7 @@ def drawOrders(self, orders = None): currentPositionSize += order.size # Todo: We could display the size of the order with a label on the chart - fplt.add_order(bt.num2date(order.executed.dt), order.executed.price, direction, ax=self.ax0) + fplt.add_order(bt.num2date(order.executed.dt), order.executed.price, order.isbuy(), ax=self.ax0) pass @@ -224,8 +233,9 @@ def update_legend_text(self, x, y, ax, data): pass def update_crosshair_text(self,x, y, xtext, ytext): - ytext = '%s (Close%+.2f)' % (ytext, (y - self.data.iloc[x].Close)) - return xtext, ytext + ytext = '%s \n Open: %.5f\n Close: %.5f\n High: %.5f\n Low: %.5f' \ + % (ytext, self.data.iloc[x].Open, self.data.iloc[x].Close, self.data.iloc[x].High, self.data.iloc[x].Low) + return xtext,ytext def activateDarkMode(self, activated): @@ -273,6 +283,8 @@ def activateDarkMode(self, activated): for ax in axs: ax.axes['left']['item'].setPen(axis_pen) ax.axes['left']['item'].setTextPen(axis_pen) + ax.axes['right']['item'].setPen(axis_pen) + ax.axes['right']['item'].setTextPen(axis_pen) ax.axes['bottom']['item'].setPen(axis_pen) ax.axes['bottom']['item'].setTextPen(axis_pen) if ax.crosshair is not None: @@ -378,7 +390,49 @@ def setIndicator(self, indicatorName, activated): self.updateChart() pass - + + def _date_str2x(self, ax, date_str): + print(type(ax.getAxis('bottom').vb.datasrc)) + print(date_str) + + if ax.getAxis('bottom').vb.datasrc is None: + df = self.last_ax_data_xtick + else: + df = ax.getAxis('bottom').vb.datasrc.df + self.last_ax_data_xtick = df + + dftime = np.array(df.iloc[:, 0]) + lsttime = dftime.tolist() + # print(dftime) + # print(lsttime) + + xtime = dt.strptime(date_str, '%Y-%m-%d %H:%M:%S') + xint = int((xtime.timestamp()-_time.timezone)*1e9) + print(xint,lsttime[0]) + x = lsttime.index(xint) + + return [x] + + def zoomTo(self, dateStr1, dateStr2): + + for win in fplt.windows: + for ax in win.axs: + # x1 = self._date_str2x(ax, dateStr1) + # x2 = self._date_str2x(ax, dateStr2) + x1 = fplt._dateStr2x(ax, dateStr1) + x2 = fplt._dateStr2x(ax, dateStr2) + + # Do not zoom exactly on the trade, so take a little bit before & after + date1 = x1[0] + if date1 > 10: + date1 = date1 - 10 + + date2 = x2[0] + 10 + + ax.vb.update_y_zoom(date1,date2) + + pass + ############# # Show finplot Window ############# @@ -400,4 +454,13 @@ def drawPnL(self, pln_data): self.axPnL.show() pass - \ No newline at end of file + + def showPnL(self): + self.axPnL.show() + self.axPnL.ax_widget.show() + pass + + def hidePnL(self): + self.axPnL.hide() + self.axPnL.ax_widget.hide() + pass diff --git a/images/overview.png b/images/overview.png index 3af4b80..708a90f 100644 Binary files a/images/overview.png and b/images/overview.png differ diff --git a/images/overview2.png b/images/overview2.png index 3e7c33b..a438e99 100644 Binary files a/images/overview2.png and b/images/overview2.png differ diff --git a/images/overview3.png b/images/overview3.png new file mode 100644 index 0000000..2dcd97d Binary files /dev/null and b/images/overview3.png differ diff --git a/indicatorParametersUI.py b/indicatorParametersUI.py index c65e9f7..9f51aac 100644 --- a/indicatorParametersUI.py +++ b/indicatorParametersUI.py @@ -1,4 +1,4 @@ -from PyQt5 import QtCore, QtWidgets, uic +from PyQt6 import QtCore, QtWidgets, QtGui, uic import os @@ -7,7 +7,7 @@ class IndicatorParametersUI(QtWidgets.QDialog): def __init__(self, parent = None): super(IndicatorParametersUI, self).__init__() - self.setParent(parent) + #self.setParent(parent) # It does not finish by a "/" self.current_dir_path = os.path.dirname(os.path.realpath(__file__)) @@ -17,14 +17,6 @@ def __init__(self, parent = None): self.title = self.findChild(QtWidgets.QLabel, "title") self.parameterLayout = self.findChild(QtWidgets.QFormLayout, "parameterLayout") - # Move at the center of the window - x = int(parent.sizeHint().width() / 2 - self.sizeHint().width()) - y = int(parent.sizeHint().height() / 2 - self.sizeHint().height()) - - self.move( x, y ) - - self.layout().setSizeConstraint( QtWidgets.QLayout.SetFixedSize ) - pass def setTitle(self, title): @@ -35,9 +27,13 @@ def addParameter(self, parameterName, defaultValue): lineEdit = QtWidgets.QLineEdit(parameterName, self) lineEdit.setObjectName(parameterName) lineEdit.setText(str(defaultValue)) - self.parameterLayout.addRow(parameterName, lineEdit) + pass + def addParameterColor(self, parameterName, defaultValue): + # Custom color picker + colorButton = SelectColorButton(parameterName, self) + self.parameterLayout.addRow(parameterName, colorButton) pass def getValue(self, parameterName): @@ -54,4 +50,42 @@ def getValue(self, parameterName): except: return None else: - return None \ No newline at end of file + return None + + def getColorValue(self, parameterName): + colorButton = self.findChild(SelectColorButton, parameterName) + if colorButton is not None: + try: + return colorButton.getColor().name() + except: + return None + else: + return None + + +class SelectColorButton(QtWidgets.QPushButton): + + def __init__(self, objectName, parent = None): + + super(SelectColorButton, self).__init__() + + self.setColor( QtGui.QColor("yellow") ) + + self.setObjectName(objectName) + self.setParent(parent) + self.clicked.connect(self.changeColor) + + def setColor(self,color): + self.color = color + self.updateColor() + + def getColor(self): + return self.color + + def updateColor(self): + self.setStyleSheet( "background-color: " + self.color.name() ) + + def changeColor(self): + newColor = QtWidgets.QColorDialog.getColor(self.color, self.parentWidget()) + if newColor != self.color: + self.setColor( newColor ) \ No newline at end of file diff --git a/loadDataFilesUI.py b/loadDataFilesUI.py index 4ea7f86..b8ee276 100644 --- a/loadDataFilesUI.py +++ b/loadDataFilesUI.py @@ -1,6 +1,10 @@ -from PyQt5 import QtCore, QtWidgets, uic +from PyQt6 import QtCore, QtWidgets, uic +import pandas as pd +import os +from DataFile import DataFile -import os +from userConfig import UserConfig +from dataManager import DataManager class LoadDataFilesUI(QtWidgets.QWidget): @@ -20,71 +24,121 @@ def __init__(self, controller, parent = None): self.filePathLE = self.findChild(QtWidgets.QLineEdit, "filePathLE") self.datetimeFormatLE = self.findChild(QtWidgets.QLineEdit, "datetimeFormatLE") - + self.tabRB = self.findChild(QtWidgets.QRadioButton, "tabRB") self.commaRB = self.findChild(QtWidgets.QRadioButton, "commaRB") + self.semicolonRB = self.findChild(QtWidgets.QRadioButton, "semicolonRB") self.openFilePB = self.findChild(QtWidgets.QToolButton, "openFilePB") self.loadFilePB = self.findChild(QtWidgets.QPushButton, "loadFilePB") - self.downPB = self.findChild(QtWidgets.QLineEdit, "downPB") - self.upPB = self.findChild(QtWidgets.QLineEdit, "upPB") self.deletePB = self.findChild(QtWidgets.QLineEdit, "deletePB") self.importPB = self.findChild(QtWidgets.QPushButton, "importPB") + self.deleteDataFilePB = self.findChild(QtWidgets.QPushButton, "deleteDataFilePB") + self.errorLabel = self.findChild(QtWidgets.QLabel, "errorLabel") self.dataFilesListWidget = self.findChild(QtWidgets.QListWidget, "dataFilesListWidget") - # Default values - self.datetimeFormatLE.setText("%Y-%m-%d %H:%M:%S") - # Connect slots : open file - self.openFilePB.clicked.connect( self.openFile ) - self.loadFilePB.clicked.connect( self.loadFile ) + self.openFilePB.clicked.connect( self.openFileDialog ) + self.loadFilePB.clicked.connect( self.createDataFile ) + self.deleteDataFilePB.clicked.connect(self.deleteFile) self.importPB.clicked.connect( self.importFiles ) + + self.dataManager = DataManager() + self.userConfig = UserConfig() pass - def openFile(self): + def openFileDialog(self): + self.dataFilePath = QtWidgets.QFileDialog.getOpenFileName(self, 'Open data file', self.current_dir_path + "/data","CSV files (*.csv)")[0] + self.filePathLE.setText(self.dataFilePath) - self.dataFileName = QtWidgets.QFileDialog.getOpenFileName(self, 'Open data file', self.current_dir_path + "/data","CSV files (*.csv)")[0] - self.filePathLE.setText(self.dataFileName) + self.datetimeFormatLE.setText(self.dataManager.DatetimeFormat(self.dataFilePath)) pass - def loadFile(self): + def createDataFile(self): + + dataFile = DataFile() # try loading file by controller - separator = '\t' if self.tabRB.isChecked() else ',' - success, errorMessage = self.controller.loadData(self.dataFileName, self.datetimeFormatLE.text(), separator) + dataFile.separator = '\t' if self.tabRB.isChecked() else ',' if self.commaRB.isChecked() else ';' + dataFile.timeFormat = self.datetimeFormatLE.text() + dataFile.filePath = self.dataFilePath + dataFile.fileName = os.path.basename(self.dataFilePath) - if success: + if not dataFile.timeFormat in self.controller.dataFiles: + + dataFile.dataFrame, errorMessage = self.dataManager.loadDataFrame(dataFile) - self.errorLabel.setStyleSheet("color:green") - self.errorLabel.setText("The file has been loaded correctly.") + # Store data file in the user config parameters to later use + dataFile.timeFrame = self.dataManager.findTimeFrame(dataFile.dataFrame) - # Add file name - self.dataFilesListWidget.addItem(os.path.basename(self.dataFileName)) + if dataFile.dataFrame is not None: - else: + self.errorLabel.setStyleSheet("color:green") + self.errorLabel.setText("The file has been loaded correctly.") - self.errorLabel.setStyleSheet("color:red") - self.errorLabel.setText(errorMessage) + # Add file name + items = self.dataFilesListWidget.findItems(dataFile.fileName, QtCore.Qt.MatchFixedString) + if len(items) == 0: + self.dataFilesListWidget.addItem(os.path.basename(dataFile.filePath)) + + self.controller.dataFiles[dataFile.timeFrame] = dataFile; + self.userConfig.saveObject(dataFile.timeFrame, dataFile) + + else: + self.errorLabel.setStyleSheet("color:red") + self.errorLabel.setText(errorMessage) + else: + self.errorLabel.setStyleSheet("color:red") + self.errorLabel.setText("The file is already in the list") pass - def importFiles(self): + def loadDataFileFromConfig(self, dataPath, datetimeFormat, separator): - # Get all element in list widget - items = [] - for x in range(self.dataFilesListWidget.count()): - items.append(self.dataFilesListWidget.item(x).text()) + fileName = os.path.basename(dataPath) + df, errorMessage = self.dataManager.loadDataFrame(dataPath, datetimeFormat, separator) - # Give all ordered data path to the controller - self.controller.importData(items) - self.hide() + if df is not None: + + # Add file name + items = self.dataFilesListWidget.findItems(fileName, QtCore.Qt.MatchFixedString) + if len(items) == 0: + self.dataFilesListWidget.addItem(os.path.basename(dataPath)) + + return df + + + def deleteFile(self): + + listItems=self.dataFilesListWidget.selectedItems() + if not listItems: return + for item in listItems: + itemTaken = self.dataFilesListWidget.takeItem(self.dataFilesListWidget.row(item)) + + # Delete from dataFrames + timeFrame = self.controller.datafileName_to_dataFile[itemTaken.text()].timeFrame + + # Delete from controler + self.controller.removeTimeframe(timeFrame) + + # Delete from config + self.userConfig.removeParameter(timeFrame) + + pass + + def importFiles(self): + + # Give all ordered data path to the controller + if self.controller.importData(): + self.hide() + pass ''' diff --git a/main.py b/main.py index 77679fa..8d45805 100644 --- a/main.py +++ b/main.py @@ -17,7 +17,6 @@ # ############################################################################### -from Controller import Controller - -skinokTrader = Controller() -skinokTrader.displayUI() +from SkinokBacktraderUI import SkinokBacktraderUI +skinokTrader = SkinokBacktraderUI() +skinokTrader.displayUI() \ No newline at end of file diff --git a/observers/SkinokObserver.py b/observers/SkinokObserver.py index c5be410..9b8fde2 100644 --- a/observers/SkinokObserver.py +++ b/observers/SkinokObserver.py @@ -23,7 +23,7 @@ from backtrader import Observer -import Controller +import SkinokBacktraderUI class SkinokObserver(Observer): @@ -32,13 +32,13 @@ class SkinokObserver(Observer): def __init__(self): # Ui following - self.progressBar = Controller.interface.getProgressBar() + self.progressBar = SkinokBacktraderUI.interface.getProgressBar() self.progressBar.setMaximum(self.datas[0].close.buflen()) self.progressBar.setValue(0) - Controller.wallet.value_list = [] - Controller.wallet.equity_list = [] - Controller.wallet.cash_list = [] + SkinokBacktraderUI.wallet.value_list = [] + SkinokBacktraderUI.wallet.equity_list = [] + SkinokBacktraderUI.wallet.cash_list = [] def next(self): @@ -55,17 +55,17 @@ def next(self): pnl += trade.pnl # trade.pnlcomm if self.p.pnlcomm else trade.pnl # Portfolio update - Controller.wallet.current_value = self.wallet_value = Controller.wallet.current_value + pnl - Controller.wallet.value_list.append( Controller.wallet.current_value ) + SkinokBacktraderUI.wallet.current_value = self.wallet_value = SkinokBacktraderUI.wallet.current_value + pnl + SkinokBacktraderUI.wallet.value_list.append( SkinokBacktraderUI.wallet.current_value ) - Controller.wallet.current_equity = self.wallet_equity = self._owner.broker.getvalue() - Controller.wallet.equity_list.append(self._owner.broker.getvalue()) + SkinokBacktraderUI.wallet.current_equity = self.wallet_equity = self._owner.broker.getvalue() + SkinokBacktraderUI.wallet.equity_list.append(self._owner.broker.getvalue()) - Controller.wallet.current_cash = self.wallet_cash = self._owner.broker.getcash() - Controller.wallet.cash_list.append(self._owner.broker.getcash()) + SkinokBacktraderUI.wallet.current_cash = self.wallet_cash = self._owner.broker.getcash() + SkinokBacktraderUI.wallet.cash_list.append(self._owner.broker.getcash()) # Progress bar update self.progressBar.setValue( self.progressBar.value() + 1 ) - Controller.interface.app.processEvents() + SkinokBacktraderUI.interface.app.processEvents() \ No newline at end of file diff --git a/qt.conf b/qt.conf new file mode 100644 index 0000000..62c2c18 --- /dev/null +++ b/qt.conf @@ -0,0 +1,2 @@ +[Platforms] +WindowsArguments = dpiawareness=2 \ No newline at end of file diff --git a/solution.code-workspace b/solution.code-workspace new file mode 100644 index 0000000..876a149 --- /dev/null +++ b/solution.code-workspace @@ -0,0 +1,8 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": {} +} \ No newline at end of file diff --git a/strategies/AiStableBaselinesModel.py b/strategies/AiStableBaselinesModel.py new file mode 100644 index 0000000..85df0ad --- /dev/null +++ b/strategies/AiStableBaselinesModel.py @@ -0,0 +1,278 @@ +############################################################################### +# +# Copyright (C) 2021 - Skinok +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################### +import backtrader as bt + +import metaStrategy as mt + +from stable_baselines3 import PPO, DQN + +import numpy as np +from enum import Enum + +import pandas as pd +import pandas_ta as ta + +from custom_indicators import BollingerBandsBandwitch + +# action list +class Action(Enum): + HOLD=0 + BUY=1 + SELL=2 + +# Create a subclass of Strategy to define the indicators and logic +class AiStableBaselinesModel(mt.MetaStrategy): + + params = ( + ('model', ""), # Model name + ('tradeSize', 10.0), + ('use_ATR_SL', True), + ('atrperiod', 14), # ATR Period (standard) + ('atrdist_SL', 3.0), # ATR distance for stop price + ('atrdist_TP', 5.0), # ATR distance for take profit price + ('use_Fixed_SL', False), + ('fixed_SL', 50.0), # Fixed distance Stop Loss + ('fixed_TP', 100.0), # Fixed distance Take Profit + ) + + def notify_order(self, order): + if order.status == order.Completed: + #print("Order completed") + pass + + if not order.alive(): + self.order = None # indicate no order is pending + + def __init__(self, *argv): + + # used to modify parameters + super().__init__(argv[0]) + + # Ichi indicator + self.ichimoku = bt.ind.Ichimoku(self.data) + + # To set the stop price + self.atr = bt.indicators.ATR(self.data, period=self.p.atrperiod) + + self.stochastic = bt.ind.stochastic.Stochastic(self.data) + self.rsi = bt.ind.RelativeStrengthIndex(self.data) + self.bbands = bt.ind.BollingerBands(self.data) + self.bbandsPct = bt.ind.BollingerBandsPct(self.data) + self.bbandsBandwitch = BollingerBandsBandwitch.BollingerBandsBandwitch(self.data) + + self.sma_200 = bt.ind.MovingAverageSimple(self.data,period=200) + self.sma_150 = bt.ind.MovingAverageSimple(self.data,period=150) + self.sma_100 = bt.ind.MovingAverageSimple(self.data,period=100) + self.sma_50 = bt.ind.MovingAverageSimple(self.data,period=50) + self.sma_21 = bt.ind.MovingAverageSimple(self.data,period=21) + + self.ema_200 = bt.ind.ExponentialMovingAverage(self.data,period=200) + self.ema_100 = bt.ind.ExponentialMovingAverage(self.data,period=100) + self.ema_50 = bt.ind.ExponentialMovingAverage(self.data,period=50) + self.ema_26 = bt.ind.ExponentialMovingAverage(self.data,period=26) + self.ema_12 = bt.ind.ExponentialMovingAverage(self.data,period=12) + self.ema_9 = bt.ind.ExponentialMovingAverage(self.data,period=9) + + self.macd = bt.ind.MACDHisto(self.data) + + self.normalization_bounds_df_min = self.loadNormalizationBoundsCsv( "C:/perso/AI/AI_Framework/prepared_data/normalization_bounds_min.csv" ).transpose() + self.normalization_bounds_df_max = self.loadNormalizationBoundsCsv( "C:/perso/AI/AI_Framework/prepared_data/normalization_bounds_max.csv" ).transpose() + + pass + + def start(self): + self.order = None # sentinel to avoid operrations on pending order + + # Load the model + self.model = PPO.load(self.p.model) + #self.model = DQN.load(self.p.model) + pass + + def next(self): + + self.obseravation = self.next_observation() + + # Normalize observation + #self.normalizeObservations() + + # Do nothing if a parameter is not valid yet (basically wait for all idicators to be loaded) + + if pd.isna(self.obseravation).any(): + print("Waiting indicators") + return + + # Prepare data for Model + action, _states = self.model.predict(self.obseravation) # deterministic=True + + if not self.position: # not in the market + + # TP & SL calculation + loss_dist = self.atr[0] * self.p.atrdist_SL if self.p.use_ATR_SL else self.p.fixed_SL + profit_dist = self.atr[0] * self.p.atrdist_TP if self.p.use_ATR_SL else self.p.fixed_TP + + if action == Action.SELL.value: + self.order = self.sell(size=self.p.tradeSize) + self.lstop = self.data.close[0] + loss_dist + self.take_profit = self.data.close[0] - profit_dist + + elif action == Action.BUY.value: + self.order = self.buy(size=self.p.tradeSize) + self.lstop = self.data.close[0] - loss_dist + self.take_profit = self.data.close[0] + profit_dist + + else: # in the market + pclose = self.data.close[0] + + if (not ((self.lstoppclose>self.take_profit))): + self.close() # Close position + + pass + + # Here you have to transform self object price and indicators into a np.array input for AI Model + # How you do it depend on your AI Model inputs + # Strategy is in the data preparation for AI :D + # https://stackoverflow.com/questions/53979199/tensorflow-keras-returning-multiple-predictions-while-expecting-one + + def next_observation(self): + + # OHLCV + inputs = [ self.data.open[0],self.data.high[0],self.data.low[0],self.data.close[0],self.data.volume[0] ] + + # Ichimoku + inputs = inputs + [ self.ichimoku.senkou_span_a[0], self.ichimoku.senkou_span_b[0], self.ichimoku.tenkan_sen[0], self.ichimoku.kijun_sen[0], self.ichimoku.chikou_span[0] ] + + # Rsi + inputs = inputs + [self.rsi.rsi[0]] + + # Stochastic + inputs = inputs + [self.stochastic.percK[0], self.stochastic.percD[0]] + + # bbands + inputs = inputs + [self.bbands.bot[0]] # BBL + inputs = inputs + [self.bbands.mid[0]] # BBM + inputs = inputs + [self.bbands.top[0]] # BBU + inputs = inputs + [self.bbandsBandwitch.bandwitch[0]] # BBB + inputs = inputs + [self.bbandsPct.pctb[0]] # BBP + + # sma + inputs = inputs + [self.sma_200.sma[0]] + inputs = inputs + [self.sma_150.sma[0]] + inputs = inputs + [self.sma_100.sma[0]] + inputs = inputs + [self.sma_50.sma[0]] + inputs = inputs + [self.sma_21.sma[0]] + + # ema + inputs = inputs + [self.ema_200.ema[0]] + inputs = inputs + [self.ema_100.ema[0]] + inputs = inputs + [self.ema_50.ema[0]] + inputs = inputs + [self.ema_26.ema[0]] + inputs = inputs + [self.ema_12.ema[0]] + inputs = inputs + [self.ema_9.ema[0]] + + # macd + inputs = inputs + [self.macd.macd[0]] # MACD + inputs = inputs + [self.macd.histo[0]] # MACD histo + inputs = inputs + [self.macd.signal[0]] # MACD signal + + return np.array(inputs) + + pass + + + def normalizeObservations(self): + + MIN_BITCOIN_VALUE = 10_000.0 + MAX_BITCOIN_VALUE = 80_000.0 + + self.obseravation_normalized = np.empty(len(self.obseravation)) + try: + # Normalize data + for index, value in enumerate(self.obseravation): + if value < 100.0: + self.obseravation_normalized[index] = (value - 0.0) / (100.0 - 0.0) + else: + self.obseravation_normalized[index] = (value - MIN_BITCOIN_VALUE) / (MAX_BITCOIN_VALUE - MIN_BITCOIN_VALUE) + + #self.obseravation_normalized = (self.obseravation-self.normalization_bounds_df_min) / (self.normalization_bounds_df_max-self.normalization_bounds_df_min) + + + except ValueError as err: + return None, "ValueError error:" + str(err) + except AttributeError as err: + return None, "AttributeError error:" + str(err) + except IndexError as err: + return None, "IndexError error:" + str(err) + except: + aie = 1 + + pass + + def loadNormalizationBoundsCsv(self, filePath): + + # Try importing data file + # We should code a widget that ask for options as : separators, date format, and so on... + try: + + # Python contains + if pd.__version__<'2.0.0': + df = pd.read_csv(filePath, + sep=";", + parse_dates=None, + date_parser=lambda x: pd.to_datetime(x, format=""), + skiprows=0, + header=None, + index_col=0) + else: + df = pd.read_csv(filePath, + sep=";", + parse_dates=None, + date_format="", + skiprows=0, + header=None, + index_col=0) + + return df + + except ValueError as err: + return None, "ValueError error:" + str(err) + except AttributeError as err: + return None, "AttributeError error:" + str(err) + except IndexError as err: + return None, "IndexError error:" + str(err) + + pass + + + # https://stackoverflow.com/questions/53321608/extract-dataframe-from-pandas-datafeed-in-backtrader + def __bt_to_pandas__(self, btdata, len): + get = lambda mydata: mydata.get(ago=0, size=len) + + fields = { + 'open': get(btdata.open), + 'high': get(btdata.high), + 'low': get(btdata.low), + 'close': get(btdata.close), + 'volume': get(btdata.volume) + } + time = [btdata.num2date(x) for x in get(btdata.datetime)] + + return pd.DataFrame(data=fields, index=time) + + pass + diff --git a/strategies/AiTensorFlowModel.py b/strategies/AiTensorFlowModel.py new file mode 100644 index 0000000..1480945 --- /dev/null +++ b/strategies/AiTensorFlowModel.py @@ -0,0 +1,171 @@ +############################################################################### +# +# Copyright (C) 2021 - Skinok +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################### +import backtrader as bt + +import metaStrategy as mt + +import tensorflow as tf +import numpy as np +from enum import Enum + +# action list +class Action(Enum): + HOLD=0 + BUY=1 + SELL=2 + +# Create a subclass of Strategy to define the indicators and logic +class AiTensorFlowModel(mt.MetaStrategy): + + params = ( + ('model', ""), # Model name + ('tradeSize', 2000), + ('atrperiod', 14), # ATR Period (standard) + ('atrdist_SL', 3), # ATR distance for stop price + ('atrdist_TP', 5), # ATR distance for take profit price + ('tenkan', 9), + ('kijun', 26), + ('senkou', 52), + ('senkou_lead', 26), # forward push + ('chikou', 26), # backwards push + ) + + def notify_order(self, order): + if order.status == order.Completed: + #print("Order completed") + pass + + if not order.alive(): + self.order = None # indicate no order is pending + + def __init__(self, *argv): + + # used to modify parameters + super().__init__(argv[0]) + + # Ichi indicator + self.ich = bt.ind.Ichimoku() + ''' + self.data, + tenkan=self.params.tenkan, + kijun=self.params.kijun, + senkou=self.params.senkou, + senkou_lead=self.params.senkou_lead, + chikou=self.params.chikou) + ''' + + # To set the stop price + self.atr = bt.indicators.ATR(self.data, period=self.p.atrperiod) + + self.stochastic = bt.ind.stochastic.Stochastic(self.data) + + pass + + def start(self): + self.order = None # sentinel to avoid operrations on pending order + + # Load the model + self.model = tf.keras.models.load_model(self.p.model) + pass + + def next(self): + + self.ai_ready = self.prepareData() + + if self.order or not self.ai_ready: + return # pending order execution + + # Prepare data for Model + predicted_actions = self.model.predict_step([self.ai_inputs]) + + # Take action with the most credibility + action = np.argmax( predicted_actions ) + + if not self.position: # not in the market + + if action == Action.SELL.value: + self.order = self.sell(size=self.p.tradeSize) + ldist = self.atr[0] * self.p.atrdist_SL + self.lstop = self.data.close[0] + ldist + pdist = self.atr[0] * self.p.atrdist_TP + self.take_profit = self.data.close[0] - pdist + + elif action == Action.BUY.value: + self.order = self.buy(size=self.p.tradeSize) + ldist = self.atr[0] * self.p.atrdist_SL + self.lstop = self.data.close[0] - ldist + pdist = self.atr[0] * self.p.atrdist_TP + self.take_profit = self.data.close[0] + pdist + + else: # in the market + pclose = self.data.close[0] + pstop = self.lstop # seems to be the bug + + if (not ((pstoppclose>self.take_profit))): + self.close() # Close position + + pass + + # Here you have to transform self object price and indicators into a np.array input for AI Model + # How you do it depend on your AI Model inputs + # Strategy is in the data preparation for AI :D + def prepareData(self): + + # https://stackoverflow.com/questions/53979199/tensorflow-keras-returning-multiple-predictions-while-expecting-one + + inputs_array = np.array([[ self.stochastic.percK[0] / 100.0, self.stochastic.percD[0] / 100.0 ]]) + + self.ai_inputs = inputs_array + + return True + """ + if len(self.ich.l.tenkan_sen) > 0 and len(self.ich.kijun_sen) > 0 and len(self.ich.senkou_span_a) > 0 and len(self.ich.senkou_span_b) > 0 and len(self.ich.chikou_span) > 0: + + tenkan_sen = self.ich.tenkan_sen[0] + kijun_sen = self.ich.kijun_sen[0] + senkou_span_a = self.ich.senkou_span_a[0] + senkou_span_b = self.ich.senkou_span_b[0] + chikou_span = self.ich.chikou_span[0] + + diff_tenkan = self.data.close[0] - tenkan_sen + diff_kijun = self.data.close[0] - kijun_sen + diff_senkou_span_a = self.data.close[0] - senkou_span_a + diff_senkou_span_b = self.data.close[0] - senkou_span_b + diff_chikou_span = self.data.close[0] - chikou_span + + inputs_array = [ diff_tenkan, + diff_kijun, + diff_senkou_span_a, + diff_senkou_span_b, + diff_chikou_span + ] + + #NormaizeArray(inputs_array) + + # AI Input + + self.ai_inputs = np.array(inputs_array).reshape(1,5) + + # AI data are ready + return True + else: + return False + """ + + pass \ No newline at end of file diff --git a/strategies/AiTorchModel.py b/strategies/AiTorchModel.py new file mode 100644 index 0000000..5a38964 --- /dev/null +++ b/strategies/AiTorchModel.py @@ -0,0 +1,172 @@ +############################################################################### +# +# Copyright (C) 2021 - Skinok +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################### +import backtrader as bt + +import metaStrategy as mt + +import numpy as np +from enum import Enum + +import torch + +# action list +class Action(Enum): + HOLD=0 + BUY=1 + SELL=2 + +# Create a subclass of Strategy to define the indicators and logic +class AiTorchModel(mt.MetaStrategy): + + params = ( + ('model', ""), # Model name + ('tradeSize', 2000), + ('atrperiod', 14), # ATR Period (standard) + ('atrdist_SL', 3), # ATR distance for stop price + ('atrdist_TP', 5), # ATR distance for take profit price + ('tenkan', 9), + ('kijun', 26), + ('senkou', 52), + ('senkou_lead', 26), # forward push + ('chikou', 26), # backwards push + ) + + def notify_order(self, order): + if order.status == order.Completed: + #print("Order completed") + pass + + if not order.alive(): + self.order = None # indicate no order is pending + + def __init__(self, *argv): + + # used to modify parameters + super().__init__(argv[0]) + + # Ichi indicator + self.ich = bt.ind.Ichimoku() + ''' + self.data, + tenkan=self.params.tenkan, + kijun=self.params.kijun, + senkou=self.params.senkou, + senkou_lead=self.params.senkou_lead, + chikou=self.params.chikou) + ''' + + # To set the stop price + self.atr = bt.indicators.ATR(self.data, period=self.p.atrperiod) + + self.stochastic = bt.ind.stochastic.Stochastic(self.data) + + pass + + def start(self): + self.order = None # sentinel to avoid operrations on pending order + + # Load the model + self.model = torch.load(self.p.model) + pass + + def next(self): + + self.ai_ready = self.prepareData() + + if self.order or not self.ai_ready: + return # pending order execution + + # Prepare data for Model + predicted_actions = self.model.predict_step([self.ai_inputs]) + + # Take action with the most credibility + action = np.argmax( predicted_actions ) + + if not self.position: # not in the market + + if action == Action.SELL.value: + self.order = self.sell(size=self.p.tradeSize) + ldist = self.atr[0] * self.p.atrdist_SL + self.lstop = self.data.close[0] + ldist + pdist = self.atr[0] * self.p.atrdist_TP + self.take_profit = self.data.close[0] - pdist + + elif action == Action.BUY.value: + self.order = self.buy(size=self.p.tradeSize) + ldist = self.atr[0] * self.p.atrdist_SL + self.lstop = self.data.close[0] - ldist + pdist = self.atr[0] * self.p.atrdist_TP + self.take_profit = self.data.close[0] + pdist + + else: # in the market + pclose = self.data.close[0] + pstop = self.lstop # seems to be the bug + + if (not ((pstoppclose>self.take_profit))): + self.close() # Close position + + pass + + # Here you have to transform self object price and indicators into a np.array input for AI Model + # How you do it depend on your AI Model inputs + # Strategy is in the data preparation for AI :D + def prepareData(self): + + # https://stackoverflow.com/questions/53979199/tensorflow-keras-returning-multiple-predictions-while-expecting-one + + inputs_array = np.array([[ self.stochastic.percK[0] / 100.0, self.stochastic.percD[0] / 100.0 ]]) + + self.ai_inputs = inputs_array + + return True + """ + if len(self.ich.l.tenkan_sen) > 0 and len(self.ich.kijun_sen) > 0 and len(self.ich.senkou_span_a) > 0 and len(self.ich.senkou_span_b) > 0 and len(self.ich.chikou_span) > 0: + + tenkan_sen = self.ich.tenkan_sen[0] + kijun_sen = self.ich.kijun_sen[0] + senkou_span_a = self.ich.senkou_span_a[0] + senkou_span_b = self.ich.senkou_span_b[0] + chikou_span = self.ich.chikou_span[0] + + diff_tenkan = self.data.close[0] - tenkan_sen + diff_kijun = self.data.close[0] - kijun_sen + diff_senkou_span_a = self.data.close[0] - senkou_span_a + diff_senkou_span_b = self.data.close[0] - senkou_span_b + diff_chikou_span = self.data.close[0] - chikou_span + + inputs_array = [ diff_tenkan, + diff_kijun, + diff_senkou_span_a, + diff_senkou_span_b, + diff_chikou_span + ] + + #NormaizeArray(inputs_array) + + # AI Input + + self.ai_inputs = np.array(inputs_array).reshape(1,5) + + # AI data are ready + return True + else: + return False + """ + + pass \ No newline at end of file diff --git a/strategies/sma_crossover.py b/strategies/sma_crossover.py index 9289add..cef5774 100644 --- a/strategies/sma_crossover.py +++ b/strategies/sma_crossover.py @@ -53,11 +53,11 @@ class sma_crossover(mt.MetaStrategy): params = ( # period for the fast Moving Average - ('fast', 15), + ('fast', 5), # period for the slow moving average ('slow', 30), # Trade size - ('tradeSize', 2000) + ('tradeSize', 500) ) def __init__(self, *argv): diff --git a/strategyResultsUI.py b/strategyResultsUI.py index 97fcfb5..db49285 100644 --- a/strategyResultsUI.py +++ b/strategyResultsUI.py @@ -1,19 +1,21 @@ -from PyQt5 import QtCore, QtWidgets, uic +from PyQt6 import QtCore, QtWidgets, uic import os class StrategyResultsUI(QtWidgets.QWidget): - def __init__(self, controller): + def __init__(self, controller, parent = None): super(StrategyResultsUI, self).__init__() self.controller = controller + self.parent = parent + # It does not finish by a "/" self.current_dir_path = os.path.dirname(os.path.realpath(__file__)) uic.loadUi( self.current_dir_path + "/ui/strategyResults.ui", self) - self.SummaryGB = self.findChild(QtWidgets.QGroupBox, "SummaryGB") + self.summaryTableWidget= self.findChild(QtWidgets.QTableWidget, "summaryTableWidget") self.TradesGB = self.findChild(QtWidgets.QGroupBox, "TradesGB") \ No newline at end of file diff --git a/strategyTesterUI.py b/strategyTesterUI.py index c9bd13b..d373532 100644 --- a/strategyTesterUI.py +++ b/strategyTesterUI.py @@ -1,28 +1,56 @@ -from PyQt5 import QtCore, QtWidgets, uic +from PyQt6 import QtCore, QtWidgets, uic import os +import loadDataFilesUI class StrategyTesterUI(QtWidgets.QWidget): - def __init__(self, controller): + def __init__(self, controller, parentWindow): super(StrategyTesterUI, self).__init__() self.controller = controller + self.parent = parentWindow + # It does not finish by a "/" self.current_dir_path = os.path.dirname(os.path.realpath(__file__)) uic.loadUi( self.current_dir_path + "/ui/strategyTester.ui", self) + + # Data + self.importDataBtn = self.findChild(QtWidgets.QPushButton, "importDataBtn") + self.importDataBtn.clicked.connect( self.loadData ) - self.runBacktestPB = self.findChild(QtWidgets.QPushButton, "runBacktestPB") - self.runBacktestPB.clicked.connect(self.run) + # Strategy type PushButtons + self.strategyTypeAITensorFlowBtn = self.findChild(QtWidgets.QPushButton, "strategyTypeAITensorFlowBtn") + self.strategyTypeAiStablebaselinesBtn = self.findChild(QtWidgets.QPushButton, "strategyTypeAiStablebaselinesBtn") + self.strategyTypeAlgoBtn = self.findChild(QtWidgets.QPushButton, "strategyTypeAlgoBtn") + self.strategyTypeAiTorchBtn = self.findChild(QtWidgets.QPushButton, "strategyTypeAiTorchBtn") + + self.strategyTypeDetailsSW = self.findChild(QtWidgets.QStackedWidget, "strategyTypeDetailsSW") - self.runningStratPB = self.findChild(QtWidgets.QProgressBar, "runningStratPB") + # Ai Algo + self.AiModelPathLE = self.findChild(QtWidgets.QLineEdit, "AiModelPathLE") + self.AiModelPathBtn = self.findChild(QtWidgets.QPushButton, "AiModelPathBtn") + # Custom Algo + self.runningStratBtn = self.findChild(QtWidgets.QProgressBar, "runningStratBtn") self.strategyNameCB = self.findChild(QtWidgets.QComboBox, "strategyNameCB") + + # Run button + self.runBacktestBtn = self.findChild(QtWidgets.QPushButton, "runBacktestBtn") + + # Connect ui buttons + self.strategyTypeAITensorFlowBtn.clicked.connect(self.loadTFModel) + self.strategyTypeAiStablebaselinesBtn.clicked.connect(self.loadStableBaselinesModel) + self.strategyTypeAiTorchBtn.clicked.connect(self.loadTorchModel) + self.strategyTypeAlgoBtn.clicked.connect(self.strategyTypeAlgoActivated) + self.strategyNameCB.currentIndexChanged.connect(self.strategyNameActivated) + self.runBacktestBtn.clicked.connect(self.run) - self.runBacktestPB.setEnabled(False) + # Init Run button to false waiting for user inputs + self.runBacktestBtn.setEnabled(False) def initialize(self): @@ -32,16 +60,72 @@ def initialize(self): # Remove straty .py file name self.strategyBaseName = [] for stratName in self.strategyNames: - self.strategyBaseName.append(QtCore.QFileInfo(stratName).baseName()) + # here remove file extension + if not stratName.startswith('Ai'): + self.strategyBaseName.append(QtCore.QFileInfo(stratName).baseName()) self.strategyNameCB.addItems(self.strategyBaseName) - + self.strategyNameCB.setCurrentIndex(self.strategyNameCB.count()-1) + + # + self.loadDataFileUI = loadDataFilesUI.LoadDataFilesUI(self.controller, self.parent) + self.loadDataFileUI.hide() + pass + + def loadData(self): + self.loadDataFileUI.show() pass def run(self): self.controller.run() + pass def strategyNameActivated(self): stratBaseName = self.strategyNameCB.currentText() self.controller.addStrategy(stratBaseName) - \ No newline at end of file + pass + + def strategyTypeAlgoActivated(self): + if self.strategyTypeAlgoBtn.isChecked(): + self.strategyTypeDetailsSW.setCurrentIndex(0) + pass + + + # Load an AI Model from Tensor Flow framework + def loadTFModel(self): + + ai_model_dir = QtWidgets.QFileDialog.getExistingDirectory(self.parent,"Open Tensorflow Model", self.current_dir_path) + + self.controller.addStrategy("AiTensorFlowModel") + self.strategyTypeDetailsSW.setCurrentIndex(1) + + self.AiModelPathLE.setText(ai_model_dir) + self.controller.strategyParametersSave("model", ai_model_dir) + + pass + + # Load an AI Model from Stable Baselines framework + def loadStableBaselinesModel(self): + + ai_model_zip_file = QtWidgets.QFileDialog.getOpenFileName(self.parent,"Open Torch Model", self.current_dir_path, "*.zip")[0] + + self.controller.addStrategy("AiStableBaselinesModel") + self.strategyTypeDetailsSW.setCurrentIndex(1) + + self.AiModelPathLE.setText(ai_model_zip_file) + self.controller.strategyParametersSave("model", ai_model_zip_file) + + pass + + # Load an AI Model from Py Torch framework + def loadTorchModel(self): + + ai_model_zip_file = QtWidgets.QFileDialog.getOpenFileName(self.parent,"Open Torch Model", self.current_dir_path, "*.zip")[0] + + self.controller.addStrategy("AiTorchModel") + self.strategyTypeDetailsSW.setCurrentIndex(1) + + self.AiModelPathLE.setText(ai_model_zip_file) + self.controller.strategyParametersSave("model", ai_model_zip_file) + + pass \ No newline at end of file diff --git a/ui/indicatorParameters.ui b/ui/indicatorParameters.ui index 785c825..f244475 100644 --- a/ui/indicatorParameters.ui +++ b/ui/indicatorParameters.ui @@ -11,7 +11,7 @@ - Dialog + Custom indicator configuration @@ -29,7 +29,7 @@ - Indicator + Customize indicator Qt::AlignCenter diff --git a/ui/loadDataFiles.ui b/ui/loadDataFiles.ui index eeef594..ba02cdb 100644 --- a/ui/loadDataFiles.ui +++ b/ui/loadDataFiles.ui @@ -6,8 +6,8 @@ 0 0 - 596 - 440 + 488 + 458 @@ -27,12 +27,18 @@ - List of all files to import in cerebro + List of data files to import + + + 0 + 40 + + Import all data files @@ -41,59 +47,15 @@ - - - - 0 - 0 - - - - - 16777215 - 16777215 - - - - Down - - - - - - - - 0 - 0 - - + - 16777215 + 40 16777215 - Up - - - - - - - - 0 - 0 - - - - - 16777215 - 16777215 - - - - Delete + X @@ -118,20 +80,17 @@ Loading a new data file - - + + - Import a new data file + semicolon - - - - - + + - ... + Import a new data file @@ -142,17 +101,14 @@ - - - - + Separator - + tab @@ -162,21 +118,37 @@ - + comma - + + + + + + + ... + + + + + + + 0 + 40 + + - Load file + Load .CSV file - + color: red @@ -189,6 +161,9 @@ + + + diff --git a/ui/loadDataFiles_ui.py b/ui/loadDataFiles_ui.py new file mode 100644 index 0000000..eb9b894 --- /dev/null +++ b/ui/loadDataFiles_ui.py @@ -0,0 +1,111 @@ +# Form implementation generated from reading ui file 'c:\perso\trading\anaconda3\backtrader-ichimoku\ui\loadDataFiles.ui' +# +# Created by: PyQt6 UI code generator 6.5.0 +# +# WARNING: Any manual changes made to this file will be lost when pyuic6 is +# run again. Do not edit this file unless you know what you are doing. + + +from PyQt6 import QtCore, QtGui, QtWidgets + + +class Ui_Form(object): + def setupUi(self, Form): + Form.setObjectName("Form") + Form.resize(488, 458) + self.gridLayout_2 = QtWidgets.QGridLayout(Form) + self.gridLayout_2.setObjectName("gridLayout_2") + self.dataFilesListWidget = QtWidgets.QListWidget(parent=Form) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.dataFilesListWidget.sizePolicy().hasHeightForWidth()) + self.dataFilesListWidget.setSizePolicy(sizePolicy) + self.dataFilesListWidget.setObjectName("dataFilesListWidget") + self.gridLayout_2.addWidget(self.dataFilesListWidget, 3, 0, 1, 1) + self.label_4 = QtWidgets.QLabel(parent=Form) + self.label_4.setObjectName("label_4") + self.gridLayout_2.addWidget(self.label_4, 2, 0, 1, 1) + self.importPB = QtWidgets.QPushButton(parent=Form) + self.importPB.setMinimumSize(QtCore.QSize(0, 40)) + self.importPB.setObjectName("importPB") + self.gridLayout_2.addWidget(self.importPB, 5, 0, 1, 2) + self.verticalLayout = QtWidgets.QVBoxLayout() + self.verticalLayout.setObjectName("verticalLayout") + self.deleteDataFilePB = QtWidgets.QPushButton(parent=Form) + self.deleteDataFilePB.setMaximumSize(QtCore.QSize(40, 16777215)) + self.deleteDataFilePB.setObjectName("deleteDataFilePB") + self.verticalLayout.addWidget(self.deleteDataFilePB) + spacerItem = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding) + self.verticalLayout.addItem(spacerItem) + self.gridLayout_2.addLayout(self.verticalLayout, 3, 1, 1, 1) + self.groupBox = QtWidgets.QGroupBox(parent=Form) + self.groupBox.setObjectName("groupBox") + self.gridLayout = QtWidgets.QGridLayout(self.groupBox) + self.gridLayout.setObjectName("gridLayout") + self.semicolonRB = QtWidgets.QRadioButton(parent=self.groupBox) + self.semicolonRB.setObjectName("semicolonRB") + self.gridLayout.addWidget(self.semicolonRB, 3, 3, 1, 1) + self.label = QtWidgets.QLabel(parent=self.groupBox) + self.label.setObjectName("label") + self.gridLayout.addWidget(self.label, 0, 0, 1, 1) + self.label_3 = QtWidgets.QLabel(parent=self.groupBox) + self.label_3.setObjectName("label_3") + self.gridLayout.addWidget(self.label_3, 1, 0, 1, 1) + self.label_2 = QtWidgets.QLabel(parent=self.groupBox) + self.label_2.setObjectName("label_2") + self.gridLayout.addWidget(self.label_2, 3, 0, 1, 1) + self.tabRB = QtWidgets.QRadioButton(parent=self.groupBox) + self.tabRB.setChecked(True) + self.tabRB.setObjectName("tabRB") + self.gridLayout.addWidget(self.tabRB, 3, 1, 1, 1) + self.commaRB = QtWidgets.QRadioButton(parent=self.groupBox) + self.commaRB.setObjectName("commaRB") + self.gridLayout.addWidget(self.commaRB, 3, 2, 1, 1) + self.filePathLE = QtWidgets.QLineEdit(parent=self.groupBox) + self.filePathLE.setObjectName("filePathLE") + self.gridLayout.addWidget(self.filePathLE, 0, 1, 1, 3) + self.openFilePB = QtWidgets.QToolButton(parent=self.groupBox) + self.openFilePB.setObjectName("openFilePB") + self.gridLayout.addWidget(self.openFilePB, 0, 4, 1, 1) + self.loadFilePB = QtWidgets.QPushButton(parent=self.groupBox) + self.loadFilePB.setMinimumSize(QtCore.QSize(0, 40)) + self.loadFilePB.setObjectName("loadFilePB") + self.gridLayout.addWidget(self.loadFilePB, 4, 1, 1, 4) + self.errorLabel = QtWidgets.QLabel(parent=self.groupBox) + self.errorLabel.setStyleSheet("color: red") + self.errorLabel.setText("") + self.errorLabel.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) + self.errorLabel.setObjectName("errorLabel") + self.gridLayout.addWidget(self.errorLabel, 5, 0, 1, 5) + self.datetimeFormatLE = QtWidgets.QLineEdit(parent=self.groupBox) + self.datetimeFormatLE.setObjectName("datetimeFormatLE") + self.gridLayout.addWidget(self.datetimeFormatLE, 1, 1, 1, 3) + self.gridLayout_2.addWidget(self.groupBox, 0, 0, 1, 2) + self.label_5 = QtWidgets.QLabel(parent=Form) + self.label_5.setStyleSheet("font-style: italic") + self.label_5.setScaledContents(False) + self.label_5.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) + self.label_5.setWordWrap(True) + self.label_5.setObjectName("label_5") + self.gridLayout_2.addWidget(self.label_5, 4, 0, 1, 1) + + self.retranslateUi(Form) + QtCore.QMetaObject.connectSlotsByName(Form) + + def retranslateUi(self, Form): + _translate = QtCore.QCoreApplication.translate + Form.setWindowTitle(_translate("Form", "Import one or multiple data files")) + self.label_4.setText(_translate("Form", "List of data files to import")) + self.importPB.setText(_translate("Form", "Import all data files")) + self.deleteDataFilePB.setText(_translate("Form", "X")) + self.groupBox.setTitle(_translate("Form", "Loading a new data file")) + self.semicolonRB.setText(_translate("Form", "semicolon")) + self.label.setText(_translate("Form", "Import a new data file")) + self.label_3.setText(_translate("Form", "Date time format")) + self.label_2.setText(_translate("Form", "Separator")) + self.tabRB.setText(_translate("Form", "tab")) + self.commaRB.setText(_translate("Form", "comma")) + self.openFilePB.setText(_translate("Form", "...")) + self.loadFilePB.setText(_translate("Form", "Load .CSV file")) + self.label_5.setText(_translate("Form", "Files should be ordered from lower (on top) to higher timeframe (at bottom).")) diff --git a/ui/strategyResults.ui b/ui/strategyResults.ui index f10db6d..b950afe 100644 --- a/ui/strategyResults.ui +++ b/ui/strategyResults.ui @@ -6,42 +6,21 @@ 0 0 - 963 - 284 + 989 + 200 + + + 0 + 200 + + Form - - - - - - 200 - 0 - - - - - 250 - 16777215 - - - - - - - Strategy summary - - - - - - - - - + + 0 @@ -68,6 +47,54 @@ + + + + + 0 + 0 + + + + + 16 + + + + Results + + + Qt::AlignCenter + + + + + + + + 100 + 0 + + + + + 210 + 16777215 + + + + + true + + + + border:0 + + + true + + + diff --git a/ui/strategyResults_ui.py b/ui/strategyResults_ui.py new file mode 100644 index 0000000..86b0638 --- /dev/null +++ b/ui/strategyResults_ui.py @@ -0,0 +1,72 @@ +# Form implementation generated from reading ui file 'c:\perso\trading\anaconda3\backtrader-ichimoku\ui\strategyResults.ui' +# +# Created by: PyQt6 UI code generator 6.5.0 +# +# WARNING: Any manual changes made to this file will be lost when pyuic6 is +# run again. Do not edit this file unless you know what you are doing. + + +from PyQt6 import QtCore, QtGui, QtWidgets + + +class Ui_StrategyResults(object): + def setupUi(self, StrategyResults): + StrategyResults.setObjectName("StrategyResults") + StrategyResults.resize(989, 200) + StrategyResults.setMinimumSize(QtCore.QSize(0, 200)) + self.gridLayout_4 = QtWidgets.QGridLayout(StrategyResults) + self.gridLayout_4.setObjectName("gridLayout_4") + self.ResultsTabWidget = QtWidgets.QTabWidget(parent=StrategyResults) + self.ResultsTabWidget.setObjectName("ResultsTabWidget") + self.tradeTab = QtWidgets.QWidget() + self.tradeTab.setObjectName("tradeTab") + self.gridLayout_3 = QtWidgets.QGridLayout(self.tradeTab) + self.gridLayout_3.setObjectName("gridLayout_3") + self.horizontalLayout = QtWidgets.QHBoxLayout() + self.horizontalLayout.setObjectName("horizontalLayout") + self.gridLayout_3.addLayout(self.horizontalLayout, 0, 0, 1, 1) + self.ResultsTabWidget.addTab(self.tradeTab, "") + self.walletTab = QtWidgets.QWidget() + self.walletTab.setObjectName("walletTab") + self.gridLayout_5 = QtWidgets.QGridLayout(self.walletTab) + self.gridLayout_5.setObjectName("gridLayout_5") + self.horizontalLayout_2 = QtWidgets.QHBoxLayout() + self.horizontalLayout_2.setObjectName("horizontalLayout_2") + self.gridLayout_5.addLayout(self.horizontalLayout_2, 0, 0, 1, 1) + self.ResultsTabWidget.addTab(self.walletTab, "") + self.gridLayout_4.addWidget(self.ResultsTabWidget, 0, 1, 3, 1) + self.label_4 = QtWidgets.QLabel(parent=StrategyResults) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Maximum) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.label_4.sizePolicy().hasHeightForWidth()) + self.label_4.setSizePolicy(sizePolicy) + font = QtGui.QFont() + font.setPointSize(16) + self.label_4.setFont(font) + self.label_4.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) + self.label_4.setObjectName("label_4") + self.gridLayout_4.addWidget(self.label_4, 0, 0, 1, 1) + self.summaryTableWidget = QtWidgets.QTableWidget(parent=StrategyResults) + self.summaryTableWidget.setMinimumSize(QtCore.QSize(100, 0)) + self.summaryTableWidget.setMaximumSize(QtCore.QSize(210, 16777215)) + font = QtGui.QFont() + font.setKerning(True) + self.summaryTableWidget.setFont(font) + self.summaryTableWidget.setStyleSheet("border:0") + self.summaryTableWidget.setShowGrid(True) + self.summaryTableWidget.setObjectName("summaryTableWidget") + self.summaryTableWidget.setColumnCount(0) + self.summaryTableWidget.setRowCount(0) + self.gridLayout_4.addWidget(self.summaryTableWidget, 1, 0, 1, 1) + + self.retranslateUi(StrategyResults) + self.ResultsTabWidget.setCurrentIndex(0) + QtCore.QMetaObject.connectSlotsByName(StrategyResults) + + def retranslateUi(self, StrategyResults): + _translate = QtCore.QCoreApplication.translate + StrategyResults.setWindowTitle(_translate("StrategyResults", "Form")) + self.ResultsTabWidget.setTabText(self.ResultsTabWidget.indexOf(self.tradeTab), _translate("StrategyResults", "Trades")) + self.ResultsTabWidget.setTabText(self.ResultsTabWidget.indexOf(self.walletTab), _translate("StrategyResults", "Wallet")) + self.label_4.setText(_translate("StrategyResults", "Results")) diff --git a/ui/strategyTester.ui b/ui/strategyTester.ui index d5af77e..2ca941a 100644 --- a/ui/strategyTester.ui +++ b/ui/strategyTester.ui @@ -6,177 +6,360 @@ 0 0 - 238 - 699 + 270 + 694 + + + 270 + 0 + + Form - - - - - Back testing - - - - - - 0 - - - - - - - - 0 - 0 - - - - - 200 - 0 - - - - - - - - Parameters - - - - - - - Qt::Vertical - - - QSizePolicy::Preferred - - - - 20 - 20 - - - - - - - - Strategy - - - - - - - - - - - - - - true - - - - 0 - 0 - - - - - 0 - 50 - - - - Run - - - - - - - - 0 - 0 - - - - - 0 - 50 - - - - - 16777215 - 250 - - - - true - - - - - 0 - 0 - 198 - 69 - + + + + + + 0 + 0 + + + + + 12 + 50 + false + false + false + + + + Data + + + + + + + + + Import data + + + + + + + + + + 0 + 0 + + + + + 12 + 50 + false + + + + Strategy + + + + + + + + + + 0 + 0 + + + + Ai +TF + + + true + + + true + + + + + + + + 0 + 0 + + + + Ai + SB3 + + + true + + + true + + + + + + + + 0 + 0 + + + + Ai +Torch + + + true + + + true + + + + + + + + 0 + 0 + + + + Algorithm + + + true + + + true + + + + + + + + + + 0 + 0 + + + + + 0 + 0 + + + + 1 + + + + + + + + + + Custom strategy - - - - - - - - - - - 9 - - - - - Starting cash - - - - - - - - - - - - - - - - Qt::Vertical - - - - 20 - 40 - + + + + + + + + + AI Model + + + + + + + + + + + + + + + 0 + 0 + + + + + 12 + 50 + false + + + + Parameters + + + + + + + + + 9 + + + + + + + + + + + + Starting cash + + + + + + + + + + 0 + 0 + + + + + 0 + 50 + + + + + 16777215 + 250 + + + + true + + + + + 0 + 0 + 248 + 69 + - - - + + + + + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + true + + + + 0 + 0 + + + + + 0 + 50 + + + + Run + + + + + + + 0 + + + + + + + + + + + + + + + + + 0 + 0 + + + + + 16 + + + + BackTest + + + Qt::AlignCenter + diff --git a/ui/strategyTester_ui.py b/ui/strategyTester_ui.py new file mode 100644 index 0000000..7cabd95 --- /dev/null +++ b/ui/strategyTester_ui.py @@ -0,0 +1,232 @@ +# Form implementation generated from reading ui file 'c:\perso\trading\anaconda3\backtrader-ichimoku\ui\strategyTester.ui' +# +# Created by: PyQt6 UI code generator 6.5.0 +# +# WARNING: Any manual changes made to this file will be lost when pyuic6 is +# run again. Do not edit this file unless you know what you are doing. + + +from PyQt6 import QtCore, QtGui, QtWidgets + + +class Ui_Form(object): + def setupUi(self, Form): + Form.setObjectName("Form") + Form.resize(270, 694) + Form.setMinimumSize(QtCore.QSize(270, 0)) + self.gridLayout = QtWidgets.QGridLayout(Form) + self.gridLayout.setObjectName("gridLayout") + self.label_7 = QtWidgets.QLabel(parent=Form) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Maximum) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.label_7.sizePolicy().hasHeightForWidth()) + self.label_7.setSizePolicy(sizePolicy) + font = QtGui.QFont() + font.setPointSize(12) + font.setBold(False) + font.setUnderline(False) + font.setWeight(50) + font.setStrikeOut(False) + self.label_7.setFont(font) + self.label_7.setObjectName("label_7") + self.gridLayout.addWidget(self.label_7, 1, 0, 1, 1) + self.horizontalLayout_2 = QtWidgets.QHBoxLayout() + self.horizontalLayout_2.setObjectName("horizontalLayout_2") + self.importDataBtn = QtWidgets.QPushButton(parent=Form) + self.importDataBtn.setObjectName("importDataBtn") + self.horizontalLayout_2.addWidget(self.importDataBtn) + self.gridLayout.addLayout(self.horizontalLayout_2, 2, 0, 1, 2) + self.label_6 = QtWidgets.QLabel(parent=Form) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Maximum) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.label_6.sizePolicy().hasHeightForWidth()) + self.label_6.setSizePolicy(sizePolicy) + font = QtGui.QFont() + font.setPointSize(12) + font.setBold(False) + font.setWeight(50) + self.label_6.setFont(font) + self.label_6.setObjectName("label_6") + self.gridLayout.addWidget(self.label_6, 3, 0, 1, 1) + self.horizontalLayout = QtWidgets.QHBoxLayout() + self.horizontalLayout.setObjectName("horizontalLayout") + self.strategyTypeAITensorFlowBtn = QtWidgets.QPushButton(parent=Form) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.strategyTypeAITensorFlowBtn.sizePolicy().hasHeightForWidth()) + self.strategyTypeAITensorFlowBtn.setSizePolicy(sizePolicy) + self.strategyTypeAITensorFlowBtn.setCheckable(True) + self.strategyTypeAITensorFlowBtn.setAutoExclusive(True) + self.strategyTypeAITensorFlowBtn.setObjectName("strategyTypeAITensorFlowBtn") + self.horizontalLayout.addWidget(self.strategyTypeAITensorFlowBtn) + self.strategyTypeAiStablebaselinesBtn = QtWidgets.QPushButton(parent=Form) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.strategyTypeAiStablebaselinesBtn.sizePolicy().hasHeightForWidth()) + self.strategyTypeAiStablebaselinesBtn.setSizePolicy(sizePolicy) + self.strategyTypeAiStablebaselinesBtn.setCheckable(True) + self.strategyTypeAiStablebaselinesBtn.setAutoExclusive(True) + self.strategyTypeAiStablebaselinesBtn.setObjectName("strategyTypeAiStablebaselinesBtn") + self.horizontalLayout.addWidget(self.strategyTypeAiStablebaselinesBtn) + self.strategyTypeAiTorchBtn = QtWidgets.QPushButton(parent=Form) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Fixed) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.strategyTypeAiTorchBtn.sizePolicy().hasHeightForWidth()) + self.strategyTypeAiTorchBtn.setSizePolicy(sizePolicy) + self.strategyTypeAiTorchBtn.setCheckable(True) + self.strategyTypeAiTorchBtn.setAutoExclusive(True) + self.strategyTypeAiTorchBtn.setObjectName("strategyTypeAiTorchBtn") + self.horizontalLayout.addWidget(self.strategyTypeAiTorchBtn) + self.strategyTypeAlgoBtn = QtWidgets.QPushButton(parent=Form) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.strategyTypeAlgoBtn.sizePolicy().hasHeightForWidth()) + self.strategyTypeAlgoBtn.setSizePolicy(sizePolicy) + self.strategyTypeAlgoBtn.setCheckable(True) + self.strategyTypeAlgoBtn.setAutoExclusive(True) + self.strategyTypeAlgoBtn.setObjectName("strategyTypeAlgoBtn") + self.horizontalLayout.addWidget(self.strategyTypeAlgoBtn) + self.gridLayout.addLayout(self.horizontalLayout, 4, 0, 1, 2) + self.strategyTypeDetailsSW = QtWidgets.QStackedWidget(parent=Form) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Maximum) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.strategyTypeDetailsSW.sizePolicy().hasHeightForWidth()) + self.strategyTypeDetailsSW.setSizePolicy(sizePolicy) + self.strategyTypeDetailsSW.setBaseSize(QtCore.QSize(0, 0)) + self.strategyTypeDetailsSW.setObjectName("strategyTypeDetailsSW") + self.page = QtWidgets.QWidget() + self.page.setObjectName("page") + self.gridLayout_4 = QtWidgets.QGridLayout(self.page) + self.gridLayout_4.setObjectName("gridLayout_4") + self.strategyNameCB = QtWidgets.QComboBox(parent=self.page) + self.strategyNameCB.setObjectName("strategyNameCB") + self.gridLayout_4.addWidget(self.strategyNameCB, 1, 0, 1, 1) + self.label_5 = QtWidgets.QLabel(parent=self.page) + self.label_5.setObjectName("label_5") + self.gridLayout_4.addWidget(self.label_5, 0, 0, 1, 1) + self.strategyTypeDetailsSW.addWidget(self.page) + self.page_2 = QtWidgets.QWidget() + self.page_2.setObjectName("page_2") + self.gridLayout_5 = QtWidgets.QGridLayout(self.page_2) + self.gridLayout_5.setObjectName("gridLayout_5") + self.label_2 = QtWidgets.QLabel(parent=self.page_2) + self.label_2.setObjectName("label_2") + self.gridLayout_5.addWidget(self.label_2, 0, 0, 1, 1) + self.AiModelPathLE = QtWidgets.QLineEdit(parent=self.page_2) + self.AiModelPathLE.setObjectName("AiModelPathLE") + self.gridLayout_5.addWidget(self.AiModelPathLE, 1, 0, 1, 1) + self.strategyTypeDetailsSW.addWidget(self.page_2) + self.gridLayout.addWidget(self.strategyTypeDetailsSW, 5, 0, 1, 2) + self.label_3 = QtWidgets.QLabel(parent=Form) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Maximum) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.label_3.sizePolicy().hasHeightForWidth()) + self.label_3.setSizePolicy(sizePolicy) + font = QtGui.QFont() + font.setPointSize(12) + font.setBold(False) + font.setWeight(50) + self.label_3.setFont(font) + self.label_3.setObjectName("label_3") + self.gridLayout.addWidget(self.label_3, 6, 0, 1, 1) + self.verticalLayout_3 = QtWidgets.QVBoxLayout() + self.verticalLayout_3.setObjectName("verticalLayout_3") + self.gridLayout_3 = QtWidgets.QGridLayout() + self.gridLayout_3.setSpacing(9) + self.gridLayout_3.setObjectName("gridLayout_3") + self.startingCashLE = QtWidgets.QLineEdit(parent=Form) + self.startingCashLE.setInputMask("") + self.startingCashLE.setObjectName("startingCashLE") + self.gridLayout_3.addWidget(self.startingCashLE, 0, 2, 1, 1) + self.label = QtWidgets.QLabel(parent=Form) + self.label.setObjectName("label") + self.gridLayout_3.addWidget(self.label, 0, 1, 1, 1) + self.verticalLayout_3.addLayout(self.gridLayout_3) + self.parametersScrollArea = QtWidgets.QScrollArea(parent=Form) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.parametersScrollArea.sizePolicy().hasHeightForWidth()) + self.parametersScrollArea.setSizePolicy(sizePolicy) + self.parametersScrollArea.setMinimumSize(QtCore.QSize(0, 50)) + self.parametersScrollArea.setMaximumSize(QtCore.QSize(16777215, 250)) + self.parametersScrollArea.setWidgetResizable(True) + self.parametersScrollArea.setObjectName("parametersScrollArea") + self.scrollAreaWidgetContents = QtWidgets.QWidget() + self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 248, 69)) + self.scrollAreaWidgetContents.setObjectName("scrollAreaWidgetContents") + self.verticalLayout = QtWidgets.QVBoxLayout(self.scrollAreaWidgetContents) + self.verticalLayout.setObjectName("verticalLayout") + self.parametersLayout = QtWidgets.QFormLayout() + self.parametersLayout.setObjectName("parametersLayout") + self.verticalLayout.addLayout(self.parametersLayout) + self.parametersScrollArea.setWidget(self.scrollAreaWidgetContents) + self.verticalLayout_3.addWidget(self.parametersScrollArea) + self.gridLayout.addLayout(self.verticalLayout_3, 7, 0, 1, 2) + spacerItem = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding) + self.gridLayout.addItem(spacerItem, 8, 1, 1, 1) + self.verticalLayout_2 = QtWidgets.QVBoxLayout() + self.verticalLayout_2.setObjectName("verticalLayout_2") + self.runBacktestBtn = QtWidgets.QPushButton(parent=Form) + self.runBacktestBtn.setEnabled(True) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.runBacktestBtn.sizePolicy().hasHeightForWidth()) + self.runBacktestBtn.setSizePolicy(sizePolicy) + self.runBacktestBtn.setMinimumSize(QtCore.QSize(0, 50)) + self.runBacktestBtn.setObjectName("runBacktestBtn") + self.verticalLayout_2.addWidget(self.runBacktestBtn) + self.runningStratPB = QtWidgets.QProgressBar(parent=Form) + self.runningStratPB.setProperty("value", 0) + self.runningStratPB.setObjectName("runningStratPB") + self.verticalLayout_2.addWidget(self.runningStratPB) + self.runLabel = QtWidgets.QLabel(parent=Form) + self.runLabel.setText("") + self.runLabel.setObjectName("runLabel") + self.verticalLayout_2.addWidget(self.runLabel) + self.gridLayout.addLayout(self.verticalLayout_2, 9, 0, 1, 2) + self.label_4 = QtWidgets.QLabel(parent=Form) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Maximum) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.label_4.sizePolicy().hasHeightForWidth()) + self.label_4.setSizePolicy(sizePolicy) + font = QtGui.QFont() + font.setPointSize(16) + self.label_4.setFont(font) + self.label_4.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) + self.label_4.setObjectName("label_4") + self.gridLayout.addWidget(self.label_4, 0, 0, 1, 2) + + self.retranslateUi(Form) + self.strategyTypeDetailsSW.setCurrentIndex(1) + QtCore.QMetaObject.connectSlotsByName(Form) + + def retranslateUi(self, Form): + _translate = QtCore.QCoreApplication.translate + Form.setWindowTitle(_translate("Form", "Form")) + self.label_7.setText(_translate("Form", "Data")) + self.importDataBtn.setText(_translate("Form", "Import data")) + self.label_6.setText(_translate("Form", "Strategy")) + self.strategyTypeAITensorFlowBtn.setText(_translate("Form", "Ai\n" +"TF")) + self.strategyTypeAiStablebaselinesBtn.setText(_translate("Form", "Ai\n" +" SB3")) + self.strategyTypeAiTorchBtn.setText(_translate("Form", "Ai\n" +"Torch")) + self.strategyTypeAlgoBtn.setText(_translate("Form", "Algorithm")) + self.label_5.setText(_translate("Form", "Custom strategy")) + self.label_2.setText(_translate("Form", "AI Model")) + self.label_3.setText(_translate("Form", "Parameters")) + self.label.setText(_translate("Form", "Starting cash")) + self.runBacktestBtn.setText(_translate("Form", "Run")) + self.label_4.setText(_translate("Form", "BackTest")) diff --git a/userConfig.py b/userConfig.py new file mode 100644 index 0000000..c8eeb8b --- /dev/null +++ b/userConfig.py @@ -0,0 +1,52 @@ +import json +from Singleton import Singleton + +class UserConfig(Singleton): + + def __init__(self): + self.data = {} + pass + + def loadConfigFile(self): + try: + with open("userData.json") as userFile: + self.data = json.load(userFile) + except: + print(" Can't load user config file") + + def saveObject(self, name, obj): + + obj_dict = {} + + # Get all objects attributes and store them in the config file + # https://stackoverflow.com/questions/11637293/iterate-over-object-attributes-in-python + for attributeName in [a for a in dir(obj) if not a.startswith('__') and not callable(getattr(obj, a))]: + + # we should use decorator here instead of a hardcoded + if attributeName != "dataFrame": + obj_dict[attributeName] = getattr(obj, attributeName) + + self.data[name] = obj_dict + + self.saveConfig() + pass + + def saveParameter(self, parameter, value): + self.data[parameter] = value + self.saveConfig() + pass + + def removeParameter(self, parameter): + if parameter in self.data: + del self.data[parameter] + self.saveConfig() + pass + + def saveConfig(self): + try: + with open("userData.json", "w+") as userFile: + json.dump(self.data, userFile, indent = 4) + except: + print(" Can't save user config file") + + diff --git a/userData.json b/userData.json new file mode 100644 index 0000000..d3c4b1f --- /dev/null +++ b/userData.json @@ -0,0 +1,9 @@ +{ + "M5": { + "fileName": "BTC_USDT_USDT-5m-futures-train.csv", + "filePath": "C:/perso/AI/AI_Framework/freqtrade_data/binance/futures/BTC_USDT_USDT-5m-futures-train.csv", + "separator": ",", + "timeFormat": "%Y-%m-%d %H:%M:%S", + "timeFrame": "M5" + } +} \ No newline at end of file diff --git a/userInterface.py b/userInterface.py index af485eb..e48f1a9 100644 --- a/userInterface.py +++ b/userInterface.py @@ -17,36 +17,26 @@ # ############################################################################### -from PyQt5 import QtWidgets +from PyQt6 import QtWidgets +from PyQt6 import QtGui +from PyQt6 import QtCore -from PyQt5 import QtGui -from PyQt5 import QtCore from numpy import NaN from pyqtgraph.dockarea import DockArea, Dock -import sys, os - -sys.path.append('../finplot') -import finplot as fplt - +import os import backtrader as bt # Ui made with Qt Designer import strategyTesterUI import strategyResultsUI import indicatorParametersUI -import loadDataFilesUI # Import Chart lib import finplotWindow - -import datetime - import qdarkstyle - -import pandas as pd import functools class UserInterface: @@ -54,9 +44,9 @@ class UserInterface: ######### # ######### - def __init__(self,controller): + def __init__(self, controller): - self.controller = controller + self.controller = controller # SkinokBacktraderUI # It does not finish by a "/" self.current_dir_path = os.path.dirname(os.path.realpath(__file__)) @@ -65,57 +55,129 @@ def __init__(self,controller): self.app = QtWidgets.QApplication([]) self.win = QtWidgets.QMainWindow() + # All dock area of each time frame + self.dockAreaTimeframes = {} + self.dock_charts= {} + self.dock_rsi= {} + self.dock_stochastic= {} + self.dock_stochasticRsi= {} + self.fpltWindow = {} + self.timeFramePB = {} + # Resize windows properties self.win.resize(1600,1100) - self.win.setWindowTitle("Skinok Backtrader UI") + self.win.setWindowTitle("Skinok Backtrader UI v0.3") # Set width/height of QSplitter - self.app.setStyleSheet(qdarkstyle.load_stylesheet_pyqt5()) + self.app.setStyleSheet(qdarkstyle.load_stylesheet()) + + pass + + def initialize(self): + + # Docks + self.createMainDocks() + + # Create all buttons above the chart window + self.createControlPanel() + + self.createUIs() + + # Enable run button + self.strategyTesterUI.runBacktestBtn.setEnabled(False) + + self.strategyTesterUI.initialize() + + pass + + ######### + # Create all chart dock for ONE timeframe + ######### + def createChartDock(self, timeframe): + + # this need to be changed later + self.current_timeframe = timeframe + + # Each time frame has its own dock area + self.dockAreaTimeframes[timeframe] = DockArea() + self.stackedCharts.addWidget(self.dockAreaTimeframes[timeframe]) + + # Create Chart widget + self.dock_charts[timeframe] = Dock("dock_chart_"+timeframe, size = (1000, 500), closable = False, hideTitle=True) + self.dockAreaTimeframes[timeframe].addDock(self.dock_charts[timeframe]) + + # Create Order widget + self.dock_rsi[timeframe] = Dock("RSI", size = (1000, 120), closable = False, hideTitle=True) + self.dockAreaTimeframes[timeframe].addDock(self.dock_rsi[timeframe], position='bottom', relativeTo=self.dock_charts[timeframe]) + self.dock_rsi[timeframe].hide() + + self.dock_stochastic[timeframe] = Dock("Stochastic", size = (1000, 120), closable = False, hideTitle=True) + self.dockAreaTimeframes[timeframe].addDock(self.dock_stochastic[timeframe], position='bottom', relativeTo=self.dock_charts[timeframe]) + self.dock_stochastic[timeframe].hide() + + self.dock_stochasticRsi[timeframe] = Dock("Stochastic Rsi", size = (1000, 120), closable = False, hideTitle=True) + self.dockAreaTimeframes[timeframe].addDock(self.dock_stochasticRsi[timeframe], position='bottom', relativeTo=self.dock_charts[timeframe]) + self.dock_stochasticRsi[timeframe].hide() + + # Create finplot Window + self.fpltWindow[timeframe] = finplotWindow.FinplotWindow(self.dockAreaTimeframes[timeframe], self.dock_charts[timeframe], self) + self.fpltWindow[timeframe].createPlotWidgets(timeframe) + self.fpltWindow[timeframe].show() + + # Create timeframe button + self.timeFramePB[timeframe] = QtWidgets.QRadioButton(self.controlPanel) + self.timeFramePB[timeframe].setText(timeframe) + self.timeFramePB[timeframe].setCheckable(True) + self.timeFramePB[timeframe].setMaximumWidth(100) + self.timeFramePB[timeframe].toggled.connect(lambda: self.toogleTimeframe(timeframe) ) + self.timeFramePB[timeframe].toggle() + + self.controlPanelLayout.insertWidget(0,self.timeFramePB[timeframe]) + + # init checked after connecting the slot + if self.darkmodeCB.isChecked(): + self.dark_mode_toggle() + + pass + + def deleteChartDock(self, timeframe): + + del self.dockAreaTimeframes[timeframe] + del self.dock_charts[timeframe] + del self.dock_rsi[timeframe] + + self.fpltWindow[timeframe].resetPlots() + del self.fpltWindow[timeframe] + + self.controlPanelLayout.removeWidget(self.timeFramePB[timeframe]) + del self.timeFramePB[timeframe] pass ######### # Create all main window docks ######### - def createDocks(self): + def createMainDocks(self): + self.dockArea = DockArea() self.win.setCentralWidget(self.dockArea) - # Create Chart widget - self.dock_chart = Dock("dock_chart", size = (1000, 500), closable = False, hideTitle=True ) - self.dockArea.addDock(self.dock_chart, position='above') - - # Create Trade widget - #self.dock_trades = Dock("Trades", size = (1000, 200), closable = False, hideTitle=True) - #self.dockArea.addDock(self.dock_trades, position='bottom') + # Create Stacked widget + self.dock_stackedCharts = Dock("dock_stackedCharts", size = (1000, 500), closable = False, hideTitle=True ) + self.dockArea.addDock(self.dock_stackedCharts, position='above') - # Create Summary widget - #self.dock_summary = Dock("Strategy Summary", size = (200, 100), closable = False, hideTitle=True) - #self.dockArea.addDock(self.dock_summary, position='left', relativeTo=self.dock_trades) + self.stackedCharts = QtWidgets.QStackedWidget(self.dock_stackedCharts) + self.dock_stackedCharts.addWidget( self.stackedCharts, 1 , 0 ) # Create Strategy Tester Tab - self.dock_strategyTester = Dock("Strategy Tester", size = (200, 500), closable = False, hideTitle=True) + self.dock_strategyTester = Dock("Strategy Tester", closable = False, hideTitle=True) self.dockArea.addDock(self.dock_strategyTester, position='left') # Create Strategy Tester Tab - self.dock_strategyResultsUI = Dock("Strategy Tester", size = (1000, 250), closable = False, hideTitle=True) + self.dock_strategyResultsUI = Dock("Strategy Tester", size = (1000, 200), closable = False, hideTitle=True) self.dockArea.addDock(self.dock_strategyResultsUI, position='bottom') - - # Create Order widget - self.dock_rsi = Dock("RSI", size = (1000, 120), closable = False, hideTitle=True) - self.dockArea.addDock(self.dock_rsi, position='bottom', relativeTo=self.dock_chart) - self.dock_rsi.hide() - - self.dock_stochastic = Dock("Stochastic", size = (1000, 120), closable = False, hideTitle=True) - self.dockArea.addDock(self.dock_stochastic, position='bottom', relativeTo=self.dock_chart) - self.dock_stochastic.hide() - - self.dock_stochasticRsi = Dock("Stochastic Rsi", size = (1000, 120), closable = False, hideTitle=True) - self.dockArea.addDock(self.dock_stochasticRsi, position='bottom', relativeTo=self.dock_chart) - self.dock_stochasticRsi.hide() - - - #self.dock_trades.raiseDock() + self.dock_strategyResultsUI.hide() + pass ######### # Create all dock contents @@ -124,14 +186,9 @@ def createUIs(self): self.createStrategyTesterUI() self.createTradesUI() - self.createLoadDataFilesUI() #self.createOrdersUI() self.createSummaryUI() - # Create finplot Window - self.createFinplotWindow() - self.createControlPanel() - self.createActions() self.createMenuBar() @@ -142,32 +199,26 @@ def createUIs(self): ######### def createActions(self): - # Indicators - #self.indicatorsActionGroup = QtWidgets.QActionGroup(self.win) - - # Ichimoku - #self.addIchimokuAction = QtWidgets.QAction(QtGui.QIcon(""),"Add Ichimoku", self.indicatorsActionGroup) - #self.addIchimokuAction.triggered.connect( self.addIndicator ) - #self.indicatorsActionGroup.addAction(self.addIchimokuAction) - # Data sources - self.backtestDataActionGroup = QtWidgets.QActionGroup(self.win) + #self.backtestDataActionGroup = QtGui.QActionGroup(self.win) - self.openCSVAction = QtWidgets.QAction(QtGui.QIcon(""),"Open CSV File", self.backtestDataActionGroup) - self.openCSVAction.triggered.connect( self.loadDataFileUI.show ) + #self.openCSVAction = QtGui.QAction(QtGui.QIcon(""),"Open CSV File", self.backtestDataActionGroup) - #self.DataSourceAction = QAction(QtWidgets.QIcon(""),"Choose Data Source", self.toolbar) - #self.DataSourceAction.triggered.connect( self.l ) - #self.toolbar.addAction(self.addIchimokuAction) - - # Options - self.optionsActionGroup = QtWidgets.QActionGroup(self.win) - #self.darkModeAction = QtWidgets.QAction(QtGui.QIcon(""),"Switch Color Mode", self.optionsActionGroup) - #self.darkModeAction.triggered.connect( self.dark_mode_toggle ) + # AI + #self.aiActionGroup = QtGui.QActionGroup(self.win) + #self.loadTFModelAction = QtGui.QAction(QtGui.QIcon(""),"Load Tensorflow Model", self.aiActionGroup) + #self.loadTFModelAction.triggered.connect( self.loadTFModel ) - #self.optionsActionGroup.addAction(self.darkModeAction) + #self.loadTorchModelAction = QtWidgets.QAction(QtGui.QIcon(""),"Load Torch Model", self.aiActionGroup) + #self.loadTorchModelAction.triggered.connect( self.loadTorchModel ) + + #self.loadStableBaselines3Action = QtGui.QAction(QtGui.QIcon(""),"Load Stable Baselines 3 Model", self.aiActionGroup) + #self.loadStableBaselines3Action.triggered.connect( self.loadStableBaselinesModel ) + + # Options + #self.optionsActionGroup = QtGui.QActionGroup(self.win) pass @@ -176,20 +227,21 @@ def createActions(self): ######### def createMenuBar(self): - self.menubar = self.win.menuBar() + #self.menubar = self.win.menuBar() #self.indicatorsMenu = self.menubar.addMenu("Indicators") #self.indicatorsMenu.addActions(self.indicatorsActionGroup.actions()) - - self.backtestDataMenu = self.menubar.addMenu("Backtest Data") - self.backtestDataMenu.addActions(self.backtestDataActionGroup.actions()) + #self.backtestDataMenu = self.menubar.addMenu("Backtest Data") + #self.backtestDataMenu.addActions(self.backtestDataActionGroup.actions()) - self.optionsMenu = self.menubar.addMenu("Options") - self.optionsMenu.addActions(self.optionsActionGroup.actions()) + #self.aiMenu = self.menubar.addMenu("Artificial Intelligence") + #self.aiMenu.addActions(self.aiActionGroup.actions()) - pass + #self.optionsMenu = self.menubar.addMenu("Options") + #self.optionsMenu.addActions(self.optionsActionGroup.actions()) + pass ######### # Strategy results : trades tab @@ -204,16 +256,18 @@ def createTradesUI(self): self.tradeTableWidget.verticalHeader().setVisible(False) self.tradeTableWidget.horizontalHeader().setStretchLastSection(True) - self.tradeTableWidget.horizontalHeader().setSectionResizeMode(QtWidgets.QHeaderView.Stretch) + self.tradeTableWidget.horizontalHeader().setSectionResizeMode(QtWidgets.QHeaderView.ResizeMode.Stretch) #self.tradeTableWidget.setStyleSheet("alternate-background-color: #AAAAAA;background-color: #CCCCCC;") self.tradeTableWidget.setAlternatingRowColors(True) self.tradeTableWidget.setSortingEnabled(True) - self.tradeTableWidget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows) - self.tradeTableWidget.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers) + self.tradeTableWidget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectionBehavior.SelectRows) + self.tradeTableWidget.setEditTriggers(QtWidgets.QAbstractItemView.EditTrigger.NoEditTriggers) self.strategyResultsUI.ResultsTabWidget.widget(0).layout().addWidget(self.tradeTableWidget) + pass + def fillTradesUI(self, trades): # Delete all previous results by settings row count to 0 @@ -230,35 +284,50 @@ def fillTradesUI(self, trades): # Trade id item = QtWidgets.QTableWidgetItem( str(trade.ref) ) - item.setTextAlignment(QtCore.Qt.AlignCenter) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) self.tradeTableWidget.setItem(row,0,item) item = QtWidgets.QTableWidgetItem( "Buy" if trade.long else "Sell" ) - item.setTextAlignment(QtCore.Qt.AlignCenter) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) self.tradeTableWidget.setItem(row,1,item) item = QtWidgets.QTableWidgetItem( str(bt.num2date(trade.dtopen)) ) - item.setTextAlignment(QtCore.Qt.AlignCenter) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) self.tradeTableWidget.setItem(row,2,item) item = QtWidgets.QTableWidgetItem( str(bt.num2date(trade.dtclose)) ) - item.setTextAlignment(QtCore.Qt.AlignCenter) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) self.tradeTableWidget.setItem(row,3,item) item = QtWidgets.QTableWidgetItem( str(trade.price) ) - item.setTextAlignment(QtCore.Qt.AlignCenter) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) self.tradeTableWidget.setItem(row,4,item) item = QtWidgets.QTableWidgetItem( str(trade.commission) ) - item.setTextAlignment(QtCore.Qt.AlignCenter) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) self.tradeTableWidget.setItem(row,5,item) item = QtWidgets.QTableWidgetItem( str(trade.pnlcomm) ) - item.setTextAlignment(QtCore.Qt.AlignCenter) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignCenter) self.tradeTableWidget.setItem(row,6,item) row += 1 + # Click on a trade line will move the chart to the corresponding trade + self.tradeTableWidget.cellClicked.connect( self.tradeClicked ); + + pass + + # Slot when a trade has been clicked + def tradeClicked(self, row, column): + + selectedItems = self.tradeTableWidget.selectedItems() # QList + if len(selectedItems) > 4: + dateTradeOpen = selectedItems[2].text() + dateTradeClose = selectedItems[3].text() + + self.fpltWindow[self.current_timeframe].zoomTo(dateTradeOpen,dateTradeClose) + pass ######### @@ -274,13 +343,13 @@ def createOrdersUI(self): self.orderTableWidget.setHorizontalHeaderLabels( labels ) self.orderTableWidget.horizontalHeader().setStretchLastSection(True) - self.orderTableWidget.horizontalHeader().setSectionResizeMode(QtWidgets.QHeaderView.Stretch) + self.orderTableWidget.horizontalHeader().setSectionResizeMode(QtWidgets.QHeaderView.ResizeMode.Stretch) self.orderTableWidget.setStyleSheet("alternate-background-color: #AAAAAA;background-color: #CCCCCC;") self.orderTableWidget.setAlternatingRowColors(True) self.orderTableWidget.setSortingEnabled(True) - self.orderTableWidget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows) - self.orderTableWidget.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers) + self.orderTableWidget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectionBehavior.SelectRows) + self.orderTableWidget.setEditTriggers(QtWidgets.QAbstractItemView.EditTrigger.NoEditTriggers) self.dock_orders.addWidget(self.orderTableWidget) @@ -307,24 +376,15 @@ def fillOrdersUI(self, orders): pass - ######### - # UI parameters for testing stategies - ######### - def createLoadDataFilesUI(self): - - self.loadDataFileUI = loadDataFilesUI.LoadDataFilesUI(self.controller, self.win) - self.loadDataFileUI.hide() - pass - ######### # UI parameters for testing stategies ######### def createStrategyTesterUI(self): - self.strategyTesterUI = strategyTesterUI.StrategyTesterUI(self.controller) + self.strategyTesterUI = strategyTesterUI.StrategyTesterUI(self.controller, self.win) self.dock_strategyTester.addWidget(self.strategyTesterUI) - self.strategyResultsUI = strategyResultsUI.StrategyResultsUI(self.controller) + self.strategyResultsUI = strategyResultsUI.StrategyResultsUI(self.controller, self.win) self.dock_strategyResultsUI.addWidget(self.strategyResultsUI) # @@ -343,7 +403,7 @@ def createStrategyTesterUI(self): ######### def createSummaryUI(self): - self.summaryTableWidget = QtWidgets.QTableWidget(self.strategyResultsUI.SummaryGB) + self.summaryTableWidget = self.strategyResultsUI.summaryTableWidget self.summaryTableWidget.setColumnCount(2) @@ -351,7 +411,7 @@ def createSummaryUI(self): self.summaryTableWidget.horizontalHeader().hide() self.summaryTableWidget.setShowGrid(False) - self.strategyResultsUI.SummaryGB.layout().addWidget(self.summaryTableWidget) + self.summaryTableWidget.setStyleSheet("QTableWidget { border: 0; }") pass @@ -363,58 +423,52 @@ def fillSummaryUI(self, brokerCash, brokerValue, tradeAnalysis): self.summaryTableWidget.setRowCount(8) self.summaryTableWidget.setItem(0,0,QtWidgets.QTableWidgetItem("Cash")) - self.summaryTableWidget.setItem(0,1,QtWidgets.QTableWidgetItem(str(brokerCash))) + item = QtWidgets.QTableWidgetItem(str(round(brokerCash,2))) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignHCenter) + self.summaryTableWidget.setItem(0,1,item) self.summaryTableWidget.setItem(1,0,QtWidgets.QTableWidgetItem("Value")) - self.summaryTableWidget.setItem(1,1,QtWidgets.QTableWidgetItem(str(brokerValue))) + item = QtWidgets.QTableWidgetItem(str(round(brokerValue,2))) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignHCenter) + self.summaryTableWidget.setItem(1,1,item) # if there are some trades if len(tradeAnalysis) > 1: self.summaryTableWidget.setItem(2,0,QtWidgets.QTableWidgetItem("Profit total")) - self.summaryTableWidget.setItem(2,1,QtWidgets.QTableWidgetItem(str(tradeAnalysis["pnl"]["net"]["total"]))) + item = QtWidgets.QTableWidgetItem(str(round(tradeAnalysis["pnl"]["net"]["total"],2))) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignHCenter) + self.summaryTableWidget.setItem(2,1, item ) self.summaryTableWidget.setItem(3,0,QtWidgets.QTableWidgetItem("Number of trades")) - self.summaryTableWidget.setItem(3,1,QtWidgets.QTableWidgetItem(str(tradeAnalysis["total"]["total"]))) + item = QtWidgets.QTableWidgetItem(str(round(tradeAnalysis["total"]["total"],2))) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignHCenter) + self.summaryTableWidget.setItem(3,1,item) self.summaryTableWidget.setItem(4,0,QtWidgets.QTableWidgetItem("Won")) - self.summaryTableWidget.setItem(4,1,QtWidgets.QTableWidgetItem(str(tradeAnalysis["won"]['total']))) + item = QtWidgets.QTableWidgetItem(str(round(tradeAnalysis["won"]['total'],2))) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignHCenter) + self.summaryTableWidget.setItem(4,1,item) self.summaryTableWidget.setItem(5,0,QtWidgets.QTableWidgetItem("Lost")) - self.summaryTableWidget.setItem(5,1,QtWidgets.QTableWidgetItem(str(tradeAnalysis["lost"]['total']))) + item = QtWidgets.QTableWidgetItem(str(round(tradeAnalysis["lost"]['total'],2))) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignHCenter) + self.summaryTableWidget.setItem(5,1,item) self.summaryTableWidget.setItem(6,0,QtWidgets.QTableWidgetItem("Long")) - self.summaryTableWidget.setItem(6,1,QtWidgets.QTableWidgetItem(str(tradeAnalysis["long"]["total"]))) + item = QtWidgets.QTableWidgetItem(str(round(tradeAnalysis["long"]["total"],2))) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignHCenter) + self.summaryTableWidget.setItem(6,1,item) self.summaryTableWidget.setItem(7,0,QtWidgets.QTableWidgetItem("Short")) - self.summaryTableWidget.setItem(7,1,QtWidgets.QTableWidgetItem(str(tradeAnalysis["short"]["total"]))) + item = QtWidgets.QTableWidgetItem(str(round(tradeAnalysis["short"]["total"],2))) + item.setTextAlignment(QtCore.Qt.AlignmentFlag.AlignHCenter) + self.summaryTableWidget.setItem(7,1,item) self.summaryTableWidget.horizontalHeader().setStretchLastSection(True) - self.summaryTableWidget.horizontalHeader().setSectionResizeMode(QtWidgets.QHeaderView.Stretch) - - self.summaryTableWidget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows) - - pass - - ######### - # Fin plot Window - ######### - def createFinplotWindow(self): - self.fpltWindow = finplotWindow.FinplotWindow(self.dockArea, self.dock_chart, self) - self.fpltWindow.createPlotWidgets() - pass - - # - def initialize(self): - - # Docks - self.createDocks() - self.createUIs() - - # Enable run button - self.strategyTesterUI.runBacktestPB.setEnabled(False) + self.summaryTableWidget.horizontalHeader().setSectionResizeMode(QtWidgets.QHeaderView.ResizeMode.Stretch) - self.strategyTesterUI.initialize() + self.summaryTableWidget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectionBehavior.SelectRows) pass @@ -423,8 +477,8 @@ def initialize(self): # Show all ######### def show(self): - self.fpltWindow.show() # prepares plots when they're all setup - #fpltWindow.autoviewrestore() + + #self.fpltWindow[timeframe].show() # prepares plots when they're all setup self.win.show() self.app.exec_() @@ -439,17 +493,17 @@ def getProgressBar(self): ######### # Draw chart ######### - def drawChart(self, data): - self.fpltWindow.setChartData(data) - self.fpltWindow.updateChart() + def drawChart(self, data, timeframe): + self.fpltWindow[timeframe].setChartData(data) + self.fpltWindow[timeframe].updateChart() pass ######### # Draw orders on chart ######### def setOrders(self, orders): - #self.fillOrdersUI(self.myOrders) - self.fpltWindow.drawOrders(orders) + for timeframe,fpltWindow in self.fpltWindow.items(): + fpltWindow.drawOrders(orders) pass ######### @@ -458,21 +512,24 @@ def setOrders(self, orders): # But anyway... it works... ######### def displayPnL(self, pnl_dataframe): - # draw charts - self.fpltWindow.drawPnL(pnl_dataframe) + for timeframe, fpltwindow in self.fpltWindow.items(): + fpltwindow.drawPnL(pnl_dataframe) + + self.togglePnLWidget() + pass ######### # Control panel overlay on top/above of the finplot window ######### def createControlPanel(self): + + self.controlPanel = QtWidgets.QWidget(self.dock_stackedCharts) + self.dock_stackedCharts.addWidget(self.controlPanel,0,0) - self.panel = QtWidgets.QWidget(self.dock_chart) - self.dock_chart.addWidget(self.panel,0,0,1,1) - - layout = QtWidgets.QHBoxLayout(self.panel) - + self.controlPanelLayout = QtWidgets.QHBoxLayout(self.controlPanel) + ''' panel.symbol = QtWidgets.QComboBox(panel) [panel.symbol.addItem(i+'USDT') for i in 'BTC ETH XRP DOGE BNB SOL ADA LTC LINK DOT TRX BCH'.split()] @@ -492,121 +549,146 @@ def createControlPanel(self): ''' # Rest - self.ResetPB = QtWidgets.QPushButton(self.panel) + self.ResetPB = QtWidgets.QPushButton(self.controlPanel) self.ResetPB.setText("Reset") self.ResetPB.setCheckable(True) self.ResetPB.setMaximumWidth(100) - self.ResetPB.toggled.connect(self.resetChart) - layout.addWidget(self.ResetPB) + self.ResetPB.toggled[bool].connect(self.resetChart) + self.controlPanelLayout.addWidget(self.ResetPB) # Spacer - spacer = QtWidgets.QSpacerItem(50,20,QtWidgets.QSizePolicy.Minimum) - layout.addSpacerItem(spacer) + spacer = QtWidgets.QSpacerItem(50,20,QtWidgets.QSizePolicy.Policy.Minimum) + self.controlPanelLayout.addSpacerItem(spacer) # SMA - self.SmaPB = QtWidgets.QPushButton(self.panel) + self.SmaPB = QtWidgets.QPushButton(self.controlPanel) self.SmaPB.setText("SMA") self.SmaPB.setCheckable(True) self.SmaPB.setMaximumWidth(100) - self.SmaPB.toggled.connect(self.addSma) - layout.addWidget(self.SmaPB) + self.SmaPB.toggled[bool].connect(self.addSma) + self.controlPanelLayout.addWidget(self.SmaPB) # EMA - self.EmaPB = QtWidgets.QPushButton(self.panel) + self.EmaPB = QtWidgets.QPushButton(self.controlPanel) self.EmaPB.setText("EMA") self.EmaPB.setCheckable(True) self.EmaPB.setMaximumWidth(100) - self.EmaPB.toggled.connect(self.addEma) - layout.addWidget(self.EmaPB) + self.EmaPB.toggled[bool].connect(self.addEma) + self.controlPanelLayout.addWidget(self.EmaPB) # Spacer - spacer = QtWidgets.QSpacerItem(50,20,QtWidgets.QSizePolicy.Minimum) - layout.addSpacerItem(spacer) + spacer = QtWidgets.QSpacerItem(50,20,QtWidgets.QSizePolicy.Policy.Minimum) + self.controlPanelLayout.addSpacerItem(spacer) # RSI - self.RsiPB = QtWidgets.QPushButton(self.panel) + self.RsiPB = QtWidgets.QPushButton(self.controlPanel) self.RsiPB.setText("RSI") self.RsiPB.setCheckable(True) self.RsiPB.setMaximumWidth(100) - self.RsiPB.toggled.connect(self.toogleRsi) - layout.addWidget(self.RsiPB) + self.RsiPB.toggled[bool].connect(self.toogleRsi) + self.controlPanelLayout.addWidget(self.RsiPB) # Stochastic - self.StochasticPB = QtWidgets.QPushButton(self.panel) + self.StochasticPB = QtWidgets.QPushButton(self.controlPanel) self.StochasticPB.setText("Stochastic") self.StochasticPB.setCheckable(True) self.StochasticPB.setMaximumWidth(100) - self.StochasticPB.toggled.connect(self.toogleStochastic) - layout.addWidget(self.StochasticPB) + self.StochasticPB.toggled[bool].connect(self.toogleStochastic) + self.controlPanelLayout.addWidget(self.StochasticPB) # Stochastic RSI - self.StochasticRsiPB = QtWidgets.QPushButton(self.panel) + self.StochasticRsiPB = QtWidgets.QPushButton(self.controlPanel) self.StochasticRsiPB.setText("Stochastic RSI") self.StochasticRsiPB.setCheckable(True) self.StochasticRsiPB.setMaximumWidth(100) self.StochasticRsiPB.toggled.connect(self.toogleStochasticRsi) - layout.addWidget(self.StochasticRsiPB) + self.controlPanelLayout.addWidget(self.StochasticRsiPB) # Ichimoku - self.IchimokuPB = QtWidgets.QPushButton(self.panel) + self.IchimokuPB = QtWidgets.QPushButton(self.controlPanel) self.IchimokuPB.setText("Ichimoku") self.IchimokuPB.setCheckable(True) self.IchimokuPB.setMaximumWidth(100) self.IchimokuPB.toggled.connect(self.toogleIchimoku) - layout.addWidget(self.IchimokuPB) + self.controlPanelLayout.addWidget(self.IchimokuPB) # Spacer - spacer = QtWidgets.QSpacerItem(50,20,QtWidgets.QSizePolicy.Minimum) - layout.addSpacerItem(spacer) + spacer = QtWidgets.QSpacerItem(50,20,QtWidgets.QSizePolicy.Policy.Minimum) + self.controlPanelLayout.addSpacerItem(spacer) # Dark mode - self.darkmodeCB = QtWidgets.QCheckBox(self.panel) + self.darkmodeCB = QtWidgets.QCheckBox(self.controlPanel) self.darkmodeCB.setText('Dark mode') self.darkmodeCB.toggled.connect(self.dark_mode_toggle) - # init checked after connecting the slot self.darkmodeCB.setChecked(True) - layout.addWidget(self.darkmodeCB) + self.controlPanelLayout.addWidget(self.darkmodeCB) # Volumes - self.volumesCB = QtWidgets.QCheckBox(self.panel) + self.volumesCB = QtWidgets.QCheckBox(self.controlPanel) self.volumesCB.setText('Volumes') self.volumesCB.toggled.connect(self.volumes_toggle) # init checked after connecting the slot - self.volumesCB.setChecked(True) - layout.addWidget(self.volumesCB) + self.volumesCB.setChecked(False) + self.controlPanelLayout.addWidget(self.volumesCB) - layout.insertSpacerItem( 0, QtWidgets.QSpacerItem( 0,0, hPolicy=QtWidgets.QSizePolicy.Expanding, vPolicy=QtWidgets.QSizePolicy.Preferred) ) + # Spacer + self.controlPanelLayout.insertSpacerItem(0, QtWidgets.QSpacerItem( 0,0, hPolicy=QtWidgets.QSizePolicy.Policy.Expanding, vPolicy=QtWidgets.QSizePolicy.Policy.Preferred) ) - return self.panel + return self.controlPanel ######### # Toggle anther UI Theme ######### def dark_mode_toggle(self): - self.fpltWindow.activateDarkMode(self.darkmodeCB.isChecked()) + for key,window in self.fpltWindow.items(): + window.activateDarkMode(self.darkmodeCB.isChecked()) pass ########## # INDICATORS ########## + def toogleTimeframe(self, timeframe): + + if self.timeFramePB[timeframe].isChecked(): + print("Display " + timeframe) + self.current_timeframe = timeframe + index = self.stackedCharts.indexOf( self.dockAreaTimeframes[timeframe]) + self.stackedCharts.setCurrentIndex( index ) + self.togglePnLWidget() + + pass + + def togglePnLWidget(self): + + # hide all PnL windows & Show the good one + for tf, fpltWindow in self.fpltWindow.items(): + if tf != self.current_timeframe: + fpltWindow.hidePnL() + else: + fpltWindow.showPnL() + def resetChart(self): - self.fpltWindow.resetChart() - self.fpltWindow.updateChart() + self.fpltWindow[self.current_timeframe].resetChart() + self.fpltWindow[self.current_timeframe].updateChart() pass # On chart indicators def addSma(self): # Show indicator parameter dialog - paramDialog = indicatorParametersUI.IndicatorParametersUI(self.dock_chart) + paramDialog = indicatorParametersUI.IndicatorParametersUI() paramDialog.setWindowFlags(QtCore.Qt.CustomizeWindowHint) paramDialog.setTitle("SMA Indicator parameters") paramDialog.addParameter("SMA Period", 14) + paramDialog.addParameter("Plot width", 1) + paramDialog.addParameterColor("Plot color", "#FFFF00") paramDialog.adjustSize() - if (paramDialog.exec() == QtWidgets.QDialog.Accepted ): + if paramDialog.exec() == QtWidgets.QDialog.DialogCode.Accepted: period = paramDialog.getValue("SMA Period") - self.fpltWindow.drawSma( period ) + width = paramDialog.getValue("Plot width") + qColor = paramDialog.getColorValue("Plot color") + self.fpltWindow[self.current_timeframe].drawSma( period, qColor, width) pass @@ -614,15 +696,19 @@ def addSma(self): def addEma(self): # Show indicator parameter dialog - paramDialog = indicatorParametersUI.IndicatorParametersUI(self.dock_chart) + paramDialog = indicatorParametersUI.IndicatorParametersUI() paramDialog.setWindowFlags(QtCore.Qt.CustomizeWindowHint) paramDialog.setTitle("EMA Indicator parameters") paramDialog.addParameter("EMA Period", 9) + paramDialog.addParameter("Plot width", 1) + paramDialog.addParameterColor("Plot color", "#FFFF00") paramDialog.adjustSize() - if (paramDialog.exec() == QtWidgets.QDialog.Accepted ): + if paramDialog.exec() == QtWidgets.QDialog.DialogCode.Accepted: period = paramDialog.getValue("EMA Period") - self.fpltWindow.drawEma( period ) + width = paramDialog.getValue("Plot width") + qColor = paramDialog.getColorValue("Plot color") + self.fpltWindow[self.current_timeframe].drawEma( period, qColor, width ) pass @@ -631,24 +717,25 @@ def toogleRsi(self): if self.RsiPB.isChecked(): # Show indicator parameter dialog - paramDialog = indicatorParametersUI.IndicatorParametersUI(self.dock_chart) - paramDialog.setWindowFlags(QtCore.Qt.CustomizeWindowHint) + paramDialog = indicatorParametersUI.IndicatorParametersUI() + paramDialog.setWindowFlags(QtCore.Qt.WindowType.CustomizeWindowHint) paramDialog.setTitle("RSI Indicator parameters") paramDialog.addParameter("RSI Period", 14) + paramDialog.addParameterColor("Plot color", "#FFFF00") paramDialog.adjustSize() - if (paramDialog.exec() == QtWidgets.QDialog.Accepted ): + if paramDialog.exec() == QtWidgets.QDialog.DialogCode.Accepted: period = paramDialog.getValue("RSI Period") - - self.fpltWindow.drawRsi( period ) - self.dock_rsi.show() + qColor = paramDialog.getColorValue("Plot color") + self.fpltWindow[self.current_timeframe].drawRsi( period, qColor ) + self.dock_rsi[self.current_timeframe].show() else: # Cancel self.RsiPB.setChecked(False) - self.dock_rsi.hide() + self.dock_rsi[self.current_timeframe].hide() else: - self.dock_rsi.hide() + self.dock_rsi[self.current_timeframe].hide() pass @@ -656,28 +743,28 @@ def toogleStochastic(self): if self.StochasticPB.isChecked(): # Show indicator parameter dialog - paramDialog = indicatorParametersUI.IndicatorParametersUI(self.dock_chart) - paramDialog.setWindowFlags(QtCore.Qt.CustomizeWindowHint) + paramDialog = indicatorParametersUI.IndicatorParametersUI() + paramDialog.setWindowFlags(QtCore.Qt.WindowType.CustomizeWindowHint) paramDialog.setTitle("Stochastic Indicator parameters") paramDialog.addParameter("Stochastic Period K", 14) paramDialog.addParameter("Stochastic Smooth K", 3) paramDialog.addParameter("Stochastic Smooth D", 3) paramDialog.adjustSize() - if (paramDialog.exec() == QtWidgets.QDialog.Accepted ): + if paramDialog.exec() == QtWidgets.QDialog.DialogCode.Accepted: period = paramDialog.getValue("Stochastic Period K") smooth_k = paramDialog.getValue("Stochastic Smooth K") smooth_d = paramDialog.getValue("Stochastic Smooth D") - self.fpltWindow.drawStochastic( period, smooth_k, smooth_d ) - self.dock_stochastic.show() + self.fpltWindow[self.current_timeframe].drawStochastic( period, smooth_k, smooth_d ) + self.dock_stochastic[self.current_timeframe].show() else: # Cancel self.RsiPB.setChecked(False) - self.dock_stochastic.hide() + self.dock_stochastic[self.current_timeframe].hide() else: - self.dock_stochastic.hide() + self.dock_stochastic[self.current_timeframe].hide() pass @@ -685,48 +772,41 @@ def toogleStochasticRsi(self): if self.StochasticRsiPB.isChecked(): # Show indicator parameter dialog - paramDialog = indicatorParametersUI.IndicatorParametersUI(self.dock_chart) - paramDialog.setWindowFlags(QtCore.Qt.CustomizeWindowHint) + paramDialog = indicatorParametersUI.IndicatorParametersUI() + paramDialog.setWindowFlags(QtCore.Qt.WindowType.CustomizeWindowHint) paramDialog.setTitle("Stochastic Indicator parameters") paramDialog.addParameter("Stochastic Rsi Period K", 14) paramDialog.addParameter("Stochastic Rsi Smooth K", 3) paramDialog.addParameter("Stochastic Rsi Smooth D", 3) paramDialog.adjustSize() - if (paramDialog.exec() == QtWidgets.QDialog.Accepted ): + if (paramDialog.exec() == QtWidgets.QDialog.DialogCode.Accepted ): period = paramDialog.getValue("Stochastic Rsi Period K") smooth_k = paramDialog.getValue("Stochastic Rsi Smooth K") smooth_d = paramDialog.getValue("Stochastic Rsi Smooth D") - self.fpltWindow.drawStochasticRsi( period, smooth_k, smooth_d) - self.dock_stochasticRsi.show() + self.fpltWindow[self.current_timeframe].drawStochasticRsi( period, smooth_k, smooth_d) + self.dock_stochasticRsi[self.current_timeframe].show() else: # Cancel self.RsiPB.setChecked(False) - self.dock_stochasticRsi.hide() + self.dock_stochasticRsi[self.current_timeframe].hide() else: - self.dock_stochasticRsi.hide() + self.dock_stochasticRsi[self.current_timeframe].hide() pass # On chart indicators def toogleIchimoku(self): - self.fpltWindow.setIndicator("Ichimoku", self.IchimokuPB.isChecked() ) + self.fpltWindow[self.current_timeframe].setIndicator("Ichimoku", self.IchimokuPB.isChecked() ) pass def volumes_toggle(self): - self.fpltWindow.setIndicator("Volumes", self.volumesCB.isChecked()) + self.fpltWindow[self.current_timeframe].setIndicator("Volumes", self.volumesCB.isChecked()) pass - - - ######### - # Load data files UI slots - ######### - - ######### # Obsolete (Strategy results : transcations tab) ######### @@ -742,21 +822,21 @@ def createTransactionsUI(self, trades): row = 0 for date,values in trades: #for trade in trades: - self.transactionTableWidget.setItem(row,0,QtWidgets.QTableWidgetItem( date.strftime("%Y/%m/%d %H:%M:%S") )) - self.transactionTableWidget.setItem(row,1,QtWidgets.QTableWidgetItem( str(values[0][0]) )) - self.transactionTableWidget.setItem(row,2,QtWidgets.QTableWidgetItem( str(values[0][1]) )) - self.transactionTableWidget.setItem(row,3,QtWidgets.QTableWidgetItem( str(values[0][2]) )) + self.transactionTableWidget.setItem(row, 0, QtWidgets.QTableWidgetItem(date.strftime("%Y/%m/%d %H:%M:%S"))) + self.transactionTableWidget.setItem(row, 1, QtWidgets.QTableWidgetItem(str(values[0][0]))) + self.transactionTableWidget.setItem(row, 2, QtWidgets.QTableWidgetItem(str(values[0][1]))) + self.transactionTableWidget.setItem(row, 3, QtWidgets.QTableWidgetItem(str(values[0][2]))) row += 1 self.transactionTableWidget.horizontalHeader().setStretchLastSection(True) - self.transactionTableWidget.horizontalHeader().setSectionResizeMode(QtWidgets.QHeaderView.Stretch) + self.transactionTableWidget.horizontalHeader().setSectionResizeMode(QtWidgets.QHeaderView.ResizeMode.Stretch) self.transactionTableWidget.setStyleSheet("alternate-background-color: #AAAAAA;background-color: #CCCCCC;") self.transactionTableWidget.setAlternatingRowColors(True) self.transactionTableWidget.setSortingEnabled(True) - self.transactionTableWidget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectRows) - self.transactionTableWidget.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers) + self.transactionTableWidget.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectionBehavior.SelectRows) + self.transactionTableWidget.setEditTriggers(QtWidgets.QAbstractItemView.EditTrigger.NoEditTriggers) self.dock_transactions.addWidget(self.transactionTableWidget) @@ -771,25 +851,32 @@ def fillStrategyParameters(self, strategy): # Insert parameters row = 0 for parameterName, parameterValue in strategy.params._getitems(): - label = QtWidgets.QLabel(parameterName) - lineEdit = QtWidgets.QLineEdit(str(parameterValue)) - # Save the parameter to inject it in the addStrategy method - self.controller.strategyParametersSave(parameterName, parameterValue) + if parameterName is not 'model': + label = QtWidgets.QLabel(parameterName) + + if type(parameterValue) == bool: + checkBox = QtWidgets.QCheckBox(str()) + checkBox.setObjectName(parameterName) + checkBox.setChecked(parameterValue) + checkBox.stateChanged.connect(functools.partial(self.controller.strategyParametersChanged, checkBox, parameterName, parameterValue)) + self.strategyTesterUI.parametersLayout.addRow(label, checkBox ) - # Connect the parameter changed slot - lineEdit.textChanged.connect(functools.partial(self.controller.strategyParametersChanged, lineEdit, parameterName, parameterValue)) + else: + lineEdit = QtWidgets.QLineEdit(str(parameterValue)) + lineEdit.setObjectName(parameterName) + # Connect the parameter changed slot + lineEdit.textChanged.connect(functools.partial(self.controller.strategyParametersChanged, lineEdit, parameterName, parameterValue)) + self.strategyTesterUI.parametersLayout.addRow(label, lineEdit ) - self.strategyTesterUI.parametersLayout.addRow(label, lineEdit ) - row = row + 1 + # Save the parameter to inject it in the addStrategy method + self.controller.strategyParametersSave(parameterName, parameterValue) + + row = row + 1 pass # Parameter box size self.strategyTesterUI.parametersLayout.update() self.strategyTesterUI.parametersScrollArea.adjustSize() - pass - - - - \ No newline at end of file + pass \ No newline at end of file diff --git a/wallet.py b/wallet.py index 737bed0..5955a6c 100644 --- a/wallet.py +++ b/wallet.py @@ -28,6 +28,7 @@ def __init__(self, startingCash): def reset(self, startingCash): + self.starting_cash = startingCash # todo: change it by initial cash settings self.current_value = startingCash # todo: change it by initial cash settings self.current_cash = startingCash # todo: change it by initial cash settings self.current_equity = startingCash # todo: change it by initial cash settings pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy