Merge branch 'develop' into feature/update

This commit is contained in:
Hongze Cheng 2020-10-29 09:49:49 +08:00
commit dfc7c836fa
13 changed files with 1415 additions and 56 deletions

View File

@ -33,15 +33,11 @@ struct SColumnFilterElem;
typedef bool (*__filter_func_t)(struct SColumnFilterElem* pFilter, char* val1, char* val2);
typedef int32_t (*__block_search_fn_t)(char* data, int32_t num, int64_t key, int32_t order);
typedef struct SPosInfo {
int32_t pageId:20;
int32_t rowId:12;
} SPosInfo;
typedef struct SGroupResInfo {
int32_t groupId;
int32_t numOfDataPages;
SPosInfo pos;
int32_t pageId;
int32_t rowId;
} SGroupResInfo;
typedef struct SSqlGroupbyExpr {
@ -53,9 +49,10 @@ typedef struct SSqlGroupbyExpr {
} SSqlGroupbyExpr;
typedef struct SWindowResult {
SPosInfo pos; // Position of current result in disk-based output buffer
int32_t pageId; // pageId & rowId is the position of current result in disk-based output buffer
int32_t rowId:15;
bool closed:1; // this result status: closed or opened
uint16_t numOfRows; // number of rows of current time window
bool closed; // this result status: closed or opened
SResultInfo* resultInfo; // For each result column, there is a resultInfo
union {STimeWindow win; char* key;}; // start key of current time window
} SWindowResult;

View File

@ -51,7 +51,7 @@ static FORCE_INLINE char *getPosInResultPage(SQueryRuntimeEnv *pRuntimeEnv, int3
SQuery *pQuery = pRuntimeEnv->pQuery;
int32_t realRowId = (int32_t)(pResult->pos.rowId * GET_ROW_PARAM_FOR_MULTIOUTPUT(pQuery, pRuntimeEnv->topBotQuery, pRuntimeEnv->stableQuery));
int32_t realRowId = (int32_t)(pResult->rowId * GET_ROW_PARAM_FOR_MULTIOUTPUT(pQuery, pRuntimeEnv->topBotQuery, pRuntimeEnv->stableQuery));
return ((char *)page->data) + pRuntimeEnv->offset[columnIndex] * pRuntimeEnv->numOfRowsPerPage +
pQuery->pSelectExpr[columnIndex].bytes * realRowId;
}

View File

@ -557,7 +557,7 @@ static STimeWindow getActiveTimeWindow(SWindowResInfo *pWindowResInfo, int64_t t
static int32_t addNewWindowResultBuf(SWindowResult *pWindowRes, SDiskbasedResultBuf *pResultBuf, int32_t sid,
int32_t numOfRowsPerPage) {
if (pWindowRes->pos.pageId != -1) {
if (pWindowRes->pageId != -1) {
return 0;
}
@ -590,11 +590,11 @@ static int32_t addNewWindowResultBuf(SWindowResult *pWindowRes, SDiskbasedResult
}
// set the number of rows in current disk page
if (pWindowRes->pos.pageId == -1) { // not allocated yet, allocate new buffer
pWindowRes->pos.pageId = pageId;
pWindowRes->pos.rowId = (int32_t)(pData->num++);
if (pWindowRes->pageId == -1) { // not allocated yet, allocate new buffer
pWindowRes->pageId = pageId;
pWindowRes->rowId = (int32_t)(pData->num++);
assert(pWindowRes->pos.pageId >= 0);
assert(pWindowRes->pageId >= 0);
}
return 0;
@ -616,7 +616,7 @@ static int32_t setWindowOutputBufByKey(SQueryRuntimeEnv *pRuntimeEnv, SWindowRes
*newWind = true;
// not assign result buffer yet, add new result buffer
if (pWindowRes->pos.pageId == -1) {
if (pWindowRes->pageId == -1) {
int32_t ret = addNewWindowResultBuf(pWindowRes, pResultBuf, sid, pRuntimeEnv->numOfRowsPerPage);
if (ret != TSDB_CODE_SUCCESS) {
return -1;
@ -1143,7 +1143,7 @@ static int32_t setGroupResultOutputBuf(SQueryRuntimeEnv *pRuntimeEnv, char *pDat
assert(pRuntimeEnv->windowResInfo.interval == 0);
if (pWindowRes->pos.pageId == -1) {
if (pWindowRes->pageId == -1) {
int32_t ret = addNewWindowResultBuf(pWindowRes, pResultBuf, GROUPRESULTID, pRuntimeEnv->numOfRowsPerPage);
if (ret != 0) {
return -1;
@ -2652,7 +2652,7 @@ static void doMerge(SQueryRuntimeEnv *pRuntimeEnv, int64_t timestamp, SWindowRes
SQuery * pQuery = pRuntimeEnv->pQuery;
SQLFunctionCtx *pCtx = pRuntimeEnv->pCtx;
tFilePage *page = getResBufPage(pRuntimeEnv->pResultBuf, pWindowRes->pos.pageId);
tFilePage *page = getResBufPage(pRuntimeEnv->pResultBuf, pWindowRes->pageId);
for (int32_t i = 0; i < pQuery->numOfOutput; ++i) {
int32_t functionId = pQuery->pSelectExpr[i].base.functionId;
@ -2823,14 +2823,14 @@ int32_t tableResultComparFn(const void *pLeft, const void *pRight, void *param)
SWindowResInfo *pWindowResInfo1 = &supporter->pTableQueryInfo[left]->windowResInfo;
SWindowResult * pWindowRes1 = getWindowResult(pWindowResInfo1, leftPos);
tFilePage *page1 = getResBufPage(pRuntimeEnv->pResultBuf, pWindowRes1->pos.pageId);
tFilePage *page1 = getResBufPage(pRuntimeEnv->pResultBuf, pWindowRes1->pageId);
char *b1 = getPosInResultPage(pRuntimeEnv, PRIMARYKEY_TIMESTAMP_COL_INDEX, pWindowRes1, page1);
TSKEY leftTimestamp = GET_INT64_VAL(b1);
SWindowResInfo *pWindowResInfo2 = &supporter->pTableQueryInfo[right]->windowResInfo;
SWindowResult * pWindowRes2 = getWindowResult(pWindowResInfo2, rightPos);
tFilePage *page2 = getResBufPage(pRuntimeEnv->pResultBuf, pWindowRes2->pos.pageId);
tFilePage *page2 = getResBufPage(pRuntimeEnv->pResultBuf, pWindowRes2->pageId);
char *b2 = getPosInResultPage(pRuntimeEnv, PRIMARYKEY_TIMESTAMP_COL_INDEX, pWindowRes2, page2);
TSKEY rightTimestamp = GET_INT64_VAL(b2);
@ -2867,7 +2867,7 @@ int32_t mergeIntoGroupResult(SQInfo *pQInfo) {
}
SGroupResInfo* info = &pQInfo->groupResInfo;
if (pQInfo->groupIndex == numOfGroups && info->pos.pageId == info->numOfDataPages) {
if (pQInfo->groupIndex == numOfGroups && info->pageId == info->numOfDataPages) {
SET_STABLE_QUERY_OVER(pQInfo);
}
@ -2883,10 +2883,10 @@ void copyResToQueryResultBuf(SQInfo *pQInfo, SQuery *pQuery) {
SGroupResInfo* pGroupResInfo = &pQInfo->groupResInfo;
// all results have been return to client, try next group
if (pGroupResInfo->pos.pageId == pGroupResInfo->numOfDataPages) {
if (pGroupResInfo->pageId == pGroupResInfo->numOfDataPages) {
pGroupResInfo->numOfDataPages = 0;
pGroupResInfo->pos.pageId = 0;
pGroupResInfo->pos.rowId = 0;
pGroupResInfo->pageId = 0;
pGroupResInfo->rowId = 0;
// current results of group has been sent to client, try next group
if (mergeIntoGroupResult(pQInfo) != TSDB_CODE_SUCCESS) {
@ -2914,22 +2914,22 @@ void copyResToQueryResultBuf(SQInfo *pQInfo, SQuery *pQuery) {
assert(size == pGroupResInfo->numOfDataPages);
bool done = false;
for (int32_t j = pGroupResInfo->pos.pageId; j < size; ++j) {
for (int32_t j = pGroupResInfo->pageId; j < size; ++j) {
SPageInfo* pi = *(SPageInfo**) taosArrayGet(list, j);
tFilePage* pData = getResBufPage(pResultBuf, pi->pageId);
assert(pData->num > 0 && pData->num <= pRuntimeEnv->numOfRowsPerPage && pGroupResInfo->pos.rowId < pData->num);
int32_t numOfRes = (int32_t)(pData->num - pGroupResInfo->pos.rowId);
assert(pData->num > 0 && pData->num <= pRuntimeEnv->numOfRowsPerPage && pGroupResInfo->rowId < pData->num);
int32_t numOfRes = (int32_t)(pData->num - pGroupResInfo->rowId);
if (numOfRes > pQuery->rec.capacity - offset) {
numOfCopiedRows = (int32_t)(pQuery->rec.capacity - offset);
pGroupResInfo->pos.rowId += numOfCopiedRows;
pGroupResInfo->rowId += numOfCopiedRows;
done = true;
} else {
numOfCopiedRows = (int32_t)pData->num;
pGroupResInfo->pos.pageId += 1;
pGroupResInfo->pos.rowId = 0;
pGroupResInfo->pageId += 1;
pGroupResInfo->rowId = 0;
}
for (int32_t i = 0; i < pQuery->numOfOutput; ++i) {
@ -3020,8 +3020,8 @@ int32_t mergeIntoGroupResultImpl(SQInfo *pQInfo, SArray *pGroup) {
pGroupResInfo->numOfDataPages = (int32_t)taosArrayGetSize(pageList);
pGroupResInfo->groupId = tid;
pGroupResInfo->pos.pageId = 0;
pGroupResInfo->pos.rowId = 0;
pGroupResInfo->pageId = 0;
pGroupResInfo->rowId = 0;
return pGroupResInfo->numOfDataPages;
}
@ -3067,7 +3067,7 @@ int32_t mergeIntoGroupResultImpl(SQInfo *pQInfo, SArray *pGroup) {
SWindowResInfo *pWindowResInfo = &pTableList[pos]->windowResInfo;
SWindowResult *pWindowRes = getWindowResult(pWindowResInfo, cs.position[pos]);
tFilePage *page = getResBufPage(pRuntimeEnv->pResultBuf, pWindowRes->pos.pageId);
tFilePage *page = getResBufPage(pRuntimeEnv->pResultBuf, pWindowRes->pageId);
char *b = getPosInResultPage(pRuntimeEnv, PRIMARYKEY_TIMESTAMP_COL_INDEX, pWindowRes, page);
TSKEY ts = GET_INT64_VAL(b);
@ -3104,7 +3104,7 @@ int32_t mergeIntoGroupResultImpl(SQInfo *pQInfo, SArray *pGroup) {
lastTimestamp = ts;
// move to the next element of current entry
int32_t currentPageId = pWindowRes->pos.pageId;
int32_t currentPageId = pWindowRes->pageId;
cs.position[pos] += 1;
if (cs.position[pos] >= pWindowResInfo->size) {
@ -3117,7 +3117,7 @@ int32_t mergeIntoGroupResultImpl(SQInfo *pQInfo, SArray *pGroup) {
} else {
// current page is not needed anymore
SWindowResult *pNextWindowRes = getWindowResult(pWindowResInfo, cs.position[pos]);
if (pNextWindowRes->pos.pageId != currentPageId) {
if (pNextWindowRes->pageId != currentPageId) {
releaseResBufPage(pRuntimeEnv->pResultBuf, page);
}
}
@ -3329,7 +3329,8 @@ int32_t createQueryResultInfo(SQuery *pQuery, SWindowResult *pResultRow, bool is
return TSDB_CODE_QRY_OUT_OF_MEMORY;
}
pResultRow->pos = (SPosInfo) {-1, -1};
pResultRow->pageId = -1;
pResultRow->rowId = -1;
char* buf = (char*) pResultRow->resultInfo + numOfCols * sizeof(SResultInfo);
@ -3796,7 +3797,7 @@ void setExecutionContext(SQInfo *pQInfo, int32_t groupIndex, TSKEY nextKey) {
* not assign result buffer yet, add new result buffer
* all group belong to one result set, and each group result has different group id so set the id to be one
*/
if (pWindowRes->pos.pageId == -1) {
if (pWindowRes->pageId == -1) {
if (addNewWindowResultBuf(pWindowRes, pRuntimeEnv->pResultBuf, groupIndex, pRuntimeEnv->numOfRowsPerPage) !=
TSDB_CODE_SUCCESS) {
return;
@ -3813,7 +3814,7 @@ void setWindowResOutputBuf(SQueryRuntimeEnv *pRuntimeEnv, SWindowResult *pResult
SQuery *pQuery = pRuntimeEnv->pQuery;
// Note: pResult->pos[i]->num == 0, there is only fixed number of results for each group
tFilePage *page = getResBufPage(pRuntimeEnv->pResultBuf, pResult->pos.pageId);
tFilePage *page = getResBufPage(pRuntimeEnv->pResultBuf, pResult->pageId);
for (int32_t i = 0; i < pQuery->numOfOutput; ++i) {
SQLFunctionCtx *pCtx = &pRuntimeEnv->pCtx[i];
@ -3840,7 +3841,7 @@ void setWindowResOutputBufInitCtx(SQueryRuntimeEnv *pRuntimeEnv, SWindowResult *
SQuery *pQuery = pRuntimeEnv->pQuery;
// Note: pResult->pos[i]->num == 0, there is only fixed number of results for each group
tFilePage* bufPage = getResBufPage(pRuntimeEnv->pResultBuf, pResult->pos.pageId);
tFilePage* bufPage = getResBufPage(pRuntimeEnv->pResultBuf, pResult->pageId);
for (int32_t i = 0; i < pQuery->numOfOutput; ++i) {
SQLFunctionCtx *pCtx = &pRuntimeEnv->pCtx[i];
@ -4019,12 +4020,12 @@ static int32_t doCopyToSData(SQInfo *pQInfo, SWindowResInfo *pResultInfo, int32_
for (int32_t i = startIdx; (i < totalSet) && (i >= 0); i += step) {
if (result[i].numOfRows == 0) {
pQInfo->groupIndex += 1;
pGroupResInfo->pos.rowId = 0;
pGroupResInfo->rowId = 0;
continue;
}
int32_t numOfRowsToCopy = result[i].numOfRows - pGroupResInfo->pos.rowId;
int32_t oldOffset = pGroupResInfo->pos.rowId;
int32_t numOfRowsToCopy = result[i].numOfRows - pGroupResInfo->rowId;
int32_t oldOffset = pGroupResInfo->rowId;
/*
* current output space is not enough to accommodate all data of this page, only partial results
@ -4032,13 +4033,13 @@ static int32_t doCopyToSData(SQInfo *pQInfo, SWindowResInfo *pResultInfo, int32_
*/
if (numOfRowsToCopy > pQuery->rec.capacity - numOfResult) {
numOfRowsToCopy = (int32_t) pQuery->rec.capacity - numOfResult;
pGroupResInfo->pos.rowId += numOfRowsToCopy;
pGroupResInfo->rowId += numOfRowsToCopy;
} else {
pGroupResInfo->pos.rowId = 0;
pGroupResInfo->rowId = 0;
pQInfo->groupIndex += 1;
}
tFilePage *page = getResBufPage(pRuntimeEnv->pResultBuf, result[i].pos.pageId);
tFilePage *page = getResBufPage(pRuntimeEnv->pResultBuf, result[i].pageId);
for (int32_t j = 0; j < pQuery->numOfOutput; ++j) {
int32_t size = pRuntimeEnv->pCtx[j].outputBytes;

View File

@ -266,7 +266,7 @@ void clearTimeWindowResBuf(SQueryRuntimeEnv *pRuntimeEnv, SWindowResult *pWindow
return;
}
tFilePage *page = getResBufPage(pRuntimeEnv->pResultBuf, pWindowRes->pos.pageId);
tFilePage *page = getResBufPage(pRuntimeEnv->pResultBuf, pWindowRes->pageId);
for (int32_t i = 0; i < pRuntimeEnv->pQuery->numOfOutput; ++i) {
SResultInfo *pResultInfo = &pWindowRes->resultInfo[i];
@ -279,7 +279,8 @@ void clearTimeWindowResBuf(SQueryRuntimeEnv *pRuntimeEnv, SWindowResult *pWindow
}
pWindowRes->numOfRows = 0;
pWindowRes->pos = (SPosInfo){-1, -1};
pWindowRes->pageId = -1;
pWindowRes->rowId = -1;
pWindowRes->closed = false;
pWindowRes->win = TSWINDOW_INITIALIZER;
}
@ -308,10 +309,10 @@ void copyTimeWindowResBuf(SQueryRuntimeEnv *pRuntimeEnv, SWindowResult *dst, con
memcpy(pDst->interResultBuf, pSrc->interResultBuf, pDst->bufLen);
// copy the output buffer data from src to dst, the position info keep unchanged
tFilePage *dstpage = getResBufPage(pRuntimeEnv->pResultBuf, dst->pos.pageId);
tFilePage *dstpage = getResBufPage(pRuntimeEnv->pResultBuf, dst->pageId);
char * dstBuf = getPosInResultPage(pRuntimeEnv, i, dst, dstpage);
tFilePage *srcpage = getResBufPage(pRuntimeEnv->pResultBuf, src->pos.pageId);
tFilePage *srcpage = getResBufPage(pRuntimeEnv->pResultBuf, src->pageId);
char * srcBuf = getPosInResultPage(pRuntimeEnv, i, (SWindowResult *)src, srcpage);
size_t s = pRuntimeEnv->pQuery->pSelectExpr[i].bytes;

View File

@ -215,6 +215,11 @@ static void rpcUnlockConn(SRpcConn *pConn);
static void rpcAddRef(SRpcInfo *pRpc);
static void rpcDecRef(SRpcInfo *pRpc);
static void rpcFree(void *p) {
tTrace("free mem: %p", p);
free(p);
}
static void rpcInit(void) {
tsProgressTimer = tsRpcTimer/2;
@ -222,7 +227,7 @@ static void rpcInit(void) {
tsRpcHeadSize = RPC_MSG_OVERHEAD;
tsRpcOverhead = sizeof(SRpcReqContext);
tsRpcRefId = taosOpenRef(200, free);
tsRpcRefId = taosOpenRef(200, rpcFree);
}
void *rpcOpen(const SRpcInit *pInit) {

View File

@ -1271,7 +1271,6 @@ static void copyAllRemainRowsFromFileBlock(STsdbQueryHandle* pQueryHandle, STabl
int32_t end = endPos;
if (!ASCENDING_TRAVERSE(pQueryHandle->order)) {
assert(start >= end);
SWAP(start, end, int32_t);
}

View File

@ -176,8 +176,9 @@ int taosAddRef(int refId, void *p)
pNode->count = 1;
pNode->prev = 0;
pNode->next = pSet->nodeList[hash];
if (pSet->nodeList[hash]) pSet->nodeList[hash]->prev = pNode;
pSet->nodeList[hash] = pNode;
uTrace("refId:%d p:%p is added, count::%d", refId, p, pSet->count);
uTrace("refId:%d p:%p is added, count:%d malloc mem: %p", refId, p, pSet->count, pNode);
} else {
code = TSDB_CODE_REF_NO_MEMORY;
uTrace("refId:%d p:%p is not added, since no memory", refId, p);
@ -291,7 +292,7 @@ void taosReleaseRef(int refId, void *p)
free(pNode);
released = 1;
uTrace("refId:%d p:%p is removed, count::%d", refId, p, pSet->count);
uTrace("refId:%d p:%p is removed, count:%d, free mem: %p", refId, p, pSet->count, pNode);
} else {
uTrace("refId:%d p:%p is released", refId, p);
}

View File

@ -0,0 +1,268 @@
# 如何在 windows环境下使用jdbc进行TDengine应用开发
本文以windows环境为例介绍java如何进行TDengine开发应用
## 环境准备
1安装jdk
官网下载jdk-1.8下载页面https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html
安装配置环境变量把jdk加入到环境变量里。
命令行内查看java的版本。
```shell
>java -version
java version "1.8.0_131"
Java(TM) SE Runtime Environment (build 1.8.0_131-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode)
```
2安装配置maven
官网下载maven下载地址http://maven.apache.org/download.cgi
配置环境变量MAVEN_HOME将MAVEN_HOME/bin添加到PATH
命令行里查看maven的版本
```shell
>mvn --version
Apache Maven 3.5.0 (ff8f5e7444045639af65f6095c62210b5713f426; 2017-04-04T03:39:06+08:00)
Maven home: D:\apache-maven-3.5.0\bin\..
Java version: 1.8.0_131, vendor: Oracle Corporation
Java home: C:\Program Files\Java\jdk1.8.0_131\jre
Default locale: zh_CN, platform encoding: GBK
OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"
```
为了加快maven下载依赖的速度可以为maven配置mirror修改MAVEN_HOME\config\settings.xml文件
```xml
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<!-- 配置本地maven仓库的路径 -->
<localRepository>D:\apache-maven-localRepository</localRepository>
<mirrors>
<!-- 配置阿里云Maven镜像仓库 -->
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
<profiles>
<!-- 配置jdkmaven会默认使用java1.8 -->
<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
</profiles>
</settings>
```
3在linux服务器上安装TDengine-server
在taosdata官网下载TDengine-server下载地址https://www.taosdata.com/cn/all-downloads/
在linux服务器上安装TDengine-server
```shell
# tar -zxvf package/TDengine-server-2.0.1.1-Linux-x64.tar.gz
# cd TDengine-server/
# ./install.sh
```
启动taosd
```shell
# systemctl start taosd
```
在server上用taos连接taosd
```shell
# taos
taos> show dnodes;
id | end_point | vnodes | cores | status | role | create_time |
==================================================================================================================
1 | td01:6030 | 2 | 4 | ready | any | 2020-08-19 18:40:25.045 |
Query OK, 1 row(s) in set (0.005765s)
```
如果可以正确连接到taosd实例并打印出databases的信息说明TDengine的server已经正确启动。这里查看server的hostname
```shell
# hostname -f
td01
```
注意如果安装TDengine后使用默认的taos.cfg配置文件taosd会使用当前server的hostname创建dnode实例。之后在client也需要使用这个hostname来连接taosd。
4在windows上安装TDengine-client
在taosdata官网下载taos客户端下载地址
https://www.taosdata.com/cn/all-downloads/
下载后双击exe安装。
修改client的hosts文件C:\Windows\System32\drivers\etc\hosts将server的hostname和ip配置到client的hosts文件中
```
192.168.236.136 td01
```
配置完成后在命令行内使用taos shell连接server端
```shell
C:\TDengine>taos
Welcome to the TDengine shell from Linux, Client Version:2.0.1.1
Copyright (c) 2017 by TAOS Data, Inc. All rights reserved.
taos> show databases;
name | created_time | ntables | vgroups | replica | quorum | days | keep1,keep2,keep(D) | cache(MB) | blocks | minrows | maxrows | wallevel | fsync | comp | precision | status |
===================================================================================================================================================================================================================================================================
test | 2020-08-19 18:43:50.731 | 1 | 1 | 1 | 1 | 2 | 3650,3650,3650 | 16 | 6 | 100 | 4096 | 1 | 3000 | 2 | ms | ready |
log | 2020-08-19 18:40:28.064 | 4 | 1 | 1 | 1 | 10 | 30,30,30 | 1 | 3 | 100 | 4096 | 1 | 3000 | 2 | us | ready |
Query OK, 2 row(s) in set (0.068000s)
```
如果windows上的client能够正常连接并打印database信息说明client可以正常连接server了。
## 应用开发
1新建maven工程在pom.xml中引入taos-jdbcdriver依赖。
```xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.taosdata.demo</groupId>
<artifactId>JdbcDemo</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>2.0.8</version>
</dependency>
</dependencies>
</project>
```
2使用jdbc查询TDengine数据库
下面是示例代码:
```java
public class JdbcDemo {
public static void main(String[] args) throws Exception {
Connection conn = getConn();
Statement stmt = conn.createStatement();
// create database
stmt.executeUpdate("create database if not exists db");
// use database
stmt.executeUpdate("use db");
// create table
stmt.executeUpdate("create table if not exists tb (ts timestamp, temperature int, humidity float)");
// insert data
int affectedRows = stmt.executeUpdate("insert into tb values(now, 23, 10.3) (now + 1s, 20, 9.3)");
System.out.println("insert " + affectedRows + " rows.");
// query data
ResultSet resultSet = stmt.executeQuery("select * from tb");
Timestamp ts = null;
int temperature = 0;
float humidity = 0;
while(resultSet.next()){
ts = resultSet.getTimestamp(1);
temperature = resultSet.getInt(2);
humidity = resultSet.getFloat("humidity");
System.out.printf("%s, %d, %s\n", ts, temperature, humidity);
}
}
public static Connection getConn() throws Exception{
Class.forName("com.taosdata.jdbc.TSDBDriver");
String jdbcUrl = "jdbc:TAOS://td01:0/log?user=root&password=taosdata";
Properties connProps = new Properties();
connProps.setProperty(TSDBDriver.PROPERTY_KEY_CHARSET, "UTF-8");
connProps.setProperty(TSDBDriver.PROPERTY_KEY_LOCALE, "en_US.UTF-8");
connProps.setProperty(TSDBDriver.PROPERTY_KEY_TIME_ZONE, "UTC-8");
Connection conn = DriverManager.getConnection(jdbcUrl, connProps);
return conn;
}
}
```
3测试jdbc访问tdengine的sever实例
console输出
```
insert 2 rows.
2020-08-26 00:06:34.575, 23, 10.3
2020-08-26 00:06:35.575, 20, 9.3
```
## 指南
1如何设置主机名和hosts
在server上查看hostname和fqdn
```shell
查看hostname
# hostname
taos-server
查看fqdn
# hostname -f
taos-server
```
windows下hosts文件位于
C:\\Windows\System32\drivers\etc\hosts
修改hosts文件添加server的ip和hostname
```s
192.168.56.101 node5
```
2什么是fqdn
> 什么是FQDN
>
> FQDNFull qualified domain name全限定域名fqdn由2部分组成hostname+domainname。
>
> 例如一个邮件服务器的fqdn可能是mymail.somecollege.edu其中mymail是hostname主机名somcollege.edu是domainname域名。本例中.edu是顶级域名.somecollege是二级域名。
>
> 当连接服务器时必须指定fqdn然后dns服务器通过查看dns表将hostname解析为相应的ip地址。如果只指定hostname不指定domainname应用程序可能服务解析主机名。因为如果你试图访问不在本地的远程服务器时本地的dns服务器和可能没有远程服务器的hostname列表。
>
> 参考https://kb.iu.edu/d/aiuv

View File

@ -151,6 +151,7 @@ python3 ./test.py -f query/select_last_crash.py
python3 ./test.py -f query/queryNullValueTest.py
python3 ./test.py -f query/queryInsertValue.py
python3 ./test.py -f query/queryConnection.py
python3 ./test.py -f query/queryCountCSVData.py
python3 ./test.py -f query/natualInterval.py
python3 ./test.py -f query/bug1471.py

View File

@ -0,0 +1,71 @@
###################################################################
# Copyright (c) 2016 by TAOS Technologies, Inc.
# All rights reserved.
#
# This file is proprietary and confidential to TAOS Technologies.
# No part of this file may be reproduced, stored, transmitted,
# disclosed or used in any form or by any means other than as
# expressly provided by the written permission from Jianhui Tao
#
###################################################################
# -*- coding: utf-8 -*-
import sys
import taos
from util.log import tdLog
from util.cases import tdCases
from util.sql import tdSql
from util.dnodes import tdDnodes
class TDTestCase:
"""
create table and insert data from disordered.csv which timestamp is disordered and
ordered.csv which timestamp is ordered.
then execute 'select count(*) from table xx;'
"""
def init(self, conn, logSql):
tdLog.debug("start to execute %s" % __file__)
tdSql.init(conn.cursor(), logSql)
def run(self):
tdSql.prepare()
print("==============step1")
tdSql.execute("create database if not exists demo;");
tdSql.execute("use demo;")
tdSql.execute("CREATE TABLE IF NOT EXISTS test1 (ts TIMESTAMP, ValueID int, "
"VariantValue float, Quality int, Flags int);")
tdSql.execute("CREATE TABLE IF NOT EXISTS test2 (ts TIMESTAMP, ValueID int, "
"VariantValue float, Quality int, Flags int);")
ordered_csv = __file__.split('query')[0] + 'test_data/ordered.csv'
disordered_csv = __file__.split('query')[0] + 'test_data/disordered.csv'
tdSql.execute(" insert into test1 file '{file}';".format(file=ordered_csv))
tdSql.execute(" insert into test2 file '{file}';".format(file=disordered_csv))
print("==============insert into test1 and test2 form test file")
print("==============step2")
tdSql.query('select * from test1;')
with open(ordered_csv) as f1:
num1 = len(f1.readlines())
tdSql.checkRows(num1)
tdSql.query('select * from test2;')
with open(disordered_csv) as f2:
num2 = len(f2.readlines())
tdSql.checkRows(num2)
print("=============execute select count(*) from xxx")
def stop(self):
tdSql.close()
tdLog.success("%s successfully executed" % __file__)
tdCases.addWindows(__file__, TDTestCase())
tdCases.addLinux(__file__, TDTestCase())

View File

@ -0,0 +1,15 @@
###################################################################
# Copyright (c) 2016 by TAOS Technologies, Inc.
# All rights reserved.
#
# This file is proprietary and confidential to TAOS Technologies.
# No part of this file may be reproduced, stored, transmitted,
# disclosed or used in any form or by any means other than as
# expressly provided by the written permission from Jianhui Tao
#
###################################################################
"""
this directory contains test data files
"""

View File

@ -0,0 +1,500 @@
"2020-03-01 20:01:49.493","130","7.595","128","8392704"
"2020-03-01 20:01:50.493","130","7.598","128","8392704"
"2020-03-01 20:01:51.493","130","7.602","128","8392704"
"2020-03-01 20:01:52.493","130","7.604","128","8392704"
"2020-03-01 20:01:53.493","130","7.604","128","8392704"
"2020-03-01 20:01:54.493","130","7.606","128","8392704"
"2020-03-01 20:01:55.493","130","7.607","128","8392704"
"2020-03-01 20:01:56.493","130","7.607","128","8392704"
"2020-03-01 20:01:57.493","130","7.607","128","8392704"
"2020-03-01 20:01:58.493","130","7.607","128","8392704"
"2020-03-01 20:01:59.493","130","7.606","128","8392704"
"2020-03-01 20:02:00.493","130","7.606","128","8392704"
"2020-03-01 20:02:01.493","130","7.606","128","8392704"
"2020-03-01 20:02:02.493","130","7.607","128","8392704"
"2020-03-01 20:02:03.493","130","7.608","128","8392704"
"2020-03-01 20:02:04.493","130","7.609","128","8392704"
"2020-03-01 20:02:05.493","130","7.609","128","8392704"
"2020-03-01 20:02:06.493","130","7.608","128","8392704"
"2020-03-01 20:02:07.493","130","7.606","128","8392704"
"2020-03-01 20:02:08.493","130","7.606","128","8392704"
"2020-03-01 20:02:09.493","130","7.607","128","8392704"
"2020-03-01 20:02:10.493","130","7.609","128","8392704"
"2020-03-01 20:02:11.493","130","7.61","128","8392704"
"2020-03-01 20:02:12.493","130","7.611","128","8392704"
"2020-03-01 20:02:13.493","130","7.61","128","8392704"
"2020-03-01 20:02:14.493","130","7.607","128","8392704"
"2020-03-01 20:02:15.493","130","7.605","128","8392704"
"2020-03-01 20:02:16.493","130","7.604","128","8392704"
"2020-03-01 20:02:17.493","130","7.603","128","8392704"
"2020-03-01 20:02:18.493","130","7.604","128","8392704"
"2020-03-01 20:02:19.493","130","7.604","128","8392704"
"2020-03-01 20:02:20.493","130","7.603","128","8392704"
"2020-03-01 20:02:21.493","130","7.601","128","8392704"
"2020-03-01 20:02:22.493","130","7.598","128","8392704"
"2020-03-01 20:02:23.493","130","7.595","128","8392704"
"2020-03-01 20:02:24.493","130","7.594","128","8392704"
"2020-03-01 20:02:25.493","130","7.594","128","8392704"
"2020-03-01 20:02:26.493","130","7.595","128","8392704"
"2020-03-01 20:02:27.493","130","7.596","128","8392704"
"2020-03-01 20:02:28.493","130","7.596","128","8392704"
"2020-03-01 20:02:29.493","130","7.598","128","8392704"
"2020-03-01 20:02:30.493","130","7.6","128","8392704"
"2020-03-01 20:02:31.493","130","7.6","128","8392704"
"2020-03-01 20:02:32.493","130","7.6","128","8392704"
"2020-03-01 20:02:33.493","130","7.601","128","8392704"
"2020-03-01 20:02:34.493","130","7.603","128","8392704"
"2020-03-01 20:02:35.493","130","7.604","128","8392704"
"2020-03-01 20:02:36.493","130","7.605","128","8392704"
"2020-03-01 20:02:37.493","130","7.606","128","8392704"
"2020-03-01 20:02:38.493","130","7.61","128","8392704"
"2020-03-01 20:02:39.493","130","7.611","128","8392704"
"2020-03-01 20:02:40.493","130","7.61","128","8392704"
"2020-03-01 20:02:41.493","130","7.609","128","8392704"
"2020-03-01 20:02:42.493","130","7.611","128","8392704"
"2020-03-01 20:02:43.493","130","7.61","128","8392704"
"2020-03-01 20:02:44.493","130","7.607","128","8392704"
"2020-03-01 20:02:45.493","130","7.605","128","8392704"
"2020-03-01 20:02:46.493","130","7.606","128","8392704"
"2020-03-01 20:02:47.493","130","7.604","128","8392704"
"2020-03-01 20:02:48.493","130","7.599","128","8392704"
"2020-03-01 20:02:49.493","130","7.595","128","8392704"
"2020-03-01 06:41:17.493","130","6.742","128","8392704"
"2020-03-01 06:41:18.493","130","6.741","128","8392704"
"2020-03-01 06:41:19.493","130","6.737","128","8392704"
"2020-03-01 06:41:20.493","130","6.734","128","8392704"
"2020-03-01 06:41:21.493","130","6.734","128","8392704"
"2020-03-01 06:41:22.493","130","6.733","128","8392704"
"2020-03-01 06:41:23.493","130","6.736","128","8392704"
"2020-03-01 06:41:24.493","130","6.739","128","8392704"
"2020-03-01 06:41:25.493","130","6.738","128","8392704"
"2020-03-01 06:41:26.493","130","6.74","128","8392704"
"2020-03-01 06:41:27.493","130","6.745","128","8392704"
"2020-03-01 06:41:28.493","130","6.749","128","8392704"
"2020-03-01 06:41:29.493","130","6.753","128","8392704"
"2020-03-01 06:41:30.493","130","6.753","128","8392704"
"2020-03-01 06:41:31.493","130","6.757","128","8392704"
"2020-03-01 06:41:32.493","130","6.763","128","8392704"
"2020-03-01 06:41:33.493","130","6.765","128","8392704"
"2020-03-01 06:41:34.493","130","6.764","128","8392704"
"2020-03-01 06:41:35.493","130","6.762","128","8392704"
"2020-03-01 06:41:36.493","130","6.758","128","8392704"
"2020-03-01 06:41:37.493","130","6.756","128","8392704"
"2020-03-01 06:41:38.493","130","6.755","128","8392704"
"2020-03-01 06:41:39.493","130","6.754","128","8392704"
"2020-03-01 06:41:40.493","130","6.755","128","8392704"
"2020-03-01 06:41:41.493","130","6.756","128","8392704"
"2020-03-01 06:41:42.493","130","6.757","128","8392704"
"2020-03-01 06:41:43.493","130","6.756","128","8392704"
"2020-03-01 06:41:44.493","130","6.756","128","8392704"
"2020-03-01 06:41:45.493","130","6.756","128","8392704"
"2020-03-01 06:41:46.493","130","6.759","128","8392704"
"2020-03-01 06:41:47.493","130","6.759","128","8392704"
"2020-03-01 06:41:48.493","130","6.758","128","8392704"
"2020-03-01 06:41:49.493","130","6.758","128","8392704"
"2020-03-01 06:41:50.493","130","6.756","128","8392704"
"2020-03-01 06:41:51.493","130","6.755","128","8392704"
"2020-03-01 06:41:52.493","130","6.755","128","8392704"
"2020-03-01 06:41:53.493","130","6.754","128","8392704"
"2020-03-01 06:41:54.493","130","6.751","128","8392704"
"2020-03-01 06:41:55.493","130","6.752","128","8392704"
"2020-03-01 06:41:56.493","130","6.753","128","8392704"
"2020-03-01 06:41:57.493","130","6.753","128","8392704"
"2020-03-01 06:41:58.493","130","6.753","128","8392704"
"2020-03-01 06:41:59.493","130","6.755","128","8392704"
"2020-03-01 06:42:00.493","130","6.752","128","8392704"
"2020-03-01 06:42:01.493","130","6.75","128","8392704"
"2020-03-01 06:42:02.493","130","6.75","128","8392704"
"2020-03-01 06:42:03.493","130","6.753","128","8392704"
"2020-03-01 06:42:04.493","130","6.755","128","8392704"
"2020-03-01 06:42:05.493","130","6.754","128","8392704"
"2020-03-01 06:42:06.493","130","6.754","128","8392704"
"2020-03-01 06:42:07.493","130","6.752","128","8392704"
"2020-03-01 06:42:08.493","130","6.748","128","8392704"
"2020-03-01 06:42:09.493","130","6.747","128","8392704"
"2020-03-01 06:42:10.493","130","6.747","128","8392704"
"2020-03-01 06:42:11.493","130","6.748","128","8392704"
"2020-03-01 06:42:12.493","130","6.748","128","8392704"
"2020-03-01 06:42:13.493","130","6.75","128","8392704"
"2020-03-01 06:42:14.493","130","6.754","128","8392704"
"2020-03-01 06:42:15.493","130","6.754","128","8392704"
"2020-03-01 06:42:16.493","130","6.756","128","8392704"
"2020-03-01 06:42:17.493","130","6.756","128","8392704"
"2020-03-01 06:42:18.493","130","6.757","128","8392704"
"2020-03-01 06:42:19.493","130","6.757","128","8392704"
"2020-03-01 06:42:20.493","130","6.76","128","8392704"
"2020-03-01 06:42:21.493","130","6.761","128","8392704"
"2020-03-01 06:42:22.493","130","6.76","128","8392704"
"2020-03-01 06:42:23.493","130","6.76","128","8392704"
"2020-03-01 06:42:24.493","130","6.76","128","8392704"
"2020-03-01 06:42:25.493","130","6.76","128","8392704"
"2020-03-01 06:42:26.493","130","6.758","128","8392704"
"2020-03-01 06:42:27.493","130","6.757","128","8392704"
"2020-03-01 06:42:28.493","130","6.752","128","8392704"
"2020-03-01 06:42:29.493","130","6.746","128","8392704"
"2020-03-01 06:42:30.493","130","6.742","128","8392704"
"2020-03-01 06:42:31.493","130","6.741","128","8392704"
"2020-03-01 06:42:32.493","130","6.739","128","8392704"
"2020-03-01 06:42:33.493","130","6.739","128","8392704"
"2020-03-01 06:42:34.493","130","6.737","128","8392704"
"2020-03-01 06:42:35.493","130","6.737","128","8392704"
"2020-03-01 06:42:36.493","130","6.738","128","8392704"
"2020-03-01 06:42:37.493","130","6.739","128","8392704"
"2020-03-01 06:42:38.493","130","6.743","128","8392704"
"2020-03-01 06:42:39.493","130","6.747","128","8392704"
"2020-03-01 06:42:40.493","130","6.748","128","8392704"
"2020-03-01 06:42:41.493","130","6.746","128","8392704"
"2020-03-01 06:42:42.493","130","6.746","128","8392704"
"2020-03-01 06:42:43.493","130","6.745","128","8392704"
"2020-03-01 06:42:44.493","130","6.742","128","8392704"
"2020-03-01 06:42:45.493","130","6.741","128","8392704"
"2020-03-01 06:42:46.493","130","6.74","128","8392704"
"2020-03-01 06:42:47.493","130","6.742","128","8392704"
"2020-03-01 06:42:48.493","130","6.743","128","8392704"
"2020-03-01 06:42:49.493","130","6.742","128","8392704"
"2020-03-01 06:42:50.493","130","6.742","128","8392704"
"2020-03-01 06:42:51.493","130","6.741","128","8392704"
"2020-03-01 06:42:52.493","130","6.741","128","8392704"
"2020-03-01 06:42:53.493","130","6.742","128","8392704"
"2020-03-01 06:42:54.493","130","6.742","128","8392704"
"2020-03-01 06:42:55.493","130","6.745","128","8392704"
"2020-03-01 06:42:56.493","130","6.747","128","8392704"
"2020-03-01 06:42:57.493","130","6.748","128","8392704"
"2020-03-01 06:42:58.493","130","6.75","128","8392704"
"2020-03-01 06:42:59.493","130","6.75","128","8392704"
"2020-03-01 06:43:00.493","130","6.748","128","8392704"
"2020-03-01 06:43:01.493","130","6.748","128","8392704"
"2020-03-01 06:43:02.493","130","6.746","128","8392704"
"2020-03-01 06:43:03.493","130","6.745","128","8392704"
"2020-03-01 06:43:04.493","130","6.745","128","8392704"
"2020-03-01 06:43:05.493","130","6.745","128","8392704"
"2020-03-01 06:43:06.493","130","6.744","128","8392704"
"2020-03-01 06:43:07.493","130","6.749","128","8392704"
"2020-03-01 06:43:08.493","130","6.756","128","8392704"
"2020-03-01 06:43:09.493","130","6.759","128","8392704"
"2020-03-01 06:43:10.493","130","6.759","128","8392704"
"2020-03-01 06:43:11.493","130","6.758","128","8392704"
"2020-03-01 06:43:12.493","130","6.758","128","8392704"
"2020-03-01 06:43:13.493","130","6.759","128","8392704"
"2020-03-01 06:43:14.493","130","6.759","128","8392704"
"2020-03-01 06:43:15.493","130","6.753","128","8392704"
"2020-03-01 06:43:16.493","130","6.751","128","8392704"
"2020-03-01 20:02:50.493","130","7.596","128","8392704"
"2020-03-01 20:02:51.493","130","7.597","128","8392704"
"2020-03-01 20:02:52.493","130","7.599","128","8392704"
"2020-03-01 20:02:53.493","130","7.6","128","8392704"
"2020-03-01 20:02:54.493","130","7.601","128","8392704"
"2020-03-01 20:02:55.493","130","7.603","128","8392704"
"2020-03-01 20:02:56.493","130","7.602","128","8392704"
"2020-03-01 20:02:57.493","130","7.601","128","8392704"
"2020-03-01 20:02:58.493","130","7.601","128","8392704"
"2020-03-01 20:02:59.493","130","7.6","128","8392704"
"2020-03-01 20:03:00.493","130","7.599","128","8392704"
"2020-03-01 20:03:01.493","130","7.599","128","8392704"
"2020-03-01 20:03:02.493","130","7.6","128","8392704"
"2020-03-01 20:03:03.493","130","7.601","128","8392704"
"2020-03-01 20:03:04.493","130","7.601","128","8392704"
"2020-03-01 20:03:05.493","130","7.601","128","8392704"
"2020-03-01 20:03:06.493","130","7.6","128","8392704"
"2020-03-01 20:03:07.493","130","7.602","128","8392704"
"2020-03-01 20:03:08.493","130","7.606","128","8392704"
"2020-03-01 20:03:09.493","130","7.609","128","8392704"
"2020-03-01 20:03:10.493","130","7.612","128","8392704"
"2020-03-01 20:03:11.493","130","7.614","128","8392704"
"2020-03-01 20:03:12.493","130","7.615","128","8392704"
"2020-03-01 20:03:13.493","130","7.614","128","8392704"
"2020-03-01 20:03:14.493","130","7.613","128","8392704"
"2020-03-01 20:03:15.493","130","7.614","128","8392704"
"2020-03-01 20:03:16.493","130","7.612","128","8392704"
"2020-03-01 20:03:17.493","130","7.609","128","8392704"
"2020-03-01 20:03:18.493","130","7.606","128","8392704"
"2020-03-01 20:03:19.493","130","7.604","128","8392704"
"2020-03-01 20:03:20.493","130","7.604","128","8392704"
"2020-03-01 20:03:21.493","130","7.605","128","8392704"
"2020-03-01 20:03:22.493","130","7.605","128","8392704"
"2020-03-01 20:03:23.493","130","7.605","128","8392704"
"2020-03-01 20:03:24.493","130","7.605","128","8392704"
"2020-03-01 20:03:25.493","130","7.604","128","8392704"
"2020-03-01 20:03:26.493","130","7.603","128","8392704"
"2020-03-01 20:03:27.493","130","7.604","128","8392704"
"2020-03-01 20:03:28.493","130","7.605","128","8392704"
"2020-03-01 20:03:29.493","130","7.607","128","8392704"
"2020-03-01 20:03:30.493","130","7.609","128","8392704"
"2020-03-01 20:03:31.493","130","7.609","128","8392704"
"2020-03-01 20:03:32.493","130","7.607","128","8392704"
"2020-03-01 20:03:33.493","130","7.606","128","8392704"
"2020-03-01 20:03:34.493","130","7.607","128","8392704"
"2020-03-01 20:03:35.493","130","7.608","128","8392704"
"2020-03-01 20:03:36.493","130","7.609","128","8392704"
"2020-03-01 20:03:37.493","130","7.609","128","8392704"
"2020-03-01 20:03:38.493","130","7.607","128","8392704"
"2020-03-01 20:03:39.493","130","7.602","128","8392704"
"2020-03-01 20:03:40.493","130","7.599","128","8392704"
"2020-03-01 20:03:41.493","130","7.598","128","8392704"
"2020-03-01 20:03:42.493","130","7.596","128","8392704"
"2020-03-01 20:03:43.493","130","7.595","128","8392704"
"2020-03-01 20:03:44.493","130","7.594","128","8392704"
"2020-03-01 20:03:45.493","130","7.595","128","8392704"
"2020-03-01 20:03:46.493","130","7.597","128","8392704"
"2020-03-01 20:03:47.493","130","7.596","128","8392704"
"2020-03-01 20:03:48.493","130","7.595","128","8392704"
"2020-03-01 20:03:49.493","130","7.596","128","8392704"
"2020-03-01 20:03:50.493","130","7.596","128","8392704"
"2020-03-01 20:03:51.493","130","7.595","128","8392704"
"2020-03-01 20:03:52.493","130","7.596","128","8392704"
"2020-03-01 20:03:53.493","130","7.597","128","8392704"
"2020-03-01 20:03:54.493","130","7.598","128","8392704"
"2020-03-01 20:03:55.493","130","7.596","128","8392704"
"2020-03-01 20:03:56.493","130","7.596","128","8392704"
"2020-03-01 20:03:57.493","130","7.599","128","8392704"
"2020-03-01 20:03:58.493","130","7.602","128","8392704"
"2020-03-01 20:03:59.493","130","7.603","128","8392704"
"2020-03-01 20:04:00.493","130","7.602","128","8392704"
"2020-03-01 20:04:01.493","130","7.6","128","8392704"
"2020-03-01 20:04:02.493","130","7.598","128","8392704"
"2020-03-01 20:04:03.493","130","7.595","128","8392704"
"2020-03-01 20:04:04.493","130","7.593","128","8392704"
"2020-03-01 20:04:05.493","130","7.592","128","8392704"
"2020-03-01 20:04:06.493","130","7.591","128","8392704"
"2020-03-01 20:04:07.493","130","7.591","128","8392704"
"2020-03-01 20:04:08.493","130","7.591","128","8392704"
"2020-03-01 20:04:09.493","130","7.592","128","8392704"
"2020-03-01 20:04:10.493","130","7.59","128","8392704"
"2020-03-01 20:04:11.493","130","7.587","128","8392704"
"2020-03-01 20:04:12.493","130","7.584","128","8392704"
"2020-03-01 20:04:13.493","130","7.583","128","8392704"
"2020-03-01 20:04:14.493","130","7.581","128","8392704"
"2020-03-01 20:04:15.493","130","7.578","128","8392704"
"2020-03-01 20:04:16.493","130","7.576","128","8392704"
"2020-03-01 20:04:17.493","130","7.577","128","8392704"
"2020-03-01 20:04:18.493","130","7.579","128","8392704"
"2020-03-01 20:04:19.493","130","7.583","128","8392704"
"2020-03-01 20:04:20.493","130","7.587","128","8392704"
"2020-03-01 20:04:21.493","130","7.588","128","8392704"
"2020-03-01 20:04:22.493","130","7.589","128","8392704"
"2020-03-01 20:04:23.493","130","7.59","128","8392704"
"2020-03-01 20:04:24.493","130","7.593","128","8392704"
"2020-03-01 20:04:25.493","130","7.597","128","8392704"
"2020-03-01 20:04:26.493","130","7.6","128","8392704"
"2020-03-01 20:04:27.493","130","7.603","128","8392704"
"2020-03-01 20:04:28.493","130","7.606","128","8392704"
"2020-03-01 20:04:29.493","130","7.608","128","8392704"
"2020-03-01 20:04:30.493","130","7.609","128","8392704"
"2020-03-01 20:04:31.493","130","7.607","128","8392704"
"2020-03-01 20:04:32.493","130","7.607","128","8392704"
"2020-03-01 20:04:33.493","130","7.607","128","8392704"
"2020-03-01 20:04:34.493","130","7.602","128","8392704"
"2020-03-01 20:04:35.493","130","7.599","128","8392704"
"2020-03-01 20:04:36.493","130","7.599","128","8392704"
"2020-03-01 20:04:37.493","130","7.599","128","8392704"
"2020-03-01 20:04:38.493","130","7.598","128","8392704"
"2020-03-01 20:04:39.493","130","7.596","128","8392704"
"2020-03-01 20:04:40.493","130","7.595","128","8392704"
"2020-03-01 20:04:41.493","130","7.592","128","8392704"
"2020-03-01 20:04:42.493","130","7.586","128","8392704"
"2020-03-01 20:04:43.493","130","7.582","128","8392704"
"2020-03-01 20:04:44.493","130","7.582","128","8392704"
"2020-03-01 20:04:45.493","130","7.584","128","8392704"
"2020-03-01 20:04:46.493","130","7.583","128","8392704"
"2020-03-01 20:04:47.493","130","7.582","128","8392704"
"2020-03-01 20:04:48.493","130","7.582","128","8392704"
"2020-03-01 20:04:49.493","130","7.585","128","8392704"
"2020-03-01 06:43:17.493","130","6.751","128","8392704"
"2020-03-01 06:43:18.493","130","6.75","128","8392704"
"2020-03-01 06:43:19.493","130","6.748","128","8392704"
"2020-03-01 06:43:20.493","130","6.751","128","8392704"
"2020-03-01 06:43:21.493","130","6.752","128","8392704"
"2020-03-01 06:43:22.493","130","6.751","128","8392704"
"2020-03-01 06:43:23.493","130","6.746","128","8392704"
"2020-03-01 06:43:24.493","130","6.739","128","8392704"
"2020-03-01 06:43:25.493","130","6.737","128","8392704"
"2020-03-01 06:43:26.493","130","6.735","128","8392704"
"2020-03-01 06:43:27.493","130","6.735","128","8392704"
"2020-03-01 06:43:28.493","130","6.734","128","8392704"
"2020-03-01 06:43:29.493","130","6.731","128","8392704"
"2020-03-01 06:43:30.493","130","6.729","128","8392704"
"2020-03-01 06:43:31.493","130","6.73","128","8392704"
"2020-03-01 06:43:32.493","130","6.736","128","8392704"
"2020-03-01 06:43:33.493","130","6.74","128","8392704"
"2020-03-01 06:43:34.493","130","6.741","128","8392704"
"2020-03-01 06:43:35.493","130","6.743","128","8392704"
"2020-03-01 06:43:36.493","130","6.743","128","8392704"
"2020-03-01 06:43:37.493","130","6.745","128","8392704"
"2020-03-01 06:43:38.493","130","6.747","128","8392704"
"2020-03-01 06:43:39.493","130","6.747","128","8392704"
"2020-03-01 06:43:40.493","130","6.746","128","8392704"
"2020-03-01 06:43:41.493","130","6.745","128","8392704"
"2020-03-01 06:43:42.493","130","6.743","128","8392704"
"2020-03-01 06:43:43.493","130","6.741","128","8392704"
"2020-03-01 06:43:44.493","130","6.737","128","8392704"
"2020-03-01 06:43:45.493","130","6.737","128","8392704"
"2020-03-01 06:43:46.493","130","6.74","128","8392704"
"2020-03-01 06:43:47.493","130","6.744","128","8392704"
"2020-03-01 06:43:48.493","130","6.746","128","8392704"
"2020-03-01 06:43:49.493","130","6.745","128","8392704"
"2020-03-01 06:43:50.493","130","6.743","128","8392704"
"2020-03-01 06:43:51.493","130","6.745","128","8392704"
"2020-03-01 06:43:52.493","130","6.747","128","8392704"
"2020-03-01 06:43:53.493","130","6.748","128","8392704"
"2020-03-01 06:43:54.493","130","6.748","128","8392704"
"2020-03-01 06:43:55.493","130","6.747","128","8392704"
"2020-03-01 06:43:56.493","130","6.746","128","8392704"
"2020-03-01 06:43:57.493","130","6.744","128","8392704"
"2020-03-01 06:43:58.493","130","6.742","128","8392704"
"2020-03-01 06:43:59.493","130","6.74","128","8392704"
"2020-03-01 06:44:00.493","130","6.739","128","8392704"
"2020-03-01 06:44:01.493","130","6.739","128","8392704"
"2020-03-01 06:44:02.493","130","6.742","128","8392704"
"2020-03-01 06:44:03.493","130","6.742","128","8392704"
"2020-03-01 06:44:04.493","130","6.756","128","8392704"
"2020-03-01 06:44:05.493","130","6.757","128","8392704"
"2020-03-01 06:44:06.493","130","6.757","128","8392704"
"2020-03-01 06:44:07.493","130","6.757","128","8392704"
"2020-03-01 06:44:08.493","130","6.759","128","8392704"
"2020-03-01 06:44:09.493","130","6.759","128","8392704"
"2020-03-01 06:44:10.493","130","6.75","128","8392704"
"2020-03-01 06:44:11.493","130","6.744","128","8392704"
"2020-03-01 06:44:12.493","130","6.739","128","8392704"
"2020-03-01 06:44:13.493","130","6.739","128","8392704"
"2020-03-01 06:44:14.493","130","6.736","128","8392704"
"2020-03-01 06:44:15.493","130","6.734","128","8392704"
"2020-03-01 06:44:16.493","130","6.735","128","8392704"
"2020-03-01 06:44:17.493","130","6.734","128","8392704"
"2020-03-01 06:44:18.493","130","6.736","128","8392704"
"2020-03-01 06:44:19.493","130","6.741","128","8392704"
"2020-03-01 06:44:20.493","130","6.744","128","8392704"
"2020-03-01 06:44:21.493","130","6.746","128","8392704"
"2020-03-01 06:44:22.493","130","6.746","128","8392704"
"2020-03-01 06:44:23.493","130","6.748","128","8392704"
"2020-03-01 06:44:24.493","130","6.751","128","8392704"
"2020-03-01 06:44:25.493","130","6.752","128","8392704"
"2020-03-01 06:44:26.493","130","6.752","128","8392704"
"2020-03-01 06:44:27.493","130","6.752","128","8392704"
"2020-03-01 06:44:28.493","130","6.753","128","8392704"
"2020-03-01 06:44:29.493","130","6.751","128","8392704"
"2020-03-01 06:44:30.493","130","6.751","128","8392704"
"2020-03-01 06:44:31.493","130","6.749","128","8392704"
"2020-03-01 06:44:32.493","130","6.747","128","8392704"
"2020-03-01 06:44:33.493","130","6.748","128","8392704"
"2020-03-01 06:44:34.493","130","6.749","128","8392704"
"2020-03-01 06:44:35.493","130","6.746","128","8392704"
"2020-03-01 06:44:36.493","130","6.742","128","8392704"
"2020-03-01 06:44:37.493","130","6.742","128","8392704"
"2020-03-01 06:44:38.493","130","6.743","128","8392704"
"2020-03-01 06:44:39.493","130","6.743","128","8392704"
"2020-03-01 06:44:40.493","130","6.743","128","8392704"
"2020-03-01 06:44:41.493","130","6.741","128","8392704"
"2020-03-01 06:44:42.493","130","6.741","128","8392704"
"2020-03-01 06:44:43.493","130","6.741","128","8392704"
"2020-03-01 06:44:44.493","130","6.74","128","8392704"
"2020-03-01 06:44:45.493","130","6.74","128","8392704"
"2020-03-01 06:44:46.493","130","6.739","128","8392704"
"2020-03-01 06:44:47.493","130","6.738","128","8392704"
"2020-03-01 06:44:48.493","130","6.738","128","8392704"
"2020-03-01 06:44:49.493","130","6.741","128","8392704"
"2020-03-01 06:44:50.493","130","6.749","128","8392704"
"2020-03-01 06:44:51.493","130","6.756","128","8392704"
"2020-03-01 06:44:52.493","130","6.763","128","8392704"
"2020-03-01 06:44:53.493","130","6.768","128","8392704"
"2020-03-01 06:44:54.493","130","6.771","128","8392704"
"2020-03-01 06:44:55.493","130","6.774","128","8392704"
"2020-03-01 06:44:56.493","130","6.774","128","8392704"
"2020-03-01 06:44:57.493","130","6.774","128","8392704"
"2020-03-01 06:44:58.493","130","6.765","128","8392704"
"2020-03-01 06:44:59.493","130","6.763","128","8392704"
"2020-03-01 06:45:00.493","130","6.761","128","8392704"
"2020-03-01 06:45:01.493","130","6.758","128","8392704"
"2020-03-01 06:45:02.493","130","6.756","128","8392704"
"2020-03-01 06:45:03.493","130","6.756","128","8392704"
"2020-03-01 06:45:04.493","130","6.756","128","8392704"
"2020-03-01 06:45:05.493","130","6.763","128","8392704"
"2020-03-01 06:45:06.493","130","6.763","128","8392704"
"2020-03-01 06:45:07.493","130","6.764","128","8392704"
"2020-03-01 06:45:08.493","130","6.762","128","8392704"
"2020-03-01 06:45:09.493","130","6.763","128","8392704"
"2020-03-01 06:45:10.493","130","6.764","128","8392704"
"2020-03-01 06:45:11.493","130","6.763","128","8392704"
"2020-03-01 06:45:12.493","130","6.76","128","8392704"
"2020-03-01 06:45:13.493","130","6.759","128","8392704"
"2020-03-01 06:45:14.493","130","6.758","128","8392704"
"2020-03-01 06:45:15.493","130","6.758","128","8392704"
"2020-03-01 06:45:16.493","130","6.755","128","8392704"
"2020-03-01 20:04:50.493","130","7.59","128","8392704"
"2020-03-01 20:04:51.493","130","7.592","128","8392704"
"2020-03-01 20:04:52.493","130","7.592","128","8392704"
"2020-03-01 20:04:53.493","130","7.593","128","8392704"
"2020-03-01 20:04:54.493","130","7.592","128","8392704"
"2020-03-01 20:04:55.493","130","7.592","128","8392704"
"2020-03-01 20:04:56.493","130","7.593","128","8392704"
"2020-03-01 20:04:57.493","130","7.593","128","8392704"
"2020-03-01 20:04:58.493","130","7.593","128","8392704"
"2020-03-01 20:04:59.493","130","7.594","128","8392704"
"2020-03-01 20:05:00.493","130","7.595","128","8392704"
"2020-03-01 20:05:01.493","130","7.596","128","8392704"
"2020-03-01 20:05:02.493","130","7.595","128","8392704"
"2020-03-01 20:05:03.493","130","7.595","128","8392704"
"2020-03-01 20:05:04.493","130","7.594","128","8392704"
"2020-03-01 20:05:05.493","130","7.595","128","8392704"
"2020-03-01 20:05:06.493","130","7.598","128","8392704"
"2020-03-01 20:05:07.493","130","7.597","128","8392704"
"2020-03-01 20:05:08.493","130","7.595","128","8392704"
"2020-03-01 20:05:09.493","130","7.597","128","8392704"
"2020-03-01 20:05:10.493","130","7.598","128","8392704"
"2020-03-01 20:05:11.493","130","7.598","128","8392704"
"2020-03-01 20:05:12.493","130","7.597","128","8392704"
"2020-03-01 20:05:13.493","130","7.595","128","8392704"
"2020-03-01 20:05:14.493","130","7.591","128","8392704"
"2020-03-01 20:05:15.493","130","7.589","128","8392704"
"2020-03-01 20:05:16.493","130","7.588","128","8392704"
"2020-03-01 20:05:17.493","130","7.589","128","8392704"
"2020-03-01 20:05:18.493","130","7.589","128","8392704"
"2020-03-01 20:05:19.493","130","7.589","128","8392704"
"2020-03-01 20:05:20.493","130","7.587","128","8392704"
"2020-03-01 20:05:21.493","130","7.584","128","8392704"
"2020-03-01 20:05:22.493","130","7.583","128","8392704"
"2020-03-01 20:05:23.493","130","7.585","128","8392704"
"2020-03-01 20:05:24.493","130","7.586","128","8392704"
"2020-03-01 20:05:25.493","130","7.586","128","8392704"
"2020-03-01 20:05:26.493","130","7.586","128","8392704"
"2020-03-01 20:05:27.493","130","7.586","128","8392704"
"2020-03-01 20:05:28.493","130","7.587","128","8392704"
"2020-03-01 20:05:29.493","130","7.585","128","8392704"
"2020-03-01 20:05:30.493","130","7.584","128","8392704"
"2020-03-01 20:05:31.493","130","7.586","128","8392704"
"2020-03-01 20:05:32.493","130","7.589","128","8392704"
"2020-03-01 20:05:33.493","130","7.59","128","8392704"
"2020-03-01 20:05:34.493","130","7.591","128","8392704"
"2020-03-01 20:05:35.493","130","7.591","128","8392704"
"2020-03-01 20:05:36.493","130","7.594","128","8392704"
"2020-03-01 20:05:37.493","130","7.599","128","8392704"
"2020-03-01 20:05:38.493","130","7.602","128","8392704"
"2020-03-01 20:05:39.493","130","7.604","128","8392704"
"2020-03-01 20:05:40.493","130","7.605","128","8392704"
"2020-03-01 20:05:41.493","130","7.607","128","8392704"
"2020-03-01 20:05:42.493","130","7.607","128","8392704"
"2020-03-01 20:05:43.493","130","7.604","128","8392704"
"2020-03-01 20:05:44.493","130","7.597","128","8392704"
"2020-03-01 20:05:45.493","130","7.592","128","8392704"
"2020-03-01 20:05:46.493","130","7.59","128","8392704"
"2020-03-01 20:05:47.493","130","7.59","128","8392704"
"2020-03-01 20:05:48.493","130","7.591","128","8392704"
"2020-03-01 20:05:49.493","130","7.591","128","8392704"
"2020-03-01 20:05:50.493","130","7.591","128","8392704"
"2020-03-01 20:05:51.493","130","7.594","128","8392704"
"2020-03-01 20:05:52.493","130","7.599","128","8392704"
"2020-03-01 20:05:53.493","130","7.601","128","8392704"
"2020-03-01 20:05:54.493","130","7.602","128","8392704"
"2020-03-01 20:05:55.493","130","7.602","128","8392704"
"2020-03-01 20:05:56.493","130","7.602","128","8392704"
"2020-03-01 20:05:57.493","130","7.603","128","8392704"
"2020-03-01 20:05:58.493","130","7.604","128","8392704"
"2020-03-01 20:05:59.493","130","7.604","128","8392704"
"2020-03-01 20:06:00.493","130","7.605","128","8392704"
"2020-03-01 20:06:01.493","130","7.606","128","8392704"
"2020-03-01 20:06:02.493","130","7.607","128","8392704"
"2020-03-01 20:06:03.493","130","7.605","128","8392704"
"2020-03-01 20:06:04.493","130","7.604","128","8392704"
"2020-03-01 20:06:05.493","130","7.603","128","8392704"
"2020-03-01 20:06:06.493","130","7.602","128","8392704"
"2020-03-01 20:06:07.493","130","7.603","128","8392704"
"2020-03-01 20:06:08.493","130","7.604","128","8392704"
1 2020-03-01 20:01:49.493 130 7.595 128 8392704
2 2020-03-01 20:01:50.493 130 7.598 128 8392704
3 2020-03-01 20:01:51.493 130 7.602 128 8392704
4 2020-03-01 20:01:52.493 130 7.604 128 8392704
5 2020-03-01 20:01:53.493 130 7.604 128 8392704
6 2020-03-01 20:01:54.493 130 7.606 128 8392704
7 2020-03-01 20:01:55.493 130 7.607 128 8392704
8 2020-03-01 20:01:56.493 130 7.607 128 8392704
9 2020-03-01 20:01:57.493 130 7.607 128 8392704
10 2020-03-01 20:01:58.493 130 7.607 128 8392704
11 2020-03-01 20:01:59.493 130 7.606 128 8392704
12 2020-03-01 20:02:00.493 130 7.606 128 8392704
13 2020-03-01 20:02:01.493 130 7.606 128 8392704
14 2020-03-01 20:02:02.493 130 7.607 128 8392704
15 2020-03-01 20:02:03.493 130 7.608 128 8392704
16 2020-03-01 20:02:04.493 130 7.609 128 8392704
17 2020-03-01 20:02:05.493 130 7.609 128 8392704
18 2020-03-01 20:02:06.493 130 7.608 128 8392704
19 2020-03-01 20:02:07.493 130 7.606 128 8392704
20 2020-03-01 20:02:08.493 130 7.606 128 8392704
21 2020-03-01 20:02:09.493 130 7.607 128 8392704
22 2020-03-01 20:02:10.493 130 7.609 128 8392704
23 2020-03-01 20:02:11.493 130 7.61 128 8392704
24 2020-03-01 20:02:12.493 130 7.611 128 8392704
25 2020-03-01 20:02:13.493 130 7.61 128 8392704
26 2020-03-01 20:02:14.493 130 7.607 128 8392704
27 2020-03-01 20:02:15.493 130 7.605 128 8392704
28 2020-03-01 20:02:16.493 130 7.604 128 8392704
29 2020-03-01 20:02:17.493 130 7.603 128 8392704
30 2020-03-01 20:02:18.493 130 7.604 128 8392704
31 2020-03-01 20:02:19.493 130 7.604 128 8392704
32 2020-03-01 20:02:20.493 130 7.603 128 8392704
33 2020-03-01 20:02:21.493 130 7.601 128 8392704
34 2020-03-01 20:02:22.493 130 7.598 128 8392704
35 2020-03-01 20:02:23.493 130 7.595 128 8392704
36 2020-03-01 20:02:24.493 130 7.594 128 8392704
37 2020-03-01 20:02:25.493 130 7.594 128 8392704
38 2020-03-01 20:02:26.493 130 7.595 128 8392704
39 2020-03-01 20:02:27.493 130 7.596 128 8392704
40 2020-03-01 20:02:28.493 130 7.596 128 8392704
41 2020-03-01 20:02:29.493 130 7.598 128 8392704
42 2020-03-01 20:02:30.493 130 7.6 128 8392704
43 2020-03-01 20:02:31.493 130 7.6 128 8392704
44 2020-03-01 20:02:32.493 130 7.6 128 8392704
45 2020-03-01 20:02:33.493 130 7.601 128 8392704
46 2020-03-01 20:02:34.493 130 7.603 128 8392704
47 2020-03-01 20:02:35.493 130 7.604 128 8392704
48 2020-03-01 20:02:36.493 130 7.605 128 8392704
49 2020-03-01 20:02:37.493 130 7.606 128 8392704
50 2020-03-01 20:02:38.493 130 7.61 128 8392704
51 2020-03-01 20:02:39.493 130 7.611 128 8392704
52 2020-03-01 20:02:40.493 130 7.61 128 8392704
53 2020-03-01 20:02:41.493 130 7.609 128 8392704
54 2020-03-01 20:02:42.493 130 7.611 128 8392704
55 2020-03-01 20:02:43.493 130 7.61 128 8392704
56 2020-03-01 20:02:44.493 130 7.607 128 8392704
57 2020-03-01 20:02:45.493 130 7.605 128 8392704
58 2020-03-01 20:02:46.493 130 7.606 128 8392704
59 2020-03-01 20:02:47.493 130 7.604 128 8392704
60 2020-03-01 20:02:48.493 130 7.599 128 8392704
61 2020-03-01 20:02:49.493 130 7.595 128 8392704
62 2020-03-01 06:41:17.493 130 6.742 128 8392704
63 2020-03-01 06:41:18.493 130 6.741 128 8392704
64 2020-03-01 06:41:19.493 130 6.737 128 8392704
65 2020-03-01 06:41:20.493 130 6.734 128 8392704
66 2020-03-01 06:41:21.493 130 6.734 128 8392704
67 2020-03-01 06:41:22.493 130 6.733 128 8392704
68 2020-03-01 06:41:23.493 130 6.736 128 8392704
69 2020-03-01 06:41:24.493 130 6.739 128 8392704
70 2020-03-01 06:41:25.493 130 6.738 128 8392704
71 2020-03-01 06:41:26.493 130 6.74 128 8392704
72 2020-03-01 06:41:27.493 130 6.745 128 8392704
73 2020-03-01 06:41:28.493 130 6.749 128 8392704
74 2020-03-01 06:41:29.493 130 6.753 128 8392704
75 2020-03-01 06:41:30.493 130 6.753 128 8392704
76 2020-03-01 06:41:31.493 130 6.757 128 8392704
77 2020-03-01 06:41:32.493 130 6.763 128 8392704
78 2020-03-01 06:41:33.493 130 6.765 128 8392704
79 2020-03-01 06:41:34.493 130 6.764 128 8392704
80 2020-03-01 06:41:35.493 130 6.762 128 8392704
81 2020-03-01 06:41:36.493 130 6.758 128 8392704
82 2020-03-01 06:41:37.493 130 6.756 128 8392704
83 2020-03-01 06:41:38.493 130 6.755 128 8392704
84 2020-03-01 06:41:39.493 130 6.754 128 8392704
85 2020-03-01 06:41:40.493 130 6.755 128 8392704
86 2020-03-01 06:41:41.493 130 6.756 128 8392704
87 2020-03-01 06:41:42.493 130 6.757 128 8392704
88 2020-03-01 06:41:43.493 130 6.756 128 8392704
89 2020-03-01 06:41:44.493 130 6.756 128 8392704
90 2020-03-01 06:41:45.493 130 6.756 128 8392704
91 2020-03-01 06:41:46.493 130 6.759 128 8392704
92 2020-03-01 06:41:47.493 130 6.759 128 8392704
93 2020-03-01 06:41:48.493 130 6.758 128 8392704
94 2020-03-01 06:41:49.493 130 6.758 128 8392704
95 2020-03-01 06:41:50.493 130 6.756 128 8392704
96 2020-03-01 06:41:51.493 130 6.755 128 8392704
97 2020-03-01 06:41:52.493 130 6.755 128 8392704
98 2020-03-01 06:41:53.493 130 6.754 128 8392704
99 2020-03-01 06:41:54.493 130 6.751 128 8392704
100 2020-03-01 06:41:55.493 130 6.752 128 8392704
101 2020-03-01 06:41:56.493 130 6.753 128 8392704
102 2020-03-01 06:41:57.493 130 6.753 128 8392704
103 2020-03-01 06:41:58.493 130 6.753 128 8392704
104 2020-03-01 06:41:59.493 130 6.755 128 8392704
105 2020-03-01 06:42:00.493 130 6.752 128 8392704
106 2020-03-01 06:42:01.493 130 6.75 128 8392704
107 2020-03-01 06:42:02.493 130 6.75 128 8392704
108 2020-03-01 06:42:03.493 130 6.753 128 8392704
109 2020-03-01 06:42:04.493 130 6.755 128 8392704
110 2020-03-01 06:42:05.493 130 6.754 128 8392704
111 2020-03-01 06:42:06.493 130 6.754 128 8392704
112 2020-03-01 06:42:07.493 130 6.752 128 8392704
113 2020-03-01 06:42:08.493 130 6.748 128 8392704
114 2020-03-01 06:42:09.493 130 6.747 128 8392704
115 2020-03-01 06:42:10.493 130 6.747 128 8392704
116 2020-03-01 06:42:11.493 130 6.748 128 8392704
117 2020-03-01 06:42:12.493 130 6.748 128 8392704
118 2020-03-01 06:42:13.493 130 6.75 128 8392704
119 2020-03-01 06:42:14.493 130 6.754 128 8392704
120 2020-03-01 06:42:15.493 130 6.754 128 8392704
121 2020-03-01 06:42:16.493 130 6.756 128 8392704
122 2020-03-01 06:42:17.493 130 6.756 128 8392704
123 2020-03-01 06:42:18.493 130 6.757 128 8392704
124 2020-03-01 06:42:19.493 130 6.757 128 8392704
125 2020-03-01 06:42:20.493 130 6.76 128 8392704
126 2020-03-01 06:42:21.493 130 6.761 128 8392704
127 2020-03-01 06:42:22.493 130 6.76 128 8392704
128 2020-03-01 06:42:23.493 130 6.76 128 8392704
129 2020-03-01 06:42:24.493 130 6.76 128 8392704
130 2020-03-01 06:42:25.493 130 6.76 128 8392704
131 2020-03-01 06:42:26.493 130 6.758 128 8392704
132 2020-03-01 06:42:27.493 130 6.757 128 8392704
133 2020-03-01 06:42:28.493 130 6.752 128 8392704
134 2020-03-01 06:42:29.493 130 6.746 128 8392704
135 2020-03-01 06:42:30.493 130 6.742 128 8392704
136 2020-03-01 06:42:31.493 130 6.741 128 8392704
137 2020-03-01 06:42:32.493 130 6.739 128 8392704
138 2020-03-01 06:42:33.493 130 6.739 128 8392704
139 2020-03-01 06:42:34.493 130 6.737 128 8392704
140 2020-03-01 06:42:35.493 130 6.737 128 8392704
141 2020-03-01 06:42:36.493 130 6.738 128 8392704
142 2020-03-01 06:42:37.493 130 6.739 128 8392704
143 2020-03-01 06:42:38.493 130 6.743 128 8392704
144 2020-03-01 06:42:39.493 130 6.747 128 8392704
145 2020-03-01 06:42:40.493 130 6.748 128 8392704
146 2020-03-01 06:42:41.493 130 6.746 128 8392704
147 2020-03-01 06:42:42.493 130 6.746 128 8392704
148 2020-03-01 06:42:43.493 130 6.745 128 8392704
149 2020-03-01 06:42:44.493 130 6.742 128 8392704
150 2020-03-01 06:42:45.493 130 6.741 128 8392704
151 2020-03-01 06:42:46.493 130 6.74 128 8392704
152 2020-03-01 06:42:47.493 130 6.742 128 8392704
153 2020-03-01 06:42:48.493 130 6.743 128 8392704
154 2020-03-01 06:42:49.493 130 6.742 128 8392704
155 2020-03-01 06:42:50.493 130 6.742 128 8392704
156 2020-03-01 06:42:51.493 130 6.741 128 8392704
157 2020-03-01 06:42:52.493 130 6.741 128 8392704
158 2020-03-01 06:42:53.493 130 6.742 128 8392704
159 2020-03-01 06:42:54.493 130 6.742 128 8392704
160 2020-03-01 06:42:55.493 130 6.745 128 8392704
161 2020-03-01 06:42:56.493 130 6.747 128 8392704
162 2020-03-01 06:42:57.493 130 6.748 128 8392704
163 2020-03-01 06:42:58.493 130 6.75 128 8392704
164 2020-03-01 06:42:59.493 130 6.75 128 8392704
165 2020-03-01 06:43:00.493 130 6.748 128 8392704
166 2020-03-01 06:43:01.493 130 6.748 128 8392704
167 2020-03-01 06:43:02.493 130 6.746 128 8392704
168 2020-03-01 06:43:03.493 130 6.745 128 8392704
169 2020-03-01 06:43:04.493 130 6.745 128 8392704
170 2020-03-01 06:43:05.493 130 6.745 128 8392704
171 2020-03-01 06:43:06.493 130 6.744 128 8392704
172 2020-03-01 06:43:07.493 130 6.749 128 8392704
173 2020-03-01 06:43:08.493 130 6.756 128 8392704
174 2020-03-01 06:43:09.493 130 6.759 128 8392704
175 2020-03-01 06:43:10.493 130 6.759 128 8392704
176 2020-03-01 06:43:11.493 130 6.758 128 8392704
177 2020-03-01 06:43:12.493 130 6.758 128 8392704
178 2020-03-01 06:43:13.493 130 6.759 128 8392704
179 2020-03-01 06:43:14.493 130 6.759 128 8392704
180 2020-03-01 06:43:15.493 130 6.753 128 8392704
181 2020-03-01 06:43:16.493 130 6.751 128 8392704
182 2020-03-01 20:02:50.493 130 7.596 128 8392704
183 2020-03-01 20:02:51.493 130 7.597 128 8392704
184 2020-03-01 20:02:52.493 130 7.599 128 8392704
185 2020-03-01 20:02:53.493 130 7.6 128 8392704
186 2020-03-01 20:02:54.493 130 7.601 128 8392704
187 2020-03-01 20:02:55.493 130 7.603 128 8392704
188 2020-03-01 20:02:56.493 130 7.602 128 8392704
189 2020-03-01 20:02:57.493 130 7.601 128 8392704
190 2020-03-01 20:02:58.493 130 7.601 128 8392704
191 2020-03-01 20:02:59.493 130 7.6 128 8392704
192 2020-03-01 20:03:00.493 130 7.599 128 8392704
193 2020-03-01 20:03:01.493 130 7.599 128 8392704
194 2020-03-01 20:03:02.493 130 7.6 128 8392704
195 2020-03-01 20:03:03.493 130 7.601 128 8392704
196 2020-03-01 20:03:04.493 130 7.601 128 8392704
197 2020-03-01 20:03:05.493 130 7.601 128 8392704
198 2020-03-01 20:03:06.493 130 7.6 128 8392704
199 2020-03-01 20:03:07.493 130 7.602 128 8392704
200 2020-03-01 20:03:08.493 130 7.606 128 8392704
201 2020-03-01 20:03:09.493 130 7.609 128 8392704
202 2020-03-01 20:03:10.493 130 7.612 128 8392704
203 2020-03-01 20:03:11.493 130 7.614 128 8392704
204 2020-03-01 20:03:12.493 130 7.615 128 8392704
205 2020-03-01 20:03:13.493 130 7.614 128 8392704
206 2020-03-01 20:03:14.493 130 7.613 128 8392704
207 2020-03-01 20:03:15.493 130 7.614 128 8392704
208 2020-03-01 20:03:16.493 130 7.612 128 8392704
209 2020-03-01 20:03:17.493 130 7.609 128 8392704
210 2020-03-01 20:03:18.493 130 7.606 128 8392704
211 2020-03-01 20:03:19.493 130 7.604 128 8392704
212 2020-03-01 20:03:20.493 130 7.604 128 8392704
213 2020-03-01 20:03:21.493 130 7.605 128 8392704
214 2020-03-01 20:03:22.493 130 7.605 128 8392704
215 2020-03-01 20:03:23.493 130 7.605 128 8392704
216 2020-03-01 20:03:24.493 130 7.605 128 8392704
217 2020-03-01 20:03:25.493 130 7.604 128 8392704
218 2020-03-01 20:03:26.493 130 7.603 128 8392704
219 2020-03-01 20:03:27.493 130 7.604 128 8392704
220 2020-03-01 20:03:28.493 130 7.605 128 8392704
221 2020-03-01 20:03:29.493 130 7.607 128 8392704
222 2020-03-01 20:03:30.493 130 7.609 128 8392704
223 2020-03-01 20:03:31.493 130 7.609 128 8392704
224 2020-03-01 20:03:32.493 130 7.607 128 8392704
225 2020-03-01 20:03:33.493 130 7.606 128 8392704
226 2020-03-01 20:03:34.493 130 7.607 128 8392704
227 2020-03-01 20:03:35.493 130 7.608 128 8392704
228 2020-03-01 20:03:36.493 130 7.609 128 8392704
229 2020-03-01 20:03:37.493 130 7.609 128 8392704
230 2020-03-01 20:03:38.493 130 7.607 128 8392704
231 2020-03-01 20:03:39.493 130 7.602 128 8392704
232 2020-03-01 20:03:40.493 130 7.599 128 8392704
233 2020-03-01 20:03:41.493 130 7.598 128 8392704
234 2020-03-01 20:03:42.493 130 7.596 128 8392704
235 2020-03-01 20:03:43.493 130 7.595 128 8392704
236 2020-03-01 20:03:44.493 130 7.594 128 8392704
237 2020-03-01 20:03:45.493 130 7.595 128 8392704
238 2020-03-01 20:03:46.493 130 7.597 128 8392704
239 2020-03-01 20:03:47.493 130 7.596 128 8392704
240 2020-03-01 20:03:48.493 130 7.595 128 8392704
241 2020-03-01 20:03:49.493 130 7.596 128 8392704
242 2020-03-01 20:03:50.493 130 7.596 128 8392704
243 2020-03-01 20:03:51.493 130 7.595 128 8392704
244 2020-03-01 20:03:52.493 130 7.596 128 8392704
245 2020-03-01 20:03:53.493 130 7.597 128 8392704
246 2020-03-01 20:03:54.493 130 7.598 128 8392704
247 2020-03-01 20:03:55.493 130 7.596 128 8392704
248 2020-03-01 20:03:56.493 130 7.596 128 8392704
249 2020-03-01 20:03:57.493 130 7.599 128 8392704
250 2020-03-01 20:03:58.493 130 7.602 128 8392704
251 2020-03-01 20:03:59.493 130 7.603 128 8392704
252 2020-03-01 20:04:00.493 130 7.602 128 8392704
253 2020-03-01 20:04:01.493 130 7.6 128 8392704
254 2020-03-01 20:04:02.493 130 7.598 128 8392704
255 2020-03-01 20:04:03.493 130 7.595 128 8392704
256 2020-03-01 20:04:04.493 130 7.593 128 8392704
257 2020-03-01 20:04:05.493 130 7.592 128 8392704
258 2020-03-01 20:04:06.493 130 7.591 128 8392704
259 2020-03-01 20:04:07.493 130 7.591 128 8392704
260 2020-03-01 20:04:08.493 130 7.591 128 8392704
261 2020-03-01 20:04:09.493 130 7.592 128 8392704
262 2020-03-01 20:04:10.493 130 7.59 128 8392704
263 2020-03-01 20:04:11.493 130 7.587 128 8392704
264 2020-03-01 20:04:12.493 130 7.584 128 8392704
265 2020-03-01 20:04:13.493 130 7.583 128 8392704
266 2020-03-01 20:04:14.493 130 7.581 128 8392704
267 2020-03-01 20:04:15.493 130 7.578 128 8392704
268 2020-03-01 20:04:16.493 130 7.576 128 8392704
269 2020-03-01 20:04:17.493 130 7.577 128 8392704
270 2020-03-01 20:04:18.493 130 7.579 128 8392704
271 2020-03-01 20:04:19.493 130 7.583 128 8392704
272 2020-03-01 20:04:20.493 130 7.587 128 8392704
273 2020-03-01 20:04:21.493 130 7.588 128 8392704
274 2020-03-01 20:04:22.493 130 7.589 128 8392704
275 2020-03-01 20:04:23.493 130 7.59 128 8392704
276 2020-03-01 20:04:24.493 130 7.593 128 8392704
277 2020-03-01 20:04:25.493 130 7.597 128 8392704
278 2020-03-01 20:04:26.493 130 7.6 128 8392704
279 2020-03-01 20:04:27.493 130 7.603 128 8392704
280 2020-03-01 20:04:28.493 130 7.606 128 8392704
281 2020-03-01 20:04:29.493 130 7.608 128 8392704
282 2020-03-01 20:04:30.493 130 7.609 128 8392704
283 2020-03-01 20:04:31.493 130 7.607 128 8392704
284 2020-03-01 20:04:32.493 130 7.607 128 8392704
285 2020-03-01 20:04:33.493 130 7.607 128 8392704
286 2020-03-01 20:04:34.493 130 7.602 128 8392704
287 2020-03-01 20:04:35.493 130 7.599 128 8392704
288 2020-03-01 20:04:36.493 130 7.599 128 8392704
289 2020-03-01 20:04:37.493 130 7.599 128 8392704
290 2020-03-01 20:04:38.493 130 7.598 128 8392704
291 2020-03-01 20:04:39.493 130 7.596 128 8392704
292 2020-03-01 20:04:40.493 130 7.595 128 8392704
293 2020-03-01 20:04:41.493 130 7.592 128 8392704
294 2020-03-01 20:04:42.493 130 7.586 128 8392704
295 2020-03-01 20:04:43.493 130 7.582 128 8392704
296 2020-03-01 20:04:44.493 130 7.582 128 8392704
297 2020-03-01 20:04:45.493 130 7.584 128 8392704
298 2020-03-01 20:04:46.493 130 7.583 128 8392704
299 2020-03-01 20:04:47.493 130 7.582 128 8392704
300 2020-03-01 20:04:48.493 130 7.582 128 8392704
301 2020-03-01 20:04:49.493 130 7.585 128 8392704
302 2020-03-01 06:43:17.493 130 6.751 128 8392704
303 2020-03-01 06:43:18.493 130 6.75 128 8392704
304 2020-03-01 06:43:19.493 130 6.748 128 8392704
305 2020-03-01 06:43:20.493 130 6.751 128 8392704
306 2020-03-01 06:43:21.493 130 6.752 128 8392704
307 2020-03-01 06:43:22.493 130 6.751 128 8392704
308 2020-03-01 06:43:23.493 130 6.746 128 8392704
309 2020-03-01 06:43:24.493 130 6.739 128 8392704
310 2020-03-01 06:43:25.493 130 6.737 128 8392704
311 2020-03-01 06:43:26.493 130 6.735 128 8392704
312 2020-03-01 06:43:27.493 130 6.735 128 8392704
313 2020-03-01 06:43:28.493 130 6.734 128 8392704
314 2020-03-01 06:43:29.493 130 6.731 128 8392704
315 2020-03-01 06:43:30.493 130 6.729 128 8392704
316 2020-03-01 06:43:31.493 130 6.73 128 8392704
317 2020-03-01 06:43:32.493 130 6.736 128 8392704
318 2020-03-01 06:43:33.493 130 6.74 128 8392704
319 2020-03-01 06:43:34.493 130 6.741 128 8392704
320 2020-03-01 06:43:35.493 130 6.743 128 8392704
321 2020-03-01 06:43:36.493 130 6.743 128 8392704
322 2020-03-01 06:43:37.493 130 6.745 128 8392704
323 2020-03-01 06:43:38.493 130 6.747 128 8392704
324 2020-03-01 06:43:39.493 130 6.747 128 8392704
325 2020-03-01 06:43:40.493 130 6.746 128 8392704
326 2020-03-01 06:43:41.493 130 6.745 128 8392704
327 2020-03-01 06:43:42.493 130 6.743 128 8392704
328 2020-03-01 06:43:43.493 130 6.741 128 8392704
329 2020-03-01 06:43:44.493 130 6.737 128 8392704
330 2020-03-01 06:43:45.493 130 6.737 128 8392704
331 2020-03-01 06:43:46.493 130 6.74 128 8392704
332 2020-03-01 06:43:47.493 130 6.744 128 8392704
333 2020-03-01 06:43:48.493 130 6.746 128 8392704
334 2020-03-01 06:43:49.493 130 6.745 128 8392704
335 2020-03-01 06:43:50.493 130 6.743 128 8392704
336 2020-03-01 06:43:51.493 130 6.745 128 8392704
337 2020-03-01 06:43:52.493 130 6.747 128 8392704
338 2020-03-01 06:43:53.493 130 6.748 128 8392704
339 2020-03-01 06:43:54.493 130 6.748 128 8392704
340 2020-03-01 06:43:55.493 130 6.747 128 8392704
341 2020-03-01 06:43:56.493 130 6.746 128 8392704
342 2020-03-01 06:43:57.493 130 6.744 128 8392704
343 2020-03-01 06:43:58.493 130 6.742 128 8392704
344 2020-03-01 06:43:59.493 130 6.74 128 8392704
345 2020-03-01 06:44:00.493 130 6.739 128 8392704
346 2020-03-01 06:44:01.493 130 6.739 128 8392704
347 2020-03-01 06:44:02.493 130 6.742 128 8392704
348 2020-03-01 06:44:03.493 130 6.742 128 8392704
349 2020-03-01 06:44:04.493 130 6.756 128 8392704
350 2020-03-01 06:44:05.493 130 6.757 128 8392704
351 2020-03-01 06:44:06.493 130 6.757 128 8392704
352 2020-03-01 06:44:07.493 130 6.757 128 8392704
353 2020-03-01 06:44:08.493 130 6.759 128 8392704
354 2020-03-01 06:44:09.493 130 6.759 128 8392704
355 2020-03-01 06:44:10.493 130 6.75 128 8392704
356 2020-03-01 06:44:11.493 130 6.744 128 8392704
357 2020-03-01 06:44:12.493 130 6.739 128 8392704
358 2020-03-01 06:44:13.493 130 6.739 128 8392704
359 2020-03-01 06:44:14.493 130 6.736 128 8392704
360 2020-03-01 06:44:15.493 130 6.734 128 8392704
361 2020-03-01 06:44:16.493 130 6.735 128 8392704
362 2020-03-01 06:44:17.493 130 6.734 128 8392704
363 2020-03-01 06:44:18.493 130 6.736 128 8392704
364 2020-03-01 06:44:19.493 130 6.741 128 8392704
365 2020-03-01 06:44:20.493 130 6.744 128 8392704
366 2020-03-01 06:44:21.493 130 6.746 128 8392704
367 2020-03-01 06:44:22.493 130 6.746 128 8392704
368 2020-03-01 06:44:23.493 130 6.748 128 8392704
369 2020-03-01 06:44:24.493 130 6.751 128 8392704
370 2020-03-01 06:44:25.493 130 6.752 128 8392704
371 2020-03-01 06:44:26.493 130 6.752 128 8392704
372 2020-03-01 06:44:27.493 130 6.752 128 8392704
373 2020-03-01 06:44:28.493 130 6.753 128 8392704
374 2020-03-01 06:44:29.493 130 6.751 128 8392704
375 2020-03-01 06:44:30.493 130 6.751 128 8392704
376 2020-03-01 06:44:31.493 130 6.749 128 8392704
377 2020-03-01 06:44:32.493 130 6.747 128 8392704
378 2020-03-01 06:44:33.493 130 6.748 128 8392704
379 2020-03-01 06:44:34.493 130 6.749 128 8392704
380 2020-03-01 06:44:35.493 130 6.746 128 8392704
381 2020-03-01 06:44:36.493 130 6.742 128 8392704
382 2020-03-01 06:44:37.493 130 6.742 128 8392704
383 2020-03-01 06:44:38.493 130 6.743 128 8392704
384 2020-03-01 06:44:39.493 130 6.743 128 8392704
385 2020-03-01 06:44:40.493 130 6.743 128 8392704
386 2020-03-01 06:44:41.493 130 6.741 128 8392704
387 2020-03-01 06:44:42.493 130 6.741 128 8392704
388 2020-03-01 06:44:43.493 130 6.741 128 8392704
389 2020-03-01 06:44:44.493 130 6.74 128 8392704
390 2020-03-01 06:44:45.493 130 6.74 128 8392704
391 2020-03-01 06:44:46.493 130 6.739 128 8392704
392 2020-03-01 06:44:47.493 130 6.738 128 8392704
393 2020-03-01 06:44:48.493 130 6.738 128 8392704
394 2020-03-01 06:44:49.493 130 6.741 128 8392704
395 2020-03-01 06:44:50.493 130 6.749 128 8392704
396 2020-03-01 06:44:51.493 130 6.756 128 8392704
397 2020-03-01 06:44:52.493 130 6.763 128 8392704
398 2020-03-01 06:44:53.493 130 6.768 128 8392704
399 2020-03-01 06:44:54.493 130 6.771 128 8392704
400 2020-03-01 06:44:55.493 130 6.774 128 8392704
401 2020-03-01 06:44:56.493 130 6.774 128 8392704
402 2020-03-01 06:44:57.493 130 6.774 128 8392704
403 2020-03-01 06:44:58.493 130 6.765 128 8392704
404 2020-03-01 06:44:59.493 130 6.763 128 8392704
405 2020-03-01 06:45:00.493 130 6.761 128 8392704
406 2020-03-01 06:45:01.493 130 6.758 128 8392704
407 2020-03-01 06:45:02.493 130 6.756 128 8392704
408 2020-03-01 06:45:03.493 130 6.756 128 8392704
409 2020-03-01 06:45:04.493 130 6.756 128 8392704
410 2020-03-01 06:45:05.493 130 6.763 128 8392704
411 2020-03-01 06:45:06.493 130 6.763 128 8392704
412 2020-03-01 06:45:07.493 130 6.764 128 8392704
413 2020-03-01 06:45:08.493 130 6.762 128 8392704
414 2020-03-01 06:45:09.493 130 6.763 128 8392704
415 2020-03-01 06:45:10.493 130 6.764 128 8392704
416 2020-03-01 06:45:11.493 130 6.763 128 8392704
417 2020-03-01 06:45:12.493 130 6.76 128 8392704
418 2020-03-01 06:45:13.493 130 6.759 128 8392704
419 2020-03-01 06:45:14.493 130 6.758 128 8392704
420 2020-03-01 06:45:15.493 130 6.758 128 8392704
421 2020-03-01 06:45:16.493 130 6.755 128 8392704
422 2020-03-01 20:04:50.493 130 7.59 128 8392704
423 2020-03-01 20:04:51.493 130 7.592 128 8392704
424 2020-03-01 20:04:52.493 130 7.592 128 8392704
425 2020-03-01 20:04:53.493 130 7.593 128 8392704
426 2020-03-01 20:04:54.493 130 7.592 128 8392704
427 2020-03-01 20:04:55.493 130 7.592 128 8392704
428 2020-03-01 20:04:56.493 130 7.593 128 8392704
429 2020-03-01 20:04:57.493 130 7.593 128 8392704
430 2020-03-01 20:04:58.493 130 7.593 128 8392704
431 2020-03-01 20:04:59.493 130 7.594 128 8392704
432 2020-03-01 20:05:00.493 130 7.595 128 8392704
433 2020-03-01 20:05:01.493 130 7.596 128 8392704
434 2020-03-01 20:05:02.493 130 7.595 128 8392704
435 2020-03-01 20:05:03.493 130 7.595 128 8392704
436 2020-03-01 20:05:04.493 130 7.594 128 8392704
437 2020-03-01 20:05:05.493 130 7.595 128 8392704
438 2020-03-01 20:05:06.493 130 7.598 128 8392704
439 2020-03-01 20:05:07.493 130 7.597 128 8392704
440 2020-03-01 20:05:08.493 130 7.595 128 8392704
441 2020-03-01 20:05:09.493 130 7.597 128 8392704
442 2020-03-01 20:05:10.493 130 7.598 128 8392704
443 2020-03-01 20:05:11.493 130 7.598 128 8392704
444 2020-03-01 20:05:12.493 130 7.597 128 8392704
445 2020-03-01 20:05:13.493 130 7.595 128 8392704
446 2020-03-01 20:05:14.493 130 7.591 128 8392704
447 2020-03-01 20:05:15.493 130 7.589 128 8392704
448 2020-03-01 20:05:16.493 130 7.588 128 8392704
449 2020-03-01 20:05:17.493 130 7.589 128 8392704
450 2020-03-01 20:05:18.493 130 7.589 128 8392704
451 2020-03-01 20:05:19.493 130 7.589 128 8392704
452 2020-03-01 20:05:20.493 130 7.587 128 8392704
453 2020-03-01 20:05:21.493 130 7.584 128 8392704
454 2020-03-01 20:05:22.493 130 7.583 128 8392704
455 2020-03-01 20:05:23.493 130 7.585 128 8392704
456 2020-03-01 20:05:24.493 130 7.586 128 8392704
457 2020-03-01 20:05:25.493 130 7.586 128 8392704
458 2020-03-01 20:05:26.493 130 7.586 128 8392704
459 2020-03-01 20:05:27.493 130 7.586 128 8392704
460 2020-03-01 20:05:28.493 130 7.587 128 8392704
461 2020-03-01 20:05:29.493 130 7.585 128 8392704
462 2020-03-01 20:05:30.493 130 7.584 128 8392704
463 2020-03-01 20:05:31.493 130 7.586 128 8392704
464 2020-03-01 20:05:32.493 130 7.589 128 8392704
465 2020-03-01 20:05:33.493 130 7.59 128 8392704
466 2020-03-01 20:05:34.493 130 7.591 128 8392704
467 2020-03-01 20:05:35.493 130 7.591 128 8392704
468 2020-03-01 20:05:36.493 130 7.594 128 8392704
469 2020-03-01 20:05:37.493 130 7.599 128 8392704
470 2020-03-01 20:05:38.493 130 7.602 128 8392704
471 2020-03-01 20:05:39.493 130 7.604 128 8392704
472 2020-03-01 20:05:40.493 130 7.605 128 8392704
473 2020-03-01 20:05:41.493 130 7.607 128 8392704
474 2020-03-01 20:05:42.493 130 7.607 128 8392704
475 2020-03-01 20:05:43.493 130 7.604 128 8392704
476 2020-03-01 20:05:44.493 130 7.597 128 8392704
477 2020-03-01 20:05:45.493 130 7.592 128 8392704
478 2020-03-01 20:05:46.493 130 7.59 128 8392704
479 2020-03-01 20:05:47.493 130 7.59 128 8392704
480 2020-03-01 20:05:48.493 130 7.591 128 8392704
481 2020-03-01 20:05:49.493 130 7.591 128 8392704
482 2020-03-01 20:05:50.493 130 7.591 128 8392704
483 2020-03-01 20:05:51.493 130 7.594 128 8392704
484 2020-03-01 20:05:52.493 130 7.599 128 8392704
485 2020-03-01 20:05:53.493 130 7.601 128 8392704
486 2020-03-01 20:05:54.493 130 7.602 128 8392704
487 2020-03-01 20:05:55.493 130 7.602 128 8392704
488 2020-03-01 20:05:56.493 130 7.602 128 8392704
489 2020-03-01 20:05:57.493 130 7.603 128 8392704
490 2020-03-01 20:05:58.493 130 7.604 128 8392704
491 2020-03-01 20:05:59.493 130 7.604 128 8392704
492 2020-03-01 20:06:00.493 130 7.605 128 8392704
493 2020-03-01 20:06:01.493 130 7.606 128 8392704
494 2020-03-01 20:06:02.493 130 7.607 128 8392704
495 2020-03-01 20:06:03.493 130 7.605 128 8392704
496 2020-03-01 20:06:04.493 130 7.604 128 8392704
497 2020-03-01 20:06:05.493 130 7.603 128 8392704
498 2020-03-01 20:06:06.493 130 7.602 128 8392704
499 2020-03-01 20:06:07.493 130 7.603 128 8392704
500 2020-03-01 20:06:08.493 130 7.604 128 8392704

View File

@ -0,0 +1,500 @@
"2020-03-01 19:46:50.493","130","7.617","128","8392704"
"2020-03-01 19:46:51.493","130","7.615","128","8392704"
"2020-03-01 19:46:52.493","130","7.613","128","8392704"
"2020-03-01 19:46:53.493","130","7.612","128","8392704"
"2020-03-01 19:46:54.493","130","7.611","128","8392704"
"2020-03-01 19:46:55.493","130","7.612","128","8392704"
"2020-03-01 19:46:56.493","130","7.611","128","8392704"
"2020-03-01 19:46:57.493","130","7.61","128","8392704"
"2020-03-01 19:46:58.493","130","7.61","128","8392704"
"2020-03-01 19:46:59.493","130","7.613","128","8392704"
"2020-03-01 19:47:00.493","130","7.617","128","8392704"
"2020-03-01 19:47:01.493","130","7.618","128","8392704"
"2020-03-01 19:47:02.493","130","7.619","128","8392704"
"2020-03-01 19:47:03.493","130","7.62","128","8392704"
"2020-03-01 19:47:04.493","130","7.619","128","8392704"
"2020-03-01 19:47:05.493","130","7.62","128","8392704"
"2020-03-01 19:47:06.493","130","7.62","128","8392704"
"2020-03-01 19:47:07.493","130","7.618","128","8392704"
"2020-03-01 19:47:08.493","130","7.618","128","8392704"
"2020-03-01 19:47:09.493","130","7.616","128","8392704"
"2020-03-01 19:47:10.493","130","7.615","128","8392704"
"2020-03-01 19:47:11.493","130","7.614","128","8392704"
"2020-03-01 19:47:12.493","130","7.614","128","8392704"
"2020-03-01 19:47:13.493","130","7.615","128","8392704"
"2020-03-01 19:47:14.493","130","7.617","128","8392704"
"2020-03-01 19:47:15.493","130","7.617","128","8392704"
"2020-03-01 19:47:16.493","130","7.612","128","8392704"
"2020-03-01 19:47:17.493","130","7.609","128","8392704"
"2020-03-01 19:47:18.493","130","7.609","128","8392704"
"2020-03-01 19:47:19.493","130","7.609","128","8392704"
"2020-03-01 19:47:20.493","130","7.611","128","8392704"
"2020-03-01 19:47:21.493","130","7.613","128","8392704"
"2020-03-01 19:47:22.493","130","7.612","128","8392704"
"2020-03-01 19:47:23.493","130","7.612","128","8392704"
"2020-03-01 19:47:24.493","130","7.612","128","8392704"
"2020-03-01 19:47:25.493","130","7.613","128","8392704"
"2020-03-01 19:47:26.493","130","7.617","128","8392704"
"2020-03-01 19:47:27.493","130","7.62","128","8392704"
"2020-03-01 19:47:28.493","130","7.621","128","8392704"
"2020-03-01 19:47:29.493","130","7.621","128","8392704"
"2020-03-01 19:47:30.493","130","7.623","128","8392704"
"2020-03-01 19:47:31.493","130","7.624","128","8392704"
"2020-03-01 19:47:32.493","130","7.621","128","8392704"
"2020-03-01 19:47:33.493","130","7.619","128","8392704"
"2020-03-01 19:47:34.493","130","7.618","128","8392704"
"2020-03-01 19:47:35.493","130","7.616","128","8392704"
"2020-03-01 19:47:36.493","130","7.618","128","8392704"
"2020-03-01 19:47:37.493","130","7.618","128","8392704"
"2020-03-01 19:47:38.493","130","7.616","128","8392704"
"2020-03-01 19:47:39.493","130","7.615","128","8392704"
"2020-03-01 19:47:40.493","130","7.615","128","8392704"
"2020-03-01 19:47:41.493","130","7.614","128","8392704"
"2020-03-01 19:47:42.493","130","7.613","128","8392704"
"2020-03-01 19:47:43.493","130","7.612","128","8392704"
"2020-03-01 19:47:44.493","130","7.611","128","8392704"
"2020-03-01 19:47:45.493","130","7.612","128","8392704"
"2020-03-01 19:47:46.493","130","7.614","128","8392704"
"2020-03-01 19:47:47.493","130","7.618","128","8392704"
"2020-03-01 19:47:48.493","130","7.62","128","8392704"
"2020-03-01 19:47:49.493","130","7.62","128","8392704"
"2020-03-01 19:47:50.493","130","7.621","128","8392704"
"2020-03-01 19:47:51.493","130","7.62","128","8392704"
"2020-03-01 19:47:52.493","130","7.619","128","8392704"
"2020-03-01 19:47:53.493","130","7.621","128","8392704"
"2020-03-01 19:47:54.493","130","7.622","128","8392704"
"2020-03-01 19:47:55.493","130","7.622","128","8392704"
"2020-03-01 19:47:56.493","130","7.62","128","8392704"
"2020-03-01 19:47:57.493","130","7.617","128","8392704"
"2020-03-01 19:47:58.493","130","7.616","128","8392704"
"2020-03-01 19:47:59.493","130","7.618","128","8392704"
"2020-03-01 19:48:00.493","130","7.62","128","8392704"
"2020-03-01 19:48:01.493","130","7.62","128","8392704"
"2020-03-01 19:48:02.493","130","7.616","128","8392704"
"2020-03-01 19:48:03.493","130","7.612","128","8392704"
"2020-03-01 19:48:04.493","130","7.609","128","8392704"
"2020-03-01 19:48:05.493","130","7.608","128","8392704"
"2020-03-01 19:48:06.493","130","7.605","128","8392704"
"2020-03-01 19:48:07.493","130","7.604","128","8392704"
"2020-03-01 19:48:08.493","130","7.605","128","8392704"
"2020-03-01 19:48:09.493","130","7.604","128","8392704"
"2020-03-01 19:48:10.493","130","7.604","128","8392704"
"2020-03-01 19:48:11.493","130","7.608","128","8392704"
"2020-03-01 19:48:12.493","130","7.611","128","8392704"
"2020-03-01 19:48:13.493","130","7.614","128","8392704"
"2020-03-01 19:48:14.493","130","7.616","128","8392704"
"2020-03-01 19:48:15.493","130","7.618","128","8392704"
"2020-03-01 19:48:16.493","130","7.62","128","8392704"
"2020-03-01 19:48:17.493","130","7.617","128","8392704"
"2020-03-01 19:48:18.493","130","7.61","128","8392704"
"2020-03-01 19:48:19.493","130","7.607","128","8392704"
"2020-03-01 19:48:20.493","130","7.604","128","8392704"
"2020-03-01 19:48:21.493","130","7.601","128","8392704"
"2020-03-01 19:48:22.493","130","7.601","128","8392704"
"2020-03-01 19:48:23.493","130","7.601","128","8392704"
"2020-03-01 19:48:24.493","130","7.598","128","8392704"
"2020-03-01 19:48:25.493","130","7.598","128","8392704"
"2020-03-01 19:48:26.493","130","7.604","128","8392704"
"2020-03-01 19:48:27.493","130","7.608","128","8392704"
"2020-03-01 19:48:28.493","130","7.609","128","8392704"
"2020-03-01 19:48:29.493","130","7.61","128","8392704"
"2020-03-01 19:48:30.493","130","7.611","128","8392704"
"2020-03-01 19:48:31.493","130","7.614","128","8392704"
"2020-03-01 19:48:32.493","130","7.614","128","8392704"
"2020-03-01 19:48:33.493","130","7.611","128","8392704"
"2020-03-01 19:48:34.493","130","7.607","128","8392704"
"2020-03-01 19:48:35.493","130","7.601","128","8392704"
"2020-03-01 19:48:36.493","130","7.596","128","8392704"
"2020-03-01 19:48:37.493","130","7.593","128","8392704"
"2020-03-01 19:48:38.493","130","7.593","128","8392704"
"2020-03-01 19:48:39.493","130","7.593","128","8392704"
"2020-03-01 19:48:40.493","130","7.595","128","8392704"
"2020-03-01 19:48:41.493","130","7.596","128","8392704"
"2020-03-01 19:48:42.493","130","7.599","128","8392704"
"2020-03-01 19:48:43.493","130","7.603","128","8392704"
"2020-03-01 19:48:44.493","130","7.605","128","8392704"
"2020-03-01 19:48:45.493","130","7.607","128","8392704"
"2020-03-01 19:48:46.493","130","7.608","128","8392704"
"2020-03-01 19:48:47.493","130","7.609","128","8392704"
"2020-03-01 19:48:48.493","130","7.61","128","8392704"
"2020-03-01 19:48:49.493","130","7.608","128","8392704"
"2020-03-01 19:48:50.493","130","7.605","128","8392704"
"2020-03-01 19:48:51.493","130","7.605","128","8392704"
"2020-03-01 19:48:52.493","130","7.607","128","8392704"
"2020-03-01 19:48:53.493","130","7.608","128","8392704"
"2020-03-01 19:48:54.493","130","7.608","128","8392704"
"2020-03-01 19:48:55.493","130","7.608","128","8392704"
"2020-03-01 19:48:56.493","130","7.61","128","8392704"
"2020-03-01 19:48:57.493","130","7.613","128","8392704"
"2020-03-01 19:48:58.493","130","7.612","128","8392704"
"2020-03-01 19:48:59.493","130","7.61","128","8392704"
"2020-03-01 19:49:00.493","130","7.609","128","8392704"
"2020-03-01 19:49:01.493","130","7.61","128","8392704"
"2020-03-01 19:49:02.493","130","7.611","128","8392704"
"2020-03-01 19:49:03.493","130","7.61","128","8392704"
"2020-03-01 19:49:04.493","130","7.61","128","8392704"
"2020-03-01 19:49:05.493","130","7.613","128","8392704"
"2020-03-01 19:49:06.493","130","7.615","128","8392704"
"2020-03-01 19:49:07.493","130","7.614","128","8392704"
"2020-03-01 19:49:08.493","130","7.613","128","8392704"
"2020-03-01 19:49:09.493","130","7.613","128","8392704"
"2020-03-01 19:49:10.493","130","7.615","128","8392704"
"2020-03-01 19:49:11.493","130","7.619","128","8392704"
"2020-03-01 19:49:12.493","130","7.62","128","8392704"
"2020-03-01 19:49:13.493","130","7.618","128","8392704"
"2020-03-01 19:49:14.493","130","7.619","128","8392704"
"2020-03-01 19:49:15.493","130","7.618","128","8392704"
"2020-03-01 19:49:16.493","130","7.617","128","8392704"
"2020-03-01 19:49:17.493","130","7.617","128","8392704"
"2020-03-01 19:49:18.493","130","7.618","128","8392704"
"2020-03-01 19:49:19.493","130","7.617","128","8392704"
"2020-03-01 19:49:20.493","130","7.616","128","8392704"
"2020-03-01 19:49:21.493","130","7.615","128","8392704"
"2020-03-01 19:49:22.493","130","7.616","128","8392704"
"2020-03-01 19:49:23.493","130","7.617","128","8392704"
"2020-03-01 19:49:24.493","130","7.615","128","8392704"
"2020-03-01 19:49:25.493","130","7.613","128","8392704"
"2020-03-01 19:49:26.493","130","7.612","128","8392704"
"2020-03-01 19:49:27.493","130","7.613","128","8392704"
"2020-03-01 19:49:28.493","130","7.614","128","8392704"
"2020-03-01 19:49:29.493","130","7.612","128","8392704"
"2020-03-01 19:49:30.493","130","7.611","128","8392704"
"2020-03-01 19:49:31.493","130","7.611","128","8392704"
"2020-03-01 19:49:32.493","130","7.612","128","8392704"
"2020-03-01 19:49:33.493","130","7.613","128","8392704"
"2020-03-01 19:49:34.493","130","7.614","128","8392704"
"2020-03-01 19:49:35.493","130","7.612","128","8392704"
"2020-03-01 19:49:36.493","130","7.607","128","8392704"
"2020-03-01 19:49:37.493","130","7.603","128","8392704"
"2020-03-01 19:49:38.493","130","7.599","128","8392704"
"2020-03-01 19:49:39.493","130","7.599","128","8392704"
"2020-03-01 19:49:40.493","130","7.599","128","8392704"
"2020-03-01 19:49:41.493","130","7.599","128","8392704"
"2020-03-01 19:49:42.493","130","7.601","128","8392704"
"2020-03-01 19:49:43.493","130","7.605","128","8392704"
"2020-03-01 19:49:44.493","130","7.606","128","8392704"
"2020-03-01 19:49:45.493","130","7.606","128","8392704"
"2020-03-01 19:49:46.493","130","7.606","128","8392704"
"2020-03-01 19:49:47.493","130","7.604","128","8392704"
"2020-03-01 19:49:48.493","130","7.604","128","8392704"
"2020-03-01 19:49:49.493","130","7.603","128","8392704"
"2020-03-01 19:49:50.493","130","7.604","128","8392704"
"2020-03-01 19:49:51.493","130","7.608","128","8392704"
"2020-03-01 19:49:52.493","130","7.614","128","8392704"
"2020-03-01 19:49:53.493","130","7.618","128","8392704"
"2020-03-01 19:49:54.493","130","7.621","128","8392704"
"2020-03-01 19:49:55.493","130","7.623","128","8392704"
"2020-03-01 19:49:56.493","130","7.623","128","8392704"
"2020-03-01 19:49:57.493","130","7.624","128","8392704"
"2020-03-01 19:49:58.493","130","7.626","128","8392704"
"2020-03-01 19:49:59.493","130","7.628","128","8392704"
"2020-03-01 19:50:00.493","130","7.627","128","8392704"
"2020-03-01 19:50:01.493","130","7.625","128","8392704"
"2020-03-01 19:50:02.493","130","7.627","128","8392704"
"2020-03-01 19:50:03.493","130","7.63","128","8392704"
"2020-03-01 19:50:04.493","130","7.633","128","8392704"
"2020-03-01 19:50:05.493","130","7.635","128","8392704"
"2020-03-01 19:50:06.493","130","7.634","128","8392704"
"2020-03-01 19:50:07.493","130","7.632","128","8392704"
"2020-03-01 19:50:08.493","130","7.628","128","8392704"
"2020-03-01 19:50:09.493","130","7.625","128","8392704"
"2020-03-01 19:50:10.493","130","7.625","128","8392704"
"2020-03-01 19:50:11.493","130","7.623","128","8392704"
"2020-03-01 19:50:12.493","130","7.623","128","8392704"
"2020-03-01 19:50:13.493","130","7.623","128","8392704"
"2020-03-01 19:50:14.493","130","7.622","128","8392704"
"2020-03-01 19:50:15.493","130","7.621","128","8392704"
"2020-03-01 19:50:16.493","130","7.618","128","8392704"
"2020-03-01 19:50:17.493","130","7.618","128","8392704"
"2020-03-01 19:50:18.493","130","7.617","128","8392704"
"2020-03-01 19:50:19.493","130","7.616","128","8392704"
"2020-03-01 19:50:20.493","130","7.615","128","8392704"
"2020-03-01 19:50:21.493","130","7.615","128","8392704"
"2020-03-01 19:50:22.493","130","7.616","128","8392704"
"2020-03-01 19:50:23.493","130","7.619","128","8392704"
"2020-03-01 19:50:24.493","130","7.622","128","8392704"
"2020-03-01 19:50:25.493","130","7.624","128","8392704"
"2020-03-01 19:50:26.493","130","7.627","128","8392704"
"2020-03-01 19:50:27.493","130","7.627","128","8392704"
"2020-03-01 19:50:28.493","130","7.625","128","8392704"
"2020-03-01 19:50:29.493","130","7.625","128","8392704"
"2020-03-01 19:50:30.493","130","7.625","128","8392704"
"2020-03-01 19:50:31.493","130","7.624","128","8392704"
"2020-03-01 19:50:32.493","130","7.624","128","8392704"
"2020-03-01 19:50:33.493","130","7.624","128","8392704"
"2020-03-01 19:50:34.493","130","7.626","128","8392704"
"2020-03-01 19:50:35.493","130","7.627","128","8392704"
"2020-03-01 19:50:36.493","130","7.627","128","8392704"
"2020-03-01 19:50:37.493","130","7.626","128","8392704"
"2020-03-01 19:50:38.493","130","7.623","128","8392704"
"2020-03-01 19:50:39.493","130","7.619","128","8392704"
"2020-03-01 19:50:40.493","130","7.616","128","8392704"
"2020-03-01 19:50:41.493","130","7.616","128","8392704"
"2020-03-01 19:50:42.493","130","7.615","128","8392704"
"2020-03-01 19:50:43.493","130","7.613","128","8392704"
"2020-03-01 19:50:44.493","130","7.614","128","8392704"
"2020-03-01 19:50:45.493","130","7.614","128","8392704"
"2020-03-01 19:50:46.493","130","7.612","128","8392704"
"2020-03-01 19:50:47.493","130","7.611","128","8392704"
"2020-03-01 19:50:48.493","130","7.611","128","8392704"
"2020-03-01 19:50:49.493","130","7.611","128","8392704"
"2020-03-01 19:50:50.493","130","7.612","128","8392704"
"2020-03-01 19:50:51.493","130","7.613","128","8392704"
"2020-03-01 19:50:52.493","130","7.613","128","8392704"
"2020-03-01 19:50:53.493","130","7.615","128","8392704"
"2020-03-01 19:50:54.493","130","7.617","128","8392704"
"2020-03-01 19:50:55.493","130","7.617","128","8392704"
"2020-03-01 19:50:56.493","130","7.619","128","8392704"
"2020-03-01 19:50:57.493","130","7.622","128","8392704"
"2020-03-01 19:50:58.493","130","7.624","128","8392704"
"2020-03-01 19:50:59.493","130","7.625","128","8392704"
"2020-03-01 19:51:00.493","130","7.624","128","8392704"
"2020-03-01 19:51:01.493","130","7.624","128","8392704"
"2020-03-01 19:51:02.493","130","7.622","128","8392704"
"2020-03-01 19:51:03.493","130","7.62","128","8392704"
"2020-03-01 19:51:04.493","130","7.617","128","8392704"
"2020-03-01 19:51:05.493","130","7.617","128","8392704"
"2020-03-01 19:51:06.493","130","7.618","128","8392704"
"2020-03-01 19:51:07.493","130","7.618","128","8392704"
"2020-03-01 19:51:08.493","130","7.618","128","8392704"
"2020-03-01 19:51:09.493","130","7.62","128","8392704"
"2020-03-01 19:51:10.493","130","7.622","128","8392704"
"2020-03-01 19:51:11.493","130","7.623","128","8392704"
"2020-03-01 19:51:12.493","130","7.624","128","8392704"
"2020-03-01 19:51:13.493","130","7.625","128","8392704"
"2020-03-01 19:51:14.493","130","7.626","128","8392704"
"2020-03-01 19:51:15.493","130","7.626","128","8392704"
"2020-03-01 19:51:16.493","130","7.626","128","8392704"
"2020-03-01 19:51:17.493","130","7.627","128","8392704"
"2020-03-01 19:51:18.493","130","7.627","128","8392704"
"2020-03-01 19:51:19.493","130","7.629","128","8392704"
"2020-03-01 19:51:20.493","130","7.629","128","8392704"
"2020-03-01 19:51:21.493","130","7.626","128","8392704"
"2020-03-01 19:51:22.493","130","7.625","128","8392704"
"2020-03-01 19:51:23.493","130","7.625","128","8392704"
"2020-03-01 19:51:24.493","130","7.626","128","8392704"
"2020-03-01 19:51:25.493","130","7.626","128","8392704"
"2020-03-01 19:51:26.493","130","7.624","128","8392704"
"2020-03-01 19:51:27.493","130","7.623","128","8392704"
"2020-03-01 19:51:28.493","130","7.624","128","8392704"
"2020-03-01 19:51:29.493","130","7.624","128","8392704"
"2020-03-01 19:51:30.493","130","7.624","128","8392704"
"2020-03-01 19:51:31.493","130","7.624","128","8392704"
"2020-03-01 19:51:32.493","130","7.626","128","8392704"
"2020-03-01 19:51:33.493","130","7.626","128","8392704"
"2020-03-01 19:51:34.493","130","7.626","128","8392704"
"2020-03-01 19:51:35.493","130","7.625","128","8392704"
"2020-03-01 19:51:36.493","130","7.624","128","8392704"
"2020-03-01 19:51:37.493","130","7.623","128","8392704"
"2020-03-01 19:51:38.493","130","7.622","128","8392704"
"2020-03-01 19:51:39.493","130","7.62","128","8392704"
"2020-03-01 19:51:40.493","130","7.62","128","8392704"
"2020-03-01 19:51:41.493","130","7.62","128","8392704"
"2020-03-01 19:51:42.493","130","7.621","128","8392704"
"2020-03-01 19:51:43.493","130","7.62","128","8392704"
"2020-03-01 19:51:44.493","130","7.619","128","8392704"
"2020-03-01 19:51:45.493","130","7.62","128","8392704"
"2020-03-01 19:51:46.493","130","7.62","128","8392704"
"2020-03-01 19:51:47.493","130","7.618","128","8392704"
"2020-03-01 19:51:48.493","130","7.619","128","8392704"
"2020-03-01 19:51:49.493","130","7.62","128","8392704"
"2020-03-01 19:51:50.493","130","7.622","128","8392704"
"2020-03-01 19:51:51.493","130","7.622","128","8392704"
"2020-03-01 19:51:52.493","130","7.62","128","8392704"
"2020-03-01 19:51:53.493","130","7.62","128","8392704"
"2020-03-01 19:51:54.493","130","7.622","128","8392704"
"2020-03-01 19:51:55.493","130","7.624","128","8392704"
"2020-03-01 19:51:56.493","130","7.622","128","8392704"
"2020-03-01 19:51:57.493","130","7.616","128","8392704"
"2020-03-01 19:51:58.493","130","7.611","128","8392704"
"2020-03-01 19:51:59.493","130","7.61","128","8392704"
"2020-03-01 19:52:00.493","130","7.608","128","8392704"
"2020-03-01 19:52:01.493","130","7.606","128","8392704"
"2020-03-01 19:52:02.493","130","7.607","128","8392704"
"2020-03-01 19:52:03.493","130","7.608","128","8392704"
"2020-03-01 19:52:04.493","130","7.61","128","8392704"
"2020-03-01 19:52:05.493","130","7.612","128","8392704"
"2020-03-01 19:52:06.493","130","7.615","128","8392704"
"2020-03-01 19:52:07.493","130","7.62","128","8392704"
"2020-03-01 19:52:08.493","130","7.623","128","8392704"
"2020-03-01 19:52:09.493","130","7.624","128","8392704"
"2020-03-01 19:52:10.493","130","7.623","128","8392704"
"2020-03-01 19:52:11.493","130","7.623","128","8392704"
"2020-03-01 19:52:12.493","130","7.624","128","8392704"
"2020-03-01 19:52:13.493","130","7.622","128","8392704"
"2020-03-01 19:52:14.493","130","7.62","128","8392704"
"2020-03-01 19:52:15.493","130","7.621","128","8392704"
"2020-03-01 19:52:16.493","130","7.62","128","8392704"
"2020-03-01 19:52:17.493","130","7.622","128","8392704"
"2020-03-01 19:52:18.493","130","7.625","128","8392704"
"2020-03-01 19:52:19.493","130","7.627","128","8392704"
"2020-03-01 19:52:20.493","130","7.625","128","8392704"
"2020-03-01 19:52:21.493","130","7.621","128","8392704"
"2020-03-01 19:52:22.493","130","7.617","128","8392704"
"2020-03-01 19:52:23.493","130","7.617","128","8392704"
"2020-03-01 19:52:24.493","130","7.617","128","8392704"
"2020-03-01 19:52:25.493","130","7.616","128","8392704"
"2020-03-01 19:52:26.493","130","7.615","128","8392704"
"2020-03-01 19:52:27.493","130","7.616","128","8392704"
"2020-03-01 19:52:28.493","130","7.619","128","8392704"
"2020-03-01 19:52:29.493","130","7.621","128","8392704"
"2020-03-01 19:52:30.493","130","7.621","128","8392704"
"2020-03-01 19:52:31.493","130","7.621","128","8392704"
"2020-03-01 19:52:32.493","130","7.621","128","8392704"
"2020-03-01 19:52:33.493","130","7.621","128","8392704"
"2020-03-01 19:52:34.493","130","7.623","128","8392704"
"2020-03-01 19:52:35.493","130","7.621","128","8392704"
"2020-03-01 19:52:36.493","130","7.617","128","8392704"
"2020-03-01 19:52:37.493","130","7.615","128","8392704"
"2020-03-01 19:52:38.493","130","7.612","128","8392704"
"2020-03-01 19:52:39.493","130","7.609","128","8392704"
"2020-03-01 19:52:40.493","130","7.606","128","8392704"
"2020-03-01 19:52:41.493","130","7.606","128","8392704"
"2020-03-01 19:52:42.493","130","7.609","128","8392704"
"2020-03-01 19:52:43.493","130","7.612","128","8392704"
"2020-03-01 19:52:44.493","130","7.616","128","8392704"
"2020-03-01 19:52:45.493","130","7.619","128","8392704"
"2020-03-01 19:52:46.493","130","7.62","128","8392704"
"2020-03-01 19:52:47.493","130","7.622","128","8392704"
"2020-03-01 19:52:48.493","130","7.622","128","8392704"
"2020-03-01 19:52:49.493","130","7.621","128","8392704"
"2020-03-01 19:52:50.493","130","7.618","128","8392704"
"2020-03-01 19:52:51.493","130","7.616","128","8392704"
"2020-03-01 19:52:52.493","130","7.613","128","8392704"
"2020-03-01 19:52:53.493","130","7.612","128","8392704"
"2020-03-01 19:52:54.493","130","7.612","128","8392704"
"2020-03-01 19:52:55.493","130","7.611","128","8392704"
"2020-03-01 19:52:56.493","130","7.609","128","8392704"
"2020-03-01 19:52:57.493","130","7.608","128","8392704"
"2020-03-01 19:52:58.493","130","7.609","128","8392704"
"2020-03-01 19:52:59.493","130","7.611","128","8392704"
"2020-03-01 19:53:00.493","130","7.612","128","8392704"
"2020-03-01 19:53:01.493","130","7.614","128","8392704"
"2020-03-01 19:53:02.493","130","7.618","128","8392704"
"2020-03-01 19:53:03.493","130","7.62","128","8392704"
"2020-03-01 19:53:04.493","130","7.62","128","8392704"
"2020-03-01 19:53:05.493","130","7.62","128","8392704"
"2020-03-01 19:53:06.493","130","7.619","128","8392704"
"2020-03-01 19:53:07.493","130","7.617","128","8392704"
"2020-03-01 19:53:08.493","130","7.615","128","8392704"
"2020-03-01 19:53:09.493","130","7.612","128","8392704"
"2020-03-01 19:53:10.493","130","7.61","128","8392704"
"2020-03-01 19:53:11.493","130","7.609","128","8392704"
"2020-03-01 19:53:12.493","130","7.608","128","8392704"
"2020-03-01 19:53:13.493","130","7.61","128","8392704"
"2020-03-01 19:53:14.493","130","7.611","128","8392704"
"2020-03-01 19:53:15.493","130","7.609","128","8392704"
"2020-03-01 19:53:16.493","130","7.608","128","8392704"
"2020-03-01 19:53:17.493","130","7.608","128","8392704"
"2020-03-01 19:53:18.493","130","7.607","128","8392704"
"2020-03-01 19:53:19.493","130","7.607","128","8392704"
"2020-03-01 19:53:20.493","130","7.605","128","8392704"
"2020-03-01 19:53:21.493","130","7.603","128","8392704"
"2020-03-01 19:53:22.493","130","7.606","128","8392704"
"2020-03-01 19:53:23.493","130","7.611","128","8392704"
"2020-03-01 19:53:24.493","130","7.615","128","8392704"
"2020-03-01 19:53:25.493","130","7.618","128","8392704"
"2020-03-01 19:53:26.493","130","7.62","128","8392704"
"2020-03-01 19:53:27.493","130","7.622","128","8392704"
"2020-03-01 19:53:28.493","130","7.624","128","8392704"
"2020-03-01 19:53:29.493","130","7.626","128","8392704"
"2020-03-01 19:53:30.493","130","7.624","128","8392704"
"2020-03-01 19:53:31.493","130","7.617","128","8392704"
"2020-03-01 19:53:32.493","130","7.613","128","8392704"
"2020-03-01 19:53:33.493","130","7.613","128","8392704"
"2020-03-01 19:53:34.493","130","7.613","128","8392704"
"2020-03-01 19:53:35.493","130","7.61","128","8392704"
"2020-03-01 19:53:36.493","130","7.609","128","8392704"
"2020-03-01 19:53:37.493","130","7.611","128","8392704"
"2020-03-01 19:53:38.493","130","7.61","128","8392704"
"2020-03-01 19:53:39.493","130","7.609","128","8392704"
"2020-03-01 19:53:40.493","130","7.608","128","8392704"
"2020-03-01 19:53:41.493","130","7.605","128","8392704"
"2020-03-01 19:53:42.493","130","7.601","128","8392704"
"2020-03-01 19:53:43.493","130","7.6","128","8392704"
"2020-03-01 19:53:44.493","130","7.602","128","8392704"
"2020-03-01 19:53:45.493","130","7.604","128","8392704"
"2020-03-01 19:53:46.493","130","7.605","128","8392704"
"2020-03-01 19:53:47.493","130","7.606","128","8392704"
"2020-03-01 19:53:48.493","130","7.605","128","8392704"
"2020-03-01 19:53:49.493","130","7.605","128","8392704"
"2020-03-01 19:53:50.493","130","7.606","128","8392704"
"2020-03-01 19:53:51.493","130","7.606","128","8392704"
"2020-03-01 19:53:52.493","130","7.604","128","8392704"
"2020-03-01 19:53:53.493","130","7.606","128","8392704"
"2020-03-01 19:53:54.493","130","7.61","128","8392704"
"2020-03-01 19:53:55.493","130","7.612","128","8392704"
"2020-03-01 19:53:56.493","130","7.613","128","8392704"
"2020-03-01 19:53:57.493","130","7.613","128","8392704"
"2020-03-01 19:53:58.493","130","7.613","128","8392704"
"2020-03-01 19:53:59.493","130","7.615","128","8392704"
"2020-03-01 19:54:00.493","130","7.616","128","8392704"
"2020-03-01 19:54:01.493","130","7.616","128","8392704"
"2020-03-01 19:54:02.493","130","7.618","128","8392704"
"2020-03-01 19:54:03.493","130","7.621","128","8392704"
"2020-03-01 19:54:04.493","130","7.623","128","8392704"
"2020-03-01 19:54:05.493","130","7.623","128","8392704"
"2020-03-01 19:54:06.493","130","7.624","128","8392704"
"2020-03-01 19:54:07.493","130","7.624","128","8392704"
"2020-03-01 19:54:08.493","130","7.622","128","8392704"
"2020-03-01 19:54:09.493","130","7.62","128","8392704"
"2020-03-01 19:54:10.493","130","7.621","128","8392704"
"2020-03-01 19:54:11.493","130","7.62","128","8392704"
"2020-03-01 19:54:12.493","130","7.617","128","8392704"
"2020-03-01 19:54:13.493","130","7.617","128","8392704"
"2020-03-01 19:54:14.493","130","7.618","128","8392704"
"2020-03-01 19:54:15.493","130","7.617","128","8392704"
"2020-03-01 19:54:16.493","130","7.615","128","8392704"
"2020-03-01 19:54:17.493","130","7.613","128","8392704"
"2020-03-01 19:54:18.493","130","7.612","128","8392704"
"2020-03-01 19:54:19.493","130","7.609","128","8392704"
"2020-03-01 19:54:20.493","130","7.605","128","8392704"
"2020-03-01 19:54:21.493","130","7.604","128","8392704"
"2020-03-01 19:54:22.493","130","7.605","128","8392704"
"2020-03-01 19:54:23.493","130","7.608","128","8392704"
"2020-03-01 19:54:24.493","130","7.611","128","8392704"
"2020-03-01 19:54:25.493","130","7.613","128","8392704"
"2020-03-01 19:54:26.493","130","7.613","128","8392704"
"2020-03-01 19:54:27.493","130","7.611","128","8392704"
"2020-03-01 19:54:28.493","130","7.611","128","8392704"
"2020-03-01 19:54:29.493","130","7.611","128","8392704"
"2020-03-01 19:54:30.493","130","7.612","128","8392704"
"2020-03-01 19:54:31.493","130","7.614","128","8392704"
"2020-03-01 19:54:32.493","130","7.61","128","8392704"
"2020-03-01 19:54:33.493","130","7.603","128","8392704"
"2020-03-01 19:54:34.493","130","7.598","128","8392704"
"2020-03-01 19:54:35.493","130","7.594","128","8392704"
"2020-03-01 19:54:36.493","130","7.591","128","8392704"
"2020-03-01 19:54:37.493","130","7.591","128","8392704"
"2020-03-01 19:54:38.493","130","7.59","128","8392704"
"2020-03-01 19:54:39.493","130","7.588","128","8392704"
"2020-03-01 19:54:40.493","130","7.593","128","8392704"
"2020-03-01 19:54:41.493","130","7.599","128","8392704"
"2020-03-01 19:54:42.493","130","7.602","128","8392704"
"2020-03-01 19:54:43.493","130","7.604","128","8392704"
"2020-03-01 19:54:44.493","130","7.606","128","8392704"
"2020-03-01 19:54:45.493","130","7.609","128","8392704"
"2020-03-01 19:54:46.493","130","7.612","128","8392704"
"2020-03-01 19:54:47.493","130","7.614","128","8392704"
"2020-03-01 19:54:48.493","130","7.616","128","8392704"
"2020-03-01 19:54:49.493","130","7.617","128","8392704"
"2020-03-01 19:54:50.493","130","7.619","128","8392704"
"2020-03-01 19:54:51.493","130","7.623","128","8392704"
"2020-03-01 19:54:52.493","130","7.626","128","8392704"
"2020-03-01 19:54:53.493","130","7.626","128","8392704"
"2020-03-01 19:54:54.493","130","7.624","128","8392704"
"2020-03-01 19:54:55.493","130","7.623","128","8392704"
"2020-03-01 19:54:56.493","130","7.618","128","8392704"
"2020-03-01 19:54:57.493","130","7.613","128","8392704"
"2020-03-01 19:54:58.493","130","7.61","128","8392704"
"2020-03-01 19:54:59.493","130","7.605","128","8392704"
"2020-03-01 19:55:00.493","130","7.604","128","8392704"
"2020-03-01 19:55:01.493","130","7.603","128","8392704"
"2020-03-01 19:55:02.493","130","7.602","128","8392704"
"2020-03-01 19:55:03.493","130","7.602","128","8392704"
"2020-03-01 19:55:04.493","130","7.602","128","8392704"
"2020-03-01 19:55:05.493","130","7.603","128","8392704"
"2020-03-01 19:55:06.493","130","7.608","128","8392704"
"2020-03-01 19:55:07.493","130","7.609","128","8392704"
"2020-03-01 19:55:08.493","130","7.608","128","8392704"
"2020-03-01 19:55:09.493","130","7.609","128","8392704"
1 2020-03-01 19:46:50.493 130 7.617 128 8392704
2 2020-03-01 19:46:51.493 130 7.615 128 8392704
3 2020-03-01 19:46:52.493 130 7.613 128 8392704
4 2020-03-01 19:46:53.493 130 7.612 128 8392704
5 2020-03-01 19:46:54.493 130 7.611 128 8392704
6 2020-03-01 19:46:55.493 130 7.612 128 8392704
7 2020-03-01 19:46:56.493 130 7.611 128 8392704
8 2020-03-01 19:46:57.493 130 7.61 128 8392704
9 2020-03-01 19:46:58.493 130 7.61 128 8392704
10 2020-03-01 19:46:59.493 130 7.613 128 8392704
11 2020-03-01 19:47:00.493 130 7.617 128 8392704
12 2020-03-01 19:47:01.493 130 7.618 128 8392704
13 2020-03-01 19:47:02.493 130 7.619 128 8392704
14 2020-03-01 19:47:03.493 130 7.62 128 8392704
15 2020-03-01 19:47:04.493 130 7.619 128 8392704
16 2020-03-01 19:47:05.493 130 7.62 128 8392704
17 2020-03-01 19:47:06.493 130 7.62 128 8392704
18 2020-03-01 19:47:07.493 130 7.618 128 8392704
19 2020-03-01 19:47:08.493 130 7.618 128 8392704
20 2020-03-01 19:47:09.493 130 7.616 128 8392704
21 2020-03-01 19:47:10.493 130 7.615 128 8392704
22 2020-03-01 19:47:11.493 130 7.614 128 8392704
23 2020-03-01 19:47:12.493 130 7.614 128 8392704
24 2020-03-01 19:47:13.493 130 7.615 128 8392704
25 2020-03-01 19:47:14.493 130 7.617 128 8392704
26 2020-03-01 19:47:15.493 130 7.617 128 8392704
27 2020-03-01 19:47:16.493 130 7.612 128 8392704
28 2020-03-01 19:47:17.493 130 7.609 128 8392704
29 2020-03-01 19:47:18.493 130 7.609 128 8392704
30 2020-03-01 19:47:19.493 130 7.609 128 8392704
31 2020-03-01 19:47:20.493 130 7.611 128 8392704
32 2020-03-01 19:47:21.493 130 7.613 128 8392704
33 2020-03-01 19:47:22.493 130 7.612 128 8392704
34 2020-03-01 19:47:23.493 130 7.612 128 8392704
35 2020-03-01 19:47:24.493 130 7.612 128 8392704
36 2020-03-01 19:47:25.493 130 7.613 128 8392704
37 2020-03-01 19:47:26.493 130 7.617 128 8392704
38 2020-03-01 19:47:27.493 130 7.62 128 8392704
39 2020-03-01 19:47:28.493 130 7.621 128 8392704
40 2020-03-01 19:47:29.493 130 7.621 128 8392704
41 2020-03-01 19:47:30.493 130 7.623 128 8392704
42 2020-03-01 19:47:31.493 130 7.624 128 8392704
43 2020-03-01 19:47:32.493 130 7.621 128 8392704
44 2020-03-01 19:47:33.493 130 7.619 128 8392704
45 2020-03-01 19:47:34.493 130 7.618 128 8392704
46 2020-03-01 19:47:35.493 130 7.616 128 8392704
47 2020-03-01 19:47:36.493 130 7.618 128 8392704
48 2020-03-01 19:47:37.493 130 7.618 128 8392704
49 2020-03-01 19:47:38.493 130 7.616 128 8392704
50 2020-03-01 19:47:39.493 130 7.615 128 8392704
51 2020-03-01 19:47:40.493 130 7.615 128 8392704
52 2020-03-01 19:47:41.493 130 7.614 128 8392704
53 2020-03-01 19:47:42.493 130 7.613 128 8392704
54 2020-03-01 19:47:43.493 130 7.612 128 8392704
55 2020-03-01 19:47:44.493 130 7.611 128 8392704
56 2020-03-01 19:47:45.493 130 7.612 128 8392704
57 2020-03-01 19:47:46.493 130 7.614 128 8392704
58 2020-03-01 19:47:47.493 130 7.618 128 8392704
59 2020-03-01 19:47:48.493 130 7.62 128 8392704
60 2020-03-01 19:47:49.493 130 7.62 128 8392704
61 2020-03-01 19:47:50.493 130 7.621 128 8392704
62 2020-03-01 19:47:51.493 130 7.62 128 8392704
63 2020-03-01 19:47:52.493 130 7.619 128 8392704
64 2020-03-01 19:47:53.493 130 7.621 128 8392704
65 2020-03-01 19:47:54.493 130 7.622 128 8392704
66 2020-03-01 19:47:55.493 130 7.622 128 8392704
67 2020-03-01 19:47:56.493 130 7.62 128 8392704
68 2020-03-01 19:47:57.493 130 7.617 128 8392704
69 2020-03-01 19:47:58.493 130 7.616 128 8392704
70 2020-03-01 19:47:59.493 130 7.618 128 8392704
71 2020-03-01 19:48:00.493 130 7.62 128 8392704
72 2020-03-01 19:48:01.493 130 7.62 128 8392704
73 2020-03-01 19:48:02.493 130 7.616 128 8392704
74 2020-03-01 19:48:03.493 130 7.612 128 8392704
75 2020-03-01 19:48:04.493 130 7.609 128 8392704
76 2020-03-01 19:48:05.493 130 7.608 128 8392704
77 2020-03-01 19:48:06.493 130 7.605 128 8392704
78 2020-03-01 19:48:07.493 130 7.604 128 8392704
79 2020-03-01 19:48:08.493 130 7.605 128 8392704
80 2020-03-01 19:48:09.493 130 7.604 128 8392704
81 2020-03-01 19:48:10.493 130 7.604 128 8392704
82 2020-03-01 19:48:11.493 130 7.608 128 8392704
83 2020-03-01 19:48:12.493 130 7.611 128 8392704
84 2020-03-01 19:48:13.493 130 7.614 128 8392704
85 2020-03-01 19:48:14.493 130 7.616 128 8392704
86 2020-03-01 19:48:15.493 130 7.618 128 8392704
87 2020-03-01 19:48:16.493 130 7.62 128 8392704
88 2020-03-01 19:48:17.493 130 7.617 128 8392704
89 2020-03-01 19:48:18.493 130 7.61 128 8392704
90 2020-03-01 19:48:19.493 130 7.607 128 8392704
91 2020-03-01 19:48:20.493 130 7.604 128 8392704
92 2020-03-01 19:48:21.493 130 7.601 128 8392704
93 2020-03-01 19:48:22.493 130 7.601 128 8392704
94 2020-03-01 19:48:23.493 130 7.601 128 8392704
95 2020-03-01 19:48:24.493 130 7.598 128 8392704
96 2020-03-01 19:48:25.493 130 7.598 128 8392704
97 2020-03-01 19:48:26.493 130 7.604 128 8392704
98 2020-03-01 19:48:27.493 130 7.608 128 8392704
99 2020-03-01 19:48:28.493 130 7.609 128 8392704
100 2020-03-01 19:48:29.493 130 7.61 128 8392704
101 2020-03-01 19:48:30.493 130 7.611 128 8392704
102 2020-03-01 19:48:31.493 130 7.614 128 8392704
103 2020-03-01 19:48:32.493 130 7.614 128 8392704
104 2020-03-01 19:48:33.493 130 7.611 128 8392704
105 2020-03-01 19:48:34.493 130 7.607 128 8392704
106 2020-03-01 19:48:35.493 130 7.601 128 8392704
107 2020-03-01 19:48:36.493 130 7.596 128 8392704
108 2020-03-01 19:48:37.493 130 7.593 128 8392704
109 2020-03-01 19:48:38.493 130 7.593 128 8392704
110 2020-03-01 19:48:39.493 130 7.593 128 8392704
111 2020-03-01 19:48:40.493 130 7.595 128 8392704
112 2020-03-01 19:48:41.493 130 7.596 128 8392704
113 2020-03-01 19:48:42.493 130 7.599 128 8392704
114 2020-03-01 19:48:43.493 130 7.603 128 8392704
115 2020-03-01 19:48:44.493 130 7.605 128 8392704
116 2020-03-01 19:48:45.493 130 7.607 128 8392704
117 2020-03-01 19:48:46.493 130 7.608 128 8392704
118 2020-03-01 19:48:47.493 130 7.609 128 8392704
119 2020-03-01 19:48:48.493 130 7.61 128 8392704
120 2020-03-01 19:48:49.493 130 7.608 128 8392704
121 2020-03-01 19:48:50.493 130 7.605 128 8392704
122 2020-03-01 19:48:51.493 130 7.605 128 8392704
123 2020-03-01 19:48:52.493 130 7.607 128 8392704
124 2020-03-01 19:48:53.493 130 7.608 128 8392704
125 2020-03-01 19:48:54.493 130 7.608 128 8392704
126 2020-03-01 19:48:55.493 130 7.608 128 8392704
127 2020-03-01 19:48:56.493 130 7.61 128 8392704
128 2020-03-01 19:48:57.493 130 7.613 128 8392704
129 2020-03-01 19:48:58.493 130 7.612 128 8392704
130 2020-03-01 19:48:59.493 130 7.61 128 8392704
131 2020-03-01 19:49:00.493 130 7.609 128 8392704
132 2020-03-01 19:49:01.493 130 7.61 128 8392704
133 2020-03-01 19:49:02.493 130 7.611 128 8392704
134 2020-03-01 19:49:03.493 130 7.61 128 8392704
135 2020-03-01 19:49:04.493 130 7.61 128 8392704
136 2020-03-01 19:49:05.493 130 7.613 128 8392704
137 2020-03-01 19:49:06.493 130 7.615 128 8392704
138 2020-03-01 19:49:07.493 130 7.614 128 8392704
139 2020-03-01 19:49:08.493 130 7.613 128 8392704
140 2020-03-01 19:49:09.493 130 7.613 128 8392704
141 2020-03-01 19:49:10.493 130 7.615 128 8392704
142 2020-03-01 19:49:11.493 130 7.619 128 8392704
143 2020-03-01 19:49:12.493 130 7.62 128 8392704
144 2020-03-01 19:49:13.493 130 7.618 128 8392704
145 2020-03-01 19:49:14.493 130 7.619 128 8392704
146 2020-03-01 19:49:15.493 130 7.618 128 8392704
147 2020-03-01 19:49:16.493 130 7.617 128 8392704
148 2020-03-01 19:49:17.493 130 7.617 128 8392704
149 2020-03-01 19:49:18.493 130 7.618 128 8392704
150 2020-03-01 19:49:19.493 130 7.617 128 8392704
151 2020-03-01 19:49:20.493 130 7.616 128 8392704
152 2020-03-01 19:49:21.493 130 7.615 128 8392704
153 2020-03-01 19:49:22.493 130 7.616 128 8392704
154 2020-03-01 19:49:23.493 130 7.617 128 8392704
155 2020-03-01 19:49:24.493 130 7.615 128 8392704
156 2020-03-01 19:49:25.493 130 7.613 128 8392704
157 2020-03-01 19:49:26.493 130 7.612 128 8392704
158 2020-03-01 19:49:27.493 130 7.613 128 8392704
159 2020-03-01 19:49:28.493 130 7.614 128 8392704
160 2020-03-01 19:49:29.493 130 7.612 128 8392704
161 2020-03-01 19:49:30.493 130 7.611 128 8392704
162 2020-03-01 19:49:31.493 130 7.611 128 8392704
163 2020-03-01 19:49:32.493 130 7.612 128 8392704
164 2020-03-01 19:49:33.493 130 7.613 128 8392704
165 2020-03-01 19:49:34.493 130 7.614 128 8392704
166 2020-03-01 19:49:35.493 130 7.612 128 8392704
167 2020-03-01 19:49:36.493 130 7.607 128 8392704
168 2020-03-01 19:49:37.493 130 7.603 128 8392704
169 2020-03-01 19:49:38.493 130 7.599 128 8392704
170 2020-03-01 19:49:39.493 130 7.599 128 8392704
171 2020-03-01 19:49:40.493 130 7.599 128 8392704
172 2020-03-01 19:49:41.493 130 7.599 128 8392704
173 2020-03-01 19:49:42.493 130 7.601 128 8392704
174 2020-03-01 19:49:43.493 130 7.605 128 8392704
175 2020-03-01 19:49:44.493 130 7.606 128 8392704
176 2020-03-01 19:49:45.493 130 7.606 128 8392704
177 2020-03-01 19:49:46.493 130 7.606 128 8392704
178 2020-03-01 19:49:47.493 130 7.604 128 8392704
179 2020-03-01 19:49:48.493 130 7.604 128 8392704
180 2020-03-01 19:49:49.493 130 7.603 128 8392704
181 2020-03-01 19:49:50.493 130 7.604 128 8392704
182 2020-03-01 19:49:51.493 130 7.608 128 8392704
183 2020-03-01 19:49:52.493 130 7.614 128 8392704
184 2020-03-01 19:49:53.493 130 7.618 128 8392704
185 2020-03-01 19:49:54.493 130 7.621 128 8392704
186 2020-03-01 19:49:55.493 130 7.623 128 8392704
187 2020-03-01 19:49:56.493 130 7.623 128 8392704
188 2020-03-01 19:49:57.493 130 7.624 128 8392704
189 2020-03-01 19:49:58.493 130 7.626 128 8392704
190 2020-03-01 19:49:59.493 130 7.628 128 8392704
191 2020-03-01 19:50:00.493 130 7.627 128 8392704
192 2020-03-01 19:50:01.493 130 7.625 128 8392704
193 2020-03-01 19:50:02.493 130 7.627 128 8392704
194 2020-03-01 19:50:03.493 130 7.63 128 8392704
195 2020-03-01 19:50:04.493 130 7.633 128 8392704
196 2020-03-01 19:50:05.493 130 7.635 128 8392704
197 2020-03-01 19:50:06.493 130 7.634 128 8392704
198 2020-03-01 19:50:07.493 130 7.632 128 8392704
199 2020-03-01 19:50:08.493 130 7.628 128 8392704
200 2020-03-01 19:50:09.493 130 7.625 128 8392704
201 2020-03-01 19:50:10.493 130 7.625 128 8392704
202 2020-03-01 19:50:11.493 130 7.623 128 8392704
203 2020-03-01 19:50:12.493 130 7.623 128 8392704
204 2020-03-01 19:50:13.493 130 7.623 128 8392704
205 2020-03-01 19:50:14.493 130 7.622 128 8392704
206 2020-03-01 19:50:15.493 130 7.621 128 8392704
207 2020-03-01 19:50:16.493 130 7.618 128 8392704
208 2020-03-01 19:50:17.493 130 7.618 128 8392704
209 2020-03-01 19:50:18.493 130 7.617 128 8392704
210 2020-03-01 19:50:19.493 130 7.616 128 8392704
211 2020-03-01 19:50:20.493 130 7.615 128 8392704
212 2020-03-01 19:50:21.493 130 7.615 128 8392704
213 2020-03-01 19:50:22.493 130 7.616 128 8392704
214 2020-03-01 19:50:23.493 130 7.619 128 8392704
215 2020-03-01 19:50:24.493 130 7.622 128 8392704
216 2020-03-01 19:50:25.493 130 7.624 128 8392704
217 2020-03-01 19:50:26.493 130 7.627 128 8392704
218 2020-03-01 19:50:27.493 130 7.627 128 8392704
219 2020-03-01 19:50:28.493 130 7.625 128 8392704
220 2020-03-01 19:50:29.493 130 7.625 128 8392704
221 2020-03-01 19:50:30.493 130 7.625 128 8392704
222 2020-03-01 19:50:31.493 130 7.624 128 8392704
223 2020-03-01 19:50:32.493 130 7.624 128 8392704
224 2020-03-01 19:50:33.493 130 7.624 128 8392704
225 2020-03-01 19:50:34.493 130 7.626 128 8392704
226 2020-03-01 19:50:35.493 130 7.627 128 8392704
227 2020-03-01 19:50:36.493 130 7.627 128 8392704
228 2020-03-01 19:50:37.493 130 7.626 128 8392704
229 2020-03-01 19:50:38.493 130 7.623 128 8392704
230 2020-03-01 19:50:39.493 130 7.619 128 8392704
231 2020-03-01 19:50:40.493 130 7.616 128 8392704
232 2020-03-01 19:50:41.493 130 7.616 128 8392704
233 2020-03-01 19:50:42.493 130 7.615 128 8392704
234 2020-03-01 19:50:43.493 130 7.613 128 8392704
235 2020-03-01 19:50:44.493 130 7.614 128 8392704
236 2020-03-01 19:50:45.493 130 7.614 128 8392704
237 2020-03-01 19:50:46.493 130 7.612 128 8392704
238 2020-03-01 19:50:47.493 130 7.611 128 8392704
239 2020-03-01 19:50:48.493 130 7.611 128 8392704
240 2020-03-01 19:50:49.493 130 7.611 128 8392704
241 2020-03-01 19:50:50.493 130 7.612 128 8392704
242 2020-03-01 19:50:51.493 130 7.613 128 8392704
243 2020-03-01 19:50:52.493 130 7.613 128 8392704
244 2020-03-01 19:50:53.493 130 7.615 128 8392704
245 2020-03-01 19:50:54.493 130 7.617 128 8392704
246 2020-03-01 19:50:55.493 130 7.617 128 8392704
247 2020-03-01 19:50:56.493 130 7.619 128 8392704
248 2020-03-01 19:50:57.493 130 7.622 128 8392704
249 2020-03-01 19:50:58.493 130 7.624 128 8392704
250 2020-03-01 19:50:59.493 130 7.625 128 8392704
251 2020-03-01 19:51:00.493 130 7.624 128 8392704
252 2020-03-01 19:51:01.493 130 7.624 128 8392704
253 2020-03-01 19:51:02.493 130 7.622 128 8392704
254 2020-03-01 19:51:03.493 130 7.62 128 8392704
255 2020-03-01 19:51:04.493 130 7.617 128 8392704
256 2020-03-01 19:51:05.493 130 7.617 128 8392704
257 2020-03-01 19:51:06.493 130 7.618 128 8392704
258 2020-03-01 19:51:07.493 130 7.618 128 8392704
259 2020-03-01 19:51:08.493 130 7.618 128 8392704
260 2020-03-01 19:51:09.493 130 7.62 128 8392704
261 2020-03-01 19:51:10.493 130 7.622 128 8392704
262 2020-03-01 19:51:11.493 130 7.623 128 8392704
263 2020-03-01 19:51:12.493 130 7.624 128 8392704
264 2020-03-01 19:51:13.493 130 7.625 128 8392704
265 2020-03-01 19:51:14.493 130 7.626 128 8392704
266 2020-03-01 19:51:15.493 130 7.626 128 8392704
267 2020-03-01 19:51:16.493 130 7.626 128 8392704
268 2020-03-01 19:51:17.493 130 7.627 128 8392704
269 2020-03-01 19:51:18.493 130 7.627 128 8392704
270 2020-03-01 19:51:19.493 130 7.629 128 8392704
271 2020-03-01 19:51:20.493 130 7.629 128 8392704
272 2020-03-01 19:51:21.493 130 7.626 128 8392704
273 2020-03-01 19:51:22.493 130 7.625 128 8392704
274 2020-03-01 19:51:23.493 130 7.625 128 8392704
275 2020-03-01 19:51:24.493 130 7.626 128 8392704
276 2020-03-01 19:51:25.493 130 7.626 128 8392704
277 2020-03-01 19:51:26.493 130 7.624 128 8392704
278 2020-03-01 19:51:27.493 130 7.623 128 8392704
279 2020-03-01 19:51:28.493 130 7.624 128 8392704
280 2020-03-01 19:51:29.493 130 7.624 128 8392704
281 2020-03-01 19:51:30.493 130 7.624 128 8392704
282 2020-03-01 19:51:31.493 130 7.624 128 8392704
283 2020-03-01 19:51:32.493 130 7.626 128 8392704
284 2020-03-01 19:51:33.493 130 7.626 128 8392704
285 2020-03-01 19:51:34.493 130 7.626 128 8392704
286 2020-03-01 19:51:35.493 130 7.625 128 8392704
287 2020-03-01 19:51:36.493 130 7.624 128 8392704
288 2020-03-01 19:51:37.493 130 7.623 128 8392704
289 2020-03-01 19:51:38.493 130 7.622 128 8392704
290 2020-03-01 19:51:39.493 130 7.62 128 8392704
291 2020-03-01 19:51:40.493 130 7.62 128 8392704
292 2020-03-01 19:51:41.493 130 7.62 128 8392704
293 2020-03-01 19:51:42.493 130 7.621 128 8392704
294 2020-03-01 19:51:43.493 130 7.62 128 8392704
295 2020-03-01 19:51:44.493 130 7.619 128 8392704
296 2020-03-01 19:51:45.493 130 7.62 128 8392704
297 2020-03-01 19:51:46.493 130 7.62 128 8392704
298 2020-03-01 19:51:47.493 130 7.618 128 8392704
299 2020-03-01 19:51:48.493 130 7.619 128 8392704
300 2020-03-01 19:51:49.493 130 7.62 128 8392704
301 2020-03-01 19:51:50.493 130 7.622 128 8392704
302 2020-03-01 19:51:51.493 130 7.622 128 8392704
303 2020-03-01 19:51:52.493 130 7.62 128 8392704
304 2020-03-01 19:51:53.493 130 7.62 128 8392704
305 2020-03-01 19:51:54.493 130 7.622 128 8392704
306 2020-03-01 19:51:55.493 130 7.624 128 8392704
307 2020-03-01 19:51:56.493 130 7.622 128 8392704
308 2020-03-01 19:51:57.493 130 7.616 128 8392704
309 2020-03-01 19:51:58.493 130 7.611 128 8392704
310 2020-03-01 19:51:59.493 130 7.61 128 8392704
311 2020-03-01 19:52:00.493 130 7.608 128 8392704
312 2020-03-01 19:52:01.493 130 7.606 128 8392704
313 2020-03-01 19:52:02.493 130 7.607 128 8392704
314 2020-03-01 19:52:03.493 130 7.608 128 8392704
315 2020-03-01 19:52:04.493 130 7.61 128 8392704
316 2020-03-01 19:52:05.493 130 7.612 128 8392704
317 2020-03-01 19:52:06.493 130 7.615 128 8392704
318 2020-03-01 19:52:07.493 130 7.62 128 8392704
319 2020-03-01 19:52:08.493 130 7.623 128 8392704
320 2020-03-01 19:52:09.493 130 7.624 128 8392704
321 2020-03-01 19:52:10.493 130 7.623 128 8392704
322 2020-03-01 19:52:11.493 130 7.623 128 8392704
323 2020-03-01 19:52:12.493 130 7.624 128 8392704
324 2020-03-01 19:52:13.493 130 7.622 128 8392704
325 2020-03-01 19:52:14.493 130 7.62 128 8392704
326 2020-03-01 19:52:15.493 130 7.621 128 8392704
327 2020-03-01 19:52:16.493 130 7.62 128 8392704
328 2020-03-01 19:52:17.493 130 7.622 128 8392704
329 2020-03-01 19:52:18.493 130 7.625 128 8392704
330 2020-03-01 19:52:19.493 130 7.627 128 8392704
331 2020-03-01 19:52:20.493 130 7.625 128 8392704
332 2020-03-01 19:52:21.493 130 7.621 128 8392704
333 2020-03-01 19:52:22.493 130 7.617 128 8392704
334 2020-03-01 19:52:23.493 130 7.617 128 8392704
335 2020-03-01 19:52:24.493 130 7.617 128 8392704
336 2020-03-01 19:52:25.493 130 7.616 128 8392704
337 2020-03-01 19:52:26.493 130 7.615 128 8392704
338 2020-03-01 19:52:27.493 130 7.616 128 8392704
339 2020-03-01 19:52:28.493 130 7.619 128 8392704
340 2020-03-01 19:52:29.493 130 7.621 128 8392704
341 2020-03-01 19:52:30.493 130 7.621 128 8392704
342 2020-03-01 19:52:31.493 130 7.621 128 8392704
343 2020-03-01 19:52:32.493 130 7.621 128 8392704
344 2020-03-01 19:52:33.493 130 7.621 128 8392704
345 2020-03-01 19:52:34.493 130 7.623 128 8392704
346 2020-03-01 19:52:35.493 130 7.621 128 8392704
347 2020-03-01 19:52:36.493 130 7.617 128 8392704
348 2020-03-01 19:52:37.493 130 7.615 128 8392704
349 2020-03-01 19:52:38.493 130 7.612 128 8392704
350 2020-03-01 19:52:39.493 130 7.609 128 8392704
351 2020-03-01 19:52:40.493 130 7.606 128 8392704
352 2020-03-01 19:52:41.493 130 7.606 128 8392704
353 2020-03-01 19:52:42.493 130 7.609 128 8392704
354 2020-03-01 19:52:43.493 130 7.612 128 8392704
355 2020-03-01 19:52:44.493 130 7.616 128 8392704
356 2020-03-01 19:52:45.493 130 7.619 128 8392704
357 2020-03-01 19:52:46.493 130 7.62 128 8392704
358 2020-03-01 19:52:47.493 130 7.622 128 8392704
359 2020-03-01 19:52:48.493 130 7.622 128 8392704
360 2020-03-01 19:52:49.493 130 7.621 128 8392704
361 2020-03-01 19:52:50.493 130 7.618 128 8392704
362 2020-03-01 19:52:51.493 130 7.616 128 8392704
363 2020-03-01 19:52:52.493 130 7.613 128 8392704
364 2020-03-01 19:52:53.493 130 7.612 128 8392704
365 2020-03-01 19:52:54.493 130 7.612 128 8392704
366 2020-03-01 19:52:55.493 130 7.611 128 8392704
367 2020-03-01 19:52:56.493 130 7.609 128 8392704
368 2020-03-01 19:52:57.493 130 7.608 128 8392704
369 2020-03-01 19:52:58.493 130 7.609 128 8392704
370 2020-03-01 19:52:59.493 130 7.611 128 8392704
371 2020-03-01 19:53:00.493 130 7.612 128 8392704
372 2020-03-01 19:53:01.493 130 7.614 128 8392704
373 2020-03-01 19:53:02.493 130 7.618 128 8392704
374 2020-03-01 19:53:03.493 130 7.62 128 8392704
375 2020-03-01 19:53:04.493 130 7.62 128 8392704
376 2020-03-01 19:53:05.493 130 7.62 128 8392704
377 2020-03-01 19:53:06.493 130 7.619 128 8392704
378 2020-03-01 19:53:07.493 130 7.617 128 8392704
379 2020-03-01 19:53:08.493 130 7.615 128 8392704
380 2020-03-01 19:53:09.493 130 7.612 128 8392704
381 2020-03-01 19:53:10.493 130 7.61 128 8392704
382 2020-03-01 19:53:11.493 130 7.609 128 8392704
383 2020-03-01 19:53:12.493 130 7.608 128 8392704
384 2020-03-01 19:53:13.493 130 7.61 128 8392704
385 2020-03-01 19:53:14.493 130 7.611 128 8392704
386 2020-03-01 19:53:15.493 130 7.609 128 8392704
387 2020-03-01 19:53:16.493 130 7.608 128 8392704
388 2020-03-01 19:53:17.493 130 7.608 128 8392704
389 2020-03-01 19:53:18.493 130 7.607 128 8392704
390 2020-03-01 19:53:19.493 130 7.607 128 8392704
391 2020-03-01 19:53:20.493 130 7.605 128 8392704
392 2020-03-01 19:53:21.493 130 7.603 128 8392704
393 2020-03-01 19:53:22.493 130 7.606 128 8392704
394 2020-03-01 19:53:23.493 130 7.611 128 8392704
395 2020-03-01 19:53:24.493 130 7.615 128 8392704
396 2020-03-01 19:53:25.493 130 7.618 128 8392704
397 2020-03-01 19:53:26.493 130 7.62 128 8392704
398 2020-03-01 19:53:27.493 130 7.622 128 8392704
399 2020-03-01 19:53:28.493 130 7.624 128 8392704
400 2020-03-01 19:53:29.493 130 7.626 128 8392704
401 2020-03-01 19:53:30.493 130 7.624 128 8392704
402 2020-03-01 19:53:31.493 130 7.617 128 8392704
403 2020-03-01 19:53:32.493 130 7.613 128 8392704
404 2020-03-01 19:53:33.493 130 7.613 128 8392704
405 2020-03-01 19:53:34.493 130 7.613 128 8392704
406 2020-03-01 19:53:35.493 130 7.61 128 8392704
407 2020-03-01 19:53:36.493 130 7.609 128 8392704
408 2020-03-01 19:53:37.493 130 7.611 128 8392704
409 2020-03-01 19:53:38.493 130 7.61 128 8392704
410 2020-03-01 19:53:39.493 130 7.609 128 8392704
411 2020-03-01 19:53:40.493 130 7.608 128 8392704
412 2020-03-01 19:53:41.493 130 7.605 128 8392704
413 2020-03-01 19:53:42.493 130 7.601 128 8392704
414 2020-03-01 19:53:43.493 130 7.6 128 8392704
415 2020-03-01 19:53:44.493 130 7.602 128 8392704
416 2020-03-01 19:53:45.493 130 7.604 128 8392704
417 2020-03-01 19:53:46.493 130 7.605 128 8392704
418 2020-03-01 19:53:47.493 130 7.606 128 8392704
419 2020-03-01 19:53:48.493 130 7.605 128 8392704
420 2020-03-01 19:53:49.493 130 7.605 128 8392704
421 2020-03-01 19:53:50.493 130 7.606 128 8392704
422 2020-03-01 19:53:51.493 130 7.606 128 8392704
423 2020-03-01 19:53:52.493 130 7.604 128 8392704
424 2020-03-01 19:53:53.493 130 7.606 128 8392704
425 2020-03-01 19:53:54.493 130 7.61 128 8392704
426 2020-03-01 19:53:55.493 130 7.612 128 8392704
427 2020-03-01 19:53:56.493 130 7.613 128 8392704
428 2020-03-01 19:53:57.493 130 7.613 128 8392704
429 2020-03-01 19:53:58.493 130 7.613 128 8392704
430 2020-03-01 19:53:59.493 130 7.615 128 8392704
431 2020-03-01 19:54:00.493 130 7.616 128 8392704
432 2020-03-01 19:54:01.493 130 7.616 128 8392704
433 2020-03-01 19:54:02.493 130 7.618 128 8392704
434 2020-03-01 19:54:03.493 130 7.621 128 8392704
435 2020-03-01 19:54:04.493 130 7.623 128 8392704
436 2020-03-01 19:54:05.493 130 7.623 128 8392704
437 2020-03-01 19:54:06.493 130 7.624 128 8392704
438 2020-03-01 19:54:07.493 130 7.624 128 8392704
439 2020-03-01 19:54:08.493 130 7.622 128 8392704
440 2020-03-01 19:54:09.493 130 7.62 128 8392704
441 2020-03-01 19:54:10.493 130 7.621 128 8392704
442 2020-03-01 19:54:11.493 130 7.62 128 8392704
443 2020-03-01 19:54:12.493 130 7.617 128 8392704
444 2020-03-01 19:54:13.493 130 7.617 128 8392704
445 2020-03-01 19:54:14.493 130 7.618 128 8392704
446 2020-03-01 19:54:15.493 130 7.617 128 8392704
447 2020-03-01 19:54:16.493 130 7.615 128 8392704
448 2020-03-01 19:54:17.493 130 7.613 128 8392704
449 2020-03-01 19:54:18.493 130 7.612 128 8392704
450 2020-03-01 19:54:19.493 130 7.609 128 8392704
451 2020-03-01 19:54:20.493 130 7.605 128 8392704
452 2020-03-01 19:54:21.493 130 7.604 128 8392704
453 2020-03-01 19:54:22.493 130 7.605 128 8392704
454 2020-03-01 19:54:23.493 130 7.608 128 8392704
455 2020-03-01 19:54:24.493 130 7.611 128 8392704
456 2020-03-01 19:54:25.493 130 7.613 128 8392704
457 2020-03-01 19:54:26.493 130 7.613 128 8392704
458 2020-03-01 19:54:27.493 130 7.611 128 8392704
459 2020-03-01 19:54:28.493 130 7.611 128 8392704
460 2020-03-01 19:54:29.493 130 7.611 128 8392704
461 2020-03-01 19:54:30.493 130 7.612 128 8392704
462 2020-03-01 19:54:31.493 130 7.614 128 8392704
463 2020-03-01 19:54:32.493 130 7.61 128 8392704
464 2020-03-01 19:54:33.493 130 7.603 128 8392704
465 2020-03-01 19:54:34.493 130 7.598 128 8392704
466 2020-03-01 19:54:35.493 130 7.594 128 8392704
467 2020-03-01 19:54:36.493 130 7.591 128 8392704
468 2020-03-01 19:54:37.493 130 7.591 128 8392704
469 2020-03-01 19:54:38.493 130 7.59 128 8392704
470 2020-03-01 19:54:39.493 130 7.588 128 8392704
471 2020-03-01 19:54:40.493 130 7.593 128 8392704
472 2020-03-01 19:54:41.493 130 7.599 128 8392704
473 2020-03-01 19:54:42.493 130 7.602 128 8392704
474 2020-03-01 19:54:43.493 130 7.604 128 8392704
475 2020-03-01 19:54:44.493 130 7.606 128 8392704
476 2020-03-01 19:54:45.493 130 7.609 128 8392704
477 2020-03-01 19:54:46.493 130 7.612 128 8392704
478 2020-03-01 19:54:47.493 130 7.614 128 8392704
479 2020-03-01 19:54:48.493 130 7.616 128 8392704
480 2020-03-01 19:54:49.493 130 7.617 128 8392704
481 2020-03-01 19:54:50.493 130 7.619 128 8392704
482 2020-03-01 19:54:51.493 130 7.623 128 8392704
483 2020-03-01 19:54:52.493 130 7.626 128 8392704
484 2020-03-01 19:54:53.493 130 7.626 128 8392704
485 2020-03-01 19:54:54.493 130 7.624 128 8392704
486 2020-03-01 19:54:55.493 130 7.623 128 8392704
487 2020-03-01 19:54:56.493 130 7.618 128 8392704
488 2020-03-01 19:54:57.493 130 7.613 128 8392704
489 2020-03-01 19:54:58.493 130 7.61 128 8392704
490 2020-03-01 19:54:59.493 130 7.605 128 8392704
491 2020-03-01 19:55:00.493 130 7.604 128 8392704
492 2020-03-01 19:55:01.493 130 7.603 128 8392704
493 2020-03-01 19:55:02.493 130 7.602 128 8392704
494 2020-03-01 19:55:03.493 130 7.602 128 8392704
495 2020-03-01 19:55:04.493 130 7.602 128 8392704
496 2020-03-01 19:55:05.493 130 7.603 128 8392704
497 2020-03-01 19:55:06.493 130 7.608 128 8392704
498 2020-03-01 19:55:07.493 130 7.609 128 8392704
499 2020-03-01 19:55:08.493 130 7.608 128 8392704
500 2020-03-01 19:55:09.493 130 7.609 128 8392704